Searched refs:is_getter (Results 1 - 5 of 5) sorted by relevance

/external/v8/src/
H A Dpreparser.cc1255 bool is_getter = false; local
1257 ParseIdentifierNameOrGetOrSet(&is_getter, &is_setter, CHECK_OK);
1258 if ((is_getter || is_setter) && peek() != i::Token::COLON) {
1273 PropertyType type = is_getter ? kGetterProperty : kSetterProperty;
H A Dast.cc194 ObjectLiteral::Property::Property(bool is_getter, FunctionLiteral* value) { argument
197 kind_ = is_getter ? GETTER : SETTER;
H A Dast.h1336 Property(bool is_getter, FunctionLiteral* value);
2807 ObjectLiteral::Property* NewObjectLiteralProperty(bool is_getter, argument
2810 new(zone_) ObjectLiteral::Property(is_getter, value);
H A Dparser.cc4056 ObjectLiteral::Property* Parser::ParseObjectLiteralGetSet(bool is_getter, argument
4081 return factory()->NewObjectLiteralProperty(is_getter, value);
4119 bool is_getter = false; local
4122 ParseIdentifierNameOrGetOrSet(&is_getter, &is_setter, CHECK_OK);
4125 if ((is_getter || is_setter) && peek() != Token::COLON) {
4129 ParseObjectLiteralGetSet(is_getter, CHECK_OK);
H A Dparser.h642 ObjectLiteral::Property* ParseObjectLiteralGetSet(bool is_getter, bool* ok);

Completed in 186 milliseconds