mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-20 10:29:36 -06:00
Merge branch 'master' of https://github.com/Microsoft/TypeScript into lazyBaseTypes
This commit is contained in:
commit
8ca7805adb
@ -349,7 +349,8 @@ module ts {
|
||||
}
|
||||
result = undefined;
|
||||
}
|
||||
else if (location.kind === SyntaxKind.SourceFile) {
|
||||
else if (location.kind === SyntaxKind.SourceFile ||
|
||||
(location.kind === SyntaxKind.ModuleDeclaration && (<ModuleDeclaration>location).name.kind === SyntaxKind.StringLiteral)) {
|
||||
result = getSymbol(getSymbolOfNode(location).exports, "default", meaning & SymbolFlags.ModuleMember);
|
||||
let localSymbol = getLocalSymbolForExportDefault(result);
|
||||
if (result && (result.flags & meaning) && localSymbol && localSymbol.name === name) {
|
||||
@ -597,7 +598,7 @@ module ts {
|
||||
if (moduleSymbol.flags & SymbolFlags.Variable) {
|
||||
let typeAnnotation = (<VariableDeclaration>moduleSymbol.valueDeclaration).type;
|
||||
if (typeAnnotation) {
|
||||
return getPropertyOfType(getTypeFromTypeNodeOrHeritageClauseElement(typeAnnotation), name);
|
||||
return getPropertyOfType(getTypeFromTypeNode(typeAnnotation), name);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -646,7 +647,7 @@ module ts {
|
||||
if (symbol.flags & SymbolFlags.Variable) {
|
||||
var typeAnnotation = (<VariableDeclaration>symbol.valueDeclaration).type;
|
||||
if (typeAnnotation) {
|
||||
return resolveSymbol(getPropertyOfType(getTypeFromTypeNodeOrHeritageClauseElement(typeAnnotation), name));
|
||||
return resolveSymbol(getPropertyOfType(getTypeFromTypeNode(typeAnnotation), name));
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -2127,7 +2128,7 @@ module ts {
|
||||
}
|
||||
// Use type from type annotation if one is present
|
||||
if (declaration.type) {
|
||||
return getTypeFromTypeNodeOrHeritageClauseElement(declaration.type);
|
||||
return getTypeFromTypeNode(declaration.type);
|
||||
}
|
||||
if (declaration.kind === SyntaxKind.Parameter) {
|
||||
let func = <FunctionLikeDeclaration>declaration.parent;
|
||||
@ -2289,18 +2290,18 @@ module ts {
|
||||
return links.type;
|
||||
}
|
||||
|
||||
function getSetAccessorTypeAnnotationNode(accessor: AccessorDeclaration): TypeNode | LiteralExpression {
|
||||
function getSetAccessorTypeAnnotationNode(accessor: AccessorDeclaration): TypeNode {
|
||||
return accessor && accessor.parameters.length > 0 && accessor.parameters[0].type;
|
||||
}
|
||||
|
||||
function getAnnotatedAccessorType(accessor: AccessorDeclaration): Type {
|
||||
if (accessor) {
|
||||
if (accessor.kind === SyntaxKind.GetAccessor) {
|
||||
return accessor.type && getTypeFromTypeNodeOrHeritageClauseElement(accessor.type);
|
||||
return accessor.type && getTypeFromTypeNode(accessor.type);
|
||||
}
|
||||
else {
|
||||
let setterTypeAnnotation = getSetAccessorTypeAnnotationNode(accessor);
|
||||
return setterTypeAnnotation && getTypeFromTypeNodeOrHeritageClauseElement(setterTypeAnnotation);
|
||||
return setterTypeAnnotation && getTypeFromTypeNode(setterTypeAnnotation);
|
||||
}
|
||||
}
|
||||
return undefined;
|
||||
@ -2565,7 +2566,7 @@ module ts {
|
||||
if (!links.declaredType) {
|
||||
links.declaredType = resolvingType;
|
||||
let declaration = <TypeAliasDeclaration>getDeclarationOfKind(symbol, SyntaxKind.TypeAliasDeclaration);
|
||||
let type = getTypeFromTypeNodeOrHeritageClauseElement(declaration.type);
|
||||
let type = getTypeFromTypeNode(declaration.type);
|
||||
if (links.declaredType === resolvingType) {
|
||||
links.declaredType = type;
|
||||
}
|
||||
@ -3110,7 +3111,7 @@ module ts {
|
||||
returnType = classType;
|
||||
}
|
||||
else if (declaration.type) {
|
||||
returnType = getTypeFromTypeNodeOrHeritageClauseElement(declaration.type);
|
||||
returnType = getTypeFromTypeNode(declaration.type);
|
||||
}
|
||||
else {
|
||||
// TypeScript 1.0 spec (April 2014):
|
||||
@ -3268,7 +3269,7 @@ module ts {
|
||||
function getIndexTypeOfSymbol(symbol: Symbol, kind: IndexKind): Type {
|
||||
let declaration = getIndexDeclarationOfSymbol(symbol, kind);
|
||||
return declaration
|
||||
? declaration.type ? getTypeFromTypeNodeOrHeritageClauseElement(declaration.type) : anyType
|
||||
? declaration.type ? getTypeFromTypeNode(declaration.type) : anyType
|
||||
: undefined;
|
||||
}
|
||||
|
||||
@ -3279,7 +3280,7 @@ module ts {
|
||||
type.constraint = targetConstraint ? instantiateType(targetConstraint, type.mapper) : noConstraintType;
|
||||
}
|
||||
else {
|
||||
type.constraint = getTypeFromTypeNodeOrHeritageClauseElement((<TypeParameterDeclaration>getDeclarationOfKind(type.symbol, SyntaxKind.TypeParameter)).constraint);
|
||||
type.constraint = getTypeFromTypeNode((<TypeParameterDeclaration>getDeclarationOfKind(type.symbol, SyntaxKind.TypeParameter)).constraint);
|
||||
}
|
||||
}
|
||||
return type.constraint === noConstraintType ? undefined : type.constraint;
|
||||
@ -3410,7 +3411,7 @@ module ts {
|
||||
if (type.flags & (TypeFlags.Class | TypeFlags.Interface) && type.flags & TypeFlags.Reference) {
|
||||
let typeParameters = (<InterfaceType>type).typeParameters;
|
||||
if (node.typeArguments && node.typeArguments.length === typeParameters.length) {
|
||||
type = createTypeReference(<GenericType>type, map(node.typeArguments, getTypeFromTypeNodeOrHeritageClauseElement));
|
||||
type = createTypeReference(<GenericType>type, map(node.typeArguments, getTypeFromTypeNode));
|
||||
}
|
||||
else {
|
||||
error(node, Diagnostics.Generic_type_0_requires_1_type_argument_s, typeToString(type, /*enclosingDeclaration*/ undefined, TypeFormatFlags.WriteArrayAsGenericType), typeParameters.length);
|
||||
@ -3508,7 +3509,7 @@ module ts {
|
||||
function getTypeFromArrayTypeNode(node: ArrayTypeNode): Type {
|
||||
let links = getNodeLinks(node);
|
||||
if (!links.resolvedType) {
|
||||
links.resolvedType = createArrayType(getTypeFromTypeNodeOrHeritageClauseElement(node.elementType));
|
||||
links.resolvedType = createArrayType(getTypeFromTypeNode(node.elementType));
|
||||
}
|
||||
return links.resolvedType;
|
||||
}
|
||||
@ -3526,7 +3527,7 @@ module ts {
|
||||
function getTypeFromTupleTypeNode(node: TupleTypeNode): Type {
|
||||
let links = getNodeLinks(node);
|
||||
if (!links.resolvedType) {
|
||||
links.resolvedType = createTupleType(map(node.elementTypes, getTypeFromTypeNodeOrHeritageClauseElement));
|
||||
links.resolvedType = createTupleType(map(node.elementTypes, getTypeFromTypeNode));
|
||||
}
|
||||
return links.resolvedType;
|
||||
}
|
||||
@ -3635,7 +3636,7 @@ module ts {
|
||||
function getTypeFromUnionTypeNode(node: UnionTypeNode): Type {
|
||||
let links = getNodeLinks(node);
|
||||
if (!links.resolvedType) {
|
||||
links.resolvedType = getUnionType(map(node.types, getTypeFromTypeNodeOrHeritageClauseElement), /*noSubtypeReduction*/ true);
|
||||
links.resolvedType = getUnionType(map(node.types, getTypeFromTypeNode), /*noSubtypeReduction*/ true);
|
||||
}
|
||||
return links.resolvedType;
|
||||
}
|
||||
@ -3649,7 +3650,7 @@ module ts {
|
||||
return links.resolvedType;
|
||||
}
|
||||
|
||||
function getStringLiteralType(node: LiteralExpression): StringLiteralType {
|
||||
function getStringLiteralType(node: StringLiteral): StringLiteralType {
|
||||
if (hasProperty(stringLiteralTypes, node.text)) {
|
||||
return stringLiteralTypes[node.text];
|
||||
}
|
||||
@ -3659,7 +3660,7 @@ module ts {
|
||||
return type;
|
||||
}
|
||||
|
||||
function getTypeFromStringLiteral(node: LiteralExpression): Type {
|
||||
function getTypeFromStringLiteral(node: StringLiteral): Type {
|
||||
let links = getNodeLinks(node);
|
||||
if (!links.resolvedType) {
|
||||
links.resolvedType = getStringLiteralType(node);
|
||||
@ -3667,7 +3668,7 @@ module ts {
|
||||
return links.resolvedType;
|
||||
}
|
||||
|
||||
function getTypeFromTypeNodeOrHeritageClauseElement(node: TypeNode | LiteralExpression | HeritageClauseElement): Type {
|
||||
function getTypeFromTypeNode(node: TypeNode): Type {
|
||||
switch (node.kind) {
|
||||
case SyntaxKind.AnyKeyword:
|
||||
return anyType;
|
||||
@ -3682,7 +3683,7 @@ module ts {
|
||||
case SyntaxKind.VoidKeyword:
|
||||
return voidType;
|
||||
case SyntaxKind.StringLiteral:
|
||||
return getTypeFromStringLiteral(<LiteralExpression>node);
|
||||
return getTypeFromStringLiteral(<StringLiteral>node);
|
||||
case SyntaxKind.TypeReference:
|
||||
return getTypeFromTypeReference(<TypeReferenceNode>node);
|
||||
case SyntaxKind.HeritageClauseElement:
|
||||
@ -3696,7 +3697,7 @@ module ts {
|
||||
case SyntaxKind.UnionType:
|
||||
return getTypeFromUnionTypeNode(<UnionTypeNode>node);
|
||||
case SyntaxKind.ParenthesizedType:
|
||||
return getTypeFromTypeNodeOrHeritageClauseElement((<ParenthesizedTypeNode>node).type);
|
||||
return getTypeFromTypeNode((<ParenthesizedTypeNode>node).type);
|
||||
case SyntaxKind.FunctionType:
|
||||
case SyntaxKind.ConstructorType:
|
||||
case SyntaxKind.TypeLiteral:
|
||||
@ -5708,7 +5709,7 @@ module ts {
|
||||
let declaration = <VariableLikeDeclaration>node.parent;
|
||||
if (node === declaration.initializer) {
|
||||
if (declaration.type) {
|
||||
return getTypeFromTypeNodeOrHeritageClauseElement(declaration.type);
|
||||
return getTypeFromTypeNode(declaration.type);
|
||||
}
|
||||
if (declaration.kind === SyntaxKind.Parameter) {
|
||||
let type = getContextuallyTypedParameterType(<ParameterDeclaration>declaration);
|
||||
@ -5911,7 +5912,7 @@ module ts {
|
||||
case SyntaxKind.NewExpression:
|
||||
return getContextualTypeForArgument(<CallExpression>parent, node);
|
||||
case SyntaxKind.TypeAssertionExpression:
|
||||
return getTypeFromTypeNodeOrHeritageClauseElement((<TypeAssertion>parent).type);
|
||||
return getTypeFromTypeNode((<TypeAssertion>parent).type);
|
||||
case SyntaxKind.BinaryExpression:
|
||||
return getContextualTypeForBinaryOperand(node);
|
||||
case SyntaxKind.PropertyAssignment:
|
||||
@ -6733,7 +6734,7 @@ module ts {
|
||||
let typeArgumentsAreAssignable = true;
|
||||
for (let i = 0; i < typeParameters.length; i++) {
|
||||
let typeArgNode = typeArguments[i];
|
||||
let typeArgument = getTypeFromTypeNodeOrHeritageClauseElement(typeArgNode);
|
||||
let typeArgument = getTypeFromTypeNode(typeArgNode);
|
||||
// Do not push on this array! It has a preallocated length
|
||||
typeArgumentResultTypes[i] = typeArgument;
|
||||
if (typeArgumentsAreAssignable /* so far */) {
|
||||
@ -6755,9 +6756,12 @@ module ts {
|
||||
let paramType = getTypeAtPosition(signature, i);
|
||||
// A tagged template expression provides a special first argument, and string literals get string literal types
|
||||
// unless we're reporting errors
|
||||
let argType = i === 0 && node.kind === SyntaxKind.TaggedTemplateExpression ? globalTemplateStringsArrayType :
|
||||
arg.kind === SyntaxKind.StringLiteral && !reportErrors ? getStringLiteralType(<LiteralExpression>arg) :
|
||||
checkExpressionWithContextualType(arg, paramType, excludeArgument && excludeArgument[i] ? identityMapper : undefined);
|
||||
let argType = i === 0 && node.kind === SyntaxKind.TaggedTemplateExpression
|
||||
? globalTemplateStringsArrayType
|
||||
: arg.kind === SyntaxKind.StringLiteral && !reportErrors
|
||||
? getStringLiteralType(<StringLiteral>arg)
|
||||
: checkExpressionWithContextualType(arg, paramType, excludeArgument && excludeArgument[i] ? identityMapper : undefined);
|
||||
|
||||
// Use argument expression as error location when reporting errors
|
||||
if (!checkTypeRelatedTo(argType, paramType, relation, reportErrors ? arg : undefined,
|
||||
Diagnostics.Argument_of_type_0_is_not_assignable_to_parameter_of_type_1)) {
|
||||
@ -7215,7 +7219,7 @@ module ts {
|
||||
|
||||
function checkTypeAssertion(node: TypeAssertion): Type {
|
||||
let exprType = checkExpression(node.expression);
|
||||
let targetType = getTypeFromTypeNodeOrHeritageClauseElement(node.type);
|
||||
let targetType = getTypeFromTypeNode(node.type);
|
||||
if (produceDiagnostics && targetType !== unknownType) {
|
||||
let widenedType = getWidenedType(exprType);
|
||||
if (!(isTypeAssignableTo(targetType, widenedType))) {
|
||||
@ -7389,7 +7393,7 @@ module ts {
|
||||
function checkFunctionExpressionOrObjectLiteralMethodBody(node: FunctionExpression | MethodDeclaration) {
|
||||
Debug.assert(node.kind !== SyntaxKind.MethodDeclaration || isObjectLiteralMethod(node));
|
||||
if (node.type && !node.asteriskToken) {
|
||||
checkIfNonVoidFunctionHasReturnExpressionsOrSingleThrowStatment(node, getTypeFromTypeNodeOrHeritageClauseElement(node.type));
|
||||
checkIfNonVoidFunctionHasReturnExpressionsOrSingleThrowStatment(node, getTypeFromTypeNode(node.type));
|
||||
}
|
||||
|
||||
if (node.body) {
|
||||
@ -7399,7 +7403,7 @@ module ts {
|
||||
else {
|
||||
let exprType = checkExpression(<Expression>node.body);
|
||||
if (node.type) {
|
||||
checkTypeAssignableTo(exprType, getTypeFromTypeNodeOrHeritageClauseElement(node.type), node.body, /*headMessage*/ undefined);
|
||||
checkTypeAssignableTo(exprType, getTypeFromTypeNode(node.type), node.body, /*headMessage*/ undefined);
|
||||
}
|
||||
checkFunctionExpressionBodies(node.body);
|
||||
}
|
||||
@ -8828,12 +8832,12 @@ module ts {
|
||||
}
|
||||
|
||||
/** Checks a type reference node as an expression. */
|
||||
function checkTypeNodeAsExpression(node: TypeNode | LiteralExpression) {
|
||||
function checkTypeNodeAsExpression(node: TypeNode) {
|
||||
// When we are emitting type metadata for decorators, we need to try to check the type
|
||||
// as if it were an expression so that we can emit the type in a value position when we
|
||||
// serialize the type metadata.
|
||||
if (node && node.kind === SyntaxKind.TypeReference) {
|
||||
let type = getTypeFromTypeNodeOrHeritageClauseElement(node);
|
||||
let type = getTypeFromTypeNode(node);
|
||||
let shouldCheckIfUnknownType = type === unknownType && compilerOptions.separateCompilation;
|
||||
if (!type || (!shouldCheckIfUnknownType && type.flags & (TypeFlags.Intrinsic | TypeFlags.NumberLike | TypeFlags.StringLike))) {
|
||||
return;
|
||||
@ -8853,7 +8857,8 @@ module ts {
|
||||
case SyntaxKind.PropertyDeclaration:
|
||||
checkTypeNodeAsExpression((<PropertyDeclaration>node).type);
|
||||
break;
|
||||
case SyntaxKind.Parameter: checkTypeNodeAsExpression((<ParameterDeclaration>node).type);
|
||||
case SyntaxKind.Parameter:
|
||||
checkTypeNodeAsExpression((<ParameterDeclaration>node).type);
|
||||
break;
|
||||
case SyntaxKind.MethodDeclaration:
|
||||
checkTypeNodeAsExpression((<MethodDeclaration>node).type);
|
||||
@ -8969,7 +8974,7 @@ module ts {
|
||||
|
||||
checkSourceElement(node.body);
|
||||
if (node.type && !isAccessor(node.kind) && !node.asteriskToken) {
|
||||
checkIfNonVoidFunctionHasReturnExpressionsOrSingleThrowStatment(node, getTypeFromTypeNodeOrHeritageClauseElement(node.type));
|
||||
checkIfNonVoidFunctionHasReturnExpressionsOrSingleThrowStatment(node, getTypeFromTypeNode(node.type));
|
||||
}
|
||||
|
||||
// Report an implicit any error if there is no body, no explicit return type, and node is not a private method
|
||||
@ -10134,7 +10139,7 @@ module ts {
|
||||
if (!tp1.constraint || !tp2.constraint) {
|
||||
return false;
|
||||
}
|
||||
if (!isTypeIdenticalTo(getTypeFromTypeNodeOrHeritageClauseElement(tp1.constraint), getTypeFromTypeNodeOrHeritageClauseElement(tp2.constraint))) {
|
||||
if (!isTypeIdenticalTo(getTypeFromTypeNode(tp1.constraint), getTypeFromTypeNode(tp2.constraint))) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
@ -11166,7 +11171,7 @@ module ts {
|
||||
return node.parent && node.parent.kind === SyntaxKind.HeritageClauseElement;
|
||||
}
|
||||
|
||||
function isTypeNodeOrHeritageClauseElement(node: Node): boolean {
|
||||
function isTypeNode(node: Node): boolean {
|
||||
if (SyntaxKind.FirstTypeNode <= node.kind && node.kind <= SyntaxKind.LastTypeNode) {
|
||||
return true;
|
||||
}
|
||||
@ -11415,8 +11420,8 @@ module ts {
|
||||
return unknownType;
|
||||
}
|
||||
|
||||
if (isTypeNodeOrHeritageClauseElement(node)) {
|
||||
return getTypeFromTypeNodeOrHeritageClauseElement(<TypeNode | HeritageClauseElement>node);
|
||||
if (isTypeNode(node)) {
|
||||
return getTypeFromTypeNode(<TypeNode>node);
|
||||
}
|
||||
|
||||
if (isExpression(node)) {
|
||||
|
||||
@ -258,7 +258,7 @@ module ts {
|
||||
handleSymbolAccessibilityError(resolver.isSymbolAccessible(symbol, enclosingDeclaration, meaning));
|
||||
}
|
||||
|
||||
function writeTypeOfDeclaration(declaration: AccessorDeclaration | VariableLikeDeclaration, type: TypeNode | StringLiteralExpression, getSymbolAccessibilityDiagnostic: GetSymbolAccessibilityDiagnostic) {
|
||||
function writeTypeOfDeclaration(declaration: AccessorDeclaration | VariableLikeDeclaration, type: TypeNode, getSymbolAccessibilityDiagnostic: GetSymbolAccessibilityDiagnostic) {
|
||||
writer.getSymbolAccessibilityDiagnostic = getSymbolAccessibilityDiagnostic;
|
||||
write(": ");
|
||||
if (type) {
|
||||
@ -314,12 +314,12 @@ module ts {
|
||||
}
|
||||
}
|
||||
|
||||
function emitTypeWithNewGetSymbolAccessibilityDiagnostic(type: TypeNode | EntityName | HeritageClauseElement, getSymbolAccessibilityDiagnostic: GetSymbolAccessibilityDiagnostic) {
|
||||
function emitTypeWithNewGetSymbolAccessibilityDiagnostic(type: TypeNode | EntityName, getSymbolAccessibilityDiagnostic: GetSymbolAccessibilityDiagnostic) {
|
||||
writer.getSymbolAccessibilityDiagnostic = getSymbolAccessibilityDiagnostic;
|
||||
emitType(type);
|
||||
}
|
||||
|
||||
function emitType(type: TypeNode | StringLiteralExpression | Identifier | QualifiedName | HeritageClauseElement) {
|
||||
function emitType(type: TypeNode | Identifier | QualifiedName) {
|
||||
switch (type.kind) {
|
||||
case SyntaxKind.AnyKeyword:
|
||||
case SyntaxKind.StringKeyword:
|
||||
@ -1126,7 +1126,7 @@ module ts {
|
||||
writeLine();
|
||||
}
|
||||
|
||||
function getTypeAnnotationFromAccessor(accessor: AccessorDeclaration): TypeNode | StringLiteralExpression {
|
||||
function getTypeAnnotationFromAccessor(accessor: AccessorDeclaration): TypeNode {
|
||||
if (accessor) {
|
||||
return accessor.kind === SyntaxKind.GetAccessor
|
||||
? accessor.type // Getter - return type
|
||||
|
||||
@ -4621,19 +4621,6 @@ var __param = this.__param || function(index, decorator) { return function (targ
|
||||
}
|
||||
}
|
||||
|
||||
function sortAMDModules(amdModules: {name: string; path: string}[]) {
|
||||
// AMD modules with declared variable names go first
|
||||
return amdModules.sort((moduleA, moduleB) => {
|
||||
if (moduleA.name === moduleB.name) {
|
||||
return 0;
|
||||
} else if (!moduleA.name) {
|
||||
return 1;
|
||||
} else {
|
||||
return -1;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function emitExportStarHelper() {
|
||||
if (hasExportStars) {
|
||||
writeLine();
|
||||
@ -4649,44 +4636,83 @@ var __param = this.__param || function(index, decorator) { return function (targ
|
||||
|
||||
function emitAMDModule(node: SourceFile, startIndex: number) {
|
||||
collectExternalModuleInfo(node);
|
||||
|
||||
// An AMD define function has the following shape:
|
||||
// define(id?, dependencies?, factory);
|
||||
//
|
||||
// This has the shape of
|
||||
// define(name, ["module1", "module2"], function (module1Alias) {
|
||||
// The location of the alias in the parameter list in the factory function needs to
|
||||
// match the position of the module name in the dependency list.
|
||||
//
|
||||
// To ensure this is true in cases of modules with no aliases, e.g.:
|
||||
// `import "module"` or `<amd-dependency path= "a.css" />`
|
||||
// we need to add modules without alias names to the end of the dependencies list
|
||||
|
||||
let aliasedModuleNames: string[] = []; // names of modules with corresponding parameter in the
|
||||
// factory function.
|
||||
let unaliasedModuleNames: string[] = []; // names of modules with no corresponding parameters in
|
||||
// factory function.
|
||||
let importAliasNames: string[] = []; // names of the parameters in the factory function; these
|
||||
// paramters need to match the indexes of the corresponding
|
||||
// module names in aliasedModuleNames.
|
||||
|
||||
// Fill in amd-dependency tags
|
||||
for (let amdDependency of node.amdDependencies) {
|
||||
if (amdDependency.name) {
|
||||
aliasedModuleNames.push("\"" + amdDependency.path + "\"");
|
||||
importAliasNames.push(amdDependency.name);
|
||||
}
|
||||
else {
|
||||
unaliasedModuleNames.push("\"" + amdDependency.path + "\"");
|
||||
}
|
||||
}
|
||||
|
||||
for (let importNode of externalImports) {
|
||||
// Find the name of the external module
|
||||
let externalModuleName = "";
|
||||
let moduleName = getExternalModuleName(importNode);
|
||||
if (moduleName.kind === SyntaxKind.StringLiteral) {
|
||||
externalModuleName = getLiteralText(<LiteralExpression>moduleName);
|
||||
}
|
||||
|
||||
// Find the name of the module alais, if there is one
|
||||
let importAliasName: string;
|
||||
let namespaceDeclaration = getNamespaceDeclarationNode(importNode);
|
||||
if (namespaceDeclaration && !isDefaultImport(importNode)) {
|
||||
importAliasName = getSourceTextOfNodeFromSourceFile(currentSourceFile, namespaceDeclaration.name);
|
||||
}
|
||||
else {
|
||||
importAliasName = getGeneratedNameForNode(<ImportDeclaration | ExportDeclaration>importNode);
|
||||
}
|
||||
|
||||
if (importAliasName) {
|
||||
aliasedModuleNames.push(externalModuleName);
|
||||
importAliasNames.push(importAliasName);
|
||||
}
|
||||
else {
|
||||
unaliasedModuleNames.push(externalModuleName);
|
||||
}
|
||||
}
|
||||
|
||||
writeLine();
|
||||
write("define(");
|
||||
sortAMDModules(node.amdDependencies);
|
||||
if (node.amdModuleName) {
|
||||
write("\"" + node.amdModuleName + "\", ");
|
||||
}
|
||||
write("[\"require\", \"exports\"");
|
||||
for (let importNode of externalImports) {
|
||||
if (aliasedModuleNames.length) {
|
||||
write(", ");
|
||||
let moduleName = getExternalModuleName(importNode);
|
||||
if (moduleName.kind === SyntaxKind.StringLiteral) {
|
||||
emitLiteral(<LiteralExpression>moduleName);
|
||||
}
|
||||
else {
|
||||
write("\"\"");
|
||||
}
|
||||
write(aliasedModuleNames.join(", "));
|
||||
}
|
||||
for (let amdDependency of node.amdDependencies) {
|
||||
let text = "\"" + amdDependency.path + "\"";
|
||||
if (unaliasedModuleNames.length) {
|
||||
write(", ");
|
||||
write(text);
|
||||
write(unaliasedModuleNames.join(", "));
|
||||
}
|
||||
write("], function (require, exports");
|
||||
for (let importNode of externalImports) {
|
||||
if (importAliasNames.length) {
|
||||
write(", ");
|
||||
let namespaceDeclaration = getNamespaceDeclarationNode(importNode);
|
||||
if (namespaceDeclaration && !isDefaultImport(importNode)) {
|
||||
emit(namespaceDeclaration.name);
|
||||
}
|
||||
else {
|
||||
write(getGeneratedNameForNode(<ImportDeclaration | ExportDeclaration>importNode));
|
||||
}
|
||||
}
|
||||
for (let amdDependency of node.amdDependencies) {
|
||||
if (amdDependency.name) {
|
||||
write(", ");
|
||||
write(amdDependency.name);
|
||||
}
|
||||
write(importAliasNames.join(", "));
|
||||
}
|
||||
write(") {");
|
||||
increaseIndent();
|
||||
|
||||
@ -1803,7 +1803,7 @@ module ts {
|
||||
function parseParameterType(): TypeNode {
|
||||
if (parseOptional(SyntaxKind.ColonToken)) {
|
||||
return token === SyntaxKind.StringLiteral
|
||||
? <StringLiteralTypeNode>parseLiteralNode(/*internName:*/ true)
|
||||
? <StringLiteral>parseLiteralNode(/*internName:*/ true)
|
||||
: parseType();
|
||||
}
|
||||
|
||||
|
||||
@ -596,7 +596,11 @@ module ts {
|
||||
type: TypeNode;
|
||||
}
|
||||
|
||||
export interface StringLiteralTypeNode extends LiteralExpression, TypeNode { }
|
||||
// Note that a StringLiteral AST node is both an Expression and a TypeNode. The latter is
|
||||
// because string literals can appear in the type annotation of a parameter node.
|
||||
export interface StringLiteral extends LiteralExpression, TypeNode {
|
||||
_stringLiteralBrand: any;
|
||||
}
|
||||
|
||||
// Note: 'brands' in our syntax nodes serve to give us a small amount of nominal typing.
|
||||
// Consider 'Expression'. Without the brand, 'Expression' is actually no different
|
||||
@ -689,10 +693,6 @@ module ts {
|
||||
hasExtendedUnicodeEscape?: boolean;
|
||||
}
|
||||
|
||||
export interface StringLiteralExpression extends LiteralExpression {
|
||||
_stringLiteralExpressionBrand: any;
|
||||
}
|
||||
|
||||
export interface TemplateExpression extends PrimaryExpression {
|
||||
head: LiteralExpression;
|
||||
templateSpans: NodeArray<TemplateSpan>;
|
||||
@ -739,7 +739,7 @@ module ts {
|
||||
arguments: NodeArray<Expression>;
|
||||
}
|
||||
|
||||
export interface HeritageClauseElement extends Node {
|
||||
export interface HeritageClauseElement extends TypeNode {
|
||||
expression: LeftHandSideExpression;
|
||||
typeArguments?: NodeArray<TypeNode>;
|
||||
}
|
||||
|
||||
@ -1913,4 +1913,4 @@ module ts {
|
||||
|
||||
return createTextChangeRange(createTextSpanFromBounds(oldStartN, oldEndN), /*newLength:*/ newEndN - oldStartN);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
22906
src/lib/dom.generated.d.ts
vendored
22906
src/lib/dom.generated.d.ts
vendored
File diff suppressed because it is too large
Load Diff
2104
src/lib/extensions.d.ts
vendored
2104
src/lib/extensions.d.ts
vendored
File diff suppressed because it is too large
Load Diff
1472
src/lib/webworker.generated.d.ts
vendored
1472
src/lib/webworker.generated.d.ts
vendored
File diff suppressed because it is too large
Load Diff
@ -6,6 +6,6 @@ m1.f();
|
||||
|
||||
//// [amdDependencyCommentName2.js]
|
||||
///<amd-dependency path='bar' name='b'/>
|
||||
define(["require", "exports", "m2", "bar"], function (require, exports, m1, b) {
|
||||
define(["require", "exports", "bar", "m2"], function (require, exports, b, m1) {
|
||||
m1.f();
|
||||
});
|
||||
|
||||
@ -10,6 +10,6 @@ m1.f();
|
||||
///<amd-dependency path='bar' name='b'/>
|
||||
///<amd-dependency path='foo'/>
|
||||
///<amd-dependency path='goo' name='c'/>
|
||||
define(["require", "exports", "m2", "bar", "goo", "foo"], function (require, exports, m1, b, c) {
|
||||
define(["require", "exports", "bar", "goo", "m2", "foo"], function (require, exports, b, c, m1) {
|
||||
m1.f();
|
||||
});
|
||||
|
||||
@ -0,0 +1,35 @@
|
||||
tests/cases/compiler/amdDependencyCommentName4.ts(8,21): error TS2307: Cannot find external module 'aliasedModule1'.
|
||||
tests/cases/compiler/amdDependencyCommentName4.ts(11,26): error TS2307: Cannot find external module 'aliasedModule2'.
|
||||
tests/cases/compiler/amdDependencyCommentName4.ts(14,15): error TS2307: Cannot find external module 'aliasedModule3'.
|
||||
tests/cases/compiler/amdDependencyCommentName4.ts(17,21): error TS2307: Cannot find external module 'aliasedModule4'.
|
||||
|
||||
|
||||
==== tests/cases/compiler/amdDependencyCommentName4.ts (4 errors) ====
|
||||
///<amd-dependency path='aliasedModule5' name='n1'/>
|
||||
///<amd-dependency path='unaliasedModule3'/>
|
||||
///<amd-dependency path='aliasedModule6' name='n2'/>
|
||||
///<amd-dependency path='unaliasedModule4'/>
|
||||
|
||||
import "unaliasedModule1";
|
||||
|
||||
import r1 = require("aliasedModule1");
|
||||
~~~~~~~~~~~~~~~~
|
||||
!!! error TS2307: Cannot find external module 'aliasedModule1'.
|
||||
r1;
|
||||
|
||||
import {p1, p2, p3} from "aliasedModule2";
|
||||
~~~~~~~~~~~~~~~~
|
||||
!!! error TS2307: Cannot find external module 'aliasedModule2'.
|
||||
p1;
|
||||
|
||||
import d from "aliasedModule3";
|
||||
~~~~~~~~~~~~~~~~
|
||||
!!! error TS2307: Cannot find external module 'aliasedModule3'.
|
||||
d;
|
||||
|
||||
import * as ns from "aliasedModule4";
|
||||
~~~~~~~~~~~~~~~~
|
||||
!!! error TS2307: Cannot find external module 'aliasedModule4'.
|
||||
ns;
|
||||
|
||||
import "unaliasedModule2";
|
||||
33
tests/baselines/reference/amdDependencyCommentName4.js
Normal file
33
tests/baselines/reference/amdDependencyCommentName4.js
Normal file
@ -0,0 +1,33 @@
|
||||
//// [amdDependencyCommentName4.ts]
|
||||
///<amd-dependency path='aliasedModule5' name='n1'/>
|
||||
///<amd-dependency path='unaliasedModule3'/>
|
||||
///<amd-dependency path='aliasedModule6' name='n2'/>
|
||||
///<amd-dependency path='unaliasedModule4'/>
|
||||
|
||||
import "unaliasedModule1";
|
||||
|
||||
import r1 = require("aliasedModule1");
|
||||
r1;
|
||||
|
||||
import {p1, p2, p3} from "aliasedModule2";
|
||||
p1;
|
||||
|
||||
import d from "aliasedModule3";
|
||||
d;
|
||||
|
||||
import * as ns from "aliasedModule4";
|
||||
ns;
|
||||
|
||||
import "unaliasedModule2";
|
||||
|
||||
//// [amdDependencyCommentName4.js]
|
||||
///<amd-dependency path='aliasedModule5' name='n1'/>
|
||||
///<amd-dependency path='unaliasedModule3'/>
|
||||
///<amd-dependency path='aliasedModule6' name='n2'/>
|
||||
///<amd-dependency path='unaliasedModule4'/>
|
||||
define(["require", "exports", "aliasedModule5", "aliasedModule6", "aliasedModule1", "aliasedModule2", "aliasedModule3", "aliasedModule4", "unaliasedModule3", "unaliasedModule4", "unaliasedModule1", "unaliasedModule2"], function (require, exports, n1, n2, r1, aliasedModule2_1, aliasedModule3_1, ns) {
|
||||
r1;
|
||||
aliasedModule2_1.p1;
|
||||
aliasedModule3_1.default;
|
||||
ns;
|
||||
});
|
||||
@ -0,0 +1,28 @@
|
||||
//// [es5ExportDefaultClassDeclaration4.ts]
|
||||
|
||||
declare module "foo" {
|
||||
export var before: C;
|
||||
|
||||
export default class C {
|
||||
method(): C;
|
||||
}
|
||||
|
||||
export var after: C;
|
||||
|
||||
export var t: typeof C;
|
||||
}
|
||||
|
||||
|
||||
|
||||
//// [es5ExportDefaultClassDeclaration4.js]
|
||||
|
||||
|
||||
//// [es5ExportDefaultClassDeclaration4.d.ts]
|
||||
declare module "foo" {
|
||||
var before: C;
|
||||
class C {
|
||||
method(): C;
|
||||
}
|
||||
var after: C;
|
||||
var t: typeof C;
|
||||
}
|
||||
@ -0,0 +1,25 @@
|
||||
=== tests/cases/compiler/es5ExportDefaultClassDeclaration4.ts ===
|
||||
|
||||
declare module "foo" {
|
||||
export var before: C;
|
||||
>before : Symbol(before, Decl(es5ExportDefaultClassDeclaration4.ts, 2, 14))
|
||||
>C : Symbol(C, Decl(es5ExportDefaultClassDeclaration4.ts, 2, 25))
|
||||
|
||||
export default class C {
|
||||
>C : Symbol(C, Decl(es5ExportDefaultClassDeclaration4.ts, 2, 25))
|
||||
|
||||
method(): C;
|
||||
>method : Symbol(method, Decl(es5ExportDefaultClassDeclaration4.ts, 4, 28))
|
||||
>C : Symbol(C, Decl(es5ExportDefaultClassDeclaration4.ts, 2, 25))
|
||||
}
|
||||
|
||||
export var after: C;
|
||||
>after : Symbol(after, Decl(es5ExportDefaultClassDeclaration4.ts, 8, 14))
|
||||
>C : Symbol(C, Decl(es5ExportDefaultClassDeclaration4.ts, 2, 25))
|
||||
|
||||
export var t: typeof C;
|
||||
>t : Symbol(t, Decl(es5ExportDefaultClassDeclaration4.ts, 10, 14))
|
||||
>C : Symbol(C, Decl(es5ExportDefaultClassDeclaration4.ts, 2, 25))
|
||||
}
|
||||
|
||||
|
||||
@ -0,0 +1,25 @@
|
||||
=== tests/cases/compiler/es5ExportDefaultClassDeclaration4.ts ===
|
||||
|
||||
declare module "foo" {
|
||||
export var before: C;
|
||||
>before : C
|
||||
>C : C
|
||||
|
||||
export default class C {
|
||||
>C : C
|
||||
|
||||
method(): C;
|
||||
>method : () => C
|
||||
>C : C
|
||||
}
|
||||
|
||||
export var after: C;
|
||||
>after : C
|
||||
>C : C
|
||||
|
||||
export var t: typeof C;
|
||||
>t : typeof C
|
||||
>C : typeof C
|
||||
}
|
||||
|
||||
|
||||
@ -0,0 +1,19 @@
|
||||
//// [es5ExportDefaultFunctionDeclaration4.ts]
|
||||
|
||||
declare module "bar" {
|
||||
var before: typeof func;
|
||||
|
||||
export default function func(): typeof func;
|
||||
|
||||
var after: typeof func;
|
||||
}
|
||||
|
||||
//// [es5ExportDefaultFunctionDeclaration4.js]
|
||||
|
||||
|
||||
//// [es5ExportDefaultFunctionDeclaration4.d.ts]
|
||||
declare module "bar" {
|
||||
var before: typeof func;
|
||||
function func(): typeof func;
|
||||
var after: typeof func;
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
=== tests/cases/compiler/es5ExportDefaultFunctionDeclaration4.ts ===
|
||||
|
||||
declare module "bar" {
|
||||
var before: typeof func;
|
||||
>before : Symbol(before, Decl(es5ExportDefaultFunctionDeclaration4.ts, 2, 7))
|
||||
>func : Symbol(func, Decl(es5ExportDefaultFunctionDeclaration4.ts, 2, 28))
|
||||
|
||||
export default function func(): typeof func;
|
||||
>func : Symbol(func, Decl(es5ExportDefaultFunctionDeclaration4.ts, 2, 28))
|
||||
>func : Symbol(func, Decl(es5ExportDefaultFunctionDeclaration4.ts, 2, 28))
|
||||
|
||||
var after: typeof func;
|
||||
>after : Symbol(after, Decl(es5ExportDefaultFunctionDeclaration4.ts, 6, 7))
|
||||
>func : Symbol(func, Decl(es5ExportDefaultFunctionDeclaration4.ts, 2, 28))
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
=== tests/cases/compiler/es5ExportDefaultFunctionDeclaration4.ts ===
|
||||
|
||||
declare module "bar" {
|
||||
var before: typeof func;
|
||||
>before : () => typeof func
|
||||
>func : () => typeof func
|
||||
|
||||
export default function func(): typeof func;
|
||||
>func : () => typeof func
|
||||
>func : () => typeof func
|
||||
|
||||
var after: typeof func;
|
||||
>after : () => typeof func
|
||||
>func : () => typeof func
|
||||
}
|
||||
@ -22,7 +22,7 @@ define(["require", "exports"], function (require, exports) {
|
||||
exports.b = 10;
|
||||
});
|
||||
//// [es6ImportWithoutFromClauseAmd_2.js]
|
||||
define(["require", "exports", "es6ImportWithoutFromClauseAmd_0", "es6ImportWithoutFromClauseAmd_2"], function (require, exports, , ) {
|
||||
define(["require", "exports", "es6ImportWithoutFromClauseAmd_0", "es6ImportWithoutFromClauseAmd_2"], function (require, exports) {
|
||||
var _a = 10;
|
||||
var _b = 10;
|
||||
});
|
||||
|
||||
@ -353,20 +353,6 @@ emittedFile:test.js
|
||||
sourceFile:../../test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "ref/m1", "../outputdir_module_multifolder_ref/m2"], function (require, exports, m1, m2) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
3 > ^^
|
||||
4 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
3 > = require("ref/m1");
|
||||
> import
|
||||
4 > m2
|
||||
1 >Emitted(1, 112) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 114) Source(1, 10) + SourceIndex(0)
|
||||
3 >Emitted(1, 116) Source(2, 8) + SourceIndex(0)
|
||||
4 >Emitted(1, 118) Source(2, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -374,7 +360,8 @@ sourceFile:../../test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("../outputdir_module_multifolder_ref/m2");
|
||||
1 >import m1 = require("ref/m1");
|
||||
>import m2 = require("../outputdir_module_multifolder_ref/m2");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["../../test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"+GAAO,EAAE,EACF,EAAE;IACE,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"}
|
||||
{"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"}
|
||||
@ -353,20 +353,6 @@ emittedFile:outdir/simple/outputdir_module_multifolder/test.js
|
||||
sourceFile:../../test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "ref/m1", "../outputdir_module_multifolder_ref/m2"], function (require, exports, m1, m2) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
3 > ^^
|
||||
4 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
3 > = require("ref/m1");
|
||||
> import
|
||||
4 > m2
|
||||
1 >Emitted(1, 112) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 114) Source(1, 10) + SourceIndex(0)
|
||||
3 >Emitted(1, 116) Source(2, 8) + SourceIndex(0)
|
||||
4 >Emitted(1, 118) Source(2, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -374,7 +360,8 @@ sourceFile:../../test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("../outputdir_module_multifolder_ref/m2");
|
||||
1 >import m1 = require("ref/m1");
|
||||
>import m2 = require("../outputdir_module_multifolder_ref/m2");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["../../test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"+GAAO,EAAE,EACF,EAAE;IACE,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"}
|
||||
{"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"}
|
||||
@ -353,20 +353,6 @@ emittedFile:test.js
|
||||
sourceFile:../../test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "ref/m1", "../outputdir_module_multifolder_ref/m2"], function (require, exports, m1, m2) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
3 > ^^
|
||||
4 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
3 > = require("ref/m1");
|
||||
> import
|
||||
4 > m2
|
||||
1 >Emitted(1, 112) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 114) Source(1, 10) + SourceIndex(0)
|
||||
3 >Emitted(1, 116) Source(2, 8) + SourceIndex(0)
|
||||
4 >Emitted(1, 118) Source(2, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -374,7 +360,8 @@ sourceFile:../../test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("../outputdir_module_multifolder_ref/m2");
|
||||
1 >import m1 = require("ref/m1");
|
||||
>import m2 = require("../outputdir_module_multifolder_ref/m2");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["../../test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"+GAAO,EAAE,EACF,EAAE;IACE,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"}
|
||||
{"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"}
|
||||
@ -181,13 +181,6 @@ emittedFile:test.js
|
||||
sourceFile:../test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "m1"], function (require, exports, m1) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
1 >Emitted(1, 66) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 68) Source(1, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -195,7 +188,7 @@ sourceFile:../test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("m1");
|
||||
1 >import m1 = require("m1");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["../test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"iEAAO,EAAE;IACE,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"}
|
||||
{"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"}
|
||||
@ -181,13 +181,6 @@ emittedFile:outdir/simple/test.js
|
||||
sourceFile:../test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "m1"], function (require, exports, m1) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
1 >Emitted(1, 66) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 68) Source(1, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -195,7 +188,7 @@ sourceFile:../test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("m1");
|
||||
1 >import m1 = require("m1");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["../test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"iEAAO,EAAE;IACE,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"}
|
||||
{"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"}
|
||||
@ -181,13 +181,6 @@ emittedFile:test.js
|
||||
sourceFile:../test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "m1"], function (require, exports, m1) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
1 >Emitted(1, 66) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 68) Source(1, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -195,7 +188,7 @@ sourceFile:../test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("m1");
|
||||
1 >import m1 = require("m1");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["../test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"iEAAO,EAAE;IACE,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"}
|
||||
{"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"}
|
||||
@ -181,13 +181,6 @@ emittedFile:test.js
|
||||
sourceFile:../test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "ref/m1"], function (require, exports, m1) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
1 >Emitted(1, 70) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 72) Source(1, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -195,7 +188,7 @@ sourceFile:../test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("ref/m1");
|
||||
1 >import m1 = require("ref/m1");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["../test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"qEAAO,EAAE;IACE,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"}
|
||||
{"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"}
|
||||
@ -181,13 +181,6 @@ emittedFile:outdir/simple/test.js
|
||||
sourceFile:../test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "ref/m1"], function (require, exports, m1) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
1 >Emitted(1, 70) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 72) Source(1, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -195,7 +188,7 @@ sourceFile:../test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("ref/m1");
|
||||
1 >import m1 = require("ref/m1");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["../test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"qEAAO,EAAE;IACE,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"}
|
||||
{"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"}
|
||||
@ -181,13 +181,6 @@ emittedFile:test.js
|
||||
sourceFile:../test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "ref/m1"], function (require, exports, m1) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
1 >Emitted(1, 70) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 72) Source(1, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -195,7 +188,7 @@ sourceFile:../test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("ref/m1");
|
||||
1 >import m1 = require("ref/m1");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["../test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"qEAAO,EAAE;IACE,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"}
|
||||
{"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"}
|
||||
@ -353,20 +353,6 @@ emittedFile:test.js
|
||||
sourceFile:../../projects/outputdir_module_multifolder/test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "ref/m1", "../outputdir_module_multifolder_ref/m2"], function (require, exports, m1, m2) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
3 > ^^
|
||||
4 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
3 > = require("ref/m1");
|
||||
> import
|
||||
4 > m2
|
||||
1 >Emitted(1, 112) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 114) Source(1, 10) + SourceIndex(0)
|
||||
3 >Emitted(1, 116) Source(2, 8) + SourceIndex(0)
|
||||
4 >Emitted(1, 118) Source(2, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -374,7 +360,8 @@ sourceFile:../../projects/outputdir_module_multifolder/test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("../outputdir_module_multifolder_ref/m2");
|
||||
1 >import m1 = require("ref/m1");
|
||||
>import m2 = require("../outputdir_module_multifolder_ref/m2");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["../../projects/outputdir_module_multifolder/test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"+GAAO,EAAE,EACF,EAAE;IACE,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"}
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["../../projects/outputdir_module_multifolder/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"}
|
||||
@ -353,20 +353,6 @@ emittedFile:outdir/simple/outputdir_module_multifolder/test.js
|
||||
sourceFile:../../projects/outputdir_module_multifolder/test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "ref/m1", "../outputdir_module_multifolder_ref/m2"], function (require, exports, m1, m2) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
3 > ^^
|
||||
4 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
3 > = require("ref/m1");
|
||||
> import
|
||||
4 > m2
|
||||
1 >Emitted(1, 112) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 114) Source(1, 10) + SourceIndex(0)
|
||||
3 >Emitted(1, 116) Source(2, 8) + SourceIndex(0)
|
||||
4 >Emitted(1, 118) Source(2, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -374,7 +360,8 @@ sourceFile:../../projects/outputdir_module_multifolder/test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("../outputdir_module_multifolder_ref/m2");
|
||||
1 >import m1 = require("ref/m1");
|
||||
>import m2 = require("../outputdir_module_multifolder_ref/m2");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["../../projects/outputdir_module_multifolder/test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"+GAAO,EAAE,EACF,EAAE;IACE,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"}
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["../../projects/outputdir_module_multifolder/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"}
|
||||
@ -353,20 +353,6 @@ emittedFile:test.js
|
||||
sourceFile:../../projects/outputdir_module_multifolder/test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "ref/m1", "../outputdir_module_multifolder_ref/m2"], function (require, exports, m1, m2) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
3 > ^^
|
||||
4 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
3 > = require("ref/m1");
|
||||
> import
|
||||
4 > m2
|
||||
1 >Emitted(1, 112) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 114) Source(1, 10) + SourceIndex(0)
|
||||
3 >Emitted(1, 116) Source(2, 8) + SourceIndex(0)
|
||||
4 >Emitted(1, 118) Source(2, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -374,7 +360,8 @@ sourceFile:../../projects/outputdir_module_multifolder/test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("../outputdir_module_multifolder_ref/m2");
|
||||
1 >import m1 = require("ref/m1");
|
||||
>import m2 = require("../outputdir_module_multifolder_ref/m2");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["../../projects/outputdir_module_multifolder/test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"+GAAO,EAAE,EACF,EAAE;IACE,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"}
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["../../projects/outputdir_module_multifolder/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"}
|
||||
@ -181,13 +181,6 @@ emittedFile:test.js
|
||||
sourceFile:../outputdir_module_simple/test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "m1"], function (require, exports, m1) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
1 >Emitted(1, 66) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 68) Source(1, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -195,7 +188,7 @@ sourceFile:../outputdir_module_simple/test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("m1");
|
||||
1 >import m1 = require("m1");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["../outputdir_module_simple/test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"iEAAO,EAAE;IACE,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"}
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["../outputdir_module_simple/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"}
|
||||
@ -181,13 +181,6 @@ emittedFile:outdir/simple/test.js
|
||||
sourceFile:../outputdir_module_simple/test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "m1"], function (require, exports, m1) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
1 >Emitted(1, 66) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 68) Source(1, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -195,7 +188,7 @@ sourceFile:../outputdir_module_simple/test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("m1");
|
||||
1 >import m1 = require("m1");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["../outputdir_module_simple/test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"iEAAO,EAAE;IACE,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"}
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["../outputdir_module_simple/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"}
|
||||
@ -181,13 +181,6 @@ emittedFile:test.js
|
||||
sourceFile:../outputdir_module_simple/test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "m1"], function (require, exports, m1) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
1 >Emitted(1, 66) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 68) Source(1, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -195,7 +188,7 @@ sourceFile:../outputdir_module_simple/test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("m1");
|
||||
1 >import m1 = require("m1");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["../outputdir_module_simple/test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"iEAAO,EAAE;IACE,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"}
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["../outputdir_module_simple/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"}
|
||||
@ -181,13 +181,6 @@ emittedFile:test.js
|
||||
sourceFile:../outputdir_module_subfolder/test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "ref/m1"], function (require, exports, m1) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
1 >Emitted(1, 70) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 72) Source(1, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -195,7 +188,7 @@ sourceFile:../outputdir_module_subfolder/test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("ref/m1");
|
||||
1 >import m1 = require("ref/m1");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["../outputdir_module_subfolder/test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"qEAAO,EAAE;IACE,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"}
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["../outputdir_module_subfolder/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"}
|
||||
@ -181,13 +181,6 @@ emittedFile:outdir/simple/test.js
|
||||
sourceFile:../outputdir_module_subfolder/test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "ref/m1"], function (require, exports, m1) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
1 >Emitted(1, 70) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 72) Source(1, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -195,7 +188,7 @@ sourceFile:../outputdir_module_subfolder/test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("ref/m1");
|
||||
1 >import m1 = require("ref/m1");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["../outputdir_module_subfolder/test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"qEAAO,EAAE;IACE,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"}
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["../outputdir_module_subfolder/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"}
|
||||
@ -181,13 +181,6 @@ emittedFile:test.js
|
||||
sourceFile:../outputdir_module_subfolder/test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "ref/m1"], function (require, exports, m1) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
1 >Emitted(1, 70) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 72) Source(1, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -195,7 +188,7 @@ sourceFile:../outputdir_module_subfolder/test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("ref/m1");
|
||||
1 >import m1 = require("ref/m1");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["../outputdir_module_subfolder/test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"qEAAO,EAAE;IACE,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"}
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["../outputdir_module_subfolder/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"}
|
||||
@ -353,20 +353,6 @@ emittedFile:test.js
|
||||
sourceFile:file:///tests/cases/projects/outputdir_module_multifolder/test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "ref/m1", "../outputdir_module_multifolder_ref/m2"], function (require, exports, m1, m2) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
3 > ^^
|
||||
4 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
3 > = require("ref/m1");
|
||||
> import
|
||||
4 > m2
|
||||
1 >Emitted(1, 112) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 114) Source(1, 10) + SourceIndex(0)
|
||||
3 >Emitted(1, 116) Source(2, 8) + SourceIndex(0)
|
||||
4 >Emitted(1, 118) Source(2, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -374,7 +360,8 @@ sourceFile:file:///tests/cases/projects/outputdir_module_multifolder/test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("../outputdir_module_multifolder_ref/m2");
|
||||
1 >import m1 = require("ref/m1");
|
||||
>import m2 = require("../outputdir_module_multifolder_ref/m2");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["file:///tests/cases/projects/outputdir_module_multifolder/test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"+GAAO,EAAE,EACF,EAAE;IACE,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"}
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["file:///tests/cases/projects/outputdir_module_multifolder/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"}
|
||||
@ -353,20 +353,6 @@ emittedFile:outdir/simple/outputdir_module_multifolder/test.js
|
||||
sourceFile:file:///tests/cases/projects/outputdir_module_multifolder/test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "ref/m1", "../outputdir_module_multifolder_ref/m2"], function (require, exports, m1, m2) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
3 > ^^
|
||||
4 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
3 > = require("ref/m1");
|
||||
> import
|
||||
4 > m2
|
||||
1 >Emitted(1, 112) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 114) Source(1, 10) + SourceIndex(0)
|
||||
3 >Emitted(1, 116) Source(2, 8) + SourceIndex(0)
|
||||
4 >Emitted(1, 118) Source(2, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -374,7 +360,8 @@ sourceFile:file:///tests/cases/projects/outputdir_module_multifolder/test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("../outputdir_module_multifolder_ref/m2");
|
||||
1 >import m1 = require("ref/m1");
|
||||
>import m2 = require("../outputdir_module_multifolder_ref/m2");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["file:///tests/cases/projects/outputdir_module_multifolder/test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"+GAAO,EAAE,EACF,EAAE;IACE,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"}
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["file:///tests/cases/projects/outputdir_module_multifolder/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"}
|
||||
@ -353,20 +353,6 @@ emittedFile:test.js
|
||||
sourceFile:file:///tests/cases/projects/outputdir_module_multifolder/test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "ref/m1", "../outputdir_module_multifolder_ref/m2"], function (require, exports, m1, m2) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
3 > ^^
|
||||
4 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
3 > = require("ref/m1");
|
||||
> import
|
||||
4 > m2
|
||||
1 >Emitted(1, 112) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 114) Source(1, 10) + SourceIndex(0)
|
||||
3 >Emitted(1, 116) Source(2, 8) + SourceIndex(0)
|
||||
4 >Emitted(1, 118) Source(2, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -374,7 +360,8 @@ sourceFile:file:///tests/cases/projects/outputdir_module_multifolder/test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("../outputdir_module_multifolder_ref/m2");
|
||||
1 >import m1 = require("ref/m1");
|
||||
>import m2 = require("../outputdir_module_multifolder_ref/m2");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["file:///tests/cases/projects/outputdir_module_multifolder/test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"+GAAO,EAAE,EACF,EAAE;IACE,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"}
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["file:///tests/cases/projects/outputdir_module_multifolder/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"}
|
||||
@ -181,13 +181,6 @@ emittedFile:test.js
|
||||
sourceFile:file:///tests/cases/projects/outputdir_module_simple/test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "m1"], function (require, exports, m1) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
1 >Emitted(1, 66) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 68) Source(1, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -195,7 +188,7 @@ sourceFile:file:///tests/cases/projects/outputdir_module_simple/test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("m1");
|
||||
1 >import m1 = require("m1");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["file:///tests/cases/projects/outputdir_module_simple/test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"iEAAO,EAAE;IACE,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"}
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["file:///tests/cases/projects/outputdir_module_simple/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"}
|
||||
@ -181,13 +181,6 @@ emittedFile:outdir/simple/test.js
|
||||
sourceFile:file:///tests/cases/projects/outputdir_module_simple/test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "m1"], function (require, exports, m1) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
1 >Emitted(1, 66) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 68) Source(1, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -195,7 +188,7 @@ sourceFile:file:///tests/cases/projects/outputdir_module_simple/test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("m1");
|
||||
1 >import m1 = require("m1");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["file:///tests/cases/projects/outputdir_module_simple/test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"iEAAO,EAAE;IACE,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"}
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["file:///tests/cases/projects/outputdir_module_simple/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"}
|
||||
@ -181,13 +181,6 @@ emittedFile:test.js
|
||||
sourceFile:file:///tests/cases/projects/outputdir_module_simple/test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "m1"], function (require, exports, m1) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
1 >Emitted(1, 66) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 68) Source(1, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -195,7 +188,7 @@ sourceFile:file:///tests/cases/projects/outputdir_module_simple/test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("m1");
|
||||
1 >import m1 = require("m1");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["file:///tests/cases/projects/outputdir_module_simple/test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"iEAAO,EAAE;IACE,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"}
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["file:///tests/cases/projects/outputdir_module_simple/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"}
|
||||
@ -181,13 +181,6 @@ emittedFile:test.js
|
||||
sourceFile:file:///tests/cases/projects/outputdir_module_subfolder/test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "ref/m1"], function (require, exports, m1) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
1 >Emitted(1, 70) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 72) Source(1, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -195,7 +188,7 @@ sourceFile:file:///tests/cases/projects/outputdir_module_subfolder/test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("ref/m1");
|
||||
1 >import m1 = require("ref/m1");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["file:///tests/cases/projects/outputdir_module_subfolder/test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"qEAAO,EAAE;IACE,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"}
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["file:///tests/cases/projects/outputdir_module_subfolder/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"}
|
||||
@ -181,13 +181,6 @@ emittedFile:outdir/simple/test.js
|
||||
sourceFile:file:///tests/cases/projects/outputdir_module_subfolder/test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "ref/m1"], function (require, exports, m1) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
1 >Emitted(1, 70) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 72) Source(1, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -195,7 +188,7 @@ sourceFile:file:///tests/cases/projects/outputdir_module_subfolder/test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("ref/m1");
|
||||
1 >import m1 = require("ref/m1");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["file:///tests/cases/projects/outputdir_module_subfolder/test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"qEAAO,EAAE;IACE,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"}
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["file:///tests/cases/projects/outputdir_module_subfolder/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"}
|
||||
@ -181,13 +181,6 @@ emittedFile:test.js
|
||||
sourceFile:file:///tests/cases/projects/outputdir_module_subfolder/test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "ref/m1"], function (require, exports, m1) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
1 >Emitted(1, 70) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 72) Source(1, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -195,7 +188,7 @@ sourceFile:file:///tests/cases/projects/outputdir_module_subfolder/test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("ref/m1");
|
||||
1 >import m1 = require("ref/m1");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["file:///tests/cases/projects/outputdir_module_subfolder/test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"qEAAO,EAAE;IACE,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"}
|
||||
{"version":3,"file":"test.js","sourceRoot":"","sources":["file:///tests/cases/projects/outputdir_module_subfolder/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"}
|
||||
@ -353,20 +353,6 @@ emittedFile:test.js
|
||||
sourceFile:outputdir_module_multifolder/test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "ref/m1", "../outputdir_module_multifolder_ref/m2"], function (require, exports, m1, m2) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
3 > ^^
|
||||
4 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
3 > = require("ref/m1");
|
||||
> import
|
||||
4 > m2
|
||||
1 >Emitted(1, 112) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 114) Source(1, 10) + SourceIndex(0)
|
||||
3 >Emitted(1, 116) Source(2, 8) + SourceIndex(0)
|
||||
4 >Emitted(1, 118) Source(2, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -374,7 +360,8 @@ sourceFile:outputdir_module_multifolder/test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("../outputdir_module_multifolder_ref/m2");
|
||||
1 >import m1 = require("ref/m1");
|
||||
>import m2 = require("../outputdir_module_multifolder_ref/m2");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"http://typescript.codeplex.com/","sources":["outputdir_module_multifolder/test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"+GAAO,EAAE,EACF,EAAE;IACE,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"}
|
||||
{"version":3,"file":"test.js","sourceRoot":"http://typescript.codeplex.com/","sources":["outputdir_module_multifolder/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"}
|
||||
@ -353,20 +353,6 @@ emittedFile:outdir/simple/outputdir_module_multifolder/test.js
|
||||
sourceFile:outputdir_module_multifolder/test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "ref/m1", "../outputdir_module_multifolder_ref/m2"], function (require, exports, m1, m2) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
3 > ^^
|
||||
4 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
3 > = require("ref/m1");
|
||||
> import
|
||||
4 > m2
|
||||
1 >Emitted(1, 112) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 114) Source(1, 10) + SourceIndex(0)
|
||||
3 >Emitted(1, 116) Source(2, 8) + SourceIndex(0)
|
||||
4 >Emitted(1, 118) Source(2, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -374,7 +360,8 @@ sourceFile:outputdir_module_multifolder/test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("../outputdir_module_multifolder_ref/m2");
|
||||
1 >import m1 = require("ref/m1");
|
||||
>import m2 = require("../outputdir_module_multifolder_ref/m2");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"http://typescript.codeplex.com/","sources":["outputdir_module_multifolder/test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"+GAAO,EAAE,EACF,EAAE;IACE,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"}
|
||||
{"version":3,"file":"test.js","sourceRoot":"http://typescript.codeplex.com/","sources":["outputdir_module_multifolder/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"}
|
||||
@ -353,20 +353,6 @@ emittedFile:test.js
|
||||
sourceFile:outputdir_module_multifolder/test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "ref/m1", "../outputdir_module_multifolder_ref/m2"], function (require, exports, m1, m2) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
3 > ^^
|
||||
4 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
3 > = require("ref/m1");
|
||||
> import
|
||||
4 > m2
|
||||
1 >Emitted(1, 112) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 114) Source(1, 10) + SourceIndex(0)
|
||||
3 >Emitted(1, 116) Source(2, 8) + SourceIndex(0)
|
||||
4 >Emitted(1, 118) Source(2, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -374,7 +360,8 @@ sourceFile:outputdir_module_multifolder/test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("../outputdir_module_multifolder_ref/m2");
|
||||
1 >import m1 = require("ref/m1");
|
||||
>import m2 = require("../outputdir_module_multifolder_ref/m2");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"http://typescript.codeplex.com/","sources":["outputdir_module_multifolder/test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"+GAAO,EAAE,EACF,EAAE;IACE,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"}
|
||||
{"version":3,"file":"test.js","sourceRoot":"http://typescript.codeplex.com/","sources":["outputdir_module_multifolder/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"}
|
||||
@ -181,13 +181,6 @@ emittedFile:test.js
|
||||
sourceFile:test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "m1"], function (require, exports, m1) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
1 >Emitted(1, 66) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 68) Source(1, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -195,7 +188,7 @@ sourceFile:test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("m1");
|
||||
1 >import m1 = require("m1");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"http://typescript.codeplex.com/","sources":["test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"iEAAO,EAAE;IACE,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"}
|
||||
{"version":3,"file":"test.js","sourceRoot":"http://typescript.codeplex.com/","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"}
|
||||
@ -181,13 +181,6 @@ emittedFile:outdir/simple/test.js
|
||||
sourceFile:test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "m1"], function (require, exports, m1) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
1 >Emitted(1, 66) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 68) Source(1, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -195,7 +188,7 @@ sourceFile:test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("m1");
|
||||
1 >import m1 = require("m1");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"http://typescript.codeplex.com/","sources":["test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"iEAAO,EAAE;IACE,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"}
|
||||
{"version":3,"file":"test.js","sourceRoot":"http://typescript.codeplex.com/","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"}
|
||||
@ -181,13 +181,6 @@ emittedFile:test.js
|
||||
sourceFile:test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "m1"], function (require, exports, m1) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
1 >Emitted(1, 66) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 68) Source(1, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -195,7 +188,7 @@ sourceFile:test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("m1");
|
||||
1 >import m1 = require("m1");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"http://typescript.codeplex.com/","sources":["test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"iEAAO,EAAE;IACE,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"}
|
||||
{"version":3,"file":"test.js","sourceRoot":"http://typescript.codeplex.com/","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"}
|
||||
@ -181,13 +181,6 @@ emittedFile:test.js
|
||||
sourceFile:test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "ref/m1"], function (require, exports, m1) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
1 >Emitted(1, 70) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 72) Source(1, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -195,7 +188,7 @@ sourceFile:test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("ref/m1");
|
||||
1 >import m1 = require("ref/m1");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"http://typescript.codeplex.com/","sources":["test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"qEAAO,EAAE;IACE,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"}
|
||||
{"version":3,"file":"test.js","sourceRoot":"http://typescript.codeplex.com/","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"}
|
||||
@ -181,13 +181,6 @@ emittedFile:outdir/simple/test.js
|
||||
sourceFile:test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "ref/m1"], function (require, exports, m1) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
1 >Emitted(1, 70) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 72) Source(1, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -195,7 +188,7 @@ sourceFile:test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("ref/m1");
|
||||
1 >import m1 = require("ref/m1");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"http://typescript.codeplex.com/","sources":["test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"qEAAO,EAAE;IACE,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"}
|
||||
{"version":3,"file":"test.js","sourceRoot":"http://typescript.codeplex.com/","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"}
|
||||
@ -181,13 +181,6 @@ emittedFile:test.js
|
||||
sourceFile:test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "ref/m1"], function (require, exports, m1) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
1 >Emitted(1, 70) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 72) Source(1, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -195,7 +188,7 @@ sourceFile:test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("ref/m1");
|
||||
1 >import m1 = require("ref/m1");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"http://typescript.codeplex.com/","sources":["test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"qEAAO,EAAE;IACE,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"}
|
||||
{"version":3,"file":"test.js","sourceRoot":"http://typescript.codeplex.com/","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"}
|
||||
@ -353,20 +353,6 @@ emittedFile:test.js
|
||||
sourceFile:outputdir_module_multifolder/test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "ref/m1", "../outputdir_module_multifolder_ref/m2"], function (require, exports, m1, m2) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
3 > ^^
|
||||
4 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
3 > = require("ref/m1");
|
||||
> import
|
||||
4 > m2
|
||||
1 >Emitted(1, 112) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 114) Source(1, 10) + SourceIndex(0)
|
||||
3 >Emitted(1, 116) Source(2, 8) + SourceIndex(0)
|
||||
4 >Emitted(1, 118) Source(2, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -374,7 +360,8 @@ sourceFile:outputdir_module_multifolder/test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("../outputdir_module_multifolder_ref/m2");
|
||||
1 >import m1 = require("ref/m1");
|
||||
>import m2 = require("../outputdir_module_multifolder_ref/m2");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"/tests/cases/projects/outputdir_module_multifolder/src/","sources":["outputdir_module_multifolder/test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"+GAAO,EAAE,EACF,EAAE;IACE,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"}
|
||||
{"version":3,"file":"test.js","sourceRoot":"/tests/cases/projects/outputdir_module_multifolder/src/","sources":["outputdir_module_multifolder/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 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"/tests/cases/projects/outputdir_module_multifolder/src/","sources":["outputdir_module_multifolder/test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"+GAAO,EAAE,EACF,EAAE;IACE,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"}
|
||||
{"version":3,"file":"test.js","sourceRoot":"/tests/cases/projects/outputdir_module_multifolder/src/","sources":["outputdir_module_multifolder/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"}
|
||||
@ -353,20 +353,6 @@ emittedFile:outdir/simple/outputdir_module_multifolder/test.js
|
||||
sourceFile:outputdir_module_multifolder/test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "ref/m1", "../outputdir_module_multifolder_ref/m2"], function (require, exports, m1, m2) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
3 > ^^
|
||||
4 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
3 > = require("ref/m1");
|
||||
> import
|
||||
4 > m2
|
||||
1 >Emitted(1, 112) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 114) Source(1, 10) + SourceIndex(0)
|
||||
3 >Emitted(1, 116) Source(2, 8) + SourceIndex(0)
|
||||
4 >Emitted(1, 118) Source(2, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -374,7 +360,8 @@ sourceFile:outputdir_module_multifolder/test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("../outputdir_module_multifolder_ref/m2");
|
||||
1 >import m1 = require("ref/m1");
|
||||
>import m2 = require("../outputdir_module_multifolder_ref/m2");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -353,20 +353,6 @@ emittedFile:test.js
|
||||
sourceFile:outputdir_module_multifolder/test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "ref/m1", "../outputdir_module_multifolder_ref/m2"], function (require, exports, m1, m2) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
3 > ^^
|
||||
4 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
3 > = require("ref/m1");
|
||||
> import
|
||||
4 > m2
|
||||
1 >Emitted(1, 112) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 114) Source(1, 10) + SourceIndex(0)
|
||||
3 >Emitted(1, 116) Source(2, 8) + SourceIndex(0)
|
||||
4 >Emitted(1, 118) Source(2, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -374,7 +360,8 @@ sourceFile:outputdir_module_multifolder/test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("../outputdir_module_multifolder_ref/m2");
|
||||
1 >import m1 = require("ref/m1");
|
||||
>import m2 = require("../outputdir_module_multifolder_ref/m2");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"/tests/cases/projects/outputdir_module_multifolder/src/","sources":["outputdir_module_multifolder/test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"+GAAO,EAAE,EACF,EAAE;IACE,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"}
|
||||
{"version":3,"file":"test.js","sourceRoot":"/tests/cases/projects/outputdir_module_multifolder/src/","sources":["outputdir_module_multifolder/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"}
|
||||
@ -181,13 +181,6 @@ emittedFile:test.js
|
||||
sourceFile:test.ts
|
||||
-------------------------------------------------------------------
|
||||
>>>define(["require", "exports", "m1"], function (require, exports, m1) {
|
||||
1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 > ^^
|
||||
1 >import
|
||||
2 > m1
|
||||
1 >Emitted(1, 66) Source(1, 8) + SourceIndex(0)
|
||||
2 >Emitted(1, 68) Source(1, 10) + SourceIndex(0)
|
||||
---
|
||||
>>> exports.a1 = 10;
|
||||
1 >^^^^
|
||||
2 > ^^^^^^^^^^
|
||||
@ -195,7 +188,7 @@ sourceFile:test.ts
|
||||
4 > ^^
|
||||
5 > ^
|
||||
6 > ^^^^^^^^->
|
||||
1 > = require("m1");
|
||||
1 >import m1 = require("m1");
|
||||
>export var
|
||||
2 > a1
|
||||
3 > =
|
||||
|
||||
@ -1 +1 @@
|
||||
{"version":3,"file":"test.js","sourceRoot":"/tests/cases/projects/outputdir_module_simple/src/","sources":["test.ts"],"names":["c1","c1.constructor","f1"],"mappings":"iEAAO,EAAE;IACE,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"}
|
||||
{"version":3,"file":"test.js","sourceRoot":"/tests/cases/projects/outputdir_module_simple/src/","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"}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user