blob: 58c96de4a331442ac4c567f2544042e93d7fa617 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
context ctx
{
int i
int j
int k
lex start
{
ignore /space+/
literal '*', '(', ')'
token id /[a-zA-Z_]+/
}
def foo [id]
int f()
{
i = i + 1
}
def item
[id]
| [foo]
| ['(' item* ')']
{
i = 0
f()
f()
f()
print( i, '\n' )
}
def start
[item*]
}
ctx CTX = cons ctx []
ctx::start Input = parse ctx::start( CTX, stdin )
print( Input, '\n' )
|