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

Unified Diff: tools/lexer_generator/code_generator_test.py

Issue 61003003: Experimental parser: cleanup rule processing result (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/parser
Patch Set: Created 7 years, 1 month 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 | « tools/lexer_generator/action_test.py ('k') | tools/lexer_generator/dfa.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/lexer_generator/code_generator_test.py
diff --git a/tools/lexer_generator/code_generator_test.py b/tools/lexer_generator/code_generator_test.py
index 92ed6f971228b37e3baf0dd5842807c800f0d9ac..1a5b95854a87487f4867e5c45a505d9598575e21 100644
--- a/tools/lexer_generator/code_generator_test.py
+++ b/tools/lexer_generator/code_generator_test.py
@@ -40,5 +40,5 @@ class CodeGeneratorTestCase(unittest.TestCase):
"foo" { FOO }
eof <<terminate>>'''
rule_processor = RuleProcessor.parse(rules)
- (nfa, dfa) = rule_processor.default_automata()
+ dfa = rule_processor.default_automata().dfa()
CodeGenerator.dfa_to_code(dfa)
« no previous file with comments | « tools/lexer_generator/action_test.py ('k') | tools/lexer_generator/dfa.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698