Vladimir Matveev
e9227d656d
added support for smart indentation in the middle of list items, updated test baselines
2014-09-11 17:26:05 -07:00
Vladimir Matveev
9a3462a161
added handling for smart indentation in the beginning of list items, updated test baselines. TODO: smart indentation in the middle of list items (2 failing tests)
2014-09-11 16:17:31 -07:00
Daniel Rosenwasser
ee86f8b711
Harness now prints category and code when running tests.
2014-09-11 16:11:08 -07:00
Daniel Rosenwasser
96e5bd26c3
Fixed bug where function type literals may omit their '=>'.
2014-09-11 16:04:07 -07:00
Sheetal Nandi
813f0e75e2
Build the declaration files generated in the rwc run to make sure there arent any errors
2014-09-11 14:32:35 -07:00
Anders Hejlsberg
b61c722eec
Merge pull request #649 from Microsoft/propertyAssignmentWidening
...
Fix widening in object literal property assignments
2014-09-11 13:10:08 -07:00
Daniel Rosenwasser
0af26bcb8b
Merge branch 'master' into getOccurrences
2014-09-11 11:11:00 -07:00
Daniel Rosenwasser
480aac9ede
Merge branch 'master' into getOccurrences
2014-09-11 11:04:01 -07:00
Vladimir Matveev
641e659ffd
initial revision of SmartIndenter (TODO: indentation in list items)
2014-09-11 00:35:03 -07:00
Vladimir Matveev
24c40bb4bc
added optional 'sourceFile' argument to methods of Node to avoid unnecesary tree walk
2014-09-10 23:13:41 -07:00
Daniel Rosenwasser
1e8772c7a5
Merge branch 'getOccurrences' into getOccurrencesLoopBreakContinue
...
Conflicts:
src/services/services.ts
2014-09-10 19:19:53 -07:00
Daniel Rosenwasser
efed1f9acd
Simplified ownership code for continue/break statements.
2014-09-10 19:02:50 -07:00
Daniel Rosenwasser
dae34875b4
Minor CR feedback addressed.
2014-09-10 18:59:12 -07:00
Jason Freeman
fad5650be6
Fix the error spans issue
2014-09-10 17:57:51 -07:00
Jason Freeman
c27379827b
Add asserts for bounds on diagnostics
2014-09-10 16:44:57 -07:00
Yui T
26fbb987bb
Remove getCurrentDirectory and getDefaultLibFilename from LanguageServiceShimHost
2014-09-10 16:10:40 -07:00
Yui T
7b0662be9e
Remove getDirectory from LanguageServiceShimHost
2014-09-10 15:58:16 -07:00
Yui T
7ab51c6e2b
Merge from master
2014-09-10 15:58:14 -07:00
Yui T
cf2214bba0
Change getCurrentDirectory and getDefaultLibname from passing around
...
function to its final value
2014-09-10 15:58:12 -07:00
Yui T
271bb29c94
Minor spelling and spacing fix
2014-09-10 15:58:09 -07:00
Yui T
0435c14081
Add getEmitOutput and update call to getCurrentDirectory
2014-09-10 15:58:07 -07:00
Anders Hejlsberg
b9ae6cec17
Adding a comment
2014-09-10 13:14:30 -07:00
Anders Hejlsberg
3d92adec7b
Fix widening in object literal property assignments
2014-09-10 12:58:30 -07:00
Yui T
9bbbdec0c2
Check for repeating meta-data flag.
2014-09-10 09:57:42 -07:00
Yui T
609d1bc92c
Chage test framework from manual comparing the result to using baseline;
...
Add compilerOptions into fourslash
2014-09-10 09:57:38 -07:00
Yui T
6cba535f20
Fix spelling
2014-09-10 09:57:36 -07:00
Yui T
2a24ea5854
Fix spelling
2014-09-10 09:57:30 -07:00
Yui T
be4133a162
Add meta-data flag name to modify compilationSettings
2014-09-10 09:57:28 -07:00
Yui T
6ef41a74c7
Move checking semantic diagnostics into emitFiles function rather than
...
getEmitOutput
2014-09-10 09:57:26 -07:00
Yui T
537f55cede
Change getCurrentDirectory and getDefaultLibname from passing around
...
function to its final value
2014-09-10 09:57:24 -07:00
Yui T
623b97f2ec
Add check if the compilationSetting object hasOwnProperty before add the property to TypeScriptLS object
2014-09-10 09:57:20 -07:00
Yui T
b0654dc044
Remove enableSingleOutputFile boolean and use singleOutputFilename to check if singleOutputFile is specified
2014-09-10 09:57:18 -07:00
Yui T
451f92bc24
Expose function shouldEmitToOwnFile to be called in services.ts
2014-09-10 09:57:16 -07:00
Yui T
2acd98e03e
Minor spelling and spacing fix
2014-09-10 09:54:42 -07:00
Yui T
8e37730d85
Update fourslash for getEmitOutput
2014-09-10 09:54:36 -07:00
Yui T
d52fe20df3
Add getEmitOutput and update call to getCurrentDirectory
2014-09-10 09:54:34 -07:00
Yui T
6cb5096087
Make getCurrentDirectory and getDefaultLibFilename invocation in management side
2014-09-10 09:54:28 -07:00
Anders Hejlsberg
bf084f159d
Merge pull request #640 from Microsoft/contextualSignatureInstantiation
...
Fix contextual signature instantiation during type inference
2014-09-09 18:46:42 -07:00
Daniel Rosenwasser
2e2d0c3bf1
Extracted 'break'/'continue' aggregation into common helper function.
...
Also addressed other CR feedback. Still need tests.
2014-09-09 17:43:46 -07:00
Sheetal Nandi
163674d07c
Merge pull request #638 from Microsoft/qualificationOfMethods
...
Fix the condition for qualifying the symbol of methods and functions in the enclosing declaration
2014-09-09 16:21:41 -07:00
Anders Hejlsberg
34c4b312f9
Fix contextual signature instantiation during type inference
2014-09-09 15:17:33 -07:00
Daniel Rosenwasser
6cc0305a5d
Implemented getOccurrences for 'constructor' keywords.
2014-09-09 14:54:19 -07:00
Daniel Rosenwasser
90dd327635
Changed logic for break/continue search in switch statements and loops.
...
Now if a labeled break in a switch refers to its original switch statement, we also highlight the 'switch' keyword.
Also added tests for loop/break/continue.
2014-09-09 14:30:14 -07:00
Daniel Rosenwasser
69803d4d3c
Implemented getOccurrences for for/for-in/while/do-while loops and their breaks/continues.
...
This includes labelled break/continue.
2014-09-09 14:28:06 -07:00
Anders Hejlsberg
e2c3b50ed1
Merge branch 'master' into truncateTypesInErrors
...
Conflicts:
src/compiler/checker.ts
2014-09-09 13:51:08 -07:00
Daniel Rosenwasser
83c35ad059
Addressed CR feedback.
2014-09-09 12:50:14 -07:00
Sheetal Nandi
840481da3b
Fix the condition for qualifying the symbol of methods and functions in the enclosing declaration
...
Fixes #604
2014-09-09 12:45:10 -07:00
Daniel Rosenwasser
0e93d283e3
Separated 'super'/'this' keyword searching to simplify logic.
2014-09-09 12:41:57 -07:00
Anders Hejlsberg
aa58dcbee0
Adding noErrorTruncation compiler option
2014-09-09 12:25:03 -07:00
Mohamed Hegazy
f61d07db69
add constructor paramters to Blob
2014-09-08 22:30:01 -07:00