Home
last modified time | relevance | path

Searched refs:ObjectLiteralProperty (Results 1 – 10 of 10) sorted by relevance

/external/v8/src/ast/
Dast.cc306 ObjectLiteralProperty::ObjectLiteralProperty(Expression* key, Expression* value, in ObjectLiteralProperty() function in v8::internal::ObjectLiteralProperty
312 ObjectLiteralProperty::ObjectLiteralProperty(AstValueFactory* ast_value_factory, in ObjectLiteralProperty() function in v8::internal::ObjectLiteralProperty
Dast-traversal-visitor.h333 ZonePtrList<ObjectLiteralProperty>* props = expr->properties(); in VisitObjectLiteral()
335 ObjectLiteralProperty* prop = props->at(i); in VisitObjectLiteral()
Dast.h1281 class ObjectLiteralProperty final : public LiteralProperty {
1308 ObjectLiteralProperty(Expression* key, Expression* value, Kind kind,
1310 ObjectLiteralProperty(AstValueFactory* ast_value_factory, Expression* key,
1322 typedef ObjectLiteralProperty Property;
1397 ObjectLiteralProperty* getter;
1398 ObjectLiteralProperty* setter;
3027 Expression* key, Expression* value, ObjectLiteralProperty::Kind kind, in NewObjectLiteralProperty()
/external/v8/src/parsing/
Dpattern-rewriter.cc385 for (ObjectLiteralProperty* property : *pattern->properties()) { in VisitObjectLiteral()
388 if (property->kind() == ObjectLiteralProperty::Kind::SPREAD) { in VisitObjectLiteral()
Dparser.h124 typedef ObjectLiteral::Property* ObjectLiteralProperty;
954 void SetFunctionNameFromPropertyName(ObjectLiteralProperty* property,
Dpreparser.h613 ObjectLiteralProperty::Kind kind, in NewObjectLiteralProperty()
893 typedef PreParserExpression ObjectLiteralProperty;
Dparser-base.h239 typedef typename Types::ObjectLiteralProperty ObjectLiteralPropertyT;
2570 ObjectLiteralProperty::SPREAD, true); in ParseObjectPropertyDefinition()
2654 name_expression, value, ObjectLiteralProperty::COMPUTED, false); in ParseObjectPropertyDefinition()
2679 name_expression, value, ObjectLiteralProperty::COMPUTED, in ParseObjectPropertyDefinition()
2712 is_get ? ObjectLiteralProperty::GETTER in ParseObjectPropertyDefinition()
2713 : ObjectLiteralProperty::SETTER, in ParseObjectPropertyDefinition()
Dparser.cc2802 for (ObjectLiteralProperty* literal_property : *pattern->properties()) { in BuildAssertIsCoercible()
3708 void Parser::SetFunctionNameFromPropertyName(ObjectLiteralProperty* property, in SetFunctionNameFromPropertyName()
3717 property->kind() == ObjectLiteralProperty::COMPUTED); in SetFunctionNameFromPropertyName()
/external/v8/src/interpreter/
Dbytecode-generator.h205 ObjectLiteralProperty* property,
Dbytecode-generator.cc4806 Register home_object, ObjectLiteralProperty* property, Register value_out) { in VisitObjectLiteralAccessor()