The "curstate" argument to the variable statement has been changed to "cs".
authorthurston <thurston@052ea7fc-9027-0410-9066-f65837a77df0>
Sun, 29 Apr 2007 03:52:40 +0000 (03:52 +0000)
committerthurston <thurston@052ea7fc-9027-0410-9066-f65837a77df0>
Sun, 29 Apr 2007 03:52:40 +0000 (03:52 +0000)
Updated the tests.

git-svn-id: http://svn.complang.org/ragel/trunk@208 052ea7fc-9027-0410-9066-f65837a77df0

14 files changed:
test/awkemu.rl
test/builtin.rl
test/element2.rl
test/erract3.rl
test/errintrans.rl
test/forder1.rl
test/forder2.rl
test/forder3.rl
test/high1.rl
test/minimize1.rl
test/range.rl
test/statechart1.rl
test/strings1.rl
test/strings2.rl

index a988651..30ca54f 100644 (file)
@@ -27,7 +27,7 @@ struct awkemu
 %%{
        machine awkemu;
 
-       variable curstate fsm->cs;
+       variable cs fsm->cs;
 
        # Starts a line. Will initialize all the data necessary for capturing the line.
        action startline {
index 626927b..816b441 100644 (file)
@@ -17,7 +17,7 @@ struct builtin
 %%{
        machine builtin;
        alphtype unsigned int;
-       variable curstate fsm->cs;
+       variable cs fsm->cs;
 
        main := (
                any    @{alph("any");} |
index 55f7610..28e9c3d 100644 (file)
@@ -19,7 +19,7 @@ struct fsm
        machine fsm;
        alphtype int;
        getkey fpc->key;
-       variable curstate fsm->cs;
+       variable cs fsm->cs;
 
        action a1 {}
        action a2 {}
index 5490b67..2cf33c0 100644 (file)
@@ -12,7 +12,7 @@ struct erract
 
 %%{
        machine erract;
-       variable curstate fsm->cs;
+       variable cs fsm->cs;
 
        # The data that is to go into the fsm structure.
        action hello_fails { printf("hello fails\n");}
index 80b5a5a..44632f0 100644 (file)
@@ -16,7 +16,7 @@ struct errintrans
 
 %%{
        machine errintrans;
-       variable curstate fsm->cs;
+       variable cs fsm->cs;
 
        char = any - (digit | '\n');
        line = char* "\n";
index a6366cb..3244b33 100644 (file)
@@ -12,7 +12,7 @@ struct forder
 
 %%{
        machine forder;
-       variable curstate fsm->cs;
+       variable cs fsm->cs;
 
        second = 'b'
                >{printf("enter b1\n");}
index 9592179..18eae17 100644 (file)
@@ -17,7 +17,7 @@ struct forder
 
 %%{
        machine forder;
-       variable curstate fsm->cs;
+       variable cs fsm->cs;
 
        inner = 'inner'
                >{printf("enter inner\n");}
index 7a659bb..62fdb86 100644 (file)
@@ -12,7 +12,7 @@ struct forder
 
 %%{
        machine forder;
-       variable curstate fsm->cs;
+       variable cs fsm->cs;
 
        m1 = ( "" %{printf("enter m1 aa\n");} |
                        'aa'* >{printf("enter m1 aa\n");} %{printf("leave m1 aa\n");} )
index 2ad1b60..d0edcd9 100644 (file)
@@ -19,7 +19,7 @@ struct high
 
 %%{
        machine high;
-       variable curstate fsm->cs;
+       variable cs fsm->cs;
 
        # We Want the header portion.
        alphtype unsigned int;
@@ -74,7 +74,7 @@ struct tokenizer
 
 %%{
        machine tokenizer;
-       variable curstate fsm->cs;
+       variable cs fsm->cs;
 
        action bufdigit {
                if ( numlen < 8 )
index d7c6ef4..418c3f4 100644 (file)
@@ -12,7 +12,7 @@ struct min
 
 %%{
        machine min;
-       variable curstate fsm->cs;
+       variable cs fsm->cs;
 
        action a_or_b { printf("a or b\n"); }
 
index 3d89b58..eaa52bd 100644 (file)
@@ -12,7 +12,7 @@ struct range
 
 %%{
        machine range;
-       variable curstate fsm->cs;
+       variable cs fsm->cs;
 
        main := ( 'a' .. 'c' | 'c' .. 'e' | 'm' .. 'n' | 'a' .. 'z' ) '\n';
 }%%
index 9f1ce49..679c11a 100644 (file)
@@ -16,7 +16,7 @@ struct state_chart
 
 %%{
        machine state_chart;
-       variable curstate fsm->cs;
+       variable cs fsm->cs;
 
        action a { printf("a"); }
        action b { printf("b"); }
index d156da1..af7bfd0 100644 (file)
@@ -12,7 +12,7 @@ struct strs
 
 %%{
        machine strs;
-       variable curstate fsm->cs;
+       variable cs fsm->cs;
 
        main := 
                "__gmon_start__\n" |
index 6307a2b..9048ad7 100644 (file)
@@ -13,7 +13,7 @@
 
 %%{
        machine strs;
-       variable curstate fsm->cs;
+       variable cs fsm->cs;
 
        main := 
                "/lib/ld-linux.so.2\n" |