Leo Balter
385d672fa0
fix typos in class field templates
2017-10-27 15:45:09 -04:00
Leo Balter
fafd465454
Merge pull request #1303 from bocoup/classfields
...
classfields: eval early errors
2017-10-27 12:03:18 -04:00
Leo Balter
4e191e5b65
Add missing generators flags in templates
2017-10-26 19:04:57 -04:00
Valerie R Young
f0c2a9b019
classfields tests for eval early errors
2017-10-20 22:06:02 -04:00
Valerie R Young
5e7ae4af8f
Add private fields tests of early errors and small fix
2017-10-18 16:24:22 -04:00
Valerie R Young
2ab51b3a73
class fields: add early errors for argument and super
2017-10-17 17:53:03 -04:00
Leo Balter
315eca2bbd
Merge pull request #1293 from bocoup/esid-fix
...
fix: esid in case file instead of template file
2017-10-17 17:52:03 -04:00
Valerie R Young
3ea3651396
esid in case file instead of template file
2017-10-17 16:01:17 -04:00
Caitlin Potter
1144b5a86b
Update test cases for spec-change
...
This change updates test cases to assume that the "next" method is only
loaded from a synchronous iterator once, and is re-used for each call to
Async-from-Sync Iterator.next(), based on https://github.com/tc39/ecma262/pull/988
2017-10-17 14:34:23 -04:00
Leo Balter
b3092c61b6
Add generators flags for tests depending on generators features ( #1259 )
...
* Add missing generators feature flags
* Generate files
* Add generators flags
* fixup! Add generators flags
2017-10-04 16:12:34 -04:00
Caitlin Potter
2d8258fec8
Update async iteration tests with respect to pending spec change
...
Update behaviour based on changes from https://github.com/tc39/ecma262/pull/988 .
The actual spec change PR for async iteration is not yet uploaded.
This does not include any changes to Async-from-Sync Iterator.
2017-10-04 11:24:27 +02:00
Caio Lima
d41eb5d913
Added test case to consider rest ordering ( #1242 )
2017-09-26 17:02:42 -04:00
André Bargull
86da171663
Change case-files for destructuring-with-yield to not rely on destructuring target evaluation order
2017-09-16 17:00:54 +02:00
Leo Balter
cf68ab3e5e
Add Symbol.iterator features flags to test generation files
2017-09-08 10:13:50 -04:00
Leo Balter
31f7b3e218
Update test generation files to use verifyProperty instead of legacy helpers
2017-09-08 10:13:36 -04:00
Leo Balter
c41faf1aca
Add missing Symbol features flags
2017-09-07 15:51:13 -04:00
Leo Balter
391ce890b8
Merge pull request #1205 from anba/class-fields-fixes
...
Misc. class fields fixes
2017-09-05 11:16:19 -04:00
André Bargull
f810ad2550
Fix issues in async generator case files
...
Incorrect $DONE handlers which led to calling $DONE twice
- async-generators/yield-promise-reject-next-yield-star-async-iterator.case
- dstr-assignment-for-await/array-elem-trlg-iter-rest-nrml-close-skip.case
$DONE handler not called at all:
- dstr-assignment-for-await/array-elem-put-const.case
- dstr-assignment-for-await/array-elem-trlg-iter-elision-iter-nrml-close-null.case
Incorrect assumed execution sequence in IteratorDestructuringAssignmentEvaluation:
- dstr-assignment-for-await/array-elem-iter-rtrn-close-null.case
2017-09-04 09:42:06 -04:00
André Bargull
13c94180c6
Fix bugs in class-field template and case files
...
- Correct property access in class fields template
- Remove assertions for properties which aren't present
- Correct expected assertion value for uninitialized class field
- Correct expected property descriptor attributes
- Fix property tests in class-fields/string-literal-names.case
- Pass restore option, otherwise it's not possible to call the method later
- Fix async iteration tests to test iteration result objects
2017-09-01 23:44:52 +02:00
Daniel Ehrenberg
f3f3b47306
Refactor class fields templates and cases
2017-08-24 14:11:27 -04:00
Leo Balter
ceaa012121
Remove remaining cases for ...{
2017-08-18 18:16:55 -04:00
Leo Balter
eb93f96911
Merge pull request #1182 from rwaldron/1181
...
features: generator => generators. Fixes gh-1181
2017-08-18 17:19:01 -04:00
Rick Waldron
072f3fd5b8
Removes previously missed object rest `...{` cases.
2017-08-18 17:03:02 -04:00
Rick Waldron
650d084fe3
features: generator => generators
2017-08-16 15:11:05 -04:00
Rick Waldron
f83d422eae
Remove selection of incorrect async iteration tests
...
Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
2017-07-21 18:31:04 -04:00
Daniel Ehrenberg
3b0838917c
Revert "Add initial set of class field tests (from V8's test-parsing.cc)"
...
This reverts commit e731114cff
.
2017-07-13 20:54:36 +02:00
Xan López
e731114cff
Add initial set of class field tests (from V8's test-parsing.cc)
...
At this point this requires Babel for testing, but most tests in this
commit won't pass until this is fixed:
https://github.com/babel/babel/issues/5056
2017-07-13 14:43:06 -04:00
Rick Waldron
d05b7dfa35
Duplicate src/dstr-assignment/obj-rest-computed-property.case into regular and sloppy versions. Fixes gh-1082
...
Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
2017-06-28 15:48:54 -04:00
Rick Waldron
eaec1ffe2f
async-iteration: yield Promise.reject(value) is treated as throw value (rejects)
...
- http://tc39.github.io/tc39-notes/2017-05_may-25.html#15iva-revisiting-async-generator-yield-behavior
- http://tc39.github.io/tc39-notes/2017-05_may-25.html#conclusionresolution-12
Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
2017-06-28 12:03:09 -04:00
Mike Pennisi
81d00def42
Force "early error" tests to fail if evaluated
...
This pattern makes expectations more explicit by making test files more
literal.
2017-06-28 11:24:36 -04:00
Rick Waldron
a57ffd11e1
Remove tests that allow `...{` in object destructuring. Ref gh-1050
...
Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
2017-06-23 13:15:52 -04:00
Leo Balter
6110675fd3
Merge pull request #1045 from caiolima/obj-rest-computed-prop
...
Adding case to computed property
2017-06-12 19:22:53 -03:00
Rick Waldron
ff34bf5c73
Remove src/dstr-assignment/default/for-await-of.template (invalid)
...
Will need to revisit with a function and generator version
Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
2017-06-12 17:10:21 -04:00
Rick Waldron
3bff862ca7
src/dstr-assignment-async-iteration -> src/dstr-assignment-for-await
...
Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
2017-05-31 16:04:56 -04:00
Rick Waldron
60a6a7c81e
Merge pull request #1039 from rwaldron/dstr-assignment_for-await-of
...
[WIP] for-await-of: dstr-assignment, templates & cases
2017-05-31 15:46:40 -04:00
Caio Lima
35adcb2a7d
Adding case to computed property
2017-05-22 22:24:31 -03:00
Rick Waldron
f6dd54eb19
update the async func templates to match async generator templates (error)
...
Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
2017-05-22 14:18:53 -04:00
Rick Waldron
b1620ab5b8
src/dstr-binding-async-iteration => src/dstr-binding-for-await
...
Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
2017-05-22 13:23:12 -04:00
Rick Waldron
e522cbce57
Update algorithm step definitions
...
Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
2017-05-22 13:16:30 -04:00
Rick Waldron
befaab57a4
Update cases and templates per review
...
Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
2017-05-22 12:48:43 -04:00
Rick Waldron
fd3510dd16
Move async-iteration specific dstr-assignment templates into own src directory
...
Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
2017-05-19 12:28:38 -04:00
Rick Waldron
d4fde0a5c3
for-await-of: dstr-assignment, cases
...
Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
2017-05-17 15:31:50 -04:00
Leo Balter
26b0437c4f
Fix features flags
2017-05-16 17:31:32 -04:00
Rick Waldron
9f3b85fb21
for-await-of: dstr-assignment, default template
...
Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
2017-05-16 13:24:41 -04:00
Rick Waldron
2b0a8cc1c4
Merge pull request #1037 from leobalter/asyncIterators
...
Add templates for dstr-binding w/ for-await-of looping over async iterators
2017-05-16 09:25:23 -04:00
Leo Balter
93e8924ec5
Add templates for dstr-binding w/ for-await-of looping over async iterators
2017-05-15 16:01:19 -04:00
Leo Balter
59d9d0b6d8
Assert iterators are consumed - and closed - in dstr patterns
...
Ref https://bugzilla.mozilla.org/show_bug.cgi?id=1364608
2017-05-15 15:23:48 -04:00
Leo Balter
17b13b9d01
Merge pull request #1020 from rwaldron/dstr-binding_for-await-of-async-gen-func-error
...
for-await-of: dstr-binding, error, async func & async gen templates
2017-05-12 18:28:39 -04:00
Rick Waldron
c3825f6138
for-await-of: dstr-binding, async func & async gen templates (update steps)
...
Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
2017-05-11 15:45:06 -04:00
Leo Balter
f4f23cb06b
Set a proper length reference to avoid conflict with browsers
...
In browsers length is a valid property of window, so they would have a normal
completion instead of a ReferenceError
2017-05-10 14:08:33 -04:00