mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-22 22:55:36 -05:00
accepted baselines
This commit is contained in:
@@ -997,7 +997,7 @@ declare module "typescript" {
|
||||
SuperStatic = 32,
|
||||
ContextChecked = 64,
|
||||
EnumValuesComputed = 128,
|
||||
BlockScopedBindingCapturedInLoop = 256,
|
||||
BlockScopedBindingInLoop = 256,
|
||||
}
|
||||
interface NodeLinks {
|
||||
resolvedType?: Type;
|
||||
|
||||
@@ -3218,8 +3218,8 @@ declare module "typescript" {
|
||||
getReturnTypeOfSignature(signature: Signature): Type;
|
||||
|
||||
>getReturnTypeOfSignature : (signature: Signature) => Type
|
||||
>signature : Signature
|
||||
>Signature : Signature
|
||||
>signature : Signature
|
||||
>Signature : Signature
|
||||
>Type : Type
|
||||
|
||||
getSymbolsInScope(location: Node, meaning: SymbolFlags): Symbol[];
|
||||
|
||||
@@ -1028,7 +1028,7 @@ declare module "typescript" {
|
||||
SuperStatic = 32,
|
||||
ContextChecked = 64,
|
||||
EnumValuesComputed = 128,
|
||||
BlockScopedBindingCapturedInLoop = 256,
|
||||
BlockScopedBindingInLoop = 256,
|
||||
}
|
||||
interface NodeLinks {
|
||||
resolvedType?: Type;
|
||||
|
||||
@@ -3362,8 +3362,8 @@ declare module "typescript" {
|
||||
getReturnTypeOfSignature(signature: Signature): Type;
|
||||
|
||||
>getReturnTypeOfSignature : (signature: Signature) => Type
|
||||
>signature : Signature
|
||||
>Signature : Signature
|
||||
>signature : Signature
|
||||
>Signature : Signature
|
||||
>Type : Type
|
||||
|
||||
getSymbolsInScope(location: Node, meaning: SymbolFlags): Symbol[];
|
||||
|
||||
@@ -1029,7 +1029,7 @@ declare module "typescript" {
|
||||
SuperStatic = 32,
|
||||
ContextChecked = 64,
|
||||
EnumValuesComputed = 128,
|
||||
BlockScopedBindingCapturedInLoop = 256,
|
||||
BlockScopedBindingInLoop = 256,
|
||||
}
|
||||
interface NodeLinks {
|
||||
resolvedType?: Type;
|
||||
|
||||
@@ -3314,8 +3314,8 @@ declare module "typescript" {
|
||||
getReturnTypeOfSignature(signature: Signature): Type;
|
||||
|
||||
>getReturnTypeOfSignature : (signature: Signature) => Type
|
||||
>signature : Signature
|
||||
>Signature : Signature
|
||||
>signature : Signature
|
||||
>Signature : Signature
|
||||
>Type : Type
|
||||
|
||||
getSymbolsInScope(location: Node, meaning: SymbolFlags): Symbol[];
|
||||
|
||||
@@ -1066,7 +1066,7 @@ declare module "typescript" {
|
||||
SuperStatic = 32,
|
||||
ContextChecked = 64,
|
||||
EnumValuesComputed = 128,
|
||||
BlockScopedBindingCapturedInLoop = 256,
|
||||
BlockScopedBindingInLoop = 256,
|
||||
}
|
||||
interface NodeLinks {
|
||||
resolvedType?: Type;
|
||||
|
||||
@@ -3487,8 +3487,8 @@ declare module "typescript" {
|
||||
getReturnTypeOfSignature(signature: Signature): Type;
|
||||
|
||||
>getReturnTypeOfSignature : (signature: Signature) => Type
|
||||
>signature : Signature
|
||||
>Signature : Signature
|
||||
>signature : Signature
|
||||
>Signature : Signature
|
||||
>Type : Type
|
||||
|
||||
getSymbolsInScope(location: Node, meaning: SymbolFlags): Symbol[];
|
||||
|
||||
@@ -20,5 +20,5 @@ var l3, l4, l5, l6;
|
||||
var l7 = false;
|
||||
var l8 = 23;
|
||||
var l9 = 0, l10 = "", l11 = null;
|
||||
for (var _l11 = void 0 in {}) { }
|
||||
for (var _l11 in {}) { }
|
||||
for (var l12 = 0; l12 < 9; l12++) { }
|
||||
|
||||
@@ -7,4 +7,4 @@ var x: number[];
|
||||
//// [restElementWithInitializer2.js]
|
||||
var a;
|
||||
var x;
|
||||
; // Error, rest element cannot have initializer
|
||||
x = a = a.slice(0); // Error, rest element cannot have initializer
|
||||
|
||||
@@ -17,13 +17,13 @@
|
||||
|
||||
//// [shadowingViaLocalValue.js]
|
||||
{
|
||||
var _x = void 0;
|
||||
var _x;
|
||||
{
|
||||
var x = 1;
|
||||
}
|
||||
}
|
||||
{
|
||||
var _x1 = void 0;
|
||||
var _x1;
|
||||
{
|
||||
for (var x1 = 0;;)
|
||||
;
|
||||
|
||||
Reference in New Issue
Block a user