Henry Zhu
6d22f258db
v6.16.0
2016-09-28 15:38:45 -04:00
Moti Zilberman
03d772c2ec
Computed class properties ( #4500 )
...
* Support computed class property names (#4499 )
** Depends on babel/babylon#121 **
* `babel-types`: Add `computed` field to `ClassProperty`
* `babel-plugin-transform-class-properties`: handle computed property names correctly
* `babel-generator`: add tests for class properties (computed/literal, static/instance)
* doc: Update babel-types with ClassProperty.computed
* chore(package): update babylon to v6.11.0
* babel-types: move ClassProperty.computed to be last builder arg
2016-09-26 17:46:00 +02:00
Daniel Tschinder
10cd6519d8
Fix class inheritance in IE <=10 (T3041) ( #3527 )
...
* Fix class inheritance in IE9 & IE10 (T3041)
Internet Explorer 9&10 do not support __proto__ at all, don't have
Object.setPrototypeOf(), but have Object.getPrototypeOf().
Because of this setting the prototype is not possible, which makes the
babelHelpers.inherits() function to set __proto__ although not supported.
Afterwards Object.getPrototypeOf() is used, but this one is not
respecting the "custom" property __proto__ that we set.
The solution is to check for __proto__ first and afterwards fallback to
Object.getPrototypeOf().
* Do the same logic in babel-helper-replace-supers
* Fix tests
* Extract creation of prototype nodes to small helper
2016-08-23 15:08:44 -04:00
Henry Zhu
98dea13afa
v6.11.5
2016-07-23 14:09:34 -04:00
Keyan Zhang
879f69f0fb
infer class name for classes that have static properties ( #3589 )
2016-07-22 09:50:03 -04:00
Henry Zhu
bfc90c975d
v6.10.2
2016-06-17 17:45:16 -04:00
Logan Smyth
61e3b1d314
Remove incorrect function/class check.
2016-06-16 20:31:19 -07:00
Henry Zhu
77ac82b9f5
v6.9.1
2016-05-29 15:50:04 -04:00
Andrew Johnston
f408f28a02
Fix: assign _this to this when there is no Superclass - Fixes T7364
...
Closes gh-3508
2016-05-28 09:51:28 -04:00
Henry Zhu
cf6304a34b
v6.9.0
2016-05-17 14:49:17 -04:00
Jhen-Jie Hong
2d7fb9af41
Class properties: Add path.ensureBlock for ArrowFunctionExpression ( #3486 )
...
* Class properties: Add path.ensureBlock for ArrowFunctionExpression
* Class properties: Add test case for non-block arrow function
2016-05-13 17:45:15 -04:00
Henry Zhu
05bf216339
v6.8.0
2016-05-02 19:43:49 -04:00
Henry Zhu
4c23b01798
change plugins to use babel-runtime 6
2016-04-24 20:06:23 -04:00
Henry Zhu
f34e6518ff
v6.6.0
2016-02-29 16:12:12 -05:00
Sebastian McKenzie
5b89849f43
Switch to klint, fix some lint rules
2016-02-14 23:25:14 +00:00
Henry Zhu
b1bb39e733
v6.5.2
2016-02-12 11:29:58 -05:00
Logan Smyth
18fd06cf4a
Merge pull request #3332 from loganfsmyth/revert-prop-semi
...
Revert to standard ASI behavior for class properties
2016-02-10 22:40:44 -07:00
Logan Smyth
63b328ce87
Revert "babylon: throw parse error if class properties do not have a semicolon (fixes T6873)"
...
This reverts commit 976edfc06740e434d1d5b136e28996a77f909403.
2016-02-06 18:36:31 -08:00
Henry Zhu
f9f8ad6eff
v6.5.0
2016-02-06 19:06:41 -05:00
Henry Zhu
8cac20d845
v6.4.0
2016-01-06 15:34:12 -05:00
Henry Zhu
976edfc067
babylon: throw parse error if class properties do not have a semicolon (fixes T6873)
2015-12-30 14:01:46 -05:00
Ben Alpert
248f00fe82
Set function names from assignment expressions
...
Based on http://www.2ality.com/2015/09/function-names-es6.html .
2015-12-27 12:46:56 -08:00
Amjad Masad
0d8e5a9e86
Fix over-parenthesizing of function expressions
2015-12-24 14:55:51 -08:00
Sebastian McKenzie
1fa24b1efd
rename babel-plugin-external-helpers-2 to babel-plugin-external-helpers
2015-12-24 03:54:40 +00:00
Sebastian McKenzie
7b36967416
v6.3.13
2015-12-04 22:56:51 +11:00
Sebastian McKenzie
ae831c2270
v6.3.12
2015-12-04 22:56:13 +11:00
Henry Zhu
b515fa8db8
v6.3.2
2015-12-03 22:48:04 -05:00
Henry Zhu
8d78ea4ecf
Merge pull request #3112 from phantom10111/fix-es2015-classes
...
Fix return super(); in class constructor - fixes T2997
2015-12-03 10:34:18 -05:00
Logan Smyth
d71b59d0cc
Ensure we always push into a BlockStatement - fixes T3051
2015-12-02 19:41:22 -08:00
phantom10111
36ebe0c939
Fix static class properties in class expressions and anonymous default exported classes - fixes T2983
2015-12-01 17:59:53 +01:00
Amjad Masad
2f5b953066
v6.3.0
2015-11-30 14:58:30 -08:00
Justin Fagnani
6f0fcc8e7b
Check for empty decorators array on property nodes
2015-11-28 13:06:50 -08:00
phantom10111
9a270a3d0a
Fix return super(); in class constructor - fixes T2997
2015-11-25 23:53:53 +01:00
Sebastian McKenzie
3c5bced67d
v6.2.2
2015-11-19 14:45:57 -08:00
Logan Smyth
b3f2ea0aa1
Avoid duplicating traversal of class declarations - fixes T2694
2015-11-19 00:30:56 -08:00
Sebastian McKenzie
5b6a39f227
v6.1.20
2015-11-13 03:38:54 -08:00
Sebastian McKenzie
9f6dcdbc29
add regression test - fixes #3028
2015-11-13 03:37:43 -08:00
Sebastian McKenzie
4a1e5c17b4
v6.1.18
2015-11-12 13:46:30 -08:00
Sebastian McKenzie
23fd185590
v6.1.17
2015-11-12 13:40:25 -08:00
Sebastian McKenzie
c4c66687ea
v6.1.16
2015-11-12 13:33:20 -08:00
Sebastian McKenzie
9c91b555f9
v6.1.15
2015-11-12 12:15:47 -08:00
Sebastian McKenzie
f127f81cb7
v6.1.14
2015-11-12 12:01:18 -08:00
Sebastian McKenzie
548d973d12
v6.1.13
2015-11-12 11:57:45 -08:00
Sebastian McKenzie
af208e8acb
v6.1.12
2015-11-12 00:47:51 -08:00
Sebastian McKenzie
8fb4d55687
v6.1.11
2015-11-11 23:58:22 -08:00
Sebastian McKenzie
98b3dda500
v6.1.10
2015-11-11 23:52:57 -08:00
Sebastian McKenzie
15baf2afb5
v6.1.9
2015-11-11 23:46:00 -08:00
Sebastian McKenzie
e018723c7e
v6.1.8
2015-11-11 23:40:20 -08:00
Sebastian McKenzie
8dcf4aedc0
v6.1.7
2015-11-11 23:37:19 -08:00
Sebastian McKenzie
97443eada6
v6.1.6
2015-11-11 23:32:43 -08:00