summaryrefslogtreecommitdiff
path: root/test/built-ins/Proxy/apply/call-result.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Proxy/apply/call-result.js')
-rw-r--r--test/built-ins/Proxy/apply/call-result.js10
1 files changed, 6 insertions, 4 deletions
diff --git a/test/built-ins/Proxy/apply/call-result.js b/test/built-ins/Proxy/apply/call-result.js
index 0348f4f01..1f3bf53d2 100644
--- a/test/built-ins/Proxy/apply/call-result.js
+++ b/test/built-ins/Proxy/apply/call-result.js
@@ -10,12 +10,14 @@ info: |
9. Return Call(trap, handler, «target, thisArgument, argArray»).
---*/
-var target = function(a, b) { return a + b; };
+var target = function(a, b) {
+ return a + b;
+};
var result = {};
var handler = {
- apply: function(t, c, args) {
- return result;
- }
+ apply: function(t, c, args) {
+ return result;
+ }
};
var p = new Proxy(target, handler);