Home
last modified time | relevance | path

Searched refs:property_ (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/ets_frontend/es2panda/ir/expressions/
DmemberExpression.cpp30 cb(property_); in Iterate()
37 {"property", property_}, in Dump()
51 return pg->ToPropertyKey(property_, computed_); in CompileKey()
78 checker::Type *indexType = property_->Check(checker); in Check()
86 …checker->ThrowTypeError({"Type ", indexType, " cannot be used as index type"}, property_->Start()); in Check()
99 switch (property_->Type()) { in Check()
102 … {"Property ", property_->AsIdentifier()->Name(), " does not exist on this type."}, in Check()
103 property_->Start()); in Check()
107 … {"Property ", property_->AsNumberLiteral()->Str(), " does not exist on this type."}, in Check()
108 property_->Start()); in Check()
[all …]
DmemberExpression.h42 property_(property), in MemberExpression()
61 return property_; in Property()
90 Expression *property_; variable