| OLD | NEW |
| 1 # Copyright 2013 the V8 project authors. All rights reserved. | 1 # Copyright 2013 the V8 project authors. All rights reserved. |
| 2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
| 3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
| 4 # met: | 4 # met: |
| 5 # | 5 # |
| 6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
| 7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
| 8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
| 9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
| 10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 self.__dfa = Dfa(start, dfa_nodes) | 245 self.__dfa = Dfa(start, dfa_nodes) |
| 246 self.__minimial_dfa = self.__dfa.minimize() if minimize_dfa else None | 246 self.__minimial_dfa = self.__dfa.minimize() if minimize_dfa else None |
| 247 | 247 |
| 248 def nfa(self): | 248 def nfa(self): |
| 249 return self.__nfa | 249 return self.__nfa |
| 250 | 250 |
| 251 def dfa(self): | 251 def dfa(self): |
| 252 return self.__dfa | 252 return self.__dfa |
| 253 | 253 |
| 254 def minimal_dfa(self): | 254 def minimal_dfa(self): |
| 255 if not self.__minimial_dfa: |
| 256 self.__minimial_dfa = self.__dfa.minimize() |
| 255 return self.__minimial_dfa | 257 return self.__minimial_dfa |
| 256 | 258 |
| 257 def __process_parser_state(self, parser_state, minimize_dfa): | 259 def __process_parser_state(self, parser_state, minimize_dfa): |
| 258 rule_map = {} | 260 rule_map = {} |
| 259 builder = NfaBuilder() | 261 builder = NfaBuilder() |
| 260 builder.set_character_classes(parser_state.character_classes) | 262 builder.set_character_classes(parser_state.character_classes) |
| 261 assert 'default' in parser_state.rules | 263 assert 'default' in parser_state.rules |
| 262 def process(k, v): | 264 def process(k, v): |
| 263 graphs = [] | 265 graphs = [] |
| 264 continues = 0 | 266 continues = 0 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 293 # process first the subgraphs, then the default graph | 295 # process first the subgraphs, then the default graph |
| 294 for k, v in parser_state.rules.items(): | 296 for k, v in parser_state.rules.items(): |
| 295 if k == 'default': continue | 297 if k == 'default': continue |
| 296 process(k, v) | 298 process(k, v) |
| 297 process('default', parser_state.rules['default']) | 299 process('default', parser_state.rules['default']) |
| 298 # build the automata | 300 # build the automata |
| 299 for rule_name, graph in rule_map.items(): | 301 for rule_name, graph in rule_map.items(): |
| 300 nfa = builder.nfa(graph) | 302 nfa = builder.nfa(graph) |
| 301 self.__automata[rule_name] = RuleProcessor.Automata(nfa, minimize_dfa) | 303 self.__automata[rule_name] = RuleProcessor.Automata(nfa, minimize_dfa) |
| 302 self.default_action = parser_state.rules['default']['default_action'] | 304 self.default_action = parser_state.rules['default']['default_action'] |
| OLD | NEW |