Lines Matching refs:Expression
32 class TSPrivateIdentifier : public Expression {
34 explicit TSPrivateIdentifier(Expression *key, Expression *value, Expression *typeAnnotation)
35 : Expression(AstNodeType::TS_PRIVATE_IDENTIFIER), key_(key), value_(value), typeAnnotation_(typeAnnotation)
39 const Expression *Key() const
44 Expression *Key()
49 const Expression *Value() const
54 const Expression *TypeAnnotation() const
66 Expression *key_;
67 Expression *value_;
68 Expression *typeAnnotation_;