summaryrefslogtreecommitdiff
path: root/test/stateact1.rl
blob: ef50c75eaed21e8d85c2823696738a4389acde10 (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
46
47
48
/*
 * @LANG: indep
 *
 * Test in and out state actions.
 */
%%
%%{
	machine state_act;

	action a1 { prints "a1\n"; }
	action a2 { prints "a2\n"; }
	action b1 { prints "b1\n"; }
	action b2 { prints "b2\n"; }
	action c1 { prints "c1\n"; }
	action c2 { prints "c2\n"; }
	action next_again {fnext again;}

	hi = 'hi';
	line = again: 
			hi 
				>to b1 
				>from b2 
			'\n' 
				>to c1 
				>from c2 
				@next_again;
		 
	main := line*
			>to a1 
			>from a2;
}%%

/* _____INPUT_____
"hi\nhi\n"
_____INPUT_____ */

/* _____OUTPUT_____
a2
b2
c1
c2
b1
b2
c1
c2
b1
FAIL
_____OUTPUT_____ */