Lines Matching refs:AstValue
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()
307 AstValue* value = in NewSmi()
308 new (zone_) AstValue(AstValue::SMI, number); in NewSmi()
319 value = new (zone_) AstValue(initializer); \
328 const AstValue* AstValueFactory::NewBoolean(bool b) { in NewBoolean()
337 const AstValue* AstValueFactory::NewNull() { in NewNull()
338 GENERATE_VALUE_GETTER(null_value_, AstValue::NULL_TYPE); in NewNull()
342 const AstValue* AstValueFactory::NewUndefined() { in NewUndefined()
343 GENERATE_VALUE_GETTER(undefined_value_, AstValue::UNDEFINED); in NewUndefined()
347 const AstValue* AstValueFactory::NewTheHole() { in NewTheHole()
348 GENERATE_VALUE_GETTER(the_hole_value_, AstValue::THE_HOLE); in NewTheHole()