| 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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 assert(default_action and default_action.match_action()) | 240 assert(default_action and default_action.match_action()) |
| 241 default_action = default_action.match_action() | 241 default_action = default_action.match_action() |
| 242 | 242 |
| 243 sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) | 243 sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) |
| 244 template_env = jinja2.Environment( | 244 template_env = jinja2.Environment( |
| 245 loader = jinja2.PackageLoader('lexer_generator', '.'), | 245 loader = jinja2.PackageLoader('lexer_generator', '.'), |
| 246 undefined = jinja2.StrictUndefined) | 246 undefined = jinja2.StrictUndefined) |
| 247 template = template_env.get_template('code_generator.jinja') | 247 template = template_env.get_template('code_generator.jinja') |
| 248 | 248 |
| 249 encoding = self.__dfa.encoding().name() | 249 encoding = self.__dfa.encoding().name() |
| 250 if encoding == 'latin1': | 250 char_types = {'latin1': 'uint8_t', 'utf16': 'uint16_t', 'utf8': 'int8_t'} |
| 251 char_type = 'uint8_t' | 251 char_type = char_types[encoding] |
| 252 elif encoding == 'utf16': | 252 |
| 253 char_type = 'uint16_t' | |
| 254 else: | |
| 255 raise Exception('Unsupported encoding %s' % encoding) | |
| 256 return template.render( | 253 return template.render( |
| 257 start_node_number = 0, | 254 start_node_number = 0, |
| 258 debug_print = self.__debug_print, | 255 debug_print = self.__debug_print, |
| 259 default_action = default_action, | 256 default_action = default_action, |
| 260 dfa_states = dfa_states, | 257 dfa_states = dfa_states, |
| 261 encoding = encoding, | 258 encoding = encoding, |
| 262 char_type = char_type) | 259 char_type = char_type) |
| OLD | NEW |