Searched refs:AstValue (Results 1 – 7 of 7) sorted by relevance
139 bool AstValue::IsPropertyName() const { in IsPropertyName()148 bool AstValue::BooleanValue() const { in BooleanValue()177 void AstValue::Internalize(Isolate* isolate) { in Internalize()305 for (AstValue* current = values_; current != nullptr;) { in Internalize()306 AstValue* next = current->next(); in Internalize()315 const AstValue* AstValueFactory::NewString(const AstRawString* string) { in NewString()316 AstValue* value = new (zone_) AstValue(string); in NewString()322 const AstValue* AstValueFactory::NewSymbol(const char* name) { in NewSymbol()323 AstValue* value = new (zone_) AstValue(name); in NewSymbol()328 const AstValue* AstValueFactory::NewNumber(double number, bool with_dot) { in NewNumber()[all …]
155 class AstValue : public ZoneObject {214 AstValue* next() const { return next_; } in next()215 void set_next(AstValue* next) { next_ = next; } in set_next()234 explicit AstValue(const AstRawString* s) : type_(STRING), next_(nullptr) { in AstValue() function238 explicit AstValue(const char* name) : type_(SYMBOL), next_(nullptr) { in AstValue() function242 explicit AstValue(double n, bool with_dot) : next_(nullptr) { in AstValue() function253 AstValue(Type t, int i) : type_(t), next_(nullptr) { in AstValue() function258 explicit AstValue(bool b) : type_(BOOLEAN), next_(nullptr) { bool_ = b; } in AstValue() function260 explicit AstValue(Type t) : type_(t), next_(nullptr) { in AstValue() function270 AstValue* next_; // if !internalized[all …]
949 const AstValue* x = static_cast<Literal*>(literal1)->raw_value(); in Match()950 const AstValue* y = static_cast<Literal*>(literal2)->raw_value(); in Match()
1254 const AstValue* raw_value() const { return value_; } in raw_value()1269 Literal(const AstValue* value, int position) in Literal()1275 const AstValue* value_;
META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...
1544 const AstValue* raw_value = expr->raw_value(); in VisitLiteral()
390 const AstValue* literal = expression->AsLiteral()->raw_value(); in BuildUnaryExpression()