Home
last modified time | relevance | path

Searched refs:IsFunctionLiteral (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/parsing/
Dparameter-initializer-rewriter.cc57 DCHECK(prop->value()->IsFunctionLiteral()); in VisitClassLiteral()
Dparser.cc372 if (left->IsProperty() && right->IsFunctionLiteral()) { in CheckAssigningFunctionLiteralToProperty()
930 expression()->IsFunctionLiteral()) { in DoParseProgram()
1091 DCHECK(expression->IsFunctionLiteral()); in ParseLazy()
2428 if (value->IsFunctionLiteral()) { in ParseVariableDeclarations()
5489 if (!value->IsFunctionLiteral() && !value->IsClassLiteral()) return; in SetFunctionNameFromPropertyName()
5499 if (value->IsFunctionLiteral()) { in SetFunctionNameFromPropertyName()
5526 if (!value->IsFunctionLiteral() && !value->IsClassLiteral()) return; in SetFunctionNameFromIdentifierRef()
5532 if (value->IsFunctionLiteral()) { in SetFunctionNameFromIdentifierRef()
Dpreparser.h253 bool IsFunctionLiteral() const { return false; } in IsFunctionLiteral() function
Dparser-base.h2438 if (result->IsFunctionLiteral() && mode() == PARSE_EAGERLY) { in ParseLeftHandSideExpression()
2864 if (expression->IsFunctionLiteral() && mode() == PARSE_EAGERLY) { in ParseMemberExpressionContinuation()
/external/v8/src/ast/
Dast.cc218 if (expr == nullptr || !expr->IsFunctionLiteral()) return false; in NeedsHomeObject()
/external/v8/test/cctest/
Dtest-parsing.cc1456 if (exp->IsFunctionLiteral()) { in TEST()