blob: e100325192fb9ee163fc66d17c21ae5894005589 (
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
|
lex
ignore /space+/
literal '*', '(' ni, ni ')', '!', ';'
token id /[a-zA-Z_0-9]+/
end
lex
ignore /space+/
token inner_t /[a-zA-Z_0-9]+/
literal ''
end
def inner
['' inner_t*]
def item
[id]
| ['(' inner ')']
def start
[item* ';']
parse StartP: start[ stdin ]
Start: start = StartP.tree
if ( ! Start ) {
print( 'parse error\n' )
exit( 0 )
}
for I: item in Start {
print( 'item: .' %I '.\n' )
if match I [ O: '(' Inner: inner C: ')' ]
print( 'innr: .' %O '.' %Inner '.' %C '.\n' )
}
|