File: stateact1.rl

package info (click to toggle)
ragel 6.8-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 4,760 kB
  • ctags: 5,054
  • sloc: cpp: 46,722; ansic: 5,143; sh: 1,628; makefile: 225; ruby: 189
file content (48 lines) | stat: -rw-r--r-- 586 bytes parent folder | download | duplicates (9)
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_____ */