Chromium Code Reviews| Index: tools/idl_parser/idl_lexer.py |
| diff --git a/tools/idl_parser/idl_lexer.py b/tools/idl_parser/idl_lexer.py |
| index d7311df1ca6023a16d4957913401c173402d5599..327024eb2e8bab49bcec89ebdd2d40219bc03b81 100755 |
| --- a/tools/idl_parser/idl_lexer.py |
| +++ b/tools/idl_parser/idl_lexer.py |
| @@ -67,6 +67,7 @@ class IDLLexer(object): |
| 'attribute' : 'ATTRIBUTE', |
| 'boolean' : 'BOOLEAN', |
| 'byte' : 'BYTE', |
| + 'ByteString' : 'BYTESTRING', |
| 'callback' : 'CALLBACK', |
| 'const' : 'CONST', |
| 'creator' : 'CREATOR', |
| @@ -84,6 +85,7 @@ class IDLLexer(object): |
| 'Infinity' : 'INFINITY', |
| 'inherit' : 'INHERIT', |
| 'interface' : 'INTERFACE', |
| + #'iterator': 'ITERATOR', |
|
noelallen1
2014/06/12 19:33:36
Did you mean to leave this in?
Jens Widell
2014/06/13 06:19:12
Not really. Same here as with the commented out pr
|
| 'legacycaller' : 'LEGACYCALLER', |
| 'long' : 'LONG', |
| 'Nan' : 'NAN', |
| @@ -94,7 +96,9 @@ class IDLLexer(object): |
| 'or' : 'OR', |
| 'partial' : 'PARTIAL', |
| 'readonly' : 'READONLY', |
| + 'RegExp' : 'REGEXP', |
| 'sequence' : 'SEQUENCE', |
| + 'serializer' : 'SERIALIZER', |
| 'setter': 'SETTER', |
| 'short' : 'SHORT', |
| 'static' : 'STATIC', |