OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are |
| 4 // met: |
| 5 // |
| 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided |
| 11 // with the distribution. |
| 12 // * Neither the name of Google Inc. nor the names of its |
| 13 // contributors may be used to endorse or promote products derived |
| 14 // from this software without specific prior written permission. |
| 15 // |
| 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 |
| 28 'use strict'; |
| 29 |
| 30 |
| 31 // This file relies on the fact that the following declaration has been made |
| 32 // in runtime.js: |
| 33 // var $Set = global.Set; |
| 34 // var $Map = global.Map; |
| 35 |
| 36 |
| 37 function SetIteratorNext() { |
| 38 if (!IS_SET_ITERATOR(this)) { |
| 39 throw MakeTypeError('incompatible_method_receiver', |
| 40 ['Set Iterator.prototype.next', this]); |
| 41 } |
| 42 return %SetIteratorNext(this); |
| 43 } |
| 44 |
| 45 |
| 46 function SetEntries() { |
| 47 if (!IS_SET(this)) { |
| 48 throw MakeTypeError('incompatible_method_receiver', |
| 49 ['Set.prototype.entries', this]); |
| 50 } |
| 51 return %SetCreateIterator(this, ITERATOR_KIND_ENTRIES); |
| 52 } |
| 53 |
| 54 |
| 55 function SetValues() { |
| 56 if (!IS_SET(this)) { |
| 57 throw MakeTypeError('incompatible_method_receiver', |
| 58 ['Set.prototype.values', this]); |
| 59 } |
| 60 return %SetCreateIterator(this, ITERATOR_KIND_VALUES); |
| 61 } |
| 62 |
| 63 |
| 64 function SetUpSetIterator() { |
| 65 %CheckIsBootstrapping(); |
| 66 |
| 67 delete MapIterator.prototype.constructor; |
| 68 %FunctionSetInstanceClassName(SetIterator, 'Set Iterator'); |
| 69 InstallFunctions(SetIterator.prototype, DONT_ENUM, $Array( |
| 70 'next', SetIteratorNext |
| 71 )); |
| 72 } |
| 73 |
| 74 SetUpSetIterator(); |
| 75 |
| 76 |
| 77 function ExtendSetPrototype() { |
| 78 %CheckIsBootstrapping(); |
| 79 |
| 80 InstallFunctions($Set.prototype, DONT_ENUM, $Array( |
| 81 'entries', SetEntries, |
| 82 'values', SetValues |
| 83 )); |
| 84 } |
| 85 |
| 86 ExtendSetPrototype(); |
| 87 |
| 88 |
| 89 function MapIteratorNext() { |
| 90 if (!IS_MAP_ITERATOR(this)) { |
| 91 throw MakeTypeError('incompatible_method_receiver', |
| 92 ['Map Iterator.prototype.next', this]); |
| 93 } |
| 94 return %MapIteratorNext(this); |
| 95 } |
| 96 |
| 97 |
| 98 function MapEntries() { |
| 99 if (!IS_MAP(this)) { |
| 100 throw MakeTypeError('incompatible_method_receiver', |
| 101 ['Map.prototype.entries', this]); |
| 102 } |
| 103 return %MapCreateIterator(this, ITERATOR_KIND_ENTRIES); |
| 104 } |
| 105 |
| 106 |
| 107 function MapKeys() { |
| 108 if (!IS_MAP(this)) { |
| 109 throw MakeTypeError('incompatible_method_receiver', |
| 110 ['Map.prototype.keys', this]); |
| 111 } |
| 112 return %MapCreateIterator(this, ITERATOR_KIND_KEYS); |
| 113 } |
| 114 |
| 115 |
| 116 function MapValues() { |
| 117 if (!IS_MAP(this)) { |
| 118 throw MakeTypeError('incompatible_method_receiver', |
| 119 ['Map.prototype.values', this]); |
| 120 } |
| 121 return %MapCreateIterator(this, ITERATOR_KIND_VALUES); |
| 122 } |
| 123 |
| 124 |
| 125 function SetUpMapIterator() { |
| 126 %CheckIsBootstrapping(); |
| 127 |
| 128 delete MapIterator.prototype.constructor; |
| 129 %FunctionSetInstanceClassName(MapIterator, 'Map Iterator'); |
| 130 InstallFunctions(MapIterator.prototype, DONT_ENUM, $Array( |
| 131 'next', MapIteratorNext |
| 132 )); |
| 133 } |
| 134 |
| 135 SetUpMapIterator(); |
| 136 |
| 137 |
| 138 function ExtendMapPrototype() { |
| 139 %CheckIsBootstrapping(); |
| 140 |
| 141 InstallFunctions($Map.prototype, DONT_ENUM, $Array( |
| 142 'entries', MapEntries, |
| 143 'keys', MapKeys, |
| 144 'values', MapValues |
| 145 )); |
| 146 } |
| 147 |
| 148 ExtendMapPrototype(); |
OLD | NEW |