v8/test/mjsunit/harmony
adamk@chromium.org 509a1a405c ES6: Add support for values/keys/entries for Map and Set
This allows code like this:

  var map = new Map();
  map.set(1, 'One');
  ...
  var iter = map.values();
  var res;
  while (!(res = iter.next()).done) {
    print(res.value);
  }

BUG=v8:1793
LOG=Y
R=mstarzinger@chromium.org

Review URL: https://codereview.chromium.org/259883002

Patch from Erik Arvidsson <arv@chromium.org>.

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@21615 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
2014-06-03 00:34:01 +00:00
..
regress Stage ES6 symbols 2014-05-16 14:42:02 +00:00
array-fill.js Fix typos in unit test for Array.prototype.fill() 2014-05-09 16:11:50 +00:00
array-find.js
array-findindex.js
array-iterator.js Array Iterator next should check for own property 2014-05-21 08:05:11 +00:00
block-conflicts.js
block-const-assign.js
block-early-errors.js
block-for.js Make let variables fresh in each iteration of a for-loop. 2014-05-26 08:07:02 +00:00
block-lazy-compile.js
block-leave.js
block-let-crankshaft.js
block-let-declaration.js Mode clean-up pt 1: rename classic/non-strict mode to sloppy mode 2014-03-11 14:39:08 +00:00
block-let-semantics.js
block-scoping.js
collection-iterator.js ES6: Add support for values/keys/entries for Map and Set 2014-06-03 00:34:01 +00:00
collections.js ES6 Map/Set iterators/forEach improvements 2014-05-20 14:22:05 +00:00
dataview-accessors.js
debug-blockscopes.js Make let variables fresh in each iteration of a for-loop. 2014-05-26 08:07:02 +00:00
debug-evaluate-blockscopes.js
debug-function-scopes.js
debug-stepin-collections-foreach.js Allow debugger to step into Map and Set forEach callbacks 2014-05-21 09:25:50 +00:00
generators-debug-liveedit.js Reland "Prevent liveedit on or under generators with open activations" 2014-05-22 07:32:59 +00:00
generators-debug-scopes.js Add tests for generator/debugger interaction 2014-04-25 09:35:41 +00:00
generators-iteration.js
generators-objects.js Refactor optimized in hydrogen only runtime functions. 2014-03-25 14:26:55 +00:00
generators-parsing.js Mode clean-up pt 1: rename classic/non-strict mode to sloppy mode 2014-03-11 14:39:08 +00:00
generators-poisoned-properties.js Poison .arguments and .caller for generator functions 2014-05-19 10:47:00 +00:00
generators-relocation.js Relocate suspended generator activations when enabling debug mode 2014-05-05 14:31:51 +00:00
generators-runtime.js Poison .arguments and .caller for generator functions 2014-05-19 10:47:00 +00:00
iteration-semantics.js
iteration-syntax.js
module-linking.js
module-parsing.js
module-recompile.js
module-resolution.js
numeric-literals-off.js
numeric-literals.js
private.js Re^3-land "Ship promises and weak collections" 2014-05-06 14:48:34 +00:00
proxies-example-membrane.js Mode clean-up pt 1: rename classic/non-strict mode to sloppy mode 2014-03-11 14:39:08 +00:00
proxies-for.js
proxies-function.js Mode clean-up pt 1: rename classic/non-strict mode to sloppy mode 2014-03-11 14:39:08 +00:00
proxies-hash.js Re^3-land "Ship promises and weak collections" 2014-05-06 14:48:34 +00:00
proxies-json.js
proxies-symbols.js
proxies-with.js
proxies.js Rename A64 port to ARM64 port 2014-03-21 09:28:26 +00:00
set-prototype-of.js Move all Harmony-only tests to harmony/ 2014-02-28 14:26:32 +00:00
string-contains.js Make String.prototype.contains throw when passing a regular expression 2014-04-07 10:24:01 +00:00
string-endswith.js
string-repeat.js
string-startswith.js
typedarrays.js Inline internal getters for typed arrays & friends. 2014-03-28 15:25:24 +00:00
typeof.js