
Sometimes template_info contains values from a previous failed parse. I think this makes the last change unnecessary, but I'm going to leave it in as I feel like it improved the grammar. [SVN r63609]
37 lines
926 B
Plaintext
37 lines
926 B
Plaintext
[article Template 1.4
|
|
[quickbook 1.4]
|
|
]
|
|
|
|
[/ 1.4 uses dynamic scoping ]
|
|
|
|
[template x static scoping]
|
|
[template foo1[] [x]]
|
|
[template foo2[x] [foo1]]
|
|
[foo2 dynamic scoping]
|
|
|
|
[/ In 1.4 template arguments are scoped at the point they are used]
|
|
|
|
[template y new]
|
|
[template foo3[a y] [a]]
|
|
[foo3 [y] old]
|
|
|
|
[/ 1.4 template arguments]
|
|
|
|
[template binary[x y] {[x]-[y]}]
|
|
[binary 1..2] [/ {1-2} ]
|
|
[binary 1 2] [/ {1-2} ]
|
|
[binary 1..2 3 4] [/ {1-2 3 4} ]
|
|
[binary 1 2..3 4] [/ {1 2-3 4} ]
|
|
[binary 1 2 3..4] [/ {1 2 3-4} ]
|
|
[binary [1..2] [/ {(1-2} but with a square bracket ]
|
|
[binary 1.\.2..3] [/ {1..2-3} ]
|
|
[binary 1.\.2 3] [/ {1..2-3} ]
|
|
|
|
[binary [binary 1 2..3] 4] [/ {[binary 1 2-3} 4] ]
|
|
|
|
[template ternary[x y z] {[x]-[y]-[z]}]
|
|
[ternary 1..2..3] [/ {1-2-3} ]
|
|
[ternary 1 2 3] [/ {1-2-3} ]
|
|
[ternary 1..2 3 4] [/ {1-2-3 4} ]
|
|
[ternary 1 2..3 4] [/ {1 2-3-4} ]
|
|
[ternary [1..2..3] [/ {(1-2-3} (but with a square bracket) ] |