TypeScript/tests/cases/fourslash/mergedDeclarationsWithExportAssignment1.ts

32 lines
886 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
/// <reference path='fourslash.ts'/>
// @Filename: mergedDeclarationsWithExportAssignment1_file0.ts
////class Foo {
//// doStuff(x: number): number;
////}
////module Foo {
//// export var x: number;
////}
////export = Foo;
// @Filename: mergedDeclarationsWithExportAssignment1_file1.ts
///////<reference path='mergedDeclarationsWithExportAssignment1_file0.ts'/>
2016-02-13 00:40:47 +01:00
////import /*1*/Foo = require('./mergedDeclarationsWithExportAssignment1_file0');
2014-10-07 20:30:27 +02:00
////var /*3*/z = new /*2*/Foo();
////var /*5*/r2 = Foo./*4*/x;
2014-07-13 01:04:16 +02:00
verify.quickInfos({
1: [
"(alias) class Foo",
"(alias) namespace Foo",
"import Foo = require('./mergedDeclarationsWithExportAssignment1_file0')"
].join("\n"),
3: "var z: Foo",
5: "var r2: number",
});
verify.completions(
{ marker: "2", includes: "Foo" },
{ marker: "4", includes: "x" },
);