summaryrefslogtreecommitdiff
path: root/test/built-ins/Proxy/apply/call-parameters.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Proxy/apply/call-parameters.js')
-rw-r--r--test/built-ins/Proxy/apply/call-parameters.js16
1 files changed, 9 insertions, 7 deletions
diff --git a/test/built-ins/Proxy/apply/call-parameters.js b/test/built-ins/Proxy/apply/call-parameters.js
index db07eb6e3..347e4bb4e 100644
--- a/test/built-ins/Proxy/apply/call-parameters.js
+++ b/test/built-ins/Proxy/apply/call-parameters.js
@@ -12,14 +12,16 @@ info: |
---*/
var _target, _args, _handler, _context;
-var target = function(a, b) { return a + b; };
+var target = function(a, b) {
+ return a + b;
+};
var handler = {
- apply: function(t, c, args) {
- _handler = this;
- _target = t;
- _context = c;
- _args = args;
- }
+ apply: function(t, c, args) {
+ _handler = this;
+ _target = t;
+ _context = c;
+ _args = args;
+ }
};
var p = new Proxy(target, handler);