feedback form pr, new baselines

This commit is contained in:
Wesley Wigham
2015-10-30 14:52:45 -07:00
parent 6c812420ec
commit 95a3fc7143
661 changed files with 45 additions and 32534 deletions
+27 -25
View File
@@ -326,17 +326,19 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, Promi
let newLine = host.getNewLine();
let jsxDesugaring = host.getCompilerOptions().jsx !== JsxEmit.Preserve;
let shouldEmitJsx = (s: SourceFile) => (s.languageVariant === LanguageVariant.JSX && !jsxDesugaring);
let outFile = compilerOptions.outFile || compilerOptions.out;
if (targetSourceFile === undefined) {
forEach(host.getSourceFiles(), sourceFile => {
if (shouldEmitToOwnFile(sourceFile, compilerOptions)) {
let jsFilePath = getOwnEmitOutputFilePath(sourceFile, host, shouldEmitJsx(sourceFile) ? ".jsx" : ".js");
emitFile(jsFilePath, sourceFile);
}
});
if (compilerOptions.outFile || compilerOptions.out) {
emitFile(compilerOptions.outFile || compilerOptions.out);
if (outFile) {
emitFile(outFile);
}
else {
forEach(host.getSourceFiles(), sourceFile => {
if (shouldEmitToOwnFile(sourceFile, compilerOptions)) {
let jsFilePath = getOwnEmitOutputFilePath(sourceFile, host, shouldEmitJsx(sourceFile) ? ".jsx" : ".js");
emitFile(jsFilePath, sourceFile);
}
});
}
}
else {
@@ -345,8 +347,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, Promi
let jsFilePath = getOwnEmitOutputFilePath(targetSourceFile, host, shouldEmitJsx(targetSourceFile) ? ".jsx" : ".js");
emitFile(jsFilePath, targetSourceFile);
}
else if (!isDeclarationFile(targetSourceFile) && (compilerOptions.outFile || compilerOptions.out)) {
emitFile(compilerOptions.outFile || compilerOptions.out);
else if (!isDeclarationFile(targetSourceFile) && outFile) {
emitFile(outFile);
}
}
@@ -547,7 +549,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, Promi
/** If removeComments is true, no leading-comments needed to be emitted **/
let emitLeadingCommentsOfPosition = compilerOptions.removeComments ? function (pos: number) { } : emitLeadingCommentsOfPositionWorker;
let moduleEmitDelegates: Map<(node: SourceFile, resolvePath?: boolean) => void> = {
let moduleEmitDelegates: Map<(node: SourceFile, resolveModuleNames?: boolean) => void> = {
[ModuleKind.ES6]: emitES6Module,
[ModuleKind.AMD]: emitAMDModule,
[ModuleKind.System]: emitSystemModule,
@@ -555,7 +557,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, Promi
[ModuleKind.CommonJS]: emitCommonJSModule,
};
let bundleEmitDelegates: Map<(node: SourceFile, resolvePath?: boolean) => void> = {
let bundleEmitDelegates: Map<(node: SourceFile, resolveModuleNames?: boolean) => void> = {
[ModuleKind.ES6]() {},
[ModuleKind.AMD]: emitAMDModule,
[ModuleKind.System]: emitSystemModule,
@@ -7280,7 +7282,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, Promi
write("}"); // execute
}
function emitSystemModule(node: SourceFile, resolvePath?: boolean): void {
function emitSystemModule(node: SourceFile, resolveModuleNames?: boolean): void {
collectExternalModuleInfo(node);
// System modules has the following shape
// System.register(['dep-1', ... 'dep-n'], function(exports) {/* module body function */})
@@ -7320,7 +7322,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, Promi
write(", ");
}
if (resolvePath) {
if (resolveModuleNames) {
let name = lookupSpecifierName(externalImports[i]);
if (name) {
text = `"${name}"`;
@@ -7346,15 +7348,15 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, Promi
specifier = (declaration as ImportEqualsDeclaration).moduleReference;
}
else {
specifier = (declaration as ImportDeclaration|ExportDeclaration).moduleSpecifier;
specifier = (declaration as ImportDeclaration | ExportDeclaration).moduleSpecifier;
}
let moduleSymbol = resolver.getSymbolAtLocation(specifier);
if (!moduleSymbol) {
return;
return undefined;
}
let moduleDeclaration = getDeclarationOfKind(moduleSymbol, SyntaxKind.SourceFile) as SourceFile;
if (!moduleDeclaration || isDeclarationFile(moduleDeclaration)) {
return;
return undefined;
}
return getExternalModuleNameFromPath(host, moduleDeclaration.fileName);
}
@@ -7365,7 +7367,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, Promi
importAliasNames: string[];
}
function getAMDDependencyNames(node: SourceFile, includeNonAmdDependencies: boolean, resolvePath?: boolean): AMDDependencyNames {
function getAMDDependencyNames(node: SourceFile, includeNonAmdDependencies: boolean, resolveModuleNames?: boolean): AMDDependencyNames {
// names of modules with corresponding parameter in the factory function
let aliasedModuleNames: string[] = [];
// names of modules with no corresponding parameters in factory function
@@ -7389,7 +7391,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, Promi
// Find the name of the external module
let externalModuleName = getExternalModuleNameText(importNode);
if (resolvePath) {
if (resolveModuleNames) {
let name = lookupSpecifierName(importNode);
if (name) {
externalModuleName = `"${name}"`;
@@ -7410,7 +7412,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, Promi
return { aliasedModuleNames, unaliasedModuleNames, importAliasNames };
}
function emitAMDDependencies(node: SourceFile, includeNonAmdDependencies: boolean, resolvePath?: boolean) {
function emitAMDDependencies(node: SourceFile, includeNonAmdDependencies: boolean, resolveModuleNames?: boolean) {
// An AMD define function has the following shape:
// define(id?, dependencies?, factory);
//
@@ -7423,7 +7425,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, Promi
// `import "module"` or `<amd-dependency path= "a.css" />`
// we need to add modules without alias names to the end of the dependencies list
let dependencyNames = getAMDDependencyNames(node, includeNonAmdDependencies, resolvePath);
let dependencyNames = getAMDDependencyNames(node, includeNonAmdDependencies, resolveModuleNames);
emitAMDDependencyList(dependencyNames);
write(", ");
emitAMDFactoryHeader(dependencyNames);
@@ -7451,7 +7453,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, Promi
write(") {");
}
function emitAMDModule(node: SourceFile, resolvePath?: boolean) {
function emitAMDModule(node: SourceFile, resolveModuleNames?: boolean) {
emitEmitHelpers(node);
collectExternalModuleInfo(node);
@@ -7460,7 +7462,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, Promi
if (node.moduleName) {
write("\"" + node.moduleName + "\", ");
}
emitAMDDependencies(node, /*includeNonAmdDependencies*/ true, resolvePath);
emitAMDDependencies(node, /*includeNonAmdDependencies*/ true, resolveModuleNames);
increaseIndent();
let startIndex = emitDirectivePrologues(node.statements, /*startWithNewLine*/ true);
emitExportStarHelper();
@@ -7714,7 +7716,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, Promi
emitModule(node);
}
else {
bundleEmitDelegates[modulekind](node, /*resolvePath*/true);
bundleEmitDelegates[modulekind](node, /*resolveModuleNames*/true);
}
}
else {
+1 -1
View File
@@ -1036,7 +1036,7 @@ namespace ts {
}
// Cannot specify module gen that isn't amd or system with --out
if (outFile && options.module && options.module !== ModuleKind.AMD && options.module !== ModuleKind.System) {
if (outFile && options.module && !(options.module === ModuleKind.AMD || options.module === ModuleKind.System)) {
programDiagnostics.add(createCompilerDiagnostic(Diagnostics.Only_amd_and_system_modules_are_supported_alongside_0, options.out ? "out" : "outFile"));
}
+1 -1
View File
@@ -1169,7 +1169,7 @@ namespace Harness {
}
else if (isTS(file.unitName)) {
let declFile = findResultCodeFile(file.unitName);
if (!findUnit(declFile.fileName, declInputFiles) && !findUnit(declFile.fileName, declOtherFiles)) {
if (declFile && !findUnit(declFile.fileName, declInputFiles) && !findUnit(declFile.fileName, declOtherFiles)) {
dtsFiles.push({ unitName: declFile.fileName, content: declFile.code });
}
}
+4 -1
View File
@@ -303,7 +303,10 @@ class ProjectRunner extends RunnerBase {
}
let outputDtsFileName = emitOutputFilePathWithoutExtension + ".d.ts";
allInputFiles.unshift(findOutpuDtsFile(outputDtsFileName));
let file = findOutpuDtsFile(outputDtsFileName);
if (file) {
allInputFiles.unshift(file);
}
}
else {
let outputDtsFileName = ts.removeFileExtension(compilerOptions.outFile || compilerOptions.out) + ".d.ts";
@@ -6,7 +6,5 @@ export var x;
//// [file2.ts]
var y;
//// [file1.js]
export var x;
//// [all.js]
var y;
@@ -8,32 +8,7 @@ export class A { }
import {A} from "./ref/a";
export class B extends A { }
//// [a.js]
define(["require", "exports"], function (require, exports) {
var A = (function () {
function A() {
}
return A;
})();
exports.A = A;
});
//# sourceMappingURL=a.js.map//// [b.js]
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
define(["require", "exports", "./ref/a"], function (require, exports, a_1) {
var B = (function (_super) {
__extends(B, _super);
function B() {
_super.apply(this, arguments);
}
return B;
})(a_1.A);
exports.B = B;
});
//# sourceMappingURL=b.js.map//// [all.js]
//// [all.js]
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
@@ -59,13 +34,6 @@ define("tests/cases/compiler/b", ["require", "exports", "tests/cases/compiler/re
});
//# sourceMappingURL=all.js.map
//// [a.d.ts]
export declare class A {
}
//// [b.d.ts]
import { A } from "./ref/a";
export declare class B extends A {
}
//// [all.d.ts]
declare module "tests/cases/compiler/ref/a" {
export class A {
@@ -1,4 +1,2 @@
//// [a.js.map]
{"version":3,"file":"a.js","sourceRoot":"","sources":["a.ts"],"names":["A","A.constructor"],"mappings":";IACA;QAAAA;QAAiBC,CAACA;QAADD,QAACA;IAADA,CAACA,AAAlB,IAAkB;IAAL,SAAC,IAAI,CAAA"}//// [b.js.map]
{"version":3,"file":"b.js","sourceRoot":"","sources":["b.ts"],"names":["B","B.constructor"],"mappings":";;;;;;IACA;QAAuBA,qBAACA;QAAxBA;YAAuBC,8BAACA;QAAGA,CAACA;QAADD,QAACA;IAADA,CAACA,AAA5B,EAAuB,KAAC,EAAI;IAAf,SAAC,IAAc,CAAA"}//// [all.js.map]
//// [all.js.map]
{"version":3,"file":"all.js","sourceRoot":"","sources":["tests/cases/compiler/ref/a.ts","tests/cases/compiler/b.ts"],"names":["A","A.constructor","B","B.constructor"],"mappings":";;;;;;IACA;QAAAA;QAAiBC,CAACA;QAADD,QAACA;IAADA,CAACA,AAAlB,IAAkB;IAAL,SAAC,IAAI,CAAA;;;ICAlB;QAAuBE,qBAACA;QAAxBA;YAAuBC,8BAACA;QAAGA,CAACA;QAADD,QAACA;IAADA,CAACA,AAA5B,EAAuB,KAAC,EAAI;IAAf,SAAC,IAAc,CAAA"}
@@ -1,173 +1,4 @@
===================================================================
JsFile: a.js
mapUrl: a.js.map
sourceRoot:
sources: a.ts
===================================================================
-------------------------------------------------------------------
emittedFile:tests/cases/compiler/ref/a.js
sourceFile:a.ts
-------------------------------------------------------------------
>>>define(["require", "exports"], function (require, exports) {
>>> var A = (function () {
1 >^^^^
2 > ^^^^^^^^^^^^^^^^^^^->
1 >
>
1 >Emitted(2, 5) Source(2, 1) + SourceIndex(0)
---
>>> function A() {
1->^^^^^^^^
2 > ^^->
1->
1->Emitted(3, 9) Source(2, 1) + SourceIndex(0) name (A)
---
>>> }
1->^^^^^^^^
2 > ^
3 > ^^^^^^^^^->
1->export class A {
2 > }
1->Emitted(4, 9) Source(2, 18) + SourceIndex(0) name (A.constructor)
2 >Emitted(4, 10) Source(2, 19) + SourceIndex(0) name (A.constructor)
---
>>> return A;
1->^^^^^^^^
2 > ^^^^^^^^
1->
2 > }
1->Emitted(5, 9) Source(2, 18) + SourceIndex(0) name (A)
2 >Emitted(5, 17) Source(2, 19) + SourceIndex(0) name (A)
---
>>> })();
1 >^^^^
2 > ^
3 >
4 > ^^^^
5 > ^^^^^^^^^^->
1 >
2 > }
3 >
4 > export class A { }
1 >Emitted(6, 5) Source(2, 18) + SourceIndex(0) name (A)
2 >Emitted(6, 6) Source(2, 19) + SourceIndex(0) name (A)
3 >Emitted(6, 6) Source(2, 1) + SourceIndex(0)
4 >Emitted(6, 10) Source(2, 19) + SourceIndex(0)
---
>>> exports.A = A;
1->^^^^
2 > ^^^^^^^^^
3 > ^^^^
4 > ^
1->
2 > A
3 > { }
4 >
1->Emitted(7, 5) Source(2, 14) + SourceIndex(0)
2 >Emitted(7, 14) Source(2, 15) + SourceIndex(0)
3 >Emitted(7, 18) Source(2, 19) + SourceIndex(0)
4 >Emitted(7, 19) Source(2, 19) + SourceIndex(0)
---
>>>});
>>>//# sourceMappingURL=a.js.map===================================================================
JsFile: b.js
mapUrl: b.js.map
sourceRoot:
sources: b.ts
===================================================================
-------------------------------------------------------------------
emittedFile:tests/cases/compiler/b.js
sourceFile:b.ts
-------------------------------------------------------------------
>>>var __extends = (this && this.__extends) || function (d, b) {
>>> for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
>>> function __() { this.constructor = d; }
>>> d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
>>>};
>>>define(["require", "exports", "./ref/a"], function (require, exports, a_1) {
>>> var B = (function (_super) {
1 >^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >import {A} from "./ref/a";
>
1 >Emitted(7, 5) Source(2, 1) + SourceIndex(0)
---
>>> __extends(B, _super);
1->^^^^^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^
1->export class B extends
2 > A
1->Emitted(8, 9) Source(2, 24) + SourceIndex(0) name (B)
2 >Emitted(8, 30) Source(2, 25) + SourceIndex(0) name (B)
---
>>> function B() {
1 >^^^^^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
1 >Emitted(9, 9) Source(2, 1) + SourceIndex(0) name (B)
---
>>> _super.apply(this, arguments);
1->^^^^^^^^^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1->export class B extends
2 > A
1->Emitted(10, 13) Source(2, 24) + SourceIndex(0) name (B.constructor)
2 >Emitted(10, 43) Source(2, 25) + SourceIndex(0) name (B.constructor)
---
>>> }
1 >^^^^^^^^
2 > ^
3 > ^^^^^^^^^->
1 > {
2 > }
1 >Emitted(11, 9) Source(2, 28) + SourceIndex(0) name (B.constructor)
2 >Emitted(11, 10) Source(2, 29) + SourceIndex(0) name (B.constructor)
---
>>> return B;
1->^^^^^^^^
2 > ^^^^^^^^
1->
2 > }
1->Emitted(12, 9) Source(2, 28) + SourceIndex(0) name (B)
2 >Emitted(12, 17) Source(2, 29) + SourceIndex(0) name (B)
---
>>> })(a_1.A);
1 >^^^^
2 > ^
3 >
4 > ^^
5 > ^^^^^
6 > ^^
7 > ^^^^^->
1 >
2 > }
3 >
4 > export class B extends
5 > A
6 > { }
1 >Emitted(13, 5) Source(2, 28) + SourceIndex(0) name (B)
2 >Emitted(13, 6) Source(2, 29) + SourceIndex(0) name (B)
3 >Emitted(13, 6) Source(2, 1) + SourceIndex(0)
4 >Emitted(13, 8) Source(2, 24) + SourceIndex(0)
5 >Emitted(13, 13) Source(2, 25) + SourceIndex(0)
6 >Emitted(13, 15) Source(2, 29) + SourceIndex(0)
---
>>> exports.B = B;
1->^^^^
2 > ^^^^^^^^^
3 > ^^^^
4 > ^
1->
2 > B
3 > extends A { }
4 >
1->Emitted(14, 5) Source(2, 14) + SourceIndex(0)
2 >Emitted(14, 14) Source(2, 15) + SourceIndex(0)
3 >Emitted(14, 18) Source(2, 29) + SourceIndex(0)
4 >Emitted(14, 19) Source(2, 29) + SourceIndex(0)
---
>>>});
>>>//# sourceMappingURL=b.js.map===================================================================
JsFile: all.js
mapUrl: all.js.map
sourceRoot:
@@ -10,30 +10,7 @@ export class A { }
import {A} from "./ref/a";
export class B extends A { }
//// [a.js]
// This should be an error
var A = (function () {
function A() {
}
return A;
})();
exports.A = A;
//# sourceMappingURL=a.js.map//// [b.js]
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
var a_1 = require("./ref/a");
var B = (function (_super) {
__extends(B, _super);
function B() {
_super.apply(this, arguments);
}
return B;
})(a_1.A);
exports.B = B;
//# sourceMappingURL=b.js.map//// [all.js]
//// [all.js]
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
@@ -42,13 +19,6 @@ var __extends = (this && this.__extends) || function (d, b) {
// This should be an error
//# sourceMappingURL=all.js.map
//// [a.d.ts]
export declare class A {
}
//// [b.d.ts]
import { A } from "./ref/a";
export declare class B extends A {
}
//// [all.d.ts]
declare module "tests/cases/compiler/ref/a" {
export class A {
@@ -1,4 +1,2 @@
//// [a.js.map]
{"version":3,"file":"a.js","sourceRoot":"","sources":["a.ts"],"names":["A","A.constructor"],"mappings":"AACA,0BAA0B;AAE1B;IAAAA;IAAiBC,CAACA;IAADD,QAACA;AAADA,CAACA,AAAlB,IAAkB;AAAL,SAAC,IAAI,CAAA"}//// [b.js.map]
{"version":3,"file":"b.js","sourceRoot":"","sources":["b.ts"],"names":["B","B.constructor"],"mappings":";;;;;AAAA,kBAAgB,SAAS,CAAC,CAAA;AAC1B;IAAuBA,qBAACA;IAAxBA;QAAuBC,8BAACA;IAAGA,CAACA;IAADD,QAACA;AAADA,CAACA,AAA5B,EAAuB,KAAC,EAAI;AAAf,SAAC,IAAc,CAAA"}//// [all.js.map]
//// [all.js.map]
{"version":3,"file":"all.js","sourceRoot":"","sources":["tests/cases/compiler/ref/a.ts","tests/cases/compiler/b.ts"],"names":[],"mappings":";;;;;AACA,0BAA0B"}
@@ -1,198 +1,4 @@
===================================================================
JsFile: a.js
mapUrl: a.js.map
sourceRoot:
sources: a.ts
===================================================================
-------------------------------------------------------------------
emittedFile:tests/cases/compiler/ref/a.js
sourceFile:a.ts
-------------------------------------------------------------------
>>>// This should be an error
1 >
2 >^^^^^^^^^^^^^^^^^^^^^^^^^^
1 >
>
2 >// This should be an error
1 >Emitted(1, 1) Source(2, 1) + SourceIndex(0)
2 >Emitted(1, 27) Source(2, 27) + SourceIndex(0)
---
>>>var A = (function () {
1 >
2 >^^^^^^^^^^^^^^^^^^^->
1 >
>
>
1 >Emitted(2, 1) Source(4, 1) + SourceIndex(0)
---
>>> function A() {
1->^^^^
2 > ^^->
1->
1->Emitted(3, 5) Source(4, 1) + SourceIndex(0) name (A)
---
>>> }
1->^^^^
2 > ^
3 > ^^^^^^^^^->
1->export class A {
2 > }
1->Emitted(4, 5) Source(4, 18) + SourceIndex(0) name (A.constructor)
2 >Emitted(4, 6) Source(4, 19) + SourceIndex(0) name (A.constructor)
---
>>> return A;
1->^^^^
2 > ^^^^^^^^
1->
2 > }
1->Emitted(5, 5) Source(4, 18) + SourceIndex(0) name (A)
2 >Emitted(5, 13) Source(4, 19) + SourceIndex(0) name (A)
---
>>>})();
1 >
2 >^
3 >
4 > ^^^^
5 > ^^^^^^^^^^->
1 >
2 >}
3 >
4 > export class A { }
1 >Emitted(6, 1) Source(4, 18) + SourceIndex(0) name (A)
2 >Emitted(6, 2) Source(4, 19) + SourceIndex(0) name (A)
3 >Emitted(6, 2) Source(4, 1) + SourceIndex(0)
4 >Emitted(6, 6) Source(4, 19) + SourceIndex(0)
---
>>>exports.A = A;
1->
2 >^^^^^^^^^
3 > ^^^^
4 > ^
5 > ^^^^^^^^^^^^^^->
1->
2 >A
3 > { }
4 >
1->Emitted(7, 1) Source(4, 14) + SourceIndex(0)
2 >Emitted(7, 10) Source(4, 15) + SourceIndex(0)
3 >Emitted(7, 14) Source(4, 19) + SourceIndex(0)
4 >Emitted(7, 15) Source(4, 19) + SourceIndex(0)
---
>>>//# sourceMappingURL=a.js.map===================================================================
JsFile: b.js
mapUrl: b.js.map
sourceRoot:
sources: b.ts
===================================================================
-------------------------------------------------------------------
emittedFile:tests/cases/compiler/b.js
sourceFile:b.ts
-------------------------------------------------------------------
>>>var __extends = (this && this.__extends) || function (d, b) {
>>> for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
>>> function __() { this.constructor = d; }
>>> d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
>>>};
>>>var a_1 = require("./ref/a");
1 >
2 >^^^^^^^^^^^^^^^^^^
3 > ^^^^^^^^^
4 > ^
5 > ^
1 >
2 >import {A} from
3 > "./ref/a"
4 > ;
5 >
1 >Emitted(6, 1) Source(1, 1) + SourceIndex(0)
2 >Emitted(6, 19) Source(1, 17) + SourceIndex(0)
3 >Emitted(6, 28) Source(1, 26) + SourceIndex(0)
4 >Emitted(6, 29) Source(1, 27) + SourceIndex(0)
5 >Emitted(6, 30) Source(1, 27) + SourceIndex(0)
---
>>>var B = (function (_super) {
1 >
2 >^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
1 >Emitted(7, 1) Source(2, 1) + SourceIndex(0)
---
>>> __extends(B, _super);
1->^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^
1->export class B extends
2 > A
1->Emitted(8, 5) Source(2, 24) + SourceIndex(0) name (B)
2 >Emitted(8, 26) Source(2, 25) + SourceIndex(0) name (B)
---
>>> function B() {
1 >^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
1 >Emitted(9, 5) Source(2, 1) + SourceIndex(0) name (B)
---
>>> _super.apply(this, arguments);
1->^^^^^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1->export class B extends
2 > A
1->Emitted(10, 9) Source(2, 24) + SourceIndex(0) name (B.constructor)
2 >Emitted(10, 39) Source(2, 25) + SourceIndex(0) name (B.constructor)
---
>>> }
1 >^^^^
2 > ^
3 > ^^^^^^^^^->
1 > {
2 > }
1 >Emitted(11, 5) Source(2, 28) + SourceIndex(0) name (B.constructor)
2 >Emitted(11, 6) Source(2, 29) + SourceIndex(0) name (B.constructor)
---
>>> return B;
1->^^^^
2 > ^^^^^^^^
1->
2 > }
1->Emitted(12, 5) Source(2, 28) + SourceIndex(0) name (B)
2 >Emitted(12, 13) Source(2, 29) + SourceIndex(0) name (B)
---
>>>})(a_1.A);
1 >
2 >^
3 >
4 > ^^
5 > ^^^^^
6 > ^^
7 > ^^^^^->
1 >
2 >}
3 >
4 > export class B extends
5 > A
6 > { }
1 >Emitted(13, 1) Source(2, 28) + SourceIndex(0) name (B)
2 >Emitted(13, 2) Source(2, 29) + SourceIndex(0) name (B)
3 >Emitted(13, 2) Source(2, 1) + SourceIndex(0)
4 >Emitted(13, 4) Source(2, 24) + SourceIndex(0)
5 >Emitted(13, 9) Source(2, 25) + SourceIndex(0)
6 >Emitted(13, 11) Source(2, 29) + SourceIndex(0)
---
>>>exports.B = B;
1->
2 >^^^^^^^^^
3 > ^^^^
4 > ^
5 > ^^^^^^^^^^^^^^->
1->
2 >B
3 > extends A { }
4 >
1->Emitted(14, 1) Source(2, 14) + SourceIndex(0)
2 >Emitted(14, 10) Source(2, 15) + SourceIndex(0)
3 >Emitted(14, 14) Source(2, 29) + SourceIndex(0)
4 >Emitted(14, 15) Source(2, 29) + SourceIndex(0)
---
>>>//# sourceMappingURL=b.js.map===================================================================
JsFile: all.js
mapUrl: all.js.map
sourceRoot:
@@ -10,25 +10,10 @@ export class A { }
import {A} from "./ref/a";
export class B extends A { }
//// [a.js]
// This should be an error
export class A {
}
//# sourceMappingURL=a.js.map//// [b.js]
import { A } from "./ref/a";
export class B extends A {
}
//# sourceMappingURL=b.js.map//// [all.js]
//// [all.js]
// This should be an error
//# sourceMappingURL=all.js.map
//// [a.d.ts]
export declare class A {
}
//// [b.d.ts]
import { A } from "./ref/a";
export declare class B extends A {
}
//// [all.d.ts]
declare module "tests/cases/compiler/ref/a" {
export class A {
@@ -1,4 +1,2 @@
//// [a.js.map]
{"version":3,"file":"a.js","sourceRoot":"","sources":["a.ts"],"names":["A"],"mappings":"AACA,0BAA0B;AAE1B;AAAiBA,CAACA;AAAA"}//// [b.js.map]
{"version":3,"file":"b.js","sourceRoot":"","sources":["b.ts"],"names":["B"],"mappings":"OAAO,EAAC,CAAC,EAAC,MAAM,SAAS;AACzB,uBAAuB,CAAC;AAAGA,CAACA;AAAA"}//// [all.js.map]
//// [all.js.map]
{"version":3,"file":"all.js","sourceRoot":"","sources":["tests/cases/compiler/ref/a.ts","tests/cases/compiler/b.ts"],"names":[],"mappings":"AACA,0BAA0B"}
@@ -1,101 +1,4 @@
===================================================================
JsFile: a.js
mapUrl: a.js.map
sourceRoot:
sources: a.ts
===================================================================
-------------------------------------------------------------------
emittedFile:tests/cases/compiler/ref/a.js
sourceFile:a.ts
-------------------------------------------------------------------
>>>// This should be an error
1 >
2 >^^^^^^^^^^^^^^^^^^^^^^^^^^
1 >
>
2 >// This should be an error
1 >Emitted(1, 1) Source(2, 1) + SourceIndex(0)
2 >Emitted(1, 27) Source(2, 27) + SourceIndex(0)
---
>>>export class A {
1 >
2 >^^->
1 >
>
>
1 >Emitted(2, 1) Source(4, 1) + SourceIndex(0)
---
>>>}
1->
2 >^
3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1->export class A {
2 >}
1->Emitted(3, 1) Source(4, 18) + SourceIndex(0) name (A)
2 >Emitted(3, 2) Source(4, 19) + SourceIndex(0) name (A)
---
>>>//# sourceMappingURL=a.js.map1->
2 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1->
1->Emitted(4, 1) Source(4, 19) + SourceIndex(0)
---
===================================================================
JsFile: b.js
mapUrl: b.js.map
sourceRoot:
sources: b.ts
===================================================================
-------------------------------------------------------------------
emittedFile:tests/cases/compiler/b.js
sourceFile:b.ts
-------------------------------------------------------------------
>>>import { A } from "./ref/a";
1 >^^^^^^^
2 > ^^
3 > ^
4 > ^^
5 > ^^^^^^
6 > ^^^^^^^^^
1 >import
2 > {
3 > A
4 > }
5 > from
6 > "./ref/a"
1 >Emitted(1, 8) Source(1, 8) + SourceIndex(0)
2 >Emitted(1, 10) Source(1, 9) + SourceIndex(0)
3 >Emitted(1, 11) Source(1, 10) + SourceIndex(0)
4 >Emitted(1, 13) Source(1, 11) + SourceIndex(0)
5 >Emitted(1, 19) Source(1, 17) + SourceIndex(0)
6 >Emitted(1, 28) Source(1, 26) + SourceIndex(0)
---
>>>export class B extends A {
1 >
2 >^^^^^^^^^^^^^^^^^^^^^^^
3 > ^
1 >;
>
2 >export class B extends
3 > A
1 >Emitted(2, 1) Source(2, 1) + SourceIndex(0)
2 >Emitted(2, 24) Source(2, 24) + SourceIndex(0)
3 >Emitted(2, 25) Source(2, 25) + SourceIndex(0)
---
>>>}
1 >
2 >^
3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 > {
2 >}
1 >Emitted(3, 1) Source(2, 28) + SourceIndex(0) name (B)
2 >Emitted(3, 2) Source(2, 29) + SourceIndex(0) name (B)
---
>>>//# sourceMappingURL=b.js.map1->
2 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1->
1->Emitted(4, 1) Source(2, 29) + SourceIndex(0)
---
===================================================================
JsFile: all.js
mapUrl: all.js.map
sourceRoot:
@@ -8,48 +8,7 @@ export class A { }
import {A} from "./ref/a";
export class B extends A { }
//// [a.js]
System.register([], function(exports_1) {
var A;
return {
setters:[],
execute: function() {
A = (function () {
function A() {
}
return A;
})();
exports_1("A", A);
}
}
});
//# sourceMappingURL=a.js.map//// [b.js]
System.register(["./ref/a"], function(exports_1) {
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
var a_1;
var B;
return {
setters:[
function (a_1_1) {
a_1 = a_1_1;
}],
execute: function() {
B = (function (_super) {
__extends(B, _super);
function B() {
_super.apply(this, arguments);
}
return B;
})(a_1.A);
exports_1("B", B);
}
}
});
//# sourceMappingURL=b.js.map//// [all.js]
//// [all.js]
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
@@ -91,13 +50,6 @@ System.register("tests/cases/compiler/b", ["tests/cases/compiler/ref/a"], functi
});
//# sourceMappingURL=all.js.map
//// [a.d.ts]
export declare class A {
}
//// [b.d.ts]
import { A } from "./ref/a";
export declare class B extends A {
}
//// [all.d.ts]
declare module "tests/cases/compiler/ref/a" {
export class A {
@@ -1,4 +1,2 @@
//// [a.js.map]
{"version":3,"file":"a.js","sourceRoot":"","sources":["a.ts"],"names":["A","A.constructor"],"mappings":";;;;;YACA;gBAAAA;gBAAiBC,CAACA;gBAADD,QAACA;YAADA,CAACA,AAAlB,IAAkB;YAAlB,iBAAkB,CAAA"}//// [b.js.map]
{"version":3,"file":"b.js","sourceRoot":"","sources":["b.ts"],"names":["B","B.constructor"],"mappings":";;;;;;;;;;;;;;YACA;gBAAuBA,qBAACA;gBAAxBA;oBAAuBC,8BAACA;gBAAGA,CAACA;gBAADD,QAACA;YAADA,CAACA,AAA5B,EAAuB,KAAC,EAAI;YAA5B,iBAA4B,CAAA"}//// [all.js.map]
//// [all.js.map]
{"version":3,"file":"all.js","sourceRoot":"","sources":["tests/cases/compiler/ref/a.ts","tests/cases/compiler/b.ts"],"names":["A","A.constructor","B","B.constructor"],"mappings":";;;;;;;;;;YACA;gBAAAA;gBAAiBC,CAACA;gBAADD,QAACA;YAADA,CAACA,AAAlB,IAAkB;YAAlB,iBAAkB,CAAA;;;;;;;;;;;;;YCAlB;gBAAuBE,qBAACA;gBAAxBA;oBAAuBC,8BAACA;gBAAGA,CAACA;gBAADD,QAACA;YAADA,CAACA,AAA5B,EAAuB,KAAC,EAAI;YAA5B,iBAA4B,CAAA"}
@@ -1,183 +1,4 @@
===================================================================
JsFile: a.js
mapUrl: a.js.map
sourceRoot:
sources: a.ts
===================================================================
-------------------------------------------------------------------
emittedFile:tests/cases/compiler/ref/a.js
sourceFile:a.ts
-------------------------------------------------------------------
>>>System.register([], function(exports_1) {
>>> var A;
>>> return {
>>> setters:[],
>>> execute: function() {
>>> A = (function () {
1 >^^^^^^^^^^^^
2 > ^^^^^^^^^^^^^^^^^^^->
1 >
>
1 >Emitted(6, 13) Source(2, 1) + SourceIndex(0)
---
>>> function A() {
1->^^^^^^^^^^^^^^^^
2 > ^^->
1->
1->Emitted(7, 17) Source(2, 1) + SourceIndex(0) name (A)
---
>>> }
1->^^^^^^^^^^^^^^^^
2 > ^
3 > ^^^^^^^^^->
1->export class A {
2 > }
1->Emitted(8, 17) Source(2, 18) + SourceIndex(0) name (A.constructor)
2 >Emitted(8, 18) Source(2, 19) + SourceIndex(0) name (A.constructor)
---
>>> return A;
1->^^^^^^^^^^^^^^^^
2 > ^^^^^^^^
1->
2 > }
1->Emitted(9, 17) Source(2, 18) + SourceIndex(0) name (A)
2 >Emitted(9, 25) Source(2, 19) + SourceIndex(0) name (A)
---
>>> })();
1 >^^^^^^^^^^^^
2 > ^
3 >
4 > ^^^^
5 > ^^^^^^^^^^^^^^->
1 >
2 > }
3 >
4 > export class A { }
1 >Emitted(10, 13) Source(2, 18) + SourceIndex(0) name (A)
2 >Emitted(10, 14) Source(2, 19) + SourceIndex(0) name (A)
3 >Emitted(10, 14) Source(2, 1) + SourceIndex(0)
4 >Emitted(10, 18) Source(2, 19) + SourceIndex(0)
---
>>> exports_1("A", A);
1->^^^^^^^^^^^^
2 > ^^^^^^^^^^^^^^^^^
3 > ^
1->
2 > export class A { }
3 >
1->Emitted(11, 13) Source(2, 1) + SourceIndex(0)
2 >Emitted(11, 30) Source(2, 19) + SourceIndex(0)
3 >Emitted(11, 31) Source(2, 19) + SourceIndex(0)
---
>>> }
>>> }
>>>});
>>>//# sourceMappingURL=a.js.map===================================================================
JsFile: b.js
mapUrl: b.js.map
sourceRoot:
sources: b.ts
===================================================================
-------------------------------------------------------------------
emittedFile:tests/cases/compiler/b.js
sourceFile:b.ts
-------------------------------------------------------------------
>>>System.register(["./ref/a"], function(exports_1) {
>>> var __extends = (this && this.__extends) || function (d, b) {
>>> for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
>>> function __() { this.constructor = d; }
>>> d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
>>> };
>>> var a_1;
>>> var B;
>>> return {
>>> setters:[
>>> function (a_1_1) {
>>> a_1 = a_1_1;
>>> }],
>>> execute: function() {
>>> B = (function (_super) {
1 >^^^^^^^^^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >import {A} from "./ref/a";
>
1 >Emitted(15, 13) Source(2, 1) + SourceIndex(0)
---
>>> __extends(B, _super);
1->^^^^^^^^^^^^^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^
1->export class B extends
2 > A
1->Emitted(16, 17) Source(2, 24) + SourceIndex(0) name (B)
2 >Emitted(16, 38) Source(2, 25) + SourceIndex(0) name (B)
---
>>> function B() {
1 >^^^^^^^^^^^^^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
1 >Emitted(17, 17) Source(2, 1) + SourceIndex(0) name (B)
---
>>> _super.apply(this, arguments);
1->^^^^^^^^^^^^^^^^^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1->export class B extends
2 > A
1->Emitted(18, 21) Source(2, 24) + SourceIndex(0) name (B.constructor)
2 >Emitted(18, 51) Source(2, 25) + SourceIndex(0) name (B.constructor)
---
>>> }
1 >^^^^^^^^^^^^^^^^
2 > ^
3 > ^^^^^^^^^->
1 > {
2 > }
1 >Emitted(19, 17) Source(2, 28) + SourceIndex(0) name (B.constructor)
2 >Emitted(19, 18) Source(2, 29) + SourceIndex(0) name (B.constructor)
---
>>> return B;
1->^^^^^^^^^^^^^^^^
2 > ^^^^^^^^
1->
2 > }
1->Emitted(20, 17) Source(2, 28) + SourceIndex(0) name (B)
2 >Emitted(20, 25) Source(2, 29) + SourceIndex(0) name (B)
---
>>> })(a_1.A);
1 >^^^^^^^^^^^^
2 > ^
3 >
4 > ^^
5 > ^^^^^
6 > ^^
7 > ^^^^^^^^^->
1 >
2 > }
3 >
4 > export class B extends
5 > A
6 > { }
1 >Emitted(21, 13) Source(2, 28) + SourceIndex(0) name (B)
2 >Emitted(21, 14) Source(2, 29) + SourceIndex(0) name (B)
3 >Emitted(21, 14) Source(2, 1) + SourceIndex(0)
4 >Emitted(21, 16) Source(2, 24) + SourceIndex(0)
5 >Emitted(21, 21) Source(2, 25) + SourceIndex(0)
6 >Emitted(21, 23) Source(2, 29) + SourceIndex(0)
---
>>> exports_1("B", B);
1->^^^^^^^^^^^^
2 > ^^^^^^^^^^^^^^^^^
3 > ^
1->
2 > export class B extends A { }
3 >
1->Emitted(22, 13) Source(2, 1) + SourceIndex(0)
2 >Emitted(22, 30) Source(2, 29) + SourceIndex(0)
3 >Emitted(22, 31) Source(2, 29) + SourceIndex(0)
---
>>> }
>>> }
>>>});
>>>//# sourceMappingURL=b.js.map===================================================================
JsFile: all.js
mapUrl: all.js.map
sourceRoot:
@@ -10,48 +10,7 @@ export class A { }
import {A} from "./ref/a";
export class B extends A { }
//// [a.js]
// This should error
(function (factory) {
if (typeof module === 'object' && typeof module.exports === 'object') {
var v = factory(require, exports); if (v !== undefined) module.exports = v;
}
else if (typeof define === 'function' && define.amd) {
define(["require", "exports"], factory);
}
})(function (require, exports) {
var A = (function () {
function A() {
}
return A;
})();
exports.A = A;
});
//# sourceMappingURL=a.js.map//// [b.js]
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
(function (factory) {
if (typeof module === 'object' && typeof module.exports === 'object') {
var v = factory(require, exports); if (v !== undefined) module.exports = v;
}
else if (typeof define === 'function' && define.amd) {
define(["require", "exports", "./ref/a"], factory);
}
})(function (require, exports) {
var a_1 = require("./ref/a");
var B = (function (_super) {
__extends(B, _super);
function B() {
_super.apply(this, arguments);
}
return B;
})(a_1.A);
exports.B = B;
});
//# sourceMappingURL=b.js.map//// [all.js]
//// [all.js]
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
@@ -60,13 +19,6 @@ var __extends = (this && this.__extends) || function (d, b) {
// This should error
//# sourceMappingURL=all.js.map
//// [a.d.ts]
export declare class A {
}
//// [b.d.ts]
import { A } from "./ref/a";
export declare class B extends A {
}
//// [all.d.ts]
declare module "tests/cases/compiler/ref/a" {
export class A {
@@ -1,4 +1,2 @@
//// [a.js.map]
{"version":3,"file":"a.js","sourceRoot":"","sources":["a.ts"],"names":["A","A.constructor"],"mappings":"AACA,oBAAoB;;;;;;;;;IAEpB;QAAAA;QAAiBC,CAACA;QAADD,QAACA;IAADA,CAACA,AAAlB,IAAkB;IAAL,SAAC,IAAI,CAAA"}//// [b.js.map]
{"version":3,"file":"b.js","sourceRoot":"","sources":["b.ts"],"names":["B","B.constructor"],"mappings":";;;;;;;;;;;;;IAAA,kBAAgB,SAAS,CAAC,CAAA;IAC1B;QAAuBA,qBAACA;QAAxBA;YAAuBC,8BAACA;QAAGA,CAACA;QAADD,QAACA;IAADA,CAACA,AAA5B,EAAuB,KAAC,EAAI;IAAf,SAAC,IAAc,CAAA"}//// [all.js.map]
//// [all.js.map]
{"version":3,"file":"all.js","sourceRoot":"","sources":["tests/cases/compiler/ref/a.ts","tests/cases/compiler/b.ts"],"names":[],"mappings":";;;;;AACA,oBAAoB"}
@@ -1,215 +1,4 @@
===================================================================
JsFile: a.js
mapUrl: a.js.map
sourceRoot:
sources: a.ts
===================================================================
-------------------------------------------------------------------
emittedFile:tests/cases/compiler/ref/a.js
sourceFile:a.ts
-------------------------------------------------------------------
>>>// This should error
1 >
2 >^^^^^^^^^^^^^^^^^^^^
3 > ^^->
1 >
>
2 >// This should error
1 >Emitted(1, 1) Source(2, 1) + SourceIndex(0)
2 >Emitted(1, 21) Source(2, 21) + SourceIndex(0)
---
>>>(function (factory) {
>>> if (typeof module === 'object' && typeof module.exports === 'object') {
>>> var v = factory(require, exports); if (v !== undefined) module.exports = v;
>>> }
>>> else if (typeof define === 'function' && define.amd) {
>>> define(["require", "exports"], factory);
>>> }
>>>})(function (require, exports) {
>>> var A = (function () {
1->^^^^
2 > ^^^^^^^^^^^^^^^^^^^->
1->
>
>
1->Emitted(10, 5) Source(4, 1) + SourceIndex(0)
---
>>> function A() {
1->^^^^^^^^
2 > ^^->
1->
1->Emitted(11, 9) Source(4, 1) + SourceIndex(0) name (A)
---
>>> }
1->^^^^^^^^
2 > ^
3 > ^^^^^^^^^->
1->export class A {
2 > }
1->Emitted(12, 9) Source(4, 18) + SourceIndex(0) name (A.constructor)
2 >Emitted(12, 10) Source(4, 19) + SourceIndex(0) name (A.constructor)
---
>>> return A;
1->^^^^^^^^
2 > ^^^^^^^^
1->
2 > }
1->Emitted(13, 9) Source(4, 18) + SourceIndex(0) name (A)
2 >Emitted(13, 17) Source(4, 19) + SourceIndex(0) name (A)
---
>>> })();
1 >^^^^
2 > ^
3 >
4 > ^^^^
5 > ^^^^^^^^^^->
1 >
2 > }
3 >
4 > export class A { }
1 >Emitted(14, 5) Source(4, 18) + SourceIndex(0) name (A)
2 >Emitted(14, 6) Source(4, 19) + SourceIndex(0) name (A)
3 >Emitted(14, 6) Source(4, 1) + SourceIndex(0)
4 >Emitted(14, 10) Source(4, 19) + SourceIndex(0)
---
>>> exports.A = A;
1->^^^^
2 > ^^^^^^^^^
3 > ^^^^
4 > ^
1->
2 > A
3 > { }
4 >
1->Emitted(15, 5) Source(4, 14) + SourceIndex(0)
2 >Emitted(15, 14) Source(4, 15) + SourceIndex(0)
3 >Emitted(15, 18) Source(4, 19) + SourceIndex(0)
4 >Emitted(15, 19) Source(4, 19) + SourceIndex(0)
---
>>>});
>>>//# sourceMappingURL=a.js.map===================================================================
JsFile: b.js
mapUrl: b.js.map
sourceRoot:
sources: b.ts
===================================================================
-------------------------------------------------------------------
emittedFile:tests/cases/compiler/b.js
sourceFile:b.ts
-------------------------------------------------------------------
>>>var __extends = (this && this.__extends) || function (d, b) {
>>> for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
>>> function __() { this.constructor = d; }
>>> d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
>>>};
>>>(function (factory) {
>>> if (typeof module === 'object' && typeof module.exports === 'object') {
>>> var v = factory(require, exports); if (v !== undefined) module.exports = v;
>>> }
>>> else if (typeof define === 'function' && define.amd) {
>>> define(["require", "exports", "./ref/a"], factory);
>>> }
>>>})(function (require, exports) {
>>> var a_1 = require("./ref/a");
1 >^^^^
2 > ^^^^^^^^^^^^^^^^^^
3 > ^^^^^^^^^
4 > ^
5 > ^
1 >
2 > import {A} from
3 > "./ref/a"
4 > ;
5 >
1 >Emitted(14, 5) Source(1, 1) + SourceIndex(0)
2 >Emitted(14, 23) Source(1, 17) + SourceIndex(0)
3 >Emitted(14, 32) Source(1, 26) + SourceIndex(0)
4 >Emitted(14, 33) Source(1, 27) + SourceIndex(0)
5 >Emitted(14, 34) Source(1, 27) + SourceIndex(0)
---
>>> var B = (function (_super) {
1 >^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
1 >Emitted(15, 5) Source(2, 1) + SourceIndex(0)
---
>>> __extends(B, _super);
1->^^^^^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^
1->export class B extends
2 > A
1->Emitted(16, 9) Source(2, 24) + SourceIndex(0) name (B)
2 >Emitted(16, 30) Source(2, 25) + SourceIndex(0) name (B)
---
>>> function B() {
1 >^^^^^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
1 >Emitted(17, 9) Source(2, 1) + SourceIndex(0) name (B)
---
>>> _super.apply(this, arguments);
1->^^^^^^^^^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1->export class B extends
2 > A
1->Emitted(18, 13) Source(2, 24) + SourceIndex(0) name (B.constructor)
2 >Emitted(18, 43) Source(2, 25) + SourceIndex(0) name (B.constructor)
---
>>> }
1 >^^^^^^^^
2 > ^
3 > ^^^^^^^^^->
1 > {
2 > }
1 >Emitted(19, 9) Source(2, 28) + SourceIndex(0) name (B.constructor)
2 >Emitted(19, 10) Source(2, 29) + SourceIndex(0) name (B.constructor)
---
>>> return B;
1->^^^^^^^^
2 > ^^^^^^^^
1->
2 > }
1->Emitted(20, 9) Source(2, 28) + SourceIndex(0) name (B)
2 >Emitted(20, 17) Source(2, 29) + SourceIndex(0) name (B)
---
>>> })(a_1.A);
1 >^^^^
2 > ^
3 >
4 > ^^
5 > ^^^^^
6 > ^^
7 > ^^^^^->
1 >
2 > }
3 >
4 > export class B extends
5 > A
6 > { }
1 >Emitted(21, 5) Source(2, 28) + SourceIndex(0) name (B)
2 >Emitted(21, 6) Source(2, 29) + SourceIndex(0) name (B)
3 >Emitted(21, 6) Source(2, 1) + SourceIndex(0)
4 >Emitted(21, 8) Source(2, 24) + SourceIndex(0)
5 >Emitted(21, 13) Source(2, 25) + SourceIndex(0)
6 >Emitted(21, 15) Source(2, 29) + SourceIndex(0)
---
>>> exports.B = B;
1->^^^^
2 > ^^^^^^^^^
3 > ^^^^
4 > ^
1->
2 > B
3 > extends A { }
4 >
1->Emitted(22, 5) Source(2, 14) + SourceIndex(0)
2 >Emitted(22, 14) Source(2, 15) + SourceIndex(0)
3 >Emitted(22, 18) Source(2, 29) + SourceIndex(0)
4 >Emitted(22, 19) Source(2, 29) + SourceIndex(0)
---
>>>});
>>>//# sourceMappingURL=b.js.map===================================================================
JsFile: all.js
mapUrl: all.js.map
sourceRoot:
@@ -30,33 +30,7 @@ import {A} from "./ref/a";
export class B extends A { }
//// [a.js]
define(["require", "exports"], function (require, exports) {
/// <reference path="./b.ts" />
var A = (function () {
function A() {
}
return A;
})();
exports.A = A;
});
//# sourceMappingURL=a.js.map//// [b.js]
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
define(["require", "exports", "./ref/a"], function (require, exports, a_1) {
var B = (function (_super) {
__extends(B, _super);
function B() {
_super.apply(this, arguments);
}
return B;
})(a_1.A);
exports.B = B;
});
//# sourceMappingURL=b.js.map//// [all.js]
//// [all.js]
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
@@ -89,15 +63,6 @@ define("tests/cases/compiler/b", ["require", "exports", "tests/cases/compiler/re
});
//# sourceMappingURL=all.js.map
//// [a.d.ts]
/// <reference path="../../../../all.d.ts" />
export declare class A {
member: typeof GlobalFoo;
}
//// [b.d.ts]
import { A } from "./ref/a";
export declare class B extends A {
}
//// [all.d.ts]
/// <reference path="tests/cases/compiler/ref/c.d.ts" />
declare class Foo {
@@ -1,4 +1,2 @@
//// [a.js.map]
{"version":3,"file":"a.js","sourceRoot":"","sources":["a.ts"],"names":["A","A.constructor"],"mappings":";IACA,+BAA+B;IAC/B;QAAAA;QAEAC,CAACA;QAADD,QAACA;IAADA,CAACA,AAFD,IAEC;IAFY,SAAC,IAEb,CAAA"}//// [b.js.map]
{"version":3,"file":"b.js","sourceRoot":"","sources":["b.ts"],"names":["B","B.constructor"],"mappings":";;;;;;IACA;QAAuBA,qBAACA;QAAxBA;YAAuBC,8BAACA;QAAGA,CAACA;QAADD,QAACA;IAADA,CAACA,AAA5B,EAAuB,KAAC,EAAI;IAAf,SAAC,IAAc,CAAA"}//// [all.js.map]
//// [all.js.map]
{"version":3,"file":"all.js","sourceRoot":"","sources":["tests/cases/compiler/ref/b.ts","tests/cases/compiler/ref/a.ts","tests/cases/compiler/b.ts"],"names":["Foo","Foo.constructor","A","A.constructor","B","B.constructor"],"mappings":";;;;;AAAA,iCAAiC;AACjC;IAAAA;IAEAC,CAACA;IAADD,UAACA;AAADA,CAACA,AAFD,IAEC;;ICFD,+BAA+B;IAC/B;QAAAE;QAEAC,CAACA;QAADD,QAACA;IAADA,CAACA,AAFD,IAEC;IAFY,SAAC,IAEb,CAAA;;;ICHD;QAAuBE,qBAACA;QAAxBA;YAAuBC,8BAACA;QAAGA,CAACA;QAADD,QAACA;IAADA,CAACA,AAA5B,EAAuB,KAAC,EAAI;IAAf,SAAC,IAAc,CAAA"}
@@ -1,188 +1,4 @@
===================================================================
JsFile: a.js
mapUrl: a.js.map
sourceRoot:
sources: a.ts
===================================================================
-------------------------------------------------------------------
emittedFile:tests/cases/compiler/ref/a.js
sourceFile:a.ts
-------------------------------------------------------------------
>>>define(["require", "exports"], function (require, exports) {
>>> /// <reference path="./b.ts" />
1 >^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1 >
>
2 > /// <reference path="./b.ts" />
1 >Emitted(2, 5) Source(2, 1) + SourceIndex(0)
2 >Emitted(2, 36) Source(2, 32) + SourceIndex(0)
---
>>> var A = (function () {
1 >^^^^
2 > ^^^^^^^^^^^^^^^^^^^->
1 >
>
1 >Emitted(3, 5) Source(3, 1) + SourceIndex(0)
---
>>> function A() {
1->^^^^^^^^
2 > ^^->
1->
1->Emitted(4, 9) Source(3, 1) + SourceIndex(0) name (A)
---
>>> }
1->^^^^^^^^
2 > ^
3 > ^^^^^^^^^->
1->export class A {
> member: typeof GlobalFoo;
>
2 > }
1->Emitted(5, 9) Source(5, 1) + SourceIndex(0) name (A.constructor)
2 >Emitted(5, 10) Source(5, 2) + SourceIndex(0) name (A.constructor)
---
>>> return A;
1->^^^^^^^^
2 > ^^^^^^^^
1->
2 > }
1->Emitted(6, 9) Source(5, 1) + SourceIndex(0) name (A)
2 >Emitted(6, 17) Source(5, 2) + SourceIndex(0) name (A)
---
>>> })();
1 >^^^^
2 > ^
3 >
4 > ^^^^
5 > ^^^^^^^^^^->
1 >
2 > }
3 >
4 > export class A {
> member: typeof GlobalFoo;
> }
1 >Emitted(7, 5) Source(5, 1) + SourceIndex(0) name (A)
2 >Emitted(7, 6) Source(5, 2) + SourceIndex(0) name (A)
3 >Emitted(7, 6) Source(3, 1) + SourceIndex(0)
4 >Emitted(7, 10) Source(5, 2) + SourceIndex(0)
---
>>> exports.A = A;
1->^^^^
2 > ^^^^^^^^^
3 > ^^^^
4 > ^
1->
2 > A
3 > {
> member: typeof GlobalFoo;
> }
4 >
1->Emitted(8, 5) Source(3, 14) + SourceIndex(0)
2 >Emitted(8, 14) Source(3, 15) + SourceIndex(0)
3 >Emitted(8, 18) Source(5, 2) + SourceIndex(0)
4 >Emitted(8, 19) Source(5, 2) + SourceIndex(0)
---
>>>});
>>>//# sourceMappingURL=a.js.map===================================================================
JsFile: b.js
mapUrl: b.js.map
sourceRoot:
sources: b.ts
===================================================================
-------------------------------------------------------------------
emittedFile:tests/cases/compiler/b.js
sourceFile:b.ts
-------------------------------------------------------------------
>>>var __extends = (this && this.__extends) || function (d, b) {
>>> for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
>>> function __() { this.constructor = d; }
>>> d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
>>>};
>>>define(["require", "exports", "./ref/a"], function (require, exports, a_1) {
>>> var B = (function (_super) {
1 >^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >import {A} from "./ref/a";
>
1 >Emitted(7, 5) Source(2, 1) + SourceIndex(0)
---
>>> __extends(B, _super);
1->^^^^^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^
1->export class B extends
2 > A
1->Emitted(8, 9) Source(2, 24) + SourceIndex(0) name (B)
2 >Emitted(8, 30) Source(2, 25) + SourceIndex(0) name (B)
---
>>> function B() {
1 >^^^^^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
1 >Emitted(9, 9) Source(2, 1) + SourceIndex(0) name (B)
---
>>> _super.apply(this, arguments);
1->^^^^^^^^^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1->export class B extends
2 > A
1->Emitted(10, 13) Source(2, 24) + SourceIndex(0) name (B.constructor)
2 >Emitted(10, 43) Source(2, 25) + SourceIndex(0) name (B.constructor)
---
>>> }
1 >^^^^^^^^
2 > ^
3 > ^^^^^^^^^->
1 > {
2 > }
1 >Emitted(11, 9) Source(2, 28) + SourceIndex(0) name (B.constructor)
2 >Emitted(11, 10) Source(2, 29) + SourceIndex(0) name (B.constructor)
---
>>> return B;
1->^^^^^^^^
2 > ^^^^^^^^
1->
2 > }
1->Emitted(12, 9) Source(2, 28) + SourceIndex(0) name (B)
2 >Emitted(12, 17) Source(2, 29) + SourceIndex(0) name (B)
---
>>> })(a_1.A);
1 >^^^^
2 > ^
3 >
4 > ^^
5 > ^^^^^
6 > ^^
7 > ^^^^^->
1 >
2 > }
3 >
4 > export class B extends
5 > A
6 > { }
1 >Emitted(13, 5) Source(2, 28) + SourceIndex(0) name (B)
2 >Emitted(13, 6) Source(2, 29) + SourceIndex(0) name (B)
3 >Emitted(13, 6) Source(2, 1) + SourceIndex(0)
4 >Emitted(13, 8) Source(2, 24) + SourceIndex(0)
5 >Emitted(13, 13) Source(2, 25) + SourceIndex(0)
6 >Emitted(13, 15) Source(2, 29) + SourceIndex(0)
---
>>> exports.B = B;
1->^^^^
2 > ^^^^^^^^^
3 > ^^^^
4 > ^
1->
2 > B
3 > extends A { }
4 >
1->Emitted(14, 5) Source(2, 14) + SourceIndex(0)
2 >Emitted(14, 14) Source(2, 15) + SourceIndex(0)
3 >Emitted(14, 18) Source(2, 29) + SourceIndex(0)
4 >Emitted(14, 19) Source(2, 29) + SourceIndex(0)
---
>>>});
>>>//# sourceMappingURL=b.js.map===================================================================
JsFile: all.js
mapUrl: all.js.map
sourceRoot:
@@ -17,9 +17,6 @@
"test.ts"
],
"emittedFiles": [
"ref/m2.js.map",
"ref/m2.js",
"ref/m2.d.ts",
"bin/test.js.map",
"bin/test.js",
"bin/test.d.ts"
@@ -1,176 +1,4 @@
===================================================================
JsFile: m2.js
mapUrl: /tests/cases/projects/outputdir_mixed_subfolder/mapFiles/ref/m2.js.map
sourceRoot:
sources: ../../ref/m2.ts
===================================================================
-------------------------------------------------------------------
emittedFile:ref/m2.js
sourceFile:../../ref/m2.ts
-------------------------------------------------------------------
>>>define(["require", "exports"], function (require, exports) {
>>> exports.m2_a1 = 10;
1 >^^^^
2 > ^^^^^^^^^^^^^
3 > ^^^
4 > ^^
5 > ^
6 > ^^^^^^^^->
1 >export var
2 > m2_a1
3 > =
4 > 10
5 > ;
1 >Emitted(2, 5) Source(1, 12) + SourceIndex(0)
2 >Emitted(2, 18) Source(1, 17) + SourceIndex(0)
3 >Emitted(2, 21) Source(1, 20) + SourceIndex(0)
4 >Emitted(2, 23) Source(1, 22) + SourceIndex(0)
5 >Emitted(2, 24) Source(1, 23) + SourceIndex(0)
---
>>> var m2_c1 = (function () {
1->^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^->
1->
>
1->Emitted(3, 5) Source(2, 1) + SourceIndex(0)
---
>>> function m2_c1() {
1->^^^^^^^^
2 > ^^->
1->
1->Emitted(4, 9) Source(2, 1) + SourceIndex(0) name (m2_c1)
---
>>> }
1->^^^^^^^^
2 > ^
3 > ^^^^^^^^^^^^^->
1->export class m2_c1 {
> public m2_c1_p1: number;
>
2 > }
1->Emitted(5, 9) Source(4, 1) + SourceIndex(0) name (m2_c1.constructor)
2 >Emitted(5, 10) Source(4, 2) + SourceIndex(0) name (m2_c1.constructor)
---
>>> return m2_c1;
1->^^^^^^^^
2 > ^^^^^^^^^^^^
1->
2 > }
1->Emitted(6, 9) Source(4, 1) + SourceIndex(0) name (m2_c1)
2 >Emitted(6, 21) Source(4, 2) + SourceIndex(0) name (m2_c1)
---
>>> })();
1 >^^^^
2 > ^
3 >
4 > ^^^^
5 > ^^^^^^^^^^^^^^^^^^->
1 >
2 > }
3 >
4 > export class m2_c1 {
> public m2_c1_p1: number;
> }
1 >Emitted(7, 5) Source(4, 1) + SourceIndex(0) name (m2_c1)
2 >Emitted(7, 6) Source(4, 2) + SourceIndex(0) name (m2_c1)
3 >Emitted(7, 6) Source(2, 1) + SourceIndex(0)
4 >Emitted(7, 10) Source(4, 2) + SourceIndex(0)
---
>>> exports.m2_c1 = m2_c1;
1->^^^^
2 > ^^^^^^^^^^^^^
3 > ^^^^^^^^
4 > ^
5 > ^^^^^^^^^^^^^^->
1->
2 > m2_c1
3 > {
> public m2_c1_p1: number;
> }
4 >
1->Emitted(8, 5) Source(2, 14) + SourceIndex(0)
2 >Emitted(8, 18) Source(2, 19) + SourceIndex(0)
3 >Emitted(8, 26) Source(4, 2) + SourceIndex(0)
4 >Emitted(8, 27) Source(4, 2) + SourceIndex(0)
---
>>> exports.m2_instance1 = new m2_c1();
1->^^^^
2 > ^^^^^^^^^^^^^^^^^^^^
3 > ^^^
4 > ^^^^
5 > ^^^^^
6 > ^^
7 > ^
1->
>
>export var
2 > m2_instance1
3 > =
4 > new
5 > m2_c1
6 > ()
7 > ;
1->Emitted(9, 5) Source(6, 12) + SourceIndex(0)
2 >Emitted(9, 25) Source(6, 24) + SourceIndex(0)
3 >Emitted(9, 28) Source(6, 27) + SourceIndex(0)
4 >Emitted(9, 32) Source(6, 31) + SourceIndex(0)
5 >Emitted(9, 37) Source(6, 36) + SourceIndex(0)
6 >Emitted(9, 39) Source(6, 38) + SourceIndex(0)
7 >Emitted(9, 40) Source(6, 39) + SourceIndex(0)
---
>>> function m2_f1() {
1 >^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
1 >Emitted(10, 5) Source(7, 1) + SourceIndex(0)
---
>>> return exports.m2_instance1;
1->^^^^^^^^
2 > ^^^^^^
3 > ^
4 > ^^^^^^^^^^^^^^^^^^^^
5 > ^
1->export function m2_f1() {
>
2 > return
3 >
4 > m2_instance1
5 > ;
1->Emitted(11, 9) Source(8, 5) + SourceIndex(0) name (m2_f1)
2 >Emitted(11, 15) Source(8, 11) + SourceIndex(0) name (m2_f1)
3 >Emitted(11, 16) Source(8, 12) + SourceIndex(0) name (m2_f1)
4 >Emitted(11, 36) Source(8, 24) + SourceIndex(0) name (m2_f1)
5 >Emitted(11, 37) Source(8, 25) + SourceIndex(0) name (m2_f1)
---
>>> }
1 >^^^^
2 > ^
3 > ^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
2 > }
1 >Emitted(12, 5) Source(9, 1) + SourceIndex(0) name (m2_f1)
2 >Emitted(12, 6) Source(9, 2) + SourceIndex(0) name (m2_f1)
---
>>> exports.m2_f1 = m2_f1;
1->^^^^
2 > ^^^^^^^^^^^^^
3 > ^^^^^^^^
4 > ^
1->
2 > m2_f1
3 > () {
> return m2_instance1;
> }
4 >
1->Emitted(13, 5) Source(7, 17) + SourceIndex(0)
2 >Emitted(13, 18) Source(7, 22) + SourceIndex(0)
3 >Emitted(13, 26) Source(9, 2) + SourceIndex(0)
4 >Emitted(13, 27) Source(9, 2) + SourceIndex(0)
---
>>>});
>>>//# sourceMappingURL=/tests/cases/projects/outputdir_mixed_subfolder/mapFiles/ref/m2.js.map===================================================================
JsFile: test.js
mapUrl: /tests/cases/projects/outputdir_mixed_subfolder/mapFiles/test.js.map
sourceRoot:
@@ -1,6 +0,0 @@
export declare var m2_a1: number;
export declare class m2_c1 {
m2_c1_p1: number;
}
export declare var m2_instance1: m2_c1;
export declare function m2_f1(): m2_c1;
@@ -1,15 +0,0 @@
define(["require", "exports"], function (require, exports) {
exports.m2_a1 = 10;
var m2_c1 = (function () {
function m2_c1() {
}
return m2_c1;
})();
exports.m2_c1 = m2_c1;
exports.m2_instance1 = new m2_c1();
function m2_f1() {
return exports.m2_instance1;
}
exports.m2_f1 = m2_f1;
});
//# sourceMappingURL=/tests/cases/projects/outputdir_mixed_subfolder/mapFiles/ref/m2.js.map
@@ -1 +0,0 @@
{"version":3,"file":"m2.js","sourceRoot":"","sources":["../../ref/m2.ts"],"names":["m2_c1","m2_c1.constructor","m2_f1"],"mappings":";IAAW,aAAK,GAAG,EAAE,CAAC;IACtB;QAAAA;QAEAC,CAACA;QAADD,YAACA;IAADA,CAACA,AAFD,IAEC;IAFY,aAAK,QAEjB,CAAA;IAEU,oBAAY,GAAG,IAAI,KAAK,EAAE,CAAC;IACtC;QACIE,MAAMA,CAACA,oBAAYA,CAACA;IACxBA,CAACA;IAFe,aAAK,QAEpB,CAAA"}
@@ -17,9 +17,6 @@
"test.ts"
],
"emittedFiles": [
"ref/m2.js.map",
"ref/m2.js",
"ref/m2.d.ts",
"bin/test.js.map",
"bin/test.js",
"bin/test.d.ts"
@@ -1,175 +1,4 @@
===================================================================
JsFile: m2.js
mapUrl: /tests/cases/projects/outputdir_mixed_subfolder/mapFiles/ref/m2.js.map
sourceRoot:
sources: ../../ref/m2.ts
===================================================================
-------------------------------------------------------------------
emittedFile:ref/m2.js
sourceFile:../../ref/m2.ts
-------------------------------------------------------------------
>>>exports.m2_a1 = 10;
1 >
2 >^^^^^^^^^^^^^
3 > ^^^
4 > ^^
5 > ^
6 > ^^^^^^^^->
1 >export var
2 >m2_a1
3 > =
4 > 10
5 > ;
1 >Emitted(1, 1) Source(1, 12) + SourceIndex(0)
2 >Emitted(1, 14) Source(1, 17) + SourceIndex(0)
3 >Emitted(1, 17) Source(1, 20) + SourceIndex(0)
4 >Emitted(1, 19) Source(1, 22) + SourceIndex(0)
5 >Emitted(1, 20) Source(1, 23) + SourceIndex(0)
---
>>>var m2_c1 = (function () {
1->
2 >^^^^^^^^^^^^^^^^^^^^^^^->
1->
>
1->Emitted(2, 1) Source(2, 1) + SourceIndex(0)
---
>>> function m2_c1() {
1->^^^^
2 > ^^->
1->
1->Emitted(3, 5) Source(2, 1) + SourceIndex(0) name (m2_c1)
---
>>> }
1->^^^^
2 > ^
3 > ^^^^^^^^^^^^^->
1->export class m2_c1 {
> public m2_c1_p1: number;
>
2 > }
1->Emitted(4, 5) Source(4, 1) + SourceIndex(0) name (m2_c1.constructor)
2 >Emitted(4, 6) Source(4, 2) + SourceIndex(0) name (m2_c1.constructor)
---
>>> return m2_c1;
1->^^^^
2 > ^^^^^^^^^^^^
1->
2 > }
1->Emitted(5, 5) Source(4, 1) + SourceIndex(0) name (m2_c1)
2 >Emitted(5, 17) Source(4, 2) + SourceIndex(0) name (m2_c1)
---
>>>})();
1 >
2 >^
3 >
4 > ^^^^
5 > ^^^^^^^^^^^^^^^^^^->
1 >
2 >}
3 >
4 > export class m2_c1 {
> public m2_c1_p1: number;
> }
1 >Emitted(6, 1) Source(4, 1) + SourceIndex(0) name (m2_c1)
2 >Emitted(6, 2) Source(4, 2) + SourceIndex(0) name (m2_c1)
3 >Emitted(6, 2) Source(2, 1) + SourceIndex(0)
4 >Emitted(6, 6) Source(4, 2) + SourceIndex(0)
---
>>>exports.m2_c1 = m2_c1;
1->
2 >^^^^^^^^^^^^^
3 > ^^^^^^^^
4 > ^
5 > ^^^^^^^^^^^^^^->
1->
2 >m2_c1
3 > {
> public m2_c1_p1: number;
> }
4 >
1->Emitted(7, 1) Source(2, 14) + SourceIndex(0)
2 >Emitted(7, 14) Source(2, 19) + SourceIndex(0)
3 >Emitted(7, 22) Source(4, 2) + SourceIndex(0)
4 >Emitted(7, 23) Source(4, 2) + SourceIndex(0)
---
>>>exports.m2_instance1 = new m2_c1();
1->
2 >^^^^^^^^^^^^^^^^^^^^
3 > ^^^
4 > ^^^^
5 > ^^^^^
6 > ^^
7 > ^
1->
>
>export var
2 >m2_instance1
3 > =
4 > new
5 > m2_c1
6 > ()
7 > ;
1->Emitted(8, 1) Source(6, 12) + SourceIndex(0)
2 >Emitted(8, 21) Source(6, 24) + SourceIndex(0)
3 >Emitted(8, 24) Source(6, 27) + SourceIndex(0)
4 >Emitted(8, 28) Source(6, 31) + SourceIndex(0)
5 >Emitted(8, 33) Source(6, 36) + SourceIndex(0)
6 >Emitted(8, 35) Source(6, 38) + SourceIndex(0)
7 >Emitted(8, 36) Source(6, 39) + SourceIndex(0)
---
>>>function m2_f1() {
1 >
2 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
1 >Emitted(9, 1) Source(7, 1) + SourceIndex(0)
---
>>> return exports.m2_instance1;
1->^^^^
2 > ^^^^^^
3 > ^
4 > ^^^^^^^^^^^^^^^^^^^^
5 > ^
1->export function m2_f1() {
>
2 > return
3 >
4 > m2_instance1
5 > ;
1->Emitted(10, 5) Source(8, 5) + SourceIndex(0) name (m2_f1)
2 >Emitted(10, 11) Source(8, 11) + SourceIndex(0) name (m2_f1)
3 >Emitted(10, 12) Source(8, 12) + SourceIndex(0) name (m2_f1)
4 >Emitted(10, 32) Source(8, 24) + SourceIndex(0) name (m2_f1)
5 >Emitted(10, 33) Source(8, 25) + SourceIndex(0) name (m2_f1)
---
>>>}
1 >
2 >^
3 > ^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
2 >}
1 >Emitted(11, 1) Source(9, 1) + SourceIndex(0) name (m2_f1)
2 >Emitted(11, 2) Source(9, 2) + SourceIndex(0) name (m2_f1)
---
>>>exports.m2_f1 = m2_f1;
1->
2 >^^^^^^^^^^^^^
3 > ^^^^^^^^
4 > ^
5 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1->
2 >m2_f1
3 > () {
> return m2_instance1;
> }
4 >
1->Emitted(12, 1) Source(7, 17) + SourceIndex(0)
2 >Emitted(12, 14) Source(7, 22) + SourceIndex(0)
3 >Emitted(12, 22) Source(9, 2) + SourceIndex(0)
4 >Emitted(12, 23) Source(9, 2) + SourceIndex(0)
---
>>>//# sourceMappingURL=/tests/cases/projects/outputdir_mixed_subfolder/mapFiles/ref/m2.js.map===================================================================
JsFile: test.js
mapUrl: /tests/cases/projects/outputdir_mixed_subfolder/mapFiles/test.js.map
sourceRoot:
@@ -1,6 +0,0 @@
export declare var m2_a1: number;
export declare class m2_c1 {
m2_c1_p1: number;
}
export declare var m2_instance1: m2_c1;
export declare function m2_f1(): m2_c1;
@@ -1,13 +0,0 @@
exports.m2_a1 = 10;
var m2_c1 = (function () {
function m2_c1() {
}
return m2_c1;
})();
exports.m2_c1 = m2_c1;
exports.m2_instance1 = new m2_c1();
function m2_f1() {
return exports.m2_instance1;
}
exports.m2_f1 = m2_f1;
//# sourceMappingURL=/tests/cases/projects/outputdir_mixed_subfolder/mapFiles/ref/m2.js.map
@@ -1 +0,0 @@
{"version":3,"file":"m2.js","sourceRoot":"","sources":["../../ref/m2.ts"],"names":["m2_c1","m2_c1.constructor","m2_f1"],"mappings":"AAAW,aAAK,GAAG,EAAE,CAAC;AACtB;IAAAA;IAEAC,CAACA;IAADD,YAACA;AAADA,CAACA,AAFD,IAEC;AAFY,aAAK,QAEjB,CAAA;AAEU,oBAAY,GAAG,IAAI,KAAK,EAAE,CAAC;AACtC;IACIE,MAAMA,CAACA,oBAAYA,CAACA;AACxBA,CAACA;AAFe,aAAK,QAEpB,CAAA"}
@@ -18,9 +18,6 @@
"test.ts"
],
"emittedFiles": [
"outdir/outAndOutDirFolder/ref/m2.js.map",
"outdir/outAndOutDirFolder/ref/m2.js",
"outdir/outAndOutDirFolder/ref/m2.d.ts",
"bin/outAndOutDirFile.js.map",
"bin/outAndOutDirFile.js",
"bin/outAndOutDirFile.d.ts"
@@ -1,176 +1,4 @@
===================================================================
JsFile: m2.js
mapUrl: /tests/cases/projects/outputdir_mixed_subfolder/mapFiles/ref/m2.js.map
sourceRoot:
sources: ../../ref/m2.ts
===================================================================
-------------------------------------------------------------------
emittedFile:outdir/outAndOutDirFolder/ref/m2.js
sourceFile:../../ref/m2.ts
-------------------------------------------------------------------
>>>define(["require", "exports"], function (require, exports) {
>>> exports.m2_a1 = 10;
1 >^^^^
2 > ^^^^^^^^^^^^^
3 > ^^^
4 > ^^
5 > ^
6 > ^^^^^^^^->
1 >export var
2 > m2_a1
3 > =
4 > 10
5 > ;
1 >Emitted(2, 5) Source(1, 12) + SourceIndex(0)
2 >Emitted(2, 18) Source(1, 17) + SourceIndex(0)
3 >Emitted(2, 21) Source(1, 20) + SourceIndex(0)
4 >Emitted(2, 23) Source(1, 22) + SourceIndex(0)
5 >Emitted(2, 24) Source(1, 23) + SourceIndex(0)
---
>>> var m2_c1 = (function () {
1->^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^->
1->
>
1->Emitted(3, 5) Source(2, 1) + SourceIndex(0)
---
>>> function m2_c1() {
1->^^^^^^^^
2 > ^^->
1->
1->Emitted(4, 9) Source(2, 1) + SourceIndex(0) name (m2_c1)
---
>>> }
1->^^^^^^^^
2 > ^
3 > ^^^^^^^^^^^^^->
1->export class m2_c1 {
> public m2_c1_p1: number;
>
2 > }
1->Emitted(5, 9) Source(4, 1) + SourceIndex(0) name (m2_c1.constructor)
2 >Emitted(5, 10) Source(4, 2) + SourceIndex(0) name (m2_c1.constructor)
---
>>> return m2_c1;
1->^^^^^^^^
2 > ^^^^^^^^^^^^
1->
2 > }
1->Emitted(6, 9) Source(4, 1) + SourceIndex(0) name (m2_c1)
2 >Emitted(6, 21) Source(4, 2) + SourceIndex(0) name (m2_c1)
---
>>> })();
1 >^^^^
2 > ^
3 >
4 > ^^^^
5 > ^^^^^^^^^^^^^^^^^^->
1 >
2 > }
3 >
4 > export class m2_c1 {
> public m2_c1_p1: number;
> }
1 >Emitted(7, 5) Source(4, 1) + SourceIndex(0) name (m2_c1)
2 >Emitted(7, 6) Source(4, 2) + SourceIndex(0) name (m2_c1)
3 >Emitted(7, 6) Source(2, 1) + SourceIndex(0)
4 >Emitted(7, 10) Source(4, 2) + SourceIndex(0)
---
>>> exports.m2_c1 = m2_c1;
1->^^^^
2 > ^^^^^^^^^^^^^
3 > ^^^^^^^^
4 > ^
5 > ^^^^^^^^^^^^^^->
1->
2 > m2_c1
3 > {
> public m2_c1_p1: number;
> }
4 >
1->Emitted(8, 5) Source(2, 14) + SourceIndex(0)
2 >Emitted(8, 18) Source(2, 19) + SourceIndex(0)
3 >Emitted(8, 26) Source(4, 2) + SourceIndex(0)
4 >Emitted(8, 27) Source(4, 2) + SourceIndex(0)
---
>>> exports.m2_instance1 = new m2_c1();
1->^^^^
2 > ^^^^^^^^^^^^^^^^^^^^
3 > ^^^
4 > ^^^^
5 > ^^^^^
6 > ^^
7 > ^
1->
>
>export var
2 > m2_instance1
3 > =
4 > new
5 > m2_c1
6 > ()
7 > ;
1->Emitted(9, 5) Source(6, 12) + SourceIndex(0)
2 >Emitted(9, 25) Source(6, 24) + SourceIndex(0)
3 >Emitted(9, 28) Source(6, 27) + SourceIndex(0)
4 >Emitted(9, 32) Source(6, 31) + SourceIndex(0)
5 >Emitted(9, 37) Source(6, 36) + SourceIndex(0)
6 >Emitted(9, 39) Source(6, 38) + SourceIndex(0)
7 >Emitted(9, 40) Source(6, 39) + SourceIndex(0)
---
>>> function m2_f1() {
1 >^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
1 >Emitted(10, 5) Source(7, 1) + SourceIndex(0)
---
>>> return exports.m2_instance1;
1->^^^^^^^^
2 > ^^^^^^
3 > ^
4 > ^^^^^^^^^^^^^^^^^^^^
5 > ^
1->export function m2_f1() {
>
2 > return
3 >
4 > m2_instance1
5 > ;
1->Emitted(11, 9) Source(8, 5) + SourceIndex(0) name (m2_f1)
2 >Emitted(11, 15) Source(8, 11) + SourceIndex(0) name (m2_f1)
3 >Emitted(11, 16) Source(8, 12) + SourceIndex(0) name (m2_f1)
4 >Emitted(11, 36) Source(8, 24) + SourceIndex(0) name (m2_f1)
5 >Emitted(11, 37) Source(8, 25) + SourceIndex(0) name (m2_f1)
---
>>> }
1 >^^^^
2 > ^
3 > ^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
2 > }
1 >Emitted(12, 5) Source(9, 1) + SourceIndex(0) name (m2_f1)
2 >Emitted(12, 6) Source(9, 2) + SourceIndex(0) name (m2_f1)
---
>>> exports.m2_f1 = m2_f1;
1->^^^^
2 > ^^^^^^^^^^^^^
3 > ^^^^^^^^
4 > ^
1->
2 > m2_f1
3 > () {
> return m2_instance1;
> }
4 >
1->Emitted(13, 5) Source(7, 17) + SourceIndex(0)
2 >Emitted(13, 18) Source(7, 22) + SourceIndex(0)
3 >Emitted(13, 26) Source(9, 2) + SourceIndex(0)
4 >Emitted(13, 27) Source(9, 2) + SourceIndex(0)
---
>>>});
>>>//# sourceMappingURL=/tests/cases/projects/outputdir_mixed_subfolder/mapFiles/ref/m2.js.map===================================================================
JsFile: outAndOutDirFile.js
mapUrl: /tests/cases/projects/outputdir_mixed_subfolder/mapFiles/outAndOutDirFile.js.map
sourceRoot:
@@ -1,6 +0,0 @@
export declare var m2_a1: number;
export declare class m2_c1 {
m2_c1_p1: number;
}
export declare var m2_instance1: m2_c1;
export declare function m2_f1(): m2_c1;
@@ -1,15 +0,0 @@
define(["require", "exports"], function (require, exports) {
exports.m2_a1 = 10;
var m2_c1 = (function () {
function m2_c1() {
}
return m2_c1;
})();
exports.m2_c1 = m2_c1;
exports.m2_instance1 = new m2_c1();
function m2_f1() {
return exports.m2_instance1;
}
exports.m2_f1 = m2_f1;
});
//# sourceMappingURL=/tests/cases/projects/outputdir_mixed_subfolder/mapFiles/ref/m2.js.map
@@ -1 +0,0 @@
{"version":3,"file":"m2.js","sourceRoot":"","sources":["../../ref/m2.ts"],"names":["m2_c1","m2_c1.constructor","m2_f1"],"mappings":";IAAW,aAAK,GAAG,EAAE,CAAC;IACtB;QAAAA;QAEAC,CAACA;QAADD,YAACA;IAADA,CAACA,AAFD,IAEC;IAFY,aAAK,QAEjB,CAAA;IAEU,oBAAY,GAAG,IAAI,KAAK,EAAE,CAAC;IACtC;QACIE,MAAMA,CAACA,oBAAYA,CAACA;IACxBA,CAACA;IAFe,aAAK,QAEpB,CAAA"}
@@ -18,9 +18,6 @@
"test.ts"
],
"emittedFiles": [
"outdir/outAndOutDirFolder/ref/m2.js.map",
"outdir/outAndOutDirFolder/ref/m2.js",
"outdir/outAndOutDirFolder/ref/m2.d.ts",
"bin/outAndOutDirFile.js.map",
"bin/outAndOutDirFile.js",
"bin/outAndOutDirFile.d.ts"
@@ -1,175 +1,4 @@
===================================================================
JsFile: m2.js
mapUrl: /tests/cases/projects/outputdir_mixed_subfolder/mapFiles/ref/m2.js.map
sourceRoot:
sources: ../../ref/m2.ts
===================================================================
-------------------------------------------------------------------
emittedFile:outdir/outAndOutDirFolder/ref/m2.js
sourceFile:../../ref/m2.ts
-------------------------------------------------------------------
>>>exports.m2_a1 = 10;
1 >
2 >^^^^^^^^^^^^^
3 > ^^^
4 > ^^
5 > ^
6 > ^^^^^^^^->
1 >export var
2 >m2_a1
3 > =
4 > 10
5 > ;
1 >Emitted(1, 1) Source(1, 12) + SourceIndex(0)
2 >Emitted(1, 14) Source(1, 17) + SourceIndex(0)
3 >Emitted(1, 17) Source(1, 20) + SourceIndex(0)
4 >Emitted(1, 19) Source(1, 22) + SourceIndex(0)
5 >Emitted(1, 20) Source(1, 23) + SourceIndex(0)
---
>>>var m2_c1 = (function () {
1->
2 >^^^^^^^^^^^^^^^^^^^^^^^->
1->
>
1->Emitted(2, 1) Source(2, 1) + SourceIndex(0)
---
>>> function m2_c1() {
1->^^^^
2 > ^^->
1->
1->Emitted(3, 5) Source(2, 1) + SourceIndex(0) name (m2_c1)
---
>>> }
1->^^^^
2 > ^
3 > ^^^^^^^^^^^^^->
1->export class m2_c1 {
> public m2_c1_p1: number;
>
2 > }
1->Emitted(4, 5) Source(4, 1) + SourceIndex(0) name (m2_c1.constructor)
2 >Emitted(4, 6) Source(4, 2) + SourceIndex(0) name (m2_c1.constructor)
---
>>> return m2_c1;
1->^^^^
2 > ^^^^^^^^^^^^
1->
2 > }
1->Emitted(5, 5) Source(4, 1) + SourceIndex(0) name (m2_c1)
2 >Emitted(5, 17) Source(4, 2) + SourceIndex(0) name (m2_c1)
---
>>>})();
1 >
2 >^
3 >
4 > ^^^^
5 > ^^^^^^^^^^^^^^^^^^->
1 >
2 >}
3 >
4 > export class m2_c1 {
> public m2_c1_p1: number;
> }
1 >Emitted(6, 1) Source(4, 1) + SourceIndex(0) name (m2_c1)
2 >Emitted(6, 2) Source(4, 2) + SourceIndex(0) name (m2_c1)
3 >Emitted(6, 2) Source(2, 1) + SourceIndex(0)
4 >Emitted(6, 6) Source(4, 2) + SourceIndex(0)
---
>>>exports.m2_c1 = m2_c1;
1->
2 >^^^^^^^^^^^^^
3 > ^^^^^^^^
4 > ^
5 > ^^^^^^^^^^^^^^->
1->
2 >m2_c1
3 > {
> public m2_c1_p1: number;
> }
4 >
1->Emitted(7, 1) Source(2, 14) + SourceIndex(0)
2 >Emitted(7, 14) Source(2, 19) + SourceIndex(0)
3 >Emitted(7, 22) Source(4, 2) + SourceIndex(0)
4 >Emitted(7, 23) Source(4, 2) + SourceIndex(0)
---
>>>exports.m2_instance1 = new m2_c1();
1->
2 >^^^^^^^^^^^^^^^^^^^^
3 > ^^^
4 > ^^^^
5 > ^^^^^
6 > ^^
7 > ^
1->
>
>export var
2 >m2_instance1
3 > =
4 > new
5 > m2_c1
6 > ()
7 > ;
1->Emitted(8, 1) Source(6, 12) + SourceIndex(0)
2 >Emitted(8, 21) Source(6, 24) + SourceIndex(0)
3 >Emitted(8, 24) Source(6, 27) + SourceIndex(0)
4 >Emitted(8, 28) Source(6, 31) + SourceIndex(0)
5 >Emitted(8, 33) Source(6, 36) + SourceIndex(0)
6 >Emitted(8, 35) Source(6, 38) + SourceIndex(0)
7 >Emitted(8, 36) Source(6, 39) + SourceIndex(0)
---
>>>function m2_f1() {
1 >
2 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
1 >Emitted(9, 1) Source(7, 1) + SourceIndex(0)
---
>>> return exports.m2_instance1;
1->^^^^
2 > ^^^^^^
3 > ^
4 > ^^^^^^^^^^^^^^^^^^^^
5 > ^
1->export function m2_f1() {
>
2 > return
3 >
4 > m2_instance1
5 > ;
1->Emitted(10, 5) Source(8, 5) + SourceIndex(0) name (m2_f1)
2 >Emitted(10, 11) Source(8, 11) + SourceIndex(0) name (m2_f1)
3 >Emitted(10, 12) Source(8, 12) + SourceIndex(0) name (m2_f1)
4 >Emitted(10, 32) Source(8, 24) + SourceIndex(0) name (m2_f1)
5 >Emitted(10, 33) Source(8, 25) + SourceIndex(0) name (m2_f1)
---
>>>}
1 >
2 >^
3 > ^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
2 >}
1 >Emitted(11, 1) Source(9, 1) + SourceIndex(0) name (m2_f1)
2 >Emitted(11, 2) Source(9, 2) + SourceIndex(0) name (m2_f1)
---
>>>exports.m2_f1 = m2_f1;
1->
2 >^^^^^^^^^^^^^
3 > ^^^^^^^^
4 > ^
5 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1->
2 >m2_f1
3 > () {
> return m2_instance1;
> }
4 >
1->Emitted(12, 1) Source(7, 17) + SourceIndex(0)
2 >Emitted(12, 14) Source(7, 22) + SourceIndex(0)
3 >Emitted(12, 22) Source(9, 2) + SourceIndex(0)
4 >Emitted(12, 23) Source(9, 2) + SourceIndex(0)
---
>>>//# sourceMappingURL=/tests/cases/projects/outputdir_mixed_subfolder/mapFiles/ref/m2.js.map===================================================================
JsFile: outAndOutDirFile.js
mapUrl: /tests/cases/projects/outputdir_mixed_subfolder/mapFiles/outAndOutDirFile.js.map
sourceRoot:
@@ -1,6 +0,0 @@
export declare var m2_a1: number;
export declare class m2_c1 {
m2_c1_p1: number;
}
export declare var m2_instance1: m2_c1;
export declare function m2_f1(): m2_c1;
@@ -1,13 +0,0 @@
exports.m2_a1 = 10;
var m2_c1 = (function () {
function m2_c1() {
}
return m2_c1;
})();
exports.m2_c1 = m2_c1;
exports.m2_instance1 = new m2_c1();
function m2_f1() {
return exports.m2_instance1;
}
exports.m2_f1 = m2_f1;
//# sourceMappingURL=/tests/cases/projects/outputdir_mixed_subfolder/mapFiles/ref/m2.js.map
@@ -1 +0,0 @@
{"version":3,"file":"m2.js","sourceRoot":"","sources":["../../ref/m2.ts"],"names":["m2_c1","m2_c1.constructor","m2_f1"],"mappings":"AAAW,aAAK,GAAG,EAAE,CAAC;AACtB;IAAAA;IAEAC,CAACA;IAADD,YAACA;AAADA,CAACA,AAFD,IAEC;AAFY,aAAK,QAEjB,CAAA;AAEU,oBAAY,GAAG,IAAI,KAAK,EAAE,CAAC;AACtC;IACIE,MAAMA,CAACA,oBAAYA,CAACA;AACxBA,CAACA;AAFe,aAAK,QAEpB,CAAA"}
@@ -1 +0,0 @@
{"version":3,"file":"m2.js","sourceRoot":"","sources":["../../../outputdir_module_multifolder_ref/m2.ts"],"names":["m2_c1","m2_c1.constructor","m2_f1"],"mappings":";IAAW,aAAK,GAAG,EAAE,CAAC;IACtB;QAAAA;QAEAC,CAACA;QAADD,YAACA;IAADA,CAACA,AAFD,IAEC;IAFY,aAAK,QAEjB,CAAA;IAEU,oBAAY,GAAG,IAAI,KAAK,EAAE,CAAC;IACtC;QACIE,MAAMA,CAACA,oBAAYA,CAACA;IACxBA,CAACA;IAFe,aAAK,QAEpB,CAAA"}
@@ -1,15 +0,0 @@
define(["require", "exports"], function (require, exports) {
exports.m2_a1 = 10;
var m2_c1 = (function () {
function m2_c1() {
}
return m2_c1;
})();
exports.m2_c1 = m2_c1;
exports.m2_instance1 = new m2_c1();
function m2_f1() {
return exports.m2_instance1;
}
exports.m2_f1 = m2_f1;
});
//# sourceMappingURL=/tests/cases/projects/outputdir_module_multifolder/mapFiles/outputdir_module_multifolder_ref/m2.js.map
@@ -1,6 +0,0 @@
export declare var m2_a1: number;
export declare class m2_c1 {
m2_c1_p1: number;
}
export declare var m2_instance1: m2_c1;
export declare function m2_f1(): m2_c1;
@@ -17,15 +17,6 @@
"test.ts"
],
"emittedFiles": [
"ref/m1.js.map",
"ref/m1.js",
"ref/m1.d.ts",
"../outputdir_module_multifolder_ref/m2.js.map",
"../outputdir_module_multifolder_ref/m2.js",
"../outputdir_module_multifolder_ref/m2.d.ts",
"test.js.map",
"test.js",
"test.d.ts",
"bin/test.js.map",
"bin/test.js",
"bin/test.d.ts"
@@ -1,573 +1,4 @@
===================================================================
JsFile: m1.js
mapUrl: /tests/cases/projects/outputdir_module_multifolder/mapFiles/outputdir_module_multifolder/ref/m1.js.map
sourceRoot:
sources: ../../../ref/m1.ts
===================================================================
-------------------------------------------------------------------
emittedFile:ref/m1.js
sourceFile:../../../ref/m1.ts
-------------------------------------------------------------------
>>>define(["require", "exports"], function (require, exports) {
>>> exports.m1_a1 = 10;
1 >^^^^
2 > ^^^^^^^^^^^^^
3 > ^^^
4 > ^^
5 > ^
6 > ^^^^^^^^->
1 >export var
2 > m1_a1
3 > =
4 > 10
5 > ;
1 >Emitted(2, 5) Source(1, 12) + SourceIndex(0)
2 >Emitted(2, 18) Source(1, 17) + SourceIndex(0)
3 >Emitted(2, 21) Source(1, 20) + SourceIndex(0)
4 >Emitted(2, 23) Source(1, 22) + SourceIndex(0)
5 >Emitted(2, 24) Source(1, 23) + SourceIndex(0)
---
>>> var m1_c1 = (function () {
1->^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^->
1->
>
1->Emitted(3, 5) Source(2, 1) + SourceIndex(0)
---
>>> function m1_c1() {
1->^^^^^^^^
2 > ^^->
1->
1->Emitted(4, 9) Source(2, 1) + SourceIndex(0) name (m1_c1)
---
>>> }
1->^^^^^^^^
2 > ^
3 > ^^^^^^^^^^^^^->
1->export class m1_c1 {
> public m1_c1_p1: number;
>
2 > }
1->Emitted(5, 9) Source(4, 1) + SourceIndex(0) name (m1_c1.constructor)
2 >Emitted(5, 10) Source(4, 2) + SourceIndex(0) name (m1_c1.constructor)
---
>>> return m1_c1;
1->^^^^^^^^
2 > ^^^^^^^^^^^^
1->
2 > }
1->Emitted(6, 9) Source(4, 1) + SourceIndex(0) name (m1_c1)
2 >Emitted(6, 21) Source(4, 2) + SourceIndex(0) name (m1_c1)
---
>>> })();
1 >^^^^
2 > ^
3 >
4 > ^^^^
5 > ^^^^^^^^^^^^^^^^^^->
1 >
2 > }
3 >
4 > export class m1_c1 {
> public m1_c1_p1: number;
> }
1 >Emitted(7, 5) Source(4, 1) + SourceIndex(0) name (m1_c1)
2 >Emitted(7, 6) Source(4, 2) + SourceIndex(0) name (m1_c1)
3 >Emitted(7, 6) Source(2, 1) + SourceIndex(0)
4 >Emitted(7, 10) Source(4, 2) + SourceIndex(0)
---
>>> exports.m1_c1 = m1_c1;
1->^^^^
2 > ^^^^^^^^^^^^^
3 > ^^^^^^^^
4 > ^
5 > ^^^^^^^^^^^^^^->
1->
2 > m1_c1
3 > {
> public m1_c1_p1: number;
> }
4 >
1->Emitted(8, 5) Source(2, 14) + SourceIndex(0)
2 >Emitted(8, 18) Source(2, 19) + SourceIndex(0)
3 >Emitted(8, 26) Source(4, 2) + SourceIndex(0)
4 >Emitted(8, 27) Source(4, 2) + SourceIndex(0)
---
>>> exports.m1_instance1 = new m1_c1();
1->^^^^
2 > ^^^^^^^^^^^^^^^^^^^^
3 > ^^^
4 > ^^^^
5 > ^^^^^
6 > ^^
7 > ^
1->
>
>export var
2 > m1_instance1
3 > =
4 > new
5 > m1_c1
6 > ()
7 > ;
1->Emitted(9, 5) Source(6, 12) + SourceIndex(0)
2 >Emitted(9, 25) Source(6, 24) + SourceIndex(0)
3 >Emitted(9, 28) Source(6, 27) + SourceIndex(0)
4 >Emitted(9, 32) Source(6, 31) + SourceIndex(0)
5 >Emitted(9, 37) Source(6, 36) + SourceIndex(0)
6 >Emitted(9, 39) Source(6, 38) + SourceIndex(0)
7 >Emitted(9, 40) Source(6, 39) + SourceIndex(0)
---
>>> function m1_f1() {
1 >^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
1 >Emitted(10, 5) Source(7, 1) + SourceIndex(0)
---
>>> return exports.m1_instance1;
1->^^^^^^^^
2 > ^^^^^^
3 > ^
4 > ^^^^^^^^^^^^^^^^^^^^
5 > ^
1->export function m1_f1() {
>
2 > return
3 >
4 > m1_instance1
5 > ;
1->Emitted(11, 9) Source(8, 5) + SourceIndex(0) name (m1_f1)
2 >Emitted(11, 15) Source(8, 11) + SourceIndex(0) name (m1_f1)
3 >Emitted(11, 16) Source(8, 12) + SourceIndex(0) name (m1_f1)
4 >Emitted(11, 36) Source(8, 24) + SourceIndex(0) name (m1_f1)
5 >Emitted(11, 37) Source(8, 25) + SourceIndex(0) name (m1_f1)
---
>>> }
1 >^^^^
2 > ^
3 > ^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
2 > }
1 >Emitted(12, 5) Source(9, 1) + SourceIndex(0) name (m1_f1)
2 >Emitted(12, 6) Source(9, 2) + SourceIndex(0) name (m1_f1)
---
>>> exports.m1_f1 = m1_f1;
1->^^^^
2 > ^^^^^^^^^^^^^
3 > ^^^^^^^^
4 > ^
1->
2 > m1_f1
3 > () {
> return m1_instance1;
> }
4 >
1->Emitted(13, 5) Source(7, 17) + SourceIndex(0)
2 >Emitted(13, 18) Source(7, 22) + SourceIndex(0)
3 >Emitted(13, 26) Source(9, 2) + SourceIndex(0)
4 >Emitted(13, 27) Source(9, 2) + SourceIndex(0)
---
>>>});
>>>//# sourceMappingURL=/tests/cases/projects/outputdir_module_multifolder/mapFiles/outputdir_module_multifolder/ref/m1.js.map===================================================================
JsFile: m2.js
mapUrl: /tests/cases/projects/outputdir_module_multifolder/mapFiles/outputdir_module_multifolder_ref/m2.js.map
sourceRoot:
sources: ../../../outputdir_module_multifolder_ref/m2.ts
===================================================================
-------------------------------------------------------------------
emittedFile:diskFile1.js
sourceFile:../../../outputdir_module_multifolder_ref/m2.ts
-------------------------------------------------------------------
>>>define(["require", "exports"], function (require, exports) {
>>> exports.m2_a1 = 10;
1 >^^^^
2 > ^^^^^^^^^^^^^
3 > ^^^
4 > ^^
5 > ^
6 > ^^^^^^^^->
1 >export var
2 > m2_a1
3 > =
4 > 10
5 > ;
1 >Emitted(2, 5) Source(1, 12) + SourceIndex(0)
2 >Emitted(2, 18) Source(1, 17) + SourceIndex(0)
3 >Emitted(2, 21) Source(1, 20) + SourceIndex(0)
4 >Emitted(2, 23) Source(1, 22) + SourceIndex(0)
5 >Emitted(2, 24) Source(1, 23) + SourceIndex(0)
---
>>> var m2_c1 = (function () {
1->^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^->
1->
>
1->Emitted(3, 5) Source(2, 1) + SourceIndex(0)
---
>>> function m2_c1() {
1->^^^^^^^^
2 > ^^->
1->
1->Emitted(4, 9) Source(2, 1) + SourceIndex(0) name (m2_c1)
---
>>> }
1->^^^^^^^^
2 > ^
3 > ^^^^^^^^^^^^^->
1->export class m2_c1 {
> public m2_c1_p1: number;
>
2 > }
1->Emitted(5, 9) Source(4, 1) + SourceIndex(0) name (m2_c1.constructor)
2 >Emitted(5, 10) Source(4, 2) + SourceIndex(0) name (m2_c1.constructor)
---
>>> return m2_c1;
1->^^^^^^^^
2 > ^^^^^^^^^^^^
1->
2 > }
1->Emitted(6, 9) Source(4, 1) + SourceIndex(0) name (m2_c1)
2 >Emitted(6, 21) Source(4, 2) + SourceIndex(0) name (m2_c1)
---
>>> })();
1 >^^^^
2 > ^
3 >
4 > ^^^^
5 > ^^^^^^^^^^^^^^^^^^->
1 >
2 > }
3 >
4 > export class m2_c1 {
> public m2_c1_p1: number;
> }
1 >Emitted(7, 5) Source(4, 1) + SourceIndex(0) name (m2_c1)
2 >Emitted(7, 6) Source(4, 2) + SourceIndex(0) name (m2_c1)
3 >Emitted(7, 6) Source(2, 1) + SourceIndex(0)
4 >Emitted(7, 10) Source(4, 2) + SourceIndex(0)
---
>>> exports.m2_c1 = m2_c1;
1->^^^^
2 > ^^^^^^^^^^^^^
3 > ^^^^^^^^
4 > ^
5 > ^^^^^^^^^^^^^^->
1->
2 > m2_c1
3 > {
> public m2_c1_p1: number;
> }
4 >
1->Emitted(8, 5) Source(2, 14) + SourceIndex(0)
2 >Emitted(8, 18) Source(2, 19) + SourceIndex(0)
3 >Emitted(8, 26) Source(4, 2) + SourceIndex(0)
4 >Emitted(8, 27) Source(4, 2) + SourceIndex(0)
---
>>> exports.m2_instance1 = new m2_c1();
1->^^^^
2 > ^^^^^^^^^^^^^^^^^^^^
3 > ^^^
4 > ^^^^
5 > ^^^^^
6 > ^^
7 > ^
1->
>
>export var
2 > m2_instance1
3 > =
4 > new
5 > m2_c1
6 > ()
7 > ;
1->Emitted(9, 5) Source(6, 12) + SourceIndex(0)
2 >Emitted(9, 25) Source(6, 24) + SourceIndex(0)
3 >Emitted(9, 28) Source(6, 27) + SourceIndex(0)
4 >Emitted(9, 32) Source(6, 31) + SourceIndex(0)
5 >Emitted(9, 37) Source(6, 36) + SourceIndex(0)
6 >Emitted(9, 39) Source(6, 38) + SourceIndex(0)
7 >Emitted(9, 40) Source(6, 39) + SourceIndex(0)
---
>>> function m2_f1() {
1 >^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
1 >Emitted(10, 5) Source(7, 1) + SourceIndex(0)
---
>>> return exports.m2_instance1;
1->^^^^^^^^
2 > ^^^^^^
3 > ^
4 > ^^^^^^^^^^^^^^^^^^^^
5 > ^
1->export function m2_f1() {
>
2 > return
3 >
4 > m2_instance1
5 > ;
1->Emitted(11, 9) Source(8, 5) + SourceIndex(0) name (m2_f1)
2 >Emitted(11, 15) Source(8, 11) + SourceIndex(0) name (m2_f1)
3 >Emitted(11, 16) Source(8, 12) + SourceIndex(0) name (m2_f1)
4 >Emitted(11, 36) Source(8, 24) + SourceIndex(0) name (m2_f1)
5 >Emitted(11, 37) Source(8, 25) + SourceIndex(0) name (m2_f1)
---
>>> }
1 >^^^^
2 > ^
3 > ^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
2 > }
1 >Emitted(12, 5) Source(9, 1) + SourceIndex(0) name (m2_f1)
2 >Emitted(12, 6) Source(9, 2) + SourceIndex(0) name (m2_f1)
---
>>> exports.m2_f1 = m2_f1;
1->^^^^
2 > ^^^^^^^^^^^^^
3 > ^^^^^^^^
4 > ^
1->
2 > m2_f1
3 > () {
> return m2_instance1;
> }
4 >
1->Emitted(13, 5) Source(7, 17) + SourceIndex(0)
2 >Emitted(13, 18) Source(7, 22) + SourceIndex(0)
3 >Emitted(13, 26) Source(9, 2) + SourceIndex(0)
4 >Emitted(13, 27) Source(9, 2) + SourceIndex(0)
---
>>>});
>>>//# sourceMappingURL=/tests/cases/projects/outputdir_module_multifolder/mapFiles/outputdir_module_multifolder_ref/m2.js.map===================================================================
JsFile: test.js
mapUrl: /tests/cases/projects/outputdir_module_multifolder/mapFiles/outputdir_module_multifolder/test.js.map
sourceRoot:
sources: ../../test.ts
===================================================================
-------------------------------------------------------------------
emittedFile:test.js
sourceFile:../../test.ts
-------------------------------------------------------------------
>>>define(["require", "exports", "ref/m1", "../outputdir_module_multifolder_ref/m2"], function (require, exports, m1, m2) {
>>> exports.a1 = 10;
1 >^^^^
2 > ^^^^^^^^^^
3 > ^^^
4 > ^^
5 > ^
6 > ^^^^^^^^->
1 >import m1 = require("ref/m1");
>import m2 = require("../outputdir_module_multifolder_ref/m2");
>export var
2 > a1
3 > =
4 > 10
5 > ;
1 >Emitted(2, 5) Source(3, 12) + SourceIndex(0)
2 >Emitted(2, 15) Source(3, 14) + SourceIndex(0)
3 >Emitted(2, 18) Source(3, 17) + SourceIndex(0)
4 >Emitted(2, 20) Source(3, 19) + SourceIndex(0)
5 >Emitted(2, 21) Source(3, 20) + SourceIndex(0)
---
>>> var c1 = (function () {
1->^^^^
2 > ^^^^^^^^^^^^^^^^^^^^->
1->
>
1->Emitted(3, 5) Source(4, 1) + SourceIndex(0)
---
>>> function c1() {
1->^^^^^^^^
2 > ^^->
1->
1->Emitted(4, 9) Source(4, 1) + SourceIndex(0) name (c1)
---
>>> }
1->^^^^^^^^
2 > ^
3 > ^^^^^^^^^^->
1->export class c1 {
> public p1: number;
>
2 > }
1->Emitted(5, 9) Source(6, 1) + SourceIndex(0) name (c1.constructor)
2 >Emitted(5, 10) Source(6, 2) + SourceIndex(0) name (c1.constructor)
---
>>> return c1;
1->^^^^^^^^
2 > ^^^^^^^^^
1->
2 > }
1->Emitted(6, 9) Source(6, 1) + SourceIndex(0) name (c1)
2 >Emitted(6, 18) Source(6, 2) + SourceIndex(0) name (c1)
---
>>> })();
1 >^^^^
2 > ^
3 >
4 > ^^^^
5 > ^^^^^^^^^^^^->
1 >
2 > }
3 >
4 > export class c1 {
> public p1: number;
> }
1 >Emitted(7, 5) Source(6, 1) + SourceIndex(0) name (c1)
2 >Emitted(7, 6) Source(6, 2) + SourceIndex(0) name (c1)
3 >Emitted(7, 6) Source(4, 1) + SourceIndex(0)
4 >Emitted(7, 10) Source(6, 2) + SourceIndex(0)
---
>>> exports.c1 = c1;
1->^^^^
2 > ^^^^^^^^^^
3 > ^^^^^
4 > ^
5 > ^^^^^^^^^^^^^^->
1->
2 > c1
3 > {
> public p1: number;
> }
4 >
1->Emitted(8, 5) Source(4, 14) + SourceIndex(0)
2 >Emitted(8, 15) Source(4, 16) + SourceIndex(0)
3 >Emitted(8, 20) Source(6, 2) + SourceIndex(0)
4 >Emitted(8, 21) Source(6, 2) + SourceIndex(0)
---
>>> exports.instance1 = new c1();
1->^^^^
2 > ^^^^^^^^^^^^^^^^^
3 > ^^^
4 > ^^^^
5 > ^^
6 > ^^
7 > ^
1->
>
>export var
2 > instance1
3 > =
4 > new
5 > c1
6 > ()
7 > ;
1->Emitted(9, 5) Source(8, 12) + SourceIndex(0)
2 >Emitted(9, 22) Source(8, 21) + SourceIndex(0)
3 >Emitted(9, 25) Source(8, 24) + SourceIndex(0)
4 >Emitted(9, 29) Source(8, 28) + SourceIndex(0)
5 >Emitted(9, 31) Source(8, 30) + SourceIndex(0)
6 >Emitted(9, 33) Source(8, 32) + SourceIndex(0)
7 >Emitted(9, 34) Source(8, 33) + SourceIndex(0)
---
>>> function f1() {
1 >^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
1 >Emitted(10, 5) Source(9, 1) + SourceIndex(0)
---
>>> return exports.instance1;
1->^^^^^^^^
2 > ^^^^^^
3 > ^
4 > ^^^^^^^^^^^^^^^^^
5 > ^
1->export function f1() {
>
2 > return
3 >
4 > instance1
5 > ;
1->Emitted(11, 9) Source(10, 5) + SourceIndex(0) name (f1)
2 >Emitted(11, 15) Source(10, 11) + SourceIndex(0) name (f1)
3 >Emitted(11, 16) Source(10, 12) + SourceIndex(0) name (f1)
4 >Emitted(11, 33) Source(10, 21) + SourceIndex(0) name (f1)
5 >Emitted(11, 34) Source(10, 22) + SourceIndex(0) name (f1)
---
>>> }
1 >^^^^
2 > ^
3 > ^^^^^^^^^^^^^^^^->
1 >
>
2 > }
1 >Emitted(12, 5) Source(11, 1) + SourceIndex(0) name (f1)
2 >Emitted(12, 6) Source(11, 2) + SourceIndex(0) name (f1)
---
>>> exports.f1 = f1;
1->^^^^
2 > ^^^^^^^^^^
3 > ^^^^^
4 > ^
5 > ^^^^^^^->
1->
2 > f1
3 > () {
> return instance1;
> }
4 >
1->Emitted(13, 5) Source(9, 17) + SourceIndex(0)
2 >Emitted(13, 15) Source(9, 19) + SourceIndex(0)
3 >Emitted(13, 20) Source(11, 2) + SourceIndex(0)
4 >Emitted(13, 21) Source(11, 2) + SourceIndex(0)
---
>>> exports.a2 = m1.m1_c1;
1->^^^^
2 > ^^^^^^^^^^
3 > ^^^
4 > ^^
5 > ^
6 > ^^^^^
7 > ^
8 > ^->
1->
>
>export var
2 > a2
3 > =
4 > m1
5 > .
6 > m1_c1
7 > ;
1->Emitted(14, 5) Source(13, 12) + SourceIndex(0)
2 >Emitted(14, 15) Source(13, 14) + SourceIndex(0)
3 >Emitted(14, 18) Source(13, 17) + SourceIndex(0)
4 >Emitted(14, 20) Source(13, 19) + SourceIndex(0)
5 >Emitted(14, 21) Source(13, 20) + SourceIndex(0)
6 >Emitted(14, 26) Source(13, 25) + SourceIndex(0)
7 >Emitted(14, 27) Source(13, 26) + SourceIndex(0)
---
>>> exports.a3 = m2.m2_c1;
1->^^^^
2 > ^^^^^^^^^^
3 > ^^^
4 > ^^
5 > ^
6 > ^^^^^
7 > ^
1->
>export var
2 > a3
3 > =
4 > m2
5 > .
6 > m2_c1
7 > ;
1->Emitted(15, 5) Source(14, 12) + SourceIndex(0)
2 >Emitted(15, 15) Source(14, 14) + SourceIndex(0)
3 >Emitted(15, 18) Source(14, 17) + SourceIndex(0)
4 >Emitted(15, 20) Source(14, 19) + SourceIndex(0)
5 >Emitted(15, 21) Source(14, 20) + SourceIndex(0)
6 >Emitted(15, 26) Source(14, 25) + SourceIndex(0)
7 >Emitted(15, 27) Source(14, 26) + SourceIndex(0)
---
>>>});
>>>//# sourceMappingURL=/tests/cases/projects/outputdir_module_multifolder/mapFiles/outputdir_module_multifolder/test.js.map===================================================================
JsFile: test.js
mapUrl: /tests/cases/projects/outputdir_module_multifolder/mapFiles/test.js.map
sourceRoot:
@@ -1,6 +0,0 @@
export declare var m1_a1: number;
export declare class m1_c1 {
m1_c1_p1: number;
}
export declare var m1_instance1: m1_c1;
export declare function m1_f1(): m1_c1;
@@ -1,15 +0,0 @@
define(["require", "exports"], function (require, exports) {
exports.m1_a1 = 10;
var m1_c1 = (function () {
function m1_c1() {
}
return m1_c1;
})();
exports.m1_c1 = m1_c1;
exports.m1_instance1 = new m1_c1();
function m1_f1() {
return exports.m1_instance1;
}
exports.m1_f1 = m1_f1;
});
//# sourceMappingURL=/tests/cases/projects/outputdir_module_multifolder/mapFiles/outputdir_module_multifolder/ref/m1.js.map
@@ -1 +0,0 @@
{"version":3,"file":"m1.js","sourceRoot":"","sources":["../../../ref/m1.ts"],"names":["m1_c1","m1_c1.constructor","m1_f1"],"mappings":";IAAW,aAAK,GAAG,EAAE,CAAC;IACtB;QAAAA;QAEAC,CAACA;QAADD,YAACA;IAADA,CAACA,AAFD,IAEC;IAFY,aAAK,QAEjB,CAAA;IAEU,oBAAY,GAAG,IAAI,KAAK,EAAE,CAAC;IACtC;QACIE,MAAMA,CAACA,oBAAYA,CAACA;IACxBA,CAACA;IAFe,aAAK,QAEpB,CAAA"}
@@ -1,10 +0,0 @@
import m1 = require("ref/m1");
import m2 = require("../outputdir_module_multifolder_ref/m2");
export declare var a1: number;
export declare class c1 {
p1: number;
}
export declare var instance1: c1;
export declare function f1(): c1;
export declare var a2: typeof m1.m1_c1;
export declare var a3: typeof m2.m2_c1;
@@ -1,17 +0,0 @@
define(["require", "exports", "ref/m1", "../outputdir_module_multifolder_ref/m2"], function (require, exports, m1, m2) {
exports.a1 = 10;
var c1 = (function () {
function c1() {
}
return c1;
})();
exports.c1 = c1;
exports.instance1 = new c1();
function f1() {
return exports.instance1;
}
exports.f1 = f1;
exports.a2 = m1.m1_c1;
exports.a3 = m2.m2_c1;
});
//# sourceMappingURL=/tests/cases/projects/outputdir_module_multifolder/mapFiles/outputdir_module_multifolder/test.js.map
@@ -1 +0,0 @@
{"version":3,"file":"test.js","sourceRoot":"","sources":["../../test.ts"],"names":["c1","c1.constructor","f1"],"mappings":";IAEW,UAAE,GAAG,EAAE,CAAC;IACnB;QAAAA;QAEAC,CAACA;QAADD,SAACA;IAADA,CAACA,AAFD,IAEC;IAFY,UAAE,KAEd,CAAA;IAEU,iBAAS,GAAG,IAAI,EAAE,EAAE,CAAC;IAChC;QACIE,MAAMA,CAACA,iBAASA,CAACA;IACrBA,CAACA;IAFe,UAAE,KAEjB,CAAA;IAEU,UAAE,GAAG,EAAE,CAAC,KAAK,CAAC;IACd,UAAE,GAAG,EAAE,CAAC,KAAK,CAAC"}
@@ -1 +0,0 @@
{"version":3,"file":"m2.js","sourceRoot":"","sources":["../../../outputdir_module_multifolder_ref/m2.ts"],"names":["m2_c1","m2_c1.constructor","m2_f1"],"mappings":"AAAW,aAAK,GAAG,EAAE,CAAC;AACtB;IAAAA;IAEAC,CAACA;IAADD,YAACA;AAADA,CAACA,AAFD,IAEC;AAFY,aAAK,QAEjB,CAAA;AAEU,oBAAY,GAAG,IAAI,KAAK,EAAE,CAAC;AACtC;IACIE,MAAMA,CAACA,oBAAYA,CAACA;AACxBA,CAACA;AAFe,aAAK,QAEpB,CAAA"}
@@ -1,13 +0,0 @@
exports.m2_a1 = 10;
var m2_c1 = (function () {
function m2_c1() {
}
return m2_c1;
})();
exports.m2_c1 = m2_c1;
exports.m2_instance1 = new m2_c1();
function m2_f1() {
return exports.m2_instance1;
}
exports.m2_f1 = m2_f1;
//# sourceMappingURL=/tests/cases/projects/outputdir_module_multifolder/mapFiles/outputdir_module_multifolder_ref/m2.js.map
@@ -1,6 +0,0 @@
export declare var m2_a1: number;
export declare class m2_c1 {
m2_c1_p1: number;
}
export declare var m2_instance1: m2_c1;
export declare function m2_f1(): m2_c1;
@@ -17,15 +17,6 @@
"test.ts"
],
"emittedFiles": [
"ref/m1.js.map",
"ref/m1.js",
"ref/m1.d.ts",
"../outputdir_module_multifolder_ref/m2.js.map",
"../outputdir_module_multifolder_ref/m2.js",
"../outputdir_module_multifolder_ref/m2.d.ts",
"test.js.map",
"test.js",
"test.d.ts",
"bin/test.js.map",
"bin/test.js",
"bin/test.d.ts"
@@ -1,617 +1,4 @@
===================================================================
JsFile: m1.js
mapUrl: /tests/cases/projects/outputdir_module_multifolder/mapFiles/outputdir_module_multifolder/ref/m1.js.map
sourceRoot:
sources: ../../../ref/m1.ts
===================================================================
-------------------------------------------------------------------
emittedFile:ref/m1.js
sourceFile:../../../ref/m1.ts
-------------------------------------------------------------------
>>>exports.m1_a1 = 10;
1 >
2 >^^^^^^^^^^^^^
3 > ^^^
4 > ^^
5 > ^
6 > ^^^^^^^^->
1 >export var
2 >m1_a1
3 > =
4 > 10
5 > ;
1 >Emitted(1, 1) Source(1, 12) + SourceIndex(0)
2 >Emitted(1, 14) Source(1, 17) + SourceIndex(0)
3 >Emitted(1, 17) Source(1, 20) + SourceIndex(0)
4 >Emitted(1, 19) Source(1, 22) + SourceIndex(0)
5 >Emitted(1, 20) Source(1, 23) + SourceIndex(0)
---
>>>var m1_c1 = (function () {
1->
2 >^^^^^^^^^^^^^^^^^^^^^^^->
1->
>
1->Emitted(2, 1) Source(2, 1) + SourceIndex(0)
---
>>> function m1_c1() {
1->^^^^
2 > ^^->
1->
1->Emitted(3, 5) Source(2, 1) + SourceIndex(0) name (m1_c1)
---
>>> }
1->^^^^
2 > ^
3 > ^^^^^^^^^^^^^->
1->export class m1_c1 {
> public m1_c1_p1: number;
>
2 > }
1->Emitted(4, 5) Source(4, 1) + SourceIndex(0) name (m1_c1.constructor)
2 >Emitted(4, 6) Source(4, 2) + SourceIndex(0) name (m1_c1.constructor)
---
>>> return m1_c1;
1->^^^^
2 > ^^^^^^^^^^^^
1->
2 > }
1->Emitted(5, 5) Source(4, 1) + SourceIndex(0) name (m1_c1)
2 >Emitted(5, 17) Source(4, 2) + SourceIndex(0) name (m1_c1)
---
>>>})();
1 >
2 >^
3 >
4 > ^^^^
5 > ^^^^^^^^^^^^^^^^^^->
1 >
2 >}
3 >
4 > export class m1_c1 {
> public m1_c1_p1: number;
> }
1 >Emitted(6, 1) Source(4, 1) + SourceIndex(0) name (m1_c1)
2 >Emitted(6, 2) Source(4, 2) + SourceIndex(0) name (m1_c1)
3 >Emitted(6, 2) Source(2, 1) + SourceIndex(0)
4 >Emitted(6, 6) Source(4, 2) + SourceIndex(0)
---
>>>exports.m1_c1 = m1_c1;
1->
2 >^^^^^^^^^^^^^
3 > ^^^^^^^^
4 > ^
5 > ^^^^^^^^^^^^^^->
1->
2 >m1_c1
3 > {
> public m1_c1_p1: number;
> }
4 >
1->Emitted(7, 1) Source(2, 14) + SourceIndex(0)
2 >Emitted(7, 14) Source(2, 19) + SourceIndex(0)
3 >Emitted(7, 22) Source(4, 2) + SourceIndex(0)
4 >Emitted(7, 23) Source(4, 2) + SourceIndex(0)
---
>>>exports.m1_instance1 = new m1_c1();
1->
2 >^^^^^^^^^^^^^^^^^^^^
3 > ^^^
4 > ^^^^
5 > ^^^^^
6 > ^^
7 > ^
1->
>
>export var
2 >m1_instance1
3 > =
4 > new
5 > m1_c1
6 > ()
7 > ;
1->Emitted(8, 1) Source(6, 12) + SourceIndex(0)
2 >Emitted(8, 21) Source(6, 24) + SourceIndex(0)
3 >Emitted(8, 24) Source(6, 27) + SourceIndex(0)
4 >Emitted(8, 28) Source(6, 31) + SourceIndex(0)
5 >Emitted(8, 33) Source(6, 36) + SourceIndex(0)
6 >Emitted(8, 35) Source(6, 38) + SourceIndex(0)
7 >Emitted(8, 36) Source(6, 39) + SourceIndex(0)
---
>>>function m1_f1() {
1 >
2 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
1 >Emitted(9, 1) Source(7, 1) + SourceIndex(0)
---
>>> return exports.m1_instance1;
1->^^^^
2 > ^^^^^^
3 > ^
4 > ^^^^^^^^^^^^^^^^^^^^
5 > ^
1->export function m1_f1() {
>
2 > return
3 >
4 > m1_instance1
5 > ;
1->Emitted(10, 5) Source(8, 5) + SourceIndex(0) name (m1_f1)
2 >Emitted(10, 11) Source(8, 11) + SourceIndex(0) name (m1_f1)
3 >Emitted(10, 12) Source(8, 12) + SourceIndex(0) name (m1_f1)
4 >Emitted(10, 32) Source(8, 24) + SourceIndex(0) name (m1_f1)
5 >Emitted(10, 33) Source(8, 25) + SourceIndex(0) name (m1_f1)
---
>>>}
1 >
2 >^
3 > ^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
2 >}
1 >Emitted(11, 1) Source(9, 1) + SourceIndex(0) name (m1_f1)
2 >Emitted(11, 2) Source(9, 2) + SourceIndex(0) name (m1_f1)
---
>>>exports.m1_f1 = m1_f1;
1->
2 >^^^^^^^^^^^^^
3 > ^^^^^^^^
4 > ^
5 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1->
2 >m1_f1
3 > () {
> return m1_instance1;
> }
4 >
1->Emitted(12, 1) Source(7, 17) + SourceIndex(0)
2 >Emitted(12, 14) Source(7, 22) + SourceIndex(0)
3 >Emitted(12, 22) Source(9, 2) + SourceIndex(0)
4 >Emitted(12, 23) Source(9, 2) + SourceIndex(0)
---
>>>//# sourceMappingURL=/tests/cases/projects/outputdir_module_multifolder/mapFiles/outputdir_module_multifolder/ref/m1.js.map===================================================================
JsFile: m2.js
mapUrl: /tests/cases/projects/outputdir_module_multifolder/mapFiles/outputdir_module_multifolder_ref/m2.js.map
sourceRoot:
sources: ../../../outputdir_module_multifolder_ref/m2.ts
===================================================================
-------------------------------------------------------------------
emittedFile:diskFile1.js
sourceFile:../../../outputdir_module_multifolder_ref/m2.ts
-------------------------------------------------------------------
>>>exports.m2_a1 = 10;
1 >
2 >^^^^^^^^^^^^^
3 > ^^^
4 > ^^
5 > ^
6 > ^^^^^^^^->
1 >export var
2 >m2_a1
3 > =
4 > 10
5 > ;
1 >Emitted(1, 1) Source(1, 12) + SourceIndex(0)
2 >Emitted(1, 14) Source(1, 17) + SourceIndex(0)
3 >Emitted(1, 17) Source(1, 20) + SourceIndex(0)
4 >Emitted(1, 19) Source(1, 22) + SourceIndex(0)
5 >Emitted(1, 20) Source(1, 23) + SourceIndex(0)
---
>>>var m2_c1 = (function () {
1->
2 >^^^^^^^^^^^^^^^^^^^^^^^->
1->
>
1->Emitted(2, 1) Source(2, 1) + SourceIndex(0)
---
>>> function m2_c1() {
1->^^^^
2 > ^^->
1->
1->Emitted(3, 5) Source(2, 1) + SourceIndex(0) name (m2_c1)
---
>>> }
1->^^^^
2 > ^
3 > ^^^^^^^^^^^^^->
1->export class m2_c1 {
> public m2_c1_p1: number;
>
2 > }
1->Emitted(4, 5) Source(4, 1) + SourceIndex(0) name (m2_c1.constructor)
2 >Emitted(4, 6) Source(4, 2) + SourceIndex(0) name (m2_c1.constructor)
---
>>> return m2_c1;
1->^^^^
2 > ^^^^^^^^^^^^
1->
2 > }
1->Emitted(5, 5) Source(4, 1) + SourceIndex(0) name (m2_c1)
2 >Emitted(5, 17) Source(4, 2) + SourceIndex(0) name (m2_c1)
---
>>>})();
1 >
2 >^
3 >
4 > ^^^^
5 > ^^^^^^^^^^^^^^^^^^->
1 >
2 >}
3 >
4 > export class m2_c1 {
> public m2_c1_p1: number;
> }
1 >Emitted(6, 1) Source(4, 1) + SourceIndex(0) name (m2_c1)
2 >Emitted(6, 2) Source(4, 2) + SourceIndex(0) name (m2_c1)
3 >Emitted(6, 2) Source(2, 1) + SourceIndex(0)
4 >Emitted(6, 6) Source(4, 2) + SourceIndex(0)
---
>>>exports.m2_c1 = m2_c1;
1->
2 >^^^^^^^^^^^^^
3 > ^^^^^^^^
4 > ^
5 > ^^^^^^^^^^^^^^->
1->
2 >m2_c1
3 > {
> public m2_c1_p1: number;
> }
4 >
1->Emitted(7, 1) Source(2, 14) + SourceIndex(0)
2 >Emitted(7, 14) Source(2, 19) + SourceIndex(0)
3 >Emitted(7, 22) Source(4, 2) + SourceIndex(0)
4 >Emitted(7, 23) Source(4, 2) + SourceIndex(0)
---
>>>exports.m2_instance1 = new m2_c1();
1->
2 >^^^^^^^^^^^^^^^^^^^^
3 > ^^^
4 > ^^^^
5 > ^^^^^
6 > ^^
7 > ^
1->
>
>export var
2 >m2_instance1
3 > =
4 > new
5 > m2_c1
6 > ()
7 > ;
1->Emitted(8, 1) Source(6, 12) + SourceIndex(0)
2 >Emitted(8, 21) Source(6, 24) + SourceIndex(0)
3 >Emitted(8, 24) Source(6, 27) + SourceIndex(0)
4 >Emitted(8, 28) Source(6, 31) + SourceIndex(0)
5 >Emitted(8, 33) Source(6, 36) + SourceIndex(0)
6 >Emitted(8, 35) Source(6, 38) + SourceIndex(0)
7 >Emitted(8, 36) Source(6, 39) + SourceIndex(0)
---
>>>function m2_f1() {
1 >
2 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
1 >Emitted(9, 1) Source(7, 1) + SourceIndex(0)
---
>>> return exports.m2_instance1;
1->^^^^
2 > ^^^^^^
3 > ^
4 > ^^^^^^^^^^^^^^^^^^^^
5 > ^
1->export function m2_f1() {
>
2 > return
3 >
4 > m2_instance1
5 > ;
1->Emitted(10, 5) Source(8, 5) + SourceIndex(0) name (m2_f1)
2 >Emitted(10, 11) Source(8, 11) + SourceIndex(0) name (m2_f1)
3 >Emitted(10, 12) Source(8, 12) + SourceIndex(0) name (m2_f1)
4 >Emitted(10, 32) Source(8, 24) + SourceIndex(0) name (m2_f1)
5 >Emitted(10, 33) Source(8, 25) + SourceIndex(0) name (m2_f1)
---
>>>}
1 >
2 >^
3 > ^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
2 >}
1 >Emitted(11, 1) Source(9, 1) + SourceIndex(0) name (m2_f1)
2 >Emitted(11, 2) Source(9, 2) + SourceIndex(0) name (m2_f1)
---
>>>exports.m2_f1 = m2_f1;
1->
2 >^^^^^^^^^^^^^
3 > ^^^^^^^^
4 > ^
5 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1->
2 >m2_f1
3 > () {
> return m2_instance1;
> }
4 >
1->Emitted(12, 1) Source(7, 17) + SourceIndex(0)
2 >Emitted(12, 14) Source(7, 22) + SourceIndex(0)
3 >Emitted(12, 22) Source(9, 2) + SourceIndex(0)
4 >Emitted(12, 23) Source(9, 2) + SourceIndex(0)
---
>>>//# sourceMappingURL=/tests/cases/projects/outputdir_module_multifolder/mapFiles/outputdir_module_multifolder_ref/m2.js.map===================================================================
JsFile: test.js
mapUrl: /tests/cases/projects/outputdir_module_multifolder/mapFiles/outputdir_module_multifolder/test.js.map
sourceRoot:
sources: ../../test.ts
===================================================================
-------------------------------------------------------------------
emittedFile:test.js
sourceFile:../../test.ts
-------------------------------------------------------------------
>>>var m1 = require("ref/m1");
1 >
2 >^^^^
3 > ^^
4 > ^^^^^^^^^^^
5 > ^^^^^^^^
6 > ^
7 > ^
8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
2 >import
3 > m1
4 > = require(
5 > "ref/m1"
6 > )
7 > ;
1 >Emitted(1, 1) Source(1, 1) + SourceIndex(0)
2 >Emitted(1, 5) Source(1, 8) + SourceIndex(0)
3 >Emitted(1, 7) Source(1, 10) + SourceIndex(0)
4 >Emitted(1, 18) Source(1, 21) + SourceIndex(0)
5 >Emitted(1, 26) Source(1, 29) + SourceIndex(0)
6 >Emitted(1, 27) Source(1, 30) + SourceIndex(0)
7 >Emitted(1, 28) Source(1, 31) + SourceIndex(0)
---
>>>var m2 = require("../outputdir_module_multifolder_ref/m2");
1->
2 >^^^^
3 > ^^
4 > ^^^^^^^^^^^
5 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6 > ^
7 > ^
1->
>
2 >import
3 > m2
4 > = require(
5 > "../outputdir_module_multifolder_ref/m2"
6 > )
7 > ;
1->Emitted(2, 1) Source(2, 1) + SourceIndex(0)
2 >Emitted(2, 5) Source(2, 8) + SourceIndex(0)
3 >Emitted(2, 7) Source(2, 10) + SourceIndex(0)
4 >Emitted(2, 18) Source(2, 21) + SourceIndex(0)
5 >Emitted(2, 58) Source(2, 61) + SourceIndex(0)
6 >Emitted(2, 59) Source(2, 62) + SourceIndex(0)
7 >Emitted(2, 60) Source(2, 63) + SourceIndex(0)
---
>>>exports.a1 = 10;
1 >
2 >^^^^^^^^^^
3 > ^^^
4 > ^^
5 > ^
6 > ^^^^^^^^->
1 >
>export var
2 >a1
3 > =
4 > 10
5 > ;
1 >Emitted(3, 1) Source(3, 12) + SourceIndex(0)
2 >Emitted(3, 11) Source(3, 14) + SourceIndex(0)
3 >Emitted(3, 14) Source(3, 17) + SourceIndex(0)
4 >Emitted(3, 16) Source(3, 19) + SourceIndex(0)
5 >Emitted(3, 17) Source(3, 20) + SourceIndex(0)
---
>>>var c1 = (function () {
1->
2 >^^^^^^^^^^^^^^^^^^^^->
1->
>
1->Emitted(4, 1) Source(4, 1) + SourceIndex(0)
---
>>> function c1() {
1->^^^^
2 > ^^->
1->
1->Emitted(5, 5) Source(4, 1) + SourceIndex(0) name (c1)
---
>>> }
1->^^^^
2 > ^
3 > ^^^^^^^^^^->
1->export class c1 {
> public p1: number;
>
2 > }
1->Emitted(6, 5) Source(6, 1) + SourceIndex(0) name (c1.constructor)
2 >Emitted(6, 6) Source(6, 2) + SourceIndex(0) name (c1.constructor)
---
>>> return c1;
1->^^^^
2 > ^^^^^^^^^
1->
2 > }
1->Emitted(7, 5) Source(6, 1) + SourceIndex(0) name (c1)
2 >Emitted(7, 14) Source(6, 2) + SourceIndex(0) name (c1)
---
>>>})();
1 >
2 >^
3 >
4 > ^^^^
5 > ^^^^^^^^^^^^->
1 >
2 >}
3 >
4 > export class c1 {
> public p1: number;
> }
1 >Emitted(8, 1) Source(6, 1) + SourceIndex(0) name (c1)
2 >Emitted(8, 2) Source(6, 2) + SourceIndex(0) name (c1)
3 >Emitted(8, 2) Source(4, 1) + SourceIndex(0)
4 >Emitted(8, 6) Source(6, 2) + SourceIndex(0)
---
>>>exports.c1 = c1;
1->
2 >^^^^^^^^^^
3 > ^^^^^
4 > ^
5 > ^^^^^^^^^^^^^^->
1->
2 >c1
3 > {
> public p1: number;
> }
4 >
1->Emitted(9, 1) Source(4, 14) + SourceIndex(0)
2 >Emitted(9, 11) Source(4, 16) + SourceIndex(0)
3 >Emitted(9, 16) Source(6, 2) + SourceIndex(0)
4 >Emitted(9, 17) Source(6, 2) + SourceIndex(0)
---
>>>exports.instance1 = new c1();
1->
2 >^^^^^^^^^^^^^^^^^
3 > ^^^
4 > ^^^^
5 > ^^
6 > ^^
7 > ^
1->
>
>export var
2 >instance1
3 > =
4 > new
5 > c1
6 > ()
7 > ;
1->Emitted(10, 1) Source(8, 12) + SourceIndex(0)
2 >Emitted(10, 18) Source(8, 21) + SourceIndex(0)
3 >Emitted(10, 21) Source(8, 24) + SourceIndex(0)
4 >Emitted(10, 25) Source(8, 28) + SourceIndex(0)
5 >Emitted(10, 27) Source(8, 30) + SourceIndex(0)
6 >Emitted(10, 29) Source(8, 32) + SourceIndex(0)
7 >Emitted(10, 30) Source(8, 33) + SourceIndex(0)
---
>>>function f1() {
1 >
2 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
1 >Emitted(11, 1) Source(9, 1) + SourceIndex(0)
---
>>> return exports.instance1;
1->^^^^
2 > ^^^^^^
3 > ^
4 > ^^^^^^^^^^^^^^^^^
5 > ^
1->export function f1() {
>
2 > return
3 >
4 > instance1
5 > ;
1->Emitted(12, 5) Source(10, 5) + SourceIndex(0) name (f1)
2 >Emitted(12, 11) Source(10, 11) + SourceIndex(0) name (f1)
3 >Emitted(12, 12) Source(10, 12) + SourceIndex(0) name (f1)
4 >Emitted(12, 29) Source(10, 21) + SourceIndex(0) name (f1)
5 >Emitted(12, 30) Source(10, 22) + SourceIndex(0) name (f1)
---
>>>}
1 >
2 >^
3 > ^^^^^^^^^^^^^^^^->
1 >
>
2 >}
1 >Emitted(13, 1) Source(11, 1) + SourceIndex(0) name (f1)
2 >Emitted(13, 2) Source(11, 2) + SourceIndex(0) name (f1)
---
>>>exports.f1 = f1;
1->
2 >^^^^^^^^^^
3 > ^^^^^
4 > ^
5 > ^^^^^^^->
1->
2 >f1
3 > () {
> return instance1;
> }
4 >
1->Emitted(14, 1) Source(9, 17) + SourceIndex(0)
2 >Emitted(14, 11) Source(9, 19) + SourceIndex(0)
3 >Emitted(14, 16) Source(11, 2) + SourceIndex(0)
4 >Emitted(14, 17) Source(11, 2) + SourceIndex(0)
---
>>>exports.a2 = m1.m1_c1;
1->
2 >^^^^^^^^^^
3 > ^^^
4 > ^^
5 > ^
6 > ^^^^^
7 > ^
8 > ^->
1->
>
>export var
2 >a2
3 > =
4 > m1
5 > .
6 > m1_c1
7 > ;
1->Emitted(15, 1) Source(13, 12) + SourceIndex(0)
2 >Emitted(15, 11) Source(13, 14) + SourceIndex(0)
3 >Emitted(15, 14) Source(13, 17) + SourceIndex(0)
4 >Emitted(15, 16) Source(13, 19) + SourceIndex(0)
5 >Emitted(15, 17) Source(13, 20) + SourceIndex(0)
6 >Emitted(15, 22) Source(13, 25) + SourceIndex(0)
7 >Emitted(15, 23) Source(13, 26) + SourceIndex(0)
---
>>>exports.a3 = m2.m2_c1;
1->
2 >^^^^^^^^^^
3 > ^^^
4 > ^^
5 > ^
6 > ^^^^^
7 > ^
8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1->
>export var
2 >a3
3 > =
4 > m2
5 > .
6 > m2_c1
7 > ;
1->Emitted(16, 1) Source(14, 12) + SourceIndex(0)
2 >Emitted(16, 11) Source(14, 14) + SourceIndex(0)
3 >Emitted(16, 14) Source(14, 17) + SourceIndex(0)
4 >Emitted(16, 16) Source(14, 19) + SourceIndex(0)
5 >Emitted(16, 17) Source(14, 20) + SourceIndex(0)
6 >Emitted(16, 22) Source(14, 25) + SourceIndex(0)
7 >Emitted(16, 23) Source(14, 26) + SourceIndex(0)
---
>>>//# sourceMappingURL=/tests/cases/projects/outputdir_module_multifolder/mapFiles/outputdir_module_multifolder/test.js.map===================================================================
JsFile: test.js
mapUrl: /tests/cases/projects/outputdir_module_multifolder/mapFiles/test.js.map
sourceRoot:
@@ -1,6 +0,0 @@
export declare var m1_a1: number;
export declare class m1_c1 {
m1_c1_p1: number;
}
export declare var m1_instance1: m1_c1;
export declare function m1_f1(): m1_c1;
@@ -1,13 +0,0 @@
exports.m1_a1 = 10;
var m1_c1 = (function () {
function m1_c1() {
}
return m1_c1;
})();
exports.m1_c1 = m1_c1;
exports.m1_instance1 = new m1_c1();
function m1_f1() {
return exports.m1_instance1;
}
exports.m1_f1 = m1_f1;
//# sourceMappingURL=/tests/cases/projects/outputdir_module_multifolder/mapFiles/outputdir_module_multifolder/ref/m1.js.map
@@ -1 +0,0 @@
{"version":3,"file":"m1.js","sourceRoot":"","sources":["../../../ref/m1.ts"],"names":["m1_c1","m1_c1.constructor","m1_f1"],"mappings":"AAAW,aAAK,GAAG,EAAE,CAAC;AACtB;IAAAA;IAEAC,CAACA;IAADD,YAACA;AAADA,CAACA,AAFD,IAEC;AAFY,aAAK,QAEjB,CAAA;AAEU,oBAAY,GAAG,IAAI,KAAK,EAAE,CAAC;AACtC;IACIE,MAAMA,CAACA,oBAAYA,CAACA;AACxBA,CAACA;AAFe,aAAK,QAEpB,CAAA"}
@@ -1,10 +0,0 @@
import m1 = require("ref/m1");
import m2 = require("../outputdir_module_multifolder_ref/m2");
export declare var a1: number;
export declare class c1 {
p1: number;
}
export declare var instance1: c1;
export declare function f1(): c1;
export declare var a2: typeof m1.m1_c1;
export declare var a3: typeof m2.m2_c1;
@@ -1,17 +0,0 @@
var m1 = require("ref/m1");
var m2 = require("../outputdir_module_multifolder_ref/m2");
exports.a1 = 10;
var c1 = (function () {
function c1() {
}
return c1;
})();
exports.c1 = c1;
exports.instance1 = new c1();
function f1() {
return exports.instance1;
}
exports.f1 = f1;
exports.a2 = m1.m1_c1;
exports.a3 = m2.m2_c1;
//# sourceMappingURL=/tests/cases/projects/outputdir_module_multifolder/mapFiles/outputdir_module_multifolder/test.js.map
@@ -1 +0,0 @@
{"version":3,"file":"test.js","sourceRoot":"","sources":["../../test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"AAAA,IAAO,EAAE,WAAW,QAAQ,CAAC,CAAC;AAC9B,IAAO,EAAE,WAAW,wCAAwC,CAAC,CAAC;AACnD,UAAE,GAAG,EAAE,CAAC;AACnB;IAAAA;IAEAC,CAACA;IAADD,SAACA;AAADA,CAACA,AAFD,IAEC;AAFY,UAAE,KAEd,CAAA;AAEU,iBAAS,GAAG,IAAI,EAAE,EAAE,CAAC;AAChC;IACIE,MAAMA,CAACA,iBAASA,CAACA;AACrBA,CAACA;AAFe,UAAE,KAEjB,CAAA;AAEU,UAAE,GAAG,EAAE,CAAC,KAAK,CAAC;AACd,UAAE,GAAG,EAAE,CAAC,KAAK,CAAC"}
@@ -1,6 +0,0 @@
export declare var m1_a1: number;
export declare class m1_c1 {
m1_c1_p1: number;
}
export declare var m1_instance1: m1_c1;
export declare function m1_f1(): m1_c1;
@@ -1,15 +0,0 @@
define(["require", "exports"], function (require, exports) {
exports.m1_a1 = 10;
var m1_c1 = (function () {
function m1_c1() {
}
return m1_c1;
})();
exports.m1_c1 = m1_c1;
exports.m1_instance1 = new m1_c1();
function m1_f1() {
return exports.m1_instance1;
}
exports.m1_f1 = m1_f1;
});
//# sourceMappingURL=/tests/cases/projects/outputdir_module_simple/mapFiles/m1.js.map
@@ -1 +0,0 @@
{"version":3,"file":"m1.js","sourceRoot":"","sources":["../m1.ts"],"names":["m1_c1","m1_c1.constructor","m1_f1"],"mappings":";IAAW,aAAK,GAAG,EAAE,CAAC;IACtB;QAAAA;QAEAC,CAACA;QAADD,YAACA;IAADA,CAACA,AAFD,IAEC;IAFY,aAAK,QAEjB,CAAA;IAEU,oBAAY,GAAG,IAAI,KAAK,EAAE,CAAC;IACtC;QACIE,MAAMA,CAACA,oBAAYA,CAACA;IACxBA,CAACA;IAFe,aAAK,QAEpB,CAAA"}
@@ -16,12 +16,6 @@
"test.ts"
],
"emittedFiles": [
"m1.js.map",
"m1.js",
"m1.d.ts",
"test.js.map",
"test.js",
"test.d.ts",
"bin/test.js.map",
"bin/test.js",
"bin/test.d.ts"
@@ -1,375 +1,4 @@
===================================================================
JsFile: m1.js
mapUrl: /tests/cases/projects/outputdir_module_simple/mapFiles/m1.js.map
sourceRoot:
sources: ../m1.ts
===================================================================
-------------------------------------------------------------------
emittedFile:m1.js
sourceFile:../m1.ts
-------------------------------------------------------------------
>>>define(["require", "exports"], function (require, exports) {
>>> exports.m1_a1 = 10;
1 >^^^^
2 > ^^^^^^^^^^^^^
3 > ^^^
4 > ^^
5 > ^
6 > ^^^^^^^^->
1 >export var
2 > m1_a1
3 > =
4 > 10
5 > ;
1 >Emitted(2, 5) Source(1, 12) + SourceIndex(0)
2 >Emitted(2, 18) Source(1, 17) + SourceIndex(0)
3 >Emitted(2, 21) Source(1, 20) + SourceIndex(0)
4 >Emitted(2, 23) Source(1, 22) + SourceIndex(0)
5 >Emitted(2, 24) Source(1, 23) + SourceIndex(0)
---
>>> var m1_c1 = (function () {
1->^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^->
1->
>
1->Emitted(3, 5) Source(2, 1) + SourceIndex(0)
---
>>> function m1_c1() {
1->^^^^^^^^
2 > ^^->
1->
1->Emitted(4, 9) Source(2, 1) + SourceIndex(0) name (m1_c1)
---
>>> }
1->^^^^^^^^
2 > ^
3 > ^^^^^^^^^^^^^->
1->export class m1_c1 {
> public m1_c1_p1: number;
>
2 > }
1->Emitted(5, 9) Source(4, 1) + SourceIndex(0) name (m1_c1.constructor)
2 >Emitted(5, 10) Source(4, 2) + SourceIndex(0) name (m1_c1.constructor)
---
>>> return m1_c1;
1->^^^^^^^^
2 > ^^^^^^^^^^^^
1->
2 > }
1->Emitted(6, 9) Source(4, 1) + SourceIndex(0) name (m1_c1)
2 >Emitted(6, 21) Source(4, 2) + SourceIndex(0) name (m1_c1)
---
>>> })();
1 >^^^^
2 > ^
3 >
4 > ^^^^
5 > ^^^^^^^^^^^^^^^^^^->
1 >
2 > }
3 >
4 > export class m1_c1 {
> public m1_c1_p1: number;
> }
1 >Emitted(7, 5) Source(4, 1) + SourceIndex(0) name (m1_c1)
2 >Emitted(7, 6) Source(4, 2) + SourceIndex(0) name (m1_c1)
3 >Emitted(7, 6) Source(2, 1) + SourceIndex(0)
4 >Emitted(7, 10) Source(4, 2) + SourceIndex(0)
---
>>> exports.m1_c1 = m1_c1;
1->^^^^
2 > ^^^^^^^^^^^^^
3 > ^^^^^^^^
4 > ^
5 > ^^^^^^^^^^^^^^->
1->
2 > m1_c1
3 > {
> public m1_c1_p1: number;
> }
4 >
1->Emitted(8, 5) Source(2, 14) + SourceIndex(0)
2 >Emitted(8, 18) Source(2, 19) + SourceIndex(0)
3 >Emitted(8, 26) Source(4, 2) + SourceIndex(0)
4 >Emitted(8, 27) Source(4, 2) + SourceIndex(0)
---
>>> exports.m1_instance1 = new m1_c1();
1->^^^^
2 > ^^^^^^^^^^^^^^^^^^^^
3 > ^^^
4 > ^^^^
5 > ^^^^^
6 > ^^
7 > ^
1->
>
>export var
2 > m1_instance1
3 > =
4 > new
5 > m1_c1
6 > ()
7 > ;
1->Emitted(9, 5) Source(6, 12) + SourceIndex(0)
2 >Emitted(9, 25) Source(6, 24) + SourceIndex(0)
3 >Emitted(9, 28) Source(6, 27) + SourceIndex(0)
4 >Emitted(9, 32) Source(6, 31) + SourceIndex(0)
5 >Emitted(9, 37) Source(6, 36) + SourceIndex(0)
6 >Emitted(9, 39) Source(6, 38) + SourceIndex(0)
7 >Emitted(9, 40) Source(6, 39) + SourceIndex(0)
---
>>> function m1_f1() {
1 >^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
1 >Emitted(10, 5) Source(7, 1) + SourceIndex(0)
---
>>> return exports.m1_instance1;
1->^^^^^^^^
2 > ^^^^^^
3 > ^
4 > ^^^^^^^^^^^^^^^^^^^^
5 > ^
1->export function m1_f1() {
>
2 > return
3 >
4 > m1_instance1
5 > ;
1->Emitted(11, 9) Source(8, 5) + SourceIndex(0) name (m1_f1)
2 >Emitted(11, 15) Source(8, 11) + SourceIndex(0) name (m1_f1)
3 >Emitted(11, 16) Source(8, 12) + SourceIndex(0) name (m1_f1)
4 >Emitted(11, 36) Source(8, 24) + SourceIndex(0) name (m1_f1)
5 >Emitted(11, 37) Source(8, 25) + SourceIndex(0) name (m1_f1)
---
>>> }
1 >^^^^
2 > ^
3 > ^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
2 > }
1 >Emitted(12, 5) Source(9, 1) + SourceIndex(0) name (m1_f1)
2 >Emitted(12, 6) Source(9, 2) + SourceIndex(0) name (m1_f1)
---
>>> exports.m1_f1 = m1_f1;
1->^^^^
2 > ^^^^^^^^^^^^^
3 > ^^^^^^^^
4 > ^
1->
2 > m1_f1
3 > () {
> return m1_instance1;
> }
4 >
1->Emitted(13, 5) Source(7, 17) + SourceIndex(0)
2 >Emitted(13, 18) Source(7, 22) + SourceIndex(0)
3 >Emitted(13, 26) Source(9, 2) + SourceIndex(0)
4 >Emitted(13, 27) Source(9, 2) + SourceIndex(0)
---
>>>});
>>>//# sourceMappingURL=/tests/cases/projects/outputdir_module_simple/mapFiles/m1.js.map===================================================================
JsFile: test.js
mapUrl: /tests/cases/projects/outputdir_module_simple/mapFiles/test.js.map
sourceRoot:
sources: ../test.ts
===================================================================
-------------------------------------------------------------------
emittedFile:test.js
sourceFile:../test.ts
-------------------------------------------------------------------
>>>define(["require", "exports", "m1"], function (require, exports, m1) {
>>> exports.a1 = 10;
1 >^^^^
2 > ^^^^^^^^^^
3 > ^^^
4 > ^^
5 > ^
6 > ^^^^^^^^->
1 >import m1 = require("m1");
>export var
2 > a1
3 > =
4 > 10
5 > ;
1 >Emitted(2, 5) Source(2, 12) + SourceIndex(0)
2 >Emitted(2, 15) Source(2, 14) + SourceIndex(0)
3 >Emitted(2, 18) Source(2, 17) + SourceIndex(0)
4 >Emitted(2, 20) Source(2, 19) + SourceIndex(0)
5 >Emitted(2, 21) Source(2, 20) + SourceIndex(0)
---
>>> var c1 = (function () {
1->^^^^
2 > ^^^^^^^^^^^^^^^^^^^^->
1->
>
1->Emitted(3, 5) Source(3, 1) + SourceIndex(0)
---
>>> function c1() {
1->^^^^^^^^
2 > ^^->
1->
1->Emitted(4, 9) Source(3, 1) + SourceIndex(0) name (c1)
---
>>> }
1->^^^^^^^^
2 > ^
3 > ^^^^^^^^^^->
1->export class c1 {
> public p1: number;
>
2 > }
1->Emitted(5, 9) Source(5, 1) + SourceIndex(0) name (c1.constructor)
2 >Emitted(5, 10) Source(5, 2) + SourceIndex(0) name (c1.constructor)
---
>>> return c1;
1->^^^^^^^^
2 > ^^^^^^^^^
1->
2 > }
1->Emitted(6, 9) Source(5, 1) + SourceIndex(0) name (c1)
2 >Emitted(6, 18) Source(5, 2) + SourceIndex(0) name (c1)
---
>>> })();
1 >^^^^
2 > ^
3 >
4 > ^^^^
5 > ^^^^^^^^^^^^->
1 >
2 > }
3 >
4 > export class c1 {
> public p1: number;
> }
1 >Emitted(7, 5) Source(5, 1) + SourceIndex(0) name (c1)
2 >Emitted(7, 6) Source(5, 2) + SourceIndex(0) name (c1)
3 >Emitted(7, 6) Source(3, 1) + SourceIndex(0)
4 >Emitted(7, 10) Source(5, 2) + SourceIndex(0)
---
>>> exports.c1 = c1;
1->^^^^
2 > ^^^^^^^^^^
3 > ^^^^^
4 > ^
5 > ^^^^^^^^^^^^^^->
1->
2 > c1
3 > {
> public p1: number;
> }
4 >
1->Emitted(8, 5) Source(3, 14) + SourceIndex(0)
2 >Emitted(8, 15) Source(3, 16) + SourceIndex(0)
3 >Emitted(8, 20) Source(5, 2) + SourceIndex(0)
4 >Emitted(8, 21) Source(5, 2) + SourceIndex(0)
---
>>> exports.instance1 = new c1();
1->^^^^
2 > ^^^^^^^^^^^^^^^^^
3 > ^^^
4 > ^^^^
5 > ^^
6 > ^^
7 > ^
1->
>
>export var
2 > instance1
3 > =
4 > new
5 > c1
6 > ()
7 > ;
1->Emitted(9, 5) Source(7, 12) + SourceIndex(0)
2 >Emitted(9, 22) Source(7, 21) + SourceIndex(0)
3 >Emitted(9, 25) Source(7, 24) + SourceIndex(0)
4 >Emitted(9, 29) Source(7, 28) + SourceIndex(0)
5 >Emitted(9, 31) Source(7, 30) + SourceIndex(0)
6 >Emitted(9, 33) Source(7, 32) + SourceIndex(0)
7 >Emitted(9, 34) Source(7, 33) + SourceIndex(0)
---
>>> function f1() {
1 >^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
1 >Emitted(10, 5) Source(8, 1) + SourceIndex(0)
---
>>> return exports.instance1;
1->^^^^^^^^
2 > ^^^^^^
3 > ^
4 > ^^^^^^^^^^^^^^^^^
5 > ^
1->export function f1() {
>
2 > return
3 >
4 > instance1
5 > ;
1->Emitted(11, 9) Source(9, 5) + SourceIndex(0) name (f1)
2 >Emitted(11, 15) Source(9, 11) + SourceIndex(0) name (f1)
3 >Emitted(11, 16) Source(9, 12) + SourceIndex(0) name (f1)
4 >Emitted(11, 33) Source(9, 21) + SourceIndex(0) name (f1)
5 >Emitted(11, 34) Source(9, 22) + SourceIndex(0) name (f1)
---
>>> }
1 >^^^^
2 > ^
3 > ^^^^^^^^^^^^^^^^->
1 >
>
2 > }
1 >Emitted(12, 5) Source(10, 1) + SourceIndex(0) name (f1)
2 >Emitted(12, 6) Source(10, 2) + SourceIndex(0) name (f1)
---
>>> exports.f1 = f1;
1->^^^^
2 > ^^^^^^^^^^
3 > ^^^^^
4 > ^
5 > ^^^^^^^->
1->
2 > f1
3 > () {
> return instance1;
> }
4 >
1->Emitted(13, 5) Source(8, 17) + SourceIndex(0)
2 >Emitted(13, 15) Source(8, 19) + SourceIndex(0)
3 >Emitted(13, 20) Source(10, 2) + SourceIndex(0)
4 >Emitted(13, 21) Source(10, 2) + SourceIndex(0)
---
>>> exports.a2 = m1.m1_c1;
1->^^^^
2 > ^^^^^^^^^^
3 > ^^^
4 > ^^
5 > ^
6 > ^^^^^
7 > ^
1->
>
>export var
2 > a2
3 > =
4 > m1
5 > .
6 > m1_c1
7 > ;
1->Emitted(14, 5) Source(12, 12) + SourceIndex(0)
2 >Emitted(14, 15) Source(12, 14) + SourceIndex(0)
3 >Emitted(14, 18) Source(12, 17) + SourceIndex(0)
4 >Emitted(14, 20) Source(12, 19) + SourceIndex(0)
5 >Emitted(14, 21) Source(12, 20) + SourceIndex(0)
6 >Emitted(14, 26) Source(12, 25) + SourceIndex(0)
7 >Emitted(14, 27) Source(12, 26) + SourceIndex(0)
---
>>>});
>>>//# sourceMappingURL=/tests/cases/projects/outputdir_module_simple/mapFiles/test.js.map===================================================================
JsFile: test.js
mapUrl: /tests/cases/projects/outputdir_module_simple/mapFiles/test.js.map
sourceRoot:
@@ -1,8 +0,0 @@
import m1 = require("m1");
export declare var a1: number;
export declare class c1 {
p1: number;
}
export declare var instance1: c1;
export declare function f1(): c1;
export declare var a2: typeof m1.m1_c1;
@@ -1,16 +0,0 @@
define(["require", "exports", "m1"], function (require, exports, m1) {
exports.a1 = 10;
var c1 = (function () {
function c1() {
}
return c1;
})();
exports.c1 = c1;
exports.instance1 = new c1();
function f1() {
return exports.instance1;
}
exports.f1 = f1;
exports.a2 = m1.m1_c1;
});
//# sourceMappingURL=/tests/cases/projects/outputdir_module_simple/mapFiles/test.js.map
@@ -1 +0,0 @@
{"version":3,"file":"test.js","sourceRoot":"","sources":["../test.ts"],"names":["c1","c1.constructor","f1"],"mappings":";IACW,UAAE,GAAG,EAAE,CAAC;IACnB;QAAAA;QAEAC,CAACA;QAADD,SAACA;IAADA,CAACA,AAFD,IAEC;IAFY,UAAE,KAEd,CAAA;IAEU,iBAAS,GAAG,IAAI,EAAE,EAAE,CAAC;IAChC;QACIE,MAAMA,CAACA,iBAASA,CAACA;IACrBA,CAACA;IAFe,UAAE,KAEjB,CAAA;IAEU,UAAE,GAAG,EAAE,CAAC,KAAK,CAAC"}
@@ -1,6 +0,0 @@
export declare var m1_a1: number;
export declare class m1_c1 {
m1_c1_p1: number;
}
export declare var m1_instance1: m1_c1;
export declare function m1_f1(): m1_c1;
@@ -1,13 +0,0 @@
exports.m1_a1 = 10;
var m1_c1 = (function () {
function m1_c1() {
}
return m1_c1;
})();
exports.m1_c1 = m1_c1;
exports.m1_instance1 = new m1_c1();
function m1_f1() {
return exports.m1_instance1;
}
exports.m1_f1 = m1_f1;
//# sourceMappingURL=/tests/cases/projects/outputdir_module_simple/mapFiles/m1.js.map
@@ -1 +0,0 @@
{"version":3,"file":"m1.js","sourceRoot":"","sources":["../m1.ts"],"names":["m1_c1","m1_c1.constructor","m1_f1"],"mappings":"AAAW,aAAK,GAAG,EAAE,CAAC;AACtB;IAAAA;IAEAC,CAACA;IAADD,YAACA;AAADA,CAACA,AAFD,IAEC;AAFY,aAAK,QAEjB,CAAA;AAEU,oBAAY,GAAG,IAAI,KAAK,EAAE,CAAC;AACtC;IACIE,MAAMA,CAACA,oBAAYA,CAACA;AACxBA,CAACA;AAFe,aAAK,QAEpB,CAAA"}
@@ -16,12 +16,6 @@
"test.ts"
],
"emittedFiles": [
"m1.js.map",
"m1.js",
"m1.d.ts",
"test.js.map",
"test.js",
"test.d.ts",
"bin/test.js.map",
"bin/test.js",
"bin/test.d.ts"
@@ -1,396 +1,4 @@
===================================================================
JsFile: m1.js
mapUrl: /tests/cases/projects/outputdir_module_simple/mapFiles/m1.js.map
sourceRoot:
sources: ../m1.ts
===================================================================
-------------------------------------------------------------------
emittedFile:m1.js
sourceFile:../m1.ts
-------------------------------------------------------------------
>>>exports.m1_a1 = 10;
1 >
2 >^^^^^^^^^^^^^
3 > ^^^
4 > ^^
5 > ^
6 > ^^^^^^^^->
1 >export var
2 >m1_a1
3 > =
4 > 10
5 > ;
1 >Emitted(1, 1) Source(1, 12) + SourceIndex(0)
2 >Emitted(1, 14) Source(1, 17) + SourceIndex(0)
3 >Emitted(1, 17) Source(1, 20) + SourceIndex(0)
4 >Emitted(1, 19) Source(1, 22) + SourceIndex(0)
5 >Emitted(1, 20) Source(1, 23) + SourceIndex(0)
---
>>>var m1_c1 = (function () {
1->
2 >^^^^^^^^^^^^^^^^^^^^^^^->
1->
>
1->Emitted(2, 1) Source(2, 1) + SourceIndex(0)
---
>>> function m1_c1() {
1->^^^^
2 > ^^->
1->
1->Emitted(3, 5) Source(2, 1) + SourceIndex(0) name (m1_c1)
---
>>> }
1->^^^^
2 > ^
3 > ^^^^^^^^^^^^^->
1->export class m1_c1 {
> public m1_c1_p1: number;
>
2 > }
1->Emitted(4, 5) Source(4, 1) + SourceIndex(0) name (m1_c1.constructor)
2 >Emitted(4, 6) Source(4, 2) + SourceIndex(0) name (m1_c1.constructor)
---
>>> return m1_c1;
1->^^^^
2 > ^^^^^^^^^^^^
1->
2 > }
1->Emitted(5, 5) Source(4, 1) + SourceIndex(0) name (m1_c1)
2 >Emitted(5, 17) Source(4, 2) + SourceIndex(0) name (m1_c1)
---
>>>})();
1 >
2 >^
3 >
4 > ^^^^
5 > ^^^^^^^^^^^^^^^^^^->
1 >
2 >}
3 >
4 > export class m1_c1 {
> public m1_c1_p1: number;
> }
1 >Emitted(6, 1) Source(4, 1) + SourceIndex(0) name (m1_c1)
2 >Emitted(6, 2) Source(4, 2) + SourceIndex(0) name (m1_c1)
3 >Emitted(6, 2) Source(2, 1) + SourceIndex(0)
4 >Emitted(6, 6) Source(4, 2) + SourceIndex(0)
---
>>>exports.m1_c1 = m1_c1;
1->
2 >^^^^^^^^^^^^^
3 > ^^^^^^^^
4 > ^
5 > ^^^^^^^^^^^^^^->
1->
2 >m1_c1
3 > {
> public m1_c1_p1: number;
> }
4 >
1->Emitted(7, 1) Source(2, 14) + SourceIndex(0)
2 >Emitted(7, 14) Source(2, 19) + SourceIndex(0)
3 >Emitted(7, 22) Source(4, 2) + SourceIndex(0)
4 >Emitted(7, 23) Source(4, 2) + SourceIndex(0)
---
>>>exports.m1_instance1 = new m1_c1();
1->
2 >^^^^^^^^^^^^^^^^^^^^
3 > ^^^
4 > ^^^^
5 > ^^^^^
6 > ^^
7 > ^
1->
>
>export var
2 >m1_instance1
3 > =
4 > new
5 > m1_c1
6 > ()
7 > ;
1->Emitted(8, 1) Source(6, 12) + SourceIndex(0)
2 >Emitted(8, 21) Source(6, 24) + SourceIndex(0)
3 >Emitted(8, 24) Source(6, 27) + SourceIndex(0)
4 >Emitted(8, 28) Source(6, 31) + SourceIndex(0)
5 >Emitted(8, 33) Source(6, 36) + SourceIndex(0)
6 >Emitted(8, 35) Source(6, 38) + SourceIndex(0)
7 >Emitted(8, 36) Source(6, 39) + SourceIndex(0)
---
>>>function m1_f1() {
1 >
2 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
1 >Emitted(9, 1) Source(7, 1) + SourceIndex(0)
---
>>> return exports.m1_instance1;
1->^^^^
2 > ^^^^^^
3 > ^
4 > ^^^^^^^^^^^^^^^^^^^^
5 > ^
1->export function m1_f1() {
>
2 > return
3 >
4 > m1_instance1
5 > ;
1->Emitted(10, 5) Source(8, 5) + SourceIndex(0) name (m1_f1)
2 >Emitted(10, 11) Source(8, 11) + SourceIndex(0) name (m1_f1)
3 >Emitted(10, 12) Source(8, 12) + SourceIndex(0) name (m1_f1)
4 >Emitted(10, 32) Source(8, 24) + SourceIndex(0) name (m1_f1)
5 >Emitted(10, 33) Source(8, 25) + SourceIndex(0) name (m1_f1)
---
>>>}
1 >
2 >^
3 > ^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
2 >}
1 >Emitted(11, 1) Source(9, 1) + SourceIndex(0) name (m1_f1)
2 >Emitted(11, 2) Source(9, 2) + SourceIndex(0) name (m1_f1)
---
>>>exports.m1_f1 = m1_f1;
1->
2 >^^^^^^^^^^^^^
3 > ^^^^^^^^
4 > ^
5 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1->
2 >m1_f1
3 > () {
> return m1_instance1;
> }
4 >
1->Emitted(12, 1) Source(7, 17) + SourceIndex(0)
2 >Emitted(12, 14) Source(7, 22) + SourceIndex(0)
3 >Emitted(12, 22) Source(9, 2) + SourceIndex(0)
4 >Emitted(12, 23) Source(9, 2) + SourceIndex(0)
---
>>>//# sourceMappingURL=/tests/cases/projects/outputdir_module_simple/mapFiles/m1.js.map===================================================================
JsFile: test.js
mapUrl: /tests/cases/projects/outputdir_module_simple/mapFiles/test.js.map
sourceRoot:
sources: ../test.ts
===================================================================
-------------------------------------------------------------------
emittedFile:test.js
sourceFile:../test.ts
-------------------------------------------------------------------
>>>var m1 = require("m1");
1 >
2 >^^^^
3 > ^^
4 > ^^^^^^^^^^^
5 > ^^^^
6 > ^
7 > ^
1 >
2 >import
3 > m1
4 > = require(
5 > "m1"
6 > )
7 > ;
1 >Emitted(1, 1) Source(1, 1) + SourceIndex(0)
2 >Emitted(1, 5) Source(1, 8) + SourceIndex(0)
3 >Emitted(1, 7) Source(1, 10) + SourceIndex(0)
4 >Emitted(1, 18) Source(1, 21) + SourceIndex(0)
5 >Emitted(1, 22) Source(1, 25) + SourceIndex(0)
6 >Emitted(1, 23) Source(1, 26) + SourceIndex(0)
7 >Emitted(1, 24) Source(1, 27) + SourceIndex(0)
---
>>>exports.a1 = 10;
1 >
2 >^^^^^^^^^^
3 > ^^^
4 > ^^
5 > ^
6 > ^^^^^^^^->
1 >
>export var
2 >a1
3 > =
4 > 10
5 > ;
1 >Emitted(2, 1) Source(2, 12) + SourceIndex(0)
2 >Emitted(2, 11) Source(2, 14) + SourceIndex(0)
3 >Emitted(2, 14) Source(2, 17) + SourceIndex(0)
4 >Emitted(2, 16) Source(2, 19) + SourceIndex(0)
5 >Emitted(2, 17) Source(2, 20) + SourceIndex(0)
---
>>>var c1 = (function () {
1->
2 >^^^^^^^^^^^^^^^^^^^^->
1->
>
1->Emitted(3, 1) Source(3, 1) + SourceIndex(0)
---
>>> function c1() {
1->^^^^
2 > ^^->
1->
1->Emitted(4, 5) Source(3, 1) + SourceIndex(0) name (c1)
---
>>> }
1->^^^^
2 > ^
3 > ^^^^^^^^^^->
1->export class c1 {
> public p1: number;
>
2 > }
1->Emitted(5, 5) Source(5, 1) + SourceIndex(0) name (c1.constructor)
2 >Emitted(5, 6) Source(5, 2) + SourceIndex(0) name (c1.constructor)
---
>>> return c1;
1->^^^^
2 > ^^^^^^^^^
1->
2 > }
1->Emitted(6, 5) Source(5, 1) + SourceIndex(0) name (c1)
2 >Emitted(6, 14) Source(5, 2) + SourceIndex(0) name (c1)
---
>>>})();
1 >
2 >^
3 >
4 > ^^^^
5 > ^^^^^^^^^^^^->
1 >
2 >}
3 >
4 > export class c1 {
> public p1: number;
> }
1 >Emitted(7, 1) Source(5, 1) + SourceIndex(0) name (c1)
2 >Emitted(7, 2) Source(5, 2) + SourceIndex(0) name (c1)
3 >Emitted(7, 2) Source(3, 1) + SourceIndex(0)
4 >Emitted(7, 6) Source(5, 2) + SourceIndex(0)
---
>>>exports.c1 = c1;
1->
2 >^^^^^^^^^^
3 > ^^^^^
4 > ^
5 > ^^^^^^^^^^^^^^->
1->
2 >c1
3 > {
> public p1: number;
> }
4 >
1->Emitted(8, 1) Source(3, 14) + SourceIndex(0)
2 >Emitted(8, 11) Source(3, 16) + SourceIndex(0)
3 >Emitted(8, 16) Source(5, 2) + SourceIndex(0)
4 >Emitted(8, 17) Source(5, 2) + SourceIndex(0)
---
>>>exports.instance1 = new c1();
1->
2 >^^^^^^^^^^^^^^^^^
3 > ^^^
4 > ^^^^
5 > ^^
6 > ^^
7 > ^
1->
>
>export var
2 >instance1
3 > =
4 > new
5 > c1
6 > ()
7 > ;
1->Emitted(9, 1) Source(7, 12) + SourceIndex(0)
2 >Emitted(9, 18) Source(7, 21) + SourceIndex(0)
3 >Emitted(9, 21) Source(7, 24) + SourceIndex(0)
4 >Emitted(9, 25) Source(7, 28) + SourceIndex(0)
5 >Emitted(9, 27) Source(7, 30) + SourceIndex(0)
6 >Emitted(9, 29) Source(7, 32) + SourceIndex(0)
7 >Emitted(9, 30) Source(7, 33) + SourceIndex(0)
---
>>>function f1() {
1 >
2 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
1 >Emitted(10, 1) Source(8, 1) + SourceIndex(0)
---
>>> return exports.instance1;
1->^^^^
2 > ^^^^^^
3 > ^
4 > ^^^^^^^^^^^^^^^^^
5 > ^
1->export function f1() {
>
2 > return
3 >
4 > instance1
5 > ;
1->Emitted(11, 5) Source(9, 5) + SourceIndex(0) name (f1)
2 >Emitted(11, 11) Source(9, 11) + SourceIndex(0) name (f1)
3 >Emitted(11, 12) Source(9, 12) + SourceIndex(0) name (f1)
4 >Emitted(11, 29) Source(9, 21) + SourceIndex(0) name (f1)
5 >Emitted(11, 30) Source(9, 22) + SourceIndex(0) name (f1)
---
>>>}
1 >
2 >^
3 > ^^^^^^^^^^^^^^^^->
1 >
>
2 >}
1 >Emitted(12, 1) Source(10, 1) + SourceIndex(0) name (f1)
2 >Emitted(12, 2) Source(10, 2) + SourceIndex(0) name (f1)
---
>>>exports.f1 = f1;
1->
2 >^^^^^^^^^^
3 > ^^^^^
4 > ^
5 > ^^^^^^^->
1->
2 >f1
3 > () {
> return instance1;
> }
4 >
1->Emitted(13, 1) Source(8, 17) + SourceIndex(0)
2 >Emitted(13, 11) Source(8, 19) + SourceIndex(0)
3 >Emitted(13, 16) Source(10, 2) + SourceIndex(0)
4 >Emitted(13, 17) Source(10, 2) + SourceIndex(0)
---
>>>exports.a2 = m1.m1_c1;
1->
2 >^^^^^^^^^^
3 > ^^^
4 > ^^
5 > ^
6 > ^^^^^
7 > ^
8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1->
>
>export var
2 >a2
3 > =
4 > m1
5 > .
6 > m1_c1
7 > ;
1->Emitted(14, 1) Source(12, 12) + SourceIndex(0)
2 >Emitted(14, 11) Source(12, 14) + SourceIndex(0)
3 >Emitted(14, 14) Source(12, 17) + SourceIndex(0)
4 >Emitted(14, 16) Source(12, 19) + SourceIndex(0)
5 >Emitted(14, 17) Source(12, 20) + SourceIndex(0)
6 >Emitted(14, 22) Source(12, 25) + SourceIndex(0)
7 >Emitted(14, 23) Source(12, 26) + SourceIndex(0)
---
>>>//# sourceMappingURL=/tests/cases/projects/outputdir_module_simple/mapFiles/test.js.map===================================================================
JsFile: test.js
mapUrl: /tests/cases/projects/outputdir_module_simple/mapFiles/test.js.map
sourceRoot:
@@ -1,8 +0,0 @@
import m1 = require("m1");
export declare var a1: number;
export declare class c1 {
p1: number;
}
export declare var instance1: c1;
export declare function f1(): c1;
export declare var a2: typeof m1.m1_c1;
@@ -1,15 +0,0 @@
var m1 = require("m1");
exports.a1 = 10;
var c1 = (function () {
function c1() {
}
return c1;
})();
exports.c1 = c1;
exports.instance1 = new c1();
function f1() {
return exports.instance1;
}
exports.f1 = f1;
exports.a2 = m1.m1_c1;
//# sourceMappingURL=/tests/cases/projects/outputdir_module_simple/mapFiles/test.js.map
@@ -1 +0,0 @@
{"version":3,"file":"test.js","sourceRoot":"","sources":["../test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"AAAA,IAAO,EAAE,WAAW,IAAI,CAAC,CAAC;AACf,UAAE,GAAG,EAAE,CAAC;AACnB;IAAAA;IAEAC,CAACA;IAADD,SAACA;AAADA,CAACA,AAFD,IAEC;AAFY,UAAE,KAEd,CAAA;AAEU,iBAAS,GAAG,IAAI,EAAE,EAAE,CAAC;AAChC;IACIE,MAAMA,CAACA,iBAASA,CAACA;AACrBA,CAACA;AAFe,UAAE,KAEjB,CAAA;AAEU,UAAE,GAAG,EAAE,CAAC,KAAK,CAAC"}
@@ -16,12 +16,6 @@
"test.ts"
],
"emittedFiles": [
"ref/m1.js.map",
"ref/m1.js",
"ref/m1.d.ts",
"test.js.map",
"test.js",
"test.d.ts",
"bin/test.js.map",
"bin/test.js",
"bin/test.d.ts"
@@ -1,375 +1,4 @@
===================================================================
JsFile: m1.js
mapUrl: /tests/cases/projects/outputdir_module_subfolder/mapFiles/ref/m1.js.map
sourceRoot:
sources: ../../ref/m1.ts
===================================================================
-------------------------------------------------------------------
emittedFile:ref/m1.js
sourceFile:../../ref/m1.ts
-------------------------------------------------------------------
>>>define(["require", "exports"], function (require, exports) {
>>> exports.m1_a1 = 10;
1 >^^^^
2 > ^^^^^^^^^^^^^
3 > ^^^
4 > ^^
5 > ^
6 > ^^^^^^^^->
1 >export var
2 > m1_a1
3 > =
4 > 10
5 > ;
1 >Emitted(2, 5) Source(1, 12) + SourceIndex(0)
2 >Emitted(2, 18) Source(1, 17) + SourceIndex(0)
3 >Emitted(2, 21) Source(1, 20) + SourceIndex(0)
4 >Emitted(2, 23) Source(1, 22) + SourceIndex(0)
5 >Emitted(2, 24) Source(1, 23) + SourceIndex(0)
---
>>> var m1_c1 = (function () {
1->^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^->
1->
>
1->Emitted(3, 5) Source(2, 1) + SourceIndex(0)
---
>>> function m1_c1() {
1->^^^^^^^^
2 > ^^->
1->
1->Emitted(4, 9) Source(2, 1) + SourceIndex(0) name (m1_c1)
---
>>> }
1->^^^^^^^^
2 > ^
3 > ^^^^^^^^^^^^^->
1->export class m1_c1 {
> public m1_c1_p1: number;
>
2 > }
1->Emitted(5, 9) Source(4, 1) + SourceIndex(0) name (m1_c1.constructor)
2 >Emitted(5, 10) Source(4, 2) + SourceIndex(0) name (m1_c1.constructor)
---
>>> return m1_c1;
1->^^^^^^^^
2 > ^^^^^^^^^^^^
1->
2 > }
1->Emitted(6, 9) Source(4, 1) + SourceIndex(0) name (m1_c1)
2 >Emitted(6, 21) Source(4, 2) + SourceIndex(0) name (m1_c1)
---
>>> })();
1 >^^^^
2 > ^
3 >
4 > ^^^^
5 > ^^^^^^^^^^^^^^^^^^->
1 >
2 > }
3 >
4 > export class m1_c1 {
> public m1_c1_p1: number;
> }
1 >Emitted(7, 5) Source(4, 1) + SourceIndex(0) name (m1_c1)
2 >Emitted(7, 6) Source(4, 2) + SourceIndex(0) name (m1_c1)
3 >Emitted(7, 6) Source(2, 1) + SourceIndex(0)
4 >Emitted(7, 10) Source(4, 2) + SourceIndex(0)
---
>>> exports.m1_c1 = m1_c1;
1->^^^^
2 > ^^^^^^^^^^^^^
3 > ^^^^^^^^
4 > ^
5 > ^^^^^^^^^^^^^^->
1->
2 > m1_c1
3 > {
> public m1_c1_p1: number;
> }
4 >
1->Emitted(8, 5) Source(2, 14) + SourceIndex(0)
2 >Emitted(8, 18) Source(2, 19) + SourceIndex(0)
3 >Emitted(8, 26) Source(4, 2) + SourceIndex(0)
4 >Emitted(8, 27) Source(4, 2) + SourceIndex(0)
---
>>> exports.m1_instance1 = new m1_c1();
1->^^^^
2 > ^^^^^^^^^^^^^^^^^^^^
3 > ^^^
4 > ^^^^
5 > ^^^^^
6 > ^^
7 > ^
1->
>
>export var
2 > m1_instance1
3 > =
4 > new
5 > m1_c1
6 > ()
7 > ;
1->Emitted(9, 5) Source(6, 12) + SourceIndex(0)
2 >Emitted(9, 25) Source(6, 24) + SourceIndex(0)
3 >Emitted(9, 28) Source(6, 27) + SourceIndex(0)
4 >Emitted(9, 32) Source(6, 31) + SourceIndex(0)
5 >Emitted(9, 37) Source(6, 36) + SourceIndex(0)
6 >Emitted(9, 39) Source(6, 38) + SourceIndex(0)
7 >Emitted(9, 40) Source(6, 39) + SourceIndex(0)
---
>>> function m1_f1() {
1 >^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
1 >Emitted(10, 5) Source(7, 1) + SourceIndex(0)
---
>>> return exports.m1_instance1;
1->^^^^^^^^
2 > ^^^^^^
3 > ^
4 > ^^^^^^^^^^^^^^^^^^^^
5 > ^
1->export function m1_f1() {
>
2 > return
3 >
4 > m1_instance1
5 > ;
1->Emitted(11, 9) Source(8, 5) + SourceIndex(0) name (m1_f1)
2 >Emitted(11, 15) Source(8, 11) + SourceIndex(0) name (m1_f1)
3 >Emitted(11, 16) Source(8, 12) + SourceIndex(0) name (m1_f1)
4 >Emitted(11, 36) Source(8, 24) + SourceIndex(0) name (m1_f1)
5 >Emitted(11, 37) Source(8, 25) + SourceIndex(0) name (m1_f1)
---
>>> }
1 >^^^^
2 > ^
3 > ^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
2 > }
1 >Emitted(12, 5) Source(9, 1) + SourceIndex(0) name (m1_f1)
2 >Emitted(12, 6) Source(9, 2) + SourceIndex(0) name (m1_f1)
---
>>> exports.m1_f1 = m1_f1;
1->^^^^
2 > ^^^^^^^^^^^^^
3 > ^^^^^^^^
4 > ^
1->
2 > m1_f1
3 > () {
> return m1_instance1;
> }
4 >
1->Emitted(13, 5) Source(7, 17) + SourceIndex(0)
2 >Emitted(13, 18) Source(7, 22) + SourceIndex(0)
3 >Emitted(13, 26) Source(9, 2) + SourceIndex(0)
4 >Emitted(13, 27) Source(9, 2) + SourceIndex(0)
---
>>>});
>>>//# sourceMappingURL=/tests/cases/projects/outputdir_module_subfolder/mapFiles/ref/m1.js.map===================================================================
JsFile: test.js
mapUrl: /tests/cases/projects/outputdir_module_subfolder/mapFiles/test.js.map
sourceRoot:
sources: ../test.ts
===================================================================
-------------------------------------------------------------------
emittedFile:test.js
sourceFile:../test.ts
-------------------------------------------------------------------
>>>define(["require", "exports", "ref/m1"], function (require, exports, m1) {
>>> exports.a1 = 10;
1 >^^^^
2 > ^^^^^^^^^^
3 > ^^^
4 > ^^
5 > ^
6 > ^^^^^^^^->
1 >import m1 = require("ref/m1");
>export var
2 > a1
3 > =
4 > 10
5 > ;
1 >Emitted(2, 5) Source(2, 12) + SourceIndex(0)
2 >Emitted(2, 15) Source(2, 14) + SourceIndex(0)
3 >Emitted(2, 18) Source(2, 17) + SourceIndex(0)
4 >Emitted(2, 20) Source(2, 19) + SourceIndex(0)
5 >Emitted(2, 21) Source(2, 20) + SourceIndex(0)
---
>>> var c1 = (function () {
1->^^^^
2 > ^^^^^^^^^^^^^^^^^^^^->
1->
>
1->Emitted(3, 5) Source(3, 1) + SourceIndex(0)
---
>>> function c1() {
1->^^^^^^^^
2 > ^^->
1->
1->Emitted(4, 9) Source(3, 1) + SourceIndex(0) name (c1)
---
>>> }
1->^^^^^^^^
2 > ^
3 > ^^^^^^^^^^->
1->export class c1 {
> public p1: number;
>
2 > }
1->Emitted(5, 9) Source(5, 1) + SourceIndex(0) name (c1.constructor)
2 >Emitted(5, 10) Source(5, 2) + SourceIndex(0) name (c1.constructor)
---
>>> return c1;
1->^^^^^^^^
2 > ^^^^^^^^^
1->
2 > }
1->Emitted(6, 9) Source(5, 1) + SourceIndex(0) name (c1)
2 >Emitted(6, 18) Source(5, 2) + SourceIndex(0) name (c1)
---
>>> })();
1 >^^^^
2 > ^
3 >
4 > ^^^^
5 > ^^^^^^^^^^^^->
1 >
2 > }
3 >
4 > export class c1 {
> public p1: number;
> }
1 >Emitted(7, 5) Source(5, 1) + SourceIndex(0) name (c1)
2 >Emitted(7, 6) Source(5, 2) + SourceIndex(0) name (c1)
3 >Emitted(7, 6) Source(3, 1) + SourceIndex(0)
4 >Emitted(7, 10) Source(5, 2) + SourceIndex(0)
---
>>> exports.c1 = c1;
1->^^^^
2 > ^^^^^^^^^^
3 > ^^^^^
4 > ^
5 > ^^^^^^^^^^^^^^->
1->
2 > c1
3 > {
> public p1: number;
> }
4 >
1->Emitted(8, 5) Source(3, 14) + SourceIndex(0)
2 >Emitted(8, 15) Source(3, 16) + SourceIndex(0)
3 >Emitted(8, 20) Source(5, 2) + SourceIndex(0)
4 >Emitted(8, 21) Source(5, 2) + SourceIndex(0)
---
>>> exports.instance1 = new c1();
1->^^^^
2 > ^^^^^^^^^^^^^^^^^
3 > ^^^
4 > ^^^^
5 > ^^
6 > ^^
7 > ^
1->
>
>export var
2 > instance1
3 > =
4 > new
5 > c1
6 > ()
7 > ;
1->Emitted(9, 5) Source(7, 12) + SourceIndex(0)
2 >Emitted(9, 22) Source(7, 21) + SourceIndex(0)
3 >Emitted(9, 25) Source(7, 24) + SourceIndex(0)
4 >Emitted(9, 29) Source(7, 28) + SourceIndex(0)
5 >Emitted(9, 31) Source(7, 30) + SourceIndex(0)
6 >Emitted(9, 33) Source(7, 32) + SourceIndex(0)
7 >Emitted(9, 34) Source(7, 33) + SourceIndex(0)
---
>>> function f1() {
1 >^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
1 >Emitted(10, 5) Source(8, 1) + SourceIndex(0)
---
>>> return exports.instance1;
1->^^^^^^^^
2 > ^^^^^^
3 > ^
4 > ^^^^^^^^^^^^^^^^^
5 > ^
1->export function f1() {
>
2 > return
3 >
4 > instance1
5 > ;
1->Emitted(11, 9) Source(9, 5) + SourceIndex(0) name (f1)
2 >Emitted(11, 15) Source(9, 11) + SourceIndex(0) name (f1)
3 >Emitted(11, 16) Source(9, 12) + SourceIndex(0) name (f1)
4 >Emitted(11, 33) Source(9, 21) + SourceIndex(0) name (f1)
5 >Emitted(11, 34) Source(9, 22) + SourceIndex(0) name (f1)
---
>>> }
1 >^^^^
2 > ^
3 > ^^^^^^^^^^^^^^^^->
1 >
>
2 > }
1 >Emitted(12, 5) Source(10, 1) + SourceIndex(0) name (f1)
2 >Emitted(12, 6) Source(10, 2) + SourceIndex(0) name (f1)
---
>>> exports.f1 = f1;
1->^^^^
2 > ^^^^^^^^^^
3 > ^^^^^
4 > ^
5 > ^^^^^^^->
1->
2 > f1
3 > () {
> return instance1;
> }
4 >
1->Emitted(13, 5) Source(8, 17) + SourceIndex(0)
2 >Emitted(13, 15) Source(8, 19) + SourceIndex(0)
3 >Emitted(13, 20) Source(10, 2) + SourceIndex(0)
4 >Emitted(13, 21) Source(10, 2) + SourceIndex(0)
---
>>> exports.a2 = m1.m1_c1;
1->^^^^
2 > ^^^^^^^^^^
3 > ^^^
4 > ^^
5 > ^
6 > ^^^^^
7 > ^
1->
>
>export var
2 > a2
3 > =
4 > m1
5 > .
6 > m1_c1
7 > ;
1->Emitted(14, 5) Source(12, 12) + SourceIndex(0)
2 >Emitted(14, 15) Source(12, 14) + SourceIndex(0)
3 >Emitted(14, 18) Source(12, 17) + SourceIndex(0)
4 >Emitted(14, 20) Source(12, 19) + SourceIndex(0)
5 >Emitted(14, 21) Source(12, 20) + SourceIndex(0)
6 >Emitted(14, 26) Source(12, 25) + SourceIndex(0)
7 >Emitted(14, 27) Source(12, 26) + SourceIndex(0)
---
>>>});
>>>//# sourceMappingURL=/tests/cases/projects/outputdir_module_subfolder/mapFiles/test.js.map===================================================================
JsFile: test.js
mapUrl: /tests/cases/projects/outputdir_module_subfolder/mapFiles/test.js.map
sourceRoot:
@@ -1,6 +0,0 @@
export declare var m1_a1: number;
export declare class m1_c1 {
m1_c1_p1: number;
}
export declare var m1_instance1: m1_c1;
export declare function m1_f1(): m1_c1;
@@ -1,15 +0,0 @@
define(["require", "exports"], function (require, exports) {
exports.m1_a1 = 10;
var m1_c1 = (function () {
function m1_c1() {
}
return m1_c1;
})();
exports.m1_c1 = m1_c1;
exports.m1_instance1 = new m1_c1();
function m1_f1() {
return exports.m1_instance1;
}
exports.m1_f1 = m1_f1;
});
//# sourceMappingURL=/tests/cases/projects/outputdir_module_subfolder/mapFiles/ref/m1.js.map
@@ -1 +0,0 @@
{"version":3,"file":"m1.js","sourceRoot":"","sources":["../../ref/m1.ts"],"names":["m1_c1","m1_c1.constructor","m1_f1"],"mappings":";IAAW,aAAK,GAAG,EAAE,CAAC;IACtB;QAAAA;QAEAC,CAACA;QAADD,YAACA;IAADA,CAACA,AAFD,IAEC;IAFY,aAAK,QAEjB,CAAA;IAEU,oBAAY,GAAG,IAAI,KAAK,EAAE,CAAC;IACtC;QACIE,MAAMA,CAACA,oBAAYA,CAACA;IACxBA,CAACA;IAFe,aAAK,QAEpB,CAAA"}
@@ -1,8 +0,0 @@
import m1 = require("ref/m1");
export declare var a1: number;
export declare class c1 {
p1: number;
}
export declare var instance1: c1;
export declare function f1(): c1;
export declare var a2: typeof m1.m1_c1;
@@ -1,16 +0,0 @@
define(["require", "exports", "ref/m1"], function (require, exports, m1) {
exports.a1 = 10;
var c1 = (function () {
function c1() {
}
return c1;
})();
exports.c1 = c1;
exports.instance1 = new c1();
function f1() {
return exports.instance1;
}
exports.f1 = f1;
exports.a2 = m1.m1_c1;
});
//# sourceMappingURL=/tests/cases/projects/outputdir_module_subfolder/mapFiles/test.js.map
@@ -1 +0,0 @@
{"version":3,"file":"test.js","sourceRoot":"","sources":["../test.ts"],"names":["c1","c1.constructor","f1"],"mappings":";IACW,UAAE,GAAG,EAAE,CAAC;IACnB;QAAAA;QAEAC,CAACA;QAADD,SAACA;IAADA,CAACA,AAFD,IAEC;IAFY,UAAE,KAEd,CAAA;IAEU,iBAAS,GAAG,IAAI,EAAE,EAAE,CAAC;IAChC;QACIE,MAAMA,CAACA,iBAASA,CAACA;IACrBA,CAACA;IAFe,UAAE,KAEjB,CAAA;IAEU,UAAE,GAAG,EAAE,CAAC,KAAK,CAAC"}
@@ -16,12 +16,6 @@
"test.ts"
],
"emittedFiles": [
"ref/m1.js.map",
"ref/m1.js",
"ref/m1.d.ts",
"test.js.map",
"test.js",
"test.d.ts",
"bin/test.js.map",
"bin/test.js",
"bin/test.d.ts"
@@ -1,396 +1,4 @@
===================================================================
JsFile: m1.js
mapUrl: /tests/cases/projects/outputdir_module_subfolder/mapFiles/ref/m1.js.map
sourceRoot:
sources: ../../ref/m1.ts
===================================================================
-------------------------------------------------------------------
emittedFile:ref/m1.js
sourceFile:../../ref/m1.ts
-------------------------------------------------------------------
>>>exports.m1_a1 = 10;
1 >
2 >^^^^^^^^^^^^^
3 > ^^^
4 > ^^
5 > ^
6 > ^^^^^^^^->
1 >export var
2 >m1_a1
3 > =
4 > 10
5 > ;
1 >Emitted(1, 1) Source(1, 12) + SourceIndex(0)
2 >Emitted(1, 14) Source(1, 17) + SourceIndex(0)
3 >Emitted(1, 17) Source(1, 20) + SourceIndex(0)
4 >Emitted(1, 19) Source(1, 22) + SourceIndex(0)
5 >Emitted(1, 20) Source(1, 23) + SourceIndex(0)
---
>>>var m1_c1 = (function () {
1->
2 >^^^^^^^^^^^^^^^^^^^^^^^->
1->
>
1->Emitted(2, 1) Source(2, 1) + SourceIndex(0)
---
>>> function m1_c1() {
1->^^^^
2 > ^^->
1->
1->Emitted(3, 5) Source(2, 1) + SourceIndex(0) name (m1_c1)
---
>>> }
1->^^^^
2 > ^
3 > ^^^^^^^^^^^^^->
1->export class m1_c1 {
> public m1_c1_p1: number;
>
2 > }
1->Emitted(4, 5) Source(4, 1) + SourceIndex(0) name (m1_c1.constructor)
2 >Emitted(4, 6) Source(4, 2) + SourceIndex(0) name (m1_c1.constructor)
---
>>> return m1_c1;
1->^^^^
2 > ^^^^^^^^^^^^
1->
2 > }
1->Emitted(5, 5) Source(4, 1) + SourceIndex(0) name (m1_c1)
2 >Emitted(5, 17) Source(4, 2) + SourceIndex(0) name (m1_c1)
---
>>>})();
1 >
2 >^
3 >
4 > ^^^^
5 > ^^^^^^^^^^^^^^^^^^->
1 >
2 >}
3 >
4 > export class m1_c1 {
> public m1_c1_p1: number;
> }
1 >Emitted(6, 1) Source(4, 1) + SourceIndex(0) name (m1_c1)
2 >Emitted(6, 2) Source(4, 2) + SourceIndex(0) name (m1_c1)
3 >Emitted(6, 2) Source(2, 1) + SourceIndex(0)
4 >Emitted(6, 6) Source(4, 2) + SourceIndex(0)
---
>>>exports.m1_c1 = m1_c1;
1->
2 >^^^^^^^^^^^^^
3 > ^^^^^^^^
4 > ^
5 > ^^^^^^^^^^^^^^->
1->
2 >m1_c1
3 > {
> public m1_c1_p1: number;
> }
4 >
1->Emitted(7, 1) Source(2, 14) + SourceIndex(0)
2 >Emitted(7, 14) Source(2, 19) + SourceIndex(0)
3 >Emitted(7, 22) Source(4, 2) + SourceIndex(0)
4 >Emitted(7, 23) Source(4, 2) + SourceIndex(0)
---
>>>exports.m1_instance1 = new m1_c1();
1->
2 >^^^^^^^^^^^^^^^^^^^^
3 > ^^^
4 > ^^^^
5 > ^^^^^
6 > ^^
7 > ^
1->
>
>export var
2 >m1_instance1
3 > =
4 > new
5 > m1_c1
6 > ()
7 > ;
1->Emitted(8, 1) Source(6, 12) + SourceIndex(0)
2 >Emitted(8, 21) Source(6, 24) + SourceIndex(0)
3 >Emitted(8, 24) Source(6, 27) + SourceIndex(0)
4 >Emitted(8, 28) Source(6, 31) + SourceIndex(0)
5 >Emitted(8, 33) Source(6, 36) + SourceIndex(0)
6 >Emitted(8, 35) Source(6, 38) + SourceIndex(0)
7 >Emitted(8, 36) Source(6, 39) + SourceIndex(0)
---
>>>function m1_f1() {
1 >
2 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
1 >Emitted(9, 1) Source(7, 1) + SourceIndex(0)
---
>>> return exports.m1_instance1;
1->^^^^
2 > ^^^^^^
3 > ^
4 > ^^^^^^^^^^^^^^^^^^^^
5 > ^
1->export function m1_f1() {
>
2 > return
3 >
4 > m1_instance1
5 > ;
1->Emitted(10, 5) Source(8, 5) + SourceIndex(0) name (m1_f1)
2 >Emitted(10, 11) Source(8, 11) + SourceIndex(0) name (m1_f1)
3 >Emitted(10, 12) Source(8, 12) + SourceIndex(0) name (m1_f1)
4 >Emitted(10, 32) Source(8, 24) + SourceIndex(0) name (m1_f1)
5 >Emitted(10, 33) Source(8, 25) + SourceIndex(0) name (m1_f1)
---
>>>}
1 >
2 >^
3 > ^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
2 >}
1 >Emitted(11, 1) Source(9, 1) + SourceIndex(0) name (m1_f1)
2 >Emitted(11, 2) Source(9, 2) + SourceIndex(0) name (m1_f1)
---
>>>exports.m1_f1 = m1_f1;
1->
2 >^^^^^^^^^^^^^
3 > ^^^^^^^^
4 > ^
5 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1->
2 >m1_f1
3 > () {
> return m1_instance1;
> }
4 >
1->Emitted(12, 1) Source(7, 17) + SourceIndex(0)
2 >Emitted(12, 14) Source(7, 22) + SourceIndex(0)
3 >Emitted(12, 22) Source(9, 2) + SourceIndex(0)
4 >Emitted(12, 23) Source(9, 2) + SourceIndex(0)
---
>>>//# sourceMappingURL=/tests/cases/projects/outputdir_module_subfolder/mapFiles/ref/m1.js.map===================================================================
JsFile: test.js
mapUrl: /tests/cases/projects/outputdir_module_subfolder/mapFiles/test.js.map
sourceRoot:
sources: ../test.ts
===================================================================
-------------------------------------------------------------------
emittedFile:test.js
sourceFile:../test.ts
-------------------------------------------------------------------
>>>var m1 = require("ref/m1");
1 >
2 >^^^^
3 > ^^
4 > ^^^^^^^^^^^
5 > ^^^^^^^^
6 > ^
7 > ^
1 >
2 >import
3 > m1
4 > = require(
5 > "ref/m1"
6 > )
7 > ;
1 >Emitted(1, 1) Source(1, 1) + SourceIndex(0)
2 >Emitted(1, 5) Source(1, 8) + SourceIndex(0)
3 >Emitted(1, 7) Source(1, 10) + SourceIndex(0)
4 >Emitted(1, 18) Source(1, 21) + SourceIndex(0)
5 >Emitted(1, 26) Source(1, 29) + SourceIndex(0)
6 >Emitted(1, 27) Source(1, 30) + SourceIndex(0)
7 >Emitted(1, 28) Source(1, 31) + SourceIndex(0)
---
>>>exports.a1 = 10;
1 >
2 >^^^^^^^^^^
3 > ^^^
4 > ^^
5 > ^
6 > ^^^^^^^^->
1 >
>export var
2 >a1
3 > =
4 > 10
5 > ;
1 >Emitted(2, 1) Source(2, 12) + SourceIndex(0)
2 >Emitted(2, 11) Source(2, 14) + SourceIndex(0)
3 >Emitted(2, 14) Source(2, 17) + SourceIndex(0)
4 >Emitted(2, 16) Source(2, 19) + SourceIndex(0)
5 >Emitted(2, 17) Source(2, 20) + SourceIndex(0)
---
>>>var c1 = (function () {
1->
2 >^^^^^^^^^^^^^^^^^^^^->
1->
>
1->Emitted(3, 1) Source(3, 1) + SourceIndex(0)
---
>>> function c1() {
1->^^^^
2 > ^^->
1->
1->Emitted(4, 5) Source(3, 1) + SourceIndex(0) name (c1)
---
>>> }
1->^^^^
2 > ^
3 > ^^^^^^^^^^->
1->export class c1 {
> public p1: number;
>
2 > }
1->Emitted(5, 5) Source(5, 1) + SourceIndex(0) name (c1.constructor)
2 >Emitted(5, 6) Source(5, 2) + SourceIndex(0) name (c1.constructor)
---
>>> return c1;
1->^^^^
2 > ^^^^^^^^^
1->
2 > }
1->Emitted(6, 5) Source(5, 1) + SourceIndex(0) name (c1)
2 >Emitted(6, 14) Source(5, 2) + SourceIndex(0) name (c1)
---
>>>})();
1 >
2 >^
3 >
4 > ^^^^
5 > ^^^^^^^^^^^^->
1 >
2 >}
3 >
4 > export class c1 {
> public p1: number;
> }
1 >Emitted(7, 1) Source(5, 1) + SourceIndex(0) name (c1)
2 >Emitted(7, 2) Source(5, 2) + SourceIndex(0) name (c1)
3 >Emitted(7, 2) Source(3, 1) + SourceIndex(0)
4 >Emitted(7, 6) Source(5, 2) + SourceIndex(0)
---
>>>exports.c1 = c1;
1->
2 >^^^^^^^^^^
3 > ^^^^^
4 > ^
5 > ^^^^^^^^^^^^^^->
1->
2 >c1
3 > {
> public p1: number;
> }
4 >
1->Emitted(8, 1) Source(3, 14) + SourceIndex(0)
2 >Emitted(8, 11) Source(3, 16) + SourceIndex(0)
3 >Emitted(8, 16) Source(5, 2) + SourceIndex(0)
4 >Emitted(8, 17) Source(5, 2) + SourceIndex(0)
---
>>>exports.instance1 = new c1();
1->
2 >^^^^^^^^^^^^^^^^^
3 > ^^^
4 > ^^^^
5 > ^^
6 > ^^
7 > ^
1->
>
>export var
2 >instance1
3 > =
4 > new
5 > c1
6 > ()
7 > ;
1->Emitted(9, 1) Source(7, 12) + SourceIndex(0)
2 >Emitted(9, 18) Source(7, 21) + SourceIndex(0)
3 >Emitted(9, 21) Source(7, 24) + SourceIndex(0)
4 >Emitted(9, 25) Source(7, 28) + SourceIndex(0)
5 >Emitted(9, 27) Source(7, 30) + SourceIndex(0)
6 >Emitted(9, 29) Source(7, 32) + SourceIndex(0)
7 >Emitted(9, 30) Source(7, 33) + SourceIndex(0)
---
>>>function f1() {
1 >
2 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
1 >Emitted(10, 1) Source(8, 1) + SourceIndex(0)
---
>>> return exports.instance1;
1->^^^^
2 > ^^^^^^
3 > ^
4 > ^^^^^^^^^^^^^^^^^
5 > ^
1->export function f1() {
>
2 > return
3 >
4 > instance1
5 > ;
1->Emitted(11, 5) Source(9, 5) + SourceIndex(0) name (f1)
2 >Emitted(11, 11) Source(9, 11) + SourceIndex(0) name (f1)
3 >Emitted(11, 12) Source(9, 12) + SourceIndex(0) name (f1)
4 >Emitted(11, 29) Source(9, 21) + SourceIndex(0) name (f1)
5 >Emitted(11, 30) Source(9, 22) + SourceIndex(0) name (f1)
---
>>>}
1 >
2 >^
3 > ^^^^^^^^^^^^^^^^->
1 >
>
2 >}
1 >Emitted(12, 1) Source(10, 1) + SourceIndex(0) name (f1)
2 >Emitted(12, 2) Source(10, 2) + SourceIndex(0) name (f1)
---
>>>exports.f1 = f1;
1->
2 >^^^^^^^^^^
3 > ^^^^^
4 > ^
5 > ^^^^^^^->
1->
2 >f1
3 > () {
> return instance1;
> }
4 >
1->Emitted(13, 1) Source(8, 17) + SourceIndex(0)
2 >Emitted(13, 11) Source(8, 19) + SourceIndex(0)
3 >Emitted(13, 16) Source(10, 2) + SourceIndex(0)
4 >Emitted(13, 17) Source(10, 2) + SourceIndex(0)
---
>>>exports.a2 = m1.m1_c1;
1->
2 >^^^^^^^^^^
3 > ^^^
4 > ^^
5 > ^
6 > ^^^^^
7 > ^
8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1->
>
>export var
2 >a2
3 > =
4 > m1
5 > .
6 > m1_c1
7 > ;
1->Emitted(14, 1) Source(12, 12) + SourceIndex(0)
2 >Emitted(14, 11) Source(12, 14) + SourceIndex(0)
3 >Emitted(14, 14) Source(12, 17) + SourceIndex(0)
4 >Emitted(14, 16) Source(12, 19) + SourceIndex(0)
5 >Emitted(14, 17) Source(12, 20) + SourceIndex(0)
6 >Emitted(14, 22) Source(12, 25) + SourceIndex(0)
7 >Emitted(14, 23) Source(12, 26) + SourceIndex(0)
---
>>>//# sourceMappingURL=/tests/cases/projects/outputdir_module_subfolder/mapFiles/test.js.map===================================================================
JsFile: test.js
mapUrl: /tests/cases/projects/outputdir_module_subfolder/mapFiles/test.js.map
sourceRoot:
@@ -1,6 +0,0 @@
export declare var m1_a1: number;
export declare class m1_c1 {
m1_c1_p1: number;
}
export declare var m1_instance1: m1_c1;
export declare function m1_f1(): m1_c1;
@@ -1,13 +0,0 @@
exports.m1_a1 = 10;
var m1_c1 = (function () {
function m1_c1() {
}
return m1_c1;
})();
exports.m1_c1 = m1_c1;
exports.m1_instance1 = new m1_c1();
function m1_f1() {
return exports.m1_instance1;
}
exports.m1_f1 = m1_f1;
//# sourceMappingURL=/tests/cases/projects/outputdir_module_subfolder/mapFiles/ref/m1.js.map
@@ -1 +0,0 @@
{"version":3,"file":"m1.js","sourceRoot":"","sources":["../../ref/m1.ts"],"names":["m1_c1","m1_c1.constructor","m1_f1"],"mappings":"AAAW,aAAK,GAAG,EAAE,CAAC;AACtB;IAAAA;IAEAC,CAACA;IAADD,YAACA;AAADA,CAACA,AAFD,IAEC;AAFY,aAAK,QAEjB,CAAA;AAEU,oBAAY,GAAG,IAAI,KAAK,EAAE,CAAC;AACtC;IACIE,MAAMA,CAACA,oBAAYA,CAACA;AACxBA,CAACA;AAFe,aAAK,QAEpB,CAAA"}
@@ -1,8 +0,0 @@
import m1 = require("ref/m1");
export declare var a1: number;
export declare class c1 {
p1: number;
}
export declare var instance1: c1;
export declare function f1(): c1;
export declare var a2: typeof m1.m1_c1;
@@ -1,15 +0,0 @@
var m1 = require("ref/m1");
exports.a1 = 10;
var c1 = (function () {
function c1() {
}
return c1;
})();
exports.c1 = c1;
exports.instance1 = new c1();
function f1() {
return exports.instance1;
}
exports.f1 = f1;
exports.a2 = m1.m1_c1;
//# sourceMappingURL=/tests/cases/projects/outputdir_module_subfolder/mapFiles/test.js.map
@@ -1 +0,0 @@
{"version":3,"file":"test.js","sourceRoot":"","sources":["../test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"AAAA,IAAO,EAAE,WAAW,QAAQ,CAAC,CAAC;AACnB,UAAE,GAAG,EAAE,CAAC;AACnB;IAAAA;IAEAC,CAACA;IAADD,SAACA;AAADA,CAACA,AAFD,IAEC;AAFY,UAAE,KAEd,CAAA;AAEU,iBAAS,GAAG,IAAI,EAAE,EAAE,CAAC;AAChC;IACIE,MAAMA,CAACA,iBAASA,CAACA;AACrBA,CAACA;AAFe,UAAE,KAEjB,CAAA;AAEU,UAAE,GAAG,EAAE,CAAC,KAAK,CAAC"}
@@ -16,9 +16,6 @@
"test.ts"
],
"emittedFiles": [
"ref/m2.js.map",
"ref/m2.js",
"ref/m2.d.ts",
"bin/test.js.map",
"bin/test.js",
"bin/test.d.ts"
@@ -1,176 +1,4 @@
===================================================================
JsFile: m2.js
mapUrl: ../../mapFiles/ref/m2.js.map
sourceRoot:
sources: ../../outputdir_mixed_subfolder/ref/m2.ts
===================================================================
-------------------------------------------------------------------
emittedFile:ref/m2.js
sourceFile:../../outputdir_mixed_subfolder/ref/m2.ts
-------------------------------------------------------------------
>>>define(["require", "exports"], function (require, exports) {
>>> exports.m2_a1 = 10;
1 >^^^^
2 > ^^^^^^^^^^^^^
3 > ^^^
4 > ^^
5 > ^
6 > ^^^^^^^^->
1 >export var
2 > m2_a1
3 > =
4 > 10
5 > ;
1 >Emitted(2, 5) Source(1, 12) + SourceIndex(0)
2 >Emitted(2, 18) Source(1, 17) + SourceIndex(0)
3 >Emitted(2, 21) Source(1, 20) + SourceIndex(0)
4 >Emitted(2, 23) Source(1, 22) + SourceIndex(0)
5 >Emitted(2, 24) Source(1, 23) + SourceIndex(0)
---
>>> var m2_c1 = (function () {
1->^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^->
1->
>
1->Emitted(3, 5) Source(2, 1) + SourceIndex(0)
---
>>> function m2_c1() {
1->^^^^^^^^
2 > ^^->
1->
1->Emitted(4, 9) Source(2, 1) + SourceIndex(0) name (m2_c1)
---
>>> }
1->^^^^^^^^
2 > ^
3 > ^^^^^^^^^^^^^->
1->export class m2_c1 {
> public m2_c1_p1: number;
>
2 > }
1->Emitted(5, 9) Source(4, 1) + SourceIndex(0) name (m2_c1.constructor)
2 >Emitted(5, 10) Source(4, 2) + SourceIndex(0) name (m2_c1.constructor)
---
>>> return m2_c1;
1->^^^^^^^^
2 > ^^^^^^^^^^^^
1->
2 > }
1->Emitted(6, 9) Source(4, 1) + SourceIndex(0) name (m2_c1)
2 >Emitted(6, 21) Source(4, 2) + SourceIndex(0) name (m2_c1)
---
>>> })();
1 >^^^^
2 > ^
3 >
4 > ^^^^
5 > ^^^^^^^^^^^^^^^^^^->
1 >
2 > }
3 >
4 > export class m2_c1 {
> public m2_c1_p1: number;
> }
1 >Emitted(7, 5) Source(4, 1) + SourceIndex(0) name (m2_c1)
2 >Emitted(7, 6) Source(4, 2) + SourceIndex(0) name (m2_c1)
3 >Emitted(7, 6) Source(2, 1) + SourceIndex(0)
4 >Emitted(7, 10) Source(4, 2) + SourceIndex(0)
---
>>> exports.m2_c1 = m2_c1;
1->^^^^
2 > ^^^^^^^^^^^^^
3 > ^^^^^^^^
4 > ^
5 > ^^^^^^^^^^^^^^->
1->
2 > m2_c1
3 > {
> public m2_c1_p1: number;
> }
4 >
1->Emitted(8, 5) Source(2, 14) + SourceIndex(0)
2 >Emitted(8, 18) Source(2, 19) + SourceIndex(0)
3 >Emitted(8, 26) Source(4, 2) + SourceIndex(0)
4 >Emitted(8, 27) Source(4, 2) + SourceIndex(0)
---
>>> exports.m2_instance1 = new m2_c1();
1->^^^^
2 > ^^^^^^^^^^^^^^^^^^^^
3 > ^^^
4 > ^^^^
5 > ^^^^^
6 > ^^
7 > ^
1->
>
>export var
2 > m2_instance1
3 > =
4 > new
5 > m2_c1
6 > ()
7 > ;
1->Emitted(9, 5) Source(6, 12) + SourceIndex(0)
2 >Emitted(9, 25) Source(6, 24) + SourceIndex(0)
3 >Emitted(9, 28) Source(6, 27) + SourceIndex(0)
4 >Emitted(9, 32) Source(6, 31) + SourceIndex(0)
5 >Emitted(9, 37) Source(6, 36) + SourceIndex(0)
6 >Emitted(9, 39) Source(6, 38) + SourceIndex(0)
7 >Emitted(9, 40) Source(6, 39) + SourceIndex(0)
---
>>> function m2_f1() {
1 >^^^^
2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
1 >Emitted(10, 5) Source(7, 1) + SourceIndex(0)
---
>>> return exports.m2_instance1;
1->^^^^^^^^
2 > ^^^^^^
3 > ^
4 > ^^^^^^^^^^^^^^^^^^^^
5 > ^
1->export function m2_f1() {
>
2 > return
3 >
4 > m2_instance1
5 > ;
1->Emitted(11, 9) Source(8, 5) + SourceIndex(0) name (m2_f1)
2 >Emitted(11, 15) Source(8, 11) + SourceIndex(0) name (m2_f1)
3 >Emitted(11, 16) Source(8, 12) + SourceIndex(0) name (m2_f1)
4 >Emitted(11, 36) Source(8, 24) + SourceIndex(0) name (m2_f1)
5 >Emitted(11, 37) Source(8, 25) + SourceIndex(0) name (m2_f1)
---
>>> }
1 >^^^^
2 > ^
3 > ^^^^^^^^^^^^^^^^^^^^^^->
1 >
>
2 > }
1 >Emitted(12, 5) Source(9, 1) + SourceIndex(0) name (m2_f1)
2 >Emitted(12, 6) Source(9, 2) + SourceIndex(0) name (m2_f1)
---
>>> exports.m2_f1 = m2_f1;
1->^^^^
2 > ^^^^^^^^^^^^^
3 > ^^^^^^^^
4 > ^
1->
2 > m2_f1
3 > () {
> return m2_instance1;
> }
4 >
1->Emitted(13, 5) Source(7, 17) + SourceIndex(0)
2 >Emitted(13, 18) Source(7, 22) + SourceIndex(0)
3 >Emitted(13, 26) Source(9, 2) + SourceIndex(0)
4 >Emitted(13, 27) Source(9, 2) + SourceIndex(0)
---
>>>});
>>>//# sourceMappingURL=../../mapFiles/ref/m2.js.map===================================================================
JsFile: test.js
mapUrl: ../../mapFiles/test.js.map
sourceRoot:
@@ -1,6 +0,0 @@
export declare var m2_a1: number;
export declare class m2_c1 {
m2_c1_p1: number;
}
export declare var m2_instance1: m2_c1;
export declare function m2_f1(): m2_c1;

Some files were not shown because too many files have changed in this diff Show More