diff options
Diffstat (limited to 'js/src/frontend/Parser.cpp')
-rw-r--r-- | js/src/frontend/Parser.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/js/src/frontend/Parser.cpp b/js/src/frontend/Parser.cpp index c51545f1b9..38bd77ead3 100644 --- a/js/src/frontend/Parser.cpp +++ b/js/src/frontend/Parser.cpp @@ -10190,7 +10190,9 @@ Parser<ParseHandler>::exprInParens(InHandling inHandling, YieldHandling yieldHan bool ParserBase::warnOnceAboutExprClosure() { -#ifndef RELEASE_OR_BETA + // We extensively use expression closures. + // Disabling spew; see Issue #3061 +#if 0 JSContext* cx = context->maybeJSContext(); if (!cx) return true; |