diff options
Diffstat (limited to 'test/rlhc.d/case/empty1_java.java-J-F1--var-backend.in')
-rw-r--r-- | test/rlhc.d/case/empty1_java.java-J-F1--var-backend.in | 124 |
1 files changed, 124 insertions, 0 deletions
diff --git a/test/rlhc.d/case/empty1_java.java-J-F1--var-backend.in b/test/rlhc.d/case/empty1_java.java-J-F1--var-backend.in new file mode 100644 index 00000000..9c8b984c --- /dev/null +++ b/test/rlhc.d/case/empty1_java.java-J-F1--var-backend.in @@ -0,0 +1,124 @@ +host( "working/empty1_java.rl", 1 ) @{/* + * @@LANG: java + * @@GENERATED: true + */ + + + class empty1_java + { + + + + + + + + }@ + array char _empty1_trans_keys( 0, 1 ) = { u(1), u(0), u(1), u(0), u(0) }; + + array s8 _empty1_char_class( 0, 0 ) = { 0 }; + + array s8 _empty1_index_offsets( 0, 0 ) = { 0, 0, 0 }; + + array s8 _empty1_indicies( 0, 0 ) = { 0 }; + + array s8 _empty1_index_defaults( 0, 0 ) = { 0, 0, 0 }; + + array s8 _empty1_trans_cond_spaces( -1, 0 ) = { -1, 0 }; + + array s8 _empty1_cond_targs( 0, 0 ) = { 0, 0 }; + + array s8 _empty1_cond_actions( 0, 0 ) = { 0, 0 }; + + array s8 _empty1_nfa_targs( 0, 0 ) = { 0, 0 }; + + array s8 _empty1_nfa_offsets( 0, 0 ) = { 0, 0, 0 }; + + array s8 _empty1_nfa_push_actions( 0, 0 ) = { 0, 0 }; + + array s8 _empty1_nfa_pop_trans( 0, 0 ) = { 0, 0 }; + + value int empty1_start = 1; + value int empty1_first_final = 2; + value int empty1_error = 0; + + value int empty1_en_main = 1; + + host( "working/empty1_java.rl", 20 ) @{ + int cs; + + void init() + { + }@ + { + cs = cast(int)empty1_start; + } + host( "working/empty1_java.rl", 25 ) @{ + } + + void exec( char data[], int len ) + { + char buffer [] = new char[1024]; + int blen = 0; + int p = 0; + int pe = len; + + String _s; + }@ + { + uint _trans = 0; + uint _have = 0; + uint _cont = 1; + while ( _cont == 1 ) { + + if ( cs == 0 ) + _cont = 0; + _have = 0; + if ( p == pe ) { + if ( _have == 0 ) + _cont = 0; + } + if ( _cont == 1 ) { + if ( _have == 0 ) { + _trans = cast(uint)_empty1_index_defaults[cs]; + } + if ( _cont == 1 ) { + cs = cast(int)_empty1_cond_targs[_trans]; + + if ( cs == 0 ) + _cont = 0; + if ( _cont == 1 ) + p += 1; + + }} + } + } + host( "working/empty1_java.rl", 36 ) @{ + } + + void finish( ) + { + if ( cs >= empty1_first_final ) + System.out.println( "ACCEPT" ); + else + System.out.println( "FAIL" ); + } + + static final String inp[] = { + "", + "x", + }; + + static final int inplen = 2; + + public static void main (String[] args) + { + empty1_java machine = new empty1_java(); + for ( int i = 0; i < inplen; i++ ) { + machine.init(); + machine.exec( inp[i].toCharArray(), inp[i].length() ); + machine.finish(); + } + } + } +}@
\ No newline at end of file |