File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.26.0
4+
5+ - Added support for [ default exports and export equals statements] ( https://github.com/Microsoft/TypeScript/issues/7185#issuecomment-421632656 ) .
6+ - Added support for [ object spread expressions] ( https://mariusschulz.com/blog/object-rest-and-spread-in-typescript ) .
7+ - Added support for most common [ destructuring assignments] ( https://basarat.gitbooks.io/typescript/content/docs/destructuring.html ) .
8+ - Added support for omitted declarations in destructuring tuples. (i.e. ` const [a,,c] = foo(); ` )
9+
10+ - ` @noSelf ` now only applies to members of the namespace with the directive, in case of namespace merging.
11+ - Fixed issue with isNumerType causing enum members as array indices not to recieve the ` +1 ` .
12+ - Fixed string.indexOf failing in case the search string was a Lua string pattern.
13+ - Fixed some crashes from recursive type constraints.
14+
15+ - Some simplification to the printing of expression statements.
16+ - Added new testing util methods to improve the testing process.
17+
318## 0.25.0
419
520- Added support for named function assignments, i.e. ` const myFunc = function x(n) { ...; return x(n - 1); } `
You can’t perform that action at this time.
0 commit comments