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
|
const _zlen1_trans_keys = UInt8[1, 0, 1, 0, 0 , ]
const _zlen1_char_class = Int8[0 , ]
const _zlen1_index_offsets = Int8[0, 0, 0 , ]
const _zlen1_indicies = Int8[0 , ]
const _zlen1_index_defaults = Int8[0, 0, 0 , ]
const _zlen1_trans_cond_spaces = Int8[-1, 0 , ]
const _zlen1_cond_targs = Int8[0, 0 , ]
const _zlen1_cond_actions = Int8[0, 0 , ]
const _zlen1_nfa_targs = Int8[0, 0 , ]
const _zlen1_nfa_offsets = Int8[0, 0, 0 , ]
const _zlen1_nfa_push_actions = Int8[0, 0 , ]
const _zlen1_nfa_pop_trans = Int8[0, 0 , ]
const zlen1_start = 1
const zlen1_first_final = 1
const zlen1_error = 0
const zlen1_en_main = 1
function m( data::AbstractString )
p = 0
pe = length(data)
eof = length(data)
cs = 0
buffer = ""
cs = convert(Int, zlen1_start )
_trans = 0;
_have = 0;
_cont = 1;
while _cont == 1
if cs == 0
_cont = 0
end
_have = 0
if p == pe
if _have == 0
_cont = 0
end
end
if _cont == 1
if _have == 0
_trans = convert(UInt, _zlen1_index_defaults[1+(cs)] )
end
if _cont == 1
cs = convert(Int, _zlen1_cond_targs[1+(_trans)] )
if cs == 0
_cont = 0
end
if _cont == 1
p += 1
end
end
end
end
if ( cs >= zlen1_first_final )
println( "ACCEPT" );
else
println( "FAIL" );
end
end
m( "" );
m( "x" );
|