TypeScript/tests/baselines/reference/internalImportInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.types

27 lines
1.6 KiB
Text

=== tests/cases/compiler/internalImportInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.ts ===
class A {
>A : A, Symbol(A,Decl(internalImportInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.ts,0,0),Decl(internalImportInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.ts,2,1))
aProp: string;
>aProp : string, Symbol(aProp,Decl(internalImportInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.ts,0,9))
}
module A {
>A : typeof A, Symbol(A,Decl(internalImportInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.ts,0,0),Decl(internalImportInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.ts,2,1))
export interface X { s: string }
>X : X, Symbol(X,Decl(internalImportInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.ts,3,10))
>s : string, Symbol(s,Decl(internalImportInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.ts,4,24))
export var a = 10;
>a : number, Symbol(a,Decl(internalImportInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.ts,5,14))
>10 : number
}
module B {
>B : any, Symbol(B,Decl(internalImportInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.ts,6,1))
import Y = A;
>Y : typeof Y, Symbol(Y,Decl(internalImportInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.ts,8,10))
>A : Y, Symbol(Y,Decl(internalImportInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.ts,0,0),Decl(internalImportInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.ts,2,1))
}