Home
last modified time | relevance | path

Searched defs:AstValue (Results 1 – 1 of 1) sorted by relevance

/external/v8/src/
Dast-value-factory.h199 explicit AstValue(const AstRawString* s) : type_(STRING) { string_ = s; } in AstValue() function
201 explicit AstValue(const char* name) : type_(SYMBOL) { symbol_name_ = name; } in AstValue() function
203 explicit AstValue(double n) : type_(NUMBER) { number_ = n; } in AstValue() function
205 AstValue(Type t, int i) : type_(t) { in AstValue() function
210 explicit AstValue(bool b) : type_(BOOLEAN) { bool_ = b; } in AstValue() function
212 explicit AstValue(ZoneList<const AstRawString*>* s) : type_(STRING_ARRAY) { in AstValue() function
216 explicit AstValue(Type t) : type_(t) { in AstValue() function