-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Merge release-2.0.5 to master #11197
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Port TemplateStringsArray immutability to release-2.0
…literal expression (#9745) * wip * Add completion for quote property name in object literal expression * Add fourslash tests for completion of quoted property in object literal expression * Handle object-literal expression as an argument * Add tests and baseline for object literal expression for arguments * Undo wip * Undo wip
Also test that it's skipped when emitting decorator metadata
…dule augmentation in d.t.s (#9894) * Only error in non-declaration file * Add tests and baselines * Addess PR: get the first non-ambient external module file * Rename test file and update baseline * Add tests and baselines * Update baselines
Porting #9528 to release 2.0 branch
…static_property Support emitting static properties for classes with no name
Porting #9528 to release 2.0 branch
add check if expected directory path is non-empty string
Fix npm location
set allowSyntheticDefaultImports to true by default for jsconfig.json
Add gulp build tasks for cancellationToken and typingsInstaller
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Few version changes that need to be fixed.
let low = 0; | ||
let high = array.length - 1; | ||
comparer = comparer !== undefined |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I understand this is not part of this change. but can we replace this with a check at the use site, and other wise use the normal loop. optionally have two implementations. it would not make sens to have a function call just to return >
@@ -4,7 +4,8 @@ | |||
|
|||
namespace ts { | |||
/** The version of the TypeScript compiler release */ | |||
export const version = "2.1.0"; | |||
|
|||
export const version = "2.0.5"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
revert this to 2.1
please
@@ -1248,6 +1256,6 @@ namespace TypeScript.Services { | |||
// TODO: it should be moved into a namespace though. | |||
|
|||
/* @internal */ | |||
const toolsVersion = "2.1"; | |||
const toolsVersion = "2.0"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please revert this to 2.1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
// cc: @mhegazy, @billti, @jramsay