aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/bindings/codegen/parser/debug.patch
blob: 49cb962cbba32dc2fa9839c8bcac1ee7825142b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
--- WebIDL.py
+++ WebIDL.py
@@ -6959,7 +6959,8 @@ class Parser(Tokenizer):
             self.parser = yacc.yacc(module=self,
                                     outputdir=outputdir,
                                     tabmodule='webidlyacc',
-                                    errorlog=logger
+                                    errorlog=logger,
+                                    debug=False
                                     # Pickling the grammar is a speedup in
                                     # some cases (older Python?) but a
                                     # significant slowdown in others.