Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / bindings / scripts / blink_idl_lexer.py
index ba68c6c..31a71ff 100644 (file)
@@ -110,6 +110,10 @@ class BlinkIDLLexer(IDLLexer):
                     except OSError:
                         pass
 
+            lextab = LEXTAB
+        else:
+            lextab = None
+
         IDLLexer.__init__(self)
         # Overrides to parent class
         self._RemoveTokens(REMOVE_TOKENS)
@@ -120,7 +124,7 @@ class BlinkIDLLexer(IDLLexer):
         self._lexobj = lex.lex(object=self,
                                debug=debug,
                                optimize=optimize,
-                               lextab=LEXTAB,
+                               lextab=lextab,
                                outputdir=outputdir)