File: call-parameters-new-target.js

package info (click to toggle)
qtdeclarative-opensource-src-gles 5.15.17%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 258,992 kB
  • sloc: javascript: 512,415; cpp: 497,385; xml: 8,892; python: 3,304; ansic: 2,764; sh: 206; makefile: 46; php: 27
file content (41 lines) | stat: -rw-r--r-- 1,373 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Copyright (C) 2017 Aleksey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es6id: 9.5.14
esid: sec-proxy-object-internal-methods-and-internal-slots-construct-argumentslist-newtarget
description: >
    trap is called with handler object as its context, and parameters are:
    target, an array list with the called arguments and the NewTarget
info: |
    [[Construct]] (argumentsList, newTarget)

    9. Let newObj be Call(trap, handler, «target, argArray, newTarget»).
features: [Reflect.construct]
---*/

function Target() {}

function NewTarget() {}

var handler = {
  construct: function(target, args, newTarget) {
    assert.sameValue(this, handler, "trap context is the handler object");
    assert.sameValue(target, Target, "first parameter is the target object");
    assert.sameValue(args.length, 2, "arguments list contains all construct arguments");

    var a = args[0];
    var b = args[1];
    assert.sameValue(a, 1, "arguments list has first construct argument");
    assert.sameValue(b, 2, "arguments list has second construct argument");
    assert.sameValue(newTarget, NewTarget, "newTarget is passed as the third parameter");

    return {
      sum: a + b
    };
  },
};

var P = new Proxy(Target, handler);
var res = Reflect.construct(P, [1, 2], NewTarget);
assert.sameValue(res.sum, 3);