summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/class/elements/init-err-evaluation.js
blob: d661a37ab6c11bc6309d92da1f5a88d2e57931bb (plain)
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
// This file was procedurally generated from the following sources:
// - src/class-elements/init-err-evaluation.case
// - src/class-elements/default/cls-decl.template
/*---
description: Return abrupt completion evaluating the field initializer (field definitions in a class declaration)
esid: prod-FieldDefinition
features: [class-fields-public, class]
flags: [generated]
info: |
    [[Construct]] ( argumentsList, newTarget)

    8. If kind is "base", then
      a. Perform OrdinaryCallBindThis(F, calleeContext, thisArgument).
      b. Let result be InitializeInstanceFields(thisArgument, F).
      ...
    ...
    11. Let result be OrdinaryCallEvaluateBody(F, argumentsList).
    ...

---*/
var x = 0;
function fn1() { x += 1; }
function fn2() { throw new Test262Error(); }


class C {
  x = fn1();
  y = fn2();
  z = fn1();
}

assert.throws(Test262Error, function() {
  new C();
});

assert.sameValue(x, 1);

reportCompare(0, 0);