destructuring.js.EXPECTED revision 1808:a7f21ee6ed30
12061Sjkhjava.lang.RuntimeException: test/script/basic/es6/destructuring.js#35:6<eval>:1:4 ES6 destructuring is not yet implemented
24249Sachevar { x: y } = obj;
32061Sjkh    ^
42061Sjkhjava.lang.RuntimeException: test/script/basic/es6/destructuring.js#35:6<eval>:1:4 ES6 destructuring is not yet implemented
52061Sjkhlet { x: y } = obj;
62061Sjkh    ^
72061Sjkhjava.lang.RuntimeException: test/script/basic/es6/destructuring.js#35:6<eval>:1:6 ES6 destructuring is not yet implemented
83197Scsgrconst { x: y } = obj;
93197Scsgr      ^
103197Scsgrjava.lang.RuntimeException: test/script/basic/es6/destructuring.js#35:6<eval>:1:1 ES6 destructuring is not yet implemented
112061Sjkh({ x: y }) = obj;
122160Scsgr ^
132834Swollmanjava.lang.RuntimeException: test/script/basic/es6/destructuring.js#35:6<eval>:1:0 ES6 destructuring is not yet implemented
142061Sjkhfor (var { x: y } of obj) ;
152061Sjkh^
162160Scsgrjava.lang.RuntimeException: test/script/basic/es6/destructuring.js#35:6<eval>:1:0 ES6 destructuring is not yet implemented
172061Sjkhfor (let { x: y } of obj) ;
183197Scsgr^
193197Scsgrjava.lang.RuntimeException: test/script/basic/es6/destructuring.js#35:6<eval>:1:4 ES6 destructuring is not yet implemented
203197Scsgrvar { x, y } = obj;
213197Scsgr    ^
221594Srgrimesjava.lang.RuntimeException: test/script/basic/es6/destructuring.js#35:6<eval>:1:4 ES6 destructuring is not yet implemented
232061Sjkhlet { x, y } = obj;
242061Sjkh    ^
251594Srgrimesjava.lang.RuntimeException: test/script/basic/es6/destructuring.js#35:6<eval>:1:6 ES6 destructuring is not yet implemented
262061Sjkhconst { x, y } = obj;
272061Sjkh      ^
282061Sjkhjava.lang.RuntimeException: test/script/basic/es6/destructuring.js#35:6<eval>:1:1 ES6 destructuring is not yet implemented
292061Sjkh({ x, y }) = obj;
302061Sjkh ^
312061Sjkhjava.lang.RuntimeException: test/script/basic/es6/destructuring.js#35:6<eval>:1:0 ES6 destructuring is not yet implemented
322061Sjkhfor (var { x, y } of obj) ;
333029Srgrimes^
343029Srgrimesjava.lang.RuntimeException: test/script/basic/es6/destructuring.js#35:6<eval>:1:0 ES6 destructuring is not yet implemented
352061Sjkhfor (let { x, y } of obj) ;
362061Sjkh^
372061Sjkhjava.lang.RuntimeException: test/script/basic/es6/destructuring.js#35:6<eval>:1:4 ES6 destructuring is not yet implemented
382061Sjkhvar [a, b] = obj;
392061Sjkh    ^
402061Sjkhjava.lang.RuntimeException: test/script/basic/es6/destructuring.js#35:6<eval>:1:4 ES6 destructuring is not yet implemented
412061Sjkhlet [a, b] = obj;
422061Sjkh    ^
432061Sjkhjava.lang.RuntimeException: test/script/basic/es6/destructuring.js#35:6<eval>:1:6 ES6 destructuring is not yet implemented
442061Sjkhconst [a, b] = obj;
452061Sjkh      ^
462061Sjkhjava.lang.RuntimeException: test/script/basic/es6/destructuring.js#35:6<eval>:1:0 ES6 destructuring is not yet implemented
472061Sjkh[a, b] = obj;
483197Scsgr^
492061Sjkhjava.lang.RuntimeException: test/script/basic/es6/destructuring.js#35:6<eval>:1:0 ES6 destructuring is not yet implemented
502061Sjkhfor ([a, b] of obj) ;
513197Scsgr^
522626Scsgrjava.lang.RuntimeException: test/script/basic/es6/destructuring.js#35:6<eval>:1:0 ES6 destructuring is not yet implemented
532626Scsgrfor (var [a, b] of obj) ;
542061Sjkh^
552061Sjkhjava.lang.RuntimeException: test/script/basic/es6/destructuring.js#35:6<eval>:1:0 ES6 destructuring is not yet implemented
562061Sjkhfor (let [a, b] of obj) ;
572061Sjkh^
582061Sjkhjava.lang.RuntimeException: test/script/basic/es6/destructuring.js#35:6<eval>:1:9 ES6 destructuring is not yet implemented
592061Sjkh(function({ x: y }) { return x; })()
602061Sjkh         ^
612061Sjkhjava.lang.RuntimeException: test/script/basic/es6/destructuring.js#35:6<eval>:1:9 ES6 destructuring is not yet implemented
622061Sjkh(function({ x }) { return x; })()
632061Sjkh         ^
642061Sjkhjava.lang.RuntimeException: test/script/basic/es6/destructuring.js#35:6<eval>:1:9 ES6 destructuring is not yet implemented
652061Sjkh(function([x]) { return x; })()
662061Sjkh         ^
672061Sjkhjava.lang.RuntimeException: test/script/basic/es6/destructuring.js#35:6<eval>:1:9 ES6 destructuring is not yet implemented
682061Sjkhfor (var [[x, y, z] = [4, 5, 6]] = [7, 8, 9]; iterCount < 1; ) ;
692061Sjkh         ^
702061Sjkhjava.lang.RuntimeException: test/script/basic/es6/destructuring.js#35:6<eval>:1:0 ES6 destructuring is not yet implemented
712061Sjkhfor ([ arrow = () => {} ] of [[]]) ;
722834Swollman^
732834Swollman