Home | History | Annotate | Download | only in parsing

Lines Matching refs:is_get

1121                                 bool* is_generator, bool* is_get, bool* is_set,
2046 IdentifierT* name, PropertyKind* kind, bool* is_generator, bool* is_get,
2050 DCHECK(!*is_get);
2082 !scanner()->IsGetOrSet(is_get, is_set)) {
2181 bool is_get = false;
2208 &name, &kind, &is_generator, &is_get, &is_set, &is_async,
2213 &name, &kind, &is_generator, &is_get, &is_set, &is_async,
2248 DCHECK(!is_get && !is_set);
2285 DCHECK((is_get || is_set) && !is_generator && !is_async);
2298 FunctionKind kind = is_get ? FunctionKind::kGetterFunction
2309 impl()->AddAccessorPrefixToFunctionName(is_get, value, name);
2313 is_get ? ClassLiteralProperty::GETTER : ClassLiteralProperty::SETTER;
2364 bool is_get = false;
2376 &name, &kind, &is_generator, &is_get, &is_set, &is_async,
2382 DCHECK(!is_get && !is_set && !is_generator && !is_async &&
2394 DCHECK(!is_get && !is_set && !is_generator && !is_async);
2422 DCHECK(!is_get && !is_set && !is_generator && !is_async);
2482 DCHECK(!is_get && !is_set);
2509 DCHECK((is_get || is_set) && !(is_set && is_get) && !is_generator &&
2524 FunctionKind kind = is_get ? FunctionKind::kGetterFunction
2534 impl()->AddAccessorPrefixToFunctionName(is_get, value, name);
2538 name_expression, value, is_get ? ObjectLiteralProperty::GETTER