blob: c4c9c3c3b91cbef96a3b3fe8164c4a69878ceac7 (
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
43
44
45
|
/*
$echo file: rule1.dat
$echo test: relaxed order of lhs,parallel-control-monitor
$echo Okay
*/
fsm
(fsm-id "eol.lex",fsm-filename eol,fsm-namespace NS_eol
,fsm-class Ceol
,fsm-version "1.0" ,fsm-date "17 Juin 2003",fsm-debug "false"
,fsm-comments "end-of-line recognizer --- Unix, Mac, and Microsoft supported styles.")
parallel-parser
(
parallel-thread-function
TH_eol
***
parallel-la-boundary
eolr
***
)
@"/yacco2/compiler/grammars/yacco2_T_includes.T"
/@
@** Rules.\fbreak
@/
rules{
Reol (){
-> Rdelimiters
}
Rdelimiters ()
{
-> Rsubrule_def
}
Rsubrule_def AD AB(
parallel-control-monitor{
arbitrator-code
int s(0);//cccccccc
***
}
){
-> x
}
}// end of rules
|