We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b67808c commit d2de5feCopy full SHA for d2de5fe
lib/Parser/Parse.cpp
@@ -9506,6 +9506,15 @@ ParseNodeCatch * Parser::ParseCatch()
9506
GetCurrentBlock()->SetChildCallsEval(true);
9507
}
9508
9509
+ if (pnodeCatchScope->GetCallsEval())
9510
+ {
9511
+ pnodeBody->AsParseNodeBlock()->SetCallsEval(true);
9512
+ }
9513
+ if (pnodeCatchScope->GetChildCallsEval())
9514
9515
+ pnodeBody->AsParseNodeBlock()->SetChildCallsEval(true);
9516
9517
+
9518
if (buildAST)
9519
{
9520
PopStmt(&stmt);
0 commit comments