29997 Commits

Author SHA1 Message Date
Anders Hejlsberg
cafec556f3 Properly handle try-finally statements in isReachableFlowNode 2019-09-18 15:20:20 -07:00
Sheetal Nandi
e430f2a81c Add output file names api for supporting ts-loader 2019-09-18 14:13:49 -07:00
Wesley Wigham
5e06bea481
getConstraintDeclaration gets the first declaration with a constraint… (#33426)
* getConstraintDeclaration gets the first declaration with a constraint, rather than just the first declaration

* Add type annotation

* Update comment
2019-09-18 13:56:24 -07:00
Wesley Wigham
683e281040
Reintroduce cloneInferredPartOfContext to fix overloaded inferences with returnMappers (#33478) 2019-09-18 13:14:39 -07:00
Jack Williams
1c20aa0b1a Narrow unknown under inequality when assumed false (#33488) 2019-09-18 10:54:42 -07:00
Anders Hejlsberg
ba30fdc4ae Attach flow nodes only when allowUnreachableCode !== true 2019-09-18 06:36:51 -07:00
Troy Tae
6a781f5d0c test: update error log 2019-09-18 18:02:42 +09:00
Troy Tae
56df48d5fa fix: change error1023 key name 2019-09-18 17:19:19 +09:00
Troy Tae
a5cda4633b fix: permit string/number literal in union type 2019-09-18 16:19:18 +09:00
Troy Tae
350e305b0c fix: add "either" in code 1023 message 2019-09-18 15:34:35 +09:00
Ron Buckton
344dba8809
Fix incorrect parameter types for AsyncIterator next/return (#33354) 2019-09-17 21:02:12 -07:00
Wesley Wigham
56e2cb31ad
Reverse mapped types should have inferable indexes if their source had an inferable index (#33450) 2019-09-17 15:36:00 -07:00
Daniel Rosenwasser
a58b86bcdf
Handle parentless nodes in isParameterPropertyDeclaration (#33472)
Handle parentless nodes in isParameterPropertyDeclaration
2019-09-17 13:56:22 -07:00
Martin Probst
6bb7e5c086 Handle parentless nodes in isParameterPropertyDeclaration
Fixes #33295.

This follows a similar pattern as in #20314 by requiring an explicit
`parent` parameter. Where possible, it uses the appopriate variable at
the call sites.

In several locations there is no context available though (e.g.
inspecting `valueDeclarations`) and we access `.parent` as the code
previously did. From a cursory inspection this seems correct, these
callpaths originate in phases where there must be a `parent` (i.e. in
checker, binder, etc).

Change-Id: I28e4726777b57237bec776e4001e9e69ac591b11
2019-09-17 13:22:30 -07:00
Andrew Casey
2f8832cccc
Merge pull request #33469 from amcasey/gh33332
Make extractSymbol explicitly drop JSDoc nodes
2019-09-17 11:42:26 -07:00
TypeScript Bot
800eaedbfa 🤖 User test baselines have changed 2019-09-17 11:36:09 -07:00
Andrew Casey
f10e38fea7 Make extractSymbol explicitly drop JSDoc nodes
Fixes #33332
2019-09-17 10:35:11 -07:00
Anders Hejlsberg
9466025996 Accept new baselines 2019-09-17 07:41:36 -07:00
Michal Przybys
63d940da53
Added example of sortFn 2019-09-17 16:32:15 +02:00
Anders Hejlsberg
8cbf69489c Cache last isReachableFlowNode result + switch statement CFA fix 2019-09-17 07:01:07 -07:00
Orta
bf46ded8fd
Merge pull request #33157 from fuafa/convert-const-to-let
Add convert const to let
2019-09-17 07:49:12 -04:00
xiaofa
67aa2b22ac fix conflicts 2019-09-17 19:02:44 +08:00
xiaofa
58e0469252 fix typo 2019-09-17 18:56:19 +08:00
Nathan Shively-Sanders
ed152b7b06
Merge pull request #33447 from typescript-bot/user-update-Microsoft-20190801
🤖 User test baselines have changed
2019-09-16 15:59:21 -07:00
Anders Hejlsberg
282a7aff6e Accept new API baselines 2019-09-16 15:58:42 -07:00
Anders Hejlsberg
d9c9129720 Ignore references in with statements in getTypeOfDottedName 2019-09-16 15:56:55 -07:00
Anders Hejlsberg
6d6c620cc2 Report grammatic and type-based unreachable code errors in the same way 2019-09-16 15:30:45 -07:00
Anders Hejlsberg
def5e37e6a Revert "More efficient scheme for caching flow node reachability"
This reverts commit e97ebb7f1c6ee93ce3ed6a4f996e54f346a0ff44.
2019-09-16 14:20:53 -07:00
Anders Hejlsberg
e97ebb7f1c More efficient scheme for caching flow node reachability 2019-09-16 13:04:22 -07:00
typescript-bot
f06f32d945 Update user baselines 2019-09-16 14:10:30 +00:00
Orta
09d6cbc152
Merge pull request #33418 from Kingwl/duplicate_async
fix duplicate async modifier codefix
2019-09-16 09:42:13 -04:00
Anders Hejlsberg
05d1e68e62 Fix linting issues 2019-09-15 18:13:49 -07:00
Anders Hejlsberg
d26afd7273 for-in or for-of expression is evaluated before loop back edge 2019-09-15 11:07:51 -07:00
Anders Hejlsberg
945babbaac Fix inference circularity error triggered by exhaustive switch analysis 2019-09-15 09:49:57 -07:00
Anders Hejlsberg
59b76cee89 Fix call to Debug.fail in compiler 2019-09-15 08:38:17 -07:00
Anders Hejlsberg
51dcce2124 Accept new baselines 2019-09-15 08:28:17 -07:00
Anders Hejlsberg
0060964fba Further CFA handling of exhaustive switch statements 2019-09-15 08:25:07 -07:00
Anders Hejlsberg
cc6e4938ae Treat exhaustive switch statements like non-returning functions in CFA 2019-09-14 15:30:09 -07:00
Arpad Borsos
391a3c8791
Separate Tokens and Identifiers from other Nodes
With some further optimization to their properties, this shrinks the
objects by quite a bit.
2019-09-14 10:27:51 +02:00
Arpad Borsos
72c0961071 Force a gc before printing diagnostics
Use this together with `node --expose-gc` to get more stable results
2019-09-14 04:10:54 +02:00
Wesley Wigham
038d95144d
Remove all submodules - just force clone and reset on run instead (#33425) 2019-09-13 16:14:33 -07:00
TypeScript Bot
99229f88dd Update user baselines (#33411) 2019-09-13 15:14:25 -07:00
Anders Hejlsberg
3a89c8cc5c Use isReachableFlowNode to check for implicit return 2019-09-13 14:38:12 -07:00
Andrew Branch
1755db4d81
Add build-eslint-rules to npm prepare script (#33417)
* Add build-eslint-rules to local build

* Switch to prepare script
2019-09-13 14:38:10 -07:00
Anders Hejlsberg
3749de6019 Dedicated isReachableFlowNode function to determine reachability 2019-09-13 11:33:16 -07:00
kingwl
93a250b9a6 fix duplicate async modifier codefix 2019-09-14 02:22:59 +08:00
Anders Hejlsberg
971b0df80a Use declared type for references in unreachable code (again) 2019-09-13 07:12:19 -07:00
Nathan Shively-Sanders
a4bacf3bfa
Merge pull request #33400 from microsoft/make-perf-count-functions-public
Make perf count functions public
2019-09-12 13:51:26 -07:00
Nathan Shively-Sanders
d94d715cdf Make perf count functions public
Previously they were internal
2019-09-12 13:31:11 -07:00
Sheetal Nandi
bc7bde3879
Merge pull request #33390 from Swatinem/identifiers-nan
Fix `Identifiers: NaN` diagnostic when having JSON SourceFiles
2019-09-12 12:48:00 -07:00