Home | History | Annotate | Download | only in cctest

Lines Matching full:method1

155       "  this.method1 = function() { return 1; }\n"
158 CheckFunctionName(script, "return 1", "MyClass.method1");
170 " obj.method1 = function() { return 1; }\n"
174 CheckFunctionName(script, "return 1", "obj.method1");
203 "MyClass.prototype.method1 = function() { return 1; }\n"
208 CheckFunctionName(script, "return 1", "MyClass.method1");
222 " method1: function() { return 1; },\n"
224 CheckFunctionName(script, "return 1", "MyClass.method1");
265 " method1: 0 ? function() { return 1; } :\n"
267 CheckFunctionName(script, "return 1", "MyClass.method1");
268 CheckFunctionName(script, "return 2", "MyClass.method1");