Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Unified Diff: tools/lexer_generator/automata_test.py

Issue 54183004: Experimental parser: better disjoint keys (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/parser
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/lexer_generator/transition_keys.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/lexer_generator/automata_test.py
diff --git a/tools/lexer_generator/automata_test.py b/tools/lexer_generator/automata_test.py
index ca4abe37f02d5de3486e9247e8c75bad16b94aee..abe33e8731a473cd5a519bf049bbf9c7deb23680 100644
--- a/tools/lexer_generator/automata_test.py
+++ b/tools/lexer_generator/automata_test.py
@@ -52,8 +52,8 @@ class AutomataTestCase(unittest.TestCase):
(".", ["a", "b"], ["", "aa"]),
(".*", ["", "a", "abcaabbcc"], []),
("a.b", ["aab", "abb", "acb"], ["ab", ""]),
- # ("a.?b", ["aab", "abb", "acb", "ab"], ["aaab", ""]),
- # ("a.+b", ["aab", "abb", "acb", "ab"], ["aaab", ""]),
+ ("a.?b", ["aab", "abb", "acb", "ab"], ["aaab", ""]),
+ ("a.+b", ["aab", "abb", "acb"], ["aaac", "ab", ""]),
(".|.", ["a", "b"], ["aa", ""]),
]
« no previous file with comments | « no previous file | tools/lexer_generator/transition_keys.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698