Remove old baselines

This commit is contained in:
Kanchalai Tanglertsampan 2016-02-01 11:23:03 -08:00
parent d815653988
commit c7bbda8a3e
10 changed files with 0 additions and 139 deletions

View file

@ -1,7 +0,0 @@
//// [sourceMapValidationDestructuringObjectBindingPattern1.ts]
var {x} = { x: 20 };
//// [sourceMapValidationDestructuringObjectBindingPattern1.js]
var x = { x: 20 }.x;
//# sourceMappingURL=sourceMapValidationDestructuringObjectBindingPattern1.js.map

View file

@ -1,2 +0,0 @@
//// [sourceMapValidationDestructuringObjectBindingPattern1.js.map]
{"version":3,"file":"sourceMapValidationDestructuringObjectBindingPattern1.js","sourceRoot":"","sources":["sourceMapValidationDestructuringObjectBindingPattern1.ts"],"names":[],"mappings":"AACK,mBAAC,CAAc"}

View file

@ -1,24 +0,0 @@
===================================================================
JsFile: sourceMapValidationDestructuringObjectBindingPattern1.js
mapUrl: sourceMapValidationDestructuringObjectBindingPattern1.js.map
sourceRoot:
sources: sourceMapValidationDestructuringObjectBindingPattern1.ts
===================================================================
-------------------------------------------------------------------
emittedFile:tests/cases/compiler/sourceMapValidationDestructuringObjectBindingPattern1.js
sourceFile:sourceMapValidationDestructuringObjectBindingPattern1.ts
-------------------------------------------------------------------
>>>var x = { x: 20 }.x;
1 >
2 >^^^^^^^^^^^^^^^^^^^
3 > ^
4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
>var {
2 >x
3 > } = { x: 20 };
1 >Emitted(1, 1) Source(2, 6) + SourceIndex(0)
2 >Emitted(1, 20) Source(2, 7) + SourceIndex(0)
3 >Emitted(1, 21) Source(2, 21) + SourceIndex(0)
---
>>>//# sourceMappingURL=sourceMapValidationDestructuringObjectBindingPattern1.js.map

View file

@ -1,6 +0,0 @@
=== tests/cases/compiler/sourceMapValidationDestructuringObjectBindingPattern1.ts ===
var {x} = { x: 20 };
>x : Symbol(x, Decl(sourceMapValidationDestructuringObjectBindingPattern1.ts, 1, 5))
>x : Symbol(x, Decl(sourceMapValidationDestructuringObjectBindingPattern1.ts, 1, 11))

View file

@ -1,8 +0,0 @@
=== tests/cases/compiler/sourceMapValidationDestructuringObjectBindingPattern1.ts ===
var {x} = { x: 20 };
>x : number
>{ x: 20 } : { x: number; }
>x : number
>20 : number

View file

@ -1,9 +0,0 @@
//// [sourceMapValidationDestructuringObjectBindingPattern2.ts]
var {x} = { x: 20 };
var { a, b } = { a: 30, b: 40 };
//// [sourceMapValidationDestructuringObjectBindingPattern2.js]
var x = { x: 20 }.x;
var _a = { a: 30, b: 40 }, a = _a.a, b = _a.b;
//# sourceMappingURL=sourceMapValidationDestructuringObjectBindingPattern2.js.map

View file

@ -1,2 +0,0 @@
//// [sourceMapValidationDestructuringObjectBindingPattern2.js.map]
{"version":3,"file":"sourceMapValidationDestructuringObjectBindingPattern2.js","sourceRoot":"","sources":["sourceMapValidationDestructuringObjectBindingPattern2.ts"],"names":[],"mappings":"AACK,mBAAC,CAAc;AACpB,IAAA,qBAA+B,EAAzB,QAAC,EAAE,QAAC,CAAsB"}

View file

@ -1,52 +0,0 @@
===================================================================
JsFile: sourceMapValidationDestructuringObjectBindingPattern2.js
mapUrl: sourceMapValidationDestructuringObjectBindingPattern2.js.map
sourceRoot:
sources: sourceMapValidationDestructuringObjectBindingPattern2.ts
===================================================================
-------------------------------------------------------------------
emittedFile:tests/cases/compiler/sourceMapValidationDestructuringObjectBindingPattern2.js
sourceFile:sourceMapValidationDestructuringObjectBindingPattern2.ts
-------------------------------------------------------------------
>>>var x = { x: 20 }.x;
1 >
2 >^^^^^^^^^^^^^^^^^^^
3 > ^
4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
>var {
2 >x
3 > } = { x: 20 };
1 >Emitted(1, 1) Source(2, 6) + SourceIndex(0)
2 >Emitted(1, 20) Source(2, 7) + SourceIndex(0)
3 >Emitted(1, 21) Source(2, 21) + SourceIndex(0)
---
>>>var _a = { a: 30, b: 40 }, a = _a.a, b = _a.b;
1->
2 >^^^^
3 > ^^^^^^^^^^^^^^^^^^^^^
4 > ^^
5 > ^^^^^^^^
6 > ^^
7 > ^^^^^^^^
8 > ^
9 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1->
>
2 >
3 > var { a, b } = { a: 30, b: 40 }
4 >
5 > a
6 > ,
7 > b
8 > } = { a: 30, b: 40 };
1->Emitted(2, 1) Source(3, 1) + SourceIndex(0)
2 >Emitted(2, 5) Source(3, 1) + SourceIndex(0)
3 >Emitted(2, 26) Source(3, 32) + SourceIndex(0)
4 >Emitted(2, 28) Source(3, 7) + SourceIndex(0)
5 >Emitted(2, 36) Source(3, 8) + SourceIndex(0)
6 >Emitted(2, 38) Source(3, 10) + SourceIndex(0)
7 >Emitted(2, 46) Source(3, 11) + SourceIndex(0)
8 >Emitted(2, 47) Source(3, 33) + SourceIndex(0)
---
>>>//# sourceMappingURL=sourceMapValidationDestructuringObjectBindingPattern2.js.map

View file

@ -1,12 +0,0 @@
=== tests/cases/compiler/sourceMapValidationDestructuringObjectBindingPattern2.ts ===
var {x} = { x: 20 };
>x : Symbol(x, Decl(sourceMapValidationDestructuringObjectBindingPattern2.ts, 1, 5))
>x : Symbol(x, Decl(sourceMapValidationDestructuringObjectBindingPattern2.ts, 1, 11))
var { a, b } = { a: 30, b: 40 };
>a : Symbol(a, Decl(sourceMapValidationDestructuringObjectBindingPattern2.ts, 2, 5))
>b : Symbol(b, Decl(sourceMapValidationDestructuringObjectBindingPattern2.ts, 2, 8))
>a : Symbol(a, Decl(sourceMapValidationDestructuringObjectBindingPattern2.ts, 2, 16))
>b : Symbol(b, Decl(sourceMapValidationDestructuringObjectBindingPattern2.ts, 2, 23))

View file

@ -1,17 +0,0 @@
=== tests/cases/compiler/sourceMapValidationDestructuringObjectBindingPattern2.ts ===
var {x} = { x: 20 };
>x : number
>{ x: 20 } : { x: number; }
>x : number
>20 : number
var { a, b } = { a: 30, b: 40 };
>a : number
>b : number
>{ a: 30, b: 40 } : { a: number; b: number; }
>a : number
>30 : number
>b : number
>40 : number