-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtypes.go
32 lines (24 loc) · 870 Bytes
/
types.go
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
types{
import go.showable.
item <~ thing.
item:[integer,symbol,list[symbol],list[symbol],list[symbol]]@=item.
item(Rule,Nt,Pre,Pos,LA)..{
show()=>"Rule : "<>Rule.show()<>" "<>Nt.show()<>" -> "<>Pre.show()<>
" . "<>Pos.show().
}.
actionT ::= shiftOn(symbol,integer,integer)
| reduceBy(symbol,integer)
| accept(symbol)
| recoverError(list[symbol],integer,integer)
| disabled(actionT).
tokenPriority ::= lA(integer) | rA(integer) | nA(integer) | tA.
rule <~ thing.
rule:[integer,symbol,list[symbol],list[symbol],string,tokenPriority]@=rule.
rule(R,NT,Pre,Suff,Act,OpAss)..{
show() => R.show()<>": "<>NT.show()<>" -> "<>
showLits(Pre)<>" . "<>showLits(Suff)<>OpAss.show()<>"{"<>Act<>"}".
showLits:[list[symbol]]=>string.
showLits([])=>"".
showLits([A,..B])=>explode(A)<>" "<>showLits(B).
}.
}