Henry Zhu
afe67a7035
v7.1.5
v7.1.5
2018-11-06 17:21:22 -05:00
Nicolò Ribaudo
2fa1984635
Fix await in function name and parameters ( #7727 )
...
* Disallow await in function parameters
* Fix await as function name
* Update test whitelists
2018-11-06 08:30:06 +01:00
Retsam
2194842d11
Typescript: Validate tuple type element positions ( #8828 )
...
* feat: validate the positions of rest elements and optional elements in tuple types
Adds a validation step to the parser which raises syntax errors if a rest param is not at the end of a tuple, or if a mandatory param follows an optional parameter
* Fix spread after optional case; add test case
2018-11-05 23:19:34 -08:00
Daniel Tschinder
e3b2c1afff
fix: Do not allow TypeCastExpressions w/o parens ( #8956 )
2018-11-05 15:34:24 -08:00
James Garbutt
b95cbc4a8e
output aliased types in typescript declarations ( #8629 )
2018-11-05 23:58:57 +01:00
Nicolò Ribaudo
24c4901ff5
Remove Babylon plugins for features already merged to the ECMAScript spec ( #8448 )
...
These are now enabled by default:
- objectRestSpread (2018)
- asyncGenerators (2018)
- optionalCatchBInding (2019)
- jsonStrings (2019)
TODO (after this commit):
- [ ] Deprecate the `@babel/plugin-syntax-*` packages.
- [ ] Deprecate the `@babel/plugin-proposal-*` packages.
- [ ] Create the `@babel/plugin-transform-*` packages.
2018-11-05 23:48:06 +01:00
Daniel Tschinder
c125b1dd74
Update test262 commit, as old commit broke for some reason
2018-11-05 10:53:34 -08:00
Jordan Brown
f216a7b06f
[flow] Add support for parsing _ as implicit instantiation in call/new ( #8883 )
...
* [flow] Add support for parsing as implicit instantiation in call/new
* Update flow tests and fix underscore being a reserved type
* Rebase onto flow-test
* Fix flow commit hash
2018-11-05 10:45:40 -08:00
Logan Smyth
c6d2f45cab
Resolve babel.config.js 'babelrcRoots' values relative to the config file. ( #8910 )
2018-11-05 08:51:27 -08:00
Daniel Tschinder
1d4d760ffc
Update test262 to latest commit and enable mapping for features
...
Also added an automated check for new features which are not mapped or ignored
2018-11-04 18:49:53 +01:00
Nicolò Ribaudo
d35563ee1a
Set correct methods name
2018-11-02 13:59:57 +01:00
Nicolò Ribaudo
38397ce11f
Use toPropertyKey in the "decorate" helper
...
This commit also makes the "toPropertyKey" helper call @@toPrimitive
when needed.
2018-11-02 13:59:57 +01:00
Daniel Tschinder
cd81b079ee
Allow function types in type params within arrow return types ( #8954 )
2018-11-01 09:10:46 -05:00
everdimension
e85faec47d
Fix message when plugin of a wrong type is passed ( #8950 )
2018-10-31 14:34:26 -05:00
Byron Luk
0d9e77f559
rename colliding let bindings with for loop init ( #8937 )
...
* rename colliding let bindings with for loop init
* added complex test case to check if loop init collisions were handled correctly
* updated test files
2018-10-31 20:28:36 +01:00
Ben Mosher
c82750a48a
edge incomplete support for arrow destructuring (babel #8349 ) ( #8926 )
2018-10-31 10:15:27 -05:00
Ryan Marsh
de80aefece
fix single-arg async arrows when retainLines=true ( #8868 )
2018-10-30 06:49:11 +01:00
Jordan Brown
e4929e11f6
[flow] Explicit inexact objects with ... ( #8884 )
2018-10-29 15:09:17 -05:00
Brian Ng
d942d47e10
Update preset-env data ( #8898 )
2018-10-25 09:48:41 -05:00
Thiago Arrais
84e7884d9c
Treat break inside block inside loop ( #8914 )
2018-10-25 09:46:36 -05:00
0xflotus
9d0dcedb2b
fixed "source map" formatting in comment ( #8878 ) [skip ci]
2018-10-20 00:51:46 +02:00
Byron Luk
b576bf4b41
fix typo in contributing guidelines ( #8901 ) [skip ci]
2018-10-19 08:49:33 +02:00
Cyp
e541d6031a
fix: Expression x === 'y' && '' should not evaluate to undefined. ( #8880 )
...
Fixes https://github.com/babel/minify/issues/908 .
2018-10-16 21:25:49 +02:00
Sven Sauleau
5fa3628506
Merge pull request #8873 from vvyomjjain/patch-1
...
fixed an extra word
2018-10-14 18:53:17 +02:00
Vyom Jain
f71e4660d4
fixed an extra word
...
"visit join" doesn't sound right. Either there is a word missing or the word 'visit' may be removed.
2018-10-14 22:14:02 +05:30
Byron Luk
929567523c
Fixes #8865 ( #8866 )
2018-10-12 09:28:15 -05:00
Henry Zhu
5080059138
v7.1.4
v7.1.4
2018-10-11 13:32:18 -04:00
Henry Zhu
8ee857e268
v7.1.3
v7.1.3
2018-10-11 11:52:19 -04:00
Brian Ng
6b8261bbb7
Bump Babel deps ( #8770 )
2018-10-10 13:55:02 -05:00
Brian Ng
ce1a6526e5
flow-bin@0.82.0 ( #8832 )
2018-10-10 12:29:23 -05:00
Kevin Thomas
842c164be5
Insertafter jsx fix ( #8833 )
...
* Add check for JSXElement
* Add test
2018-10-10 10:10:20 -06:00
Retsam
d2c75c2d38
fix: corrects handling of newline after async with paren-less arrow function ( #8830 )
...
If async is followed by a newline, then a paren-less arrow function should be parsed as two expressions
2018-10-09 23:25:31 +02:00
Retsam
3951acbff5
chore: add generated files for #8805 ( #8826 )
2018-10-08 12:29:33 -05:00
Retsam
08454ece46
Typescript - Tuples can include rest elements ( #8805 )
2018-10-08 11:32:31 -05:00
Tim von Oldenburg
4b8cb75b74
types: allow jsxEmptyExpression inside jsxExpressionContainer ( #8791 )
2018-10-07 23:31:03 -04:00
Guy Bedford
3fa4f53d0a
System module format - fixes function hoisting failure case ( #8820 )
...
* failing test case
* fix function hoist bug
2018-10-07 23:30:02 -04:00
Bruno Macabeus
850bc1d3dd
class private methods and properties: should not allow spaces between # and identifier ( #8756 )
2018-10-02 19:31:06 -07:00
Brian Ng
36d12b5969
Ensure destructuring's computed key handling matches object-rest-spread ( #8793 )
2018-10-02 20:46:08 -05:00
Brian Ng
2575312d1f
Fix parsing of slash after class expression ( #8804 )
2018-10-02 20:45:53 -05:00
Retsam
a5b5ed928d
Typescript - Tuple elements can be optional ( #8720 )
2018-10-02 11:29:51 -05:00
Nicolò Ribaudo
3c87401714
[decorators] [typescript] Parse type parameters ( #8767 )
...
* [decorators] [typescript] Parse type parameters
* Add test for invalid code
2018-10-01 22:04:19 +02:00
Matthew Robertson
07862e7272
Fix perf issue in typescript parser plugin ( #8792 )
2018-10-01 12:59:16 -05:00
Henry Zhu
ca89212b45
add changelog up to 7.1.2 [skip ci]
2018-09-28 18:28:43 -04:00
Henry Zhu
3f5b7554b8
v7.1.2
v7.1.2
2018-09-28 18:19:38 -04:00
Henry Zhu
ead23d7112
v7.1.1
v7.1.1
2018-09-28 16:02:43 -04:00
Nicolò Ribaudo
626f47982e
Do not unpack array patterns that update a referenced binding ( #8535 )
...
Fixes #8528
2018-09-28 11:45:42 -04:00
Brian Ng
55faa27b93
Run test262 tests for exportNamespaceFrom ( #8780 )
2018-09-27 14:48:58 -05:00
Sampo Kivistö
090c364a90
Improved build performance by optimizing makeMappingKey method. ( #8744 )
2018-09-26 13:16:40 -07:00
Pig Fang
f38be13113
TypeScript: reserve unknown as TSUnknownKeyword ( #8755 )
2018-09-25 12:19:32 -05:00
Nicolò Ribaudo
889cdb8da5
Use babel-check-duplicated-nodes ( #8768 )
2018-09-25 10:00:48 -05:00