Home
last modified time | relevance | path

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

/external/v8/src/ast/
Dast-value-factory.h200 explicit AstValue(const AstRawString* s) : type_(STRING) { string_ = s; } in AstValue() function
202 explicit AstValue(const char* name) : type_(SYMBOL) { symbol_name_ = name; } in AstValue() function
204 explicit AstValue(double n, bool with_dot) { in AstValue() function
213 AstValue(Type t, int i) : type_(t) { in AstValue() function
218 explicit AstValue(bool b) : type_(BOOLEAN) { bool_ = b; } in AstValue() function
220 explicit AstValue(Type t) : type_(t) { in AstValue() function