Home | History | Annotate | Download | only in src

Lines Matching defs:code_

579   bool IsIdentifier() { return (code_ & kIdentifierFlag) != 0; }
584 static_cast<PreParserIdentifier::Type>(code_ >> kIdentifierShift));
587 bool IsStringLiteral() { return (code_ & kStringLiteralFlag) != 0; }
590 return (code_ & kStringLiteralMask) == kUseStrictString;
593 bool IsThis() { return code_ == kThisExpression; }
595 bool IsThisProperty() { return code_ == kThisPropertyExpression; }
598 return code_ == kPropertyExpression || code_ == kThisPropertyExpression;
601 bool IsCall() { return code_ == kCallExpression; }
646 explicit PreParserExpression(int expression_code) : code_(expression_code) {}
648 int code_;
691 return code_ == kStringLiteralExpressionStatement;
695 return code_ == kUseStrictExpressionStatement;
699 return code_ == kFunctionDeclaration;
710 explicit PreParserStatement(Type code) : code_(code) {}
711 Type code_;