Lines Matching refs:identifier
339 bool IdentifierEquals(const AstRawString* identifier,
341 return identifier == other;
542 V8_INLINE bool IsEval(const AstRawString* identifier) const {
543 return identifier == ast_value_factory()->eval_string();
546 V8_INLINE bool IsAsync(const AstRawString* identifier) const {
547 return identifier == ast_value_factory()->async_string();
550 V8_INLINE bool IsArguments(const AstRawString* identifier) const {
551 return identifier == ast_value_factory()->arguments_string();
554 V8_INLINE bool IsEvalOrArguments(const AstRawString* identifier) const {
555 return IsEval(identifier) || IsArguments(identifier);
576 // This returns true if the expression is an identifier (wrapped
593 V8_INLINE bool IsConstructor(const AstRawString* identifier) const {
594 return identifier == ast_value_factory()->constructor_string();
597 V8_INLINE bool IsName(const AstRawString* identifier) const {
598 return identifier == ast_value_factory()->name_string();
917 Expression* identifier);