Revision: 17501
Author:   [email protected]
Date:     Tue Nov  5 16:41:59 2013 UTC
Log:      Experimental lexer generator: test for the previous commit.

[email protected]
BUG=

Review URL: https://codereview.chromium.org/58843005
http://code.google.com/p/v8/source/detail?r=17501

Modified:
 /branches/experimental/parser/tools/lexer_generator/automata_test.py

=======================================
--- /branches/experimental/parser/tools/lexer_generator/automata_test.py Tue Nov 5 15:16:01 2013 UTC +++ /branches/experimental/parser/tools/lexer_generator/automata_test.py Tue Nov 5 16:41:59 2013 UTC
@@ -59,7 +59,8 @@
       ("[ab]{2,3}", ["aa", "ab", "ba", "bb", "aab", "baa", "bbb"],
        ["", "a", "b", "aaaa", "bbba"]),
       ("[ab]{2,4}", ["aa", "ab", "ba", "bb", "aab", "baa", "bbb", "abab"],
-       ["", "a", "b", "aaaba", "bbbaa"])
+       ["", "a", "b", "aaaba", "bbbaa"]),
+      ("[\\101]", ["A"], ["B"])
     ]

     def test_matches(self):

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to