Index: LayoutTests/fast/js/script-tests/implicit-call-with-global-reentry.js |
diff --git a/LayoutTests/fast/js/script-tests/implicit-call-with-global-reentry.js b/LayoutTests/fast/js/script-tests/implicit-call-with-global-reentry.js |
index adeddcc266fba039e1d604e708ed09b2df764d2c..79f78e62c9a156cb9e7319fa3ea0971796d78848 100644 |
--- a/LayoutTests/fast/js/script-tests/implicit-call-with-global-reentry.js |
+++ b/LayoutTests/fast/js/script-tests/implicit-call-with-global-reentry.js |
@@ -8,7 +8,7 @@ function testGlobalCode(test) { |
} |
var testObject = { |
get getterTest(){ testGlobalCode("var a, b, c, d; testVar = 'PASS';"); }, |
- set setterTest(){ testGlobalCode("var e, f, g, h; testVar = 'PASS';"); }, |
+ set setterTest(_){ testGlobalCode("var e, f, g, h; testVar = 'PASS';"); }, |
toString: function() { testGlobalCode("var i, j, k, l; testVar = 'PASS';"); return ''; }, |
valueOf: function() { testGlobalCode("var m, n, o, p; testVar = 'PASS';"); return 0; }, |
toStringTest: function() { "" + this; }, |