Home | History | Annotate | Download | only in cctest

Lines Matching full:method1

152               "  this.method1 = function() { return 1; }\n"
155 CheckFunctionName(script, "return 1", "MyClass.method1");
168 " obj.method1 = function() { return 1; }\n"
172 CheckFunctionName(script, "return 1", "obj.method1");
203 "MyClass.prototype.method1 = function() { return 1; }\n"
208 CheckFunctionName(script, "return 1", "MyClass.method1");
223 " method1: function() { return 1; },\n"
225 CheckFunctionName(script, "return 1", "MyClass.method1");
306 " method1: 0 ? function() { return 1; } :\n"
308 CheckFunctionName(script, "return 1", "MyClass.method1");
309 CheckFunctionName(script, "return 2", "MyClass.method1");
419 " obj[\"method1\"] = function() { return 1; }\n"
423 CheckFunctionName(script, "return 1", "obj.method1");
436 " var methodName = \"method1\";\n"
456 " obj[0 ? \"method1\" : \"method2\"] = function() { return 1; }\n"