Searched refs:AstValue (Results 1 – 7 of 7) sorted by relevance
127 bool AstValue::IsPropertyName() const { in IsPropertyName()136 bool AstValue::BooleanValue() const { in BooleanValue()164 void AstValue::Internalize(Isolate* isolate) { in Internalize()275 const AstValue* AstValueFactory::NewString(const AstRawString* string) { in NewString()276 AstValue* value = new (zone_) AstValue(string); in NewString()286 const AstValue* AstValueFactory::NewSymbol(const char* name) { in NewSymbol()287 AstValue* value = new (zone_) AstValue(name); in NewSymbol()296 const AstValue* AstValueFactory::NewNumber(double number, bool with_dot) { in NewNumber()297 AstValue* value = new (zone_) AstValue(number, with_dot); in NewNumber()306 const AstValue* AstValueFactory::NewSmi(int number) { in NewSmi()[all …]
136 class AstValue : public ZoneObject {200 explicit AstValue(const AstRawString* s) : type_(STRING) { string_ = s; } in AstValue() function202 explicit AstValue(const char* name) : type_(SYMBOL) { symbol_name_ = name; } in AstValue() function204 explicit AstValue(double n, bool with_dot) { in AstValue() function213 AstValue(Type t, int i) : type_(t) { in AstValue() function218 explicit AstValue(bool b) : type_(BOOLEAN) { bool_ = b; } in AstValue() function220 explicit AstValue(Type t) : type_(t) { in AstValue() function331 const AstValue* NewString(const AstRawString* string);333 const AstValue* NewSymbol(const char* name);334 const AstValue* NewNumber(double number, bool with_dot = false);[all …]
818 const AstValue* x = static_cast<Literal*>(literal1)->raw_value(); in Match()819 const AstValue* y = static_cast<Literal*>(literal2)->raw_value(); in Match()
1350 const AstValue* raw_value() const { return value_; } in raw_value()1363 Literal(Zone* zone, const AstValue* value, int position) in Literal()1370 const AstValue* value_;
1136 const i::AstValue* val = lit->raw_value(); in CheckParsesToNumber()1143 const i::AstValue* val = rlit->raw_value(); in CheckParsesToNumber()
META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...
454 const AstValue* literal = expression->AsLiteral()->raw_value(); in BuildUnaryExpression()