├── README.md ├── buffer └── buffer.js ├── es6 ├── class │ └── animal.js ├── computed_property │ └── computedProps.js ├── enhanced_object_literals │ └── person.js ├── rest_params │ └── rest.js ├── subclass_array │ ├── ShuffleArray.js │ └── iojs_v2_introduced_the_bug.js ├── symbol_tostring │ └── symbol.js └── unicode │ └── unicode.js └── strong_mode ├── arguments.js ├── delete.js ├── empty.js ├── eqeq.js ├── for.js └── vars.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosuke-furukawa/iojs-new-features/HEAD/README.md -------------------------------------------------------------------------------- /buffer/buffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosuke-furukawa/iojs-new-features/HEAD/buffer/buffer.js -------------------------------------------------------------------------------- /es6/class/animal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosuke-furukawa/iojs-new-features/HEAD/es6/class/animal.js -------------------------------------------------------------------------------- /es6/computed_property/computedProps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosuke-furukawa/iojs-new-features/HEAD/es6/computed_property/computedProps.js -------------------------------------------------------------------------------- /es6/enhanced_object_literals/person.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosuke-furukawa/iojs-new-features/HEAD/es6/enhanced_object_literals/person.js -------------------------------------------------------------------------------- /es6/rest_params/rest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosuke-furukawa/iojs-new-features/HEAD/es6/rest_params/rest.js -------------------------------------------------------------------------------- /es6/subclass_array/ShuffleArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosuke-furukawa/iojs-new-features/HEAD/es6/subclass_array/ShuffleArray.js -------------------------------------------------------------------------------- /es6/subclass_array/iojs_v2_introduced_the_bug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosuke-furukawa/iojs-new-features/HEAD/es6/subclass_array/iojs_v2_introduced_the_bug.js -------------------------------------------------------------------------------- /es6/symbol_tostring/symbol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosuke-furukawa/iojs-new-features/HEAD/es6/symbol_tostring/symbol.js -------------------------------------------------------------------------------- /es6/unicode/unicode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosuke-furukawa/iojs-new-features/HEAD/es6/unicode/unicode.js -------------------------------------------------------------------------------- /strong_mode/arguments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosuke-furukawa/iojs-new-features/HEAD/strong_mode/arguments.js -------------------------------------------------------------------------------- /strong_mode/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosuke-furukawa/iojs-new-features/HEAD/strong_mode/delete.js -------------------------------------------------------------------------------- /strong_mode/empty.js: -------------------------------------------------------------------------------- 1 | 'use strong'; 2 | 3 | if (true); 4 | console.log('hello'); 5 | -------------------------------------------------------------------------------- /strong_mode/eqeq.js: -------------------------------------------------------------------------------- 1 | 'use strong'; 2 | 3 | if ('a' == 'a') { 4 | } 5 | 6 | -------------------------------------------------------------------------------- /strong_mode/for.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosuke-furukawa/iojs-new-features/HEAD/strong_mode/for.js -------------------------------------------------------------------------------- /strong_mode/vars.js: -------------------------------------------------------------------------------- 1 | "use strong"; 2 | 3 | var a = 'hoge'; 4 | --------------------------------------------------------------------------------