array-iterator.js 4.13 KB
Newer Older
1
// Copyright 2013 the V8 project authors. All rights reserved.
2 3
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
4 5 6

'use strict';

7

8 9 10 11
// This file relies on the fact that the following declaration has been made
// in runtime.js:
// var $Array = global.Array;

12

13 14 15
var arrayIteratorObjectSymbol = GLOBAL_PRIVATE("ArrayIterator#object");
var arrayIteratorNextIndexSymbol = GLOBAL_PRIVATE("ArrayIterator#next");
var arrayIterationKindSymbol = GLOBAL_PRIVATE("ArrayIterator#kind");
16

17

18 19
function ArrayIterator() {}

20

21 22 23 24 25
// TODO(wingo): Update section numbers when ES6 has stabilized.  The
// section numbers below are already out of date as of the May 2014
// draft.


26 27 28 29
// 15.4.5.1 CreateArrayIterator Abstract Operation
function CreateArrayIterator(array, kind) {
  var object = ToObject(array);
  var iterator = new ArrayIterator;
30
  SET_PRIVATE(iterator, arrayIteratorObjectSymbol, object);
31 32
  SET_PRIVATE(iterator, arrayIteratorNextIndexSymbol, 0);
  SET_PRIVATE(iterator, arrayIterationKindSymbol, kind);
33 34 35
  return iterator;
}

36

37 38 39 40 41
// 15.19.4.3.4 CreateItrResultObject
function CreateIteratorResultObject(value, done) {
  return {value: value, done: done};
}

42

43 44 45 46 47 48
// 22.1.5.2.2 %ArrayIteratorPrototype%[@@iterator]
function ArrayIteratorIterator() {
    return this;
}


49 50 51
// 15.4.5.2.2 ArrayIterator.prototype.next( )
function ArrayIteratorNext() {
  var iterator = ToObject(this);
52 53

  if (!HAS_PRIVATE(iterator, arrayIteratorObjectSymbol)) {
54 55 56 57
    throw MakeTypeError('incompatible_method_receiver',
                        ['Array Iterator.prototype.next']);
  }

58 59 60 61 62
  var array = GET_PRIVATE(iterator, arrayIteratorObjectSymbol);
  if (IS_UNDEFINED(array)) {
    return CreateIteratorResultObject(UNDEFINED, true);
  }

63 64
  var index = GET_PRIVATE(iterator, arrayIteratorNextIndexSymbol);
  var itemKind = GET_PRIVATE(iterator, arrayIterationKindSymbol);
65 66 67 68 69
  var length = TO_UINT32(array.length);

  // "sparse" is never used.

  if (index >= length) {
70
    SET_PRIVATE(iterator, arrayIteratorObjectSymbol, UNDEFINED);
71
    return CreateIteratorResultObject(UNDEFINED, true);
72 73
  }

74
  SET_PRIVATE(iterator, arrayIteratorNextIndexSymbol, index + 1);
75

76
  if (itemKind == ITERATOR_KIND_VALUES) {
77
    return CreateIteratorResultObject(array[index], false);
78
  }
79

80
  if (itemKind == ITERATOR_KIND_ENTRIES) {
81
    return CreateIteratorResultObject([index, array[index]], false);
82
  }
83

84
  return CreateIteratorResultObject(index, false);
85 86
}

87

88
function ArrayEntries() {
89
  return CreateArrayIterator(this, ITERATOR_KIND_ENTRIES);
90 91
}

92

93
function ArrayValues() {
94
  return CreateArrayIterator(this, ITERATOR_KIND_VALUES);
95 96
}

97

98
function ArrayKeys() {
99
  return CreateArrayIterator(this, ITERATOR_KIND_KEYS);
100 101
}

102

103 104 105
function SetUpArrayIterator() {
  %CheckIsBootstrapping();

106
  %FunctionSetPrototype(ArrayIterator, new $Object());
107 108 109 110 111
  %FunctionSetInstanceClassName(ArrayIterator, 'Array Iterator');

  InstallFunctions(ArrayIterator.prototype, DONT_ENUM, $Array(
    'next', ArrayIteratorNext
  ));
112
  %FunctionSetName(ArrayIteratorIterator, '[Symbol.iterator]');
113 114
  %AddNamedProperty(ArrayIterator.prototype, symbolIterator,
                    ArrayIteratorIterator, DONT_ENUM);
115 116 117
}
SetUpArrayIterator();

118

119 120 121 122 123 124 125 126
function ExtendArrayPrototype() {
  %CheckIsBootstrapping();

  InstallFunctions($Array.prototype, DONT_ENUM, $Array(
    'entries', ArrayEntries,
    'values', ArrayValues,
    'keys', ArrayKeys
  ));
127

128
  %AddNamedProperty($Array.prototype, symbolIterator, ArrayValues, DONT_ENUM);
129 130
}
ExtendArrayPrototype();
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148


function ExtendTypedArrayPrototypes() {
  %CheckIsBootstrapping();

macro TYPED_ARRAYS(FUNCTION)
  FUNCTION(Uint8Array)
  FUNCTION(Int8Array)
  FUNCTION(Uint16Array)
  FUNCTION(Int16Array)
  FUNCTION(Uint32Array)
  FUNCTION(Int32Array)
  FUNCTION(Float32Array)
  FUNCTION(Float64Array)
  FUNCTION(Uint8ClampedArray)
endmacro

macro EXTEND_TYPED_ARRAY(NAME)
149 150 151 152
  %AddNamedProperty($NAME.prototype, 'entries', ArrayEntries, DONT_ENUM);
  %AddNamedProperty($NAME.prototype, 'values', ArrayValues, DONT_ENUM);
  %AddNamedProperty($NAME.prototype, 'keys', ArrayKeys, DONT_ENUM);
  %AddNamedProperty($NAME.prototype, symbolIterator, ArrayValues, DONT_ENUM);
153 154 155 156 157
endmacro

  TYPED_ARRAYS(EXTEND_TYPED_ARRAY)
}
ExtendTypedArrayPrototypes();