Merge branch 'master' into harmony-v3.3.5
This commit is contained in:
@@ -569,12 +569,18 @@ native_prototype: {
|
||||
}
|
||||
input: {
|
||||
Array.prototype.splice.apply(a, [1, 2, b, c]);
|
||||
Function.prototype.call.apply(console.log, console, [ "foo" ]);
|
||||
Number.prototype.toFixed.call(Math.PI, 2);
|
||||
Object.prototype.hasOwnProperty.call(d, "foo");
|
||||
RegExp.prototype.test.call(/foo/, "bar");
|
||||
String.prototype.indexOf.call(e, "bar");
|
||||
}
|
||||
expect: {
|
||||
[].splice.apply(a, [1, 2, b, c]);
|
||||
(function() {}).call.apply(console.log, console, [ "foo" ]);
|
||||
0..toFixed.call(Math.PI, 2);
|
||||
({}).hasOwnProperty.call(d, "foo");
|
||||
/t/.test.call(/foo/, "bar");
|
||||
"".indexOf.call(e, "bar");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user