mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-05 08:11:30 -06:00
accept baselines
This commit is contained in:
parent
87500959f0
commit
ca5ea19cd8
@ -23,16 +23,16 @@ import { a } from "es6ImportNamedImport_0";
|
||||
>a : number
|
||||
|
||||
import { a as b } from "es6ImportNamedImport_0";
|
||||
>a : unknown
|
||||
>a : number
|
||||
>b : number
|
||||
|
||||
import { x, a as y } from "es6ImportNamedImport_0";
|
||||
>x : number
|
||||
>a : unknown
|
||||
>a : number
|
||||
>y : number
|
||||
|
||||
import { x as z, } from "es6ImportNamedImport_0";
|
||||
>x : unknown
|
||||
>x : number
|
||||
>z : number
|
||||
|
||||
import { m, } from "es6ImportNamedImport_0";
|
||||
@ -43,8 +43,8 @@ import { a1, x1 } from "es6ImportNamedImport_0";
|
||||
>x1 : number
|
||||
|
||||
import { a1 as a11, x1 as x11 } from "es6ImportNamedImport_0";
|
||||
>a1 : unknown
|
||||
>a1 : number
|
||||
>a11 : number
|
||||
>x1 : unknown
|
||||
>x1 : number
|
||||
>x11 : number
|
||||
|
||||
|
||||
@ -23,16 +23,16 @@ import { a } from "es6ImportNamedImportInEs5_0";
|
||||
>a : number
|
||||
|
||||
import { a as b } from "es6ImportNamedImportInEs5_0";
|
||||
>a : unknown
|
||||
>a : number
|
||||
>b : number
|
||||
|
||||
import { x, a as y } from "es6ImportNamedImportInEs5_0";
|
||||
>x : number
|
||||
>a : unknown
|
||||
>a : number
|
||||
>y : number
|
||||
|
||||
import { x as z, } from "es6ImportNamedImportInEs5_0";
|
||||
>x : unknown
|
||||
>x : number
|
||||
>z : number
|
||||
|
||||
import { m, } from "es6ImportNamedImportInEs5_0";
|
||||
@ -43,8 +43,8 @@ import { a1, x1 } from "es6ImportNamedImportInEs5_0";
|
||||
>x1 : number
|
||||
|
||||
import { a1 as a11, x1 as x11 } from "es6ImportNamedImportInEs5_0";
|
||||
>a1 : unknown
|
||||
>a1 : number
|
||||
>a11 : number
|
||||
>x1 : unknown
|
||||
>x1 : number
|
||||
>x11 : number
|
||||
|
||||
|
||||
@ -1,17 +1,17 @@
|
||||
/// <reference path='fourslash.ts' />
|
||||
|
||||
// @Filename: b.ts
|
||||
////import /*classAliasDefinition*/defaultExport from "myLib";
|
||||
////import /*classAliasDefinition*/defaultExport from "a";
|
||||
|
||||
|
||||
// @Filename: a.ts
|
||||
////module Module {
|
||||
////}
|
||||
/////*classDefinition*/class Class {
|
||||
//// private f;
|
||||
////}
|
||||
////export = Class;
|
||||
|
||||
debugger;
|
||||
|
||||
goTo.file("b.ts");
|
||||
|
||||
goTo.marker('classAliasDefinition');
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user