Wenlu Wang
0ecdc876f3
imporve conditional operator if missing colon token ( #20498 )
...
f2
2018-01-08 13:16:17 -08:00
Wenlu Wang
a82d1f8580
ignore Initial check if left of DestructuringAsignment ( #20906 )
2018-01-08 13:13:23 -08:00
Wenlu Wang
06c9a28b36
fix narrowType check with template literals ( #21024 )
2018-01-08 13:06:58 -08:00
Andy
6d361f89e3
Move isObjectLiteralElement to public utilities ( #20605 )
2018-01-08 12:29:21 -08:00
Wesley Wigham
b5fda4970d
Use emptyObjectType for omitted members instead of unknownType ( #20940 )
...
* Use emptyObjectType for omitted members instead of unknownType
* Use similar logic as is used for empty arrays for missing elements
2018-01-08 12:27:11 -08:00
Andy
20c846d671
Add helper functions to simplify getCompletionEntryDisplayNameForSymbol ( #20552 )
2018-01-08 11:48:25 -08:00
Andy
50fa0f61f5
Fix bug: Resolve module symbol before checking whether module export is a re-export ( #20989 )
...
* Fix bug: Resolve module symbol before checking whether module export is a re-export
* Remove unnecessary @nolib
2018-01-08 11:33:57 -08:00
Andy
fef7ad4986
Remove unncessary existence check ( #21029 )
2018-01-08 11:30:36 -08:00
Andy
fc18f08e63
Remove 'indexOf' helper, use 'arr.indexOf()' ( #20194 )
2018-01-08 10:39:52 -08:00
Andy
f83283c068
Improve parse error for double comma somewhere inside a call expression ( #20399 )
2018-01-08 10:38:55 -08:00
Andy
7e150a914e
Remove mutually-recursive functions ( #20425 )
2018-01-08 10:38:11 -08:00
Andy
76eafe0e75
Fix invalid cast ( #20426 )
2018-01-08 10:37:48 -08:00
Andy
6f2ba15446
Start linting for double spaces ( #20820 )
...
* Start linting for double spaces
* Code review
* Fix cases that were excluded by countDoubleSpaces
* Remove extraneous closing parenthesis
2018-01-08 08:52:13 -08:00
Daniel Rosenwasser
1041f09c27
Merge pull request #20941 from mariusschulz/stringCompletionsForIndexedAccessTypes
...
Return string completions for indexed access types
2018-01-06 21:07:00 -08:00
Klaus Meinhardt
bc2983def9
API: fix types to undefined union ( #20909 )
2018-01-05 17:36:33 -08:00
Nathan Shively-Sanders
e78ac47208
Merge pull request #20711 from Microsoft/defer-inference-for-recursive-mapped-types
...
Defer inference for homomorphic mapped types
2018-01-05 16:01:26 -08:00
Nathan Shively-Sanders
f8c86552bc
Better name for deferred mapped type:ReverseMapped
2018-01-05 15:44:38 -08:00
Andy
c6e4373403
In checkAndAggregateReturnExpressionTypes, treat MethodDeclaration in an object literal same as a FunctionExpression ( #20052 )
...
* In checkAndAggregateReturnExpressionTypes, treat MethodDeclaration in an object literal same as a FunctionExpression
* Add original test case
2018-01-05 12:34:01 -08:00
Marius Schulz
25c5e57091
Return string completions for indexed access types
2018-01-05 18:14:06 +01:00
Andy
f6dc0ad707
Check for unused getter/setter in classes ( #21013 )
...
* Check for unused getter/setter in classes
* Write-only use of setter is still a reference; and don't error on setter if getter exists
2018-01-05 09:10:58 -08:00
Ron Buckton
ed5e62442f
Merge pull request #20883 from HerringtonDarkholme/relax-type-constraint
...
fix #20018 , allow skip constraint when merging interfaces
2018-01-04 17:09:45 -08:00
Klaus Meinhardt
7ef541ca1f
findConfigFile can return undefined ( #20556 )
2018-01-04 16:56:29 -08:00
Josh Goldberg
131cf4714c
Allowed trailing commas in type parameter/argument lists ( #20599 )
...
This change is only one source file and one error file... there must be something I'm missing!?
2018-01-04 16:54:51 -08:00
Orta
5865494453
Switch the pretty output to use colons to separate file:line:char so that lines are clickable in terminals ( #20736 )
2018-01-04 16:38:52 -08:00
benbraou
b36d614b56
bug(esnext): add definition for promise.finally ( #20511 )
...
Fixes #20411
2018-01-04 15:31:59 -08:00
Matt Bierner
3f577b8617
Fix quick info for require template string ( #20851 )
...
* Fix quick info for require template string
Fixes #20850
* Add path completions tests
2018-01-04 15:17:40 -08:00
Nathan Shively-Sanders
5e7ce21a9e
Print inferred mapped property types as any not {}
...
This makes them compatible in d.ts and slightly less misleading in
services.
2018-01-04 12:34:01 -08:00
Martin Hiller
e3a20e7f0a
Do not redefine __asyncValues if it already exists ( #20460 )
...
The emitted declaration for the __asyncValues variable checked for the
global property __asyncIterable instead of its actual declared name
__asyncValues.
Now the __asyncValues variable is not redefined if it is already
present as global variable.
This commit fixes issue #20408 .
2018-01-03 17:18:15 -08:00
Nathan Shively-Sanders
b9fb4cce88
Fix quickinfo display of deferred mapped types
2018-01-03 16:26:23 -08:00
Nathan Shively-Sanders
9aa5443bbc
Fix printing of deferred mapped types' index signatures
2018-01-03 16:10:26 -08:00
Nathan Shively-Sanders
8616170060
Fix printing of deferred mapped types
...
A deferred mapped type with a source that has an index signature now
prints {} as the type of the index signature. This avoids an infinite
recursion.
2018-01-03 15:49:09 -08:00
Nathan Shively-Sanders
a43adad080
Simplify DeferredMappedType construction
2018-01-03 14:44:34 -08:00
Nathan Shively-Sanders
35244230d5
Add deferred mapped types
...
This allows index signature inference to be inferred as well.
2018-01-03 14:20:14 -08:00
Andy
a33f229d82
Support completions contextual types in more places ( #20768 )
...
* Support completions contextual types in more places
* Adjust formatting
2018-01-03 13:51:33 -08:00
Nathan Shively-Sanders
7393433593
Merge branch 'master' into defer-inference-for-recursive-mapped-types
2018-01-03 12:19:21 -08:00
Wesley Wigham
e0f20334d2
Use inference for filling JSX attributes in getJsxElementInstanceType ( #20973 )
...
* Add simple type inference for JSX elements
* Small cleanups from PR feedback
2018-01-03 11:30:41 -08:00
Nathan Shively-Sanders
5539e11b76
Merge pull request #20609 from Microsoft/getRootSymbols
...
Ensure getRootSymbols always works recursively
2018-01-03 09:44:27 -08:00
Wesley Wigham
29378b2ce2
Call back into getTypeOfFuncClassEnumModule in getTypeOfVariableOrParameterOrProperty if valueDeclaration is irregular kind ( #20939 )
2018-01-02 17:19:42 -08:00
Daniel Rosenwasser
0477f91dba
Merge pull request #20928 from Microsoft/initializerWithPropertyAccessUseBeforeDeclaration
...
Check whether we have a class before testing whether we have a super-class
2017-12-29 14:47:13 -08:00
Daniel Rosenwasser
ea94a3430d
Check whether we have a class before testing whether we have a super-class.
2017-12-29 12:30:27 -08:00
Wesley Wigham
ae211983eb
Add method signature handler to getTypeOfVariableOrParameterOrProperty ( #20825 )
2017-12-28 19:00:54 -08:00
Anders Hejlsberg
ff4f03c51d
Merge pull request #20882 from Microsoft/fixNarrowTypeBySwitch
...
Fix narrowing of type variable in switch statement
2017-12-28 09:22:26 -08:00
Herrington Darkholme
303786a3b8
fix #20018 , allow skip constraint when merging interfaces
2017-12-24 17:05:05 +08:00
Anders Hejlsberg
5d3ecaebad
Fix narrowTypeBySwitchOnDiscriminant function
2017-12-23 19:12:49 -08:00
Nathan Shively-Sanders
2df7a89e61
Merge branch 'master' into limit-recursive-structured-type-resolution
2017-12-22 14:41:58 -08:00
Nathan Shively-Sanders
fb3042c3f7
Move recursion limiter to individual resolve* functions
2017-12-22 14:39:25 -08:00
Wesley Wigham
cedcba9285
Reset partial memberlist on defered circularity to calculate the correct members ( #20179 )
...
* Reset partial memberlist on defered circularity to calculate the correct members
* Remove return type
2017-12-22 11:41:39 -08:00
Wesley Wigham
7ad0d7b9fd
Fix higher order inference on indexed access types ( #20165 )
2017-12-21 14:47:03 -08:00
Wesley Wigham
00450f029c
Not all extended types have symbols ( #20827 )
2017-12-21 13:07:29 -08:00
Anders Hejlsberg
c78a6a5cad
Fix 'this' parameter handling in getUnionSignatures
2017-12-19 19:48:30 -08:00