Searched defs:AstValue (Results 1 – 1 of 1) sorted by relevance
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() function