mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00:00
Merge branch 'master' into mergeMarkers1
This commit is contained in:
@@ -4016,7 +4016,7 @@ module ts {
|
||||
result &= related;
|
||||
}
|
||||
}
|
||||
else if (source.typeParameters || source.typeParameters) {
|
||||
else if (source.typeParameters || target.typeParameters) {
|
||||
return Ternary.False;
|
||||
}
|
||||
// Spec 1.0 Section 3.8.3 & 3.8.4:
|
||||
@@ -5274,7 +5274,7 @@ module ts {
|
||||
signatureList = [signature];
|
||||
}
|
||||
else if (!compareSignatures(signatureList[0], signature, /*compareReturnTypes*/ false, compareTypes)) {
|
||||
// Signatures arent identical, do not use
|
||||
// Signatures aren't identical, do not use
|
||||
return undefined;
|
||||
}
|
||||
else {
|
||||
|
||||
@@ -1548,7 +1548,7 @@ module ts {
|
||||
return sourceFile;
|
||||
}
|
||||
|
||||
export var disableIncrementalParsing = true;
|
||||
export var disableIncrementalParsing = false;
|
||||
|
||||
export function updateLanguageServiceSourceFile(sourceFile: SourceFile, scriptSnapshot: IScriptSnapshot, version: string, isOpen: boolean, textChangeRange: TextChangeRange): SourceFile {
|
||||
if (textChangeRange && Debug.shouldAssert(AssertionLevel.Normal)) {
|
||||
|
||||
Reference in New Issue
Block a user