X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=tests%2Fregression.tc;h=ae452e9858ec91d7f43f7b05370ecfd07c0b51b2;hp=e2ae422917e969aa13f4e13b495f28ffa7f58ebe;hb=c366dacc334fe2e35835164f5a37d3eebb2ca6d5;hpb=526da96dd06e152d194ec92c9ef9df6085a1251b diff --git a/tests/regression.tc b/tests/regression.tc index e2ae422..ae452e9 100644 --- a/tests/regression.tc +++ b/tests/regression.tc @@ -69,6 +69,16 @@ testcase { } testcase { + input "aabb"; + output "xbx:{abab:{a b}}"; + + x !::= ~[] + s ::= x* b x* => xbx + b ::= [ab][ab] => abab + &~ ( "aa" | "bb" ) +} + +testcase { input "12111211"; output "ac:{{2 1 2 1}}"; //output "a:{{2 1 2 1}}"; @@ -255,61 +265,62 @@ testcase { q ::= [a-z]++ => "q" } -testcase { - - input " - - - - while x>0 - while y>0 - foo() - bar() - - - while x>0 - while y>0 - foo() - bar() - - - -"; - output "smt:{while:{>:{{x} {0}} while:{>:{{y} {0}} sbb:{{f o o} {b a r}}}} while:{>:{{x} {0}} sbb:{while:{>:{{y} {0}} {f o o}} {b a r}}}}"; - -indent !::= ww -outdent !::= " " outdent " " - | " " (~[]*) "\n" - -w !::= " " | "\n" | "\r" -ws !::= w* -ww !::= sp* -sp !::= " " -any !::= ~[]* - -s ::= ws statement ws statement ws => smt - -block ::= "\n" indent blockBody - &~ "\n" outdent ~[\ ] ~[]* - -blockBody ::= statement - > statement ws blockBody => "sbb" - -statement ::= call - | ^"while" expr block /ws - -expr ::= ident - | call - | expr ^">" expr /ws - | num - -call ::= expr "()" /ws - -num ::= [0-9]++ - -ident ::= [a-z]++ &~ keyword -keyword ::= "if" | "then" | "else" | "while" - - - -} +//testcase { +// +// input " +// +// +// +// while x>0 +// while y>0 +// foo() +// bar() +// +// +// while x>0 +// while y>0 +// foo() +// bar() +// +// +// +//"; +// output "smt:{while:{>:{{x} {0}} while:{>:{{y} {0}} sbb:{{f o o} {b a r}}}} while:{>:{{x} {0}} sbb:{while:{>:{{y} {0}} {f o o}} {b a r}}}}"; +// +//indent !::= ww +//outdent !::= " " outdent " " +// | " " (~[]*) "\n" +// +//w !::= " " | "\n" | "\r" +//ws !::= w* +//ww !::= sp* +//sp !::= " " +//any !::= ~[]* +// +//s ::= ws statement ws statement ws => smt +// +//block ::= "\n" indent blockBody +// &~ "\n" outdent ~[\ ] ~[]* +// +//blockBody ::= statement +// > statement ws blockBody => "sbb" +// +//statement ::= call +// | ^"while" expr block /ws +// +//expr ::= ident +// | call +// | expr ^">" expr /ws +// | num +// +//call ::= expr "()" /ws +// +//num ::= [0-9]++ +// +//ident ::= [a-z]++ &~ keyword +//keyword ::= "if" | "then" | "else" | "while" +// +// +// +//} +// \ No newline at end of file