mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-03-15 22:15:18 -05:00
Merge branch 'kmashint-master'
This commit is contained in:
9
tests/baselines/reference/newLineFlagWithCRLF.js
Normal file
9
tests/baselines/reference/newLineFlagWithCRLF.js
Normal file
@@ -0,0 +1,9 @@
|
||||
//// [newLineFlagWithCRLF.ts]
|
||||
var x=1;
|
||||
x=2;
|
||||
|
||||
|
||||
|
||||
//// [newLineFlagWithCRLF.js]
|
||||
var x = 1;
|
||||
x = 2;
|
||||
8
tests/baselines/reference/newLineFlagWithCRLF.symbols
Normal file
8
tests/baselines/reference/newLineFlagWithCRLF.symbols
Normal file
@@ -0,0 +1,8 @@
|
||||
=== tests/cases/compiler/newLineFlagWithCRLF.ts ===
|
||||
var x=1;
|
||||
>x : Symbol(x, Decl(newLineFlagWithCRLF.ts, 0, 3))
|
||||
|
||||
x=2;
|
||||
>x : Symbol(x, Decl(newLineFlagWithCRLF.ts, 0, 3))
|
||||
|
||||
|
||||
11
tests/baselines/reference/newLineFlagWithCRLF.types
Normal file
11
tests/baselines/reference/newLineFlagWithCRLF.types
Normal file
@@ -0,0 +1,11 @@
|
||||
=== tests/cases/compiler/newLineFlagWithCRLF.ts ===
|
||||
var x=1;
|
||||
>x : number
|
||||
>1 : number
|
||||
|
||||
x=2;
|
||||
>x=2 : number
|
||||
>x : number
|
||||
>2 : number
|
||||
|
||||
|
||||
9
tests/baselines/reference/newLineFlagWithLF.js
Normal file
9
tests/baselines/reference/newLineFlagWithLF.js
Normal file
@@ -0,0 +1,9 @@
|
||||
//// [newLineFlagWithLF.ts]
|
||||
var x=1;
|
||||
x=2;
|
||||
|
||||
|
||||
|
||||
//// [newLineFlagWithLF.js]
|
||||
var x = 1;
|
||||
x = 2;
|
||||
8
tests/baselines/reference/newLineFlagWithLF.symbols
Normal file
8
tests/baselines/reference/newLineFlagWithLF.symbols
Normal file
@@ -0,0 +1,8 @@
|
||||
=== tests/cases/compiler/newLineFlagWithLF.ts ===
|
||||
var x=1;
|
||||
>x : Symbol(x, Decl(newLineFlagWithLF.ts, 0, 3))
|
||||
|
||||
x=2;
|
||||
>x : Symbol(x, Decl(newLineFlagWithLF.ts, 0, 3))
|
||||
|
||||
|
||||
11
tests/baselines/reference/newLineFlagWithLF.types
Normal file
11
tests/baselines/reference/newLineFlagWithLF.types
Normal file
@@ -0,0 +1,11 @@
|
||||
=== tests/cases/compiler/newLineFlagWithLF.ts ===
|
||||
var x=1;
|
||||
>x : number
|
||||
>1 : number
|
||||
|
||||
x=2;
|
||||
>x=2 : number
|
||||
>x : number
|
||||
>2 : number
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// @newline: \n
|
||||
// @normalizenewline: \n
|
||||
// @sourcemap: true
|
||||
// DEFAULT INTERFACES
|
||||
interface IFoo {
|
||||
|
||||
4
tests/cases/compiler/newLineFlagWithCRLF.ts
Normal file
4
tests/cases/compiler/newLineFlagWithCRLF.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
// @newline: CRLF
|
||||
var x=1;
|
||||
x=2;
|
||||
|
||||
4
tests/cases/compiler/newLineFlagWithLF.ts
Normal file
4
tests/cases/compiler/newLineFlagWithLF.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
// @newline: LF
|
||||
var x=1;
|
||||
x=2;
|
||||
|
||||
Reference in New Issue
Block a user