summaryrefslogtreecommitdiff
path: root/src/generators/default/class-decl-static-method.template
blob: dcd8f4e68c8c60a0db1a2b9a7073edde58b51a0c (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
// Copyright (C) 2017 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
path: language/statements/class/gen-method-static-
name: Static generator method as a ClassDeclaration element
esid: prod-GeneratorMethod
info: |
  ClassElement :
    static MethodDefinition

  MethodDefinition :
    GeneratorMethod

  14.4 Generator Function Definitions

  GeneratorMethod :
    * PropertyName ( UniqueFormalParameters ) { GeneratorBody }
---*/

var callCount = 0;

class C {static *gen() {
    callCount += 1;
    /*{ body }*/
}}

var gen = C.gen;

var iter = gen();

/*{ assertions }*/

assert.sameValue(callCount, 1);