Searched defs:AstValue (Results 1 – 1 of 1) sorted by relevance
199 explicit AstValue(const AstRawString* s) : type_(STRING) { string_ = s; } in AstValue() function201 explicit AstValue(const char* name) : type_(SYMBOL) { symbol_name_ = name; } in AstValue() function203 explicit AstValue(double n) : type_(NUMBER) { number_ = n; } in AstValue() function205 AstValue(Type t, int i) : type_(t) { in AstValue() function210 explicit AstValue(bool b) : type_(BOOLEAN) { bool_ = b; } in AstValue() function212 explicit AstValue(ZoneList<const AstRawString*>* s) : type_(STRING_ARRAY) { in AstValue() function216 explicit AstValue(Type t) : type_(t) { in AstValue() function