HomeSort by relevance Sort by last modified time
    Searched refs:AstValue (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/v8/src/
ast-value-factory.cc 140 bool AstValue::IsPropertyName() const {
149 bool AstValue::BooleanValue() const {
179 void AstValue::Internalize(Isolate* isolate) {
290 const AstValue* AstValueFactory::NewString(const AstRawString* string) {
291 AstValue* value = new (zone_) AstValue(string);
301 const AstValue* AstValueFactory::NewSymbol(const char* name) {
302 AstValue* value = new (zone_) AstValue(name);
311 const AstValue* AstValueFactory::NewNumber(double number)
    [all...]
ast-value-factory.h 35 // AstString, AstValue and AstValueFactory are for storing strings and values
137 // AstValue is either a string, a number, a string array, a boolean, or a
139 class AstValue : public ZoneObject {
199 explicit AstValue(const AstRawString* s) : type_(STRING) { string_ = s; }
201 explicit AstValue(const char* name) : type_(SYMBOL) { symbol_name_ = name; }
203 explicit AstValue(double n) : type_(NUMBER) { number_ = n; }
205 AstValue(Type t, int i) : type_(t) {
210 explicit AstValue(bool b) : type_(BOOLEAN) { bool_ = b; }
212 explicit AstValue(ZoneList<const AstRawString*>* s) : type_(STRING_ARRAY) {
216 explicit AstValue(Type t) : type_(t)
    [all...]
ast.h     [all...]
parser.cc 499 const AstValue* literal = expression->AsLiteral()->raw_value();
    [all...]

Completed in 70 milliseconds