Searched refs:catchHasEval (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/JavaScriptCore/parser/
H A DNodeConstructors.h794 inline TryNode::TryNode(JSGlobalData* globalData, StatementNode* tryBlock, const Identifier& exceptionIdent, bool catchHasEval, StatementNode* catchBlock, StatementNode* finallyBlock) argument
800 , m_catchHasEval(catchHasEval)
H A DJSParser.cpp1131 bool catchHasEval = false; local
1157 catchHasEval = initialEvalCount != context.evalCount();
1168 return context.createTryStatement(tryBlock, ident, catchHasEval, catchBlock, finallyBlock, firstLine, lastLine);
H A DASTBuilder.h412 StatementNode* createTryStatement(StatementNode* tryBlock, const Identifier* ident, bool catchHasEval, StatementNode* catchBlock, StatementNode* finallyBlock, int startLine, int endLine) argument
414 TryNode* result = new (m_globalData) TryNode(m_globalData, tryBlock, *ident, catchHasEval, catchBlock, finallyBlock);
H A DNodes.h1354 TryNode(JSGlobalData*, StatementNode* tryBlock, const Identifier& exceptionIdent, bool catchHasEval, StatementNode* catchBlock, StatementNode* finallyBlock);

Completed in 111 milliseconds