Home | History | Annotate | Download | only in src

Lines Matching refs:code_

304       return (code_ & kIdentifierFlag) != 0;
310 static_cast<PreParser::Identifier::Type>(code_ >> kIdentifierShift));
315 return (code_ & 7) > 4;
322 bool IsStringLiteral() { return (code_ & kStringLiteralFlag) != 0; }
329 return (code_ & kStringLiteralMask) == kUseStrictString;
333 return code_ == kThisExpression;
337 return code_ == kThisPropertyExpression;
341 return code_ == kStrictFunctionExpression;
345 int type = code_ & 3;
350 return Expression(code_ | kParentesizedExpressionFlag);
384 explicit Expression(int expression_code) : code_(expression_code) { }
386 int code_;
415 return code_ != kUnknownStatement;
419 return code_ == kUseStrictExpressionStatement;
423 return code_ == kFunctionDeclaration;
434 explicit Statement(Type code) : code_(code) {}
435 Type code_;