You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Initial draft of named tuple members
* Show tuple labels and documentation in completions
* Swap allowed syntax to parameter-like
* Add quickfix for labeled tuple syntax mistakes
* Add refactoring to convert list of signatures to single overload
* Fix small bug in visitor verification
* Signature help for rest parameters which are unions of tuples are displayed as seperate entries now
* Expand sanity check test cases in conformance suite
* Add tests and code for preserving tuple names through spreads where possible
* More refactoring tests, some comment preservation and some fixed formatting of multiline tuples
* Handle missing parameter named in isValidDeclarationForTupleLabel
* Minor text fixes
cjsExportMerged?: Symbol;// Version of the symbol with all non export= exports merged with the export= target
4149
4161
typeOnlyDeclaration?: TypeOnlyCompatibleAliasDeclaration|false;// First resolved alias declaration that makes the symbol only usable in type constructs
4150
4162
isConstructorDeclaredProperty?: boolean;// Property declared through 'this.x = ...' assignment in constructor
4163
+
tupleLabelDeclaration?: NamedTupleMember|ParameterDeclaration;// Declaration associated with the tuple's label
0 commit comments