Searched refs:LiteralProperty (Results 1 – 6 of 6) sorted by relevance
/third_party/node/deps/v8/src/ast/ |
D | ast.cc | 281 : LiteralProperty(key, value, is_computed_name), in ObjectLiteralProperty() 288 : LiteralProperty(key, value, is_computed_name), emit_store_(true) { in ObjectLiteralProperty() 301 bool LiteralProperty::NeedsSetFunctionName() const { in NeedsSetFunctionName() 311 : LiteralProperty(key, value, is_computed_name), in ClassLiteralProperty()
|
D | ast.h | 1196 class LiteralProperty : public ZoneObject { 1207 LiteralProperty(Expression* key, Expression* value, bool is_computed_name) in LiteralProperty() function 1217 class ObjectLiteralProperty final : public LiteralProperty { 2368 class ClassLiteralProperty final : public LiteralProperty {
|
/third_party/node/deps/v8/src/interpreter/ |
D | bytecode-generator.h | 342 void VisitLiteralAccessor(LiteralProperty* property, Register value_out); 379 void BuildLoadPropertyKey(LiteralProperty* property, Register out_reg);
|
D | bytecode-generator.cc | 6909 void BytecodeGenerator::VisitLiteralAccessor(LiteralProperty* property, in VisitLiteralAccessor() 7003 void BytecodeGenerator::BuildLoadPropertyKey(LiteralProperty* property, in BuildLoadPropertyKey()
|
/third_party/node/deps/v8/src/parsing/ |
D | parser.h | 909 void SetFunctionNameFromPropertyName(LiteralProperty* property,
|
D | parser.cc | 3591 void Parser::SetFunctionNameFromPropertyName(LiteralProperty* property, in SetFunctionNameFromPropertyName() 3625 SetFunctionNameFromPropertyName(static_cast<LiteralProperty*>(property), name, in SetFunctionNameFromPropertyName()
|