summaryrefslogtreecommitdiff
path: root/test/trans.d/case/gotocallret2.rl
blob: 31dd13d74f8c40e6d126c9a8680736ded4e41b9b (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*
 * @LANG: indep
 * @NEEDS_EOF: yes
 * @PROHIBIT_LANGUAGES: ruby ocaml
 * @PROHIBIT_FEATFLAGS: --var-backend
 */

char comm;
int top;
int stack[32];
ptr ts;
ptr te;
int act;
int val;

%%{
	machine GotoCallRet;

	sp = ' ';

	handle := any @{ 
		print_str "handle ";
		fhold; 
		if ( val == 1 ) { fnext *fentry(one); }
		if ( val == 2 ) { fnext *fentry(two); }
		if ( val == 3 ) { fnext main; }
	};

	one := |*
		'{' => { print_str "{ "; fcall *fentry(one); };
		"[" => { print_str "[ "; fcall *fentry(two); };
		"}" sp* => { print_str "} "; fret; };
		[a-z]+ => { print_str "word "; val = 1; fgoto *fentry(handle); };
		' ' => { print_str "space "; };
	*|;

	two := |*
		'{' => { print_str "{ "; fcall *fentry(one); };
		"[" => { print_str "[ "; fcall *fentry(two); };
		']' sp* => { print_str "] "; fret; };
		[a-z]+ => { print_str "word "; val = 2; fgoto *fentry(handle); };
		' ' => { print_str "space "; };
	*|;

	main := |* 
		'{' => { print_str "{ "; fcall one; };
		"[" => { print_str "[ "; fcall two; };
		[a-z]+ => { print_str "word "; val = 3; fgoto handle; };
		[a-z] ' foil' => { print_str "this is the foil";};
		' ' => { print_str "space "; };
		'\n';
	*|;
}%%

##### INPUT #####
"{a{b[c d]d}c}\n"
"[a{b[c d]d}c}\n"
"[a[b]c]d{ef{g{h}i}j}l\n"
"{{[]}}\n"
"a b c\n"
"{a b c}\n"
"[a b c]\n"
"{]\n"
"{{}\n"
"[[[[[[]]]]]]\n"
"[[[[[[]]}]]]\n"
##### OUTPUT #####
{ word handle { word handle [ word handle space word handle ] word handle } word handle } ACCEPT
[ word handle { word handle [ word handle space word handle ] word handle } word handle FAIL
[ word handle [ word handle ] word handle ] word handle { word handle { word handle { word handle } word handle } word handle } word handle ACCEPT
{ { [ ] } } ACCEPT
word handle space word handle space word handle ACCEPT
{ word handle space word handle space word handle } ACCEPT
[ word handle space word handle space word handle ] ACCEPT
{ FAIL
{ { } FAIL
[ [ [ [ [ [ ] ] ] ] ] ] ACCEPT
[ [ [ [ [ [ ] ] FAIL