Lines Matching full:getter
72 function TryGetter(context, getter, obj, expected, expectException) {
82 %ClearFunctionTypeFeedback(getter);
85 function TestGetterInAllContexts(getter, obj, expected, expectException) {
86 TryGetter(value_context_for_getter, getter, obj, expected, expectException);
87 TryGetter(test_context_for_getter, getter, obj, expected ? 111 : 222,
89 TryGetter(effect_context_for_getter, getter, obj, 5678, expectException);
93 // Test getter returning something 'true'ish in all contexts.
109 // Test getter returning false in all contexts.
125 // Test getter without a return in all contexts.
140 // Test getter with too many arguments without a return in all contexts.
156 // Test getter with too many arguments with a return in all contexts.
173 // Test getter which throws from optimized code.