File: eofact.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 (51 lines) | stat: -rw-r--r-- 501 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
49
50
51
/*
 * @LANG: indep
 *
 * Test works with split code gen.
 */
%%
%%{
	machine eofact;

	action a1 { prints "a1\n"; }
	action a2 { prints "a2\n"; }
	action a3 { prints "a3\n"; }
	action a4 { prints "a4\n"; }


	main := (
		'hello' @eof a1 %eof a2 '\n'? |
		'there' @eof a3 %eof a4
	);

}%%
/* _____INPUT_____
""
"h"
"hell"
"hello"
"hello\n"
"t"
"ther"
"there"
"friend"
_____INPUT_____ */
/* _____OUTPUT_____
a1
a3
FAIL
a1
FAIL
a1
FAIL
a2
ACCEPT
ACCEPT
a3
FAIL
a3
FAIL
a4
ACCEPT
FAIL
_____OUTPUT_____ */