Home
last modified time | relevance | path

Searched refs:object_literal (Results 1 – 2 of 2) sorted by relevance

/external/v8/test/mjsunit/
Dtrack-fields.js123 function object_literal() { return {"a":1.5}; } function
124 var o8 = object_literal();
125 var o9 = object_literal();
/external/v8/src/parsing/
Dparser.cc3904 ObjectLiteral* object_literal = expression->AsObjectLiteral(); in GetValue() local
3905 if (object_literal != NULL) { in GetValue()
3906 DCHECK(object_literal->is_simple()); in GetValue()
3907 if (object_literal->fast_elements()) { in GetValue()
3912 result->set(kElementsSlot, *object_literal->constant_properties()); in GetValue()