summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/generators/prototype-relation-to-function.js
blob: a5c2b8104c9385dc3c3c68bf4b7f72fe086af03d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (C) 2013 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: >
    The value of the [[Prototype]] internal slot of the GeneratorFunction
    prototype object is the FunctionPrototype intrinsic object.
es6id: 25.2.2.2
features: [generators]
---*/

function f() {}
function* g() {}

assert.sameValue(
  Object.getPrototypeOf(Object.getPrototypeOf(g)),
  Object.getPrototypeOf(f)
);

reportCompare(0, 0);