Commit Graph

6701 Commits

Author SHA1 Message Date
Sheetal Nandi
df3a74b6ca Removed some unnecessary changes and added comments 2015-12-10 15:35:47 -08:00
Sheetal Nandi
513e1f5fce If the destructuring assignment is synthetic use the left side as source map
This helps in scenarios like below where the assignment is created synthetically
for ({a} of {a: string}) {
}
2015-12-10 15:03:10 -08:00
Sheetal Nandi
7d60c5e630 Fix the temporary assignment source maps in a better way
This doesnt create synthetic nodes with source map node on them
And makes us determine what to put source map on for temporary assignments
2015-12-10 14:10:34 -08:00
Sheetal Nandi
8948f9be50 Add support for modifying last encoded source map's source location
With this, we can just highlight the bindingElement when the temp variable
for it is assigned.
Note there are few scenarios like below which would still highlight let part
but thats because of how default value source mapping is currently which is next
in pipeline to support binding element with default values
for (let {name: nameA, skill: skillA } of robots) {
    console.log(nameA);
}
or
for (let [numberA2, nameA2, skillA2] of robots) {
    console.log(nameA2);
}
2015-12-10 12:29:14 -08:00
Sheetal Nandi
9fd525bc7c Simplify the array binding pattern element to determine what to highlight 2015-12-09 13:02:09 -08:00
Sheetal Nandi
35ec9caf65 Make sourcemap of "For" that initializes vars using object literal binding pattern better 2015-12-09 12:39:48 -08:00
Sheetal Nandi
b1d395c4cf Make the destructuring array literal assignment better with sourcemap 2015-12-09 12:39:31 -08:00
Sheetal Nandi
edd55ddf51 Make the source map of "for of" destructuring - object binding pattern better 2015-12-09 12:39:09 -08:00
Sheetal Nandi
de7626356c Better the destructuring of nested array binding pattern 2015-12-09 12:38:52 -08:00
Sheetal Nandi
7c618a494d Better the sourcemap for array binding pattern 2015-12-09 12:38:43 -08:00
Sheetal Nandi
8af2160922 Make nested object literal destructuring pattern better 2015-12-09 12:38:26 -08:00
Sheetal Nandi
4ebf5695a7 Better sourcemaps for destructuring 2015-12-09 12:38:17 -08:00
Ryan Cavanaugh
383cbf06c4 Merge pull request #5996 from RyanCavanaugh/fix5994
Disallow modifiers in object literal property assignment
2015-12-08 17:40:50 -08:00
Ryan Cavanaugh
d3c9815526 Improve comment 2015-12-08 17:37:38 -08:00
Ryan Cavanaugh
58427c4d18 Use logic for win 2015-12-08 16:59:52 -08:00
Mohamed Hegazy
88a834574b Merge pull request #4757 from SaschaNaz/indentSuppressor
Expose indentation suppressor from SmartIndenter
2015-12-08 16:36:28 -08:00
Ryan Cavanaugh
992bd7a2e4 Merge pull request #5993 from RyanCavanaugh/fix5991
Parse JSX attributes as AssignmentExpressions
2015-12-08 14:40:55 -08:00
Vladimir Matveev
f3e4befc3e merge with master 2015-12-08 13:28:55 -08:00
Vladimir Matveev
268e7c0d09 Merge remote-tracking branch 'origin/master' into elideExportStarForNonValues 2015-12-08 13:15:56 -08:00
Zhengbo Li
998372709b Merge pull request #5982 from zhengbli/updateLib
Weekly update of lib.d.ts ported from TSJS repo
2015-12-08 11:37:25 -08:00
Ryan Cavanaugh
964fbea9c1 Fix up for 'async' 2015-12-08 10:57:33 -08:00
Ryan Cavanaugh
92d7d1c953 Disallow modifiers in object literal property assignment
Fixes bug #5994
2015-12-08 10:11:29 -08:00
Ryan Cavanaugh
51c547428b Parse JSX attributes as AssignmentExpressions
We should issue an error when parsing `<div x={1, 2} />` as the comma operator is not a legal production in a JSX Expression

Fixes (mitigates?) bug #5991
2015-12-08 09:53:47 -08:00
SaschaNaz
595f134e8b space around arrow 2015-12-09 00:02:10 +09:00
SaschaNaz
34b303a9c5 directly expose nodeWillIndentChild 2015-12-08 21:39:46 +09:00
Zhengbo Li
da009c5b21 update lib.d.ts from TSJS repo 2015-12-07 22:28:02 -08:00
yaoyao
e95ae4f100 Improve 'Cannot compile modules unless the '--module' flag is provided.' message 2015-12-08 08:56:41 +08:00
Daniel Rosenwasser
b4f4dadeb6 Merge pull request #5979 from DanCorder/5058
Fix for #5058 - Exclude implemented interface functions from autocompletion suggestions.
2015-12-07 15:06:53 -08:00
Ryan Cavanaugh
05c17032a9 Actually include the fix.... 2015-12-07 11:57:54 -08:00
Dan Corder
ff4147af01 Fix for #5058 - Exclude implemented interface functions from autocompletion suggestions. 2015-12-07 19:47:56 +00:00
Nathan Shively-Sanders
31f56fdbfd Merge pull request #5973 from Microsoft/improve-type-of-Promise.all
Explicitly list tuple overloads for `Promise.all`.
2015-12-07 10:19:57 -08:00
Mohamed Hegazy
a405afd40c Merge pull request #5971 from pimterry/typings-non-string
Gracefully handle errors where 'typings' is not a string (fixes #4828)
2015-12-07 10:03:22 -08:00
Nathan Shively-Sanders
3bf39d6df1 Explicitly list tuple overloads for Promise.all.
Previously, the array type would infer a union type for multiple arguments
of differing types. The original overload remains, but I added 9
tuple-based overloads to support up to 10 heterogeneously-typed arguments.
2015-12-07 09:51:00 -08:00
Tim Perry
384ee18c7b Gracefully handle errors where 'typings' is not a string (fixes #4828) 2015-12-07 18:25:25 +01:00
Dan Corder
57c595a49d Fix for issue #5947 2015-12-07 16:26:53 +00:00
Daniel Rosenwasser
2ef436f082 Merge pull request #5559 from MartyIX/issue-4045
Improve error messages for property declarations
2015-12-07 01:12:05 -08:00
Anders Hejlsberg
3ce91c438a Merge pull request #5942 from Microsoft/fixUnionToUnionTypeInference
Fix union/union or intersection/intersection type inference
2015-12-05 09:28:18 -08:00
Anders Hejlsberg
6901a98c85 Adding a bit more text to comments 2015-12-05 08:53:21 -08:00
Wesley Wigham
4735c00f05 Merge pull request #5420 from weswigham/undefined-unique
Error on redeclarations of undefined
2015-12-04 17:43:12 -08:00
Anders Hejlsberg
e6259a5570 Fix union/union and intersection/intersection type inference 2015-12-04 16:04:47 -08:00
Wesley Wigham
00576527bd break down tests, make more clear whats doing done, remove specific logic from mergeSymbolTable 2015-12-04 15:41:11 -08:00
Nathan Shively-Sanders
b1fac590c3 Merge pull request #5934 from Microsoft/inherit-construct-signature-from-extended-interface
Inherit construct signature from extended interface
2015-12-04 14:23:07 -08:00
Wesley Wigham
63fef5083a Merge branch 'master' into undefined-unique 2015-12-04 14:21:35 -08:00
Wesley Wigham
9b441d8343 Merge pull request #5148 from weswigham/duplicate-export-behavior
Make export var or export *'s with duplicate identifiers an error
2015-12-04 14:18:58 -08:00
Wesley Wigham
209ec681b0 Merge pull request #5939 from weswigham/use-strict-shebang
Fix #5928 - Write line after shebang
2015-12-04 13:57:18 -08:00
Wesley Wigham
835950a674 check for presence of array 2015-12-04 13:44:16 -08:00
Wesley Wigham
bc73f31acc Fix #5928 - Write line after shebang 2015-12-04 13:38:24 -08:00
Wesley Wigham
98fd75d84e fix typo, reduce nesting, defer array allocation until needed 2015-12-04 13:09:11 -08:00
Vladimir Matveev
e88dfb151a parse module specifier as string (old logic is kept for better error recovery) 2015-12-04 11:41:11 -08:00
Nathan Shively-Sanders
e2b6898018 remove lint 2015-12-04 09:07:32 -08:00