summaryrefslogtreecommitdiff
path: root/test/built-ins/GeneratorPrototype/next/result-prototype.js
blob: a65010b87b63fe3549aae83d72d7f13b15fe9808 (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.
/*---
es6id: 25.2
description: >
    The `next` method returns an object that has "own" properties `value` and
    `done` and that inherits directly from the Object prototype.
features: [generators]
---*/

function* g() {}
var result = g().next();

assert(
  Object.hasOwnProperty.call(result, 'value'), 'Has "own" property `value`'
);
assert(
  Object.hasOwnProperty.call(result, 'done'), 'Has "own" property `done`'
);
assert.sameValue(Object.getPrototypeOf(result), Object.prototype);