accepted baselines

This commit is contained in:
Vladimir Matveev
2015-02-17 16:25:38 -08:00
parent 83b0ddcd32
commit 393b95ed0e
11 changed files with 16 additions and 16 deletions

View File

@@ -997,7 +997,7 @@ declare module "typescript" {
SuperStatic = 32,
ContextChecked = 64,
EnumValuesComputed = 128,
BlockScopedBindingCapturedInLoop = 256,
BlockScopedBindingInLoop = 256,
}
interface NodeLinks {
resolvedType?: Type;

View File

@@ -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[];

View File

@@ -1028,7 +1028,7 @@ declare module "typescript" {
SuperStatic = 32,
ContextChecked = 64,
EnumValuesComputed = 128,
BlockScopedBindingCapturedInLoop = 256,
BlockScopedBindingInLoop = 256,
}
interface NodeLinks {
resolvedType?: Type;

View File

@@ -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[];

View File

@@ -1029,7 +1029,7 @@ declare module "typescript" {
SuperStatic = 32,
ContextChecked = 64,
EnumValuesComputed = 128,
BlockScopedBindingCapturedInLoop = 256,
BlockScopedBindingInLoop = 256,
}
interface NodeLinks {
resolvedType?: Type;

View File

@@ -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[];

View File

@@ -1066,7 +1066,7 @@ declare module "typescript" {
SuperStatic = 32,
ContextChecked = 64,
EnumValuesComputed = 128,
BlockScopedBindingCapturedInLoop = 256,
BlockScopedBindingInLoop = 256,
}
interface NodeLinks {
resolvedType?: Type;

View File

@@ -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[];

View File

@@ -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++) { }

View File

@@ -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

View File

@@ -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;;)
;