diff --git a/src/compiler/transformers/es2015.ts b/src/compiler/transformers/es2015.ts index f7c20e74d6717..335fe70ef368d 100644 --- a/src/compiler/transformers/es2015.ts +++ b/src/compiler/transformers/es2015.ts @@ -1575,6 +1575,39 @@ namespace ts { * @param node The ClassExpression or ClassDeclaration node. */ function addClassMembers(statements: Statement[], node: ClassExpression | ClassDeclaration): void { + if (!node.members.length) { + return; + } + + const originalPrototypeAccess = factory.createPropertyAccessExpression(factory.getInternalName(node), "prototype"); + let prototypeStorageName: Identifier | PropertyAccessExpression; + + // If the class has multiple non-static member names, it'll store that prototype as a variable that can be minified: + // var ClassName_prototype = ClassName.prototype; + // ClassName_prototype.memberOne = ... + // ClassName_prototype.memberTwo = ... + if (membersContainMultipleUniqueNames(node.members)) { + prototypeStorageName = factory.createUniqueName(node.name ? `${node.name.escapedText}_prototype` : "proto", GeneratedIdentifierFlags.Optimistic); + statements.push( + factory.createVariableStatement( + /*modifiers*/ undefined, + factory.createVariableDeclarationList([ + factory.createVariableDeclaration( + prototypeStorageName, + /*exclamationToken*/ undefined, + /*type*/ undefined, + originalPrototypeAccess + ) + ]) + ) + ); + } + // Since the class has exactly one non-static member, it'll access that prototype member directly on itself: + // ClassName.prototype.member = ... + else { + prototypeStorageName = originalPrototypeAccess; + } + for (const member of node.members) { switch (member.kind) { case SyntaxKind.SemicolonClassElement: @@ -1582,14 +1615,14 @@ namespace ts { break; case SyntaxKind.MethodDeclaration: - statements.push(transformClassMethodDeclarationToStatement(getClassMemberPrefix(node, member), member, node)); + statements.push(transformClassMethodDeclarationToStatement(getClassMemberPrefix(node, member, prototypeStorageName), member, node)); break; case SyntaxKind.GetAccessor: case SyntaxKind.SetAccessor: const accessors = getAllAccessorDeclarations(node.members, member); if (member === accessors.firstAccessor) { - statements.push(transformAccessorsToStatement(getClassMemberPrefix(node, member), accessors, node)); + statements.push(transformAccessorsToStatement(getClassMemberPrefix(node, member, prototypeStorageName), accessors, node)); } break; @@ -1605,6 +1638,41 @@ namespace ts { } } + function classMemberAssignsToPrototype(node: ClassElement) { + return !(getEffectiveModifierFlags(node) & ModifierFlags.Static) && !isConstructorDeclaration(node); + } + + function membersContainMultipleUniqueNames(members: NodeArray) { + if (members.length <= 1) { + return false; + } + + let foundName: string | undefined; + + for (const member of members) { + if (!classMemberAssignsToPrototype(member)) { + continue; + } + + // If a name isn't immediately identifiable, we assume it's unique + if (!member.name || !isPropertyNameLiteral(member.name)) { + return true; + } + + const text = getTextOfIdentifierOrLiteral(member.name); + if (foundName === undefined) { + foundName = text; + continue; + } + + if (text !== foundName) { + return true; + } + } + + return false; + } + /** * Transforms a SemicolonClassElement into a statement for a class body function. * @@ -4313,10 +4381,10 @@ namespace ts { return node; } - function getClassMemberPrefix(node: ClassExpression | ClassDeclaration, member: ClassElement) { + function getClassMemberPrefix(node: ClassExpression | ClassDeclaration, member: ClassElement, prototypeStorageName: LeftHandSideExpression) { return hasSyntacticModifier(member, ModifierFlags.Static) ? factory.getInternalName(node) - : factory.createPropertyAccessExpression(factory.getInternalName(node), "prototype"); + : prototypeStorageName; } function hasSynthesizedDefaultSuperCall(constructor: ConstructorDeclaration | undefined, hasExtendsClause: boolean) { diff --git a/tests/baselines/reference/ES5For-ofTypeCheck10.js b/tests/baselines/reference/ES5For-ofTypeCheck10.js index 85d44ca255005..524a01a6a009e 100644 --- a/tests/baselines/reference/ES5For-ofTypeCheck10.js +++ b/tests/baselines/reference/ES5For-ofTypeCheck10.js @@ -19,13 +19,14 @@ for (var v of new StringIterator) { } var StringIterator = /** @class */ (function () { function StringIterator() { } - StringIterator.prototype.next = function () { + var StringIterator_prototype = StringIterator.prototype; + StringIterator_prototype.next = function () { return { done: true, value: "" }; }; - StringIterator.prototype[Symbol.iterator] = function () { + StringIterator_prototype[Symbol.iterator] = function () { return this; }; return StringIterator; diff --git a/tests/baselines/reference/abstractProperty.js b/tests/baselines/reference/abstractProperty.js index bfa80a63061ca..17bcb071aafc4 100644 --- a/tests/baselines/reference/abstractProperty.js +++ b/tests/baselines/reference/abstractProperty.js @@ -50,12 +50,13 @@ var C = /** @class */ (function (_super) { _this.ro = "readonly please"; return _this; } - Object.defineProperty(C.prototype, "prop", { + var C_prototype = C.prototype; + Object.defineProperty(C_prototype, "prop", { get: function () { return "foo"; }, set: function (v) { }, enumerable: false, configurable: true }); - C.prototype.m = function () { }; + C_prototype.m = function () { }; return C; }(B)); diff --git a/tests/baselines/reference/abstractPropertyNegative.js b/tests/baselines/reference/abstractPropertyNegative.js index b8c3e46a5cade..001b43870e813 100644 --- a/tests/baselines/reference/abstractPropertyNegative.js +++ b/tests/baselines/reference/abstractPropertyNegative.js @@ -123,13 +123,14 @@ var WrongTypeAccessorImpl2 = /** @class */ (function (_super) { var AbstractAccessorMismatch = /** @class */ (function () { function AbstractAccessorMismatch() { } - Object.defineProperty(AbstractAccessorMismatch.prototype, "p1", { + var AbstractAccessorMismatch_prototype = AbstractAccessorMismatch.prototype; + Object.defineProperty(AbstractAccessorMismatch_prototype, "p1", { set: function (val) { }, enumerable: false, configurable: true }); ; - Object.defineProperty(AbstractAccessorMismatch.prototype, "p2", { + Object.defineProperty(AbstractAccessorMismatch_prototype, "p2", { get: function () { return "should work"; }, enumerable: false, configurable: true diff --git a/tests/baselines/reference/accessibilityModifiers.js b/tests/baselines/reference/accessibilityModifiers.js index 6adbc15f7e4ed..45bba4c9d581f 100644 --- a/tests/baselines/reference/accessibilityModifiers.js +++ b/tests/baselines/reference/accessibilityModifiers.js @@ -127,13 +127,14 @@ var D = /** @class */ (function () { var E = /** @class */ (function () { function E() { } - E.prototype.method = function () { }; - Object.defineProperty(E.prototype, "getter", { + var E_prototype = E.prototype; + E_prototype.method = function () { }; + Object.defineProperty(E_prototype, "getter", { get: function () { return 0; }, enumerable: false, configurable: true }); - Object.defineProperty(E.prototype, "setter", { + Object.defineProperty(E_prototype, "setter", { set: function (a) { }, enumerable: false, configurable: true diff --git a/tests/baselines/reference/accessors_spec_section-4.5_error-cases.js b/tests/baselines/reference/accessors_spec_section-4.5_error-cases.js index da28ba4f65303..72a90bb3c5c4f 100644 --- a/tests/baselines/reference/accessors_spec_section-4.5_error-cases.js +++ b/tests/baselines/reference/accessors_spec_section-4.5_error-cases.js @@ -17,25 +17,26 @@ class LanguageSpec_section_4_5_error_cases { var LanguageSpec_section_4_5_error_cases = /** @class */ (function () { function LanguageSpec_section_4_5_error_cases() { } - Object.defineProperty(LanguageSpec_section_4_5_error_cases.prototype, "AnnotatedSetter_SetterFirst", { + var LanguageSpec_section_4_5_error_cases_prototype = LanguageSpec_section_4_5_error_cases.prototype; + Object.defineProperty(LanguageSpec_section_4_5_error_cases_prototype, "AnnotatedSetter_SetterFirst", { get: function () { return ""; }, set: function (a) { }, enumerable: false, configurable: true }); - Object.defineProperty(LanguageSpec_section_4_5_error_cases.prototype, "AnnotatedSetter_SetterLast", { + Object.defineProperty(LanguageSpec_section_4_5_error_cases_prototype, "AnnotatedSetter_SetterLast", { get: function () { return ""; }, set: function (a) { }, enumerable: false, configurable: true }); - Object.defineProperty(LanguageSpec_section_4_5_error_cases.prototype, "AnnotatedGetter_GetterFirst", { + Object.defineProperty(LanguageSpec_section_4_5_error_cases_prototype, "AnnotatedGetter_GetterFirst", { get: function () { return ""; }, set: function (aStr) { aStr = 0; }, enumerable: false, configurable: true }); - Object.defineProperty(LanguageSpec_section_4_5_error_cases.prototype, "AnnotatedGetter_GetterLast", { + Object.defineProperty(LanguageSpec_section_4_5_error_cases_prototype, "AnnotatedGetter_GetterLast", { get: function () { return ""; }, set: function (aStr) { aStr = 0; }, enumerable: false, diff --git a/tests/baselines/reference/accessors_spec_section-4.5_inference.js b/tests/baselines/reference/accessors_spec_section-4.5_inference.js index 68e78690218e8..e3fd4be428440 100644 --- a/tests/baselines/reference/accessors_spec_section-4.5_inference.js +++ b/tests/baselines/reference/accessors_spec_section-4.5_inference.js @@ -55,37 +55,38 @@ var B = /** @class */ (function (_super) { var LanguageSpec_section_4_5_inference = /** @class */ (function () { function LanguageSpec_section_4_5_inference() { } - Object.defineProperty(LanguageSpec_section_4_5_inference.prototype, "InferredGetterFromSetterAnnotation", { + var LanguageSpec_section_4_5_inference_prototype = LanguageSpec_section_4_5_inference.prototype; + Object.defineProperty(LanguageSpec_section_4_5_inference_prototype, "InferredGetterFromSetterAnnotation", { get: function () { return new B(); }, set: function (a) { }, enumerable: false, configurable: true }); - Object.defineProperty(LanguageSpec_section_4_5_inference.prototype, "InferredGetterFromSetterAnnotation_GetterFirst", { + Object.defineProperty(LanguageSpec_section_4_5_inference_prototype, "InferredGetterFromSetterAnnotation_GetterFirst", { get: function () { return new B(); }, set: function (a) { }, enumerable: false, configurable: true }); - Object.defineProperty(LanguageSpec_section_4_5_inference.prototype, "InferredFromGetter", { + Object.defineProperty(LanguageSpec_section_4_5_inference_prototype, "InferredFromGetter", { get: function () { return new B(); }, set: function (a) { }, enumerable: false, configurable: true }); - Object.defineProperty(LanguageSpec_section_4_5_inference.prototype, "InferredFromGetter_SetterFirst", { + Object.defineProperty(LanguageSpec_section_4_5_inference_prototype, "InferredFromGetter_SetterFirst", { get: function () { return new B(); }, set: function (a) { }, enumerable: false, configurable: true }); - Object.defineProperty(LanguageSpec_section_4_5_inference.prototype, "InferredSetterFromGetterAnnotation", { + Object.defineProperty(LanguageSpec_section_4_5_inference_prototype, "InferredSetterFromGetterAnnotation", { get: function () { return new B(); }, set: function (a) { }, enumerable: false, configurable: true }); - Object.defineProperty(LanguageSpec_section_4_5_inference.prototype, "InferredSetterFromGetterAnnotation_GetterFirst", { + Object.defineProperty(LanguageSpec_section_4_5_inference_prototype, "InferredSetterFromGetterAnnotation_GetterFirst", { get: function () { return new B(); }, set: function (a) { }, enumerable: false, diff --git a/tests/baselines/reference/ambiguousCallsWhereReturnTypesAgree.js b/tests/baselines/reference/ambiguousCallsWhereReturnTypesAgree.js index 6937384136dda..dd4915ee9a5b9 100644 --- a/tests/baselines/reference/ambiguousCallsWhereReturnTypesAgree.js +++ b/tests/baselines/reference/ambiguousCallsWhereReturnTypesAgree.js @@ -32,9 +32,10 @@ class TestClass2 { var TestClass = /** @class */ (function () { function TestClass() { } - TestClass.prototype.bar = function (x) { + var TestClass_prototype = TestClass.prototype; + TestClass_prototype.bar = function (x) { }; - TestClass.prototype.foo = function (x) { + TestClass_prototype.foo = function (x) { this.bar(x); // should not error }; return TestClass; @@ -42,10 +43,11 @@ var TestClass = /** @class */ (function () { var TestClass2 = /** @class */ (function () { function TestClass2() { } - TestClass2.prototype.bar = function (x) { + var TestClass2_prototype = TestClass2.prototype; + TestClass2_prototype.bar = function (x) { return 0; }; - TestClass2.prototype.foo = function (x) { + TestClass2_prototype.foo = function (x) { return this.bar(x); // should not error }; return TestClass2; diff --git a/tests/baselines/reference/arrayAssignmentTest1.js b/tests/baselines/reference/arrayAssignmentTest1.js index 5ceebf7c0a187..2ae4cdfd60bc5 100644 --- a/tests/baselines/reference/arrayAssignmentTest1.js +++ b/tests/baselines/reference/arrayAssignmentTest1.js @@ -104,8 +104,9 @@ var __extends = (this && this.__extends) || (function () { var C1 = /** @class */ (function () { function C1() { } - C1.prototype.IM1 = function () { return null; }; - C1.prototype.C1M1 = function () { return null; }; + var C1_prototype = C1.prototype; + C1_prototype.IM1 = function () { return null; }; + C1_prototype.C1M1 = function () { return null; }; return C1; }()); var C2 = /** @class */ (function (_super) { diff --git a/tests/baselines/reference/arrayAssignmentTest2.js b/tests/baselines/reference/arrayAssignmentTest2.js index 536a61692ec96..26dd4beb17287 100644 --- a/tests/baselines/reference/arrayAssignmentTest2.js +++ b/tests/baselines/reference/arrayAssignmentTest2.js @@ -78,8 +78,9 @@ var __extends = (this && this.__extends) || (function () { var C1 = /** @class */ (function () { function C1() { } - C1.prototype.IM1 = function () { return null; }; - C1.prototype.C1M1 = function () { return null; }; + var C1_prototype = C1.prototype; + C1_prototype.IM1 = function () { return null; }; + C1_prototype.C1M1 = function () { return null; }; return C1; }()); var C2 = /** @class */ (function (_super) { diff --git a/tests/baselines/reference/arrayAssignmentTest5.js b/tests/baselines/reference/arrayAssignmentTest5.js index 71c84f374ee6c..5b70014cdc080 100644 --- a/tests/baselines/reference/arrayAssignmentTest5.js +++ b/tests/baselines/reference/arrayAssignmentTest5.js @@ -39,14 +39,15 @@ var Test; var Bug = /** @class */ (function () { function Bug() { } - Bug.prototype.onEnter = function (line, state, offset) { + var Bug_prototype = Bug.prototype; + Bug_prototype.onEnter = function (line, state, offset) { var lineTokens = this.tokenize(line, state, true); var tokens = lineTokens.tokens; if (tokens.length === 0) { return this.onEnter(line, tokens, offset); // <== this should produce an error since onEnter can not be called with (string, IStateToken[], offset) } }; - Bug.prototype.tokenize = function (line, state, includeStates) { + Bug_prototype.tokenize = function (line, state, includeStates) { return null; }; return Bug; diff --git a/tests/baselines/reference/arrayBestCommonTypes.js b/tests/baselines/reference/arrayBestCommonTypes.js index 7acf6feb591e4..a8434b6688734 100644 --- a/tests/baselines/reference/arrayBestCommonTypes.js +++ b/tests/baselines/reference/arrayBestCommonTypes.js @@ -145,11 +145,12 @@ var EmptyTypes; var f = /** @class */ (function () { function f() { } - f.prototype.voidIfAny = function (x, y) { + var f_prototype = f.prototype; + f_prototype.voidIfAny = function (x, y) { if (y === void 0) { y = false; } return null; }; - f.prototype.x = function () { + f_prototype.x = function () { (this.voidIfAny([4, 2][0])); (this.voidIfAny([4, 2, undefined][0])); (this.voidIfAny([undefined, 2, 4][0])); @@ -204,11 +205,12 @@ var NonEmptyTypes; var f = /** @class */ (function () { function f() { } - f.prototype.voidIfAny = function (x, y) { + var f_prototype_1 = f.prototype; + f_prototype_1.voidIfAny = function (x, y) { if (y === void 0) { y = false; } return null; }; - f.prototype.x = function () { + f_prototype_1.x = function () { (this.voidIfAny([4, 2][0])); (this.voidIfAny([4, 2, undefined][0])); (this.voidIfAny([undefined, 2, 4][0])); diff --git a/tests/baselines/reference/assertionTypePredicates1.js b/tests/baselines/reference/assertionTypePredicates1.js index 94342d03fa00a..2f93a01e82481 100644 --- a/tests/baselines/reference/assertionTypePredicates1.js +++ b/tests/baselines/reference/assertionTypePredicates1.js @@ -296,29 +296,30 @@ function f10(x) { var Test = /** @class */ (function () { function Test() { } - Test.prototype.assert = function (value) { + var Test_prototype = Test.prototype; + Test_prototype.assert = function (value) { if (value) return; throw new Error(); }; - Test.prototype.isTest2 = function () { + Test_prototype.isTest2 = function () { return this instanceof Test2; }; - Test.prototype.assertIsTest2 = function () { + Test_prototype.assertIsTest2 = function () { if (this instanceof Test2) return; throw new Error(); }; - Test.prototype.assertThis = function () { + Test_prototype.assertThis = function () { if (!this) return; throw new Error(); }; - Test.prototype.bar = function () { + Test_prototype.bar = function () { this.assertThis(); this; }; - Test.prototype.foo = function (x) { + Test_prototype.foo = function (x) { this.assert(typeof x === "string"); x.length; if (this.isTest2()) { @@ -327,7 +328,7 @@ var Test = /** @class */ (function () { this.assertIsTest2(); this.z; }; - Test.prototype.baz = function (x) { + Test_prototype.baz = function (x) { this.assert(false); x; // Unreachable }; @@ -347,11 +348,12 @@ var Derived = /** @class */ (function (_super) { function Derived() { return _super !== null && _super.apply(this, arguments) || this; } - Derived.prototype.foo = function (x) { + var Derived_prototype = Derived.prototype; + Derived_prototype.foo = function (x) { _super.prototype.assert.call(this, typeof x === "string"); x.length; }; - Derived.prototype.baz = function (x) { + Derived_prototype.baz = function (x) { _super.prototype.assert.call(this, false); x; // Unreachable }; diff --git a/tests/baselines/reference/asyncAwaitIsolatedModules_es5.js b/tests/baselines/reference/asyncAwaitIsolatedModules_es5.js index ec3837911ded0..0409957977b8c 100644 --- a/tests/baselines/reference/asyncAwaitIsolatedModules_es5.js +++ b/tests/baselines/reference/asyncAwaitIsolatedModules_es5.js @@ -150,17 +150,18 @@ var o = { var C = /** @class */ (function () { function C() { } - C.prototype.m1 = function () { + var C_prototype = C.prototype; + C_prototype.m1 = function () { return __awaiter(this, void 0, void 0, function () { return __generator(this, function (_a) { return [2 /*return*/]; }); }); }; - C.prototype.m2 = function () { + C_prototype.m2 = function () { return __awaiter(this, void 0, void 0, function () { return __generator(this, function (_a) { return [2 /*return*/]; }); }); }; - C.prototype.m3 = function () { + C_prototype.m3 = function () { return __awaiter(this, void 0, missing_1.MyPromise, function () { return __generator(this, function (_a) { return [2 /*return*/]; }); }); diff --git a/tests/baselines/reference/asyncAwait_es5.js b/tests/baselines/reference/asyncAwait_es5.js index 6a6433e85c6fe..6c225a6865964 100644 --- a/tests/baselines/reference/asyncAwait_es5.js +++ b/tests/baselines/reference/asyncAwait_es5.js @@ -155,17 +155,18 @@ var o = { var C = /** @class */ (function () { function C() { } - C.prototype.m1 = function () { + var C_prototype = C.prototype; + C_prototype.m1 = function () { return __awaiter(this, void 0, void 0, function () { return __generator(this, function (_a) { return [2 /*return*/]; }); }); }; - C.prototype.m2 = function () { + C_prototype.m2 = function () { return __awaiter(this, void 0, void 0, function () { return __generator(this, function (_a) { return [2 /*return*/]; }); }); }; - C.prototype.m3 = function () { + C_prototype.m3 = function () { return __awaiter(this, void 0, MyPromise, function () { return __generator(this, function (_a) { return [2 /*return*/]; }); }); diff --git a/tests/baselines/reference/asyncMethodWithSuper_es5.js b/tests/baselines/reference/asyncMethodWithSuper_es5.js index 441ad8875c412..2fa67444120a5 100644 --- a/tests/baselines/reference/asyncMethodWithSuper_es5.js +++ b/tests/baselines/reference/asyncMethodWithSuper_es5.js @@ -59,9 +59,10 @@ class B extends A { var A = /** @class */ (function () { function A() { } - A.prototype.x = function () { + var A_prototype = A.prototype; + A_prototype.x = function () { }; - A.prototype.y = function () { + A_prototype.y = function () { }; return A; }()); @@ -70,8 +71,9 @@ var B = /** @class */ (function (_super) { function B() { return _super !== null && _super.apply(this, arguments) || this; } + var B_prototype = B.prototype; // async method with only call/get on 'super' does not require a binding - B.prototype.simple = function () { + B_prototype.simple = function () { return __awaiter(this, void 0, void 0, function () { var a, b; return __generator(this, function (_a) { @@ -88,7 +90,7 @@ var B = /** @class */ (function (_super) { }); }; // async method with assignment/destructuring on 'super' requires a binding - B.prototype.advanced = function () { + B_prototype.advanced = function () { return __awaiter(this, void 0, void 0, function () { var f, a, b; return __generator(this, function (_a) { diff --git a/tests/baselines/reference/baseTypeWrappingInstantiationChain.js b/tests/baselines/reference/baseTypeWrappingInstantiationChain.js index 7ad2c839fb0b9..e71d47a73eec0 100644 --- a/tests/baselines/reference/baseTypeWrappingInstantiationChain.js +++ b/tests/baselines/reference/baseTypeWrappingInstantiationChain.js @@ -71,12 +71,13 @@ var C = /** @class */ (function (_super) { function C() { return _super !== null && _super.apply(this, arguments) || this; } - C.prototype.works = function () { + var C_prototype = C.prototype; + C_prototype.works = function () { new CBaseBase(this); }; - C.prototype.alsoWorks = function () { + C_prototype.alsoWorks = function () { new CBase(this); // Should not error, parameter is of type Parameter> }; - C.prototype.method = function (t) { }; + C_prototype.method = function (t) { }; return C; }(CBase)); diff --git a/tests/baselines/reference/binopAssignmentShouldHaveType.js b/tests/baselines/reference/binopAssignmentShouldHaveType.js index c5a0357c7eed1..25abb30e44f5d 100644 --- a/tests/baselines/reference/binopAssignmentShouldHaveType.js +++ b/tests/baselines/reference/binopAssignmentShouldHaveType.js @@ -26,10 +26,11 @@ var Test; var Bug = /** @class */ (function () { function Bug() { } - Bug.prototype.getName = function () { + var Bug_prototype = Bug.prototype; + Bug_prototype.getName = function () { return "name"; }; - Bug.prototype.bug = function () { + Bug_prototype.bug = function () { var name = null; if ((name = this.getName()).length > 0) { console.log(name); diff --git a/tests/baselines/reference/callChainWithSuper(target=es5).js b/tests/baselines/reference/callChainWithSuper(target=es5).js index e609c2a5258a4..11f47c3a075bf 100644 --- a/tests/baselines/reference/callChainWithSuper(target=es5).js +++ b/tests/baselines/reference/callChainWithSuper(target=es5).js @@ -35,7 +35,8 @@ var Derived = /** @class */ (function (_super) { function Derived() { return _super !== null && _super.apply(this, arguments) || this; } - Derived.prototype.method1 = function () { var _a; return (_a = _super.prototype.method) === null || _a === void 0 ? void 0 : _a.call(this); }; - Derived.prototype.method2 = function () { var _a; return (_a = _super.prototype["method"]) === null || _a === void 0 ? void 0 : _a.call(this); }; + var Derived_prototype = Derived.prototype; + Derived_prototype.method1 = function () { var _a; return (_a = _super.prototype.method) === null || _a === void 0 ? void 0 : _a.call(this); }; + Derived_prototype.method2 = function () { var _a; return (_a = _super.prototype["method"]) === null || _a === void 0 ? void 0 : _a.call(this); }; return Derived; }(Base)); diff --git a/tests/baselines/reference/callSignaturesWithAccessibilityModifiersOnParameters.js b/tests/baselines/reference/callSignaturesWithAccessibilityModifiersOnParameters.js index e2a3599f0daa7..edca22125b734 100644 --- a/tests/baselines/reference/callSignaturesWithAccessibilityModifiersOnParameters.js +++ b/tests/baselines/reference/callSignaturesWithAccessibilityModifiersOnParameters.js @@ -53,9 +53,10 @@ var f8 = function (x, y) { }; var C = /** @class */ (function () { function C() { } - C.prototype.foo = function (x, y) { }; - C.prototype.foo2 = function (x, y) { }; - C.prototype.foo3 = function (x, y) { }; + var C_prototype = C.prototype; + C_prototype.foo = function (x, y) { }; + C_prototype.foo2 = function (x, y) { }; + C_prototype.foo3 = function (x, y) { }; return C; }()); var a; diff --git a/tests/baselines/reference/callSignaturesWithDuplicateParameters.js b/tests/baselines/reference/callSignaturesWithDuplicateParameters.js index ed9d2cb3e3573..a545e5adcf202 100644 --- a/tests/baselines/reference/callSignaturesWithDuplicateParameters.js +++ b/tests/baselines/reference/callSignaturesWithDuplicateParameters.js @@ -53,9 +53,10 @@ var f8 = function (x, y) { }; var C = /** @class */ (function () { function C() { } - C.prototype.foo = function (x, x) { }; - C.prototype.foo2 = function (x, x) { }; - C.prototype.foo3 = function (x, x) { }; + var C_prototype = C.prototype; + C_prototype.foo = function (x, x) { }; + C_prototype.foo2 = function (x, x) { }; + C_prototype.foo3 = function (x, x) { }; return C; }()); var a; diff --git a/tests/baselines/reference/callSignaturesWithOptionalParameters2.js b/tests/baselines/reference/callSignaturesWithOptionalParameters2.js index dbd8ad1f424e1..db1648947dc09 100644 --- a/tests/baselines/reference/callSignaturesWithOptionalParameters2.js +++ b/tests/baselines/reference/callSignaturesWithOptionalParameters2.js @@ -70,8 +70,9 @@ foo2(1, 2); var C = /** @class */ (function () { function C() { } - C.prototype.foo = function (x) { }; - C.prototype.foo2 = function (x, y) { }; + var C_prototype = C.prototype; + C_prototype.foo = function (x) { }; + C_prototype.foo2 = function (x, y) { }; return C; }()); var c; diff --git a/tests/baselines/reference/capturedLetConstInLoop10.js b/tests/baselines/reference/capturedLetConstInLoop10.js index 304486e172475..2495d706c0bb1 100644 --- a/tests/baselines/reference/capturedLetConstInLoop10.js +++ b/tests/baselines/reference/capturedLetConstInLoop10.js @@ -49,7 +49,8 @@ class B { var A = /** @class */ (function () { function A() { } - A.prototype.foo = function () { + var A_prototype = A.prototype; + A_prototype.foo = function () { var _loop_1 = function (x) { var f = function () { return x; }; this_1.bar(f()); @@ -60,9 +61,9 @@ var A = /** @class */ (function () { _loop_1(x); } }; - A.prototype.bar = function (a) { + A_prototype.bar = function (a) { }; - A.prototype.baz = function () { + A_prototype.baz = function () { var _loop_2 = function (x) { var a = function () { return x; }; var _loop_3 = function (y) { @@ -81,7 +82,7 @@ var A = /** @class */ (function () { _loop_2(x); } }; - A.prototype.baz2 = function () { + A_prototype.baz2 = function () { var _loop_4 = function (x) { var a = function () { return x; }; this_3.bar(a()); @@ -105,7 +106,8 @@ var A = /** @class */ (function () { var B = /** @class */ (function () { function B() { } - B.prototype.foo = function () { + var B_prototype = B.prototype; + B_prototype.foo = function () { var _this = this; var a = function () { var _loop_6 = function (x) { @@ -118,7 +120,7 @@ var B = /** @class */ (function () { } }; }; - B.prototype.bar = function (a) { + B_prototype.bar = function (a) { }; return B; }()); diff --git a/tests/baselines/reference/capturedLetConstInLoop13.js b/tests/baselines/reference/capturedLetConstInLoop13.js index 628faa1048587..c135108a7e571 100644 --- a/tests/baselines/reference/capturedLetConstInLoop13.js +++ b/tests/baselines/reference/capturedLetConstInLoop13.js @@ -27,7 +27,8 @@ var Main = /** @class */ (function () { function Main() { this.register("a", "b", "c"); } - Main.prototype.register = function () { + var Main_prototype = Main.prototype; + Main_prototype.register = function () { var _this = this; var names = []; for (var _i = 0; _i < arguments.length; _i++) { @@ -45,8 +46,8 @@ var Main = /** @class */ (function () { _loop_1(name_1); } }; - Main.prototype.bar = function (a) { }; - Main.prototype.foo = function (name) { }; + Main_prototype.bar = function (a) { }; + Main_prototype.foo = function (name) { }; return Main; }()); new Main(); diff --git a/tests/baselines/reference/capturedParametersInInitializers2.js b/tests/baselines/reference/capturedParametersInInitializers2.js index da1f63b58e622..a9db2b801948e 100644 --- a/tests/baselines/reference/capturedParametersInInitializers2.js +++ b/tests/baselines/reference/capturedParametersInInitializers2.js @@ -21,12 +21,13 @@ function foo(y, x, z) { function class_1() { x; } - Object.defineProperty(class_1.prototype, x, { + var proto = class_1.prototype; + Object.defineProperty(proto, x, { get: function () { return x; }, enumerable: false, configurable: true }); - class_1.prototype[z] = function () { return z; }; + proto[z] = function () { return z; }; return class_1; }()), _a.c = x, diff --git a/tests/baselines/reference/classAbstractAccessor.js b/tests/baselines/reference/classAbstractAccessor.js index 209e89f6d8eb4..c43234f05b037 100644 --- a/tests/baselines/reference/classAbstractAccessor.js +++ b/tests/baselines/reference/classAbstractAccessor.js @@ -11,13 +11,14 @@ abstract class A { var A = /** @class */ (function () { function A() { } - Object.defineProperty(A.prototype, "aa", { + var A_prototype = A.prototype; + Object.defineProperty(A_prototype, "aa", { get: function () { return 1; } // error , enumerable: false, configurable: true }); - Object.defineProperty(A.prototype, "bb", { + Object.defineProperty(A_prototype, "bb", { set: function (x) { } // error , enumerable: false, diff --git a/tests/baselines/reference/classAbstractGeneric.js b/tests/baselines/reference/classAbstractGeneric.js index f194bf984cafd..406868d9ecc5b 100644 --- a/tests/baselines/reference/classAbstractGeneric.js +++ b/tests/baselines/reference/classAbstractGeneric.js @@ -88,7 +88,8 @@ var G = /** @class */ (function (_super) { function G() { return _super !== null && _super.apply(this, arguments) || this; } - G.prototype.foo = function () { return this.t; }; - G.prototype.bar = function (t) { }; + var G_prototype = G.prototype; + G_prototype.foo = function () { return this.t; }; + G_prototype.bar = function (t) { }; return G; }(A)); diff --git a/tests/baselines/reference/classAbstractSuperCalls.js b/tests/baselines/reference/classAbstractSuperCalls.js index 7b9c8ac974abe..cf566e3d921a8 100644 --- a/tests/baselines/reference/classAbstractSuperCalls.js +++ b/tests/baselines/reference/classAbstractSuperCalls.js @@ -53,8 +53,9 @@ var B = /** @class */ (function (_super) { function B() { return _super !== null && _super.apply(this, arguments) || this; } - B.prototype.bar = function () { _super.prototype.foo.call(this); }; - B.prototype.baz = function () { return this.foo; }; + var B_prototype = B.prototype; + B_prototype.bar = function () { _super.prototype.foo.call(this); }; + B_prototype.baz = function () { return this.foo; }; return B; }(A)); var C = /** @class */ (function (_super) { @@ -62,16 +63,18 @@ var C = /** @class */ (function (_super) { function C() { return _super !== null && _super.apply(this, arguments) || this; } - C.prototype.foo = function () { return 2; }; - C.prototype.qux = function () { return _super.prototype.foo.call(this) || _super.prototype.foo; }; // 2 errors, foo is abstract - C.prototype.norf = function () { return _super.prototype.bar.call(this); }; + var C_prototype = C.prototype; + C_prototype.foo = function () { return 2; }; + C_prototype.qux = function () { return _super.prototype.foo.call(this) || _super.prototype.foo; }; // 2 errors, foo is abstract + C_prototype.norf = function () { return _super.prototype.bar.call(this); }; return C; }(B)); var AA = /** @class */ (function () { function AA() { } - AA.prototype.foo = function () { return 1; }; - AA.prototype.bar = function () { return this.foo(); }; + var AA_prototype = AA.prototype; + AA_prototype.foo = function () { return 1; }; + AA_prototype.bar = function () { return this.foo(); }; return AA; }()); var BB = /** @class */ (function (_super) { diff --git a/tests/baselines/reference/classConstructorAccessibility2.js b/tests/baselines/reference/classConstructorAccessibility2.js index c10d2fb49737e..1b28b10734ce2 100644 --- a/tests/baselines/reference/classConstructorAccessibility2.js +++ b/tests/baselines/reference/classConstructorAccessibility2.js @@ -90,8 +90,9 @@ var DerivedA = /** @class */ (function (_super) { _this.x = x; return _this; } - DerivedA.prototype.createInstance = function () { new DerivedA(5); }; - DerivedA.prototype.createBaseInstance = function () { new BaseA(6); }; + var DerivedA_prototype = DerivedA.prototype; + DerivedA_prototype.createInstance = function () { new DerivedA(5); }; + DerivedA_prototype.createBaseInstance = function () { new BaseA(6); }; DerivedA.staticBaseInstance = function () { new BaseA(7); }; return DerivedA; }(BaseA)); @@ -102,8 +103,9 @@ var DerivedB = /** @class */ (function (_super) { _this.x = x; return _this; } - DerivedB.prototype.createInstance = function () { new DerivedB(7); }; - DerivedB.prototype.createBaseInstance = function () { new BaseB(8); }; // ok + var DerivedB_prototype = DerivedB.prototype; + DerivedB_prototype.createInstance = function () { new DerivedB(7); }; + DerivedB_prototype.createBaseInstance = function () { new BaseB(8); }; // ok DerivedB.staticBaseInstance = function () { new BaseB(9); }; // ok return DerivedB; }(BaseB)); @@ -114,8 +116,9 @@ var DerivedC = /** @class */ (function (_super) { _this.x = x; return _this; } - DerivedC.prototype.createInstance = function () { new DerivedC(9); }; - DerivedC.prototype.createBaseInstance = function () { new BaseC(10); }; // error + var DerivedC_prototype = DerivedC.prototype; + DerivedC_prototype.createInstance = function () { new DerivedC(9); }; + DerivedC_prototype.createBaseInstance = function () { new BaseC(10); }; // error DerivedC.staticBaseInstance = function () { new BaseC(11); }; // error return DerivedC; }(BaseC)); diff --git a/tests/baselines/reference/classDeclarationShouldBeOutOfScopeInComputedNames.js b/tests/baselines/reference/classDeclarationShouldBeOutOfScopeInComputedNames.js index 5367ef781a5cd..fc042dc0b6f83 100644 --- a/tests/baselines/reference/classDeclarationShouldBeOutOfScopeInComputedNames.js +++ b/tests/baselines/reference/classDeclarationShouldBeOutOfScopeInComputedNames.js @@ -15,9 +15,10 @@ var A = /** @class */ (function () { function A() { this[_b] = 0; } + var A_prototype = A.prototype; A[(_a = A.p1, A.p2)] = function () { return 0; }; ; - A.prototype[A.p1] = function () { }; + A_prototype[A.p1] = function () { }; var _a, _b; _b = A.p2; A.p1 = Symbol(); diff --git a/tests/baselines/reference/classExtendsInterfaceThatExtendsClassWithPrivates1.js b/tests/baselines/reference/classExtendsInterfaceThatExtendsClassWithPrivates1.js index 1b72cba2b634c..ef17574a7df75 100644 --- a/tests/baselines/reference/classExtendsInterfaceThatExtendsClassWithPrivates1.js +++ b/tests/baselines/reference/classExtendsInterfaceThatExtendsClassWithPrivates1.js @@ -26,7 +26,8 @@ var D2 = /** @class */ (function () { function D2() { this.x = 3; } - D2.prototype.foo = function (x) { return x; }; - D2.prototype.other = function (x) { return x; }; + var D2_prototype = D2.prototype; + D2_prototype.foo = function (x) { return x; }; + D2_prototype.other = function (x) { return x; }; return D2; }()); diff --git a/tests/baselines/reference/classPropertyAsPrivate.js b/tests/baselines/reference/classPropertyAsPrivate.js index 08f1b091c89a4..f4a043dd46dd2 100644 --- a/tests/baselines/reference/classPropertyAsPrivate.js +++ b/tests/baselines/reference/classPropertyAsPrivate.js @@ -27,13 +27,14 @@ C.foo(); var C = /** @class */ (function () { function C() { } - Object.defineProperty(C.prototype, "y", { + var C_prototype = C.prototype; + Object.defineProperty(C_prototype, "y", { get: function () { return null; }, set: function (x) { }, enumerable: false, configurable: true }); - C.prototype.foo = function () { }; + C_prototype.foo = function () { }; Object.defineProperty(C, "b", { get: function () { return null; }, set: function (x) { }, diff --git a/tests/baselines/reference/classPropertyAsProtected.js b/tests/baselines/reference/classPropertyAsProtected.js index 7628adee04e06..304cbcef6891f 100644 --- a/tests/baselines/reference/classPropertyAsProtected.js +++ b/tests/baselines/reference/classPropertyAsProtected.js @@ -27,13 +27,14 @@ C.foo(); var C = /** @class */ (function () { function C() { } - Object.defineProperty(C.prototype, "y", { + var C_prototype = C.prototype; + Object.defineProperty(C_prototype, "y", { get: function () { return null; }, set: function (x) { }, enumerable: false, configurable: true }); - C.prototype.foo = function () { }; + C_prototype.foo = function () { }; Object.defineProperty(C, "b", { get: function () { return null; }, set: function (x) { }, diff --git a/tests/baselines/reference/classPropertyIsPublicByDefault.js b/tests/baselines/reference/classPropertyIsPublicByDefault.js index 116f25a67e50d..39da4d65ba50b 100644 --- a/tests/baselines/reference/classPropertyIsPublicByDefault.js +++ b/tests/baselines/reference/classPropertyIsPublicByDefault.js @@ -26,13 +26,14 @@ C.foo(); var C = /** @class */ (function () { function C() { } - Object.defineProperty(C.prototype, "y", { + var C_prototype = C.prototype; + Object.defineProperty(C_prototype, "y", { get: function () { return null; }, set: function (x) { }, enumerable: false, configurable: true }); - C.prototype.foo = function () { }; + C_prototype.foo = function () { }; Object.defineProperty(C, "b", { get: function () { return null; }, set: function (x) { }, diff --git a/tests/baselines/reference/classWithMultipleBaseClasses.js b/tests/baselines/reference/classWithMultipleBaseClasses.js index 353b22aa09dd2..42fb24a93809e 100644 --- a/tests/baselines/reference/classWithMultipleBaseClasses.js +++ b/tests/baselines/reference/classWithMultipleBaseClasses.js @@ -40,7 +40,8 @@ var B = /** @class */ (function () { var D = /** @class */ (function () { function D() { } - D.prototype.baz = function () { }; - D.prototype.bat = function () { }; + var D_prototype = D.prototype; + D_prototype.baz = function () { }; + D_prototype.bat = function () { }; return D; }()); diff --git a/tests/baselines/reference/classWithOnlyPublicMembersEquivalentToInterface.js b/tests/baselines/reference/classWithOnlyPublicMembersEquivalentToInterface.js index 0ed9cefb24667..259d31fedf8b2 100644 --- a/tests/baselines/reference/classWithOnlyPublicMembersEquivalentToInterface.js +++ b/tests/baselines/reference/classWithOnlyPublicMembersEquivalentToInterface.js @@ -30,8 +30,9 @@ i = c; var C = /** @class */ (function () { function C() { } - C.prototype.y = function (a) { return null; }; - Object.defineProperty(C.prototype, "z", { + var C_prototype = C.prototype; + C_prototype.y = function (a) { return null; }; + Object.defineProperty(C_prototype, "z", { get: function () { return 1; }, set: function (v) { }, enumerable: false, diff --git a/tests/baselines/reference/classWithOnlyPublicMembersEquivalentToInterface2.js b/tests/baselines/reference/classWithOnlyPublicMembersEquivalentToInterface2.js index bd5bcd6589548..b5c1044b798da 100644 --- a/tests/baselines/reference/classWithOnlyPublicMembersEquivalentToInterface2.js +++ b/tests/baselines/reference/classWithOnlyPublicMembersEquivalentToInterface2.js @@ -32,8 +32,9 @@ i = c; var C = /** @class */ (function () { function C() { } - C.prototype.y = function (a) { return null; }; - Object.defineProperty(C.prototype, "z", { + var C_prototype = C.prototype; + C_prototype.y = function (a) { return null; }; + Object.defineProperty(C_prototype, "z", { get: function () { return 1; }, set: function (v) { }, enumerable: false, diff --git a/tests/baselines/reference/classWithSemicolonClassElement2.js b/tests/baselines/reference/classWithSemicolonClassElement2.js index 63c6386bb3e61..085901e5e527d 100644 --- a/tests/baselines/reference/classWithSemicolonClassElement2.js +++ b/tests/baselines/reference/classWithSemicolonClassElement2.js @@ -8,6 +8,7 @@ class C { var C = /** @class */ (function () { function C() { } + var C_prototype = C.prototype; ; ; return C; diff --git a/tests/baselines/reference/classdecl.js b/tests/baselines/reference/classdecl.js index 6e099c8259d1d..21d8743da84bd 100644 --- a/tests/baselines/reference/classdecl.js +++ b/tests/baselines/reference/classdecl.js @@ -112,8 +112,9 @@ var __extends = (this && this.__extends) || (function () { var a = /** @class */ (function () { function a(ns) { } - a.prototype.pgF = function () { }; - Object.defineProperty(a.prototype, "d", { + var a_prototype = a.prototype; + a_prototype.pgF = function () { }; + Object.defineProperty(a_prototype, "d", { get: function () { return 30; }, @@ -138,7 +139,7 @@ var a = /** @class */ (function () { enumerable: false, configurable: true }); - a.prototype.foo = function (ns) { + a_prototype.foo = function (ns) { return ns.toString(); }; return a; diff --git a/tests/baselines/reference/collisionArgumentsClassMethod.js b/tests/baselines/reference/collisionArgumentsClassMethod.js index 3c2276f8ce517..4b7b243cc80cf 100644 --- a/tests/baselines/reference/collisionArgumentsClassMethod.js +++ b/tests/baselines/reference/collisionArgumentsClassMethod.js @@ -52,38 +52,39 @@ class c3 { var c1 = /** @class */ (function () { function c1() { } - c1.prototype.foo = function (i) { + var c1_prototype = c1.prototype; + c1_prototype.foo = function (i) { var arguments = []; for (var _i = 1; _i < arguments.length; _i++) { arguments[_i - 1] = arguments[_i]; } var arguments; // no error }; - c1.prototype.foo1 = function (arguments) { + c1_prototype.foo1 = function (arguments) { var rest = []; for (var _i = 1; _i < arguments.length; _i++) { rest[_i - 1] = arguments[_i]; } var arguments = 10; // no error }; - c1.prototype.fooNoError = function (arguments) { + c1_prototype.fooNoError = function (arguments) { var arguments = 10; // no error }; - c1.prototype.f4 = function (i) { + c1_prototype.f4 = function (i) { var arguments = []; for (var _i = 1; _i < arguments.length; _i++) { arguments[_i - 1] = arguments[_i]; } var arguments; // no error }; - c1.prototype.f41 = function (arguments) { + c1_prototype.f41 = function (arguments) { var rest = []; for (var _i = 1; _i < arguments.length; _i++) { rest[_i - 1] = arguments[_i]; } var arguments; // no error }; - c1.prototype.f4NoError = function (arguments) { + c1_prototype.f4NoError = function (arguments) { var arguments; // no error }; return c1; @@ -91,14 +92,15 @@ var c1 = /** @class */ (function () { var c3 = /** @class */ (function () { function c3() { } - c3.prototype.foo = function () { + var c3_prototype = c3.prototype; + c3_prototype.foo = function () { var restParameters = []; for (var _i = 0; _i < arguments.length; _i++) { restParameters[_i] = arguments[_i]; } var arguments = 10; // no error }; - c3.prototype.fooNoError = function () { + c3_prototype.fooNoError = function () { var arguments = 10; // no error }; return c3; diff --git a/tests/baselines/reference/collisionRestParameterClassMethod.js b/tests/baselines/reference/collisionRestParameterClassMethod.js index 6c49ebe135053..afcfd5a710248 100644 --- a/tests/baselines/reference/collisionRestParameterClassMethod.js +++ b/tests/baselines/reference/collisionRestParameterClassMethod.js @@ -42,24 +42,25 @@ class c3 { var c1 = /** @class */ (function () { function c1() { } - c1.prototype.foo = function (_i) { + var c1_prototype = c1.prototype; + c1_prototype.foo = function (_i) { var restParameters = []; for (var _a = 1; _a < arguments.length; _a++) { restParameters[_a - 1] = arguments[_a]; } var _i = 10; // no error }; - c1.prototype.fooNoError = function (_i) { + c1_prototype.fooNoError = function (_i) { var _i = 10; // no error }; - c1.prototype.f4 = function (_i) { + c1_prototype.f4 = function (_i) { var rest = []; for (var _a = 1; _a < arguments.length; _a++) { rest[_a - 1] = arguments[_a]; } var _i; // no error }; - c1.prototype.f4NoError = function (_i) { + c1_prototype.f4NoError = function (_i) { var _i; // no error }; return c1; @@ -67,14 +68,15 @@ var c1 = /** @class */ (function () { var c3 = /** @class */ (function () { function c3() { } - c3.prototype.foo = function () { + var c3_prototype = c3.prototype; + c3_prototype.foo = function () { var restParameters = []; for (var _a = 0; _a < arguments.length; _a++) { restParameters[_a] = arguments[_a]; } var _i = 10; // no error }; - c3.prototype.fooNoError = function () { + c3_prototype.fooNoError = function () { var _i = 10; // no error }; return c3; diff --git a/tests/baselines/reference/collisionSuperAndLocalFunctionInMethod.js b/tests/baselines/reference/collisionSuperAndLocalFunctionInMethod.js index 767b567546336..ff098bc24b50c 100644 --- a/tests/baselines/reference/collisionSuperAndLocalFunctionInMethod.js +++ b/tests/baselines/reference/collisionSuperAndLocalFunctionInMethod.js @@ -49,11 +49,12 @@ function _super() { var Foo = /** @class */ (function () { function Foo() { } - Foo.prototype.x = function () { + var Foo_prototype = Foo.prototype; + Foo_prototype.x = function () { function _super() { } }; - Foo.prototype._super = function () { + Foo_prototype._super = function () { }; return Foo; }()); @@ -62,11 +63,12 @@ var b = /** @class */ (function (_super_1) { function b() { return _super_1 !== null && _super_1.apply(this, arguments) || this; } - b.prototype.foo = function () { + var b_prototype = b.prototype; + b_prototype.foo = function () { function _super() { } }; - b.prototype._super = function () { + b_prototype._super = function () { }; return b; }(Foo)); @@ -75,13 +77,14 @@ var c = /** @class */ (function (_super_1) { function c() { return _super_1 !== null && _super_1.apply(this, arguments) || this; } - c.prototype.foo = function () { + var c_prototype = c.prototype; + c_prototype.foo = function () { var x = function () { function _super() { } }; }; - c.prototype._super = function () { + c_prototype._super = function () { }; return c; }(Foo)); diff --git a/tests/baselines/reference/collisionSuperAndParameter.js b/tests/baselines/reference/collisionSuperAndParameter.js index bf76b22bf7666..c8ebbae4c8f03 100644 --- a/tests/baselines/reference/collisionSuperAndParameter.js +++ b/tests/baselines/reference/collisionSuperAndParameter.js @@ -81,19 +81,20 @@ var __extends = (this && this.__extends) || (function () { var Foo = /** @class */ (function () { function Foo() { } - Foo.prototype.a = function () { + var Foo_prototype = Foo.prototype; + Foo_prototype.a = function () { var _this = this; var lamda = function (_super) { return function (x) { return _this; }; // New scope. So should inject new _this capture }; }; - Foo.prototype.b = function (_super) { + Foo_prototype.b = function (_super) { var _this = this; var lambda = function () { return function (x) { return _this; }; // New scope. So should inject new _this capture }; }; - Object.defineProperty(Foo.prototype, "c", { + Object.defineProperty(Foo_prototype, "c", { set: function (_super) { }, enumerable: false, @@ -111,19 +112,20 @@ var Foo2 = /** @class */ (function (_super_1) { }; return _this; } - Foo2.prototype.x = function () { + var Foo2_prototype = Foo2.prototype; + Foo2_prototype.x = function () { var _this = this; var lamda = function (_super) { return function (x) { return _this; }; // New scope. So should inject new _this capture }; }; - Foo2.prototype.y = function (_super) { + Foo2_prototype.y = function (_super) { var _this = this; var lambda = function () { return function (x) { return _this; }; // New scope. So should inject new _this capture }; }; - Object.defineProperty(Foo2.prototype, "z", { + Object.defineProperty(Foo2_prototype, "z", { set: function (_super) { }, enumerable: false, diff --git a/tests/baselines/reference/collisionThisExpressionAndLocalVarInMethod.js b/tests/baselines/reference/collisionThisExpressionAndLocalVarInMethod.js index 16f288174a564..df1a4cb306bc5 100644 --- a/tests/baselines/reference/collisionThisExpressionAndLocalVarInMethod.js +++ b/tests/baselines/reference/collisionThisExpressionAndLocalVarInMethod.js @@ -22,7 +22,8 @@ class a { var a = /** @class */ (function () { function a() { } - a.prototype.method1 = function () { + var a_prototype = a.prototype; + a_prototype.method1 = function () { var _this_1 = this; return { doStuff: function (callback) { return function () { @@ -31,7 +32,7 @@ var a = /** @class */ (function () { }; } }; }; - a.prototype.method2 = function () { + a_prototype.method2 = function () { var _this_1 = this; var _this = 2; return { diff --git a/tests/baselines/reference/collisionThisExpressionAndParameter.js b/tests/baselines/reference/collisionThisExpressionAndParameter.js index b6367480e027e..fec951b363fb9 100644 --- a/tests/baselines/reference/collisionThisExpressionAndParameter.js +++ b/tests/baselines/reference/collisionThisExpressionAndParameter.js @@ -97,35 +97,36 @@ declare function f4(_this: string); // no code gen - no error var Foo = /** @class */ (function () { function Foo() { } - Foo.prototype.x = function () { + var Foo_prototype = Foo.prototype; + Foo_prototype.x = function () { var _this = 10; // Local var. No this capture in x(), so no conflict. function inner(_this) { var _this_1 = this; return function (x) { return _this_1; }; // New scope. So should inject new _this capture into function inner } }; - Foo.prototype.y = function () { + Foo_prototype.y = function () { var _this_1 = this; var lamda = function (_this) { return function (x) { return _this_1; }; // New scope. So should inject new _this capture }; }; - Foo.prototype.z = function (_this) { + Foo_prototype.z = function (_this) { var _this_1 = this; var lambda = function () { return function (x) { return _this_1; }; // New scope. So should inject new _this capture }; }; - Foo.prototype.x1 = function () { + Foo_prototype.x1 = function () { var _this = 10; // Local var. No this capture in x(), so no conflict. function inner(_this) { } }; - Foo.prototype.y1 = function () { + Foo_prototype.y1 = function () { var lamda = function (_this) { }; }; - Foo.prototype.z1 = function (_this) { + Foo_prototype.z1 = function (_this) { var lambda = function () { }; }; diff --git a/tests/baselines/reference/commentsClassMembers.js b/tests/baselines/reference/commentsClassMembers.js index e4f7e4bc5d2cd..076d481aa9237 100644 --- a/tests/baselines/reference/commentsClassMembers.js +++ b/tests/baselines/reference/commentsClassMembers.js @@ -223,11 +223,12 @@ var c1 = /** @class */ (function () { /** Constructor method*/ function c1() { } + var c1_prototype = c1.prototype; /** sum with property*/ - c1.prototype.p2 = function (/** number to add*/ b) { + c1_prototype.p2 = function (/** number to add*/ b) { return this.p1 + b; }; /* trailing comment of method*/ - Object.defineProperty(c1.prototype, "p3", { + Object.defineProperty(c1_prototype, "p3", { /** getter property*/ get: function () { return this.p2(this.p1); @@ -242,10 +243,10 @@ var c1 = /** @class */ (function () { configurable: true }); /** sum with property*/ - c1.prototype.pp2 = function (/** number to add*/ b) { + c1_prototype.pp2 = function (/** number to add*/ b) { return this.p1 + b; }; // trailing comment of method - Object.defineProperty(c1.prototype, "pp3", { + Object.defineProperty(c1_prototype, "pp3", { /** getter property*/ get: function () { return this.pp2(this.pp1); @@ -273,10 +274,10 @@ var c1 = /** @class */ (function () { enumerable: false, configurable: true }); - c1.prototype.nc_p2 = function (b) { + c1_prototype.nc_p2 = function (b) { return this.nc_p1 + b; }; - Object.defineProperty(c1.prototype, "nc_p3", { + Object.defineProperty(c1_prototype, "nc_p3", { get: function () { return this.nc_p2(this.nc_p1); }, @@ -286,10 +287,10 @@ var c1 = /** @class */ (function () { enumerable: false, configurable: true }); - c1.prototype.nc_pp2 = function (b) { + c1_prototype.nc_pp2 = function (b) { return this.nc_pp1 + b; }; - Object.defineProperty(c1.prototype, "nc_pp3", { + Object.defineProperty(c1_prototype, "nc_pp3", { get: function () { return this.nc_pp2(this.nc_pp1); }, @@ -313,10 +314,10 @@ var c1 = /** @class */ (function () { configurable: true }); // sum with property - c1.prototype.a_p2 = function (b) { + c1_prototype.a_p2 = function (b) { return this.a_p1 + b; }; - Object.defineProperty(c1.prototype, "a_p3", { + Object.defineProperty(c1_prototype, "a_p3", { // getter property get: function () { return this.a_p2(this.a_p1); @@ -329,10 +330,10 @@ var c1 = /** @class */ (function () { configurable: true }); // sum with property - c1.prototype.a_pp2 = function (b) { + c1_prototype.a_pp2 = function (b) { return this.a_p1 + b; }; - Object.defineProperty(c1.prototype, "a_pp3", { + Object.defineProperty(c1_prototype, "a_pp3", { // getter property get: function () { return this.a_pp2(this.a_pp1); @@ -361,10 +362,10 @@ var c1 = /** @class */ (function () { configurable: true }); /** sum with property */ - c1.prototype.b_p2 = function (b) { + c1_prototype.b_p2 = function (b) { return this.b_p1 + b; }; - Object.defineProperty(c1.prototype, "b_p3", { + Object.defineProperty(c1_prototype, "b_p3", { /** getter property */ get: function () { return this.b_p2(this.b_p1); @@ -377,10 +378,10 @@ var c1 = /** @class */ (function () { configurable: true }); /** sum with property */ - c1.prototype.b_pp2 = function (b) { + c1_prototype.b_pp2 = function (b) { return this.b_p1 + b; }; - Object.defineProperty(c1.prototype, "b_pp3", { + Object.defineProperty(c1_prototype, "b_pp3", { /** getter property */ get: function () { return this.b_pp2(this.b_pp1); @@ -440,7 +441,8 @@ var cProperties = /** @class */ (function () { this.x = 10; /*trailing comment for property*/ this.y = 10; // trailing comment of // style } - Object.defineProperty(cProperties.prototype, "p1", { + var cProperties_prototype = cProperties.prototype; + Object.defineProperty(cProperties_prototype, "p1", { /** getter only property*/ get: function () { return this.val; @@ -449,14 +451,14 @@ var cProperties = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(cProperties.prototype, "nc_p1", { + Object.defineProperty(cProperties_prototype, "nc_p1", { get: function () { return this.val; }, enumerable: false, configurable: true }); - Object.defineProperty(cProperties.prototype, "p2", { + Object.defineProperty(cProperties_prototype, "p2", { /**setter only property*/ set: function (value) { this.val = value; @@ -464,7 +466,7 @@ var cProperties = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(cProperties.prototype, "nc_p2", { + Object.defineProperty(cProperties_prototype, "nc_p2", { set: function (value) { this.val = value; } /* trailing comment of setter only*/, diff --git a/tests/baselines/reference/commentsInheritance.js b/tests/baselines/reference/commentsInheritance.js index 680bde5845853..ffe54d91c9b49 100644 --- a/tests/baselines/reference/commentsInheritance.js +++ b/tests/baselines/reference/commentsInheritance.js @@ -169,16 +169,17 @@ var __extends = (this && this.__extends) || (function () { var c1 = /** @class */ (function () { function c1() { } + var c1_prototype = c1.prototype; // i1_f1 - c1.prototype.i1_f1 = function () { + c1_prototype.i1_f1 = function () { }; - c1.prototype.i1_nc_f1 = function () { + c1_prototype.i1_nc_f1 = function () { }; /** c1_f1*/ - c1.prototype.f1 = function () { + c1_prototype.f1 = function () { }; /** c1_nc_f1*/ - c1.prototype.nc_f1 = function () { + c1_prototype.nc_f1 = function () { }; return c1; }()); @@ -191,10 +192,11 @@ var c2 = /** @class */ (function () { function c2(a) { this.c2_p1 = a; } + var c2_prototype = c2.prototype; /** c2 c2_f1*/ - c2.prototype.c2_f1 = function () { + c2_prototype.c2_f1 = function () { }; - Object.defineProperty(c2.prototype, "c2_prop", { + Object.defineProperty(c2_prototype, "c2_prop", { /** c2 c2_prop*/ get: function () { return 10; @@ -202,9 +204,9 @@ var c2 = /** @class */ (function () { enumerable: false, configurable: true }); - c2.prototype.c2_nc_f1 = function () { + c2_prototype.c2_nc_f1 = function () { }; - Object.defineProperty(c2.prototype, "c2_nc_prop", { + Object.defineProperty(c2_prototype, "c2_nc_prop", { get: function () { return 10; }, @@ -212,9 +214,9 @@ var c2 = /** @class */ (function () { configurable: true }); /** c2 f1*/ - c2.prototype.f1 = function () { + c2_prototype.f1 = function () { }; - Object.defineProperty(c2.prototype, "prop", { + Object.defineProperty(c2_prototype, "prop", { /** c2 prop*/ get: function () { return 10; @@ -222,9 +224,9 @@ var c2 = /** @class */ (function () { enumerable: false, configurable: true }); - c2.prototype.nc_f1 = function () { + c2_prototype.nc_f1 = function () { }; - Object.defineProperty(c2.prototype, "nc_prop", { + Object.defineProperty(c2_prototype, "nc_prop", { get: function () { return 10; }, @@ -238,10 +240,11 @@ var c3 = /** @class */ (function (_super) { function c3() { return _super.call(this, 10) || this; } + var c3_prototype = c3.prototype; /** c3 f1*/ - c3.prototype.f1 = function () { + c3_prototype.f1 = function () { }; - Object.defineProperty(c3.prototype, "prop", { + Object.defineProperty(c3_prototype, "prop", { /** c3 prop*/ get: function () { return 10; @@ -249,9 +252,9 @@ var c3 = /** @class */ (function (_super) { enumerable: false, configurable: true }); - c3.prototype.nc_f1 = function () { + c3_prototype.nc_f1 = function () { }; - Object.defineProperty(c3.prototype, "nc_prop", { + Object.defineProperty(c3_prototype, "nc_prop", { get: function () { return 10; }, diff --git a/tests/baselines/reference/commentsOverloads.js b/tests/baselines/reference/commentsOverloads.js index eb44d3bc5d84f..8139e8fc06947 100644 --- a/tests/baselines/reference/commentsOverloads.js +++ b/tests/baselines/reference/commentsOverloads.js @@ -202,20 +202,21 @@ var i3_i; var c = /** @class */ (function () { function c() { } - c.prototype.prop1 = function (aorb) { + var c_prototype = c.prototype; + c_prototype.prop1 = function (aorb) { return 10; }; - c.prototype.prop2 = function (aorb) { + c_prototype.prop2 = function (aorb) { return 10; }; - c.prototype.prop3 = function (aorb) { + c_prototype.prop3 = function (aorb) { return 10; }; - c.prototype.prop4 = function (aorb) { + c_prototype.prop4 = function (aorb) { return 10; }; /** Prop5 implementaion*/ - c.prototype.prop5 = function (aorb) { + c_prototype.prop5 = function (aorb) { return 10; }; return c; diff --git a/tests/baselines/reference/commentsTypeParameters.js b/tests/baselines/reference/commentsTypeParameters.js index 9eabe866ec52e..fd802f8005703 100644 --- a/tests/baselines/reference/commentsTypeParameters.js +++ b/tests/baselines/reference/commentsTypeParameters.js @@ -19,11 +19,12 @@ function compare(a: T, b: T) { var C = /** @class */ (function () { function C() { } - C.prototype.method = function (a) { + var C_prototype = C.prototype; + C_prototype.method = function (a) { }; C.staticmethod = function (a) { }; - C.prototype.privatemethod = function (a) { + C_prototype.privatemethod = function (a) { }; C.privatestaticmethod = function (a) { }; diff --git a/tests/baselines/reference/commentsdoNotEmitComments.js b/tests/baselines/reference/commentsdoNotEmitComments.js index ec39b272ca1d7..54d15a28268cd 100644 --- a/tests/baselines/reference/commentsdoNotEmitComments.js +++ b/tests/baselines/reference/commentsdoNotEmitComments.js @@ -103,10 +103,11 @@ var c = (function () { function c() { this.b = 10; } - c.prototype.myFoo = function () { + var c_prototype = c.prototype; + c_prototype.myFoo = function () { return this.b; }; - Object.defineProperty(c.prototype, "prop1", { + Object.defineProperty(c_prototype, "prop1", { get: function () { return this.b; }, @@ -116,7 +117,7 @@ var c = (function () { enumerable: false, configurable: true }); - c.prototype.foo1 = function (aOrb) { + c_prototype.foo1 = function (aOrb) { return aOrb.toString(); }; return c; diff --git a/tests/baselines/reference/commentsemitComments.js b/tests/baselines/reference/commentsemitComments.js index d99759cdbe807..b0fb5af357c0a 100644 --- a/tests/baselines/reference/commentsemitComments.js +++ b/tests/baselines/reference/commentsemitComments.js @@ -104,11 +104,12 @@ var c = /** @class */ (function () { /** property comment */ this.b = 10; } + var c_prototype = c.prototype; /** function comment */ - c.prototype.myFoo = function () { + c_prototype.myFoo = function () { return this.b; }; - Object.defineProperty(c.prototype, "prop1", { + Object.defineProperty(c_prototype, "prop1", { /** getter comment*/ get: function () { return this.b; @@ -121,7 +122,7 @@ var c = /** @class */ (function () { configurable: true }); /** overload implementation signature*/ - c.prototype.foo1 = function (aOrb) { + c_prototype.foo1 = function (aOrb) { return aOrb.toString(); }; return c; diff --git a/tests/baselines/reference/complexClassRelationships.js b/tests/baselines/reference/complexClassRelationships.js index dc4523ad5c8f3..fad8f23280912 100644 --- a/tests/baselines/reference/complexClassRelationships.js +++ b/tests/baselines/reference/complexClassRelationships.js @@ -107,17 +107,18 @@ var ComponentCollection = /** @class */ (function () { var Foo = /** @class */ (function () { function Foo() { } - Object.defineProperty(Foo.prototype, "prop1", { + var Foo_prototype = Foo.prototype; + Object.defineProperty(Foo_prototype, "prop1", { get: function () { return new GenericType(this); }, enumerable: false, configurable: true }); - Foo.prototype.populate = function () { + Foo_prototype.populate = function () { this.prop2; }; - Object.defineProperty(Foo.prototype, "prop2", { + Object.defineProperty(Foo_prototype, "prop2", { get: function () { return new BaseCollection(Derived.createEmpty); }, diff --git a/tests/baselines/reference/complicatedPrivacy.js b/tests/baselines/reference/complicatedPrivacy.js index 472a03fa4fbac..629cc6d640406 100644 --- a/tests/baselines/reference/complicatedPrivacy.js +++ b/tests/baselines/reference/complicatedPrivacy.js @@ -118,7 +118,8 @@ var m1; var C2 = /** @class */ (function () { function C2() { } - Object.defineProperty(C2.prototype, "p1", { + var C2_prototype = C2.prototype; + Object.defineProperty(C2_prototype, "p1", { get: function (arg) { return new C1(); }, @@ -127,7 +128,7 @@ var m1; enumerable: false, configurable: true }); - C2.prototype.f55 = function () { + C2_prototype.f55 = function () { return "Hello world"; }; return C2; diff --git a/tests/baselines/reference/computedPropertyNames13_ES5.js b/tests/baselines/reference/computedPropertyNames13_ES5.js index f22d55506043b..9b0b1a9bda437 100644 --- a/tests/baselines/reference/computedPropertyNames13_ES5.js +++ b/tests/baselines/reference/computedPropertyNames13_ES5.js @@ -23,16 +23,17 @@ var a; var C = /** @class */ (function () { function C() { } - C.prototype[s] = function () { }; - C.prototype[n] = function () { }; + var C_prototype = C.prototype; + C_prototype[s] = function () { }; + C_prototype[n] = function () { }; C[s + s] = function () { }; - C.prototype[s + n] = function () { }; - C.prototype[+s] = function () { }; + C_prototype[s + n] = function () { }; + C_prototype[+s] = function () { }; C[""] = function () { }; - C.prototype[0] = function () { }; - C.prototype[a] = function () { }; + C_prototype[0] = function () { }; + C_prototype[a] = function () { }; C[true] = function () { }; - C.prototype["hello bye"] = function () { }; + C_prototype["hello bye"] = function () { }; C["hello " + a + " bye"] = function () { }; return C; }()); diff --git a/tests/baselines/reference/computedPropertyNames14_ES5.js b/tests/baselines/reference/computedPropertyNames14_ES5.js index 92d1fe907ffd3..05cf03d9fa19f 100644 --- a/tests/baselines/reference/computedPropertyNames14_ES5.js +++ b/tests/baselines/reference/computedPropertyNames14_ES5.js @@ -14,11 +14,12 @@ var b; var C = /** @class */ (function () { function C() { } - C.prototype[b] = function () { }; + var C_prototype = C.prototype; + C_prototype[b] = function () { }; C[true] = function () { }; - C.prototype[[]] = function () { }; + C_prototype[[]] = function () { }; C[{}] = function () { }; - C.prototype[undefined] = function () { }; + C_prototype[undefined] = function () { }; C[null] = function () { }; return C; }()); diff --git a/tests/baselines/reference/computedPropertyNames15_ES5.js b/tests/baselines/reference/computedPropertyNames15_ES5.js index 312c8c661062e..2a7099dbc059f 100644 --- a/tests/baselines/reference/computedPropertyNames15_ES5.js +++ b/tests/baselines/reference/computedPropertyNames15_ES5.js @@ -15,8 +15,9 @@ var p3; var C = /** @class */ (function () { function C() { } - C.prototype[p1] = function () { }; - C.prototype[p2] = function () { }; - C.prototype[p3] = function () { }; + var C_prototype = C.prototype; + C_prototype[p1] = function () { }; + C_prototype[p2] = function () { }; + C_prototype[p3] = function () { }; return C; }()); diff --git a/tests/baselines/reference/computedPropertyNames16_ES5.js b/tests/baselines/reference/computedPropertyNames16_ES5.js index 1fec4a6f2eab4..197bcc2d6c7ed 100644 --- a/tests/baselines/reference/computedPropertyNames16_ES5.js +++ b/tests/baselines/reference/computedPropertyNames16_ES5.js @@ -23,12 +23,13 @@ var a; var C = /** @class */ (function () { function C() { } - Object.defineProperty(C.prototype, s, { + var C_prototype = C.prototype; + Object.defineProperty(C_prototype, s, { get: function () { return 0; }, enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, n, { + Object.defineProperty(C_prototype, n, { set: function (v) { }, enumerable: false, configurable: true @@ -38,12 +39,12 @@ var C = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, s + n, { + Object.defineProperty(C_prototype, s + n, { set: function (v) { }, enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, +s, { + Object.defineProperty(C_prototype, +s, { get: function () { return 0; }, enumerable: false, configurable: true @@ -53,12 +54,12 @@ var C = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, 0, { + Object.defineProperty(C_prototype, 0, { get: function () { return 0; }, enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, a, { + Object.defineProperty(C_prototype, a, { set: function (v) { }, enumerable: false, configurable: true @@ -68,12 +69,12 @@ var C = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, "hello bye", { + Object.defineProperty(C_prototype, "hello bye", { set: function (v) { }, enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, "hello " + a + " bye", { + Object.defineProperty(C_prototype, "hello " + a + " bye", { get: function () { return 0; }, enumerable: false, configurable: true diff --git a/tests/baselines/reference/computedPropertyNames17_ES5.js b/tests/baselines/reference/computedPropertyNames17_ES5.js index fff40d50edd81..ae216a958fca7 100644 --- a/tests/baselines/reference/computedPropertyNames17_ES5.js +++ b/tests/baselines/reference/computedPropertyNames17_ES5.js @@ -14,7 +14,8 @@ var b; var C = /** @class */ (function () { function C() { } - Object.defineProperty(C.prototype, b, { + var C_prototype = C.prototype; + Object.defineProperty(C_prototype, b, { get: function () { return 0; }, enumerable: false, configurable: true @@ -24,12 +25,12 @@ var C = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, [], { + Object.defineProperty(C_prototype, [], { get: function () { return 0; }, enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, {}, { + Object.defineProperty(C_prototype, {}, { set: function (v) { }, enumerable: false, configurable: true @@ -39,7 +40,7 @@ var C = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, null, { + Object.defineProperty(C_prototype, null, { set: function (v) { }, enumerable: false, configurable: true diff --git a/tests/baselines/reference/computedPropertyNames21_ES5.js b/tests/baselines/reference/computedPropertyNames21_ES5.js index 0ca25ff0b9acf..748c72090b689 100644 --- a/tests/baselines/reference/computedPropertyNames21_ES5.js +++ b/tests/baselines/reference/computedPropertyNames21_ES5.js @@ -10,9 +10,10 @@ class C { var C = /** @class */ (function () { function C() { } - C.prototype.bar = function () { + var C_prototype = C.prototype; + C_prototype.bar = function () { return 0; }; - C.prototype[this.bar()] = function () { }; + C_prototype[this.bar()] = function () { }; return C; }()); diff --git a/tests/baselines/reference/computedPropertyNames23_ES5.js b/tests/baselines/reference/computedPropertyNames23_ES5.js index 1444218f32c2f..e5af559df908a 100644 --- a/tests/baselines/reference/computedPropertyNames23_ES5.js +++ b/tests/baselines/reference/computedPropertyNames23_ES5.js @@ -13,9 +13,10 @@ var C = /** @class */ (function () { var _a; function C() { } - C.prototype.bar = function () { + var C_prototype = C.prototype; + C_prototype.bar = function () { return 0; }; - C.prototype[(_a = {}, _a[this.bar()] = 1, _a)[0]] = function () { }; + C_prototype[(_a = {}, _a[this.bar()] = 1, _a)[0]] = function () { }; return C; }()); diff --git a/tests/baselines/reference/computedPropertyNames2_ES5.js b/tests/baselines/reference/computedPropertyNames2_ES5.js index 051222f6dc641..ca1090558968b 100644 --- a/tests/baselines/reference/computedPropertyNames2_ES5.js +++ b/tests/baselines/reference/computedPropertyNames2_ES5.js @@ -16,14 +16,15 @@ var accessorName = "accessor"; var C = /** @class */ (function () { function C() { } - C.prototype[methodName] = function () { }; + var C_prototype = C.prototype; + C_prototype[methodName] = function () { }; C[methodName] = function () { }; - Object.defineProperty(C.prototype, accessorName, { + Object.defineProperty(C_prototype, accessorName, { get: function () { }, enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, accessorName, { + Object.defineProperty(C_prototype, accessorName, { set: function (v) { }, enumerable: false, configurable: true diff --git a/tests/baselines/reference/computedPropertyNames32_ES5.js b/tests/baselines/reference/computedPropertyNames32_ES5.js index 171bc8bd0add5..2c877605d9ae3 100644 --- a/tests/baselines/reference/computedPropertyNames32_ES5.js +++ b/tests/baselines/reference/computedPropertyNames32_ES5.js @@ -12,9 +12,10 @@ function foo() { return ''; } var C = /** @class */ (function () { function C() { } - C.prototype.bar = function () { + var C_prototype = C.prototype; + C_prototype.bar = function () { return 0; }; - C.prototype[foo()] = function () { }; + C_prototype[foo()] = function () { }; return C; }()); diff --git a/tests/baselines/reference/computedPropertyNames36_ES5.js b/tests/baselines/reference/computedPropertyNames36_ES5.js index f91acfd036c78..e6522aeed4a9c 100644 --- a/tests/baselines/reference/computedPropertyNames36_ES5.js +++ b/tests/baselines/reference/computedPropertyNames36_ES5.js @@ -24,13 +24,14 @@ var Foo2 = /** @class */ (function () { var C = /** @class */ (function () { function C() { } - Object.defineProperty(C.prototype, "get1", { + var C_prototype = C.prototype; + Object.defineProperty(C_prototype, "get1", { // Computed properties get: function () { return new Foo; }, enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, "set1", { + Object.defineProperty(C_prototype, "set1", { set: function (p) { }, enumerable: false, configurable: true diff --git a/tests/baselines/reference/computedPropertyNames37_ES5.js b/tests/baselines/reference/computedPropertyNames37_ES5.js index 6bb490c85a480..d245af653464f 100644 --- a/tests/baselines/reference/computedPropertyNames37_ES5.js +++ b/tests/baselines/reference/computedPropertyNames37_ES5.js @@ -24,13 +24,14 @@ var Foo2 = /** @class */ (function () { var C = /** @class */ (function () { function C() { } - Object.defineProperty(C.prototype, "get1", { + var C_prototype = C.prototype; + Object.defineProperty(C_prototype, "get1", { // Computed properties get: function () { return new Foo; }, enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, "set1", { + Object.defineProperty(C_prototype, "set1", { set: function (p) { }, enumerable: false, configurable: true diff --git a/tests/baselines/reference/computedPropertyNames38_ES5.js b/tests/baselines/reference/computedPropertyNames38_ES5.js index d5114169215a6..7fc54447250a6 100644 --- a/tests/baselines/reference/computedPropertyNames38_ES5.js +++ b/tests/baselines/reference/computedPropertyNames38_ES5.js @@ -24,13 +24,14 @@ var Foo2 = /** @class */ (function () { var C = /** @class */ (function () { function C() { } - Object.defineProperty(C.prototype, 1 << 6, { + var C_prototype = C.prototype; + Object.defineProperty(C_prototype, 1 << 6, { // Computed properties get: function () { return new Foo; }, enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, 1 << 6, { + Object.defineProperty(C_prototype, 1 << 6, { set: function (p) { }, enumerable: false, configurable: true diff --git a/tests/baselines/reference/computedPropertyNames39_ES5.js b/tests/baselines/reference/computedPropertyNames39_ES5.js index 7196b9334da9e..418ba354f41c1 100644 --- a/tests/baselines/reference/computedPropertyNames39_ES5.js +++ b/tests/baselines/reference/computedPropertyNames39_ES5.js @@ -24,13 +24,14 @@ var Foo2 = /** @class */ (function () { var C = /** @class */ (function () { function C() { } - Object.defineProperty(C.prototype, 1 << 6, { + var C_prototype = C.prototype; + Object.defineProperty(C_prototype, 1 << 6, { // Computed properties get: function () { return new Foo; }, enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, 1 << 6, { + Object.defineProperty(C_prototype, 1 << 6, { set: function (p) { }, enumerable: false, configurable: true diff --git a/tests/baselines/reference/computedPropertyNames3_ES5.js b/tests/baselines/reference/computedPropertyNames3_ES5.js index 535a841f6e7a8..d2ba7d913056d 100644 --- a/tests/baselines/reference/computedPropertyNames3_ES5.js +++ b/tests/baselines/reference/computedPropertyNames3_ES5.js @@ -14,14 +14,15 @@ var id; var C = /** @class */ (function () { function C() { } - C.prototype[0 + 1] = function () { }; + var C_prototype = C.prototype; + C_prototype[0 + 1] = function () { }; C[function () { }] = function () { }; - Object.defineProperty(C.prototype, delete id, { + Object.defineProperty(C_prototype, delete id, { get: function () { }, enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, [0, 1], { + Object.defineProperty(C_prototype, [0, 1], { set: function (v) { }, enumerable: false, configurable: true diff --git a/tests/baselines/reference/computedPropertyNames40_ES5.js b/tests/baselines/reference/computedPropertyNames40_ES5.js index 46159fa4e0b6f..73d02c130a6e7 100644 --- a/tests/baselines/reference/computedPropertyNames40_ES5.js +++ b/tests/baselines/reference/computedPropertyNames40_ES5.js @@ -24,8 +24,9 @@ var Foo2 = /** @class */ (function () { var C = /** @class */ (function () { function C() { } + var C_prototype = C.prototype; // Computed properties - C.prototype[""] = function () { return new Foo; }; - C.prototype[""] = function () { return new Foo2; }; + C_prototype[""] = function () { return new Foo; }; + C_prototype[""] = function () { return new Foo2; }; return C; }()); diff --git a/tests/baselines/reference/computedPropertyNames43_ES5.js b/tests/baselines/reference/computedPropertyNames43_ES5.js index 5a2de17ee6801..dcfc3a7d9b1ab 100644 --- a/tests/baselines/reference/computedPropertyNames43_ES5.js +++ b/tests/baselines/reference/computedPropertyNames43_ES5.js @@ -48,13 +48,14 @@ var D = /** @class */ (function (_super) { function D() { return _super !== null && _super.apply(this, arguments) || this; } - Object.defineProperty(D.prototype, "get1", { + var D_prototype = D.prototype; + Object.defineProperty(D_prototype, "get1", { // Computed properties get: function () { return new Foo; }, enumerable: false, configurable: true }); - Object.defineProperty(D.prototype, "set1", { + Object.defineProperty(D_prototype, "set1", { set: function (p) { }, enumerable: false, configurable: true diff --git a/tests/baselines/reference/computedPropertyNamesDeclarationEmit1_ES5.js b/tests/baselines/reference/computedPropertyNamesDeclarationEmit1_ES5.js index 4eb744ca77a1e..12dc4f7d29c46 100644 --- a/tests/baselines/reference/computedPropertyNamesDeclarationEmit1_ES5.js +++ b/tests/baselines/reference/computedPropertyNamesDeclarationEmit1_ES5.js @@ -9,13 +9,14 @@ class C { var C = /** @class */ (function () { function C() { } - C.prototype["" + ""] = function () { }; - Object.defineProperty(C.prototype, "" + "", { + var C_prototype = C.prototype; + C_prototype["" + ""] = function () { }; + Object.defineProperty(C_prototype, "" + "", { get: function () { return 0; }, enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, "" + "", { + Object.defineProperty(C_prototype, "" + "", { set: function (x) { }, enumerable: false, configurable: true diff --git a/tests/baselines/reference/computedPropertyNamesSourceMap1_ES5.js b/tests/baselines/reference/computedPropertyNamesSourceMap1_ES5.js index d83c02499baee..e7de88fd15fb0 100644 --- a/tests/baselines/reference/computedPropertyNamesSourceMap1_ES5.js +++ b/tests/baselines/reference/computedPropertyNamesSourceMap1_ES5.js @@ -12,10 +12,11 @@ class C { var C = /** @class */ (function () { function C() { } - C.prototype["hello"] = function () { + var C_prototype = C.prototype; + C_prototype["hello"] = function () { debugger; }; - Object.defineProperty(C.prototype, "goodbye", { + Object.defineProperty(C_prototype, "goodbye", { get: function () { return 0; }, diff --git a/tests/baselines/reference/computedPropertyNamesSourceMap1_ES5.js.map b/tests/baselines/reference/computedPropertyNamesSourceMap1_ES5.js.map index 2a3dd476af1fa..7a6c52761e355 100644 --- a/tests/baselines/reference/computedPropertyNamesSourceMap1_ES5.js.map +++ b/tests/baselines/reference/computedPropertyNamesSourceMap1_ES5.js.map @@ -1,3 +1,3 @@ //// [computedPropertyNamesSourceMap1_ES5.js.map] -{"version":3,"file":"computedPropertyNamesSourceMap1_ES5.js","sourceRoot":"","sources":["computedPropertyNamesSourceMap1_ES5.ts"],"names":[],"mappings":"AAAA;IAAA;IAOA,CAAC;IANG,YAAC,OAAO,CAAC,GAAT;QACI,QAAQ,CAAC;IACb,CAAC;IACD,sBAAI,sBAAW;aAAf;YACF,OAAO,CAAC,CAAC;QACP,CAAC;;;OAAA;IACL,QAAC;AAAD,CAAC,AAPD,IAOC"} -//// https://sokra.github.io/source-map-visualization#base64,dmFyIEMgPSAvKiogQGNsYXNzICovIChmdW5jdGlvbiAoKSB7DQogICAgZnVuY3Rpb24gQygpIHsNCiAgICB9DQogICAgQy5wcm90b3R5cGVbImhlbGxvIl0gPSBmdW5jdGlvbiAoKSB7DQogICAgICAgIGRlYnVnZ2VyOw0KICAgIH07DQogICAgT2JqZWN0LmRlZmluZVByb3BlcnR5KEMucHJvdG90eXBlLCAiZ29vZGJ5ZSIsIHsNCiAgICAgICAgZ2V0OiBmdW5jdGlvbiAoKSB7DQogICAgICAgICAgICByZXR1cm4gMDsNCiAgICAgICAgfSwNCiAgICAgICAgZW51bWVyYWJsZTogZmFsc2UsDQogICAgICAgIGNvbmZpZ3VyYWJsZTogdHJ1ZQ0KICAgIH0pOw0KICAgIHJldHVybiBDOw0KfSgpKTsNCi8vIyBzb3VyY2VNYXBwaW5nVVJMPWNvbXB1dGVkUHJvcGVydHlOYW1lc1NvdXJjZU1hcDFfRVM1LmpzLm1hcA==,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29tcHV0ZWRQcm9wZXJ0eU5hbWVzU291cmNlTWFwMV9FUzUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJjb21wdXRlZFByb3BlcnR5TmFtZXNTb3VyY2VNYXAxX0VTNS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTtJQUFBO0lBT0EsQ0FBQztJQU5HLFlBQUMsT0FBTyxDQUFDLEdBQVQ7UUFDSSxRQUFRLENBQUM7SUFDYixDQUFDO0lBQ0Qsc0JBQUksc0JBQVc7YUFBZjtZQUNGLE9BQU8sQ0FBQyxDQUFDO1FBQ1AsQ0FBQzs7O09BQUE7SUFDTCxRQUFDO0FBQUQsQ0FBQyxBQVBELElBT0MifQ==,Y2xhc3MgQyB7CiAgICBbImhlbGxvIl0oKSB7CiAgICAgICAgZGVidWdnZXI7CiAgICB9CiAgICBnZXQgWyJnb29kYnllIl0oKSB7CgkJcmV0dXJuIDA7CiAgICB9Cn0= +{"version":3,"file":"computedPropertyNamesSourceMap1_ES5.js","sourceRoot":"","sources":["computedPropertyNamesSourceMap1_ES5.ts"],"names":[],"mappings":"AAAA;IAAA;IAOA,CAAC;;IANG,YAAC,OAAO,CAAC,GAAT;QACI,QAAQ,CAAC;IACb,CAAC;IACD,sBAAI,sBAAW;aAAf;YACF,OAAO,CAAC,CAAC;QACP,CAAC;;;OAAA;IACL,QAAC;AAAD,CAAC,AAPD,IAOC"} +//// https://sokra.github.io/source-map-visualization#base64,dmFyIEMgPSAvKiogQGNsYXNzICovIChmdW5jdGlvbiAoKSB7DQogICAgZnVuY3Rpb24gQygpIHsNCiAgICB9DQogICAgdmFyIENfcHJvdG90eXBlID0gQy5wcm90b3R5cGU7DQogICAgQ19wcm90b3R5cGVbImhlbGxvIl0gPSBmdW5jdGlvbiAoKSB7DQogICAgICAgIGRlYnVnZ2VyOw0KICAgIH07DQogICAgT2JqZWN0LmRlZmluZVByb3BlcnR5KENfcHJvdG90eXBlLCAiZ29vZGJ5ZSIsIHsNCiAgICAgICAgZ2V0OiBmdW5jdGlvbiAoKSB7DQogICAgICAgICAgICByZXR1cm4gMDsNCiAgICAgICAgfSwNCiAgICAgICAgZW51bWVyYWJsZTogZmFsc2UsDQogICAgICAgIGNvbmZpZ3VyYWJsZTogdHJ1ZQ0KICAgIH0pOw0KICAgIHJldHVybiBDOw0KfSgpKTsNCi8vIyBzb3VyY2VNYXBwaW5nVVJMPWNvbXB1dGVkUHJvcGVydHlOYW1lc1NvdXJjZU1hcDFfRVM1LmpzLm1hcA==,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29tcHV0ZWRQcm9wZXJ0eU5hbWVzU291cmNlTWFwMV9FUzUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJjb21wdXRlZFByb3BlcnR5TmFtZXNTb3VyY2VNYXAxX0VTNS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTtJQUFBO0lBT0EsQ0FBQzs7SUFORyxZQUFDLE9BQU8sQ0FBQyxHQUFUO1FBQ0ksUUFBUSxDQUFDO0lBQ2IsQ0FBQztJQUNELHNCQUFJLHNCQUFXO2FBQWY7WUFDRixPQUFPLENBQUMsQ0FBQztRQUNQLENBQUM7OztPQUFBO0lBQ0wsUUFBQztBQUFELENBQUMsQUFQRCxJQU9DIn0=,Y2xhc3MgQyB7CiAgICBbImhlbGxvIl0oKSB7CiAgICAgICAgZGVidWdnZXI7CiAgICB9CiAgICBnZXQgWyJnb29kYnllIl0oKSB7CgkJcmV0dXJuIDA7CiAgICB9Cn0= diff --git a/tests/baselines/reference/computedPropertyNamesSourceMap1_ES5.sourcemap.txt b/tests/baselines/reference/computedPropertyNamesSourceMap1_ES5.sourcemap.txt index e1b9e6800e002..e5b9126e1da93 100644 --- a/tests/baselines/reference/computedPropertyNamesSourceMap1_ES5.sourcemap.txt +++ b/tests/baselines/reference/computedPropertyNamesSourceMap1_ES5.sourcemap.txt @@ -23,7 +23,7 @@ sourceFile:computedPropertyNamesSourceMap1_ES5.ts >>> } 1->^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1->class C { > ["hello"]() { > debugger; @@ -36,7 +36,8 @@ sourceFile:computedPropertyNamesSourceMap1_ES5.ts 1->Emitted(3, 5) Source(8, 1) + SourceIndex(0) 2 >Emitted(3, 6) Source(8, 2) + SourceIndex(0) --- ->>> C.prototype["hello"] = function () { +>>> var C_prototype = C.prototype; +>>> C_prototype["hello"] = function () { 1->^^^^ 2 > ^^^^^^^^^^^^ 3 > ^^^^^^^ @@ -47,11 +48,11 @@ sourceFile:computedPropertyNamesSourceMap1_ES5.ts 3 > "hello" 4 > ] 5 > -1->Emitted(4, 5) Source(2, 5) + SourceIndex(0) -2 >Emitted(4, 17) Source(2, 6) + SourceIndex(0) -3 >Emitted(4, 24) Source(2, 13) + SourceIndex(0) -4 >Emitted(4, 25) Source(2, 14) + SourceIndex(0) -5 >Emitted(4, 28) Source(2, 5) + SourceIndex(0) +1->Emitted(5, 5) Source(2, 5) + SourceIndex(0) +2 >Emitted(5, 17) Source(2, 6) + SourceIndex(0) +3 >Emitted(5, 24) Source(2, 13) + SourceIndex(0) +4 >Emitted(5, 25) Source(2, 14) + SourceIndex(0) +5 >Emitted(5, 28) Source(2, 5) + SourceIndex(0) --- >>> debugger; 1 >^^^^^^^^ @@ -61,9 +62,9 @@ sourceFile:computedPropertyNamesSourceMap1_ES5.ts > 2 > debugger 3 > ; -1 >Emitted(5, 9) Source(3, 9) + SourceIndex(0) -2 >Emitted(5, 17) Source(3, 17) + SourceIndex(0) -3 >Emitted(5, 18) Source(3, 18) + SourceIndex(0) +1 >Emitted(6, 9) Source(3, 9) + SourceIndex(0) +2 >Emitted(6, 17) Source(3, 17) + SourceIndex(0) +3 >Emitted(6, 18) Source(3, 18) + SourceIndex(0) --- >>> }; 1 >^^^^ @@ -72,10 +73,10 @@ sourceFile:computedPropertyNamesSourceMap1_ES5.ts 1 > > 2 > } -1 >Emitted(6, 5) Source(4, 5) + SourceIndex(0) -2 >Emitted(6, 6) Source(4, 6) + SourceIndex(0) +1 >Emitted(7, 5) Source(4, 5) + SourceIndex(0) +2 >Emitted(7, 6) Source(4, 6) + SourceIndex(0) --- ->>> Object.defineProperty(C.prototype, "goodbye", { +>>> Object.defineProperty(C_prototype, "goodbye", { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -83,15 +84,15 @@ sourceFile:computedPropertyNamesSourceMap1_ES5.ts > 2 > get 3 > ["goodbye"] -1->Emitted(7, 5) Source(5, 5) + SourceIndex(0) -2 >Emitted(7, 27) Source(5, 9) + SourceIndex(0) -3 >Emitted(7, 49) Source(5, 20) + SourceIndex(0) +1->Emitted(8, 5) Source(5, 5) + SourceIndex(0) +2 >Emitted(8, 27) Source(5, 9) + SourceIndex(0) +3 >Emitted(8, 49) Source(5, 20) + SourceIndex(0) --- >>> get: function () { 1 >^^^^^^^^^^^^^ 2 > ^^^^^^^^^-> 1 > -1 >Emitted(8, 14) Source(5, 5) + SourceIndex(0) +1 >Emitted(9, 14) Source(5, 5) + SourceIndex(0) --- >>> return 0; 1->^^^^^^^^^^^^ @@ -103,10 +104,10 @@ sourceFile:computedPropertyNamesSourceMap1_ES5.ts 2 > return 3 > 0 4 > ; -1->Emitted(9, 13) Source(6, 3) + SourceIndex(0) -2 >Emitted(9, 20) Source(6, 10) + SourceIndex(0) -3 >Emitted(9, 21) Source(6, 11) + SourceIndex(0) -4 >Emitted(9, 22) Source(6, 12) + SourceIndex(0) +1->Emitted(10, 13) Source(6, 3) + SourceIndex(0) +2 >Emitted(10, 20) Source(6, 10) + SourceIndex(0) +3 >Emitted(10, 21) Source(6, 11) + SourceIndex(0) +4 >Emitted(10, 22) Source(6, 12) + SourceIndex(0) --- >>> }, 1 >^^^^^^^^ @@ -115,8 +116,8 @@ sourceFile:computedPropertyNamesSourceMap1_ES5.ts 1 > > 2 > } -1 >Emitted(10, 9) Source(7, 5) + SourceIndex(0) -2 >Emitted(10, 10) Source(7, 6) + SourceIndex(0) +1 >Emitted(11, 9) Source(7, 5) + SourceIndex(0) +2 >Emitted(11, 10) Source(7, 6) + SourceIndex(0) --- >>> enumerable: false, >>> configurable: true @@ -124,7 +125,7 @@ sourceFile:computedPropertyNamesSourceMap1_ES5.ts 1->^^^^^^^ 2 > ^^^^^^^-> 1-> -1->Emitted(13, 8) Source(7, 6) + SourceIndex(0) +1->Emitted(14, 8) Source(7, 6) + SourceIndex(0) --- >>> return C; 1->^^^^ @@ -132,8 +133,8 @@ sourceFile:computedPropertyNamesSourceMap1_ES5.ts 1-> > 2 > } -1->Emitted(14, 5) Source(8, 1) + SourceIndex(0) -2 >Emitted(14, 13) Source(8, 2) + SourceIndex(0) +1->Emitted(15, 5) Source(8, 1) + SourceIndex(0) +2 >Emitted(15, 13) Source(8, 2) + SourceIndex(0) --- >>>}()); 1 > @@ -152,9 +153,9 @@ sourceFile:computedPropertyNamesSourceMap1_ES5.ts > return 0; > } > } -1 >Emitted(15, 1) Source(8, 1) + SourceIndex(0) -2 >Emitted(15, 2) Source(8, 2) + SourceIndex(0) -3 >Emitted(15, 2) Source(1, 1) + SourceIndex(0) -4 >Emitted(15, 6) Source(8, 2) + SourceIndex(0) +1 >Emitted(16, 1) Source(8, 1) + SourceIndex(0) +2 >Emitted(16, 2) Source(8, 2) + SourceIndex(0) +3 >Emitted(16, 2) Source(1, 1) + SourceIndex(0) +4 >Emitted(16, 6) Source(8, 2) + SourceIndex(0) --- >>>//# sourceMappingURL=computedPropertyNamesSourceMap1_ES5.js.map \ No newline at end of file diff --git a/tests/baselines/reference/conditionalTypes2.js b/tests/baselines/reference/conditionalTypes2.js index f775bf0564b03..b0d486856abc8 100644 --- a/tests/baselines/reference/conditionalTypes2.js +++ b/tests/baselines/reference/conditionalTypes2.js @@ -306,10 +306,11 @@ var Opt = /** @class */ (function () { var Vector = /** @class */ (function () { function Vector() { } - Vector.prototype.tail = function () { + var Vector_prototype = Vector.prototype; + Vector_prototype.tail = function () { return undefined; }; - Vector.prototype.partition2 = function (predicate) { + Vector_prototype.partition2 = function (predicate) { return undefined; }; return Vector; diff --git a/tests/baselines/reference/conflictMarkerDiff3Trivia2.js b/tests/baselines/reference/conflictMarkerDiff3Trivia2.js index 8a852400c6c74..9c520251a4c31 100644 --- a/tests/baselines/reference/conflictMarkerDiff3Trivia2.js +++ b/tests/baselines/reference/conflictMarkerDiff3Trivia2.js @@ -20,9 +20,10 @@ class C { var C = /** @class */ (function () { function C() { } - C.prototype.foo = function () { + var C_prototype = C.prototype; + C_prototype.foo = function () { a(); }; - C.prototype.bar = function () { }; + C_prototype.bar = function () { }; return C; }()); diff --git a/tests/baselines/reference/conflictMarkerTrivia2.js b/tests/baselines/reference/conflictMarkerTrivia2.js index cf6c1afbd8e09..fe9aa183aaf18 100644 --- a/tests/baselines/reference/conflictMarkerTrivia2.js +++ b/tests/baselines/reference/conflictMarkerTrivia2.js @@ -17,9 +17,10 @@ class C { var C = /** @class */ (function () { function C() { } - C.prototype.foo = function () { + var C_prototype = C.prototype; + C_prototype.foo = function () { a(); }; - C.prototype.bar = function () { }; + C_prototype.bar = function () { }; return C; }()); diff --git a/tests/baselines/reference/constructorOverloads1.js b/tests/baselines/reference/constructorOverloads1.js index 17449197801c5..fa8e8b8e10d70 100644 --- a/tests/baselines/reference/constructorOverloads1.js +++ b/tests/baselines/reference/constructorOverloads1.js @@ -25,8 +25,9 @@ f1.bar2(); var Foo = /** @class */ (function () { function Foo(x) { } - Foo.prototype.bar1 = function () { }; - Foo.prototype.bar2 = function () { }; + var Foo_prototype = Foo.prototype; + Foo_prototype.bar1 = function () { }; + Foo_prototype.bar2 = function () { }; return Foo; }()); var f1 = new Foo("hey"); diff --git a/tests/baselines/reference/constructorWithIncompleteTypeAnnotation.js b/tests/baselines/reference/constructorWithIncompleteTypeAnnotation.js index fe12b04b76747..23eb1d3132de1 100644 --- a/tests/baselines/reference/constructorWithIncompleteTypeAnnotation.js +++ b/tests/baselines/reference/constructorWithIncompleteTypeAnnotation.js @@ -353,11 +353,12 @@ var TypeScriptAllInOne; var BasicFeatures = /** @class */ (function () { function BasicFeatures() { } + var BasicFeatures_prototype = BasicFeatures.prototype; /// /// Test various of variables. Including nullable,key world as variable,special format /// /// - BasicFeatures.prototype.VARIABLES = function () { + BasicFeatures_prototype.VARIABLES = function () { var local = Number.MAX_VALUE; var min = Number.MIN_VALUE; var inf = Number.NEGATIVE_INFINITY - @@ -406,7 +407,7 @@ var BasicFeatures = /** @class */ (function () { /// /// /// - BasicFeatures.prototype.STATEMENTS = function (i) { + BasicFeatures_prototype.STATEMENTS = function (i) { var retVal = 0; if (i == 1) retVal = 1; @@ -441,7 +442,7 @@ var BasicFeatures = /** @class */ (function () { /// Test types in ts language. Including class,struct,interface,delegate,anonymous type /// /// - BasicFeatures.prototype.TYPES = function () { + BasicFeatures_prototype.TYPES = function () { var retVal = 0; var c = new CLASS(); var xx = c; @@ -460,7 +461,7 @@ var BasicFeatures = /** @class */ (function () { ///// Test different operators ///// ///// - BasicFeatures.prototype.OPERATOR = function () { + BasicFeatures_prototype.OPERATOR = function () { var a = [1, 2, 3, 4, 5,]; /*[] bug*/ // YES [] var i = a[1]; /*[]*/ i = i + i - i * i / i % i & i | i ^ i; /*+ - * / % & | ^*/ @@ -499,15 +500,16 @@ var CLASS = /** @class */ (function () { function CLASS() { this.d = function () { yield 0; }; } - Object.defineProperty(CLASS.prototype, "Property", { + var CLASS_prototype = CLASS.prototype; + Object.defineProperty(CLASS_prototype, "Property", { get: function () { return 0; }, enumerable: false, configurable: true }); - CLASS.prototype.Member = function () { + CLASS_prototype.Member = function () { return 0; }; - CLASS.prototype.Foo = function () { + CLASS_prototype.Foo = function () { var myEvent = function () { return 1; }; if (myEvent() == 1) return true ? diff --git a/tests/baselines/reference/contextuallyTypedClassExpressionMethodDeclaration02.js b/tests/baselines/reference/contextuallyTypedClassExpressionMethodDeclaration02.js index 40f6c55824ee6..7199a8e8ba929 100644 --- a/tests/baselines/reference/contextuallyTypedClassExpressionMethodDeclaration02.js +++ b/tests/baselines/reference/contextuallyTypedClassExpressionMethodDeclaration02.js @@ -54,10 +54,11 @@ function getFoo1() { return /** @class */ (function () { function class_1() { } - class_1.prototype.method1 = function (arg) { + var proto = class_1.prototype; + proto.method1 = function (arg) { arg.numProp = 10; }; - class_1.prototype.method2 = function (arg) { + proto.method2 = function (arg) { arg.strProp = "hello"; }; return class_1; diff --git a/tests/baselines/reference/crashIntypeCheckObjectCreationExpression.js b/tests/baselines/reference/crashIntypeCheckObjectCreationExpression.js index 166a67a64345e..6466993e19593 100644 --- a/tests/baselines/reference/crashIntypeCheckObjectCreationExpression.js +++ b/tests/baselines/reference/crashIntypeCheckObjectCreationExpression.js @@ -16,10 +16,11 @@ define(["require", "exports"], function (require, exports) { var BuildWorkspaceService = /** @class */ (function () { function BuildWorkspaceService() { } - BuildWorkspaceService.prototype.injectRequestService = function (service) { + var BuildWorkspaceService_prototype = BuildWorkspaceService.prototype; + BuildWorkspaceService_prototype.injectRequestService = function (service) { this.injectBuildService(new X(service)); }; - BuildWorkspaceService.prototype.injectBuildService = function (service) { + BuildWorkspaceService_prototype.injectBuildService = function (service) { }; return BuildWorkspaceService; }()); diff --git a/tests/baselines/reference/declFileAccessors.js b/tests/baselines/reference/declFileAccessors.js index 69812fdbf1186..0d5e72c91197e 100644 --- a/tests/baselines/reference/declFileAccessors.js +++ b/tests/baselines/reference/declFileAccessors.js @@ -108,7 +108,8 @@ exports.c1 = void 0; var c1 = /** @class */ (function () { function c1() { } - Object.defineProperty(c1.prototype, "p3", { + var c1_prototype = c1.prototype; + Object.defineProperty(c1_prototype, "p3", { /** getter property*/ get: function () { return 10; @@ -119,7 +120,7 @@ var c1 = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(c1.prototype, "pp3", { + Object.defineProperty(c1_prototype, "pp3", { /** private getter property*/ get: function () { return 10; @@ -141,7 +142,7 @@ var c1 = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(c1.prototype, "nc_p3", { + Object.defineProperty(c1_prototype, "nc_p3", { get: function () { return 10; }, @@ -150,7 +151,7 @@ var c1 = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(c1.prototype, "nc_pp3", { + Object.defineProperty(c1_prototype, "nc_pp3", { get: function () { return 10; }, @@ -168,7 +169,7 @@ var c1 = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(c1.prototype, "onlyGetter", { + Object.defineProperty(c1_prototype, "onlyGetter", { // Only getter property get: function () { return 10; @@ -176,7 +177,7 @@ var c1 = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(c1.prototype, "onlySetter", { + Object.defineProperty(c1_prototype, "onlySetter", { // Only setter property set: function (value) { }, @@ -191,7 +192,8 @@ exports.c1 = c1; var c2 = /** @class */ (function () { function c2() { } - Object.defineProperty(c2.prototype, "p3", { + var c2_prototype = c2.prototype; + Object.defineProperty(c2_prototype, "p3", { /** getter property*/ get: function () { return 10; @@ -202,7 +204,7 @@ var c2 = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(c2.prototype, "pp3", { + Object.defineProperty(c2_prototype, "pp3", { /** private getter property*/ get: function () { return 10; @@ -224,7 +226,7 @@ var c2 = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(c2.prototype, "nc_p3", { + Object.defineProperty(c2_prototype, "nc_p3", { get: function () { return 10; }, @@ -233,7 +235,7 @@ var c2 = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(c2.prototype, "nc_pp3", { + Object.defineProperty(c2_prototype, "nc_pp3", { get: function () { return 10; }, @@ -251,7 +253,7 @@ var c2 = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(c2.prototype, "onlyGetter", { + Object.defineProperty(c2_prototype, "onlyGetter", { // Only getter property get: function () { return 10; @@ -259,7 +261,7 @@ var c2 = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(c2.prototype, "onlySetter", { + Object.defineProperty(c2_prototype, "onlySetter", { // Only setter property set: function (value) { }, diff --git a/tests/baselines/reference/declFileForClassWithMultipleBaseClasses.js b/tests/baselines/reference/declFileForClassWithMultipleBaseClasses.js index 1b2860bc8275b..90ea4a61e2c98 100644 --- a/tests/baselines/reference/declFileForClassWithMultipleBaseClasses.js +++ b/tests/baselines/reference/declFileForClassWithMultipleBaseClasses.js @@ -42,10 +42,11 @@ var B = /** @class */ (function () { var D = /** @class */ (function () { function D() { } - D.prototype.baz = function () { }; - D.prototype.bat = function () { }; - D.prototype.foo = function () { }; - D.prototype.bar = function () { }; + var D_prototype = D.prototype; + D_prototype.baz = function () { }; + D_prototype.bat = function () { }; + D_prototype.foo = function () { }; + D_prototype.bar = function () { }; return D; }()); diff --git a/tests/baselines/reference/declFileMethods.js b/tests/baselines/reference/declFileMethods.js index 63208115e8c1f..8ae2bf9555890 100644 --- a/tests/baselines/reference/declFileMethods.js +++ b/tests/baselines/reference/declFileMethods.js @@ -196,42 +196,43 @@ exports.c1 = void 0; var c1 = /** @class */ (function () { function c1() { } + var c1_prototype = c1.prototype; /** This comment should appear for foo*/ - c1.prototype.foo = function () { + c1_prototype.foo = function () { }; /** This is comment for function signature*/ - c1.prototype.fooWithParameters = function (/** this is comment about a*/ a, + c1_prototype.fooWithParameters = function (/** this is comment about a*/ a, /** this is comment for b*/ b) { var d = a; }; - c1.prototype.fooWithRestParameters = function (a) { + c1_prototype.fooWithRestParameters = function (a) { var rests = []; for (var _i = 1; _i < arguments.length; _i++) { rests[_i - 1] = arguments[_i]; } return a + rests.join(""); }; - c1.prototype.fooWithOverloads = function (a) { + c1_prototype.fooWithOverloads = function (a) { return a; }; /** This comment should appear for privateFoo*/ - c1.prototype.privateFoo = function () { + c1_prototype.privateFoo = function () { }; /** This is comment for function signature*/ - c1.prototype.privateFooWithParameters = function (/** this is comment about a*/ a, + c1_prototype.privateFooWithParameters = function (/** this is comment about a*/ a, /** this is comment for b*/ b) { var d = a; }; - c1.prototype.privateFooWithRestParameters = function (a) { + c1_prototype.privateFooWithRestParameters = function (a) { var rests = []; for (var _i = 1; _i < arguments.length; _i++) { rests[_i - 1] = arguments[_i]; } return a + rests.join(""); }; - c1.prototype.privateFooWithOverloads = function (a) { + c1_prototype.privateFooWithOverloads = function (a) { return a; }; /** This comment should appear for static foo*/ @@ -279,42 +280,43 @@ exports.c1 = c1; var c2 = /** @class */ (function () { function c2() { } + var c2_prototype = c2.prototype; /** This comment should appear for foo*/ - c2.prototype.foo = function () { + c2_prototype.foo = function () { }; /** This is comment for function signature*/ - c2.prototype.fooWithParameters = function (/** this is comment about a*/ a, + c2_prototype.fooWithParameters = function (/** this is comment about a*/ a, /** this is comment for b*/ b) { var d = a; }; - c2.prototype.fooWithRestParameters = function (a) { + c2_prototype.fooWithRestParameters = function (a) { var rests = []; for (var _i = 1; _i < arguments.length; _i++) { rests[_i - 1] = arguments[_i]; } return a + rests.join(""); }; - c2.prototype.fooWithOverloads = function (a) { + c2_prototype.fooWithOverloads = function (a) { return a; }; /** This comment should appear for privateFoo*/ - c2.prototype.privateFoo = function () { + c2_prototype.privateFoo = function () { }; /** This is comment for function signature*/ - c2.prototype.privateFooWithParameters = function (/** this is comment about a*/ a, + c2_prototype.privateFooWithParameters = function (/** this is comment about a*/ a, /** this is comment for b*/ b) { var d = a; }; - c2.prototype.privateFooWithRestParameters = function (a) { + c2_prototype.privateFooWithRestParameters = function (a) { var rests = []; for (var _i = 1; _i < arguments.length; _i++) { rests[_i - 1] = arguments[_i]; } return a + rests.join(""); }; - c2.prototype.privateFooWithOverloads = function (a) { + c2_prototype.privateFooWithOverloads = function (a) { return a; }; /** This comment should appear for static foo*/ diff --git a/tests/baselines/reference/declFilePrivateMethodOverloads.js b/tests/baselines/reference/declFilePrivateMethodOverloads.js index 0c8c49e1be278..3d61153127315 100644 --- a/tests/baselines/reference/declFilePrivateMethodOverloads.js +++ b/tests/baselines/reference/declFilePrivateMethodOverloads.js @@ -26,10 +26,11 @@ declare class c2 { var c1 = /** @class */ (function () { function c1() { } - c1.prototype._forEachBindingContext = function (context, fn) { + var c1_prototype = c1.prototype; + c1_prototype._forEachBindingContext = function (context, fn) { // Function here }; - c1.prototype.overloadWithArityDifference = function (context) { + c1_prototype.overloadWithArityDifference = function (context) { // Function here }; return c1; diff --git a/tests/baselines/reference/declFileTypeAnnotationVisibilityErrorAccessors.js b/tests/baselines/reference/declFileTypeAnnotationVisibilityErrorAccessors.js index 88f43150ed69e..7e5c757142058 100644 --- a/tests/baselines/reference/declFileTypeAnnotationVisibilityErrorAccessors.js +++ b/tests/baselines/reference/declFileTypeAnnotationVisibilityErrorAccessors.js @@ -125,7 +125,8 @@ var m; var c = /** @class */ (function () { function c() { } - Object.defineProperty(c.prototype, "foo1", { + var c_prototype = c.prototype; + Object.defineProperty(c_prototype, "foo1", { // getter with annotation get: function () { return; @@ -133,7 +134,7 @@ var m; enumerable: false, configurable: true }); - Object.defineProperty(c.prototype, "foo2", { + Object.defineProperty(c_prototype, "foo2", { // getter without annotation get: function () { return new private1(); @@ -141,14 +142,14 @@ var m; enumerable: false, configurable: true }); - Object.defineProperty(c.prototype, "foo3", { + Object.defineProperty(c_prototype, "foo3", { // setter with annotation set: function (param) { }, enumerable: false, configurable: true }); - Object.defineProperty(c.prototype, "foo4", { + Object.defineProperty(c_prototype, "foo4", { // Both - getter without annotation, setter with annotation get: function () { return new private1(); @@ -158,7 +159,7 @@ var m; enumerable: false, configurable: true }); - Object.defineProperty(c.prototype, "foo5", { + Object.defineProperty(c_prototype, "foo5", { // Both - with annotation get: function () { return; @@ -168,7 +169,7 @@ var m; enumerable: false, configurable: true }); - Object.defineProperty(c.prototype, "foo11", { + Object.defineProperty(c_prototype, "foo11", { // getter with annotation get: function () { return; @@ -176,7 +177,7 @@ var m; enumerable: false, configurable: true }); - Object.defineProperty(c.prototype, "foo12", { + Object.defineProperty(c_prototype, "foo12", { // getter without annotation get: function () { return new public1(); @@ -184,14 +185,14 @@ var m; enumerable: false, configurable: true }); - Object.defineProperty(c.prototype, "foo13", { + Object.defineProperty(c_prototype, "foo13", { // setter with annotation set: function (param) { }, enumerable: false, configurable: true }); - Object.defineProperty(c.prototype, "foo14", { + Object.defineProperty(c_prototype, "foo14", { // Both - getter without annotation, setter with annotation get: function () { return new public1(); @@ -201,7 +202,7 @@ var m; enumerable: false, configurable: true }); - Object.defineProperty(c.prototype, "foo15", { + Object.defineProperty(c_prototype, "foo15", { // Both - with annotation get: function () { return; @@ -211,7 +212,7 @@ var m; enumerable: false, configurable: true }); - Object.defineProperty(c.prototype, "foo111", { + Object.defineProperty(c_prototype, "foo111", { // getter with annotation get: function () { return; @@ -219,7 +220,7 @@ var m; enumerable: false, configurable: true }); - Object.defineProperty(c.prototype, "foo112", { + Object.defineProperty(c_prototype, "foo112", { // getter without annotation get: function () { return new m2.public2(); @@ -227,14 +228,14 @@ var m; enumerable: false, configurable: true }); - Object.defineProperty(c.prototype, "foo113", { + Object.defineProperty(c_prototype, "foo113", { // setter with annotation set: function (param) { }, enumerable: false, configurable: true }); - Object.defineProperty(c.prototype, "foo114", { + Object.defineProperty(c_prototype, "foo114", { // Both - getter without annotation, setter with annotation get: function () { return new m2.public2(); @@ -244,7 +245,7 @@ var m; enumerable: false, configurable: true }); - Object.defineProperty(c.prototype, "foo115", { + Object.defineProperty(c_prototype, "foo115", { // Both - with annotation get: function () { return; diff --git a/tests/baselines/reference/declInput-2.js b/tests/baselines/reference/declInput-2.js index 95800d8a60229..b861bb7dc3f16 100644 --- a/tests/baselines/reference/declInput-2.js +++ b/tests/baselines/reference/declInput-2.js @@ -38,12 +38,13 @@ var M; var D = /** @class */ (function () { function D() { } - D.prototype.m232 = function () { return null; }; - D.prototype.m242 = function () { return null; }; - D.prototype.m252 = function () { return null; }; // don't generate - D.prototype.m26 = function (i) { }; - D.prototype.m262 = function (i) { }; - D.prototype.m3 = function () { return new C(); }; + var D_prototype = D.prototype; + D_prototype.m232 = function () { return null; }; + D_prototype.m242 = function () { return null; }; + D_prototype.m252 = function () { return null; }; // don't generate + D_prototype.m26 = function (i) { }; + D_prototype.m262 = function (i) { }; + D_prototype.m3 = function () { return new C(); }; return D; }()); M.D = D; diff --git a/tests/baselines/reference/declInput.js b/tests/baselines/reference/declInput.js index 1b73e581dc007..53438ab8da733 100644 --- a/tests/baselines/reference/declInput.js +++ b/tests/baselines/reference/declInput.js @@ -14,9 +14,10 @@ class bar { var bar = /** @class */ (function () { function bar() { } - bar.prototype.f = function () { return ''; }; - bar.prototype.g = function () { return { a: null, b: undefined, c: void 4 }; }; - bar.prototype.h = function (x, y, z) { + var bar_prototype = bar.prototype; + bar_prototype.f = function () { return ''; }; + bar_prototype.g = function () { return { a: null, b: undefined, c: void 4 }; }; + bar_prototype.h = function (x, y, z) { if (x === void 0) { x = 4; } if (y === void 0) { y = null; } if (z === void 0) { z = ''; } diff --git a/tests/baselines/reference/declInput3.js b/tests/baselines/reference/declInput3.js index c8606d6a3ac99..d7725fd7988c5 100644 --- a/tests/baselines/reference/declInput3.js +++ b/tests/baselines/reference/declInput3.js @@ -14,9 +14,10 @@ class bar { var bar = /** @class */ (function () { function bar() { } - bar.prototype.f = function () { return ''; }; - bar.prototype.g = function () { return { a: null, b: undefined, c: void 4 }; }; - bar.prototype.h = function (x, y, z) { + var bar_prototype = bar.prototype; + bar_prototype.f = function () { return ''; }; + bar_prototype.g = function () { return { a: null, b: undefined, c: void 4 }; }; + bar_prototype.h = function (x, y, z) { if (x === void 0) { x = 4; } if (y === void 0) { y = null; } if (z === void 0) { z = ''; } diff --git a/tests/baselines/reference/declInput4.js b/tests/baselines/reference/declInput4.js index c27c39cb4a3d8..8c53470dff8cb 100644 --- a/tests/baselines/reference/declInput4.js +++ b/tests/baselines/reference/declInput4.js @@ -32,9 +32,10 @@ var M; var D = /** @class */ (function () { function D() { } - D.prototype.m232 = function () { return null; }; - D.prototype.m242 = function () { return null; }; - D.prototype.m26 = function (i) { }; + var D_prototype = D.prototype; + D_prototype.m232 = function () { return null; }; + D_prototype.m242 = function () { return null; }; + D_prototype.m26 = function (i) { }; return D; }()); M.D = D; diff --git a/tests/baselines/reference/declarationEmitClassMemberNameConflict.js b/tests/baselines/reference/declarationEmitClassMemberNameConflict.js index 69118c1271fef..4dbca48528309 100644 --- a/tests/baselines/reference/declarationEmitClassMemberNameConflict.js +++ b/tests/baselines/reference/declarationEmitClassMemberNameConflict.js @@ -42,8 +42,9 @@ exports.C4 = exports.C3 = exports.C2 = exports.C1 = void 0; var C1 = /** @class */ (function () { function C1() { } - C1.prototype.C1 = function () { }; // has to be the same as the class name - C1.prototype.bar = function () { + var C1_prototype = C1.prototype; + C1_prototype.C1 = function () { }; // has to be the same as the class name + C1_prototype.bar = function () { return function (t) { }; }; @@ -63,13 +64,14 @@ exports.C2 = C2; var C3 = /** @class */ (function () { function C3() { } - Object.defineProperty(C3.prototype, "C3", { + var C3_prototype = C3.prototype; + Object.defineProperty(C3_prototype, "C3", { get: function () { return 0; } // has to be the same as the class name , enumerable: false, configurable: true }); - C3.prototype.bar = function () { + C3_prototype.bar = function () { return function (t) { }; }; @@ -79,13 +81,14 @@ exports.C3 = C3; var C4 = /** @class */ (function () { function C4() { } - Object.defineProperty(C4.prototype, "C4", { + var C4_prototype = C4.prototype; + Object.defineProperty(C4_prototype, "C4", { set: function (v) { } // has to be the same as the class name , enumerable: false, configurable: true }); - C4.prototype.bar = function () { + C4_prototype.bar = function () { return function (t) { }; }; diff --git a/tests/baselines/reference/declarationEmitProtectedMembers.js b/tests/baselines/reference/declarationEmitProtectedMembers.js index c02ef5cde77cb..358d92bafcbb2 100644 --- a/tests/baselines/reference/declarationEmitProtectedMembers.js +++ b/tests/baselines/reference/declarationEmitProtectedMembers.js @@ -69,10 +69,11 @@ var __extends = (this && this.__extends) || (function () { var C1 = /** @class */ (function () { function C1() { } - C1.prototype.f = function () { + var C1_prototype = C1.prototype; + C1_prototype.f = function () { return this.x; }; - Object.defineProperty(C1.prototype, "accessor", { + Object.defineProperty(C1_prototype, "accessor", { get: function () { return 0; }, set: function (a) { }, enumerable: false, diff --git a/tests/baselines/reference/declarationFiles.js b/tests/baselines/reference/declarationFiles.js index 9b3c91274ee0a..15593c8dcf7bd 100644 --- a/tests/baselines/reference/declarationFiles.js +++ b/tests/baselines/reference/declarationFiles.js @@ -72,16 +72,17 @@ var C4 = /** @class */ (function () { this.x3 = [{ a: this }]; this.x4 = function () { return _this; }; } - C4.prototype.f1 = function () { + var C4_prototype = C4.prototype; + C4_prototype.f1 = function () { return { a: this }; }; - C4.prototype.f2 = function () { + C4_prototype.f2 = function () { return [this]; }; - C4.prototype.f3 = function () { + C4_prototype.f3 = function () { return [{ a: this }]; }; - C4.prototype.f4 = function () { + C4_prototype.f4 = function () { var _this = this; return function () { return _this; }; }; diff --git a/tests/baselines/reference/decoratorOnClassMethod11.js b/tests/baselines/reference/decoratorOnClassMethod11.js index 2600681c64746..af9688478cc7d 100644 --- a/tests/baselines/reference/decoratorOnClassMethod11.js +++ b/tests/baselines/reference/decoratorOnClassMethod11.js @@ -20,8 +20,9 @@ var M; var C = /** @class */ (function () { function C() { } - C.prototype.decorator = function (target, key) { }; - C.prototype.method = function () { }; + var C_prototype = C.prototype; + C_prototype.decorator = function (target, key) { }; + C_prototype.method = function () { }; __decorate([ this.decorator ], C.prototype, "method", null); diff --git a/tests/baselines/reference/deepKeysIndexing.js b/tests/baselines/reference/deepKeysIndexing.js index b19a9ce4b20a1..502216d53e76f 100644 --- a/tests/baselines/reference/deepKeysIndexing.js +++ b/tests/baselines/reference/deepKeysIndexing.js @@ -60,9 +60,10 @@ bar.workaround("a", "1", true); // ok - true is not allowed var Bar = /** @class */ (function () { function Bar() { } - Bar.prototype.broken = function (k1, k2, value) { }; - Bar.prototype.working = function (k1, k2, value) { }; - Bar.prototype.workaround = function (k1, k2, value) { }; + var Bar_prototype = Bar.prototype; + Bar_prototype.broken = function (k1, k2, value) { }; + Bar_prototype.working = function (k1, k2, value) { }; + Bar_prototype.workaround = function (k1, k2, value) { }; return Bar; }()); var bar = new Bar(); diff --git a/tests/baselines/reference/derivedClassIncludesInheritedMembers.js b/tests/baselines/reference/derivedClassIncludesInheritedMembers.js index f23ea34e9d3cf..a328acad5bb95 100644 --- a/tests/baselines/reference/derivedClassIncludesInheritedMembers.js +++ b/tests/baselines/reference/derivedClassIncludesInheritedMembers.js @@ -59,8 +59,9 @@ var __extends = (this && this.__extends) || (function () { var Base = /** @class */ (function () { function Base(x) { } - Base.prototype.b = function () { }; - Object.defineProperty(Base.prototype, "c", { + var Base_prototype = Base.prototype; + Base_prototype.b = function () { }; + Object.defineProperty(Base_prototype, "c", { get: function () { return ''; }, set: function (v) { }, enumerable: false, diff --git a/tests/baselines/reference/derivedClassOverridesProtectedMembers.js b/tests/baselines/reference/derivedClassOverridesProtectedMembers.js index 812f272f7ad45..596ff72c84876 100644 --- a/tests/baselines/reference/derivedClassOverridesProtectedMembers.js +++ b/tests/baselines/reference/derivedClassOverridesProtectedMembers.js @@ -56,8 +56,9 @@ var y; var Base = /** @class */ (function () { function Base(a) { } - Base.prototype.b = function (a) { }; - Object.defineProperty(Base.prototype, "c", { + var Base_prototype = Base.prototype; + Base_prototype.b = function (a) { }; + Object.defineProperty(Base_prototype, "c", { get: function () { return x; }, set: function (v) { }, enumerable: false, @@ -77,8 +78,9 @@ var Derived = /** @class */ (function (_super) { function Derived(a) { return _super.call(this, x) || this; } - Derived.prototype.b = function (a) { }; - Object.defineProperty(Derived.prototype, "c", { + var Derived_prototype = Derived.prototype; + Derived_prototype.b = function (a) { }; + Object.defineProperty(Derived_prototype, "c", { get: function () { return y; }, set: function (v) { }, enumerable: false, diff --git a/tests/baselines/reference/derivedClassOverridesProtectedMembers2.js b/tests/baselines/reference/derivedClassOverridesProtectedMembers2.js index dc18ddcc9ded3..fd35d8ceb0cea 100644 --- a/tests/baselines/reference/derivedClassOverridesProtectedMembers2.js +++ b/tests/baselines/reference/derivedClassOverridesProtectedMembers2.js @@ -84,8 +84,9 @@ var y; var Base = /** @class */ (function () { function Base(a) { } - Base.prototype.b = function (a) { }; - Object.defineProperty(Base.prototype, "c", { + var Base_prototype = Base.prototype; + Base_prototype.b = function (a) { }; + Object.defineProperty(Base_prototype, "c", { get: function () { return x; }, set: function (v) { }, enumerable: false, @@ -106,8 +107,9 @@ var Derived = /** @class */ (function (_super) { function Derived(a) { return _super.call(this, a) || this; } - Derived.prototype.b = function (a) { }; - Object.defineProperty(Derived.prototype, "c", { + var Derived_prototype = Derived.prototype; + Derived_prototype.b = function (a) { }; + Object.defineProperty(Derived_prototype, "c", { get: function () { return y; }, set: function (v) { }, enumerable: false, diff --git a/tests/baselines/reference/derivedClassOverridesProtectedMembers3.js b/tests/baselines/reference/derivedClassOverridesProtectedMembers3.js index 7c873b6830575..87116e60385ee 100644 --- a/tests/baselines/reference/derivedClassOverridesProtectedMembers3.js +++ b/tests/baselines/reference/derivedClassOverridesProtectedMembers3.js @@ -91,8 +91,9 @@ var y; var Base = /** @class */ (function () { function Base(a) { } - Base.prototype.b = function (a) { }; - Object.defineProperty(Base.prototype, "c", { + var Base_prototype = Base.prototype; + Base_prototype.b = function (a) { }; + Object.defineProperty(Base_prototype, "c", { get: function () { return x; }, set: function (v) { }, enumerable: false, diff --git a/tests/baselines/reference/derivedClassOverridesPublicMembers.js b/tests/baselines/reference/derivedClassOverridesPublicMembers.js index 5c1f5fd42e69d..dbf18b3b33dc0 100644 --- a/tests/baselines/reference/derivedClassOverridesPublicMembers.js +++ b/tests/baselines/reference/derivedClassOverridesPublicMembers.js @@ -83,8 +83,9 @@ var y; var Base = /** @class */ (function () { function Base(a) { } - Base.prototype.b = function (a) { }; - Object.defineProperty(Base.prototype, "c", { + var Base_prototype = Base.prototype; + Base_prototype.b = function (a) { }; + Object.defineProperty(Base_prototype, "c", { get: function () { return x; }, set: function (v) { }, enumerable: false, @@ -104,8 +105,9 @@ var Derived = /** @class */ (function (_super) { function Derived(a) { return _super.call(this, x) || this; } - Derived.prototype.b = function (a) { }; - Object.defineProperty(Derived.prototype, "c", { + var Derived_prototype = Derived.prototype; + Derived_prototype.b = function (a) { }; + Object.defineProperty(Derived_prototype, "c", { get: function () { return y; }, set: function (v) { }, enumerable: false, diff --git a/tests/baselines/reference/derivedClassWithAny.js b/tests/baselines/reference/derivedClassWithAny.js index 5027c4ab5695d..ac4492f9d886a 100644 --- a/tests/baselines/reference/derivedClassWithAny.js +++ b/tests/baselines/reference/derivedClassWithAny.js @@ -78,12 +78,13 @@ var __extends = (this && this.__extends) || (function () { var C = /** @class */ (function () { function C() { } - Object.defineProperty(C.prototype, "X", { + var C_prototype = C.prototype; + Object.defineProperty(C_prototype, "X", { get: function () { return 1; }, enumerable: false, configurable: true }); - C.prototype.foo = function () { + C_prototype.foo = function () { return 1; }; Object.defineProperty(C, "Y", { @@ -103,14 +104,15 @@ var D = /** @class */ (function (_super) { function D() { return _super !== null && _super.apply(this, arguments) || this; } - Object.defineProperty(D.prototype, "X", { + var D_prototype = D.prototype; + Object.defineProperty(D_prototype, "X", { get: function () { return null; }, enumerable: false, configurable: true }); - D.prototype.foo = function () { + D_prototype.foo = function () { return 1; }; Object.defineProperty(D, "Y", { @@ -131,12 +133,13 @@ var E = /** @class */ (function (_super) { function E() { return _super !== null && _super.apply(this, arguments) || this; } - Object.defineProperty(E.prototype, "X", { + var E_prototype = E.prototype; + Object.defineProperty(E_prototype, "X", { get: function () { return ''; }, enumerable: false, configurable: true }); - E.prototype.foo = function () { + E_prototype.foo = function () { return ''; }; Object.defineProperty(E, "Y", { diff --git a/tests/baselines/reference/derivedClassWithPrivateInstanceShadowingProtectedInstance.js b/tests/baselines/reference/derivedClassWithPrivateInstanceShadowingProtectedInstance.js index 624c80da0f742..5bc76fbcf5aea 100644 --- a/tests/baselines/reference/derivedClassWithPrivateInstanceShadowingProtectedInstance.js +++ b/tests/baselines/reference/derivedClassWithPrivateInstanceShadowingProtectedInstance.js @@ -40,10 +40,11 @@ var __extends = (this && this.__extends) || (function () { var Base = /** @class */ (function () { function Base() { } - Base.prototype.fn = function () { + var Base_prototype = Base.prototype; + Base_prototype.fn = function () { return ''; }; - Object.defineProperty(Base.prototype, "a", { + Object.defineProperty(Base_prototype, "a", { get: function () { return 1; }, set: function (v) { }, enumerable: false, @@ -57,10 +58,11 @@ var Derived = /** @class */ (function (_super) { function Derived() { return _super !== null && _super.apply(this, arguments) || this; } - Derived.prototype.fn = function () { + var Derived_prototype = Derived.prototype; + Derived_prototype.fn = function () { return ''; }; - Object.defineProperty(Derived.prototype, "a", { + Object.defineProperty(Derived_prototype, "a", { get: function () { return 1; }, set: function (v) { }, enumerable: false, diff --git a/tests/baselines/reference/derivedClassWithPrivateInstanceShadowingPublicInstance.js b/tests/baselines/reference/derivedClassWithPrivateInstanceShadowingPublicInstance.js index 14592605fd1ec..a02d693fdb5bd 100644 --- a/tests/baselines/reference/derivedClassWithPrivateInstanceShadowingPublicInstance.js +++ b/tests/baselines/reference/derivedClassWithPrivateInstanceShadowingPublicInstance.js @@ -51,10 +51,11 @@ var __extends = (this && this.__extends) || (function () { var Base = /** @class */ (function () { function Base() { } - Base.prototype.fn = function () { + var Base_prototype = Base.prototype; + Base_prototype.fn = function () { return ''; }; - Object.defineProperty(Base.prototype, "a", { + Object.defineProperty(Base_prototype, "a", { get: function () { return 1; }, set: function (v) { }, enumerable: false, @@ -68,10 +69,11 @@ var Derived = /** @class */ (function (_super) { function Derived() { return _super !== null && _super.apply(this, arguments) || this; } - Derived.prototype.fn = function () { + var Derived_prototype = Derived.prototype; + Derived_prototype.fn = function () { return ''; }; - Object.defineProperty(Derived.prototype, "a", { + Object.defineProperty(Derived_prototype, "a", { get: function () { return 1; }, set: function (v) { }, enumerable: false, diff --git a/tests/baselines/reference/derivedClasses.js b/tests/baselines/reference/derivedClasses.js index 354cf52de56fd..ba3e26ed29335 100644 --- a/tests/baselines/reference/derivedClasses.js +++ b/tests/baselines/reference/derivedClasses.js @@ -61,8 +61,9 @@ var Red = /** @class */ (function (_super) { var Color = /** @class */ (function () { function Color() { } - Color.prototype.shade = function () { return "some shade"; }; - Color.prototype.hue = function () { return "some hue"; }; + var Color_prototype = Color.prototype; + Color_prototype.shade = function () { return "some shade"; }; + Color_prototype.hue = function () { return "some hue"; }; return Color; }()); var Blue = /** @class */ (function (_super) { diff --git a/tests/baselines/reference/derivedGenericClassWithAny.js b/tests/baselines/reference/derivedGenericClassWithAny.js index 36dcebc3bfc39..2341397c88bb6 100644 --- a/tests/baselines/reference/derivedGenericClassWithAny.js +++ b/tests/baselines/reference/derivedGenericClassWithAny.js @@ -61,12 +61,13 @@ var __extends = (this && this.__extends) || (function () { var C = /** @class */ (function () { function C() { } - Object.defineProperty(C.prototype, "X", { + var C_prototype = C.prototype; + Object.defineProperty(C_prototype, "X", { get: function () { return null; }, enumerable: false, configurable: true }); - C.prototype.foo = function () { + C_prototype.foo = function () { return null; }; return C; @@ -76,14 +77,15 @@ var D = /** @class */ (function (_super) { function D() { return _super !== null && _super.apply(this, arguments) || this; } - Object.defineProperty(D.prototype, "X", { + var D_prototype = D.prototype; + Object.defineProperty(D_prototype, "X", { get: function () { return null; }, enumerable: false, configurable: true }); - D.prototype.foo = function () { + D_prototype.foo = function () { return 1; }; Object.defineProperty(D, "Y", { @@ -104,13 +106,14 @@ var E = /** @class */ (function (_super) { function E() { return _super !== null && _super.apply(this, arguments) || this; } - Object.defineProperty(E.prototype, "X", { + var E_prototype = E.prototype; + Object.defineProperty(E_prototype, "X", { get: function () { return ''; } // error , enumerable: false, configurable: true }); - E.prototype.foo = function () { + E_prototype.foo = function () { return ''; // error }; return E; diff --git a/tests/baselines/reference/derivedTypeAccessesHiddenBaseCallViaSuperPropertyAccess.js b/tests/baselines/reference/derivedTypeAccessesHiddenBaseCallViaSuperPropertyAccess.js index 31c5bd44ca4a4..a7746cdb123f9 100644 --- a/tests/baselines/reference/derivedTypeAccessesHiddenBaseCallViaSuperPropertyAccess.js +++ b/tests/baselines/reference/derivedTypeAccessesHiddenBaseCallViaSuperPropertyAccess.js @@ -46,10 +46,11 @@ var Derived = /** @class */ (function (_super) { function Derived() { return _super !== null && _super.apply(this, arguments) || this; } - Derived.prototype.foo = function (x) { + var Derived_prototype = Derived.prototype; + Derived_prototype.foo = function (x) { return null; }; - Derived.prototype.bar = function () { + Derived_prototype.bar = function () { var r = _super.prototype.foo.call(this, { a: 1 }); // { a: number } var r2 = _super.prototype.foo.call(this, { a: 1, b: 2 }); // { a: number } var r3 = this.foo({ a: 1, b: 2 }); // { a: number; b: number; } diff --git a/tests/baselines/reference/destructuringParameterDeclaration1ES5.js b/tests/baselines/reference/destructuringParameterDeclaration1ES5.js index 1995c7fc67f38..527264a4d6f93 100644 --- a/tests/baselines/reference/destructuringParameterDeclaration1ES5.js +++ b/tests/baselines/reference/destructuringParameterDeclaration1ES5.js @@ -181,9 +181,10 @@ function d0(x) { var C2 = /** @class */ (function () { function C2() { } - C2.prototype.d3 = function () { }; - C2.prototype.d4 = function () { }; - C2.prototype.e0 = function (_a) { + var C2_prototype = C2.prototype; + C2_prototype.d3 = function () { }; + C2_prototype.d4 = function () { }; + C2_prototype.e0 = function (_a) { var a = _a[0], b = _a[1], c = _a[2]; }; return C2; @@ -191,13 +192,14 @@ var C2 = /** @class */ (function () { var C3 = /** @class */ (function () { function C3() { } - C3.prototype.d3 = function (_a) { + var C3_prototype = C3.prototype; + C3_prototype.d3 = function (_a) { var a = _a[0], b = _a[1], c = _a[2]; }; - C3.prototype.d4 = function (_a) { + C3_prototype.d4 = function (_a) { var x = _a.x, y = _a.y, z = _a.z; }; - C3.prototype.e0 = function (_a) { + C3_prototype.e0 = function (_a) { var a = _a[0], b = _a[1], c = _a[2]; }; return C3; diff --git a/tests/baselines/reference/destructuringParameterDeclaration1ES5iterable.js b/tests/baselines/reference/destructuringParameterDeclaration1ES5iterable.js index 2c57ada4f68fd..3d3528ee54b95 100644 --- a/tests/baselines/reference/destructuringParameterDeclaration1ES5iterable.js +++ b/tests/baselines/reference/destructuringParameterDeclaration1ES5iterable.js @@ -197,9 +197,10 @@ function d0(x) { var C2 = /** @class */ (function () { function C2() { } - C2.prototype.d3 = function () { }; - C2.prototype.d4 = function () { }; - C2.prototype.e0 = function (_a) { + var C2_prototype = C2.prototype; + C2_prototype.d3 = function () { }; + C2_prototype.d4 = function () { }; + C2_prototype.e0 = function (_a) { var _b = __read(_a, 3), a = _b[0], b = _b[1], c = _b[2]; }; return C2; @@ -207,13 +208,14 @@ var C2 = /** @class */ (function () { var C3 = /** @class */ (function () { function C3() { } - C3.prototype.d3 = function (_a) { + var C3_prototype = C3.prototype; + C3_prototype.d3 = function (_a) { var _b = __read(_a, 3), a = _b[0], b = _b[1], c = _b[2]; }; - C3.prototype.d4 = function (_a) { + C3_prototype.d4 = function (_a) { var x = _a.x, y = _a.y, z = _a.z; }; - C3.prototype.e0 = function (_a) { + C3_prototype.e0 = function (_a) { var _b = __read(_a, 3), a = _b[0], b = _b[1], c = _b[2]; }; return C3; diff --git a/tests/baselines/reference/destructuringParameterDeclaration2.js b/tests/baselines/reference/destructuringParameterDeclaration2.js index a05a59badab29..3bcc3d35f9e58 100644 --- a/tests/baselines/reference/destructuringParameterDeclaration2.js +++ b/tests/baselines/reference/destructuringParameterDeclaration2.js @@ -130,13 +130,14 @@ function d2(_a) { var C4 = /** @class */ (function () { function C4() { } - C4.prototype.d3 = function (_a) { + var C4_prototype = C4.prototype; + C4_prototype.d3 = function (_a) { var a = _a[0], b = _a[1], c = _a[2]; }; // Error, binding pattern can't be optional in implementation signature - C4.prototype.d4 = function (_a) { + C4_prototype.d4 = function (_a) { var x = _a.x, y = _a.y, c = _a.c; }; - C4.prototype.e0 = function (_a) { + C4_prototype.e0 = function (_a) { var a = _a[0], b = _a[1], q = _a[2]; }; return C4; diff --git a/tests/baselines/reference/destructuringParameterProperties2.js b/tests/baselines/reference/destructuringParameterProperties2.js index 21959a6be87e2..a422c0a6a7c44 100644 --- a/tests/baselines/reference/destructuringParameterProperties2.js +++ b/tests/baselines/reference/destructuringParameterProperties2.js @@ -38,13 +38,14 @@ var C1 = /** @class */ (function () { this.a = a || k; } } - C1.prototype.getA = function () { + var C1_prototype = C1.prototype; + C1_prototype.getA = function () { return this.a; }; - C1.prototype.getB = function () { + C1_prototype.getB = function () { return this.b; }; - C1.prototype.getC = function () { + C1_prototype.getC = function () { return this.c; }; return C1; diff --git a/tests/baselines/reference/destructuringParameterProperties3.js b/tests/baselines/reference/destructuringParameterProperties3.js index 4c148256f39cd..2ca040190f027 100644 --- a/tests/baselines/reference/destructuringParameterProperties3.js +++ b/tests/baselines/reference/destructuringParameterProperties3.js @@ -41,13 +41,14 @@ var C1 = /** @class */ (function () { this.a = a || k; } } - C1.prototype.getA = function () { + var C1_prototype = C1.prototype; + C1_prototype.getA = function () { return this.a; }; - C1.prototype.getB = function () { + C1_prototype.getB = function () { return this.b; }; - C1.prototype.getC = function () { + C1_prototype.getC = function () { return this.c; }; return C1; diff --git a/tests/baselines/reference/downlevelLetConst16.js b/tests/baselines/reference/downlevelLetConst16.js index 338489b20c379..064872cebc69d 100644 --- a/tests/baselines/reference/downlevelLetConst16.js +++ b/tests/baselines/reference/downlevelLetConst16.js @@ -257,7 +257,8 @@ function foo2() { var A = /** @class */ (function () { function A() { } - A.prototype.m1 = function () { + var A_prototype = A.prototype; + A_prototype.m1 = function () { var x = 1; use(x); var y = [1][0]; @@ -265,7 +266,7 @@ var A = /** @class */ (function () { var z = { a: 1 }.a; use(z); }; - A.prototype.m2 = function () { + A_prototype.m2 = function () { { var x_2 = 1; use(x_2); @@ -281,7 +282,8 @@ var A = /** @class */ (function () { var B = /** @class */ (function () { function B() { } - B.prototype.m1 = function () { + var B_prototype = B.prototype; + B_prototype.m1 = function () { var x = 1; use(x); var y = [1][0]; @@ -289,7 +291,7 @@ var B = /** @class */ (function () { var z = { a: 1 }.a; use(z); }; - B.prototype.m2 = function () { + B_prototype.m2 = function () { { var x_3 = 1; use(x_3); diff --git a/tests/baselines/reference/duplicateClassElements.js b/tests/baselines/reference/duplicateClassElements.js index 95145562f4fb0..e5a0bd16bc125 100644 --- a/tests/baselines/reference/duplicateClassElements.js +++ b/tests/baselines/reference/duplicateClassElements.js @@ -48,11 +48,12 @@ class a { var a = /** @class */ (function () { function a() { } - a.prototype.b = function () { + var a_prototype = a.prototype; + a_prototype.b = function () { }; - a.prototype.b = function () { + a_prototype.b = function () { }; - Object.defineProperty(a.prototype, "x", { + Object.defineProperty(a_prototype, "x", { get: function () { return 10; }, @@ -61,7 +62,7 @@ var a = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(a.prototype, "y", { + Object.defineProperty(a_prototype, "y", { get: function () { return "Hello"; }, @@ -70,9 +71,9 @@ var a = /** @class */ (function () { enumerable: false, configurable: true }); - a.prototype.z = function () { + a_prototype.z = function () { }; - Object.defineProperty(a.prototype, "z", { + Object.defineProperty(a_prototype, "z", { get: function () { return "Hello"; }, @@ -81,7 +82,7 @@ var a = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(a.prototype, "x2", { + Object.defineProperty(a_prototype, "x2", { get: function () { return 10; }, @@ -90,7 +91,7 @@ var a = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(a.prototype, "z2", { + Object.defineProperty(a_prototype, "z2", { get: function () { return "Hello"; }, @@ -99,7 +100,7 @@ var a = /** @class */ (function () { enumerable: false, configurable: true }); - a.prototype.z2 = function () { + a_prototype.z2 = function () { }; return a; }()); diff --git a/tests/baselines/reference/duplicateLocalVariable1.js b/tests/baselines/reference/duplicateLocalVariable1.js index 5c23935f9431d..d6e707225c1f4 100644 --- a/tests/baselines/reference/duplicateLocalVariable1.js +++ b/tests/baselines/reference/duplicateLocalVariable1.js @@ -363,13 +363,14 @@ var TestRunner = /** @class */ (function () { function TestRunner() { this.tests = []; } + var TestRunner_prototype = TestRunner.prototype; TestRunner.arrayCompare = function (arg1, arg2) { return (arg1.every(function (val, index) { return val === arg2[index]; })); }; - TestRunner.prototype.addTest = function (test) { + TestRunner_prototype.addTest = function (test) { this.tests.push(test); }; - TestRunner.prototype.run = function () { + TestRunner_prototype.run = function () { var success = true; for (var test in this.tests) { var exception = false; diff --git a/tests/baselines/reference/emitDefaultParametersMethod.js b/tests/baselines/reference/emitDefaultParametersMethod.js index 0f935fae0aaeb..afbf69030ef51 100644 --- a/tests/baselines/reference/emitDefaultParametersMethod.js +++ b/tests/baselines/reference/emitDefaultParametersMethod.js @@ -22,20 +22,21 @@ var C = /** @class */ (function () { function C(t, z, x, y) { if (y === void 0) { y = "hello"; } } - C.prototype.foo = function (x, t) { + var C_prototype = C.prototype; + C_prototype.foo = function (x, t) { if (t === void 0) { t = false; } }; - C.prototype.foo1 = function (x, t) { + C_prototype.foo1 = function (x, t) { if (t === void 0) { t = false; } var rest = []; for (var _i = 2; _i < arguments.length; _i++) { rest[_i - 2] = arguments[_i]; } }; - C.prototype.bar = function (t) { + C_prototype.bar = function (t) { if (t === void 0) { t = false; } }; - C.prototype.boo = function (t) { + C_prototype.boo = function (t) { if (t === void 0) { t = false; } var rest = []; for (var _i = 1; _i < arguments.length; _i++) { diff --git a/tests/baselines/reference/emitRestParametersMethod.js b/tests/baselines/reference/emitRestParametersMethod.js index 370266a5f698d..5a8292b04ac7b 100644 --- a/tests/baselines/reference/emitRestParametersMethod.js +++ b/tests/baselines/reference/emitRestParametersMethod.js @@ -21,13 +21,14 @@ var C = /** @class */ (function () { rest[_i - 1] = arguments[_i]; } } - C.prototype.bar = function () { + var C_prototype = C.prototype; + C_prototype.bar = function () { var rest = []; for (var _i = 0; _i < arguments.length; _i++) { rest[_i] = arguments[_i]; } }; - C.prototype.foo = function (x) { + C_prototype.foo = function (x) { var rest = []; for (var _i = 1; _i < arguments.length; _i++) { rest[_i - 1] = arguments[_i]; @@ -42,13 +43,14 @@ var D = /** @class */ (function () { rest[_i] = arguments[_i]; } } - D.prototype.bar = function () { + var D_prototype = D.prototype; + D_prototype.bar = function () { var rest = []; for (var _i = 0; _i < arguments.length; _i++) { rest[_i] = arguments[_i]; } }; - D.prototype.foo = function (x) { + D_prototype.foo = function (x) { var rest = []; for (var _i = 1; _i < arguments.length; _i++) { rest[_i - 1] = arguments[_i]; diff --git a/tests/baselines/reference/emitThisInSuperMethodCall.js b/tests/baselines/reference/emitThisInSuperMethodCall.js index b3c7d5446aff5..9809284faeed8 100644 --- a/tests/baselines/reference/emitThisInSuperMethodCall.js +++ b/tests/baselines/reference/emitThisInSuperMethodCall.js @@ -55,14 +55,15 @@ var RegisteredUser = /** @class */ (function (_super) { function RegisteredUser() { return _super !== null && _super.apply(this, arguments) || this; } - RegisteredUser.prototype.f = function () { + var RegisteredUser_prototype = RegisteredUser.prototype; + RegisteredUser_prototype.f = function () { (function () { function inner() { _super.sayHello.call(this); } }); }; - RegisteredUser.prototype.g = function () { + RegisteredUser_prototype.g = function () { function inner() { var _this = this; (function () { @@ -70,7 +71,7 @@ var RegisteredUser = /** @class */ (function (_super) { }); } }; - RegisteredUser.prototype.h = function () { + RegisteredUser_prototype.h = function () { function inner() { _super.sayHello.call(this); } diff --git a/tests/baselines/reference/emitter.asyncGenerators.classMethods.es5.js b/tests/baselines/reference/emitter.asyncGenerators.classMethods.es5.js index 0cafc5a2d88be..9ac70e6263cc5 100644 --- a/tests/baselines/reference/emitter.asyncGenerators.classMethods.es5.js +++ b/tests/baselines/reference/emitter.asyncGenerators.classMethods.es5.js @@ -558,9 +558,10 @@ var __asyncGenerator = (this && this.__asyncGenerator) || function (thisArg, _ar var C8 = /** @class */ (function () { function C8() { } - C8.prototype.g = function () { + var C8_prototype = C8.prototype; + C8_prototype.g = function () { }; - C8.prototype.f = function () { + C8_prototype.f = function () { return __asyncGenerator(this, arguments, function f_1() { return __generator(this, function (_a) { this.g(); diff --git a/tests/baselines/reference/errorSuperCalls.js b/tests/baselines/reference/errorSuperCalls.js index f479d4f5bbedd..51c311ae4cf7d 100644 --- a/tests/baselines/reference/errorSuperCalls.js +++ b/tests/baselines/reference/errorSuperCalls.js @@ -97,11 +97,12 @@ var NoBase = /** @class */ (function () { //super call in class member initializer with no base type this.p = _this = _super.call(this) || this; } + var NoBase_prototype = NoBase.prototype; //super call in class member function with no base type - NoBase.prototype.fn = function () { + NoBase_prototype.fn = function () { _this = _super.call(this) || this; }; - Object.defineProperty(NoBase.prototype, "foo", { + Object.defineProperty(NoBase_prototype, "foo", { //super call in class accessor (get and set) with no base type get: function () { _this = _super.call(this) || this; @@ -161,11 +162,12 @@ var OtherDerived = /** @class */ (function (_super) { _this.t = _this = _super.call(this) || this; return _this; } - OtherDerived.prototype.fn = function () { + var OtherDerived_prototype = OtherDerived.prototype; + OtherDerived_prototype.fn = function () { //super call in class member function of derived type _this = _super.call(this) || this; }; - Object.defineProperty(OtherDerived.prototype, "foo", { + Object.defineProperty(OtherDerived_prototype, "foo", { //super call in class accessor (get and set) of derived type get: function () { _this = _super.call(this) || this; diff --git a/tests/baselines/reference/errorSuperPropertyAccess.js b/tests/baselines/reference/errorSuperPropertyAccess.js index 25385a6521751..f92b6eaf76b1e 100644 --- a/tests/baselines/reference/errorSuperPropertyAccess.js +++ b/tests/baselines/reference/errorSuperPropertyAccess.js @@ -181,8 +181,9 @@ var SomeBase = /** @class */ (function () { this.privateMember = 0; this.publicMember = 0; } - SomeBase.prototype.privateFunc = function () { }; - SomeBase.prototype.publicFunc = function () { }; + var SomeBase_prototype = SomeBase.prototype; + SomeBase_prototype.privateFunc = function () { }; + SomeBase_prototype.publicFunc = function () { }; SomeBase.privateStaticFunc = function () { }; SomeBase.publicStaticFunc = function () { }; SomeBase.privateStaticMember = 0; @@ -200,10 +201,11 @@ var SomeDerived1 = /** @class */ (function (_super) { _super.prototype.publicMember = 1; return _this; } - SomeDerived1.prototype.fn = function () { + var SomeDerived1_prototype = SomeDerived1.prototype; + SomeDerived1_prototype.fn = function () { var x = _super.prototype.publicMember; }; - Object.defineProperty(SomeDerived1.prototype, "a", { + Object.defineProperty(SomeDerived1_prototype, "a", { get: function () { var x = _super.prototype.publicMember; return undefined; @@ -214,7 +216,7 @@ var SomeDerived1 = /** @class */ (function (_super) { enumerable: false, configurable: true }); - SomeDerived1.prototype.fn2 = function () { + SomeDerived1_prototype.fn2 = function () { function inner() { _super.publicFunc.call(this); } @@ -234,10 +236,11 @@ var SomeDerived2 = /** @class */ (function (_super) { _super.prototype.privateMember = 1; return _this; } - SomeDerived2.prototype.fn = function () { + var SomeDerived2_prototype = SomeDerived2.prototype; + SomeDerived2_prototype.fn = function () { var x = _super.prototype.privateMember; }; - Object.defineProperty(SomeDerived2.prototype, "a", { + Object.defineProperty(SomeDerived2_prototype, "a", { get: function () { var x = _super.prototype.privateMember; return undefined; diff --git a/tests/baselines/reference/errorsInGenericTypeReference.js b/tests/baselines/reference/errorsInGenericTypeReference.js index d753b7da3721a..b7b01a2a7ec87 100644 --- a/tests/baselines/reference/errorsInGenericTypeReference.js +++ b/tests/baselines/reference/errorsInGenericTypeReference.js @@ -112,9 +112,10 @@ var tc2 = new testClass2(); // error: could not find symbol V var testClass3 = /** @class */ (function () { function testClass3() { } - testClass3.prototype.testMethod1 = function () { return null; }; // error: could not find symbol V + var testClass3_prototype = testClass3.prototype; + testClass3_prototype.testMethod1 = function () { return null; }; // error: could not find symbol V testClass3.testMethod2 = function () { return null; }; // error: could not find symbol V - Object.defineProperty(testClass3.prototype, "a", { + Object.defineProperty(testClass3_prototype, "a", { set: function (value) { } // error: could not find symbol V , enumerable: false, diff --git a/tests/baselines/reference/es6ClassTest.js b/tests/baselines/reference/es6ClassTest.js index 3892765004770..f54437db8bd40 100644 --- a/tests/baselines/reference/es6ClassTest.js +++ b/tests/baselines/reference/es6ClassTest.js @@ -122,8 +122,9 @@ var Foo = /** @class */ (function (_super) { _this.gar = 5; return _this; } - Foo.prototype.bar = function () { return 0; }; - Foo.prototype.boo = function (x) { return x; }; + var Foo_prototype = Foo.prototype; + Foo_prototype.bar = function () { return 0; }; + Foo_prototype.boo = function (x) { return x; }; Foo.statVal = 0; return Foo; }(Bar)); diff --git a/tests/baselines/reference/es6ClassTest2.js b/tests/baselines/reference/es6ClassTest2.js index 7ec8cd45f52fa..51d6f0a8f7cf3 100644 --- a/tests/baselines/reference/es6ClassTest2.js +++ b/tests/baselines/reference/es6ClassTest2.js @@ -195,10 +195,11 @@ var GetSetMonster = /** @class */ (function () { this.name = name; this._health = _health; } - GetSetMonster.prototype.attack = function (target) { + var GetSetMonster_prototype = GetSetMonster.prototype; + GetSetMonster_prototype.attack = function (target) { // WScript.Echo("Attacks " + target); }; - Object.defineProperty(GetSetMonster.prototype, "isAlive", { + Object.defineProperty(GetSetMonster_prototype, "isAlive", { // The contextual keyword "get" followed by an identifier and // a curly body defines a getter in the same way that "get" // defines one in an object literal. @@ -208,7 +209,7 @@ var GetSetMonster = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(GetSetMonster.prototype, "health", { + Object.defineProperty(GetSetMonster_prototype, "health", { // Likewise, "set" can be used to define setters. set: function (value) { if (value < 0) { @@ -268,9 +269,10 @@ var PrototypeMonster = /** @class */ (function () { var SuperParent = /** @class */ (function () { function SuperParent(a) { } - SuperParent.prototype.b = function (b) { + var SuperParent_prototype = SuperParent.prototype; + SuperParent_prototype.b = function (b) { }; - SuperParent.prototype.c = function () { + SuperParent_prototype.c = function () { }; return SuperParent; }()); @@ -279,10 +281,11 @@ var SuperChild = /** @class */ (function (_super) { function SuperChild() { return _super.call(this, 1) || this; } - SuperChild.prototype.b = function () { + var SuperChild_prototype = SuperChild.prototype; + SuperChild_prototype.b = function () { _super.prototype.b.call(this, 'str'); }; - SuperChild.prototype.c = function () { + SuperChild_prototype.c = function () { _super.prototype.c.call(this); }; return SuperChild; @@ -309,8 +312,9 @@ var Visibility = /** @class */ (function () { this.x = 1; this.y = 2; } - Visibility.prototype.foo = function () { }; - Visibility.prototype.bar = function () { }; + var Visibility_prototype = Visibility.prototype; + Visibility_prototype.foo = function () { }; + Visibility_prototype.bar = function () { }; return Visibility; }()); var BaseClassWithConstructor = /** @class */ (function () { diff --git a/tests/baselines/reference/es6ClassTest3.js b/tests/baselines/reference/es6ClassTest3.js index 833aca18fdc8e..868b2dc64c934 100644 --- a/tests/baselines/reference/es6ClassTest3.js +++ b/tests/baselines/reference/es6ClassTest3.js @@ -22,9 +22,10 @@ var M; this.x = 1; this.y = 2; } - Visibility.prototype.foo = function () { }; + var Visibility_prototype = Visibility.prototype; + Visibility_prototype.foo = function () { }; ; - Visibility.prototype.bar = function () { }; + Visibility_prototype.bar = function () { }; ; return Visibility; }()); diff --git a/tests/baselines/reference/fatArrowSelf.js b/tests/baselines/reference/fatArrowSelf.js index 4b12f5690f50e..0684e99d50bd1 100644 --- a/tests/baselines/reference/fatArrowSelf.js +++ b/tests/baselines/reference/fatArrowSelf.js @@ -42,13 +42,14 @@ var Consumer; function EventEmitterConsummer(emitter) { this.emitter = emitter; } - EventEmitterConsummer.prototype.register = function () { + var EventEmitterConsummer_prototype = EventEmitterConsummer.prototype; + EventEmitterConsummer_prototype.register = function () { var _this = this; this.emitter.addListener('change', function (e) { _this.changed(); }); }; - EventEmitterConsummer.prototype.changed = function () { + EventEmitterConsummer_prototype.changed = function () { }; return EventEmitterConsummer; }()); diff --git a/tests/baselines/reference/functionOverloadErrors.js b/tests/baselines/reference/functionOverloadErrors.js index 1a15009de37fc..a9c1604a6e075 100644 --- a/tests/baselines/reference/functionOverloadErrors.js +++ b/tests/baselines/reference/functionOverloadErrors.js @@ -138,8 +138,9 @@ function fn12() { } var cls = /** @class */ (function () { function cls() { } - cls.prototype.f = function () { }; - cls.prototype.g = function () { }; + var cls_prototype = cls.prototype; + cls_prototype.f = function () { }; + cls_prototype.g = function () { }; return cls; }()); //Function overloads with differing export diff --git a/tests/baselines/reference/functionOverloads7.js b/tests/baselines/reference/functionOverloads7.js index 263b93b8926d4..624686301b28b 100644 --- a/tests/baselines/reference/functionOverloads7.js +++ b/tests/baselines/reference/functionOverloads7.js @@ -14,8 +14,9 @@ class foo { var foo = /** @class */ (function () { function foo() { } - foo.prototype.bar = function (foo) { return "foo"; }; - foo.prototype.n = function () { + var foo_prototype = foo.prototype; + foo_prototype.bar = function (foo) { return "foo"; }; + foo_prototype.n = function () { var foo = this.bar(); foo = this.bar("test"); }; diff --git a/tests/baselines/reference/functionsMissingReturnStatementsAndExpressions.js b/tests/baselines/reference/functionsMissingReturnStatementsAndExpressions.js index a0cfa3f9fcea3..02c8363904b18 100644 --- a/tests/baselines/reference/functionsMissingReturnStatementsAndExpressions.js +++ b/tests/baselines/reference/functionsMissingReturnStatementsAndExpressions.js @@ -212,14 +212,15 @@ function f21() { var C = /** @class */ (function () { function C() { } - Object.defineProperty(C.prototype, "m1", { + var C_prototype = C.prototype; + Object.defineProperty(C_prototype, "m1", { get: function () { // Errors; get accessors must return a value. }, enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, "m2", { + Object.defineProperty(C_prototype, "m2", { get: function () { // Permissible; returns undefined. return; @@ -227,14 +228,14 @@ var C = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, "m3", { + Object.defineProperty(C_prototype, "m3", { get: function () { return "Okay, because this is a return expression."; }, enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, "m4", { + Object.defineProperty(C_prototype, "m4", { get: function () { // Fine since this consists of a single throw statement. throw null; @@ -242,7 +243,7 @@ var C = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, "m5", { + Object.defineProperty(C_prototype, "m5", { get: function () { // Not fine, since we can *only* consist of a single throw statement // if no return statements are present but we are a get accessor. diff --git a/tests/baselines/reference/fuzzy.js b/tests/baselines/reference/fuzzy.js index e5dd9a76fe7ed..dedec53297cc9 100644 --- a/tests/baselines/reference/fuzzy.js +++ b/tests/baselines/reference/fuzzy.js @@ -37,13 +37,14 @@ var M; function C(x) { this.x = x; } - C.prototype.works = function () { + var C_prototype = C.prototype; + C_prototype.works = function () { return ({ anything: 1 }); }; - C.prototype.doesntWork = function () { + C_prototype.doesntWork = function () { return { anything: 1, oneI: this }; }; - C.prototype.worksToo = function () { + C_prototype.worksToo = function () { return ({ oneI: this }); }; return C; diff --git a/tests/baselines/reference/genericCallTypeArgumentInference.js b/tests/baselines/reference/genericCallTypeArgumentInference.js index 77f5c05c46380..62198ae3ca7be 100644 --- a/tests/baselines/reference/genericCallTypeArgumentInference.js +++ b/tests/baselines/reference/genericCallTypeArgumentInference.js @@ -111,30 +111,31 @@ var C = /** @class */ (function () { this.t = t; this.u = u; } - C.prototype.foo = function (t, u) { + var C_prototype = C.prototype; + C_prototype.foo = function (t, u) { return t; }; - C.prototype.foo2 = function (t, u) { + C_prototype.foo2 = function (t, u) { return u; }; - C.prototype.foo3 = function (t, u) { + C_prototype.foo3 = function (t, u) { return t; }; - C.prototype.foo4 = function (t, u) { + C_prototype.foo4 = function (t, u) { return t; }; - C.prototype.foo5 = function (t, u) { + C_prototype.foo5 = function (t, u) { return t; }; - C.prototype.foo6 = function () { + C_prototype.foo6 = function () { var x; return x; }; - C.prototype.foo7 = function (u) { + C_prototype.foo7 = function (u) { var x; return x; }; - C.prototype.foo8 = function () { + C_prototype.foo8 = function () { var x; return x; }; diff --git a/tests/baselines/reference/genericCallWithConstraintsTypeArgumentInference.js b/tests/baselines/reference/genericCallWithConstraintsTypeArgumentInference.js index 0cf02385c8f6b..e70924bdca298 100644 --- a/tests/baselines/reference/genericCallWithConstraintsTypeArgumentInference.js +++ b/tests/baselines/reference/genericCallWithConstraintsTypeArgumentInference.js @@ -169,30 +169,31 @@ var C = /** @class */ (function () { this.t = t; this.u = u; } - C.prototype.foo = function (t, u) { + var C_prototype = C.prototype; + C_prototype.foo = function (t, u) { return t; }; - C.prototype.foo2 = function (t, u) { + C_prototype.foo2 = function (t, u) { return u; }; - C.prototype.foo3 = function (t, u) { + C_prototype.foo3 = function (t, u) { return t; }; - C.prototype.foo4 = function (t, u) { + C_prototype.foo4 = function (t, u) { return t; }; - C.prototype.foo5 = function (t, u) { + C_prototype.foo5 = function (t, u) { return t; }; - C.prototype.foo6 = function () { + C_prototype.foo6 = function () { var x; return x; }; - C.prototype.foo7 = function (u) { + C_prototype.foo7 = function (u) { var x; return x; }; - C.prototype.foo8 = function () { + C_prototype.foo8 = function () { var x; return x; }; diff --git a/tests/baselines/reference/genericClassPropertyInheritanceSpecialization.js b/tests/baselines/reference/genericClassPropertyInheritanceSpecialization.js index bd9c99e5b117a..46a530a2e2d4b 100644 --- a/tests/baselines/reference/genericClassPropertyInheritanceSpecialization.js +++ b/tests/baselines/reference/genericClassPropertyInheritanceSpecialization.js @@ -100,8 +100,9 @@ var Portal; var Validator = /** @class */ (function () { function Validator(message) { } - Validator.prototype.destroy = function () { }; - Validator.prototype._validate = function (value) { return 0; }; + var Validator_prototype = Validator.prototype; + Validator_prototype.destroy = function () { }; + Validator_prototype._validate = function (value) { return 0; }; return Validator; }()); Validators.Validator = Validator; diff --git a/tests/baselines/reference/genericClassWithStaticFactory.js b/tests/baselines/reference/genericClassWithStaticFactory.js index a8ca7b0247437..ef0d2977ef9fb 100644 --- a/tests/baselines/reference/genericClassWithStaticFactory.js +++ b/tests/baselines/reference/genericClassWithStaticFactory.js @@ -150,7 +150,8 @@ var Editor; this.data = data; this.listFactory = new ListFactory(); } - List.prototype.add = function (data) { + var List_prototype = List.prototype; + List_prototype.add = function (data) { var entry = this.listFactory.MakeEntry(data); this.prev.next = entry; entry.next = this; @@ -158,7 +159,7 @@ var Editor; this.prev = entry; return entry; }; - List.prototype.count = function () { + List_prototype.count = function () { var entry; var i; entry = this.next; @@ -167,10 +168,10 @@ var Editor; } return (i); }; - List.prototype.isEmpty = function () { + List_prototype.isEmpty = function () { return (this.next == this); }; - List.prototype.first = function () { + List_prototype.first = function () { if (this.isEmpty()) { return this.next.data; } @@ -178,14 +179,14 @@ var Editor; return null; } }; - List.prototype.pushEntry = function (entry) { + List_prototype.pushEntry = function (entry) { entry.isHead = false; entry.next = this.next; entry.prev = this; this.next = entry; entry.next.prev = entry; // entry.next.prev does not show intellisense, but entry.prev.prev does }; - List.prototype.push = function (data) { + List_prototype.push = function (data) { var entry = this.listFactory.MakeEntry(data); entry.data = data; entry.isHead = false; @@ -194,7 +195,7 @@ var Editor; this.next = entry; entry.next.prev = entry; // entry.next.prev does not show intellisense, but entry.prev.prev does }; - List.prototype.popEntry = function (head) { + List_prototype.popEntry = function (head) { if (this.next.isHead) { return null; } @@ -202,7 +203,7 @@ var Editor; return this.listFactory.RemoveEntry(this.next); } }; - List.prototype.insertEntry = function (entry) { + List_prototype.insertEntry = function (entry) { entry.isHead = false; this.prev.next = entry; entry.next = this; @@ -210,7 +211,7 @@ var Editor; this.prev = entry; return entry; }; - List.prototype.insertAfter = function (data) { + List_prototype.insertAfter = function (data) { var entry = this.listFactory.MakeEntry(data); entry.next = this.next; entry.prev = this; @@ -218,14 +219,14 @@ var Editor; entry.next.prev = entry; // entry.next.prev does not show intellisense, but entry.prev.prev does return entry; }; - List.prototype.insertEntryBefore = function (entry) { + List_prototype.insertEntryBefore = function (entry) { this.prev.next = entry; entry.next = this; entry.prev = this.prev; this.prev = entry; return entry; }; - List.prototype.insertBefore = function (data) { + List_prototype.insertBefore = function (data) { var entry = this.listFactory.MakeEntry(data); return this.insertEntryBefore(entry); }; @@ -235,19 +236,20 @@ var Editor; var ListFactory = /** @class */ (function () { function ListFactory() { } - ListFactory.prototype.MakeHead = function () { + var ListFactory_prototype = ListFactory.prototype; + ListFactory_prototype.MakeHead = function () { var entry = new List(true, null); entry.prev = entry; entry.next = entry; return entry; }; - ListFactory.prototype.MakeEntry = function (data) { + ListFactory_prototype.MakeEntry = function (data) { var entry = new List(false, data); entry.prev = entry; entry.next = entry; return entry; }; - ListFactory.prototype.RemoveEntry = function (entry) { + ListFactory_prototype.RemoveEntry = function (entry) { if (entry == null) { return null; } diff --git a/tests/baselines/reference/genericClasses4.js b/tests/baselines/reference/genericClasses4.js index f36c20d49e41f..6b3da9f52f693 100644 --- a/tests/baselines/reference/genericClasses4.js +++ b/tests/baselines/reference/genericClasses4.js @@ -24,13 +24,14 @@ var Vec2_T = /** @class */ (function () { this.x = x; this.y = y; } - Vec2_T.prototype.fmap = function (f) { + var Vec2_T_prototype = Vec2_T.prototype; + Vec2_T_prototype.fmap = function (f) { var x = f(this.x); var y = f(this.y); var retval = new Vec2_T(x, y); return retval; }; - Vec2_T.prototype.apply = function (f) { + Vec2_T_prototype.apply = function (f) { var x = f.x(this.x); var y = f.y(this.y); var retval = new Vec2_T(x, y); diff --git a/tests/baselines/reference/genericInterfaceImplementation.js b/tests/baselines/reference/genericInterfaceImplementation.js index 7e6cb6c2d0dcc..7e47a592b87ec 100644 --- a/tests/baselines/reference/genericInterfaceImplementation.js +++ b/tests/baselines/reference/genericInterfaceImplementation.js @@ -20,10 +20,11 @@ class None implements IOption{ var None = /** @class */ (function () { function None() { } - None.prototype.get = function () { + var None_prototype = None.prototype; + None_prototype.get = function () { throw null; }; - None.prototype.flatten = function () { + None_prototype.flatten = function () { return new None(); }; return None; diff --git a/tests/baselines/reference/genericMemberFunction.js b/tests/baselines/reference/genericMemberFunction.js index 5471c165270bd..0cea3da6c5035 100644 --- a/tests/baselines/reference/genericMemberFunction.js +++ b/tests/baselines/reference/genericMemberFunction.js @@ -39,10 +39,11 @@ define(["require", "exports"], function (require, exports) { var FileWithErrors = /** @class */ (function () { function FileWithErrors() { } - FileWithErrors.prototype.errors = function () { + var FileWithErrors_prototype = FileWithErrors.prototype; + FileWithErrors_prototype.errors = function () { return undefined; }; - FileWithErrors.prototype.parent = function () { + FileWithErrors_prototype.parent = function () { return undefined; }; return FileWithErrors; diff --git a/tests/baselines/reference/genericRecursiveImplicitConstructorErrors2.js b/tests/baselines/reference/genericRecursiveImplicitConstructorErrors2.js index fdda7a9451e2b..0f2fa33f9b2d9 100644 --- a/tests/baselines/reference/genericRecursiveImplicitConstructorErrors2.js +++ b/tests/baselines/reference/genericRecursiveImplicitConstructorErrors2.js @@ -55,10 +55,11 @@ var TypeScript2; var PullSymbol = /** @class */ (function () { function PullSymbol(name, declKind) { } + var PullSymbol_prototype = PullSymbol.prototype; // link methods - PullSymbol.prototype.addOutgoingLink = function (linkTo, kind) { + PullSymbol_prototype.addOutgoingLink = function (linkTo, kind) { }; - PullSymbol.prototype.getType = function () { + PullSymbol_prototype.getType = function () { return undefined; }; return PullSymbol; diff --git a/tests/baselines/reference/genericRecursiveImplicitConstructorErrors3.js b/tests/baselines/reference/genericRecursiveImplicitConstructorErrors3.js index ca7390b85ded5..5b4e223291791 100644 --- a/tests/baselines/reference/genericRecursiveImplicitConstructorErrors3.js +++ b/tests/baselines/reference/genericRecursiveImplicitConstructorErrors3.js @@ -72,11 +72,12 @@ var TypeScript; _this._elementType = null; return _this; } - PullTypeSymbol.prototype.toString = function (scopeSymbol, useConstraintInName) { + var PullTypeSymbol_prototype = PullTypeSymbol.prototype; + PullTypeSymbol_prototype.toString = function (scopeSymbol, useConstraintInName) { var s = this.getScopedNameEx(scopeSymbol, useConstraintInName).toString(); return s; }; - PullTypeSymbol.prototype.getScopedNameEx = function (scopeSymbol, useConstraintInName, getPrettyTypeName, getTypeParamMarkerInfo) { + PullTypeSymbol_prototype.getScopedNameEx = function (scopeSymbol, useConstraintInName, getPrettyTypeName, getTypeParamMarkerInfo) { if (this.isArray()) { var elementMemberName = this._elementType ? (this._elementType.isArray() || this._elementType.isNamedTypeSymbol() ? diff --git a/tests/baselines/reference/genericReversingTypeParameters.js b/tests/baselines/reference/genericReversingTypeParameters.js index 42bd7b69d17b9..bdc030993e8a1 100644 --- a/tests/baselines/reference/genericReversingTypeParameters.js +++ b/tests/baselines/reference/genericReversingTypeParameters.js @@ -14,8 +14,9 @@ var r2b = i.get(1); var BiMap = /** @class */ (function () { function BiMap() { } - BiMap.prototype.get = function (key) { return null; }; - BiMap.prototype.inverse = function () { return null; }; + var BiMap_prototype = BiMap.prototype; + BiMap_prototype.get = function (key) { return null; }; + BiMap_prototype.inverse = function () { return null; }; return BiMap; }()); var b = new BiMap(); diff --git a/tests/baselines/reference/genericReversingTypeParameters2.js b/tests/baselines/reference/genericReversingTypeParameters2.js index 5890a75ada8ce..9e9b52e1683d4 100644 --- a/tests/baselines/reference/genericReversingTypeParameters2.js +++ b/tests/baselines/reference/genericReversingTypeParameters2.js @@ -13,8 +13,9 @@ var r2b = i.get(1); var BiMap = /** @class */ (function () { function BiMap() { } - BiMap.prototype.get = function (key) { return null; }; - BiMap.prototype.inverse = function () { return null; }; + var BiMap_prototype = BiMap.prototype; + BiMap_prototype.get = function (key) { return null; }; + BiMap_prototype.inverse = function () { return null; }; return BiMap; }()); var b = new BiMap(); diff --git a/tests/baselines/reference/genericsWithDuplicateTypeParameters1.js b/tests/baselines/reference/genericsWithDuplicateTypeParameters1.js index cbe7e7de20762..8766e3c90a83f 100644 --- a/tests/baselines/reference/genericsWithDuplicateTypeParameters1.js +++ b/tests/baselines/reference/genericsWithDuplicateTypeParameters1.js @@ -22,8 +22,9 @@ function f2(a, b) { return null; } var C = /** @class */ (function () { function C() { } - C.prototype.f = function () { }; - C.prototype.f2 = function (a, b) { return null; }; + var C_prototype = C.prototype; + C_prototype.f = function () { }; + C_prototype.f2 = function (a, b) { return null; }; return C; }()); var m = { diff --git a/tests/baselines/reference/getAndSetAsMemberNames.js b/tests/baselines/reference/getAndSetAsMemberNames.js index 2cfbea0b8590e..0fd59659de7c2 100644 --- a/tests/baselines/reference/getAndSetAsMemberNames.js +++ b/tests/baselines/reference/getAndSetAsMemberNames.js @@ -51,8 +51,9 @@ var C5 = /** @class */ (function () { function C5() { this.set = function () { return true; }; } - C5.prototype.get = function () { return true; }; - Object.defineProperty(C5.prototype, "t", { + var C5_prototype = C5.prototype; + C5_prototype.get = function () { return true; }; + Object.defineProperty(C5_prototype, "t", { set: function (x) { }, enumerable: false, configurable: true diff --git a/tests/baselines/reference/getSetAccessorContextualTyping.js b/tests/baselines/reference/getSetAccessorContextualTyping.js index 515ab16c9d1a7..45d4e31f95382 100644 --- a/tests/baselines/reference/getSetAccessorContextualTyping.js +++ b/tests/baselines/reference/getSetAccessorContextualTyping.js @@ -32,7 +32,8 @@ class C { var C = /** @class */ (function () { function C() { } - Object.defineProperty(C.prototype, "X", { + var C_prototype = C.prototype; + Object.defineProperty(C_prototype, "X", { get: function () { return "string"; // Error; get contextual type by set accessor parameter type annotation }, @@ -40,7 +41,7 @@ var C = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, "Y", { + Object.defineProperty(C_prototype, "Y", { get: function () { return true; }, @@ -48,7 +49,7 @@ var C = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, "W", { + Object.defineProperty(C_prototype, "W", { get: function () { return true; }, @@ -56,7 +57,7 @@ var C = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, "Z", { + Object.defineProperty(C_prototype, "Z", { get: function () { return 1; }, diff --git a/tests/baselines/reference/getterThatThrowsShouldNotNeedReturn.js b/tests/baselines/reference/getterThatThrowsShouldNotNeedReturn.js index 9bb61a6d7bcd2..9432a5dcd29a0 100644 --- a/tests/baselines/reference/getterThatThrowsShouldNotNeedReturn.js +++ b/tests/baselines/reference/getterThatThrowsShouldNotNeedReturn.js @@ -13,14 +13,15 @@ class Greeter { var Greeter = /** @class */ (function () { function Greeter() { } - Object.defineProperty(Greeter.prototype, "greet", { + var Greeter_prototype = Greeter.prototype; + Object.defineProperty(Greeter_prototype, "greet", { get: function () { throw ''; // should not raise an error }, enumerable: false, configurable: true }); - Greeter.prototype.greeting = function () { + Greeter_prototype.greeting = function () { throw ''; // should not raise an error }; return Greeter; diff --git a/tests/baselines/reference/gettersAndSettersErrors.js b/tests/baselines/reference/gettersAndSettersErrors.js index 8e994e6dd0001..0b46bfeaade26 100644 --- a/tests/baselines/reference/gettersAndSettersErrors.js +++ b/tests/baselines/reference/gettersAndSettersErrors.js @@ -21,7 +21,8 @@ var C = /** @class */ (function () { function C() { this.Foo = 0; // error - duplicate identifier Foo - confirmed } - Object.defineProperty(C.prototype, "Foo", { + var C_prototype = C.prototype; + Object.defineProperty(C_prototype, "Foo", { get: function () { return "foo"; } // ok , set: function (foo) { } // ok @@ -29,7 +30,7 @@ var C = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, "Goo", { + Object.defineProperty(C_prototype, "Goo", { get: function (v) { return null; } // error - getters must not have a parameter , set: function (v) { } // error - setters must not specify a return type diff --git a/tests/baselines/reference/gettersAndSettersTypesAgree.js b/tests/baselines/reference/gettersAndSettersTypesAgree.js index bb74877ea9352..3b84632ce6fb3 100644 --- a/tests/baselines/reference/gettersAndSettersTypesAgree.js +++ b/tests/baselines/reference/gettersAndSettersTypesAgree.js @@ -14,7 +14,8 @@ var o2 = {get Foo(){return 0;}, set Foo(val:number){}}; // ok - types agree var C = /** @class */ (function () { function C() { } - Object.defineProperty(C.prototype, "Foo", { + var C_prototype = C.prototype; + Object.defineProperty(C_prototype, "Foo", { get: function () { return "foo"; } // ok , set: function (foo) { } // ok - type inferred from getter return statement @@ -22,7 +23,7 @@ var C = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, "Bar", { + Object.defineProperty(C_prototype, "Bar", { get: function () { return "foo"; } // ok , set: function (bar) { } // ok - type must be declared diff --git a/tests/baselines/reference/giant.js b/tests/baselines/reference/giant.js index e3d3bfd0c82a1..f453ff11067a4 100644 --- a/tests/baselines/reference/giant.js +++ b/tests/baselines/reference/giant.js @@ -704,28 +704,29 @@ define(["require", "exports"], function (require, exports) { var C = /** @class */ (function () { function C() { } - C.prototype.pF = function () { }; - C.prototype.rF = function () { }; - C.prototype.pgF = function () { }; - Object.defineProperty(C.prototype, "pgF", { + var C_prototype = C.prototype; + C_prototype.pF = function () { }; + C_prototype.rF = function () { }; + C_prototype.pgF = function () { }; + Object.defineProperty(C_prototype, "pgF", { get: function () { }, enumerable: false, configurable: true }); - C.prototype.psF = function (param) { }; - Object.defineProperty(C.prototype, "psF", { + C_prototype.psF = function (param) { }; + Object.defineProperty(C_prototype, "psF", { set: function (param) { }, enumerable: false, configurable: true }); - C.prototype.rgF = function () { }; - Object.defineProperty(C.prototype, "rgF", { + C_prototype.rgF = function () { }; + Object.defineProperty(C_prototype, "rgF", { get: function () { }, enumerable: false, configurable: true }); - C.prototype.rsF = function (param) { }; - Object.defineProperty(C.prototype, "rsF", { + C_prototype.rsF = function (param) { }; + Object.defineProperty(C_prototype, "rsF", { set: function (param) { }, enumerable: false, configurable: true @@ -753,28 +754,29 @@ define(["require", "exports"], function (require, exports) { var C = /** @class */ (function () { function C() { } - C.prototype.pF = function () { }; - C.prototype.rF = function () { }; - C.prototype.pgF = function () { }; - Object.defineProperty(C.prototype, "pgF", { + var C_prototype_1 = C.prototype; + C_prototype_1.pF = function () { }; + C_prototype_1.rF = function () { }; + C_prototype_1.pgF = function () { }; + Object.defineProperty(C_prototype_1, "pgF", { get: function () { }, enumerable: false, configurable: true }); - C.prototype.psF = function (param) { }; - Object.defineProperty(C.prototype, "psF", { + C_prototype_1.psF = function (param) { }; + Object.defineProperty(C_prototype_1, "psF", { set: function (param) { }, enumerable: false, configurable: true }); - C.prototype.rgF = function () { }; - Object.defineProperty(C.prototype, "rgF", { + C_prototype_1.rgF = function () { }; + Object.defineProperty(C_prototype_1, "rgF", { get: function () { }, enumerable: false, configurable: true }); - C.prototype.rsF = function (param) { }; - Object.defineProperty(C.prototype, "rsF", { + C_prototype_1.rsF = function (param) { }; + Object.defineProperty(C_prototype_1, "rsF", { set: function (param) { }, enumerable: false, configurable: true @@ -829,28 +831,29 @@ define(["require", "exports"], function (require, exports) { var eC = /** @class */ (function () { function eC() { } - eC.prototype.pF = function () { }; - eC.prototype.rF = function () { }; - eC.prototype.pgF = function () { }; - Object.defineProperty(eC.prototype, "pgF", { + var eC_prototype = eC.prototype; + eC_prototype.pF = function () { }; + eC_prototype.rF = function () { }; + eC_prototype.pgF = function () { }; + Object.defineProperty(eC_prototype, "pgF", { get: function () { }, enumerable: false, configurable: true }); - eC.prototype.psF = function (param) { }; - Object.defineProperty(eC.prototype, "psF", { + eC_prototype.psF = function (param) { }; + Object.defineProperty(eC_prototype, "psF", { set: function (param) { }, enumerable: false, configurable: true }); - eC.prototype.rgF = function () { }; - Object.defineProperty(eC.prototype, "rgF", { + eC_prototype.rgF = function () { }; + Object.defineProperty(eC_prototype, "rgF", { get: function () { }, enumerable: false, configurable: true }); - eC.prototype.rsF = function (param) { }; - Object.defineProperty(eC.prototype, "rsF", { + eC_prototype.rsF = function (param) { }; + Object.defineProperty(eC_prototype, "rsF", { set: function (param) { }, enumerable: false, configurable: true @@ -908,28 +911,29 @@ define(["require", "exports"], function (require, exports) { var eC = /** @class */ (function () { function eC() { } - eC.prototype.pF = function () { }; - eC.prototype.rF = function () { }; - eC.prototype.pgF = function () { }; - Object.defineProperty(eC.prototype, "pgF", { + var eC_prototype_1 = eC.prototype; + eC_prototype_1.pF = function () { }; + eC_prototype_1.rF = function () { }; + eC_prototype_1.pgF = function () { }; + Object.defineProperty(eC_prototype_1, "pgF", { get: function () { }, enumerable: false, configurable: true }); - eC.prototype.psF = function (param) { }; - Object.defineProperty(eC.prototype, "psF", { + eC_prototype_1.psF = function (param) { }; + Object.defineProperty(eC_prototype_1, "psF", { set: function (param) { }, enumerable: false, configurable: true }); - eC.prototype.rgF = function () { }; - Object.defineProperty(eC.prototype, "rgF", { + eC_prototype_1.rgF = function () { }; + Object.defineProperty(eC_prototype_1, "rgF", { get: function () { }, enumerable: false, configurable: true }); - eC.prototype.rsF = function (param) { }; - Object.defineProperty(eC.prototype, "rsF", { + eC_prototype_1.rsF = function (param) { }; + Object.defineProperty(eC_prototype_1, "rsF", { set: function (param) { }, enumerable: false, configurable: true @@ -958,28 +962,29 @@ define(["require", "exports"], function (require, exports) { var C = /** @class */ (function () { function C() { } - C.prototype.pF = function () { }; - C.prototype.rF = function () { }; - C.prototype.pgF = function () { }; - Object.defineProperty(C.prototype, "pgF", { + var C_prototype_2 = C.prototype; + C_prototype_2.pF = function () { }; + C_prototype_2.rF = function () { }; + C_prototype_2.pgF = function () { }; + Object.defineProperty(C_prototype_2, "pgF", { get: function () { }, enumerable: false, configurable: true }); - C.prototype.psF = function (param) { }; - Object.defineProperty(C.prototype, "psF", { + C_prototype_2.psF = function (param) { }; + Object.defineProperty(C_prototype_2, "psF", { set: function (param) { }, enumerable: false, configurable: true }); - C.prototype.rgF = function () { }; - Object.defineProperty(C.prototype, "rgF", { + C_prototype_2.rgF = function () { }; + Object.defineProperty(C_prototype_2, "rgF", { get: function () { }, enumerable: false, configurable: true }); - C.prototype.rsF = function (param) { }; - Object.defineProperty(C.prototype, "rsF", { + C_prototype_2.rsF = function (param) { }; + Object.defineProperty(C_prototype_2, "rsF", { set: function (param) { }, enumerable: false, configurable: true @@ -1034,28 +1039,29 @@ define(["require", "exports"], function (require, exports) { var eC = /** @class */ (function () { function eC() { } - eC.prototype.pF = function () { }; - eC.prototype.rF = function () { }; - eC.prototype.pgF = function () { }; - Object.defineProperty(eC.prototype, "pgF", { + var eC_prototype_2 = eC.prototype; + eC_prototype_2.pF = function () { }; + eC_prototype_2.rF = function () { }; + eC_prototype_2.pgF = function () { }; + Object.defineProperty(eC_prototype_2, "pgF", { get: function () { }, enumerable: false, configurable: true }); - eC.prototype.psF = function (param) { }; - Object.defineProperty(eC.prototype, "psF", { + eC_prototype_2.psF = function (param) { }; + Object.defineProperty(eC_prototype_2, "psF", { set: function (param) { }, enumerable: false, configurable: true }); - eC.prototype.rgF = function () { }; - Object.defineProperty(eC.prototype, "rgF", { + eC_prototype_2.rgF = function () { }; + Object.defineProperty(eC_prototype_2, "rgF", { get: function () { }, enumerable: false, configurable: true }); - eC.prototype.rsF = function (param) { }; - Object.defineProperty(eC.prototype, "rsF", { + eC_prototype_2.rsF = function (param) { }; + Object.defineProperty(eC_prototype_2, "rsF", { set: function (param) { }, enumerable: false, configurable: true diff --git a/tests/baselines/reference/heterogeneousArrayAndOverloads.js b/tests/baselines/reference/heterogeneousArrayAndOverloads.js index cb0fb3d58e4df..f27ddbfcf1529 100644 --- a/tests/baselines/reference/heterogeneousArrayAndOverloads.js +++ b/tests/baselines/reference/heterogeneousArrayAndOverloads.js @@ -15,8 +15,9 @@ class arrTest { var arrTest = /** @class */ (function () { function arrTest() { } - arrTest.prototype.test = function (arg1) { }; - arrTest.prototype.callTest = function () { + var arrTest_prototype = arrTest.prototype; + arrTest_prototype.test = function (arg1) { }; + arrTest_prototype.callTest = function () { this.test([1, 2, 3, 5]); this.test(["hi"]); this.test([]); diff --git a/tests/baselines/reference/implicitAnyAnyReturningFunction.js b/tests/baselines/reference/implicitAnyAnyReturningFunction.js index 319e2653daabb..77e45ddac4cc0 100644 --- a/tests/baselines/reference/implicitAnyAnyReturningFunction.js +++ b/tests/baselines/reference/implicitAnyAnyReturningFunction.js @@ -31,10 +31,11 @@ function B() { var C = /** @class */ (function () { function C() { } - C.prototype.A = function () { + var C_prototype = C.prototype; + C_prototype.A = function () { return ""; }; - C.prototype.B = function () { + C_prototype.B = function () { var someLocal = {}; return someLocal; }; diff --git a/tests/baselines/reference/implicitAnyCastedValue.js b/tests/baselines/reference/implicitAnyCastedValue.js index 423c898433271..a70ccdec305d9 100644 --- a/tests/baselines/reference/implicitAnyCastedValue.js +++ b/tests/baselines/reference/implicitAnyCastedValue.js @@ -90,17 +90,18 @@ var C = /** @class */ (function () { this.bar = null; // this should be an error this.foo = undefined; // this should be an error } - Object.defineProperty(C.prototype, "tempVar", { + var C_prototype = C.prototype; + Object.defineProperty(C_prototype, "tempVar", { get: function () { return 0; // this should not be an error }, enumerable: false, configurable: true }); - C.prototype.returnBarWithCase = function () { + C_prototype.returnBarWithCase = function () { return this.bar; }; - C.prototype.returnFooWithCase = function () { + C_prototype.returnFooWithCase = function () { return this.foo; // this should not be an error }; return C; @@ -109,14 +110,15 @@ var C1 = /** @class */ (function () { function C1() { this.getValue = null; // this should be an error } - Object.defineProperty(C1.prototype, "castedGet", { + var C1_prototype = C1.prototype; + Object.defineProperty(C1_prototype, "castedGet", { get: function () { return this.getValue; // this should not be an error }, enumerable: false, configurable: true }); - Object.defineProperty(C1.prototype, "notCastedGet", { + Object.defineProperty(C1_prototype, "notCastedGet", { get: function () { return this.getValue; // this should not be an error }, diff --git a/tests/baselines/reference/implicitAnyFunctionReturnNullOrUndefined.js b/tests/baselines/reference/implicitAnyFunctionReturnNullOrUndefined.js index 4ae7de5864d25..0e878cba0f614 100644 --- a/tests/baselines/reference/implicitAnyFunctionReturnNullOrUndefined.js +++ b/tests/baselines/reference/implicitAnyFunctionReturnNullOrUndefined.js @@ -31,10 +31,11 @@ function undefinedWidenFunction() { return undefined; } // error at "undefinedWi var C = /** @class */ (function () { function C() { } - C.prototype.nullWidenFuncOfC = function () { + var C_prototype = C.prototype; + C_prototype.nullWidenFuncOfC = function () { return null; }; - C.prototype.underfinedWidenFuncOfC = function () { + C_prototype.underfinedWidenFuncOfC = function () { return undefined; }; return C; diff --git a/tests/baselines/reference/inferFromGenericFunctionReturnTypes1.js b/tests/baselines/reference/inferFromGenericFunctionReturnTypes1.js index 36a12ceadda5b..b68c2eb0f67b9 100644 --- a/tests/baselines/reference/inferFromGenericFunctionReturnTypes1.js +++ b/tests/baselines/reference/inferFromGenericFunctionReturnTypes1.js @@ -77,13 +77,14 @@ testSet.transform( var SetOf = /** @class */ (function () { function SetOf() { } - SetOf.prototype.add = function (a) { + var SetOf_prototype = SetOf.prototype; + SetOf_prototype.add = function (a) { this._store.push(a); }; - SetOf.prototype.transform = function (transformer) { + SetOf_prototype.transform = function (transformer) { return transformer(this); }; - SetOf.prototype.forEach = function (fn) { + SetOf_prototype.forEach = function (fn) { this._store.forEach(function (a, i) { return fn(a, i); }); }; return SetOf; diff --git a/tests/baselines/reference/inferFromGenericFunctionReturnTypes2.js b/tests/baselines/reference/inferFromGenericFunctionReturnTypes2.js index 332de9e7409af..64acc4040c000 100644 --- a/tests/baselines/reference/inferFromGenericFunctionReturnTypes2.js +++ b/tests/baselines/reference/inferFromGenericFunctionReturnTypes2.js @@ -111,13 +111,14 @@ var a6 = ["a", "b"].map(combine(wrap(function (s) { return s.length; }), identit var SetOf = /** @class */ (function () { function SetOf() { } - SetOf.prototype.add = function (a) { + var SetOf_prototype = SetOf.prototype; + SetOf_prototype.add = function (a) { this._store.push(a); }; - SetOf.prototype.transform = function (transformer) { + SetOf_prototype.transform = function (transformer) { return transformer(this); }; - SetOf.prototype.forEach = function (fn) { + SetOf_prototype.forEach = function (fn) { this._store.forEach(function (a, i) { return fn(a, i); }); }; return SetOf; diff --git a/tests/baselines/reference/inferParameterWithMethodCallInitializer.js b/tests/baselines/reference/inferParameterWithMethodCallInitializer.js index cdd0a19030068..a783924e69fbe 100644 --- a/tests/baselines/reference/inferParameterWithMethodCallInitializer.js +++ b/tests/baselines/reference/inferParameterWithMethodCallInitializer.js @@ -27,10 +27,11 @@ function getNumber() { var Example = /** @class */ (function () { function Example() { } - Example.prototype.getNumber = function () { + var Example_prototype = Example.prototype; + Example_prototype.getNumber = function () { return 1; }; - Example.prototype.doSomething = function (a) { + Example_prototype.doSomething = function (a) { if (a === void 0) { a = this.getNumber(); } return a; }; diff --git a/tests/baselines/reference/inferringClassMembersFromAssignments.js b/tests/baselines/reference/inferringClassMembersFromAssignments.js index e8d25a917dd47..703d7097fa9e9 100644 --- a/tests/baselines/reference/inferringClassMembersFromAssignments.js +++ b/tests/baselines/reference/inferringClassMembersFromAssignments.js @@ -153,7 +153,8 @@ var C = /** @class */ (function () { } this.inMultiple = 0; } - C.prototype.method = function () { + var C_prototype = C.prototype; + C_prototype.method = function () { var _this = this; if (Math.random()) { this.inMethod = 0; @@ -174,7 +175,7 @@ var C = /** @class */ (function () { } }; }; - C.prototype.get = function () { + C_prototype.get = function () { if (Math.random()) { this.inGetter = 0; } @@ -184,7 +185,7 @@ var C = /** @class */ (function () { this.inMultiple = false; this.inMultipleMethods = false; }; - C.prototype.set = function () { + C_prototype.set = function () { if (Math.random()) { this.inSetter = 0; } diff --git a/tests/baselines/reference/inheritance.js b/tests/baselines/reference/inheritance.js index 6c38badaecc8e..0b58dd87e3182 100644 --- a/tests/baselines/reference/inheritance.js +++ b/tests/baselines/reference/inheritance.js @@ -98,7 +98,8 @@ var Baad = /** @class */ (function (_super) { function Baad() { return _super !== null && _super.apply(this, arguments) || this; } - Baad.prototype.f = function () { return 0; }; - Baad.prototype.g = function (n) { return 0; }; + var Baad_prototype = Baad.prototype; + Baad_prototype.f = function () { return 0; }; + Baad_prototype.g = function (n) { return 0; }; return Baad; }(Good)); diff --git a/tests/baselines/reference/innerTypeParameterShadowingOuterOne2.js b/tests/baselines/reference/innerTypeParameterShadowingOuterOne2.js index 824061fce1f30..1bfcc6fb98219 100644 --- a/tests/baselines/reference/innerTypeParameterShadowingOuterOne2.js +++ b/tests/baselines/reference/innerTypeParameterShadowingOuterOne2.js @@ -43,11 +43,12 @@ class C2 { var C = /** @class */ (function () { function C() { } - C.prototype.g = function () { + var C_prototype = C.prototype; + C_prototype.g = function () { var x; x.toFixed(); }; - C.prototype.h = function () { + C_prototype.h = function () { var x; x.getDate(); }; @@ -56,11 +57,12 @@ var C = /** @class */ (function () { var C2 = /** @class */ (function () { function C2() { } - C2.prototype.g = function () { + var C2_prototype = C2.prototype; + C2_prototype.g = function () { var x; x.toFixed(); }; - C2.prototype.h = function () { + C2_prototype.h = function () { var x; x.getDate(); }; diff --git a/tests/baselines/reference/instanceMemberAssignsToClassPrototype.js b/tests/baselines/reference/instanceMemberAssignsToClassPrototype.js index 48c032b0d5360..9de1b20a42426 100644 --- a/tests/baselines/reference/instanceMemberAssignsToClassPrototype.js +++ b/tests/baselines/reference/instanceMemberAssignsToClassPrototype.js @@ -16,10 +16,11 @@ class C { var C = /** @class */ (function () { function C() { } - C.prototype.foo = function () { + var C_prototype = C.prototype; + C_prototype.foo = function () { C.prototype.foo = function () { }; }; - C.prototype.bar = function (x) { + C_prototype.bar = function (x) { C.prototype.bar = function () { }; // error C.prototype.bar = function (x) { return x; }; // ok C.prototype.bar = function (x) { return 1; }; // ok diff --git a/tests/baselines/reference/instancePropertiesInheritedIntoClassType.js b/tests/baselines/reference/instancePropertiesInheritedIntoClassType.js index d50eb464f60e9..414a717e82692 100644 --- a/tests/baselines/reference/instancePropertiesInheritedIntoClassType.js +++ b/tests/baselines/reference/instancePropertiesInheritedIntoClassType.js @@ -65,7 +65,8 @@ var NonGeneric; this.a = a; this.b = b; } - Object.defineProperty(C.prototype, "y", { + var C_prototype = C.prototype; + Object.defineProperty(C_prototype, "y", { get: function () { return 1; }, @@ -73,7 +74,7 @@ var NonGeneric; enumerable: false, configurable: true }); - C.prototype.fn = function () { return this; }; + C_prototype.fn = function () { return this; }; return C; }()); var D = /** @class */ (function (_super) { @@ -97,7 +98,8 @@ var Generic; this.a = a; this.b = b; } - Object.defineProperty(C.prototype, "y", { + var C_prototype_1 = C.prototype; + Object.defineProperty(C_prototype_1, "y", { get: function () { return null; }, @@ -105,7 +107,7 @@ var Generic; enumerable: false, configurable: true }); - C.prototype.fn = function () { return this; }; + C_prototype_1.fn = function () { return this; }; return C; }()); var D = /** @class */ (function (_super) { diff --git a/tests/baselines/reference/instancePropertyInClassType.js b/tests/baselines/reference/instancePropertyInClassType.js index a3e39fc980706..0ba510d359a74 100644 --- a/tests/baselines/reference/instancePropertyInClassType.js +++ b/tests/baselines/reference/instancePropertyInClassType.js @@ -46,7 +46,8 @@ var NonGeneric; this.a = a; this.b = b; } - Object.defineProperty(C.prototype, "y", { + var C_prototype = C.prototype; + Object.defineProperty(C_prototype, "y", { get: function () { return 1; }, @@ -54,7 +55,7 @@ var NonGeneric; enumerable: false, configurable: true }); - C.prototype.fn = function () { return this; }; + C_prototype.fn = function () { return this; }; return C; }()); var c = new C(1, 2); @@ -71,7 +72,8 @@ var Generic; this.a = a; this.b = b; } - Object.defineProperty(C.prototype, "y", { + var C_prototype_1 = C.prototype; + Object.defineProperty(C_prototype_1, "y", { get: function () { return null; }, @@ -79,7 +81,7 @@ var Generic; enumerable: false, configurable: true }); - C.prototype.fn = function () { return this; }; + C_prototype_1.fn = function () { return this; }; return C; }()); var c = new C(1, ''); diff --git a/tests/baselines/reference/interfaceContextualType.js b/tests/baselines/reference/interfaceContextualType.js index 8f2950749d9e3..eee10011134cc 100644 --- a/tests/baselines/reference/interfaceContextualType.js +++ b/tests/baselines/reference/interfaceContextualType.js @@ -27,11 +27,12 @@ exports.__esModule = true; var Bug = /** @class */ (function () { function Bug() { } - Bug.prototype.ok = function () { + var Bug_prototype = Bug.prototype; + Bug_prototype.ok = function () { this.values = {}; this.values['comments'] = { italic: true }; }; - Bug.prototype.shouldBeOK = function () { + Bug_prototype.shouldBeOK = function () { this.values = { comments: { italic: true } }; diff --git a/tests/baselines/reference/interfaceExtendingClass.js b/tests/baselines/reference/interfaceExtendingClass.js index 373b852f1d761..87c75bed9c1f2 100644 --- a/tests/baselines/reference/interfaceExtendingClass.js +++ b/tests/baselines/reference/interfaceExtendingClass.js @@ -23,8 +23,9 @@ i = f; var Foo = /** @class */ (function () { function Foo() { } - Foo.prototype.y = function () { }; - Object.defineProperty(Foo.prototype, "Z", { + var Foo_prototype = Foo.prototype; + Foo_prototype.y = function () { }; + Object.defineProperty(Foo_prototype, "Z", { get: function () { return 1; }, diff --git a/tests/baselines/reference/interfaceExtendingClass2.js b/tests/baselines/reference/interfaceExtendingClass2.js index 670a4dacb2ff5..e4ef4b9c95435 100644 --- a/tests/baselines/reference/interfaceExtendingClass2.js +++ b/tests/baselines/reference/interfaceExtendingClass2.js @@ -19,8 +19,9 @@ interface I2 extends Foo { // error var Foo = /** @class */ (function () { function Foo() { } - Foo.prototype.y = function () { }; - Object.defineProperty(Foo.prototype, "Z", { + var Foo_prototype = Foo.prototype; + Foo_prototype.y = function () { }; + Object.defineProperty(Foo_prototype, "Z", { get: function () { return 1; }, diff --git a/tests/baselines/reference/interfaceExtendsClassWithPrivate1.js b/tests/baselines/reference/interfaceExtendsClassWithPrivate1.js index 4e2b9fc46b09c..a2fa0a0f7891f 100644 --- a/tests/baselines/reference/interfaceExtendsClassWithPrivate1.js +++ b/tests/baselines/reference/interfaceExtendsClassWithPrivate1.js @@ -55,9 +55,10 @@ var D = /** @class */ (function (_super) { function D() { return _super !== null && _super.apply(this, arguments) || this; } - D.prototype.foo = function (x) { return x; }; - D.prototype.other = function (x) { return x; }; - D.prototype.bar = function () { }; + var D_prototype = D.prototype; + D_prototype.foo = function (x) { return x; }; + D_prototype.other = function (x) { return x; }; + D_prototype.bar = function () { }; return D; }(C)); var c; diff --git a/tests/baselines/reference/interfaceExtendsClassWithPrivate2.js b/tests/baselines/reference/interfaceExtendsClassWithPrivate2.js index 6ba2961af7c52..430727065a257 100644 --- a/tests/baselines/reference/interfaceExtendsClassWithPrivate2.js +++ b/tests/baselines/reference/interfaceExtendsClassWithPrivate2.js @@ -54,9 +54,10 @@ var D = /** @class */ (function (_super) { _this.y = 3; return _this; } - D.prototype.foo = function (x) { return x; }; - D.prototype.other = function (x) { return x; }; - D.prototype.bar = function () { }; + var D_prototype = D.prototype; + D_prototype.foo = function (x) { return x; }; + D_prototype.other = function (x) { return x; }; + D_prototype.bar = function () { }; return D; }(C)); var D2 = /** @class */ (function (_super) { @@ -66,8 +67,9 @@ var D2 = /** @class */ (function (_super) { _this.x = ""; return _this; } - D2.prototype.foo = function (x) { return x; }; - D2.prototype.other = function (x) { return x; }; - D2.prototype.bar = function () { }; + var D2_prototype = D2.prototype; + D2_prototype.foo = function (x) { return x; }; + D2_prototype.other = function (x) { return x; }; + D2_prototype.bar = function () { }; return D2; }(C)); diff --git a/tests/baselines/reference/invalidNewTarget.es5.js b/tests/baselines/reference/invalidNewTarget.es5.js index f25847b1e983a..7df13fa5dea4f 100644 --- a/tests/baselines/reference/invalidNewTarget.es5.js +++ b/tests/baselines/reference/invalidNewTarget.es5.js @@ -33,12 +33,13 @@ var C = /** @class */ (function () { var _newTarget = this.constructor; this.f = function () { return _newTarget; }; } - C.prototype[_newTarget] = function () { }; - C.prototype.c = function () { + var C_prototype = C.prototype; + C_prototype[_newTarget] = function () { }; + C_prototype.c = function () { var _newTarget = void 0; return _newTarget; }; - Object.defineProperty(C.prototype, "d", { + Object.defineProperty(C_prototype, "d", { get: function () { var _newTarget = void 0; return _newTarget; @@ -46,7 +47,7 @@ var C = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, "e", { + Object.defineProperty(C_prototype, "e", { set: function (_) { var _newTarget = void 0; _ = _newTarget; diff --git a/tests/baselines/reference/isDeclarationVisibleNodeKinds.js b/tests/baselines/reference/isDeclarationVisibleNodeKinds.js index 170ff405bd8af..cc81f25bef7ff 100644 --- a/tests/baselines/reference/isDeclarationVisibleNodeKinds.js +++ b/tests/baselines/reference/isDeclarationVisibleNodeKinds.js @@ -130,14 +130,15 @@ var schema; var T = /** @class */ (function () { function T() { } - Object.defineProperty(T.prototype, "createValidator9", { + var T_prototype = T.prototype; + Object.defineProperty(T_prototype, "createValidator9", { get: function () { return undefined; }, enumerable: false, configurable: true }); - Object.defineProperty(T.prototype, "createValidator10", { + Object.defineProperty(T_prototype, "createValidator10", { set: function (v) { }, enumerable: false, diff --git a/tests/baselines/reference/jsDeclarationsClasses.js b/tests/baselines/reference/jsDeclarationsClasses.js index 770de04c7343a..18a387920deef 100644 --- a/tests/baselines/reference/jsDeclarationsClasses.js +++ b/tests/baselines/reference/jsDeclarationsClasses.js @@ -258,7 +258,8 @@ var E = /** @class */ (function () { function E(a, b) { this.initializedField = 12; } - Object.defineProperty(E.prototype, "f1", { + var E_prototype = E.prototype; + Object.defineProperty(E_prototype, "f1", { /** * @return {U} */ @@ -270,7 +271,7 @@ var E = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(E.prototype, "f2", { + Object.defineProperty(E_prototype, "f2", { /** * @return {U} */ @@ -278,7 +279,7 @@ var E = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(E.prototype, "f3", { + Object.defineProperty(E_prototype, "f3", { /** * @param {U} _p */ diff --git a/tests/baselines/reference/keyofAndIndexedAccess.js b/tests/baselines/reference/keyofAndIndexedAccess.js index 6875b80beccaf..fe782c3c72672 100644 --- a/tests/baselines/reference/keyofAndIndexedAccess.js +++ b/tests/baselines/reference/keyofAndIndexedAccess.js @@ -734,10 +734,11 @@ function f13(foo, bar) { var Component = /** @class */ (function () { function Component() { } - Component.prototype.getProperty = function (key) { + var Component_prototype = Component.prototype; + Component_prototype.getProperty = function (key) { return this.props[key]; }; - Component.prototype.setProperty = function (key, value) { + Component_prototype.setProperty = function (key, value) { this.props[key] = value; }; return Component; @@ -870,13 +871,14 @@ function f84() { var C1 = /** @class */ (function () { function C1() { } - C1.prototype.get = function (key) { + var C1_prototype = C1.prototype; + C1_prototype.get = function (key) { return this[key]; }; - C1.prototype.set = function (key, value) { + C1_prototype.set = function (key, value) { this[key] = value; }; - C1.prototype.foo = function () { + C1_prototype.foo = function () { var x1 = this.x; // number var x2 = this["x"]; // number var x3 = this.get("x"); // this["x"] @@ -915,10 +917,11 @@ function f92(x, y, z) { var Base = /** @class */ (function () { function Base() { } - Base.prototype.get = function (prop) { + var Base_prototype = Base.prototype; + Base_prototype.get = function (prop) { return this[prop]; }; - Base.prototype.set = function (prop, value) { + Base_prototype.set = function (prop, value) { this[prop] = value; }; return Base; diff --git a/tests/baselines/reference/lift.js b/tests/baselines/reference/lift.js index b66838d89b44e..ad3e8943cded5 100644 --- a/tests/baselines/reference/lift.js +++ b/tests/baselines/reference/lift.js @@ -47,7 +47,8 @@ var C = /** @class */ (function (_super) { var ll = x * w; return _this; } - C.prototype.liftxyz = function () { return x + z + this.y; }; - C.prototype.liftxylocllz = function () { return x + z + this.y + this.ll; }; + var C_prototype = C.prototype; + C_prototype.liftxyz = function () { return x + z + this.y; }; + C_prototype.liftxylocllz = function () { return x + z + this.y + this.ll; }; return C; }(B)); diff --git a/tests/baselines/reference/listFailure.js b/tests/baselines/reference/listFailure.js index 82063e04b0499..674bdf0a8a8aa 100644 --- a/tests/baselines/reference/listFailure.js +++ b/tests/baselines/reference/listFailure.js @@ -71,11 +71,12 @@ var Editor; var List = /** @class */ (function () { function List() { } - List.prototype.add = function (data) { + var List_prototype = List.prototype; + List_prototype.add = function (data) { this.next = ListMakeEntry(data); return this.next; }; - List.prototype.popEntry = function (head) { + List_prototype.popEntry = function (head) { return (ListRemoveEntry(this.next)); }; return List; diff --git a/tests/baselines/reference/literalTypes2.js b/tests/baselines/reference/literalTypes2.js index a5e0f6dcb84de..79d9123a389d3 100644 --- a/tests/baselines/reference/literalTypes2.js +++ b/tests/baselines/reference/literalTypes2.js @@ -307,10 +307,11 @@ function f12() { var C2 = /** @class */ (function () { function C2() { } - C2.prototype.foo = function () { + var C2_prototype = C2.prototype; + C2_prototype.foo = function () { return 0; }; - C2.prototype.bar = function () { + C2_prototype.bar = function () { return cond ? 0 : 1; }; return C2; diff --git a/tests/baselines/reference/localTypes1.js b/tests/baselines/reference/localTypes1.js index a38b90671487a..33b552782ab39 100644 --- a/tests/baselines/reference/localTypes1.js +++ b/tests/baselines/reference/localTypes1.js @@ -265,7 +265,8 @@ var A = /** @class */ (function () { return C; }()); } - A.prototype.m = function () { + var A_prototype = A.prototype; + A_prototype.m = function () { var E; (function (E) { E[E["A"] = 0] = "A"; @@ -279,7 +280,7 @@ var A = /** @class */ (function () { }()); return new C(); }; - Object.defineProperty(A.prototype, "p", { + Object.defineProperty(A_prototype, "p", { get: function () { var E; (function (E) { diff --git a/tests/baselines/reference/looseThisTypeInFunctions.js b/tests/baselines/reference/looseThisTypeInFunctions.js index fcf39472c568c..89e55663f0ca5 100644 --- a/tests/baselines/reference/looseThisTypeInFunctions.js +++ b/tests/baselines/reference/looseThisTypeInFunctions.js @@ -52,13 +52,14 @@ i.explicitThis = function(m) { var C = /** @class */ (function () { function C() { } - C.prototype.explicitThis = function (m) { + var C_prototype = C.prototype; + C_prototype.explicitThis = function (m) { return this.n + m; }; - C.prototype.implicitThis = function (m) { + C_prototype.implicitThis = function (m) { return this.n + m; }; - C.prototype.explicitVoid = function (m) { + C_prototype.explicitVoid = function (m) { return m + 1; }; return C; diff --git a/tests/baselines/reference/memberFunctionsWithPrivateOverloads.js b/tests/baselines/reference/memberFunctionsWithPrivateOverloads.js index a1d8b3f7f2b15..05365f4b1ca4c 100644 --- a/tests/baselines/reference/memberFunctionsWithPrivateOverloads.js +++ b/tests/baselines/reference/memberFunctionsWithPrivateOverloads.js @@ -53,8 +53,9 @@ var r4 = D.bar(''); // error var C = /** @class */ (function () { function C() { } - C.prototype.foo = function (x, y) { }; - C.prototype.bar = function (x, y) { }; + var C_prototype = C.prototype; + C_prototype.foo = function (x, y) { }; + C_prototype.bar = function (x, y) { }; C.foo = function (x, y) { }; C.bar = function (x, y) { }; return C; @@ -62,8 +63,9 @@ var C = /** @class */ (function () { var D = /** @class */ (function () { function D() { } - D.prototype.foo = function (x, y) { }; - D.prototype.bar = function (x, y) { }; + var D_prototype = D.prototype; + D_prototype.foo = function (x, y) { }; + D_prototype.bar = function (x, y) { }; D.foo = function (x, y) { }; D.bar = function (x, y) { }; return D; diff --git a/tests/baselines/reference/memberFunctionsWithPublicOverloads.js b/tests/baselines/reference/memberFunctionsWithPublicOverloads.js index 1e476fddfd955..30a88246ca6f2 100644 --- a/tests/baselines/reference/memberFunctionsWithPublicOverloads.js +++ b/tests/baselines/reference/memberFunctionsWithPublicOverloads.js @@ -44,8 +44,9 @@ class D { var C = /** @class */ (function () { function C() { } - C.prototype.foo = function (x, y) { }; - C.prototype.bar = function (x, y) { }; + var C_prototype = C.prototype; + C_prototype.foo = function (x, y) { }; + C_prototype.bar = function (x, y) { }; C.foo = function (x, y) { }; C.bar = function (x, y) { }; return C; @@ -53,8 +54,9 @@ var C = /** @class */ (function () { var D = /** @class */ (function () { function D() { } - D.prototype.foo = function (x, y) { }; - D.prototype.bar = function (x, y) { }; + var D_prototype = D.prototype; + D_prototype.foo = function (x, y) { }; + D_prototype.bar = function (x, y) { }; D.foo = function (x, y) { }; D.bar = function (x, y) { }; return D; diff --git a/tests/baselines/reference/memberFunctionsWithPublicPrivateOverloads.js b/tests/baselines/reference/memberFunctionsWithPublicPrivateOverloads.js index f227ad7a88583..8213c3d4a32ab 100644 --- a/tests/baselines/reference/memberFunctionsWithPublicPrivateOverloads.js +++ b/tests/baselines/reference/memberFunctionsWithPublicPrivateOverloads.js @@ -66,10 +66,11 @@ var r2 = d.foo(2); // error var C = /** @class */ (function () { function C() { } - C.prototype.foo = function (x, y) { }; - C.prototype.bar = function (x, y) { }; + var C_prototype = C.prototype; + C_prototype.foo = function (x, y) { }; + C_prototype.bar = function (x, y) { }; C.foo = function (x, y) { }; - C.prototype.baz = function (x, y) { }; + C_prototype.baz = function (x, y) { }; C.bar = function (x, y) { }; C.baz = function (x, y) { }; return C; @@ -77,9 +78,10 @@ var C = /** @class */ (function () { var D = /** @class */ (function () { function D() { } - D.prototype.foo = function (x, y) { }; - D.prototype.bar = function (x, y) { }; - D.prototype.baz = function (x, y) { }; + var D_prototype = D.prototype; + D_prototype.foo = function (x, y) { }; + D_prototype.bar = function (x, y) { }; + D_prototype.baz = function (x, y) { }; D.foo = function (x, y) { }; D.bar = function (x, y) { }; D.baz = function (x, y) { }; diff --git a/tests/baselines/reference/missingSelf.js b/tests/baselines/reference/missingSelf.js index d84c9ce6a315a..9f38e66166d8e 100644 --- a/tests/baselines/reference/missingSelf.js +++ b/tests/baselines/reference/missingSelf.js @@ -22,18 +22,20 @@ c2.b(); var CalcButton = /** @class */ (function () { function CalcButton() { } - CalcButton.prototype.a = function () { this.onClick(); }; - CalcButton.prototype.onClick = function () { }; + var CalcButton_prototype = CalcButton.prototype; + CalcButton_prototype.a = function () { this.onClick(); }; + CalcButton_prototype.onClick = function () { }; return CalcButton; }()); var CalcButton2 = /** @class */ (function () { function CalcButton2() { } - CalcButton2.prototype.b = function () { + var CalcButton2_prototype = CalcButton2.prototype; + CalcButton2_prototype.b = function () { var _this = this; (function () { return _this.onClick(); }); }; - CalcButton2.prototype.onClick = function () { }; + CalcButton2_prototype.onClick = function () { }; return CalcButton2; }()); var c = new CalcButton(); diff --git a/tests/baselines/reference/mixedStaticAndInstanceClassMembers.js b/tests/baselines/reference/mixedStaticAndInstanceClassMembers.js index 2468000d542a0..bd5c18e42cbb0 100644 --- a/tests/baselines/reference/mixedStaticAndInstanceClassMembers.js +++ b/tests/baselines/reference/mixedStaticAndInstanceClassMembers.js @@ -19,16 +19,18 @@ class B { var A = /** @class */ (function () { function A() { } - A.prototype.f = function () { }; - A.prototype.m1 = function (a) { + var A_prototype = A.prototype; + A_prototype.f = function () { }; + A_prototype.m1 = function (a) { }; return A; }()); var B = /** @class */ (function () { function B() { } - B.prototype.f = function () { }; - B.prototype.m1 = function (a) { + var B_prototype = B.prototype; + B_prototype.f = function () { }; + B_prototype.m1 = function (a) { }; return B; }()); diff --git a/tests/baselines/reference/mixinAccessModifiers.js b/tests/baselines/reference/mixinAccessModifiers.js index 6590df868bdd2..75901d271a657 100644 --- a/tests/baselines/reference/mixinAccessModifiers.js +++ b/tests/baselines/reference/mixinAccessModifiers.js @@ -296,15 +296,17 @@ var C6 = /** @class */ (function (_super) { var ProtectedGeneric = /** @class */ (function () { function ProtectedGeneric() { } - ProtectedGeneric.prototype.privateMethod = function () { }; - ProtectedGeneric.prototype.protectedMethod = function () { }; + var ProtectedGeneric_prototype = ProtectedGeneric.prototype; + ProtectedGeneric_prototype.privateMethod = function () { }; + ProtectedGeneric_prototype.protectedMethod = function () { }; return ProtectedGeneric; }()); var ProtectedGeneric2 = /** @class */ (function () { function ProtectedGeneric2() { } - ProtectedGeneric2.prototype.privateMethod = function () { }; - ProtectedGeneric2.prototype.protectedMethod = function () { }; + var ProtectedGeneric2_prototype = ProtectedGeneric2.prototype; + ProtectedGeneric2_prototype.privateMethod = function () { }; + ProtectedGeneric2_prototype.protectedMethod = function () { }; return ProtectedGeneric2; }()); function f7(x) { diff --git a/tests/baselines/reference/moduleMemberWithoutTypeAnnotation1.js b/tests/baselines/reference/moduleMemberWithoutTypeAnnotation1.js index 211e4efeb46cb..9a03162f61738 100644 --- a/tests/baselines/reference/moduleMemberWithoutTypeAnnotation1.js +++ b/tests/baselines/reference/moduleMemberWithoutTypeAnnotation1.js @@ -84,12 +84,13 @@ var TypeScript; var SyntaxNode = /** @class */ (function () { function SyntaxNode() { } - SyntaxNode.prototype.findToken = function (position, includeSkippedTokens) { + var SyntaxNode_prototype = SyntaxNode.prototype; + SyntaxNode_prototype.findToken = function (position, includeSkippedTokens) { if (includeSkippedTokens === void 0) { includeSkippedTokens = false; } var positionedToken = this.findTokenInternal(null, position, 0); return null; }; - SyntaxNode.prototype.findTokenInternal = function (x, y, z) { + SyntaxNode_prototype.findTokenInternal = function (x, y, z) { return null; }; return SyntaxNode; diff --git a/tests/baselines/reference/moduleVisibilityTest1.js b/tests/baselines/reference/moduleVisibilityTest1.js index 99ff355df7209..28962e7c33d7f 100644 --- a/tests/baselines/reference/moduleVisibilityTest1.js +++ b/tests/baselines/reference/moduleVisibilityTest1.js @@ -104,10 +104,11 @@ var M; function someInnerFunc() { return 2; } var someInnerVar = 3; } - C.prototype.someMethodThatCallsAnOuterMethod = function () { return OuterInnerAlias.someExportedOuterInnerFunc(); }; - C.prototype.someMethodThatCallsAnInnerMethod = function () { return InnerMod.someExportedInnerFunc(); }; - C.prototype.someMethodThatCallsAnOuterInnerMethod = function () { return OuterMod.someExportedOuterFunc(); }; - C.prototype.someMethod = function () { return 0; }; + var C_prototype = C.prototype; + C_prototype.someMethodThatCallsAnOuterMethod = function () { return OuterInnerAlias.someExportedOuterInnerFunc(); }; + C_prototype.someMethodThatCallsAnInnerMethod = function () { return InnerMod.someExportedInnerFunc(); }; + C_prototype.someMethodThatCallsAnOuterInnerMethod = function () { return OuterMod.someExportedOuterFunc(); }; + C_prototype.someMethod = function () { return 0; }; return C; }()); M.C = C; diff --git a/tests/baselines/reference/moduleVisibilityTest2.js b/tests/baselines/reference/moduleVisibilityTest2.js index 0030c9ec3541e..8a0f6c26f903a 100644 --- a/tests/baselines/reference/moduleVisibilityTest2.js +++ b/tests/baselines/reference/moduleVisibilityTest2.js @@ -105,10 +105,11 @@ var M; function someInnerFunc() { return 2; } var someInnerVar = 3; } - C.prototype.someMethodThatCallsAnOuterMethod = function () { return OuterInnerAlias.someExportedOuterInnerFunc(); }; - C.prototype.someMethodThatCallsAnInnerMethod = function () { return InnerMod.someExportedInnerFunc(); }; - C.prototype.someMethodThatCallsAnOuterInnerMethod = function () { return OuterMod.someExportedOuterFunc(); }; - C.prototype.someMethod = function () { return 0; }; + var C_prototype = C.prototype; + C_prototype.someMethodThatCallsAnOuterMethod = function () { return OuterInnerAlias.someExportedOuterInnerFunc(); }; + C_prototype.someMethodThatCallsAnInnerMethod = function () { return InnerMod.someExportedInnerFunc(); }; + C_prototype.someMethodThatCallsAnOuterInnerMethod = function () { return OuterMod.someExportedOuterFunc(); }; + C_prototype.someMethod = function () { return 0; }; return C; }()); M.C = C; diff --git a/tests/baselines/reference/moduledecl.js b/tests/baselines/reference/moduledecl.js index d3013dbba402a..3b009ac79b96b 100644 --- a/tests/baselines/reference/moduledecl.js +++ b/tests/baselines/reference/moduledecl.js @@ -306,10 +306,11 @@ var exportTests; var C1_public = /** @class */ (function () { function C1_public() { } - C1_public.prototype.f2 = function () { + var C1_public_prototype = C1_public.prototype; + C1_public_prototype.f2 = function () { return 30; }; - C1_public.prototype.f3 = function () { + C1_public_prototype.f3 = function () { return "string"; }; return C1_public; @@ -318,10 +319,11 @@ var exportTests; var C2_private = /** @class */ (function () { function C2_private() { } - C2_private.prototype.f2 = function () { + var C2_private_prototype = C2_private.prototype; + C2_private_prototype.f2 = function () { return 30; }; - C2_private.prototype.f3 = function () { + C2_private_prototype.f3 = function () { return "string"; }; return C2_private; @@ -329,24 +331,25 @@ var exportTests; var C3_public = /** @class */ (function () { function C3_public() { } - C3_public.prototype.getC2_private = function () { + var C3_public_prototype = C3_public.prototype; + C3_public_prototype.getC2_private = function () { return new C2_private(); }; - C3_public.prototype.setC2_private = function (arg) { + C3_public_prototype.setC2_private = function (arg) { }; - Object.defineProperty(C3_public.prototype, "c2", { + Object.defineProperty(C3_public_prototype, "c2", { get: function () { return new C2_private(); }, enumerable: false, configurable: true }); - C3_public.prototype.getC1_public = function () { + C3_public_prototype.getC1_public = function () { return new C1_public(); }; - C3_public.prototype.setC1_public = function (arg) { + C3_public_prototype.setC1_public = function (arg) { }; - Object.defineProperty(C3_public.prototype, "c1", { + Object.defineProperty(C3_public_prototype, "c1", { get: function () { return new C1_public(); }, diff --git a/tests/baselines/reference/multiModuleClodule1.js b/tests/baselines/reference/multiModuleClodule1.js index 18ab88c42d2c4..fd1c5cf1cbc15 100644 --- a/tests/baselines/reference/multiModuleClodule1.js +++ b/tests/baselines/reference/multiModuleClodule1.js @@ -22,8 +22,9 @@ c.foo = C.foo; var C = /** @class */ (function () { function C(x) { } - C.prototype.foo = function () { }; - C.prototype.bar = function () { }; + var C_prototype = C.prototype; + C_prototype.foo = function () { }; + C_prototype.bar = function () { }; C.boo = function () { }; return C; }()); diff --git a/tests/baselines/reference/multipleDeclarations.js b/tests/baselines/reference/multipleDeclarations.js index 14bf360da14d5..af5e762821288 100644 --- a/tests/baselines/reference/multipleDeclarations.js +++ b/tests/baselines/reference/multipleDeclarations.js @@ -47,9 +47,10 @@ var X = /** @class */ (function () { this.m = this.m.bind(this); this.mistake = 'frankly, complete nonsense'; } - X.prototype.m = function () { + var X_prototype = X.prototype; + X_prototype.m = function () { }; - X.prototype.mistake = function () { + X_prototype.mistake = function () { }; return X; }()); @@ -62,9 +63,10 @@ var Y = /** @class */ (function () { this.m = this.m.bind(this); this.mistake = 'even more nonsense'; } - Y.prototype.mistake = function () { + var Y_prototype = Y.prototype; + Y_prototype.mistake = function () { }; - Y.prototype.m = function () { + Y_prototype.m = function () { }; return Y; }()); diff --git a/tests/baselines/reference/multipleInheritance.js b/tests/baselines/reference/multipleInheritance.js index 64c57cf487908..8a0a0bbb5b5dc 100644 --- a/tests/baselines/reference/multipleInheritance.js +++ b/tests/baselines/reference/multipleInheritance.js @@ -116,7 +116,8 @@ var Baad = /** @class */ (function (_super) { function Baad() { return _super !== null && _super.apply(this, arguments) || this; } - Baad.prototype.f = function () { return 0; }; - Baad.prototype.g = function (n) { return 0; }; + var Baad_prototype = Baad.prototype; + Baad_prototype.f = function () { return 0; }; + Baad_prototype.g = function (n) { return 0; }; return Baad; }(Good)); diff --git a/tests/baselines/reference/neverReturningFunctions1.js b/tests/baselines/reference/neverReturningFunctions1.js index 7a9817644f2c7..cf54abe60e1e8 100644 --- a/tests/baselines/reference/neverReturningFunctions1.js +++ b/tests/baselines/reference/neverReturningFunctions1.js @@ -343,21 +343,22 @@ function f24(x) { var Test = /** @class */ (function () { function Test() { } - Test.prototype.fail = function (message) { + var Test_prototype = Test.prototype; + Test_prototype.fail = function (message) { throw new Error(message); }; - Test.prototype.f1 = function (x) { + Test_prototype.f1 = function (x) { if (x === undefined) this.fail("undefined argument"); x.length; // string }; - Test.prototype.f2 = function (x) { + Test_prototype.f2 = function (x) { if (x >= 0) return x; this.fail("negative number"); x; // Unreachable }; - Test.prototype.f3 = function (x) { + Test_prototype.f3 = function (x) { x; // string this.fail(); x; // Unreachable @@ -475,10 +476,11 @@ var SuperThrowable = /** @class */ (function (_super) { function SuperThrowable() { return _super !== null && _super.apply(this, arguments) || this; } - SuperThrowable.prototype.err = function (msg) { + var SuperThrowable_prototype = SuperThrowable.prototype; + SuperThrowable_prototype.err = function (msg) { _super.prototype["throw"].call(this); }; - SuperThrowable.prototype.ok = function () { + SuperThrowable_prototype.ok = function () { this["throw"](); }; return SuperThrowable; diff --git a/tests/baselines/reference/neverType.js b/tests/baselines/reference/neverType.js index eb7ee33148013..d318a9f911cfa 100644 --- a/tests/baselines/reference/neverType.js +++ b/tests/baselines/reference/neverType.js @@ -134,16 +134,17 @@ function check(x) { var C = /** @class */ (function () { function C() { } - C.prototype.void1 = function () { + var C_prototype = C.prototype; + C_prototype.void1 = function () { throw new Error(); }; - C.prototype.void2 = function () { + C_prototype.void2 = function () { while (true) { } }; - C.prototype.never1 = function () { + C_prototype.never1 = function () { throw new Error(); }; - C.prototype.never2 = function () { + C_prototype.never2 = function () { while (true) { } }; return C; diff --git a/tests/baselines/reference/noCollisionThisExpressionAndLocalVarInMethod.js b/tests/baselines/reference/noCollisionThisExpressionAndLocalVarInMethod.js index e4254225783dc..cabdf478b9d9e 100644 --- a/tests/baselines/reference/noCollisionThisExpressionAndLocalVarInMethod.js +++ b/tests/baselines/reference/noCollisionThisExpressionAndLocalVarInMethod.js @@ -24,7 +24,8 @@ var _this = 2; var a = /** @class */ (function () { function a() { } - a.prototype.method1 = function () { + var a_prototype = a.prototype; + a_prototype.method1 = function () { return { doStuff: function (callback) { return function () { var _this = 2; @@ -32,7 +33,7 @@ var a = /** @class */ (function () { }; } }; }; - a.prototype.method2 = function () { + a_prototype.method2 = function () { var _this = 2; return { doStuff: function (callback) { return function () { diff --git a/tests/baselines/reference/noImplicitAnyParametersInClass.js b/tests/baselines/reference/noImplicitAnyParametersInClass.js index 1cfccb39778ce..7be8beb54d74c 100644 --- a/tests/baselines/reference/noImplicitAnyParametersInClass.js +++ b/tests/baselines/reference/noImplicitAnyParametersInClass.js @@ -143,56 +143,57 @@ var C = /** @class */ (function () { return ""; }; } + var C_prototype = C.prototype; // No implicit-'any' errors. - C.prototype.pub_f1 = function () { }; + C_prototype.pub_f1 = function () { }; // Implicit-'any' errors for x. - C.prototype.pub_f2 = function (x) { }; + C_prototype.pub_f2 = function (x) { }; // No implicit-'any' errors. - C.prototype.pub_f3 = function (x) { }; + C_prototype.pub_f3 = function (x) { }; // Implicit-'any' errors for x, y, and z. - C.prototype.pub_f4 = function (x, y, z) { }; + C_prototype.pub_f4 = function (x, y, z) { }; // Implicit-'any' errors for x, and z. - C.prototype.pub_f5 = function (x, y, z) { }; + C_prototype.pub_f5 = function (x, y, z) { }; // Implicit-'any[]' errors for r. - C.prototype.pub_f6 = function () { + C_prototype.pub_f6 = function () { var r = []; for (var _i = 0; _i < arguments.length; _i++) { r[_i] = arguments[_i]; } }; // Implicit-'any'/'any[]' errors for x, r. - C.prototype.pub_f7 = function (x) { + C_prototype.pub_f7 = function (x) { var r = []; for (var _i = 1; _i < arguments.length; _i++) { r[_i - 1] = arguments[_i]; } }; - C.prototype.pub_f8 = function (x3, y3) { }; + C_prototype.pub_f8 = function (x3, y3) { }; /////////////////////////////////////////// // No implicit-'any' errors. - C.prototype.priv_f1 = function () { }; + C_prototype.priv_f1 = function () { }; // Implicit-'any' errors for x. - C.prototype.priv_f2 = function (x) { }; + C_prototype.priv_f2 = function (x) { }; // No implicit-'any' errors. - C.prototype.priv_f3 = function (x) { }; + C_prototype.priv_f3 = function (x) { }; // Implicit-'any' errors for x, y, and z. - C.prototype.priv_f4 = function (x, y, z) { }; + C_prototype.priv_f4 = function (x, y, z) { }; // Implicit-'any' errors for x, and z. - C.prototype.priv_f5 = function (x, y, z) { }; + C_prototype.priv_f5 = function (x, y, z) { }; // Implicit-'any[]' errors for r. - C.prototype.priv_f6 = function () { + C_prototype.priv_f6 = function () { var r = []; for (var _i = 0; _i < arguments.length; _i++) { r[_i] = arguments[_i]; } }; // Implicit-'any'/'any[]' errors for x, r. - C.prototype.priv_f7 = function (x) { + C_prototype.priv_f7 = function (x) { var r = []; for (var _i = 1; _i < arguments.length; _i++) { r[_i - 1] = arguments[_i]; } }; - C.prototype.priv_f8 = function (x3, y3) { }; + C_prototype.priv_f8 = function (x3, y3) { }; return C; }()); diff --git a/tests/baselines/reference/noUnusedLocals_destructuringAssignment.js b/tests/baselines/reference/noUnusedLocals_destructuringAssignment.js index 805957e44de73..74e3b11f9d778 100644 --- a/tests/baselines/reference/noUnusedLocals_destructuringAssignment.js +++ b/tests/baselines/reference/noUnusedLocals_destructuringAssignment.js @@ -21,12 +21,13 @@ var C = /** @class */ (function () { function C() { this.x = 0; } - C.prototype.m = function () { + var C_prototype = C.prototype; + C_prototype.m = function () { var x; (x = this.x); return x; }; - C.prototype.f = function () { + C_prototype.f = function () { var f; (f = this.f); return f; diff --git a/tests/baselines/reference/nonMergedDeclarationsAndOverloads.js b/tests/baselines/reference/nonMergedDeclarationsAndOverloads.js index 880b772ffe0dc..8f60c718e181e 100644 --- a/tests/baselines/reference/nonMergedDeclarationsAndOverloads.js +++ b/tests/baselines/reference/nonMergedDeclarationsAndOverloads.js @@ -12,8 +12,9 @@ class A { var A = /** @class */ (function () { function A() { } - A.prototype.f = function () { }; - A.prototype.m1 = function (a) { + var A_prototype = A.prototype; + A_prototype.f = function () { }; + A_prototype.m1 = function (a) { }; return A; }()); diff --git a/tests/baselines/reference/numericIndexerConstrainsPropertyDeclarations.js b/tests/baselines/reference/numericIndexerConstrainsPropertyDeclarations.js index 8c08b8c30b4c3..6ecc987250de6 100644 --- a/tests/baselines/reference/numericIndexerConstrainsPropertyDeclarations.js +++ b/tests/baselines/reference/numericIndexerConstrainsPropertyDeclarations.js @@ -102,7 +102,8 @@ var b: { [x: number]: string; } = { var C = /** @class */ (function () { function C() { } // ok - Object.defineProperty(C.prototype, "X", { + var C_prototype = C.prototype; + Object.defineProperty(C_prototype, "X", { get: function () { return ''; }, @@ -111,7 +112,7 @@ var C = /** @class */ (function () { enumerable: false, configurable: true }); - C.prototype.foo = function () { + C_prototype.foo = function () { return ''; }; C.foo = function () { }; // ok diff --git a/tests/baselines/reference/objectRestParameterES5.js b/tests/baselines/reference/objectRestParameterES5.js index fd7d03e4c65d1..e2fe8e7f10dd4 100644 --- a/tests/baselines/reference/objectRestParameterES5.js +++ b/tests/baselines/reference/objectRestParameterES5.js @@ -48,11 +48,12 @@ suddenly(function (_a) { var C = /** @class */ (function () { function C() { } - C.prototype.m = function (_a) { + var C_prototype = C.prototype; + C_prototype.m = function (_a) { var a = _a.a, clone = __rest(_a, ["a"]); // actually, never mind, don't clone }; - Object.defineProperty(C.prototype, "p", { + Object.defineProperty(C_prototype, "p", { set: function (_a) { var a = _a.a, clone = __rest(_a, ["a"]); // actually, never mind, don't clone diff --git a/tests/baselines/reference/optionalMethods.js b/tests/baselines/reference/optionalMethods.js index 8f79dacc70cc7..184c74085920e 100644 --- a/tests/baselines/reference/optionalMethods.js +++ b/tests/baselines/reference/optionalMethods.js @@ -88,10 +88,11 @@ var Bar = /** @class */ (function () { this.e = e; this.c = 2; } - Bar.prototype.f = function () { + var Bar_prototype = Bar.prototype; + Bar_prototype.f = function () { return 1; }; - Bar.prototype.h = function () { + Bar_prototype.h = function () { return 2; }; return Bar; diff --git a/tests/baselines/reference/optionalParamArgsTest.js b/tests/baselines/reference/optionalParamArgsTest.js index 03929dc552ff6..b1fe07fb361a1 100644 --- a/tests/baselines/reference/optionalParamArgsTest.js +++ b/tests/baselines/reference/optionalParamArgsTest.js @@ -147,22 +147,23 @@ var C1 = /** @class */ (function () { if (p === void 0) { p = 0; } this.n = 0; } - C1.prototype.C1M1 = function () { return 0; }; // returning C1M1A1 will result in "Unresolved symbol C1M1A1" - C1.prototype.C1M2 = function (C1M2A1) { return C1M2A1; }; // will return C1M1A2 without complaint + var C1_prototype = C1.prototype; + C1_prototype.C1M1 = function () { return 0; }; // returning C1M1A1 will result in "Unresolved symbol C1M1A1" + C1_prototype.C1M2 = function (C1M2A1) { return C1M2A1; }; // will return C1M1A2 without complaint // C1M3 contains all optional parameters - C1.prototype.C1M3 = function (C1M3A1, C1M3A2) { + C1_prototype.C1M3 = function (C1M3A1, C1M3A2) { if (C1M3A1 === void 0) { C1M3A1 = 0; } if (C1M3A2 === void 0) { C1M3A2 = C1M3A1; } return C1M3A1 + C1M3A2; }; // C1M4 contains a mix of optional and non-optional parameters - C1.prototype.C1M4 = function (C1M4A1, C1M4A2) { return C1M4A1 + C1M4A2; }; - C1.prototype.C1M5 = function (C1M5A1, C1M5A2, C1M5A3) { + C1_prototype.C1M4 = function (C1M4A1, C1M4A2) { return C1M4A1 + C1M4A2; }; + C1_prototype.C1M5 = function (C1M5A1, C1M5A2, C1M5A3) { if (C1M5A2 === void 0) { C1M5A2 = 0; } return C1M5A1 + C1M5A2; }; // Uninitialized parameter makes the initialized one required - C1.prototype.C1M5 = function (C1M5A1, C1M5A2, C1M5A3) { + C1_prototype.C1M5 = function (C1M5A1, C1M5A2, C1M5A3) { if (C1M5A2 === void 0) { C1M5A2 = 0; } return C1M5A1 + C1M5A2; }; diff --git a/tests/baselines/reference/out-flag.js b/tests/baselines/reference/out-flag.js index b35a9f1d8c0e5..96d99ca10c32b 100644 --- a/tests/baselines/reference/out-flag.js +++ b/tests/baselines/reference/out-flag.js @@ -22,11 +22,12 @@ class MyClass var MyClass = /** @class */ (function () { function MyClass() { } + var MyClass_prototype = MyClass.prototype; // my function comments - MyClass.prototype.Count = function () { + MyClass_prototype.Count = function () { return 42; }; - MyClass.prototype.SetCount = function (value) { + MyClass_prototype.SetCount = function (value) { // }; return MyClass; diff --git a/tests/baselines/reference/out-flag.js.map b/tests/baselines/reference/out-flag.js.map index 534fa4150e2de..51098395ffa6e 100644 --- a/tests/baselines/reference/out-flag.js.map +++ b/tests/baselines/reference/out-flag.js.map @@ -1,3 +1,3 @@ //// [out-flag.js.map] -{"version":3,"file":"out-flag.js","sourceRoot":"","sources":["out-flag.ts"],"names":[],"mappings":"AAAA,eAAe;AAEf,oBAAoB;AACpB;IAAA;IAYA,CAAC;IAVG,uBAAuB;IAChB,uBAAK,GAAZ;QAEI,OAAO,EAAE,CAAC;IACd,CAAC;IAEM,0BAAQ,GAAf,UAAgB,KAAa;QAEzB,EAAE;IACN,CAAC;IACL,cAAC;AAAD,CAAC,AAZD,IAYC"} -//// https://sokra.github.io/source-map-visualization#base64,Ly8vLyBAb3V0OiBiaW5cDQovLyBteSBjbGFzcyBjb21tZW50cw0KdmFyIE15Q2xhc3MgPSAvKiogQGNsYXNzICovIChmdW5jdGlvbiAoKSB7DQogICAgZnVuY3Rpb24gTXlDbGFzcygpIHsNCiAgICB9DQogICAgLy8gbXkgZnVuY3Rpb24gY29tbWVudHMNCiAgICBNeUNsYXNzLnByb3RvdHlwZS5Db3VudCA9IGZ1bmN0aW9uICgpIHsNCiAgICAgICAgcmV0dXJuIDQyOw0KICAgIH07DQogICAgTXlDbGFzcy5wcm90b3R5cGUuU2V0Q291bnQgPSBmdW5jdGlvbiAodmFsdWUpIHsNCiAgICAgICAgLy8NCiAgICB9Ow0KICAgIHJldHVybiBNeUNsYXNzOw0KfSgpKTsNCi8vIyBzb3VyY2VNYXBwaW5nVVJMPW91dC1mbGFnLmpzLm1hcA==,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib3V0LWZsYWcuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJvdXQtZmxhZy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxlQUFlO0FBRWYsb0JBQW9CO0FBQ3BCO0lBQUE7SUFZQSxDQUFDO0lBVkcsdUJBQXVCO0lBQ2hCLHVCQUFLLEdBQVo7UUFFSSxPQUFPLEVBQUUsQ0FBQztJQUNkLENBQUM7SUFFTSwwQkFBUSxHQUFmLFVBQWdCLEtBQWE7UUFFekIsRUFBRTtJQUNOLENBQUM7SUFDTCxjQUFDO0FBQUQsQ0FBQyxBQVpELElBWUMifQ==,Ly8vLyBAb3V0OiBiaW5cCgovLyBteSBjbGFzcyBjb21tZW50cwpjbGFzcyBNeUNsYXNzCnsKICAgIC8vIG15IGZ1bmN0aW9uIGNvbW1lbnRzCiAgICBwdWJsaWMgQ291bnQoKTogbnVtYmVyCiAgICB7CiAgICAgICAgcmV0dXJuIDQyOwogICAgfQoKICAgIHB1YmxpYyBTZXRDb3VudCh2YWx1ZTogbnVtYmVyKQogICAgewogICAgICAgIC8vCiAgICB9Cn0= +{"version":3,"file":"out-flag.js","sourceRoot":"","sources":["out-flag.ts"],"names":[],"mappings":"AAAA,eAAe;AAEf,oBAAoB;AACpB;IAAA;IAYA,CAAC;;IAVG,uBAAuB;IAChB,uBAAK,GAAZ;QAEI,OAAO,EAAE,CAAC;IACd,CAAC;IAEM,0BAAQ,GAAf,UAAgB,KAAa;QAEzB,EAAE;IACN,CAAC;IACL,cAAC;AAAD,CAAC,AAZD,IAYC"} +//// https://sokra.github.io/source-map-visualization#base64,Ly8vLyBAb3V0OiBiaW5cDQovLyBteSBjbGFzcyBjb21tZW50cw0KdmFyIE15Q2xhc3MgPSAvKiogQGNsYXNzICovIChmdW5jdGlvbiAoKSB7DQogICAgZnVuY3Rpb24gTXlDbGFzcygpIHsNCiAgICB9DQogICAgdmFyIE15Q2xhc3NfcHJvdG90eXBlID0gTXlDbGFzcy5wcm90b3R5cGU7DQogICAgLy8gbXkgZnVuY3Rpb24gY29tbWVudHMNCiAgICBNeUNsYXNzX3Byb3RvdHlwZS5Db3VudCA9IGZ1bmN0aW9uICgpIHsNCiAgICAgICAgcmV0dXJuIDQyOw0KICAgIH07DQogICAgTXlDbGFzc19wcm90b3R5cGUuU2V0Q291bnQgPSBmdW5jdGlvbiAodmFsdWUpIHsNCiAgICAgICAgLy8NCiAgICB9Ow0KICAgIHJldHVybiBNeUNsYXNzOw0KfSgpKTsNCi8vIyBzb3VyY2VNYXBwaW5nVVJMPW91dC1mbGFnLmpzLm1hcA==,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib3V0LWZsYWcuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJvdXQtZmxhZy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxlQUFlO0FBRWYsb0JBQW9CO0FBQ3BCO0lBQUE7SUFZQSxDQUFDOztJQVZHLHVCQUF1QjtJQUNoQix1QkFBSyxHQUFaO1FBRUksT0FBTyxFQUFFLENBQUM7SUFDZCxDQUFDO0lBRU0sMEJBQVEsR0FBZixVQUFnQixLQUFhO1FBRXpCLEVBQUU7SUFDTixDQUFDO0lBQ0wsY0FBQztBQUFELENBQUMsQUFaRCxJQVlDIn0=,Ly8vLyBAb3V0OiBiaW5cCgovLyBteSBjbGFzcyBjb21tZW50cwpjbGFzcyBNeUNsYXNzCnsKICAgIC8vIG15IGZ1bmN0aW9uIGNvbW1lbnRzCiAgICBwdWJsaWMgQ291bnQoKTogbnVtYmVyCiAgICB7CiAgICAgICAgcmV0dXJuIDQyOwogICAgfQoKICAgIHB1YmxpYyBTZXRDb3VudCh2YWx1ZTogbnVtYmVyKQogICAgewogICAgICAgIC8vCiAgICB9Cn0= diff --git a/tests/baselines/reference/out-flag.sourcemap.txt b/tests/baselines/reference/out-flag.sourcemap.txt index e4ba684f3510e..55291626980d4 100644 --- a/tests/baselines/reference/out-flag.sourcemap.txt +++ b/tests/baselines/reference/out-flag.sourcemap.txt @@ -44,7 +44,7 @@ sourceFile:out-flag.ts >>> } 1->^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1->class MyClass >{ > // my function comments @@ -62,16 +62,17 @@ sourceFile:out-flag.ts 1->Emitted(5, 5) Source(16, 1) + SourceIndex(0) 2 >Emitted(5, 6) Source(16, 2) + SourceIndex(0) --- +>>> var MyClass_prototype = MyClass.prototype; >>> // my function comments 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^-> 1-> 2 > // my function comments -1->Emitted(6, 5) Source(6, 5) + SourceIndex(0) -2 >Emitted(6, 28) Source(6, 28) + SourceIndex(0) +1->Emitted(7, 5) Source(6, 5) + SourceIndex(0) +2 >Emitted(7, 28) Source(6, 28) + SourceIndex(0) --- ->>> MyClass.prototype.Count = function () { +>>> MyClass_prototype.Count = function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^ @@ -79,9 +80,9 @@ sourceFile:out-flag.ts > public 2 > Count 3 > -1->Emitted(7, 5) Source(7, 12) + SourceIndex(0) -2 >Emitted(7, 28) Source(7, 17) + SourceIndex(0) -3 >Emitted(7, 31) Source(7, 5) + SourceIndex(0) +1->Emitted(8, 5) Source(7, 12) + SourceIndex(0) +2 >Emitted(8, 28) Source(7, 17) + SourceIndex(0) +3 >Emitted(8, 31) Source(7, 5) + SourceIndex(0) --- >>> return 42; 1 >^^^^^^^^ @@ -94,10 +95,10 @@ sourceFile:out-flag.ts 2 > return 3 > 42 4 > ; -1 >Emitted(8, 9) Source(9, 9) + SourceIndex(0) -2 >Emitted(8, 16) Source(9, 16) + SourceIndex(0) -3 >Emitted(8, 18) Source(9, 18) + SourceIndex(0) -4 >Emitted(8, 19) Source(9, 19) + SourceIndex(0) +1 >Emitted(9, 9) Source(9, 9) + SourceIndex(0) +2 >Emitted(9, 16) Source(9, 16) + SourceIndex(0) +3 >Emitted(9, 18) Source(9, 18) + SourceIndex(0) +4 >Emitted(9, 19) Source(9, 19) + SourceIndex(0) --- >>> }; 1 >^^^^ @@ -106,10 +107,10 @@ sourceFile:out-flag.ts 1 > > 2 > } -1 >Emitted(9, 5) Source(10, 5) + SourceIndex(0) -2 >Emitted(9, 6) Source(10, 6) + SourceIndex(0) +1 >Emitted(10, 5) Source(10, 5) + SourceIndex(0) +2 >Emitted(10, 6) Source(10, 6) + SourceIndex(0) --- ->>> MyClass.prototype.SetCount = function (value) { +>>> MyClass_prototype.SetCount = function (value) { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^ @@ -122,11 +123,11 @@ sourceFile:out-flag.ts 3 > 4 > public SetCount( 5 > value: number -1->Emitted(10, 5) Source(12, 12) + SourceIndex(0) -2 >Emitted(10, 31) Source(12, 20) + SourceIndex(0) -3 >Emitted(10, 34) Source(12, 5) + SourceIndex(0) -4 >Emitted(10, 44) Source(12, 21) + SourceIndex(0) -5 >Emitted(10, 49) Source(12, 34) + SourceIndex(0) +1->Emitted(11, 5) Source(12, 12) + SourceIndex(0) +2 >Emitted(11, 31) Source(12, 20) + SourceIndex(0) +3 >Emitted(11, 34) Source(12, 5) + SourceIndex(0) +4 >Emitted(11, 44) Source(12, 21) + SourceIndex(0) +5 >Emitted(11, 49) Source(12, 34) + SourceIndex(0) --- >>> // 1 >^^^^^^^^ @@ -135,8 +136,8 @@ sourceFile:out-flag.ts > { > 2 > // -1 >Emitted(11, 9) Source(14, 9) + SourceIndex(0) -2 >Emitted(11, 11) Source(14, 11) + SourceIndex(0) +1 >Emitted(12, 9) Source(14, 9) + SourceIndex(0) +2 >Emitted(12, 11) Source(14, 11) + SourceIndex(0) --- >>> }; 1 >^^^^ @@ -145,8 +146,8 @@ sourceFile:out-flag.ts 1 > > 2 > } -1 >Emitted(12, 5) Source(15, 5) + SourceIndex(0) -2 >Emitted(12, 6) Source(15, 6) + SourceIndex(0) +1 >Emitted(13, 5) Source(15, 5) + SourceIndex(0) +2 >Emitted(13, 6) Source(15, 6) + SourceIndex(0) --- >>> return MyClass; 1->^^^^ @@ -154,8 +155,8 @@ sourceFile:out-flag.ts 1-> > 2 > } -1->Emitted(13, 5) Source(16, 1) + SourceIndex(0) -2 >Emitted(13, 19) Source(16, 2) + SourceIndex(0) +1->Emitted(14, 5) Source(16, 1) + SourceIndex(0) +2 >Emitted(14, 19) Source(16, 2) + SourceIndex(0) --- >>>}()); 1 > @@ -179,9 +180,9 @@ sourceFile:out-flag.ts > // > } > } -1 >Emitted(14, 1) Source(16, 1) + SourceIndex(0) -2 >Emitted(14, 2) Source(16, 2) + SourceIndex(0) -3 >Emitted(14, 2) Source(4, 1) + SourceIndex(0) -4 >Emitted(14, 6) Source(16, 2) + SourceIndex(0) +1 >Emitted(15, 1) Source(16, 1) + SourceIndex(0) +2 >Emitted(15, 2) Source(16, 2) + SourceIndex(0) +3 >Emitted(15, 2) Source(4, 1) + SourceIndex(0) +4 >Emitted(15, 6) Source(16, 2) + SourceIndex(0) --- >>>//# sourceMappingURL=out-flag.js.map \ No newline at end of file diff --git a/tests/baselines/reference/overloadConsecutiveness.js b/tests/baselines/reference/overloadConsecutiveness.js index 6b02c01088db2..1a2ea2b291f36 100644 --- a/tests/baselines/reference/overloadConsecutiveness.js +++ b/tests/baselines/reference/overloadConsecutiveness.js @@ -21,9 +21,10 @@ function f3() { } var C = /** @class */ (function () { function C() { } - C.prototype.m1 = function () { }; - C.prototype.m2 = function () { }; - C.prototype.m2 = function () { }; - C.prototype.m3 = function () { }; + var C_prototype = C.prototype; + C_prototype.m1 = function () { }; + C_prototype.m2 = function () { }; + C_prototype.m2 = function () { }; + C_prototype.m3 = function () { }; return C; }()); diff --git a/tests/baselines/reference/overrideBaseIntersectionMethod.js b/tests/baselines/reference/overrideBaseIntersectionMethod.js index 9b9637613ec9f..559a2589e767e 100644 --- a/tests/baselines/reference/overrideBaseIntersectionMethod.js +++ b/tests/baselines/reference/overrideBaseIntersectionMethod.js @@ -74,13 +74,14 @@ var Foo = /** @class */ (function (_super) { function Foo() { return _super !== null && _super.apply(this, arguments) || this; } - Foo.prototype.calculate = function () { + var Foo_prototype = Foo.prototype; + Foo_prototype.calculate = function () { return this.x + this.y; }; - Foo.prototype.getLocation = function () { + Foo_prototype.getLocation = function () { return _super.prototype.getLocation.call(this); }; - Foo.prototype.whereAmI = function () { + Foo_prototype.whereAmI = function () { return this.getLocation(); }; return Foo; diff --git a/tests/baselines/reference/parameterNamesInTypeParameterList.js b/tests/baselines/reference/parameterNamesInTypeParameterList.js index 2cab9f35a5f3e..44ec55696a5b2 100644 --- a/tests/baselines/reference/parameterNamesInTypeParameterList.js +++ b/tests/baselines/reference/parameterNamesInTypeParameterList.js @@ -38,14 +38,15 @@ function f2(_a) { var A = /** @class */ (function () { function A() { } - A.prototype.m0 = function (a) { + var A_prototype = A.prototype; + A_prototype.m0 = function (a) { a.b; }; - A.prototype.m1 = function (_a) { + A_prototype.m1 = function (_a) { var a = _a.a; a.b; }; - A.prototype.m2 = function (_a) { + A_prototype.m2 = function (_a) { var a = _a[0]; a.b; }; diff --git a/tests/baselines/reference/parser0_004152.js b/tests/baselines/reference/parser0_004152.js index fe3297ee3c118..3991bc3e878a3 100644 --- a/tests/baselines/reference/parser0_004152.js +++ b/tests/baselines/reference/parser0_004152.js @@ -12,6 +12,7 @@ var Game = /** @class */ (function () { function Game() { this.position = new DisplayPosition([]); } + var Game_prototype = Game.prototype; ; return Game; }()); diff --git a/tests/baselines/reference/parser509667.js b/tests/baselines/reference/parser509667.js index 48dbb8115677b..283a0ed7ee55b 100644 --- a/tests/baselines/reference/parser509667.js +++ b/tests/baselines/reference/parser509667.js @@ -15,14 +15,15 @@ class Foo { var Foo = /** @class */ (function () { function Foo() { } - Foo.prototype.f1 = function () { + var Foo_prototype = Foo.prototype; + Foo_prototype.f1 = function () { if (this. ) ; }; - Foo.prototype.f2 = function () { + Foo_prototype.f2 = function () { }; - Foo.prototype.f3 = function () { + Foo_prototype.f3 = function () { }; return Foo; }()); diff --git a/tests/baselines/reference/parserAstSpans1.js b/tests/baselines/reference/parserAstSpans1.js index fb23c809bd98a..8bafc14d6082f 100644 --- a/tests/baselines/reference/parserAstSpans1.js +++ b/tests/baselines/reference/parserAstSpans1.js @@ -238,15 +238,16 @@ var __extends = (this && this.__extends) || (function () { var c1 = /** @class */ (function () { function c1() { } - c1.prototype.i1_f1 = function () { + var c1_prototype = c1.prototype; + c1_prototype.i1_f1 = function () { }; - c1.prototype.i1_nc_f1 = function () { + c1_prototype.i1_nc_f1 = function () { }; /** c1_f1*/ - c1.prototype.f1 = function () { + c1_prototype.f1 = function () { }; /** c1_nc_f1*/ - c1.prototype.nc_f1 = function () { + c1_prototype.nc_f1 = function () { }; return c1; }()); @@ -283,10 +284,11 @@ var c2 = /** @class */ (function () { function c2(a) { this.c2_p1 = a; } + var c2_prototype = c2.prototype; /** c2 c2_f1*/ - c2.prototype.c2_f1 = function () { + c2_prototype.c2_f1 = function () { }; - Object.defineProperty(c2.prototype, "c2_prop", { + Object.defineProperty(c2_prototype, "c2_prop", { /** c2 c2_prop*/ get: function () { return 10; @@ -294,9 +296,9 @@ var c2 = /** @class */ (function () { enumerable: false, configurable: true }); - c2.prototype.c2_nc_f1 = function () { + c2_prototype.c2_nc_f1 = function () { }; - Object.defineProperty(c2.prototype, "c2_nc_prop", { + Object.defineProperty(c2_prototype, "c2_nc_prop", { get: function () { return 10; }, @@ -304,9 +306,9 @@ var c2 = /** @class */ (function () { configurable: true }); /** c2 f1*/ - c2.prototype.f1 = function () { + c2_prototype.f1 = function () { }; - Object.defineProperty(c2.prototype, "prop", { + Object.defineProperty(c2_prototype, "prop", { /** c2 prop*/ get: function () { return 10; @@ -314,9 +316,9 @@ var c2 = /** @class */ (function () { enumerable: false, configurable: true }); - c2.prototype.nc_f1 = function () { + c2_prototype.nc_f1 = function () { }; - Object.defineProperty(c2.prototype, "nc_prop", { + Object.defineProperty(c2_prototype, "nc_prop", { get: function () { return 10; }, @@ -332,10 +334,11 @@ var c3 = /** @class */ (function (_super) { _this.p1 = _super.prototype.c2_p1; return _this; } + var c3_prototype = c3.prototype; /** c3 f1*/ - c3.prototype.f1 = function () { + c3_prototype.f1 = function () { }; - Object.defineProperty(c3.prototype, "prop", { + Object.defineProperty(c3_prototype, "prop", { /** c3 prop*/ get: function () { return 10; @@ -343,9 +346,9 @@ var c3 = /** @class */ (function (_super) { enumerable: false, configurable: true }); - c3.prototype.nc_f1 = function () { + c3_prototype.nc_f1 = function () { }; - Object.defineProperty(c3.prototype, "nc_prop", { + Object.defineProperty(c3_prototype, "nc_prop", { get: function () { return 10; }, diff --git a/tests/baselines/reference/parserClass1.js b/tests/baselines/reference/parserClass1.js index fccd19557c1d4..5e722f72348e8 100644 --- a/tests/baselines/reference/parserClass1.js +++ b/tests/baselines/reference/parserClass1.js @@ -16,12 +16,13 @@ exports.NullLogger = void 0; var NullLogger = /** @class */ (function () { function NullLogger() { } - NullLogger.prototype.information = function () { return false; }; - NullLogger.prototype.debug = function () { return false; }; - NullLogger.prototype.warning = function () { return false; }; - NullLogger.prototype.error = function () { return false; }; - NullLogger.prototype.fatal = function () { return false; }; - NullLogger.prototype.log = function (s) { + var NullLogger_prototype = NullLogger.prototype; + NullLogger_prototype.information = function () { return false; }; + NullLogger_prototype.debug = function () { return false; }; + NullLogger_prototype.warning = function () { return false; }; + NullLogger_prototype.error = function () { return false; }; + NullLogger_prototype.fatal = function () { return false; }; + NullLogger_prototype.log = function (s) { }; return NullLogger; }()); diff --git a/tests/baselines/reference/parserErrantSemicolonInClass1.js b/tests/baselines/reference/parserErrantSemicolonInClass1.js index 46a89db8a9a9e..9c20cbfeb8949 100644 --- a/tests/baselines/reference/parserErrantSemicolonInClass1.js +++ b/tests/baselines/reference/parserErrantSemicolonInClass1.js @@ -39,9 +39,10 @@ class a { var a = /** @class */ (function () { function a(ns) { } - a.prototype.pgF = function () { }; + var a_prototype = a.prototype; + a_prototype.pgF = function () { }; ; - Object.defineProperty(a.prototype, "d", { + Object.defineProperty(a_prototype, "d", { get: function () { return 30; }, @@ -66,7 +67,7 @@ var a = /** @class */ (function () { enumerable: false, configurable: true }); - a.prototype.foo = function (ns) { + a_prototype.foo = function (ns) { return ns.toString(); }; return a; diff --git a/tests/baselines/reference/parserErrorRecoveryIfStatement1.js b/tests/baselines/reference/parserErrorRecoveryIfStatement1.js index 9358acc10917a..c211ff4d6a0d8 100644 --- a/tests/baselines/reference/parserErrorRecoveryIfStatement1.js +++ b/tests/baselines/reference/parserErrorRecoveryIfStatement1.js @@ -13,13 +13,14 @@ class Foo { var Foo = /** @class */ (function () { function Foo() { } - Foo.prototype.f1 = function () { + var Foo_prototype = Foo.prototype; + Foo_prototype.f1 = function () { if () ; }; - Foo.prototype.f2 = function () { + Foo_prototype.f2 = function () { }; - Foo.prototype.f3 = function () { + Foo_prototype.f3 = function () { }; return Foo; }()); diff --git a/tests/baselines/reference/parserErrorRecoveryIfStatement2.js b/tests/baselines/reference/parserErrorRecoveryIfStatement2.js index c898d888f9899..c89b6cdc47693 100644 --- a/tests/baselines/reference/parserErrorRecoveryIfStatement2.js +++ b/tests/baselines/reference/parserErrorRecoveryIfStatement2.js @@ -13,13 +13,14 @@ class Foo { var Foo = /** @class */ (function () { function Foo() { } - Foo.prototype.f1 = function () { + var Foo_prototype = Foo.prototype; + Foo_prototype.f1 = function () { if (a) ; }; - Foo.prototype.f2 = function () { + Foo_prototype.f2 = function () { }; - Foo.prototype.f3 = function () { + Foo_prototype.f3 = function () { }; return Foo; }()); diff --git a/tests/baselines/reference/parserErrorRecoveryIfStatement3.js b/tests/baselines/reference/parserErrorRecoveryIfStatement3.js index 670f0035340f5..8dc3427fdef26 100644 --- a/tests/baselines/reference/parserErrorRecoveryIfStatement3.js +++ b/tests/baselines/reference/parserErrorRecoveryIfStatement3.js @@ -13,13 +13,14 @@ class Foo { var Foo = /** @class */ (function () { function Foo() { } - Foo.prototype.f1 = function () { + var Foo_prototype = Foo.prototype; + Foo_prototype.f1 = function () { if (a.b) ; }; - Foo.prototype.f2 = function () { + Foo_prototype.f2 = function () { }; - Foo.prototype.f3 = function () { + Foo_prototype.f3 = function () { }; return Foo; }()); diff --git a/tests/baselines/reference/parserErrorRecoveryIfStatement4.js b/tests/baselines/reference/parserErrorRecoveryIfStatement4.js index ead8c1c6e9c35..cf37fc2b09ef5 100644 --- a/tests/baselines/reference/parserErrorRecoveryIfStatement4.js +++ b/tests/baselines/reference/parserErrorRecoveryIfStatement4.js @@ -13,13 +13,14 @@ class Foo { var Foo = /** @class */ (function () { function Foo() { } - Foo.prototype.f1 = function () { + var Foo_prototype = Foo.prototype; + Foo_prototype.f1 = function () { if (a.b) ; }; - Foo.prototype.f2 = function () { + Foo_prototype.f2 = function () { }; - Foo.prototype.f3 = function () { + Foo_prototype.f3 = function () { }; return Foo; }()); diff --git a/tests/baselines/reference/parserErrorRecoveryIfStatement6.js b/tests/baselines/reference/parserErrorRecoveryIfStatement6.js index 39fa8e3ecf768..abe5a48f20ad6 100644 --- a/tests/baselines/reference/parserErrorRecoveryIfStatement6.js +++ b/tests/baselines/reference/parserErrorRecoveryIfStatement6.js @@ -14,13 +14,14 @@ class Foo { var Foo = /** @class */ (function () { function Foo() { } - Foo.prototype.f1 = function () { + var Foo_prototype = Foo.prototype; + Foo_prototype.f1 = function () { if (a.b) { } }; - Foo.prototype.f2 = function () { + Foo_prototype.f2 = function () { }; - Foo.prototype.f3 = function () { + Foo_prototype.f3 = function () { }; return Foo; }()); diff --git a/tests/baselines/reference/parserErrorRecovery_Block3.js b/tests/baselines/reference/parserErrorRecovery_Block3.js index 8bb89b92628a6..fb4ef545ad10f 100644 --- a/tests/baselines/reference/parserErrorRecovery_Block3.js +++ b/tests/baselines/reference/parserErrorRecovery_Block3.js @@ -10,9 +10,10 @@ class C { var C = /** @class */ (function () { function C() { } - C.prototype.a = function () { + var C_prototype = C.prototype; + C_prototype.a = function () { }; - C.prototype.b = function () { + C_prototype.b = function () { }; return C; }()); diff --git a/tests/baselines/reference/parserMemberFunctionDeclarationAmbiguities1.js b/tests/baselines/reference/parserMemberFunctionDeclarationAmbiguities1.js index 9d80f0953cd72..4a246de1011a5 100644 --- a/tests/baselines/reference/parserMemberFunctionDeclarationAmbiguities1.js +++ b/tests/baselines/reference/parserMemberFunctionDeclarationAmbiguities1.js @@ -17,10 +17,11 @@ class C { var C = /** @class */ (function () { function C() { } - C.prototype.public = function () { }; - C.prototype.static = function () { }; - C.prototype.public = function () { }; - C.prototype.static = function () { }; + var C_prototype = C.prototype; + C_prototype.public = function () { }; + C_prototype.static = function () { }; + C_prototype.public = function () { }; + C_prototype.static = function () { }; C.public = function () { }; C.static = function () { }; C.public = function () { }; diff --git a/tests/baselines/reference/parserRealSource1.js b/tests/baselines/reference/parserRealSource1.js index e9cf326b542ea..6e4365cee4e30 100644 --- a/tests/baselines/reference/parserRealSource1.js +++ b/tests/baselines/reference/parserRealSource1.js @@ -189,12 +189,13 @@ var TypeScript; var NullLogger = /** @class */ (function () { function NullLogger() { } - NullLogger.prototype.information = function () { return false; }; - NullLogger.prototype.debug = function () { return false; }; - NullLogger.prototype.warning = function () { return false; }; - NullLogger.prototype.error = function () { return false; }; - NullLogger.prototype.fatal = function () { return false; }; - NullLogger.prototype.log = function (s) { + var NullLogger_prototype = NullLogger.prototype; + NullLogger_prototype.information = function () { return false; }; + NullLogger_prototype.debug = function () { return false; }; + NullLogger_prototype.warning = function () { return false; }; + NullLogger_prototype.error = function () { return false; }; + NullLogger_prototype.fatal = function () { return false; }; + NullLogger_prototype.log = function (s) { }; return NullLogger; }()); @@ -208,12 +209,13 @@ var TypeScript; this._error = this.logger.error(); this._fatal = this.logger.fatal(); } - LoggerAdapter.prototype.information = function () { return this._information; }; - LoggerAdapter.prototype.debug = function () { return this._debug; }; - LoggerAdapter.prototype.warning = function () { return this._warning; }; - LoggerAdapter.prototype.error = function () { return this._error; }; - LoggerAdapter.prototype.fatal = function () { return this._fatal; }; - LoggerAdapter.prototype.log = function (s) { + var LoggerAdapter_prototype = LoggerAdapter.prototype; + LoggerAdapter_prototype.information = function () { return this._information; }; + LoggerAdapter_prototype.debug = function () { return this._debug; }; + LoggerAdapter_prototype.warning = function () { return this._warning; }; + LoggerAdapter_prototype.error = function () { return this._error; }; + LoggerAdapter_prototype.fatal = function () { return this._fatal; }; + LoggerAdapter_prototype.log = function (s) { this.logger.log(s); }; return LoggerAdapter; @@ -223,12 +225,13 @@ var TypeScript; function BufferedLogger() { this.logContents = []; } - BufferedLogger.prototype.information = function () { return false; }; - BufferedLogger.prototype.debug = function () { return false; }; - BufferedLogger.prototype.warning = function () { return false; }; - BufferedLogger.prototype.error = function () { return false; }; - BufferedLogger.prototype.fatal = function () { return false; }; - BufferedLogger.prototype.log = function (s) { + var BufferedLogger_prototype = BufferedLogger.prototype; + BufferedLogger_prototype.information = function () { return false; }; + BufferedLogger_prototype.debug = function () { return false; }; + BufferedLogger_prototype.warning = function () { return false; }; + BufferedLogger_prototype.error = function () { return false; }; + BufferedLogger_prototype.fatal = function () { return false; }; + BufferedLogger_prototype.log = function (s) { this.logContents.push(s); }; return BufferedLogger; diff --git a/tests/baselines/reference/parserRealSource10.js b/tests/baselines/reference/parserRealSource10.js index 58ac993022b06..3b0874e9f63fc 100644 --- a/tests/baselines/reference/parserRealSource10.js +++ b/tests/baselines/reference/parserRealSource10.js @@ -806,16 +806,17 @@ var TypeScript; function Token(tokenId) { this.tokenId = tokenId; } - Token.prototype.toString = function () { + var Token_prototype = Token.prototype; + Token_prototype.toString = function () { return "token: " + this.tokenId + " " + this.getText() + " (" + TokenID._map[this.tokenId] + ")"; }; - Token.prototype.print = function (line, outfile) { + Token_prototype.print = function (line, outfile) { outfile.WriteLine(this.toString() + ",on line" + line); }; - Token.prototype.getText = function () { + Token_prototype.getText = function () { return TypeScript.tokenTable[this.tokenId].text; }; - Token.prototype.classification = function () { + Token_prototype.classification = function () { if (this.tokenId <= TokenID.LimKeyword) { return TokenClass.Keyword; } @@ -841,10 +842,11 @@ var TypeScript; _this.hasEmptyFraction = hasEmptyFraction; return _this; } - NumberLiteralToken.prototype.getText = function () { + var NumberLiteralToken_prototype = NumberLiteralToken.prototype; + NumberLiteralToken_prototype.getText = function () { return this.hasEmptyFraction ? this.value.toString() + ".0" : this.value.toString(); }; - NumberLiteralToken.prototype.classification = function () { + NumberLiteralToken_prototype.classification = function () { return TokenClass.Literal; }; return NumberLiteralToken; @@ -857,10 +859,11 @@ var TypeScript; _this.value = value; return _this; } - StringLiteralToken.prototype.getText = function () { + var StringLiteralToken_prototype = StringLiteralToken.prototype; + StringLiteralToken_prototype.getText = function () { return this.value; }; - StringLiteralToken.prototype.classification = function () { + StringLiteralToken_prototype.classification = function () { return TokenClass.Literal; }; return StringLiteralToken; @@ -874,10 +877,11 @@ var TypeScript; _this.hasEscapeSequence = hasEscapeSequence; return _this; } - IdentifierToken.prototype.getText = function () { + var IdentifierToken_prototype = IdentifierToken.prototype; + IdentifierToken_prototype.getText = function () { return this.value; }; - IdentifierToken.prototype.classification = function () { + IdentifierToken_prototype.classification = function () { return TokenClass.Identifier; }; return IdentifierToken; @@ -890,10 +894,11 @@ var TypeScript; _this.value = value; return _this; } - WhitespaceToken.prototype.getText = function () { + var WhitespaceToken_prototype = WhitespaceToken.prototype; + WhitespaceToken_prototype.getText = function () { return this.value; }; - WhitespaceToken.prototype.classification = function () { + WhitespaceToken_prototype.classification = function () { return TokenClass.Whitespace; }; return WhitespaceToken; @@ -910,10 +915,11 @@ var TypeScript; _this.endsLine = endsLine; return _this; } - CommentToken.prototype.getText = function () { + var CommentToken_prototype = CommentToken.prototype; + CommentToken_prototype.getText = function () { return this.value; }; - CommentToken.prototype.classification = function () { + CommentToken_prototype.classification = function () { return TokenClass.Comment; }; return CommentToken; @@ -926,10 +932,11 @@ var TypeScript; _this.regex = regex; return _this; } - RegularExpressionLiteralToken.prototype.getText = function () { + var RegularExpressionLiteralToken_prototype = RegularExpressionLiteralToken.prototype; + RegularExpressionLiteralToken_prototype.getText = function () { return this.regex.toString(); }; - RegularExpressionLiteralToken.prototype.classification = function () { + RegularExpressionLiteralToken_prototype.classification = function () { return TokenClass.Literal; }; return RegularExpressionLiteralToken; diff --git a/tests/baselines/reference/parserRealSource11.js b/tests/baselines/reference/parserRealSource11.js index 1b6b688ec93b8..d2648837b4825 100644 --- a/tests/baselines/reference/parserRealSource11.js +++ b/tests/baselines/reference/parserRealSource11.js @@ -2407,11 +2407,12 @@ var TypeScript; _this.isParenthesized = false; return _this; } - AST.prototype.isExpression = function () { return false; }; - AST.prototype.isStatementOrExpression = function () { return false; }; - AST.prototype.isCompoundStatement = function () { return false; }; - AST.prototype.isLeaf = function () { return this.isStatementOrExpression() && (!this.isCompoundStatement()); }; - AST.prototype.typeCheck = function (typeFlow) { + var AST_prototype = AST.prototype; + AST_prototype.isExpression = function () { return false; }; + AST_prototype.isStatementOrExpression = function () { return false; }; + AST_prototype.isCompoundStatement = function () { return false; }; + AST_prototype.isLeaf = function () { return this.isStatementOrExpression() && (!this.isCompoundStatement()); }; + AST_prototype.typeCheck = function (typeFlow) { switch (this.nodeType) { case NodeType.Error: case NodeType.EmptyExpr: @@ -2438,7 +2439,7 @@ var TypeScript; } return this; }; - AST.prototype.emit = function (emitter, tokenId, startLine) { + AST_prototype.emit = function (emitter, tokenId, startLine) { emitter.emitParensAndCommentsInPlace(this, true); switch (this.nodeType) { case NodeType.This: @@ -2491,7 +2492,7 @@ var TypeScript; } emitter.emitParensAndCommentsInPlace(this, false); }; - AST.prototype.print = function (context) { + AST_prototype.print = function (context) { context.startLine(); var lineCol = { line: -1, col: -1 }; var limLineCol = { line: -1, col: -1 }; @@ -2507,7 +2508,7 @@ var TypeScript; } context.writeLine(lab); }; - AST.prototype.printLabel = function () { + AST_prototype.printLabel = function () { if (nodeTypeTable[this.nodeType] !== undefined) { return nodeTypeTable[this.nodeType]; } @@ -2515,14 +2516,14 @@ var TypeScript; return NodeType._map[this.nodeType]; } }; - AST.prototype.addToControlFlow = function (context) { + AST_prototype.addToControlFlow = function (context) { // by default, AST adds itself to current basic block and does not check its children context.walker.options.goChildren = false; context.addContent(this); }; - AST.prototype.netFreeUses = function (container, freeUses) { + AST_prototype.netFreeUses = function (container, freeUses) { }; - AST.prototype.treeViewLabel = function () { + AST_prototype.treeViewLabel = function () { return NodeType._map[this.nodeType]; }; AST.getResolvedIdentifierName = function (name) { @@ -2569,7 +2570,8 @@ var TypeScript; _this.members = new AST[]; return _this; } - ASTList.prototype.addToControlFlow = function (context) { + var ASTList_prototype = ASTList.prototype; + ASTList_prototype.addToControlFlow = function (context) { var len = this.members.length; for (var i = 0; i < len; i++) { if (context.noContinuation) { @@ -2582,11 +2584,11 @@ var TypeScript; } context.walker.options.goChildren = false; }; - ASTList.prototype.append = function (ast) { + ASTList_prototype.append = function (ast) { this.members[this.members.length] = ast; return this; }; - ASTList.prototype.appendAll = function (ast) { + ASTList_prototype.appendAll = function (ast) { if (ast.nodeType == NodeType.List) { var list = ast; for (var i = 0, len = list.members.length; i < len; i++) { @@ -2598,12 +2600,12 @@ var TypeScript; } return this; }; - ASTList.prototype.emit = function (emitter, tokenId, startLine) { + ASTList_prototype.emit = function (emitter, tokenId, startLine) { emitter.recordSourceMappingStart(this); emitter.emitJavascriptList(this, null, TokenID.Semicolon, startLine, false, false); emitter.recordSourceMappingEnd(this); }; - ASTList.prototype.typeCheck = function (typeFlow) { + ASTList_prototype.typeCheck = function (typeFlow) { var len = this.members.length; typeFlow.nestingLevel++; for (var i = 0; i < len; i++) { @@ -2640,7 +2642,8 @@ var TypeScript; _this.setText(actualText, hasEscapeSequence); return _this; } - Identifier.prototype.setText = function (actualText, hasEscapeSequence) { + var Identifier_prototype = Identifier.prototype; + Identifier_prototype.setText = function (actualText, hasEscapeSequence) { this.actualText = actualText; if (hasEscapeSequence) { this.text = AST.getResolvedIdentifierName(actualText); @@ -2649,12 +2652,12 @@ var TypeScript; this.text = actualText; } }; - Identifier.prototype.isMissing = function () { return false; }; - Identifier.prototype.isLeaf = function () { return true; }; - Identifier.prototype.treeViewLabel = function () { + Identifier_prototype.isMissing = function () { return false; }; + Identifier_prototype.isLeaf = function () { return true; }; + Identifier_prototype.treeViewLabel = function () { return "id: " + this.actualText; }; - Identifier.prototype.printLabel = function () { + Identifier_prototype.printLabel = function () { if (this.actualText) { return "id: " + this.actualText; } @@ -2662,10 +2665,10 @@ var TypeScript; return "name node"; } }; - Identifier.prototype.typeCheck = function (typeFlow) { + Identifier_prototype.typeCheck = function (typeFlow) { return typeFlow.typeCheckName(this); }; - Identifier.prototype.emit = function (emitter, tokenId, startLine) { + Identifier_prototype.emit = function (emitter, tokenId, startLine) { emitter.emitJavascriptName(this, true); }; Identifier.fromToken = function (token) { @@ -2679,10 +2682,11 @@ var TypeScript; function MissingIdentifier() { return _super.call(this, "__missing") || this; } - MissingIdentifier.prototype.isMissing = function () { + var MissingIdentifier_prototype = MissingIdentifier.prototype; + MissingIdentifier_prototype.isMissing = function () { return true; }; - MissingIdentifier.prototype.emit = function (emitter, tokenId, startLine) { + MissingIdentifier_prototype.emit = function (emitter, tokenId, startLine) { // Emit nothing for a missing ID }; return MissingIdentifier; @@ -2695,12 +2699,13 @@ var TypeScript; _this.id = id; return _this; } - Label.prototype.printLabel = function () { return this.id.actualText + ":"; }; - Label.prototype.typeCheck = function (typeFlow) { + var Label_prototype = Label.prototype; + Label_prototype.printLabel = function () { return this.id.actualText + ":"; }; + Label_prototype.typeCheck = function (typeFlow) { this.type = typeFlow.voidType; return this; }; - Label.prototype.emit = function (emitter, tokenId, startLine) { + Label_prototype.emit = function (emitter, tokenId, startLine) { emitter.emitParensAndCommentsInPlace(this, true); emitter.recordSourceMappingStart(this); emitter.recordSourceMappingStart(this.id); @@ -2718,8 +2723,9 @@ var TypeScript; function Expression(nodeType) { return _super.call(this, nodeType) || this; } - Expression.prototype.isExpression = function () { return true; }; - Expression.prototype.isStatementOrExpression = function () { return true; }; + var Expression_prototype = Expression.prototype; + Expression_prototype.isExpression = function () { return true; }; + Expression_prototype.isStatementOrExpression = function () { return true; }; return Expression; }(AST)); TypeScript.Expression = Expression; @@ -2732,14 +2738,15 @@ var TypeScript; _this.castTerm = null; return _this; } - UnaryExpression.prototype.addToControlFlow = function (context) { + var UnaryExpression_prototype = UnaryExpression.prototype; + UnaryExpression_prototype.addToControlFlow = function (context) { _super.prototype.addToControlFlow.call(this, context); // TODO: add successor as catch block/finally block if present if (this.nodeType == NodeType.Throw) { context.returnStmt(); } }; - UnaryExpression.prototype.typeCheck = function (typeFlow) { + UnaryExpression_prototype.typeCheck = function (typeFlow) { switch (this.nodeType) { case NodeType.Not: return typeFlow.typeCheckBitNot(this); @@ -2791,7 +2798,7 @@ var TypeScript; } return this; }; - UnaryExpression.prototype.emit = function (emitter, tokenId, startLine) { + UnaryExpression_prototype.emit = function (emitter, tokenId, startLine) { emitter.emitParensAndCommentsInPlace(this, true); emitter.recordSourceMappingStart(this); switch (this.nodeType) { @@ -2878,7 +2885,8 @@ var TypeScript; _this.minChar = _this.target.minChar; return _this; } - CallExpression.prototype.typeCheck = function (typeFlow) { + var CallExpression_prototype = CallExpression.prototype; + CallExpression_prototype.typeCheck = function (typeFlow) { if (this.nodeType == NodeType.New) { return typeFlow.typeCheckNew(this); } @@ -2886,7 +2894,7 @@ var TypeScript; return typeFlow.typeCheckCall(this); } }; - CallExpression.prototype.emit = function (emitter, tokenId, startLine) { + CallExpression_prototype.emit = function (emitter, tokenId, startLine) { emitter.emitParensAndCommentsInPlace(this, true); emitter.recordSourceMappingStart(this); if (this.nodeType == NodeType.New) { @@ -2909,7 +2917,8 @@ var TypeScript; _this.operand2 = operand2; return _this; } - BinaryExpression.prototype.typeCheck = function (typeFlow) { + var BinaryExpression_prototype = BinaryExpression.prototype; + BinaryExpression_prototype.typeCheck = function (typeFlow) { switch (this.nodeType) { case NodeType.Dot: return typeFlow.typeCheckDotOperator(this); @@ -2986,7 +2995,7 @@ var TypeScript; } return this; }; - BinaryExpression.prototype.emit = function (emitter, tokenId, startLine) { + BinaryExpression_prototype.emit = function (emitter, tokenId, startLine) { var binTokenId = nodeTypeToTokTable[this.nodeType]; emitter.emitParensAndCommentsInPlace(this, true); emitter.recordSourceMappingStart(this); @@ -3063,10 +3072,11 @@ var TypeScript; _this.operand3 = operand3; return _this; } - ConditionalExpression.prototype.typeCheck = function (typeFlow) { + var ConditionalExpression_prototype = ConditionalExpression.prototype; + ConditionalExpression_prototype.typeCheck = function (typeFlow) { return typeFlow.typeCheckQMark(this); }; - ConditionalExpression.prototype.emit = function (emitter, tokenId, startLine) { + ConditionalExpression_prototype.emit = function (emitter, tokenId, startLine) { emitter.emitParensAndCommentsInPlace(this, true); emitter.recordSourceMappingStart(this); emitter.emitJavascript(this.operand1, TokenID.Question, false); @@ -3089,14 +3099,15 @@ var TypeScript; _this.isNegativeZero = false; return _this; } - NumberLiteral.prototype.typeCheck = function (typeFlow) { + var NumberLiteral_prototype = NumberLiteral.prototype; + NumberLiteral_prototype.typeCheck = function (typeFlow) { this.type = typeFlow.doubleType; return this; }; - NumberLiteral.prototype.treeViewLabel = function () { + NumberLiteral_prototype.treeViewLabel = function () { return "num: " + this.printLabel(); }; - NumberLiteral.prototype.emit = function (emitter, tokenId, startLine) { + NumberLiteral_prototype.emit = function (emitter, tokenId, startLine) { emitter.emitParensAndCommentsInPlace(this, true); emitter.recordSourceMappingStart(this); if (this.isNegativeZero) { @@ -3108,7 +3119,7 @@ var TypeScript; emitter.recordSourceMappingEnd(this); emitter.emitParensAndCommentsInPlace(this, false); }; - NumberLiteral.prototype.printLabel = function () { + NumberLiteral_prototype.printLabel = function () { if (Math.floor(this.value) != this.value) { return this.value.toFixed(2).toString(); } @@ -3129,11 +3140,12 @@ var TypeScript; _this.regex = regex; return _this; } - RegexLiteral.prototype.typeCheck = function (typeFlow) { + var RegexLiteral_prototype = RegexLiteral.prototype; + RegexLiteral_prototype.typeCheck = function (typeFlow) { this.type = typeFlow.regexType; return this; }; - RegexLiteral.prototype.emit = function (emitter, tokenId, startLine) { + RegexLiteral_prototype.emit = function (emitter, tokenId, startLine) { emitter.emitParensAndCommentsInPlace(this, true); emitter.recordSourceMappingStart(this); emitter.writeToOutput(this.regex.toString()); @@ -3150,21 +3162,22 @@ var TypeScript; _this.text = text; return _this; } - StringLiteral.prototype.emit = function (emitter, tokenId, startLine) { + var StringLiteral_prototype = StringLiteral.prototype; + StringLiteral_prototype.emit = function (emitter, tokenId, startLine) { emitter.emitParensAndCommentsInPlace(this, true); emitter.recordSourceMappingStart(this); emitter.emitStringLiteral(this.text); emitter.recordSourceMappingEnd(this); emitter.emitParensAndCommentsInPlace(this, false); }; - StringLiteral.prototype.typeCheck = function (typeFlow) { + StringLiteral_prototype.typeCheck = function (typeFlow) { this.type = typeFlow.stringType; return this; }; - StringLiteral.prototype.treeViewLabel = function () { + StringLiteral_prototype.treeViewLabel = function () { return "st: " + this.text; }; - StringLiteral.prototype.printLabel = function () { + StringLiteral_prototype.printLabel = function () { return this.text; }; return StringLiteral; @@ -3188,8 +3201,9 @@ var TypeScript; _this.isDynamicImport = false; return _this; } - ImportDeclaration.prototype.isStatementOrExpression = function () { return true; }; - ImportDeclaration.prototype.emit = function (emitter, tokenId, startLine) { + var ImportDeclaration_prototype = ImportDeclaration.prototype; + ImportDeclaration_prototype.isStatementOrExpression = function () { return true; }; + ImportDeclaration_prototype.emit = function (emitter, tokenId, startLine) { var mod = this.alias.type; // REVIEW: Only modules may be aliased for now, though there's no real // restriction on what the type symbol may be @@ -3212,10 +3226,10 @@ var TypeScript; emitter.firstModAlias = prevFirstModAlias; } }; - ImportDeclaration.prototype.typeCheck = function (typeFlow) { + ImportDeclaration_prototype.typeCheck = function (typeFlow) { return typeFlow.typeCheckImportDecl(this); }; - ImportDeclaration.prototype.getAliasName = function (aliasAST) { + ImportDeclaration_prototype.getAliasName = function (aliasAST) { if (aliasAST === void 0) { aliasAST = this.alias; } if (aliasAST.nodeType == NodeType.Name) { return aliasAST.actualText; @@ -3225,7 +3239,7 @@ var TypeScript; return this.getAliasName(dotExpr.operand1) + "." + this.getAliasName(dotExpr.operand2); } }; - ImportDeclaration.prototype.firstAliasedModToString = function () { + ImportDeclaration_prototype.firstAliasedModToString = function () { if (this.alias.nodeType == NodeType.Name) { return this.alias.actualText; } @@ -3250,14 +3264,15 @@ var TypeScript; _this.sym = null; return _this; } - BoundDecl.prototype.isStatementOrExpression = function () { return true; }; - BoundDecl.prototype.isPrivate = function () { return hasFlag(this.varFlags, VarFlags.Private); }; - BoundDecl.prototype.isPublic = function () { return hasFlag(this.varFlags, VarFlags.Public); }; - BoundDecl.prototype.isProperty = function () { return hasFlag(this.varFlags, VarFlags.Property); }; - BoundDecl.prototype.typeCheck = function (typeFlow) { + var BoundDecl_prototype = BoundDecl.prototype; + BoundDecl_prototype.isStatementOrExpression = function () { return true; }; + BoundDecl_prototype.isPrivate = function () { return hasFlag(this.varFlags, VarFlags.Private); }; + BoundDecl_prototype.isPublic = function () { return hasFlag(this.varFlags, VarFlags.Public); }; + BoundDecl_prototype.isProperty = function () { return hasFlag(this.varFlags, VarFlags.Property); }; + BoundDecl_prototype.typeCheck = function (typeFlow) { return typeFlow.typeCheckBoundDecl(this); }; - BoundDecl.prototype.printLabel = function () { + BoundDecl_prototype.printLabel = function () { return this.treeViewLabel(); }; return BoundDecl; @@ -3268,13 +3283,14 @@ var TypeScript; function VarDecl(id, nest) { return _super.call(this, id, NodeType.VarDecl, nest) || this; } - VarDecl.prototype.isAmbient = function () { return hasFlag(this.varFlags, VarFlags.Ambient); }; - VarDecl.prototype.isExported = function () { return hasFlag(this.varFlags, VarFlags.Exported); }; - VarDecl.prototype.isStatic = function () { return hasFlag(this.varFlags, VarFlags.Static); }; - VarDecl.prototype.emit = function (emitter, tokenId, startLine) { + var VarDecl_prototype = VarDecl.prototype; + VarDecl_prototype.isAmbient = function () { return hasFlag(this.varFlags, VarFlags.Ambient); }; + VarDecl_prototype.isExported = function () { return hasFlag(this.varFlags, VarFlags.Exported); }; + VarDecl_prototype.isStatic = function () { return hasFlag(this.varFlags, VarFlags.Static); }; + VarDecl_prototype.emit = function (emitter, tokenId, startLine) { emitter.emitJavascriptVarDecl(this, tokenId); }; - VarDecl.prototype.treeViewLabel = function () { + VarDecl_prototype.treeViewLabel = function () { return "var " + this.id.actualText; }; return VarDecl; @@ -3288,11 +3304,12 @@ var TypeScript; _this.parameterPropertySym = null; return _this; } - ArgDecl.prototype.isOptionalArg = function () { return this.isOptional || this.init; }; - ArgDecl.prototype.treeViewLabel = function () { + var ArgDecl_prototype = ArgDecl.prototype; + ArgDecl_prototype.isOptionalArg = function () { return this.isOptional || this.init; }; + ArgDecl_prototype.treeViewLabel = function () { return "arg: " + this.id.actualText; }; - ArgDecl.prototype.emit = function (emitter, tokenId, startLine) { + ArgDecl_prototype.emit = function (emitter, tokenId, startLine) { emitter.emitParensAndCommentsInPlace(this, true); emitter.recordSourceMappingStart(this); emitter.writeToOutput(this.id.actualText); @@ -3338,7 +3355,8 @@ var TypeScript; _this.endingToken = null; return _this; } - FuncDecl.prototype.internalName = function () { + var FuncDecl_prototype = FuncDecl.prototype; + FuncDecl_prototype.internalName = function () { if (this.internalNameCache == null) { var extName = this.getNameText(); if (extName) { @@ -3350,9 +3368,9 @@ var TypeScript; } return this.internalNameCache; }; - FuncDecl.prototype.hasSelfReference = function () { return hasFlag(this.fncFlags, FncFlags.HasSelfReference); }; - FuncDecl.prototype.setHasSelfReference = function () { this.fncFlags |= FncFlags.HasSelfReference; }; - FuncDecl.prototype.addCloRef = function (id, sym) { + FuncDecl_prototype.hasSelfReference = function () { return hasFlag(this.fncFlags, FncFlags.HasSelfReference); }; + FuncDecl_prototype.setHasSelfReference = function () { this.fncFlags |= FncFlags.HasSelfReference; }; + FuncDecl_prototype.addCloRef = function (id, sym) { if (this.envids == null) { this.envids = new Identifier[]; } @@ -3366,7 +3384,7 @@ var TypeScript; } return this.envids.length - 1; }; - FuncDecl.prototype.addJumpRef = function (sym) { + FuncDecl_prototype.addJumpRef = function (sym) { if (this.jumpRefs == null) { this.jumpRefs = new Identifier[]; } @@ -3375,7 +3393,7 @@ var TypeScript; id.sym = sym; id.cloId = this.addCloRef(id, null); }; - FuncDecl.prototype.buildControlFlow = function () { + FuncDecl_prototype.buildControlFlow = function () { var entry = new BasicBlock(); var exit = new BasicBlock(); var context = new ControlFlowContext(entry, exit); @@ -3388,13 +3406,13 @@ var TypeScript; walker.walk(this.bod, this); return context; }; - FuncDecl.prototype.typeCheck = function (typeFlow) { + FuncDecl_prototype.typeCheck = function (typeFlow) { return typeFlow.typeCheckFunction(this); }; - FuncDecl.prototype.emit = function (emitter, tokenId, startLine) { + FuncDecl_prototype.emit = function (emitter, tokenId, startLine) { emitter.emitJavascriptFunction(this); }; - FuncDecl.prototype.getNameText = function () { + FuncDecl_prototype.getNameText = function () { if (this.name) { return this.name.actualText; } @@ -3402,23 +3420,23 @@ var TypeScript; return this.hint; } }; - FuncDecl.prototype.isMethod = function () { + FuncDecl_prototype.isMethod = function () { return (this.fncFlags & FncFlags.Method) != FncFlags.None; }; - FuncDecl.prototype.isCallMember = function () { return hasFlag(this.fncFlags, FncFlags.CallMember); }; - FuncDecl.prototype.isConstructMember = function () { return hasFlag(this.fncFlags, FncFlags.ConstructMember); }; - FuncDecl.prototype.isIndexerMember = function () { return hasFlag(this.fncFlags, FncFlags.IndexerMember); }; - FuncDecl.prototype.isSpecialFn = function () { return this.isCallMember() || this.isIndexerMember() || this.isConstructMember(); }; - FuncDecl.prototype.isAnonymousFn = function () { return this.name === null; }; - FuncDecl.prototype.isAccessor = function () { return hasFlag(this.fncFlags, FncFlags.GetAccessor) || hasFlag(this.fncFlags, FncFlags.SetAccessor); }; - FuncDecl.prototype.isGetAccessor = function () { return hasFlag(this.fncFlags, FncFlags.GetAccessor); }; - FuncDecl.prototype.isSetAccessor = function () { return hasFlag(this.fncFlags, FncFlags.SetAccessor); }; - FuncDecl.prototype.isAmbient = function () { return hasFlag(this.fncFlags, FncFlags.Ambient); }; - FuncDecl.prototype.isExported = function () { return hasFlag(this.fncFlags, FncFlags.Exported); }; - FuncDecl.prototype.isPrivate = function () { return hasFlag(this.fncFlags, FncFlags.Private); }; - FuncDecl.prototype.isPublic = function () { return hasFlag(this.fncFlags, FncFlags.Public); }; - FuncDecl.prototype.isStatic = function () { return hasFlag(this.fncFlags, FncFlags.Static); }; - FuncDecl.prototype.treeViewLabel = function () { + FuncDecl_prototype.isCallMember = function () { return hasFlag(this.fncFlags, FncFlags.CallMember); }; + FuncDecl_prototype.isConstructMember = function () { return hasFlag(this.fncFlags, FncFlags.ConstructMember); }; + FuncDecl_prototype.isIndexerMember = function () { return hasFlag(this.fncFlags, FncFlags.IndexerMember); }; + FuncDecl_prototype.isSpecialFn = function () { return this.isCallMember() || this.isIndexerMember() || this.isConstructMember(); }; + FuncDecl_prototype.isAnonymousFn = function () { return this.name === null; }; + FuncDecl_prototype.isAccessor = function () { return hasFlag(this.fncFlags, FncFlags.GetAccessor) || hasFlag(this.fncFlags, FncFlags.SetAccessor); }; + FuncDecl_prototype.isGetAccessor = function () { return hasFlag(this.fncFlags, FncFlags.GetAccessor); }; + FuncDecl_prototype.isSetAccessor = function () { return hasFlag(this.fncFlags, FncFlags.SetAccessor); }; + FuncDecl_prototype.isAmbient = function () { return hasFlag(this.fncFlags, FncFlags.Ambient); }; + FuncDecl_prototype.isExported = function () { return hasFlag(this.fncFlags, FncFlags.Exported); }; + FuncDecl_prototype.isPrivate = function () { return hasFlag(this.fncFlags, FncFlags.Private); }; + FuncDecl_prototype.isPublic = function () { return hasFlag(this.fncFlags, FncFlags.Public); }; + FuncDecl_prototype.isStatic = function () { return hasFlag(this.fncFlags, FncFlags.Static); }; + FuncDecl_prototype.treeViewLabel = function () { if (this.name == null) { return "funcExpr"; } @@ -3426,11 +3444,11 @@ var TypeScript; return "func: " + this.name.actualText; } }; - FuncDecl.prototype.ClearFlags = function () { + FuncDecl_prototype.ClearFlags = function () { this.fncFlags = FncFlags.None; }; - FuncDecl.prototype.isSignature = function () { return (this.fncFlags & FncFlags.Signature) != FncFlags.None; }; - FuncDecl.prototype.hasStaticDeclarations = function () { return (!this.isConstructor && (this.statics.members.length > 0 || this.innerStaticFuncs.length > 0)); }; + FuncDecl_prototype.isSignature = function () { return (this.fncFlags & FncFlags.Signature) != FncFlags.None; }; + FuncDecl_prototype.hasStaticDeclarations = function () { return (!this.isConstructor && (this.statics.members.length > 0 || this.innerStaticFuncs.length > 0)); }; return FuncDecl; }(AST)); TypeScript.FuncDecl = FuncDecl; @@ -3465,13 +3483,14 @@ var TypeScript; _this.scopes = scopes; return _this; } - Script.prototype.typeCheck = function (typeFlow) { + var Script_prototype = Script.prototype; + Script_prototype.typeCheck = function (typeFlow) { return typeFlow.typeCheckScript(this); }; - Script.prototype.treeViewLabel = function () { + Script_prototype.treeViewLabel = function () { return "Script"; }; - Script.prototype.emitRequired = function () { + Script_prototype.emitRequired = function () { if (!this.isDeclareFile && !this.isResident && this.bod) { for (var i = 0, len = this.bod.members.length; i < len; i++) { var stmt = this.bod.members[i]; @@ -3502,7 +3521,7 @@ var TypeScript; } return false; }; - Script.prototype.emit = function (emitter, tokenId, startLine) { + Script_prototype.emit = function (emitter, tokenId, startLine) { if (this.emitRequired()) { emitter.emitParensAndCommentsInPlace(this, true); emitter.recordSourceMappingStart(this); @@ -3542,16 +3561,17 @@ var TypeScript; _this.prettyName = _this.name.actualText; return _this; } - ModuleDeclaration.prototype.isExported = function () { return hasFlag(this.modFlags, ModuleFlags.Exported); }; - ModuleDeclaration.prototype.isAmbient = function () { return hasFlag(this.modFlags, ModuleFlags.Ambient); }; - ModuleDeclaration.prototype.isEnum = function () { return hasFlag(this.modFlags, ModuleFlags.IsEnum); }; - ModuleDeclaration.prototype.recordNonInterface = function () { + var ModuleDeclaration_prototype = ModuleDeclaration.prototype; + ModuleDeclaration_prototype.isExported = function () { return hasFlag(this.modFlags, ModuleFlags.Exported); }; + ModuleDeclaration_prototype.isAmbient = function () { return hasFlag(this.modFlags, ModuleFlags.Ambient); }; + ModuleDeclaration_prototype.isEnum = function () { return hasFlag(this.modFlags, ModuleFlags.IsEnum); }; + ModuleDeclaration_prototype.recordNonInterface = function () { this.modFlags &= ~ModuleFlags.ShouldEmitModuleDecl; }; - ModuleDeclaration.prototype.typeCheck = function (typeFlow) { + ModuleDeclaration_prototype.typeCheck = function (typeFlow) { return typeFlow.typeCheckModule(this); }; - ModuleDeclaration.prototype.emit = function (emitter, tokenId, startLine) { + ModuleDeclaration_prototype.emit = function (emitter, tokenId, startLine) { if (!hasFlag(this.modFlags, ModuleFlags.ShouldEmitModuleDecl)) { emitter.emitParensAndCommentsInPlace(this, true); emitter.recordSourceMappingStart(this); @@ -3572,10 +3592,11 @@ var TypeScript; _this.varFlags = VarFlags.None; return _this; } - TypeDeclaration.prototype.isExported = function () { + var TypeDeclaration_prototype = TypeDeclaration.prototype; + TypeDeclaration_prototype.isExported = function () { return hasFlag(this.varFlags, VarFlags.Exported); }; - TypeDeclaration.prototype.isAmbient = function () { + TypeDeclaration_prototype.isAmbient = function () { return hasFlag(this.varFlags, VarFlags.Ambient); }; return TypeDeclaration; @@ -3591,10 +3612,11 @@ var TypeScript; _this.endingToken = null; return _this; } - ClassDeclaration.prototype.typeCheck = function (typeFlow) { + var ClassDeclaration_prototype = ClassDeclaration.prototype; + ClassDeclaration_prototype.typeCheck = function (typeFlow) { return typeFlow.typeCheckClass(this); }; - ClassDeclaration.prototype.emit = function (emitter, tokenId, startLine) { + ClassDeclaration_prototype.emit = function (emitter, tokenId, startLine) { emitter.emitJavascriptClass(this); }; return ClassDeclaration; @@ -3605,10 +3627,11 @@ var TypeScript; function InterfaceDeclaration(name, members, extendsList, implementsList) { return _super.call(this, NodeType.InterfaceDeclaration, name, extendsList, implementsList, members) || this; } - InterfaceDeclaration.prototype.typeCheck = function (typeFlow) { + var InterfaceDeclaration_prototype = InterfaceDeclaration.prototype; + InterfaceDeclaration_prototype.typeCheck = function (typeFlow) { return typeFlow.typeCheckInterface(this); }; - InterfaceDeclaration.prototype.emit = function (emitter, tokenId, startLine) { + InterfaceDeclaration_prototype.emit = function (emitter, tokenId, startLine) { }; return InterfaceDeclaration; }(TypeDeclaration)); @@ -3620,10 +3643,11 @@ var TypeScript; _this.flags |= ASTFlags.IsStatement; return _this; } - Statement.prototype.isLoop = function () { return false; }; - Statement.prototype.isStatementOrExpression = function () { return true; }; - Statement.prototype.isCompoundStatement = function () { return this.isLoop(); }; - Statement.prototype.typeCheck = function (typeFlow) { + var Statement_prototype = Statement.prototype; + Statement_prototype.isLoop = function () { return false; }; + Statement_prototype.isStatementOrExpression = function () { return true; }; + Statement_prototype.isCompoundStatement = function () { return this.isLoop(); }; + Statement_prototype.typeCheck = function (typeFlow) { this.type = typeFlow.voidType; return this; }; @@ -3638,7 +3662,8 @@ var TypeScript; _this.stmt = stmt; return _this; } - LabeledStatement.prototype.emit = function (emitter, tokenId, startLine) { + var LabeledStatement_prototype = LabeledStatement.prototype; + LabeledStatement_prototype.emit = function (emitter, tokenId, startLine) { emitter.emitParensAndCommentsInPlace(this, true); emitter.recordSourceMappingStart(this); if (this.labels) { @@ -3651,12 +3676,12 @@ var TypeScript; emitter.recordSourceMappingEnd(this); emitter.emitParensAndCommentsInPlace(this, false); }; - LabeledStatement.prototype.typeCheck = function (typeFlow) { + LabeledStatement_prototype.typeCheck = function (typeFlow) { typeFlow.typeCheck(this.labels); this.stmt = this.stmt.typeCheck(typeFlow); return this; }; - LabeledStatement.prototype.addToControlFlow = function (context) { + LabeledStatement_prototype.addToControlFlow = function (context) { var beforeBB = context.current; var bb = new BasicBlock(); context.current = bb; @@ -3673,7 +3698,8 @@ var TypeScript; _this.isStatementBlock = isStatementBlock; return _this; } - Block.prototype.emit = function (emitter, tokenId, startLine) { + var Block_prototype = Block.prototype; + Block_prototype.emit = function (emitter, tokenId, startLine) { emitter.emitParensAndCommentsInPlace(this, true); emitter.recordSourceMappingStart(this); if (this.isStatementBlock) { @@ -3696,7 +3722,7 @@ var TypeScript; emitter.recordSourceMappingEnd(this); emitter.emitParensAndCommentsInPlace(this, false); }; - Block.prototype.addToControlFlow = function (context) { + Block_prototype.addToControlFlow = function (context) { var afterIfNeeded = new BasicBlock(); context.pushStatement(this, context.current, afterIfNeeded); if (this.statements) { @@ -3709,7 +3735,7 @@ var TypeScript; context.current = afterIfNeeded; } }; - Block.prototype.typeCheck = function (typeFlow) { + Block_prototype.typeCheck = function (typeFlow) { if (!typeFlow.checker.styleSettings.emptyBlocks) { if ((this.statements === null) || (this.statements.members.length == 0)) { typeFlow.checker.errorReporter.styleError(this, "empty block"); @@ -3729,8 +3755,9 @@ var TypeScript; _this.resolvedTarget = null; return _this; } - Jump.prototype.hasExplicitTarget = function () { return (this.target); }; - Jump.prototype.setResolvedTarget = function (parser, stmt) { + var Jump_prototype = Jump.prototype; + Jump_prototype.hasExplicitTarget = function () { return (this.target); }; + Jump_prototype.setResolvedTarget = function (parser, stmt) { if (stmt.isLoop()) { this.resolvedTarget = stmt; return true; @@ -3750,11 +3777,11 @@ var TypeScript; } } }; - Jump.prototype.addToControlFlow = function (context) { + Jump_prototype.addToControlFlow = function (context) { _super.prototype.addToControlFlow.call(this, context); context.unconditionalBranch(this.resolvedTarget, (this.nodeType == NodeType.Continue)); }; - Jump.prototype.emit = function (emitter, tokenId, startLine) { + Jump_prototype.emit = function (emitter, tokenId, startLine) { emitter.emitParensAndCommentsInPlace(this, true); emitter.recordSourceMappingStart(this); if (this.nodeType == NodeType.Break) { @@ -3781,8 +3808,9 @@ var TypeScript; _this.body = null; return _this; } - WhileStatement.prototype.isLoop = function () { return true; }; - WhileStatement.prototype.emit = function (emitter, tokenId, startLine) { + var WhileStatement_prototype = WhileStatement.prototype; + WhileStatement_prototype.isLoop = function () { return true; }; + WhileStatement_prototype.emit = function (emitter, tokenId, startLine) { emitter.emitParensAndCommentsInPlace(this, true); emitter.recordSourceMappingStart(this); var temp = emitter.setInObjectLiteral(false); @@ -3794,10 +3822,10 @@ var TypeScript; emitter.recordSourceMappingEnd(this); emitter.emitParensAndCommentsInPlace(this, false); }; - WhileStatement.prototype.typeCheck = function (typeFlow) { + WhileStatement_prototype.typeCheck = function (typeFlow) { return typeFlow.typeCheckWhile(this); }; - WhileStatement.prototype.addToControlFlow = function (context) { + WhileStatement_prototype.addToControlFlow = function (context) { var loopHeader = context.current; var loopStart = new BasicBlock(); var afterLoop = new BasicBlock(); @@ -3835,8 +3863,9 @@ var TypeScript; _this.cond = null; return _this; } - DoWhileStatement.prototype.isLoop = function () { return true; }; - DoWhileStatement.prototype.emit = function (emitter, tokenId, startLine) { + var DoWhileStatement_prototype = DoWhileStatement.prototype; + DoWhileStatement_prototype.isLoop = function () { return true; }; + DoWhileStatement_prototype.emit = function (emitter, tokenId, startLine) { emitter.emitParensAndCommentsInPlace(this, true); emitter.recordSourceMappingStart(this); var temp = emitter.setInObjectLiteral(false); @@ -3852,10 +3881,10 @@ var TypeScript; emitter.recordSourceMappingEnd(this); emitter.emitParensAndCommentsInPlace(this, false); }; - DoWhileStatement.prototype.typeCheck = function (typeFlow) { + DoWhileStatement_prototype.typeCheck = function (typeFlow) { return typeFlow.typeCheckDoWhile(this); }; - DoWhileStatement.prototype.addToControlFlow = function (context) { + DoWhileStatement_prototype.addToControlFlow = function (context) { var loopHeader = context.current; var loopStart = new BasicBlock(); var afterLoop = new BasicBlock(); @@ -3892,8 +3921,9 @@ var TypeScript; _this.statement = new ASTSpan(); return _this; } - IfStatement.prototype.isCompoundStatement = function () { return true; }; - IfStatement.prototype.emit = function (emitter, tokenId, startLine) { + var IfStatement_prototype = IfStatement.prototype; + IfStatement_prototype.isCompoundStatement = function () { return true; }; + IfStatement_prototype.emit = function (emitter, tokenId, startLine) { emitter.emitParensAndCommentsInPlace(this, true); emitter.recordSourceMappingStart(this); var temp = emitter.setInObjectLiteral(false); @@ -3911,10 +3941,10 @@ var TypeScript; emitter.recordSourceMappingEnd(this); emitter.emitParensAndCommentsInPlace(this, false); }; - IfStatement.prototype.typeCheck = function (typeFlow) { + IfStatement_prototype.typeCheck = function (typeFlow) { return typeFlow.typeCheckIf(this); }; - IfStatement.prototype.addToControlFlow = function (context) { + IfStatement_prototype.addToControlFlow = function (context) { this.cond.addToControlFlow(context); var afterIf = new BasicBlock(); var beforeIf = context.current; @@ -3969,7 +3999,8 @@ var TypeScript; _this.returnExpression = null; return _this; } - ReturnStatement.prototype.emit = function (emitter, tokenId, startLine) { + var ReturnStatement_prototype = ReturnStatement.prototype; + ReturnStatement_prototype.emit = function (emitter, tokenId, startLine) { emitter.emitParensAndCommentsInPlace(this, true); emitter.recordSourceMappingStart(this); var temp = emitter.setInObjectLiteral(false); @@ -3984,11 +4015,11 @@ var TypeScript; emitter.recordSourceMappingEnd(this); emitter.emitParensAndCommentsInPlace(this, false); }; - ReturnStatement.prototype.addToControlFlow = function (context) { + ReturnStatement_prototype.addToControlFlow = function (context) { _super.prototype.addToControlFlow.call(this, context); context.returnStmt(); }; - ReturnStatement.prototype.typeCheck = function (typeFlow) { + ReturnStatement_prototype.typeCheck = function (typeFlow) { return typeFlow.typeCheckReturn(this); }; return ReturnStatement; @@ -4014,8 +4045,9 @@ var TypeScript; } return _this; } - ForInStatement.prototype.isLoop = function () { return true; }; - ForInStatement.prototype.isFiltered = function () { + var ForInStatement_prototype = ForInStatement.prototype; + ForInStatement_prototype.isLoop = function () { return true; }; + ForInStatement_prototype.isFiltered = function () { if (this.body) { var singleItem = null; if (this.body.nodeType == NodeType.List) { @@ -4065,7 +4097,7 @@ var TypeScript; } return false; }; - ForInStatement.prototype.emit = function (emitter, tokenId, startLine) { + ForInStatement_prototype.emit = function (emitter, tokenId, startLine) { emitter.emitParensAndCommentsInPlace(this, true); emitter.recordSourceMappingStart(this); var temp = emitter.setInObjectLiteral(false); @@ -4081,7 +4113,7 @@ var TypeScript; emitter.recordSourceMappingEnd(this); emitter.emitParensAndCommentsInPlace(this, false); }; - ForInStatement.prototype.typeCheck = function (typeFlow) { + ForInStatement_prototype.typeCheck = function (typeFlow) { if (typeFlow.checker.styleSettings.forin) { if (!this.isFiltered()) { typeFlow.checker.errorReporter.styleError(this, "no hasOwnProperty filter"); @@ -4089,7 +4121,7 @@ var TypeScript; } return typeFlow.typeCheckForIn(this); }; - ForInStatement.prototype.addToControlFlow = function (context) { + ForInStatement_prototype.addToControlFlow = function (context) { if (this.lval) { context.addContent(this.lval); } @@ -4125,8 +4157,9 @@ var TypeScript; _this.init = init; return _this; } - ForStatement.prototype.isLoop = function () { return true; }; - ForStatement.prototype.emit = function (emitter, tokenId, startLine) { + var ForStatement_prototype = ForStatement.prototype; + ForStatement_prototype.isLoop = function () { return true; }; + ForStatement_prototype.emit = function (emitter, tokenId, startLine) { emitter.emitParensAndCommentsInPlace(this, true); emitter.recordSourceMappingStart(this); var temp = emitter.setInObjectLiteral(false); @@ -4150,10 +4183,10 @@ var TypeScript; emitter.recordSourceMappingEnd(this); emitter.emitParensAndCommentsInPlace(this, false); }; - ForStatement.prototype.typeCheck = function (typeFlow) { + ForStatement_prototype.typeCheck = function (typeFlow) { return typeFlow.typeCheckFor(this); }; - ForStatement.prototype.addToControlFlow = function (context) { + ForStatement_prototype.addToControlFlow = function (context) { if (this.init) { context.addContent(this.init); } @@ -4218,8 +4251,9 @@ var TypeScript; _this.withSym = null; return _this; } - WithStatement.prototype.isCompoundStatement = function () { return true; }; - WithStatement.prototype.emit = function (emitter, tokenId, startLine) { + var WithStatement_prototype = WithStatement.prototype; + WithStatement_prototype.isCompoundStatement = function () { return true; }; + WithStatement_prototype.emit = function (emitter, tokenId, startLine) { emitter.emitParensAndCommentsInPlace(this, true); emitter.recordSourceMappingStart(this); emitter.writeToOutput("with ("); @@ -4231,7 +4265,7 @@ var TypeScript; emitter.recordSourceMappingEnd(this); emitter.emitParensAndCommentsInPlace(this, false); }; - WithStatement.prototype.typeCheck = function (typeFlow) { + WithStatement_prototype.typeCheck = function (typeFlow) { return typeFlow.typeCheckWith(this); }; return WithStatement; @@ -4246,8 +4280,9 @@ var TypeScript; _this.statement = new ASTSpan(); return _this; } - SwitchStatement.prototype.isCompoundStatement = function () { return true; }; - SwitchStatement.prototype.emit = function (emitter, tokenId, startLine) { + var SwitchStatement_prototype = SwitchStatement.prototype; + SwitchStatement_prototype.isCompoundStatement = function () { return true; }; + SwitchStatement_prototype.emit = function (emitter, tokenId, startLine) { emitter.emitParensAndCommentsInPlace(this, true); emitter.recordSourceMappingStart(this); var temp = emitter.setInObjectLiteral(false); @@ -4271,7 +4306,7 @@ var TypeScript; emitter.recordSourceMappingEnd(this); emitter.emitParensAndCommentsInPlace(this, false); }; - SwitchStatement.prototype.typeCheck = function (typeFlow) { + SwitchStatement_prototype.typeCheck = function (typeFlow) { var len = this.caseList.members.length; this.val = typeFlow.typeCheck(this.val); for (var i = 0; i < len; i++) { @@ -4282,7 +4317,7 @@ var TypeScript; return this; }; // if there are break statements that match this switch, then just link cond block with block after switch - SwitchStatement.prototype.addToControlFlow = function (context) { + SwitchStatement_prototype.addToControlFlow = function (context) { var condBlock = context.current; context.addContent(this.val); var execBlock = new BasicBlock(); @@ -4317,7 +4352,8 @@ var TypeScript; _this.expr = null; return _this; } - CaseStatement.prototype.emit = function (emitter, tokenId, startLine) { + var CaseStatement_prototype = CaseStatement.prototype; + CaseStatement_prototype.emit = function (emitter, tokenId, startLine) { emitter.emitParensAndCommentsInPlace(this, true); emitter.recordSourceMappingStart(this); if (this.expr) { @@ -4332,7 +4368,7 @@ var TypeScript; emitter.recordSourceMappingEnd(this); emitter.emitParensAndCommentsInPlace(this, false); }; - CaseStatement.prototype.typeCheck = function (typeFlow) { + CaseStatement_prototype.typeCheck = function (typeFlow) { this.expr = typeFlow.typeCheck(this.expr); typeFlow.typeCheck(this.body); this.type = typeFlow.voidType; @@ -4340,7 +4376,7 @@ var TypeScript; }; // TODO: more reasoning about unreachable cases (such as duplicate literals as case expressions) // for now, assume all cases are reachable, regardless of whether some cases fall through - CaseStatement.prototype.addToControlFlow = function (context) { + CaseStatement_prototype.addToControlFlow = function (context) { var execBlock = new BasicBlock(); var sw = context.currentSwitch[context.currentSwitch.length - 1]; // TODO: fall-through from previous (+ to end of switch) @@ -4372,10 +4408,11 @@ var TypeScript; _this.arrayCount = arrayCount; return _this; } - TypeReference.prototype.emit = function (emitter, tokenId, startLine) { + var TypeReference_prototype = TypeReference.prototype; + TypeReference_prototype.emit = function (emitter, tokenId, startLine) { throw new Error("should not emit a type ref"); }; - TypeReference.prototype.typeCheck = function (typeFlow) { + TypeReference_prototype.typeCheck = function (typeFlow) { var prevInTCTR = typeFlow.inTypeRefTypeCheck; typeFlow.inTypeRefTypeCheck = true; var typeLink = getTypeLink(this, typeFlow.checker, true); @@ -4403,20 +4440,21 @@ var TypeScript; _this.finallyNode = finallyNode; return _this; } - TryFinally.prototype.isCompoundStatement = function () { return true; }; - TryFinally.prototype.emit = function (emitter, tokenId, startLine) { + var TryFinally_prototype = TryFinally.prototype; + TryFinally_prototype.isCompoundStatement = function () { return true; }; + TryFinally_prototype.emit = function (emitter, tokenId, startLine) { emitter.recordSourceMappingStart(this); emitter.emitJavascript(this.tryNode, TokenID.Try, false); emitter.emitJavascript(this.finallyNode, TokenID.Finally, false); emitter.recordSourceMappingEnd(this); }; - TryFinally.prototype.typeCheck = function (typeFlow) { + TryFinally_prototype.typeCheck = function (typeFlow) { this.tryNode = typeFlow.typeCheck(this.tryNode); this.finallyNode = typeFlow.typeCheck(this.finallyNode); this.type = typeFlow.voidType; return this; }; - TryFinally.prototype.addToControlFlow = function (context) { + TryFinally_prototype.addToControlFlow = function (context) { var afterFinally = new BasicBlock(); context.walk(this.tryNode, this); var finBlock = new BasicBlock(); @@ -4449,8 +4487,9 @@ var TypeScript; _this.catchNode = catchNode; return _this; } - TryCatch.prototype.isCompoundStatement = function () { return true; }; - TryCatch.prototype.emit = function (emitter, tokenId, startLine) { + var TryCatch_prototype = TryCatch.prototype; + TryCatch_prototype.isCompoundStatement = function () { return true; }; + TryCatch_prototype.emit = function (emitter, tokenId, startLine) { emitter.emitParensAndCommentsInPlace(this, true); emitter.recordSourceMappingStart(this); emitter.emitJavascript(this.tryNode, TokenID.Try, false); @@ -4458,7 +4497,7 @@ var TypeScript; emitter.recordSourceMappingEnd(this); emitter.emitParensAndCommentsInPlace(this, false); }; - TryCatch.prototype.addToControlFlow = function (context) { + TryCatch_prototype.addToControlFlow = function (context) { var beforeTry = context.current; var tryBlock = new BasicBlock(); beforeTry.addSuccessor(tryBlock); @@ -4483,7 +4522,7 @@ var TypeScript; context.current = afterTryCatch; context.walker.options.goChildren = false; }; - TryCatch.prototype.typeCheck = function (typeFlow) { + TryCatch_prototype.typeCheck = function (typeFlow) { this.tryNode = typeFlow.typeCheck(this.tryNode); this.catchNode = typeFlow.typeCheck(this.catchNode); this.type = typeFlow.voidType; @@ -4499,7 +4538,8 @@ var TypeScript; _this.body = body; return _this; } - Try.prototype.emit = function (emitter, tokenId, startLine) { + var Try_prototype = Try.prototype; + Try_prototype.emit = function (emitter, tokenId, startLine) { emitter.emitParensAndCommentsInPlace(this, true); emitter.recordSourceMappingStart(this); emitter.writeToOutput("try "); @@ -4507,11 +4547,11 @@ var TypeScript; emitter.recordSourceMappingEnd(this); emitter.emitParensAndCommentsInPlace(this, false); }; - Try.prototype.typeCheck = function (typeFlow) { + Try_prototype.typeCheck = function (typeFlow) { this.body = typeFlow.typeCheck(this.body); return this; }; - Try.prototype.addToControlFlow = function (context) { + Try_prototype.addToControlFlow = function (context) { if (this.body) { context.walk(this.body, this); } @@ -4534,7 +4574,8 @@ var TypeScript; } return _this; } - Catch.prototype.emit = function (emitter, tokenId, startLine) { + var Catch_prototype = Catch.prototype; + Catch_prototype.emit = function (emitter, tokenId, startLine) { emitter.emitParensAndCommentsInPlace(this, true); emitter.recordSourceMappingStart(this); emitter.writeToOutput(" "); @@ -4547,7 +4588,7 @@ var TypeScript; emitter.recordSourceMappingEnd(this); emitter.emitParensAndCommentsInPlace(this, false); }; - Catch.prototype.addToControlFlow = function (context) { + Catch_prototype.addToControlFlow = function (context) { if (this.param) { context.addContent(this.param); var bodBlock = new BasicBlock(); @@ -4560,7 +4601,7 @@ var TypeScript; context.noContinuation = false; context.walker.options.goChildren = false; }; - Catch.prototype.typeCheck = function (typeFlow) { + Catch_prototype.typeCheck = function (typeFlow) { var prevScope = typeFlow.scope; typeFlow.scope = this.containedScope; this.param = typeFlow.typeCheck(this.param); @@ -4602,7 +4643,8 @@ var TypeScript; _this.body = body; return _this; } - Finally.prototype.emit = function (emitter, tokenId, startLine) { + var Finally_prototype = Finally.prototype; + Finally_prototype.emit = function (emitter, tokenId, startLine) { emitter.emitParensAndCommentsInPlace(this, true); emitter.recordSourceMappingStart(this); emitter.writeToOutput("finally"); @@ -4610,14 +4652,14 @@ var TypeScript; emitter.recordSourceMappingEnd(this); emitter.emitParensAndCommentsInPlace(this, false); }; - Finally.prototype.addToControlFlow = function (context) { + Finally_prototype.addToControlFlow = function (context) { if (this.body) { context.walk(this.body, this); } context.walker.options.goChildren = false; context.noContinuation = false; }; - Finally.prototype.typeCheck = function (typeFlow) { + Finally_prototype.typeCheck = function (typeFlow) { this.body = typeFlow.typeCheck(this.body); return this; }; diff --git a/tests/baselines/reference/parserRealSource12.js b/tests/baselines/reference/parserRealSource12.js index 18cb042f36d3b..2c85504ce5db5 100644 --- a/tests/baselines/reference/parserRealSource12.js +++ b/tests/baselines/reference/parserRealSource12.js @@ -592,19 +592,20 @@ var TypeScript; this.childrenWalkers = []; this.initChildrenWalkers(); } - AstWalkerFactory.prototype.walk = function (ast, pre, post, options, state) { + var AstWalkerFactory_prototype = AstWalkerFactory.prototype; + AstWalkerFactory_prototype.walk = function (ast, pre, post, options, state) { return this.getWalker(pre, post, options, state).walk(ast, null); }; - AstWalkerFactory.prototype.getWalker = function (pre, post, options, state) { + AstWalkerFactory_prototype.getWalker = function (pre, post, options, state) { return this.getSlowWalker(pre, post, options, state); }; - AstWalkerFactory.prototype.getSlowWalker = function (pre, post, options, state) { + AstWalkerFactory_prototype.getSlowWalker = function (pre, post, options, state) { if (!options) { options = new AstWalkOptions(); } return new AstWalker(this.childrenWalkers, pre, post, options, state); }; - AstWalkerFactory.prototype.initChildrenWalkers = function () { + AstWalkerFactory_prototype.initChildrenWalkers = function () { this.childrenWalkers[NodeType.None] = ChildrenWalkers.walkNone; this.childrenWalkers[NodeType.Empty] = ChildrenWalkers.walkNone; this.childrenWalkers[NodeType.EmptyExpr] = ChildrenWalkers.walkNone; diff --git a/tests/baselines/reference/parserRealSource14.js b/tests/baselines/reference/parserRealSource14.js index e72435c775b59..887809b04299e 100644 --- a/tests/baselines/reference/parserRealSource14.js +++ b/tests/baselines/reference/parserRealSource14.js @@ -602,16 +602,17 @@ var TypeScript; this.asts = []; this.top = -1; } + var AstPath_prototype = AstPath.prototype; AstPath.reverseIndexOf = function (items, index) { return (items === null || items.length <= index) ? null : items[items.length - index - 1]; }; - AstPath.prototype.clone = function () { + AstPath_prototype.clone = function () { var clone = new AstPath(); clone.asts = this.asts.map(function (value) { return value; }); clone.top = this.top; return clone; }; - AstPath.prototype.pop = function () { + AstPath_prototype.pop = function () { var head = this.ast(); this.up(); while (this.asts.length > this.count()) { @@ -619,104 +620,104 @@ var TypeScript; } return head; }; - AstPath.prototype.push = function (ast) { + AstPath_prototype.push = function (ast) { while (this.asts.length > this.count()) { this.asts.pop(); } this.top = this.asts.length; this.asts.push(ast); }; - AstPath.prototype.up = function () { + AstPath_prototype.up = function () { if (this.top <= -1) throw new Error("Invalid call to 'up'"); this.top--; }; - AstPath.prototype.down = function () { + AstPath_prototype.down = function () { if (this.top == this.ast.length - 1) throw new Error("Invalid call to 'down'"); this.top++; }; - AstPath.prototype.nodeType = function () { + AstPath_prototype.nodeType = function () { if (this.ast() == null) return TypeScript.NodeType.None; return this.ast().nodeType; }; - AstPath.prototype.ast = function () { + AstPath_prototype.ast = function () { return AstPath.reverseIndexOf(this.asts, this.asts.length - (this.top + 1)); }; - AstPath.prototype.parent = function () { + AstPath_prototype.parent = function () { return AstPath.reverseIndexOf(this.asts, this.asts.length - this.top); }; - AstPath.prototype.count = function () { + AstPath_prototype.count = function () { return this.top + 1; }; - AstPath.prototype.get = function (index) { + AstPath_prototype.get = function (index) { return this.asts[index]; }; - AstPath.prototype.isNameOfClass = function () { + AstPath_prototype.isNameOfClass = function () { if (this.ast() === null || this.parent() === null) return false; return (this.ast().nodeType === TypeScript.NodeType.Name) && (this.parent().nodeType === TypeScript.NodeType.ClassDeclaration) && (this.parent().name === this.ast()); }; - AstPath.prototype.isNameOfInterface = function () { + AstPath_prototype.isNameOfInterface = function () { if (this.ast() === null || this.parent() === null) return false; return (this.ast().nodeType === TypeScript.NodeType.Name) && (this.parent().nodeType === TypeScript.NodeType.InterfaceDeclaration) && (this.parent().name === this.ast()); }; - AstPath.prototype.isNameOfArgument = function () { + AstPath_prototype.isNameOfArgument = function () { if (this.ast() === null || this.parent() === null) return false; return (this.ast().nodeType === TypeScript.NodeType.Name) && (this.parent().nodeType === TypeScript.NodeType.ArgDecl) && (this.parent().id === this.ast()); }; - AstPath.prototype.isNameOfVariable = function () { + AstPath_prototype.isNameOfVariable = function () { if (this.ast() === null || this.parent() === null) return false; return (this.ast().nodeType === TypeScript.NodeType.Name) && (this.parent().nodeType === TypeScript.NodeType.VarDecl) && (this.parent().id === this.ast()); }; - AstPath.prototype.isNameOfModule = function () { + AstPath_prototype.isNameOfModule = function () { if (this.ast() === null || this.parent() === null) return false; return (this.ast().nodeType === TypeScript.NodeType.Name) && (this.parent().nodeType === TypeScript.NodeType.ModuleDeclaration) && (this.parent().name === this.ast()); }; - AstPath.prototype.isNameOfFunction = function () { + AstPath_prototype.isNameOfFunction = function () { if (this.ast() === null || this.parent() === null) return false; return (this.ast().nodeType === TypeScript.NodeType.Name) && (this.parent().nodeType === TypeScript.NodeType.FuncDecl) && (this.parent().name === this.ast()); }; - AstPath.prototype.isChildOfScript = function () { + AstPath_prototype.isChildOfScript = function () { var ast = lastOf(this.asts); return this.count() >= 3 && this.asts[this.top] === ast && this.asts[this.top - 1].nodeType === TypeScript.NodeType.List && this.asts[this.top - 2].nodeType === TypeScript.NodeType.Script; }; - AstPath.prototype.isChildOfModule = function () { + AstPath_prototype.isChildOfModule = function () { var ast = lastOf(this.asts); return this.count() >= 3 && this.asts[this.top] === ast && this.asts[this.top - 1].nodeType === TypeScript.NodeType.List && this.asts[this.top - 2].nodeType === TypeScript.NodeType.ModuleDeclaration; }; - AstPath.prototype.isChildOfClass = function () { + AstPath_prototype.isChildOfClass = function () { var ast = lastOf(this.asts); return this.count() >= 3 && this.asts[this.top] === ast && this.asts[this.top - 1].nodeType === TypeScript.NodeType.List && this.asts[this.top - 2].nodeType === TypeScript.NodeType.ClassDeclaration; }; - AstPath.prototype.isArgumentOfClassConstructor = function () { + AstPath_prototype.isArgumentOfClassConstructor = function () { var ast = lastOf(this.asts); return this.count() >= 5 && this.asts[this.top] === ast && @@ -728,142 +729,142 @@ var TypeScript; (this.asts[this.top - 2].arguments === this.asts[this.top - 1]) && (this.asts[this.top - 4].constructorDecl === this.asts[this.top - 2]); }; - AstPath.prototype.isChildOfInterface = function () { + AstPath_prototype.isChildOfInterface = function () { var ast = lastOf(this.asts); return this.count() >= 3 && this.asts[this.top] === ast && this.asts[this.top - 1].nodeType === TypeScript.NodeType.List && this.asts[this.top - 2].nodeType === TypeScript.NodeType.InterfaceDeclaration; }; - AstPath.prototype.isTopLevelImplicitModule = function () { + AstPath_prototype.isTopLevelImplicitModule = function () { return this.count() >= 1 && this.asts[this.top].nodeType === TypeScript.NodeType.ModuleDeclaration && TypeScript.hasFlag(this.asts[this.top].modFlags, TypeScript.ModuleFlags.IsWholeFile); }; - AstPath.prototype.isBodyOfTopLevelImplicitModule = function () { + AstPath_prototype.isBodyOfTopLevelImplicitModule = function () { return this.count() >= 2 && this.asts[this.top - 0].nodeType === TypeScript.NodeType.List && this.asts[this.top - 1].nodeType === TypeScript.NodeType.ModuleDeclaration && this.asts[this.top - 1].members == this.asts[this.top - 0] && TypeScript.hasFlag(this.asts[this.top - 1].modFlags, TypeScript.ModuleFlags.IsWholeFile); }; - AstPath.prototype.isBodyOfScript = function () { + AstPath_prototype.isBodyOfScript = function () { return this.count() >= 2 && this.asts[this.top - 1].nodeType === TypeScript.NodeType.Script && this.asts[this.top - 1].bod == this.asts[this.top - 0]; }; - AstPath.prototype.isBodyOfSwitch = function () { + AstPath_prototype.isBodyOfSwitch = function () { return this.count() >= 2 && this.asts[this.top - 1].nodeType === TypeScript.NodeType.Switch && this.asts[this.top - 1].caseList == this.asts[this.top - 0]; }; - AstPath.prototype.isBodyOfModule = function () { + AstPath_prototype.isBodyOfModule = function () { return this.count() >= 2 && this.asts[this.top - 1].nodeType === TypeScript.NodeType.ModuleDeclaration && this.asts[this.top - 1].members == this.asts[this.top - 0]; }; - AstPath.prototype.isBodyOfClass = function () { + AstPath_prototype.isBodyOfClass = function () { return this.count() >= 2 && this.asts[this.top - 1].nodeType === TypeScript.NodeType.ClassDeclaration && this.asts[this.top - 1].members == this.asts[this.top - 0]; }; - AstPath.prototype.isBodyOfFunction = function () { + AstPath_prototype.isBodyOfFunction = function () { return this.count() >= 2 && this.asts[this.top - 1].nodeType === TypeScript.NodeType.FuncDecl && this.asts[this.top - 1].bod == this.asts[this.top - 0]; }; - AstPath.prototype.isBodyOfInterface = function () { + AstPath_prototype.isBodyOfInterface = function () { return this.count() >= 2 && this.asts[this.top - 1].nodeType === TypeScript.NodeType.InterfaceDeclaration && this.asts[this.top - 1].members == this.asts[this.top - 0]; }; - AstPath.prototype.isBodyOfBlock = function () { + AstPath_prototype.isBodyOfBlock = function () { return this.count() >= 2 && this.asts[this.top - 1].nodeType === TypeScript.NodeType.Block && this.asts[this.top - 1].statements == this.asts[this.top - 0]; }; - AstPath.prototype.isBodyOfFor = function () { + AstPath_prototype.isBodyOfFor = function () { return this.count() >= 2 && this.asts[this.top - 1].nodeType === TypeScript.NodeType.For && this.asts[this.top - 1].body == this.asts[this.top - 0]; }; - AstPath.prototype.isBodyOfCase = function () { + AstPath_prototype.isBodyOfCase = function () { return this.count() >= 2 && this.asts[this.top - 1].nodeType === TypeScript.NodeType.Case && this.asts[this.top - 1].body == this.asts[this.top - 0]; }; - AstPath.prototype.isBodyOfTry = function () { + AstPath_prototype.isBodyOfTry = function () { return this.count() >= 2 && this.asts[this.top - 1].nodeType === TypeScript.NodeType.Try && this.asts[this.top - 1].body == this.asts[this.top - 0]; }; - AstPath.prototype.isBodyOfCatch = function () { + AstPath_prototype.isBodyOfCatch = function () { return this.count() >= 2 && this.asts[this.top - 1].nodeType === TypeScript.NodeType.Catch && this.asts[this.top - 1].body == this.asts[this.top - 0]; }; - AstPath.prototype.isBodyOfDoWhile = function () { + AstPath_prototype.isBodyOfDoWhile = function () { return this.count() >= 2 && this.asts[this.top - 1].nodeType === TypeScript.NodeType.DoWhile && this.asts[this.top - 1].body == this.asts[this.top - 0]; }; - AstPath.prototype.isBodyOfWhile = function () { + AstPath_prototype.isBodyOfWhile = function () { return this.count() >= 2 && this.asts[this.top - 1].nodeType === TypeScript.NodeType.While && this.asts[this.top - 1].body == this.asts[this.top - 0]; }; - AstPath.prototype.isBodyOfForIn = function () { + AstPath_prototype.isBodyOfForIn = function () { return this.count() >= 2 && this.asts[this.top - 1].nodeType === TypeScript.NodeType.ForIn && this.asts[this.top - 1].body == this.asts[this.top - 0]; }; - AstPath.prototype.isBodyOfWith = function () { + AstPath_prototype.isBodyOfWith = function () { return this.count() >= 2 && this.asts[this.top - 1].nodeType === TypeScript.NodeType.With && this.asts[this.top - 1].body == this.asts[this.top - 0]; }; - AstPath.prototype.isBodyOfFinally = function () { + AstPath_prototype.isBodyOfFinally = function () { return this.count() >= 2 && this.asts[this.top - 1].nodeType === TypeScript.NodeType.Finally && this.asts[this.top - 1].body == this.asts[this.top - 0]; }; - AstPath.prototype.isCaseOfSwitch = function () { + AstPath_prototype.isCaseOfSwitch = function () { return this.count() >= 3 && this.asts[this.top - 2].nodeType === TypeScript.NodeType.Switch && this.asts[this.top - 1].nodeType === TypeScript.NodeType.List && this.asts[this.top - 2].caseList == this.asts[this.top - 1]; }; - AstPath.prototype.isDefaultCaseOfSwitch = function () { + AstPath_prototype.isDefaultCaseOfSwitch = function () { return this.count() >= 3 && this.asts[this.top - 2].nodeType === TypeScript.NodeType.Switch && this.asts[this.top - 1].nodeType === TypeScript.NodeType.List && this.asts[this.top - 2].caseList == this.asts[this.top - 1] && this.asts[this.top - 2].defaultCase == this.asts[this.top - 0]; }; - AstPath.prototype.isListOfObjectLit = function () { + AstPath_prototype.isListOfObjectLit = function () { return this.count() >= 2 && this.asts[this.top - 1].nodeType === TypeScript.NodeType.ObjectLit && this.asts[this.top - 0].nodeType === TypeScript.NodeType.List && this.asts[this.top - 1].operand == this.asts[this.top - 0]; }; - AstPath.prototype.isBodyOfObjectLit = function () { + AstPath_prototype.isBodyOfObjectLit = function () { return this.isListOfObjectLit(); }; - AstPath.prototype.isEmptyListOfObjectLit = function () { + AstPath_prototype.isEmptyListOfObjectLit = function () { return this.count() >= 2 && this.asts[this.top - 1].nodeType === TypeScript.NodeType.ObjectLit && this.asts[this.top - 0].nodeType === TypeScript.NodeType.List && this.asts[this.top - 1].operand == this.asts[this.top - 0] && this.asts[this.top - 0].members.length == 0; }; - AstPath.prototype.isMemberOfObjectLit = function () { + AstPath_prototype.isMemberOfObjectLit = function () { return this.count() >= 3 && this.asts[this.top - 2].nodeType === TypeScript.NodeType.ObjectLit && this.asts[this.top - 1].nodeType === TypeScript.NodeType.List && this.asts[this.top - 0].nodeType === TypeScript.NodeType.Member && this.asts[this.top - 2].operand == this.asts[this.top - 1]; }; - AstPath.prototype.isNameOfMemberOfObjectLit = function () { + AstPath_prototype.isNameOfMemberOfObjectLit = function () { return this.count() >= 4 && this.asts[this.top - 3].nodeType === TypeScript.NodeType.ObjectLit && this.asts[this.top - 2].nodeType === TypeScript.NodeType.List && @@ -871,70 +872,70 @@ var TypeScript; this.asts[this.top - 0].nodeType === TypeScript.NodeType.Name && this.asts[this.top - 3].operand == this.asts[this.top - 2]; }; - AstPath.prototype.isListOfArrayLit = function () { + AstPath_prototype.isListOfArrayLit = function () { return this.count() >= 2 && this.asts[this.top - 1].nodeType === TypeScript.NodeType.ArrayLit && this.asts[this.top - 0].nodeType === TypeScript.NodeType.List && this.asts[this.top - 1].operand == this.asts[this.top - 0]; }; - AstPath.prototype.isTargetOfMember = function () { + AstPath_prototype.isTargetOfMember = function () { return this.count() >= 2 && this.asts[this.top - 1].nodeType === TypeScript.NodeType.Member && this.asts[this.top - 1].operand1 === this.asts[this.top - 0]; }; - AstPath.prototype.isMemberOfMember = function () { + AstPath_prototype.isMemberOfMember = function () { return this.count() >= 2 && this.asts[this.top - 1].nodeType === TypeScript.NodeType.Member && this.asts[this.top - 1].operand2 === this.asts[this.top - 0]; }; - AstPath.prototype.isItemOfList = function () { + AstPath_prototype.isItemOfList = function () { return this.count() >= 2 && this.asts[this.top - 1].nodeType === TypeScript.NodeType.List; //(this.asts[this.top - 1]).operand2 === this.asts[this.top - 0]; }; - AstPath.prototype.isThenOfIf = function () { + AstPath_prototype.isThenOfIf = function () { return this.count() >= 2 && this.asts[this.top - 1].nodeType === TypeScript.NodeType.If && this.asts[this.top - 1].thenBod == this.asts[this.top - 0]; }; - AstPath.prototype.isElseOfIf = function () { + AstPath_prototype.isElseOfIf = function () { return this.count() >= 2 && this.asts[this.top - 1].nodeType === TypeScript.NodeType.If && this.asts[this.top - 1].elseBod == this.asts[this.top - 0]; }; - AstPath.prototype.isBodyOfDefaultCase = function () { + AstPath_prototype.isBodyOfDefaultCase = function () { return this.isBodyOfCase(); }; - AstPath.prototype.isSingleStatementList = function () { + AstPath_prototype.isSingleStatementList = function () { return this.count() >= 1 && this.asts[this.top].nodeType === TypeScript.NodeType.List && this.asts[this.top].members.length === 1; }; - AstPath.prototype.isArgumentListOfFunction = function () { + AstPath_prototype.isArgumentListOfFunction = function () { return this.count() >= 2 && this.asts[this.top - 0].nodeType === TypeScript.NodeType.List && this.asts[this.top - 1].nodeType === TypeScript.NodeType.FuncDecl && this.asts[this.top - 1].arguments === this.asts[this.top - 0]; }; - AstPath.prototype.isArgumentOfFunction = function () { + AstPath_prototype.isArgumentOfFunction = function () { return this.count() >= 3 && this.asts[this.top - 1].nodeType === TypeScript.NodeType.List && this.asts[this.top - 2].nodeType === TypeScript.NodeType.FuncDecl && this.asts[this.top - 2].arguments === this.asts[this.top - 1]; }; - AstPath.prototype.isArgumentListOfCall = function () { + AstPath_prototype.isArgumentListOfCall = function () { return this.count() >= 2 && this.asts[this.top - 0].nodeType === TypeScript.NodeType.List && this.asts[this.top - 1].nodeType === TypeScript.NodeType.Call && this.asts[this.top - 1].arguments === this.asts[this.top - 0]; }; - AstPath.prototype.isArgumentListOfNew = function () { + AstPath_prototype.isArgumentListOfNew = function () { return this.count() >= 2 && this.asts[this.top - 0].nodeType === TypeScript.NodeType.List && this.asts[this.top - 1].nodeType === TypeScript.NodeType.New && this.asts[this.top - 1].arguments === this.asts[this.top - 0]; }; - AstPath.prototype.isSynthesizedBlock = function () { + AstPath_prototype.isSynthesizedBlock = function () { return this.count() >= 1 && this.asts[this.top - 0].nodeType === TypeScript.NodeType.Block && this.asts[this.top - 0].isStatementBlock === false; diff --git a/tests/baselines/reference/parserRealSource4.js b/tests/baselines/reference/parserRealSource4.js index 0851b867c276c..9a047dfce57ee 100644 --- a/tests/baselines/reference/parserRealSource4.js +++ b/tests/baselines/reference/parserRealSource4.js @@ -321,7 +321,8 @@ var TypeScript; this.itemCount = 0; this.table = new BlockIntrinsics(); } - StringHashTable.prototype.getAllKeys = function () { + var StringHashTable_prototype = StringHashTable.prototype; + StringHashTable_prototype.getAllKeys = function () { var result = []; for (var k in this.table) { if (this.table[k] != undefined) { @@ -330,7 +331,7 @@ var TypeScript; } return result; }; - StringHashTable.prototype.add = function (key, data) { + StringHashTable_prototype.add = function (key, data) { if (this.table[key] != undefined) { return false; } @@ -338,7 +339,7 @@ var TypeScript; this.itemCount++; return true; }; - StringHashTable.prototype.addOrUpdate = function (key, data) { + StringHashTable_prototype.addOrUpdate = function (key, data) { if (this.table[key] != undefined) { this.table[key] = data; return false; @@ -347,7 +348,7 @@ var TypeScript; this.itemCount++; return true; }; - StringHashTable.prototype.map = function (fn, context) { + StringHashTable_prototype.map = function (fn, context) { for (var k in this.table) { var data = this.table[k]; if (data != undefined) { @@ -355,7 +356,7 @@ var TypeScript; } } }; - StringHashTable.prototype.every = function (fn, context) { + StringHashTable_prototype.every = function (fn, context) { for (var k in this.table) { var data = this.table[k]; if (data != undefined) { @@ -366,7 +367,7 @@ var TypeScript; } return true; }; - StringHashTable.prototype.some = function (fn, context) { + StringHashTable_prototype.some = function (fn, context) { for (var k in this.table) { var data = this.table[k]; if (data != undefined) { @@ -377,8 +378,8 @@ var TypeScript; } return false; }; - StringHashTable.prototype.count = function () { return this.itemCount; }; - StringHashTable.prototype.lookup = function (key) { + StringHashTable_prototype.count = function () { return this.itemCount; }; + StringHashTable_prototype.lookup = function (key) { var data = this.table[key]; if (data != undefined) { return data; @@ -399,10 +400,11 @@ var TypeScript; this.secondaryTable = secondaryTable; this.insertPrimary = true; } - DualStringHashTable.prototype.getAllKeys = function () { + var DualStringHashTable_prototype = DualStringHashTable.prototype; + DualStringHashTable_prototype.getAllKeys = function () { return this.primaryTable.getAllKeys().concat(this.secondaryTable.getAllKeys()); }; - DualStringHashTable.prototype.add = function (key, data) { + DualStringHashTable_prototype.add = function (key, data) { if (this.insertPrimary) { return this.primaryTable.add(key, data); } @@ -410,7 +412,7 @@ var TypeScript; return this.secondaryTable.add(key, data); } }; - DualStringHashTable.prototype.addOrUpdate = function (key, data) { + DualStringHashTable_prototype.addOrUpdate = function (key, data) { if (this.insertPrimary) { return this.primaryTable.addOrUpdate(key, data); } @@ -418,20 +420,20 @@ var TypeScript; return this.secondaryTable.addOrUpdate(key, data); } }; - DualStringHashTable.prototype.map = function (fn, context) { + DualStringHashTable_prototype.map = function (fn, context) { this.primaryTable.map(fn, context); this.secondaryTable.map(fn, context); }; - DualStringHashTable.prototype.every = function (fn, context) { + DualStringHashTable_prototype.every = function (fn, context) { return this.primaryTable.every(fn, context) && this.secondaryTable.every(fn, context); }; - DualStringHashTable.prototype.some = function (fn, context) { + DualStringHashTable_prototype.some = function (fn, context) { return this.primaryTable.some(fn, context) || this.secondaryTable.some(fn, context); }; - DualStringHashTable.prototype.count = function () { + DualStringHashTable_prototype.count = function () { return this.primaryTable.count() + this.secondaryTable.count(); }; - DualStringHashTable.prototype.lookup = function (key) { + DualStringHashTable_prototype.lookup = function (key) { var data = this.primaryTable.lookup(key); if (data != undefined) { return data; @@ -476,7 +478,8 @@ var TypeScript; this.table[i] = null; } } - HashTable.prototype.add = function (key, data) { + var HashTable_prototype = HashTable.prototype; + HashTable_prototype.add = function (key, data) { var current; var entry = new HashEntry(key, data); var val = this.hashFn(key); @@ -491,7 +494,7 @@ var TypeScript; this.itemCount++; return true; }; - HashTable.prototype.remove = function (key) { + HashTable_prototype.remove = function (key) { var current; var val = this.hashFn(key); val = val % this.size; @@ -513,8 +516,8 @@ var TypeScript; } return result; }; - HashTable.prototype.count = function () { return this.itemCount; }; - HashTable.prototype.lookup = function (key) { + HashTable_prototype.count = function () { return this.itemCount; }; + HashTable_prototype.lookup = function (key) { var current; var val = this.hashFn(key); val = val % this.size; @@ -534,7 +537,8 @@ var TypeScript; this.keys = []; this.values = []; } - SimpleHashTable.prototype.lookup = function (key, findValue) { + var SimpleHashTable_prototype = SimpleHashTable.prototype; + SimpleHashTable_prototype.lookup = function (key, findValue) { var searchArray = this.keys; if (findValue) { searchArray = this.values; @@ -549,7 +553,7 @@ var TypeScript; } return null; }; - SimpleHashTable.prototype.add = function (key, data) { + SimpleHashTable_prototype.add = function (key, data) { var lookupData = this.lookup(key); if (lookupData) { return false; diff --git a/tests/baselines/reference/parserRealSource5.js b/tests/baselines/reference/parserRealSource5.js index 834371a0dc8a0..13397ac5149ba 100644 --- a/tests/baselines/reference/parserRealSource5.js +++ b/tests/baselines/reference/parserRealSource5.js @@ -82,13 +82,14 @@ var TypeScript; this.indentStrings = []; this.indentAmt = 0; } - PrintContext.prototype.increaseIndent = function () { + var PrintContext_prototype = PrintContext.prototype; + PrintContext_prototype.increaseIndent = function () { this.indentAmt++; }; - PrintContext.prototype.decreaseIndent = function () { + PrintContext_prototype.decreaseIndent = function () { this.indentAmt--; }; - PrintContext.prototype.startLine = function () { + PrintContext_prototype.startLine = function () { if (this.builder.length > 0) { CompilerDiagnostics.Alert(this.builder); } @@ -102,10 +103,10 @@ var TypeScript; } this.builder += indentString; }; - PrintContext.prototype.write = function (s) { + PrintContext_prototype.write = function (s) { this.builder += s; }; - PrintContext.prototype.writeLine = function (s) { + PrintContext_prototype.writeLine = function (s) { this.builder += s; this.outfile.WriteLine(this.builder); this.builder = ""; diff --git a/tests/baselines/reference/parserRealSource6.js b/tests/baselines/reference/parserRealSource6.js index 50b643a55f9a0..99c4e4ece9b07 100644 --- a/tests/baselines/reference/parserRealSource6.js +++ b/tests/baselines/reference/parserRealSource6.js @@ -265,25 +265,26 @@ var TypeScript; this.publicsOnly = true; this.useFullAst = false; } - EnclosingScopeContext.prototype.getScope = function () { + var EnclosingScopeContext_prototype = EnclosingScopeContext.prototype; + EnclosingScopeContext_prototype.getScope = function () { return this.scopeGetter(); }; - EnclosingScopeContext.prototype.getObjectLiteralScope = function () { + EnclosingScopeContext_prototype.getObjectLiteralScope = function () { return this.objectLiteralScopeGetter(); }; - EnclosingScopeContext.prototype.getScopeAST = function () { + EnclosingScopeContext_prototype.getScopeAST = function () { return this.scopeStartAST; }; - EnclosingScopeContext.prototype.getScopePosition = function () { + EnclosingScopeContext_prototype.getScopePosition = function () { return this.scopeStartAST.minChar; }; - EnclosingScopeContext.prototype.getScriptFragmentStartAST = function () { + EnclosingScopeContext_prototype.getScriptFragmentStartAST = function () { return this.scopeStartAST; }; - EnclosingScopeContext.prototype.getScriptFragmentPosition = function () { + EnclosingScopeContext_prototype.getScriptFragmentPosition = function () { return this.getScriptFragmentStartAST().minChar; }; - EnclosingScopeContext.prototype.getScriptFragment = function () { + EnclosingScopeContext_prototype.getScriptFragment = function () { if (this.scriptFragment == null) { var ast = this.getScriptFragmentStartAST(); var minChar = ast.minChar; diff --git a/tests/baselines/reference/parserRealSource8.js b/tests/baselines/reference/parserRealSource8.js index 95e8a421fc83c..6e01b5c3e58a8 100644 --- a/tests/baselines/reference/parserRealSource8.js +++ b/tests/baselines/reference/parserRealSource8.js @@ -512,10 +512,11 @@ var TypeScript; this.stop = stop; this.result = null; } - ScopeSearchFilter.prototype.reset = function () { + var ScopeSearchFilter_prototype = ScopeSearchFilter.prototype; + ScopeSearchFilter_prototype.reset = function () { this.result = null; }; - ScopeSearchFilter.prototype.update = function (b) { + ScopeSearchFilter_prototype.update = function (b) { this.result = this.select(this.result, b); if (this.result) { return this.stop(this.result); diff --git a/tests/baselines/reference/parserRealSource9.js b/tests/baselines/reference/parserRealSource9.js index 0a64f8153b928..f166483e37fe0 100644 --- a/tests/baselines/reference/parserRealSource9.js +++ b/tests/baselines/reference/parserRealSource9.js @@ -219,7 +219,8 @@ var TypeScript; function Binder(checker) { this.checker = checker; } - Binder.prototype.resolveBaseTypeLinks = function (typeLinks, scope) { + var Binder_prototype = Binder.prototype; + Binder_prototype.resolveBaseTypeLinks = function (typeLinks, scope) { var extendsList = null; if (typeLinks) { extendsList = new Type[]; @@ -238,7 +239,7 @@ var TypeScript; } return extendsList; }; - Binder.prototype.resolveBases = function (scope, type) { + Binder_prototype.resolveBases = function (scope, type) { type.extendsList = this.resolveBaseTypeLinks(type.extendsTypeLinks, scope); var i = 0, len = type.extendsList.length; var derivedIsClass = type.isClassInstance(); @@ -269,7 +270,7 @@ var TypeScript; } } }; - Binder.prototype.resolveSignatureGroup = function (signatureGroup, scope, instanceType) { + Binder_prototype.resolveSignatureGroup = function (signatureGroup, scope, instanceType) { var supplyVar = !(signatureGroup.hasImplementation); for (var i = 0, len = signatureGroup.signatures.length; i < len; i++) { var signature = signatureGroup.signatures[i]; @@ -294,7 +295,7 @@ var TypeScript; } } }; - Binder.prototype.bindType = function (scope, type, instanceType) { + Binder_prototype.bindType = function (scope, type, instanceType) { if (instanceType) { this.bindType(scope, instanceType, null); } @@ -344,7 +345,7 @@ var TypeScript; this.bindType(scope, type.elementType, null); } }; - Binder.prototype.bindSymbol = function (scope, symbol) { + Binder_prototype.bindSymbol = function (scope, symbol) { if (!symbol.bound) { var prevLocationInfo = this.checker.locationInfo; if ((this.checker.units) && (symbol.unitIndex >= 0) && (symbol.unitIndex < this.checker.units.length)) { @@ -390,7 +391,7 @@ var TypeScript; } symbol.bound = true; }; - Binder.prototype.bind = function (scope, table) { + Binder_prototype.bind = function (scope, table) { table.map(function (key, sym, binder) { binder.bindSymbol(scope, sym); }, this); diff --git a/tests/baselines/reference/parserharness.js b/tests/baselines/reference/parserharness.js index 6fe11051dc7bf..55c62209447e7 100644 --- a/tests/baselines/reference/parserharness.js +++ b/tests/baselines/reference/parserharness.js @@ -2280,17 +2280,18 @@ var Harness; var Logger = /** @class */ (function () { function Logger() { } - Logger.prototype.start = function (fileName, priority) { }; - Logger.prototype.end = function (fileName) { }; - Logger.prototype.scenarioStart = function (scenario) { }; - Logger.prototype.scenarioEnd = function (scenario, error) { }; - Logger.prototype.testStart = function (test) { }; - Logger.prototype.pass = function (test) { }; - Logger.prototype.bug = function (test) { }; - Logger.prototype.fail = function (test) { }; - Logger.prototype.error = function (test, error) { }; - Logger.prototype.comment = function (comment) { }; - Logger.prototype.verify = function (test, passed, actual, expected, message) { }; + var Logger_prototype = Logger.prototype; + Logger_prototype.start = function (fileName, priority) { }; + Logger_prototype.end = function (fileName) { }; + Logger_prototype.scenarioStart = function (scenario) { }; + Logger_prototype.scenarioEnd = function (scenario, error) { }; + Logger_prototype.testStart = function (test) { }; + Logger_prototype.pass = function (test) { }; + Logger_prototype.bug = function (test) { }; + Logger_prototype.fail = function (test) { }; + Logger_prototype.error = function (test, error) { }; + Logger_prototype.comment = function (comment) { }; + Logger_prototype.verify = function (test, passed, actual, expected, message) { }; return Logger; }()); Harness.Logger = Logger; @@ -2325,14 +2326,15 @@ var Harness; // A list of all our child Runnables this.children = []; } - Runnable.prototype.addChild = function (child) { + var Runnable_prototype = Runnable.prototype; + Runnable_prototype.addChild = function (child) { this.children.push(child); }; /** Call function fn, which may take a done function and may possibly execute * asynchronously, calling done when finished. Returns true or false depending * on whether the function was asynchronous or not. */ - Runnable.prototype.call = function (fn, done) { + Runnable_prototype.call = function (fn, done) { var isAsync = true; try { if (fn.length === 0) { @@ -2357,11 +2359,11 @@ var Harness; return false; } }; - Runnable.prototype.run = function (done) { }; - Runnable.prototype.runBlock = function (done) { + Runnable_prototype.run = function (done) { }; + Runnable_prototype.runBlock = function (done) { return this.call(this.block, done); }; - Runnable.prototype.runChild = function (index, done) { + Runnable_prototype.runChild = function (index, done) { var _this = this; return this.call((function (done) { return _this.children[index].run(done); }), done); }; @@ -2395,11 +2397,12 @@ var Harness; _this.block = block; return _this; } - TestCase.prototype.addChild = function (child) { + var TestCase_prototype = TestCase.prototype; + TestCase_prototype.addChild = function (child) { throw new Error("Testcases may not be nested inside other testcases"); }; /** Run the test case block and fail the test if it raised an error. If no error is raised, the test passes. */ - TestCase.prototype.run = function (done) { + TestCase_prototype.run = function (done) { var that = this; Runnable.currentStack.push(this); emitLog('testStart', { desc: this.description }); @@ -2430,8 +2433,9 @@ var Harness; _this.block = block; return _this; } + var Scenario_prototype = Scenario.prototype; /** Run the block, and if the block doesn't raise an error, run the children. */ - Scenario.prototype.run = function (done) { + Scenario_prototype.run = function (done) { var that = this; Runnable.currentStack.push(this); emitLog('scenarioStart', { desc: this.description }); @@ -2456,7 +2460,7 @@ var Harness; * set this scenario to failed. Synchronous tests will run synchronously without * adding stack frames. */ - Scenario.prototype.runChildren = function (done, index) { + Scenario_prototype.runChildren = function (done, index) { if (index === void 0) { index = 0; } var that = this; var async = false; @@ -2483,11 +2487,12 @@ var Harness; function Run() { return _super.call(this, 'Test Run', null) || this; } - Run.prototype.run = function () { + var Run_prototype = Run.prototype; + Run_prototype.run = function () { emitLog('start'); this.runChildren(); }; - Run.prototype.runChildren = function (index) { + Run_prototype.runChildren = function (index) { if (index === void 0) { index = 0; } var async = false; var that = this; @@ -2533,11 +2538,12 @@ var Harness; function Timer() { this.time = 0; } - Timer.prototype.start = function () { + var Timer_prototype = Timer.prototype; + Timer_prototype.start = function () { this.time = 0; this.startTime = Clock.now(); }; - Timer.prototype.end = function () { + Timer_prototype.end = function () { // Set time to MS. this.time = (Clock.now() - this.startTime) / Clock.resolution * 1000; }; @@ -2548,17 +2554,18 @@ var Harness; function Dataset() { this.data = []; } - Dataset.prototype.add = function (value) { + var Dataset_prototype = Dataset.prototype; + Dataset_prototype.add = function (value) { this.data.push(value); }; - Dataset.prototype.mean = function () { + Dataset_prototype.mean = function () { var sum = 0; for (var i = 0; i < this.data.length; i++) { sum += this.data[i]; } return sum / this.data.length; }; - Dataset.prototype.min = function () { + Dataset_prototype.min = function () { var min = this.data[0]; for (var i = 1; i < this.data.length; i++) { if (this.data[i] < min) { @@ -2567,7 +2574,7 @@ var Harness; } return min; }; - Dataset.prototype.max = function () { + Dataset_prototype.max = function () { var max = this.data[0]; for (var i = 1; i < this.data.length; i++) { if (this.data[i] > max) { @@ -2576,7 +2583,7 @@ var Harness; } return max; }; - Dataset.prototype.stdDev = function () { + Dataset_prototype.stdDev = function () { var sampleMean = this.mean(); var sumOfSquares = 0; for (var i = 0; i < this.data.length; i++) { @@ -2594,12 +2601,13 @@ var Harness; this.description = ""; this.results = {}; } - Benchmark.prototype.bench = function (subBench) { }; - Benchmark.prototype.before = function () { }; - Benchmark.prototype.beforeEach = function () { }; - Benchmark.prototype.after = function () { }; - Benchmark.prototype.afterEach = function () { }; - Benchmark.prototype.addTimingFor = function (name, timing) { + var Benchmark_prototype = Benchmark.prototype; + Benchmark_prototype.bench = function (subBench) { }; + Benchmark_prototype.before = function () { }; + Benchmark_prototype.beforeEach = function () { }; + Benchmark_prototype.after = function () { }; + Benchmark_prototype.afterEach = function () { }; + Benchmark_prototype.addTimingFor = function (name, timing) { this.results[name] = this.results[name] || new Dataset(); this.results[name].add(timing); }; @@ -2667,20 +2675,21 @@ var Harness; this.lines = []; this.currentLine = ""; } - WriterAggregator.prototype.Write = function (str) { + var WriterAggregator_prototype = WriterAggregator.prototype; + WriterAggregator_prototype.Write = function (str) { this.currentLine += str; }; - WriterAggregator.prototype.WriteLine = function (str) { + WriterAggregator_prototype.WriteLine = function (str) { this.lines.push(this.currentLine + str); this.currentLine = ""; }; - WriterAggregator.prototype.Close = function () { + WriterAggregator_prototype.Close = function () { if (this.currentLine.length > 0) { this.lines.push(this.currentLine); } this.currentLine = ""; }; - WriterAggregator.prototype.reset = function () { + WriterAggregator_prototype.reset = function () { this.lines = []; this.currentLine = ""; }; @@ -2692,8 +2701,9 @@ var Harness; function EmitterIOHost() { this.fileCollection = {}; } + var EmitterIOHost_prototype = EmitterIOHost.prototype; /** create file gets the whole path to create, so this works as expected with the --out parameter */ - EmitterIOHost.prototype.createFile = function (s, useUTF8) { + EmitterIOHost_prototype.createFile = function (s, useUTF8) { if (this.fileCollection[s]) { return this.fileCollection[s]; } @@ -2701,11 +2711,11 @@ var Harness; this.fileCollection[s] = writer; return writer; }; - EmitterIOHost.prototype.directoryExists = function (s) { return false; }; - EmitterIOHost.prototype.fileExists = function (s) { return typeof this.fileCollection[s] !== 'undefined'; }; - EmitterIOHost.prototype.resolvePath = function (s) { return s; }; - EmitterIOHost.prototype.reset = function () { this.fileCollection = {}; }; - EmitterIOHost.prototype.toArray = function () { + EmitterIOHost_prototype.directoryExists = function (s) { return false; }; + EmitterIOHost_prototype.fileExists = function (s) { return typeof this.fileCollection[s] !== 'undefined'; }; + EmitterIOHost_prototype.resolvePath = function (s) { return s; }; + EmitterIOHost_prototype.reset = function () { this.fileCollection = {}; }; + EmitterIOHost_prototype.toArray = function () { var result = []; for (var p in this.fileCollection) { if (this.fileCollection.hasOwnProperty(p)) { @@ -2775,19 +2785,20 @@ var Harness; this.code = code; this.identifier = identifier; } - Type.prototype.normalizeToArray = function (arg) { + var Type_prototype = Type.prototype; + Type_prototype.normalizeToArray = function (arg) { if ((Array.isArray && Array.isArray(arg)) || arg instanceof Array) return arg; return [arg]; }; - Type.prototype.compilesOk = function (testCode) { + Type_prototype.compilesOk = function (testCode) { var errors = null; compileString(testCode, 'test.ts', function (compilerResult) { errors = compilerResult.errors; }); return errors.length === 0; }; - Type.prototype.isSubtypeOf = function (other) { + Type_prototype.isSubtypeOf = function (other) { var testCode = 'class __test1__ {\n'; testCode += ' public test() {\n'; testCode += ' ' + other.code + ';\n'; @@ -2817,7 +2828,7 @@ var Harness; // testCode += 'function __test__function__() { if(true) { return __test1__val__ }; return __test2__val__; }'; // return this.compilesOk(testCode); //} - Type.prototype.assertSubtypeOf = function (others) { + Type_prototype.assertSubtypeOf = function (others) { others = this.normalizeToArray(others); for (var i = 0; i < others.length; i++) { if (!this.isSubtypeOf(others[i])) { @@ -2825,7 +2836,7 @@ var Harness; } } }; - Type.prototype.assertNotSubtypeOf = function (others) { + Type_prototype.assertNotSubtypeOf = function (others) { others = this.normalizeToArray(others); for (var i = 0; i < others.length; i++) { if (this.isSubtypeOf(others[i])) { @@ -2843,7 +2854,7 @@ var Harness; // throw new Error("Expected " + this.type + " to not be identical to " + other.type); // } //} - Type.prototype.isAssignmentCompatibleWith = function (other) { + Type_prototype.isAssignmentCompatibleWith = function (other) { var testCode = 'module __test1__ {\n'; testCode += ' ' + this.code + ';\n'; testCode += ' export var __val__ = ' + this.identifier + ';\n'; @@ -2857,7 +2868,7 @@ var Harness; testCode += '__test2__val__ = __test1__val__;'; return this.compilesOk(testCode); }; - Type.prototype.assertAssignmentCompatibleWith = function (others) { + Type_prototype.assertAssignmentCompatibleWith = function (others) { others = this.normalizeToArray(others); for (var i = 0; i < others.length; i++) { var other = others[i]; @@ -2866,7 +2877,7 @@ var Harness; } } }; - Type.prototype.assertNotAssignmentCompatibleWith = function (others) { + Type_prototype.assertNotAssignmentCompatibleWith = function (others) { others = this.normalizeToArray(others); for (var i = 0; i < others.length; i++) { var other = others[i]; @@ -2875,7 +2886,7 @@ var Harness; } } }; - Type.prototype.assertThisCanBeAssignedTo = function (desc, these, notThese) { + Type_prototype.assertThisCanBeAssignedTo = function (desc, these, notThese) { var _this = this; it(desc + " is assignable to ", function () { _this.assertAssignmentCompatibleWith(these); @@ -2894,7 +2905,8 @@ var Harness; this.string = this.get('var x : string', 'x'); this.boolean = this.get('var x : boolean', 'x'); } - TypeFactory.prototype.get = function (code, target) { + var TypeFactory_prototype = TypeFactory.prototype; + TypeFactory_prototype.get = function (code, target) { var targetIdentifier = ''; var targetPosition = -1; if (typeof target === "string") { @@ -2970,7 +2982,7 @@ var Harness; return matchingIdentifiers[0]; } }; - TypeFactory.prototype.getTypeInfoName = function (ast) { + TypeFactory_prototype.getTypeInfoName = function (ast) { var name = ''; switch (ast.nodeType) { case TypeScript.NodeType.Name: // Type Name? @@ -3019,7 +3031,7 @@ var Harness; } return name; }; - TypeFactory.prototype.isOfType = function (expr, expectedType) { + TypeFactory_prototype.isOfType = function (expr, expectedType) { var actualType = this.get('var _v_a_r_ = ' + expr, '_v_a_r_'); it('Expression "' + expr + '" is of type "' + expectedType + '"', function () { assert.equal(actualType.type, expectedType); @@ -3424,13 +3436,14 @@ var Harness; this.editRanges = []; this.version = 1; } - ScriptInfo.prototype.updateContent = function (content, isResident) { + var ScriptInfo_prototype = ScriptInfo.prototype; + ScriptInfo_prototype.updateContent = function (content, isResident) { this.editRanges = []; this.content = content; this.isResident = isResident; this.version++; }; - ScriptInfo.prototype.editContent = function (minChar, limChar, newText) { + ScriptInfo_prototype.editContent = function (minChar, limChar, newText) { // Apply edits var prefix = this.content.substring(0, minChar); var middle = newText; @@ -3447,7 +3460,7 @@ var Harness; // Update version # this.version++; }; - ScriptInfo.prototype.getEditRangeSinceVersion = function (version) { + ScriptInfo_prototype.getEditRangeSinceVersion = function (version) { if (this.version == version) { // No edits! return null; @@ -3472,20 +3485,21 @@ var Harness; this.scripts = []; this.maxScriptVersions = 100; } - TypeScriptLS.prototype.addDefaultLibrary = function () { + var TypeScriptLS_prototype = TypeScriptLS.prototype; + TypeScriptLS_prototype.addDefaultLibrary = function () { this.addScript("lib.d.ts", Harness.Compiler.libText, true); }; - TypeScriptLS.prototype.addFile = function (name, isResident) { + TypeScriptLS_prototype.addFile = function (name, isResident) { if (isResident === void 0) { isResident = false; } var code = readFile(name); this.addScript(name, code, isResident); }; - TypeScriptLS.prototype.addScript = function (name, content, isResident) { + TypeScriptLS_prototype.addScript = function (name, content, isResident) { if (isResident === void 0) { isResident = false; } var script = new ScriptInfo(name, content, isResident, this.maxScriptVersions); this.scripts.push(script); }; - TypeScriptLS.prototype.updateScript = function (name, content, isResident) { + TypeScriptLS_prototype.updateScript = function (name, content, isResident) { if (isResident === void 0) { isResident = false; } for (var i = 0; i < this.scripts.length; i++) { if (this.scripts[i].name == name) { @@ -3495,7 +3509,7 @@ var Harness; } this.addScript(name, content, isResident); }; - TypeScriptLS.prototype.editScript = function (name, minChar, limChar, newText) { + TypeScriptLS_prototype.editScript = function (name, minChar, limChar, newText) { for (var i = 0; i < this.scripts.length; i++) { if (this.scripts[i].name == name) { this.scripts[i].editContent(minChar, limChar, newText); @@ -3504,46 +3518,46 @@ var Harness; } throw new Error("No script with name '" + name + "'"); }; - TypeScriptLS.prototype.getScriptContent = function (scriptIndex) { + TypeScriptLS_prototype.getScriptContent = function (scriptIndex) { return this.scripts[scriptIndex].content; }; ////////////////////////////////////////////////////////////////////// // ILogger implementation // - TypeScriptLS.prototype.information = function () { return false; }; - TypeScriptLS.prototype.debug = function () { return true; }; - TypeScriptLS.prototype.warning = function () { return true; }; - TypeScriptLS.prototype.error = function () { return true; }; - TypeScriptLS.prototype.fatal = function () { return true; }; - TypeScriptLS.prototype.log = function (s) { + TypeScriptLS_prototype.information = function () { return false; }; + TypeScriptLS_prototype.debug = function () { return true; }; + TypeScriptLS_prototype.warning = function () { return true; }; + TypeScriptLS_prototype.error = function () { return true; }; + TypeScriptLS_prototype.fatal = function () { return true; }; + TypeScriptLS_prototype.log = function (s) { // For debugging... //IO.printLine("TypeScriptLS:" + s); }; ////////////////////////////////////////////////////////////////////// // ILanguageServiceShimHost implementation // - TypeScriptLS.prototype.getCompilationSettings = function () { + TypeScriptLS_prototype.getCompilationSettings = function () { return ""; // i.e. default settings }; - TypeScriptLS.prototype.getScriptCount = function () { + TypeScriptLS_prototype.getScriptCount = function () { return this.scripts.length; }; - TypeScriptLS.prototype.getScriptSourceText = function (scriptIndex, start, end) { + TypeScriptLS_prototype.getScriptSourceText = function (scriptIndex, start, end) { return this.scripts[scriptIndex].content.substring(start, end); }; - TypeScriptLS.prototype.getScriptSourceLength = function (scriptIndex) { + TypeScriptLS_prototype.getScriptSourceLength = function (scriptIndex) { return this.scripts[scriptIndex].content.length; }; - TypeScriptLS.prototype.getScriptId = function (scriptIndex) { + TypeScriptLS_prototype.getScriptId = function (scriptIndex) { return this.scripts[scriptIndex].name; }; - TypeScriptLS.prototype.getScriptIsResident = function (scriptIndex) { + TypeScriptLS_prototype.getScriptIsResident = function (scriptIndex) { return this.scripts[scriptIndex].isResident; }; - TypeScriptLS.prototype.getScriptVersion = function (scriptIndex) { + TypeScriptLS_prototype.getScriptVersion = function (scriptIndex) { return this.scripts[scriptIndex].version; }; - TypeScriptLS.prototype.getScriptEditRangeSinceVersion = function (scriptIndex, scriptVersion) { + TypeScriptLS_prototype.getScriptEditRangeSinceVersion = function (scriptIndex, scriptVersion) { var range = this.scripts[scriptIndex].getEditRangeSinceVersion(scriptVersion); var result = (range.minChar + "," + range.limChar + "," + range.delta); return result; @@ -3551,14 +3565,14 @@ var Harness; /** Return a new instance of the language service shim, up-to-date wrt to typecheck. * To access the non-shim (i.e. actual) language service, use the "ls.languageService" property. */ - TypeScriptLS.prototype.getLanguageService = function () { + TypeScriptLS_prototype.getLanguageService = function () { var ls = new Services.TypeScriptServicesFactory().createLanguageServiceShim(this); ls.refresh(true); this.ls = ls; return ls; }; /** Parse file given its source text */ - TypeScriptLS.prototype.parseSourceText = function (fileName, sourceText) { + TypeScriptLS_prototype.parseSourceText = function (fileName, sourceText) { var parser = new TypeScript.Parser(); parser.setErrorRecovery(null); parser.errorCallback = function (a, b, c, d) { }; @@ -3566,7 +3580,7 @@ var Harness; return script; }; /** Parse a file on disk given its filename */ - TypeScriptLS.prototype.parseFile = function (fileName) { + TypeScriptLS_prototype.parseFile = function (fileName) { var sourceText = new TypeScript.StringSourceText(IO.readFile(fileName)); return this.parseSourceText(fileName, sourceText); }; @@ -3574,7 +3588,7 @@ var Harness; * @param line 1 based index * @param col 1 based index */ - TypeScriptLS.prototype.lineColToPosition = function (fileName, line, col) { + TypeScriptLS_prototype.lineColToPosition = function (fileName, line, col) { var script = this.ls.languageService.getScriptAST(fileName); assert.notNull(script); assert.is(line >= 1); @@ -3586,7 +3600,7 @@ var Harness; * @param line 0 based index * @param col 0 based index */ - TypeScriptLS.prototype.positionToZeroBasedLineCol = function (fileName, position) { + TypeScriptLS_prototype.positionToZeroBasedLineCol = function (fileName, position) { var script = this.ls.languageService.getScriptAST(fileName); assert.notNull(script); var result = TypeScript.getZeroBasedLineColumnFromPosition(script, position); @@ -3595,7 +3609,7 @@ var Harness; return result; }; /** Verify that applying edits to sourceFileName result in the content of the file baselineFileName */ - TypeScriptLS.prototype.checkEdits = function (sourceFileName, baselineFileName, edits) { + TypeScriptLS_prototype.checkEdits = function (sourceFileName, baselineFileName, edits) { var script = readFile(sourceFileName); var formattedScript = this.applyEdits(script, edits); var baseline = readFile(baselineFileName); @@ -3603,7 +3617,7 @@ var Harness; assert.equal(formattedScript, baseline); }; /** Apply an array of text edits to a string, and return the resulting string. */ - TypeScriptLS.prototype.applyEdits = function (content, edits) { + TypeScriptLS_prototype.applyEdits = function (content, edits) { var result = content; edits = this.normalizeEdits(edits); for (var i = edits.length - 1; i >= 0; i--) { @@ -3616,7 +3630,7 @@ var Harness; return result; }; /** Normalize an array of edits by removing overlapping entries and sorting entries on the minChar position. */ - TypeScriptLS.prototype.normalizeEdits = function (edits) { + TypeScriptLS_prototype.normalizeEdits = function (edits) { var result = []; function mapEdits(edits) { var result = []; @@ -3662,7 +3676,7 @@ var Harness; } return result; }; - TypeScriptLS.prototype.getHostSettings = function () { + TypeScriptLS_prototype.getHostSettings = function () { return JSON.stringify({ usePullLanguageService: Harness.usePull }); }; return TypeScriptLS; diff --git a/tests/baselines/reference/parserindenter.js b/tests/baselines/reference/parserindenter.js index da91d0cc92e61..65a4d774f65ac 100644 --- a/tests/baselines/reference/parserindenter.js +++ b/tests/baselines/reference/parserindenter.js @@ -776,7 +776,8 @@ var Formatting; this.ApplyScriptBlockIndentation(this.languageHostIndentation, this.tree); this.FillInheritedIndentation(this.tree); } - Indenter.prototype.GetIndentationEdits = function (token, nextToken, node, sameLineIndent) { + var Indenter_prototype = Indenter.prototype; + Indenter_prototype.GetIndentationEdits = function (token, nextToken, node, sameLineIndent) { if (this.logger.information()) { this.logger.log("GetIndentationEdits(" + "t1=[" + token.Span.startPosition() + "," + token.Span.endPosition() + "], " + @@ -792,7 +793,7 @@ var Formatting; } return result; }; - Indenter.prototype.GetIndentationEditsWorker = function (token, nextToken, node, sameLineIndent) { + Indenter_prototype.GetIndentationEditsWorker = function (token, nextToken, node, sameLineIndent) { var result = new List_TextEditInfo(); var indentationInfo = null; // This handles the case: @@ -865,7 +866,7 @@ var Formatting; } return result; }; - Indenter.prototype.GetCommentIndentationEdits = function (token) { + Indenter_prototype.GetCommentIndentationEdits = function (token) { var result = new List_TextEditInfo(); if (token.Token != AuthorTokenKind.atkComment) return result; @@ -909,7 +910,7 @@ var Formatting; } return indentSize; }; - Indenter.prototype.GetSpecialCaseIndentation = function (token, node) { + Indenter_prototype.GetSpecialCaseIndentation = function (token, node) { var indentationInfo = null; switch (token.Token) { case AuthorTokenKind.atkLCurly: // { is not part of the tree @@ -939,7 +940,7 @@ var Formatting; return indentationInfo; } }; - Indenter.prototype.GetSpecialCaseIndentationForLCurly = function (node) { + Indenter_prototype.GetSpecialCaseIndentationForLCurly = function (node) { var indentationInfo = null; if (node.AuthorNode.Details.Kind == AuthorParseNodeKind.apnkFncDecl || node.AuthorNode.EdgeLabel == AuthorParseNodeEdge.apneThen || node.AuthorNode.EdgeLabel == AuthorParseNodeEdge.apneElse) { @@ -955,7 +956,7 @@ var Formatting; indentationInfo = node.GetEffectiveIndentation(this); return indentationInfo; }; - Indenter.prototype.GetSpecialCaseIndentationForSemicolon = function (token, node) { + Indenter_prototype.GetSpecialCaseIndentationForSemicolon = function (token, node) { var indentationInfo = null; if (this.smartIndent) { indentationInfo = node.GetEffectiveChildrenIndentation(this); @@ -975,7 +976,7 @@ var Formatting; } return null; }; - Indenter.prototype.GetSpecialCaseIndentationForComment = function (token, node) { + Indenter_prototype.GetSpecialCaseIndentationForComment = function (token, node) { var indentationInfo = null; // Only indent line comment and the first line of block comment var twoCharSpan = token.Span.Intersection(new Span(token.Span.startPosition(), 2)); @@ -991,7 +992,7 @@ var Formatting; } return indentationInfo; }; - Indenter.prototype.CanIndentComment = function (token, node) { + Indenter_prototype.CanIndentComment = function (token, node) { switch (node.AuthorNode.Details.Kind) { case AuthorParseNodeKind.apnkProg: case AuthorParseNodeKind.apnkBlock: @@ -1022,7 +1023,7 @@ var Formatting; } return false; }; - Indenter.prototype.ApplyScriptBlockIndentation = function (languageHostIndentation, tree) { + Indenter_prototype.ApplyScriptBlockIndentation = function (languageHostIndentation, tree) { if (languageHostIndentation == null || tree.StartNodeSelf == null) return; var scriptBlockIndentation = this.ApplyIndentationLevel(languageHostIndentation, 1); @@ -1063,7 +1064,7 @@ var Formatting; // The root is the program. tree.Root.SetIndentationOverride(scriptBlockIndentation); }; - Indenter.prototype.GetIndentEdit = function (indentInfo, tokenStartPosition, sameLineIndent) { + Indenter_prototype.GetIndentEdit = function (indentInfo, tokenStartPosition, sameLineIndent) { var indentText = this.ApplyIndentationLevel(indentInfo.Prefix, indentInfo.Level); if (sameLineIndent) { return new TextEditInfo(tokenStartPosition, 0, indentText); @@ -1088,7 +1089,7 @@ var Formatting; } return null; }; - Indenter.prototype.ApplyIndentationLevel = function (existingIndentation, level) { + Indenter_prototype.ApplyIndentationLevel = function (existingIndentation, level) { var indentSize = this.editorOptions.IndentSize; var tabSize = this.editorOptions.TabSize; var convertTabsToSpaces = this.editorOptions.ConvertTabsToSpaces; @@ -1111,7 +1112,7 @@ var Formatting; var totalIndentSize = level * indentSize; return this.GetIndentString(existingIndentation, totalIndentSize, tabSize, convertTabsToSpaces); }; - Indenter.prototype.GetIndentString = function (prefix, totalIndentSize, tabSize, convertTabsToSpaces) { + Indenter_prototype.GetIndentString = function (prefix, totalIndentSize, tabSize, convertTabsToSpaces) { var tabString = convertTabsToSpaces ? StringUtils.create(' ', tabSize) : "\t"; var text = ""; if (!StringUtils.IsNullOrEmpty(prefix)) @@ -1129,7 +1130,7 @@ var Formatting; } return text; }; - Indenter.prototype.ApplyIndentationDeltaFromParent = function (token, node) { + Indenter_prototype.ApplyIndentationDeltaFromParent = function (token, node) { var indentationInfo = null; var indentableParent = node; while (indentableParent != null && !indentableParent.CanIndent()) @@ -1142,7 +1143,7 @@ var Formatting; } return indentationInfo; }; - Indenter.prototype.ApplyIndentationDelta1 = function (tokenStartPosition, delta) { + Indenter_prototype.ApplyIndentationDelta1 = function (tokenStartPosition, delta) { // Get current indentation var snapshotLine = this.snapshot.GetLineFromPosition(tokenStartPosition); var currentIndentSpan = new Span(snapshotLine.startPosition(), tokenStartPosition - snapshotLine.startPosition()); @@ -1150,7 +1151,7 @@ var Formatting; // Calculate new indentation from current-indentation and delta return this.ApplyIndentationDelta2(currentIndent, delta); }; - Indenter.prototype.ApplyIndentationDelta2 = function (currentIndent, delta) { + Indenter_prototype.ApplyIndentationDelta2 = function (currentIndent, delta) { if (delta == 0) return null; var currentIndentSize = Indenter.GetIndentSizeFromIndentText(currentIndent, this.editorOptions); @@ -1164,7 +1165,7 @@ var Formatting; } return null; }; - Indenter.prototype.GetIndentationDelta = function (tokenStartPosition, childTokenStartPosition /*?*/) { + Indenter_prototype.GetIndentationDelta = function (tokenStartPosition, childTokenStartPosition /*?*/) { Debug.Assert(childTokenStartPosition !== undefined, "Error: caller must pass 'null' for undefined position"); var indentationDeltaSize = this.offsetIndentationDeltas.GetValue(tokenStartPosition); if (indentationDeltaSize === null) { @@ -1202,7 +1203,7 @@ var Formatting; } return indentationDeltaSize; }; - Indenter.prototype.FillInheritedIndentation = function (tree) { + Indenter_prototype.FillInheritedIndentation = function (tree) { var offset = -1; var indentNode = null; if (tree.StartNodeSelf != null) { @@ -1282,7 +1283,7 @@ var Formatting; } while (indentNode != null); } }; - Indenter.prototype.GetLineIndentationForOffset = function (offset) { + Indenter_prototype.GetLineIndentationForOffset = function (offset) { var indentationEdit; // First check if we already have indentation info in our indentation bag indentationEdit = this.indentationBag.FindIndent(offset); @@ -1300,7 +1301,7 @@ var Formatting; return lineText.substr(0, index); } }; - Indenter.prototype.RegisterIndentation = function (indent, sameLineIndent) { + Indenter_prototype.RegisterIndentation = function (indent, sameLineIndent) { var indentationInfo = null; if (sameLineIndent) { // Consider the original indentation from the beginning of the line up to the indent position (or really the token position) @@ -1313,10 +1314,10 @@ var Formatting; } this.indentationBag.AddIndent(indentationInfo); }; - Indenter.prototype.RegisterIndentation2 = function (position, indent) { + Indenter_prototype.RegisterIndentation2 = function (position, indent) { this.RegisterIndentation(new TextEditInfo(position, 0, indent), false); }; - Indenter.prototype.AdjustStartOffsetIfNeeded = function (token, node) { + Indenter_prototype.AdjustStartOffsetIfNeeded = function (token, node) { if (token == null) return; var updateStartOffset = false; @@ -1335,7 +1336,7 @@ var Formatting; ParseNodeExtensions.SetNodeSpan(node, token.Span.startPosition(), node.AuthorNode.Details.EndOffset); } }; - Indenter.prototype.IsMultiLineString = function (token) { + Indenter_prototype.IsMultiLineString = function (token) { return token.tokenID === TypeScript.TokenID.StringLiteral && this.snapshot.GetLineNumberFromPosition(token.Span.endPosition()) > this.snapshot.GetLineNumberFromPosition(token.Span.startPosition()); }; diff --git a/tests/baselines/reference/parsingClassRecoversWhenHittingUnexpectedSemicolon.js b/tests/baselines/reference/parsingClassRecoversWhenHittingUnexpectedSemicolon.js index f3351eba4853a..db60189dc0f15 100644 --- a/tests/baselines/reference/parsingClassRecoversWhenHittingUnexpectedSemicolon.js +++ b/tests/baselines/reference/parsingClassRecoversWhenHittingUnexpectedSemicolon.js @@ -9,7 +9,8 @@ class C { var C = /** @class */ (function () { function C() { } - C.prototype.f = function () { }; + var C_prototype = C.prototype; + C_prototype.f = function () { }; ; return C; }()); diff --git a/tests/baselines/reference/primitiveMembers.js b/tests/baselines/reference/primitiveMembers.js index 71350b818b83e..01a15939477e6 100644 --- a/tests/baselines/reference/primitiveMembers.js +++ b/tests/baselines/reference/primitiveMembers.js @@ -66,7 +66,8 @@ var n3 = 5 || {}; var baz = /** @class */ (function () { function baz() { } - baz.prototype.bar = function () { }; + var baz_prototype = baz.prototype; + baz_prototype.bar = function () { }; ; return baz; }()); @@ -75,7 +76,8 @@ var foo = /** @class */ (function (_super) { function foo() { return _super !== null && _super.apply(this, arguments) || this; } - foo.prototype.bar = function () { return undefined; }; + var foo_prototype = foo.prototype; + foo_prototype.bar = function () { return undefined; }; ; return foo; }(baz)); diff --git a/tests/baselines/reference/privacyAccessorDeclFile.js b/tests/baselines/reference/privacyAccessorDeclFile.js index c21d2ed42c1a5..d6f74d245db7d 100644 --- a/tests/baselines/reference/privacyAccessorDeclFile.js +++ b/tests/baselines/reference/privacyAccessorDeclFile.js @@ -1076,6 +1076,7 @@ exports.publicClass = publicClass; var publicClassWithWithPrivateGetAccessorTypes = /** @class */ (function () { function publicClassWithWithPrivateGetAccessorTypes() { } + var publicClassWithWithPrivateGetAccessorTypes_prototype = publicClassWithWithPrivateGetAccessorTypes.prototype; Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes, "myPublicStaticMethod", { get: function () { return null; @@ -1090,14 +1091,14 @@ var publicClassWithWithPrivateGetAccessorTypes = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes_prototype, "myPublicMethod", { get: function () { return null; }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes_prototype, "myPrivateMethod", { get: function () { return null; }, @@ -1118,14 +1119,14 @@ var publicClassWithWithPrivateGetAccessorTypes = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes_prototype, "myPublicMethod1", { get: function () { return new privateClass(); }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes.prototype, "myPrivateMethod1", { + Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes_prototype, "myPrivateMethod1", { get: function () { return new privateClass(); }, @@ -1138,6 +1139,7 @@ exports.publicClassWithWithPrivateGetAccessorTypes = publicClassWithWithPrivateG var publicClassWithWithPublicGetAccessorTypes = /** @class */ (function () { function publicClassWithWithPublicGetAccessorTypes() { } + var publicClassWithWithPublicGetAccessorTypes_prototype = publicClassWithWithPublicGetAccessorTypes.prototype; Object.defineProperty(publicClassWithWithPublicGetAccessorTypes, "myPublicStaticMethod", { get: function () { return null; @@ -1152,14 +1154,14 @@ var publicClassWithWithPublicGetAccessorTypes = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPublicGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(publicClassWithWithPublicGetAccessorTypes_prototype, "myPublicMethod", { get: function () { return null; }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPublicGetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(publicClassWithWithPublicGetAccessorTypes_prototype, "myPrivateMethod", { get: function () { return null; }, @@ -1180,14 +1182,14 @@ var publicClassWithWithPublicGetAccessorTypes = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPublicGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(publicClassWithWithPublicGetAccessorTypes_prototype, "myPublicMethod1", { get: function () { return new publicClass(); }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPublicGetAccessorTypes.prototype, "myPrivateMethod1", { + Object.defineProperty(publicClassWithWithPublicGetAccessorTypes_prototype, "myPrivateMethod1", { get: function () { return new publicClass(); }, @@ -1200,6 +1202,7 @@ exports.publicClassWithWithPublicGetAccessorTypes = publicClassWithWithPublicGet var privateClassWithWithPrivateGetAccessorTypes = /** @class */ (function () { function privateClassWithWithPrivateGetAccessorTypes() { } + var privateClassWithWithPrivateGetAccessorTypes_prototype = privateClassWithWithPrivateGetAccessorTypes.prototype; Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes, "myPublicStaticMethod", { get: function () { return null; @@ -1214,14 +1217,14 @@ var privateClassWithWithPrivateGetAccessorTypes = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes_prototype, "myPublicMethod", { get: function () { return null; }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes_prototype, "myPrivateMethod", { get: function () { return null; }, @@ -1242,14 +1245,14 @@ var privateClassWithWithPrivateGetAccessorTypes = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes_prototype, "myPublicMethod1", { get: function () { return new privateClass(); }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes.prototype, "myPrivateMethod1", { + Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes_prototype, "myPrivateMethod1", { get: function () { return new privateClass(); }, @@ -1261,6 +1264,7 @@ var privateClassWithWithPrivateGetAccessorTypes = /** @class */ (function () { var privateClassWithWithPublicGetAccessorTypes = /** @class */ (function () { function privateClassWithWithPublicGetAccessorTypes() { } + var privateClassWithWithPublicGetAccessorTypes_prototype = privateClassWithWithPublicGetAccessorTypes.prototype; Object.defineProperty(privateClassWithWithPublicGetAccessorTypes, "myPublicStaticMethod", { get: function () { return null; @@ -1275,14 +1279,14 @@ var privateClassWithWithPublicGetAccessorTypes = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPublicGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(privateClassWithWithPublicGetAccessorTypes_prototype, "myPublicMethod", { get: function () { return null; }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPublicGetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(privateClassWithWithPublicGetAccessorTypes_prototype, "myPrivateMethod", { get: function () { return null; }, @@ -1303,14 +1307,14 @@ var privateClassWithWithPublicGetAccessorTypes = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPublicGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(privateClassWithWithPublicGetAccessorTypes_prototype, "myPublicMethod1", { get: function () { return new publicClass(); }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPublicGetAccessorTypes.prototype, "myPrivateMethod1", { + Object.defineProperty(privateClassWithWithPublicGetAccessorTypes_prototype, "myPrivateMethod1", { get: function () { return new publicClass(); }, @@ -1322,6 +1326,7 @@ var privateClassWithWithPublicGetAccessorTypes = /** @class */ (function () { var publicClassWithWithPrivateSetAccessorTypes = /** @class */ (function () { function publicClassWithWithPrivateSetAccessorTypes() { } + var publicClassWithWithPrivateSetAccessorTypes_prototype = publicClassWithWithPrivateSetAccessorTypes.prototype; Object.defineProperty(publicClassWithWithPrivateSetAccessorTypes, "myPublicStaticMethod", { set: function (param) { }, @@ -1334,13 +1339,13 @@ var publicClassWithWithPrivateSetAccessorTypes = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateSetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(publicClassWithWithPrivateSetAccessorTypes_prototype, "myPublicMethod", { set: function (param) { }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateSetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(publicClassWithWithPrivateSetAccessorTypes_prototype, "myPrivateMethod", { set: function (param) { }, enumerable: false, @@ -1352,6 +1357,7 @@ exports.publicClassWithWithPrivateSetAccessorTypes = publicClassWithWithPrivateS var publicClassWithWithPublicSetAccessorTypes = /** @class */ (function () { function publicClassWithWithPublicSetAccessorTypes() { } + var publicClassWithWithPublicSetAccessorTypes_prototype = publicClassWithWithPublicSetAccessorTypes.prototype; Object.defineProperty(publicClassWithWithPublicSetAccessorTypes, "myPublicStaticMethod", { set: function (param) { }, @@ -1364,13 +1370,13 @@ var publicClassWithWithPublicSetAccessorTypes = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPublicSetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(publicClassWithWithPublicSetAccessorTypes_prototype, "myPublicMethod", { set: function (param) { }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPublicSetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(publicClassWithWithPublicSetAccessorTypes_prototype, "myPrivateMethod", { set: function (param) { }, enumerable: false, @@ -1382,6 +1388,7 @@ exports.publicClassWithWithPublicSetAccessorTypes = publicClassWithWithPublicSet var privateClassWithWithPrivateSetAccessorTypes = /** @class */ (function () { function privateClassWithWithPrivateSetAccessorTypes() { } + var privateClassWithWithPrivateSetAccessorTypes_prototype = privateClassWithWithPrivateSetAccessorTypes.prototype; Object.defineProperty(privateClassWithWithPrivateSetAccessorTypes, "myPublicStaticMethod", { set: function (param) { }, @@ -1394,13 +1401,13 @@ var privateClassWithWithPrivateSetAccessorTypes = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateSetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(privateClassWithWithPrivateSetAccessorTypes_prototype, "myPublicMethod", { set: function (param) { }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateSetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(privateClassWithWithPrivateSetAccessorTypes_prototype, "myPrivateMethod", { set: function (param) { }, enumerable: false, @@ -1411,6 +1418,7 @@ var privateClassWithWithPrivateSetAccessorTypes = /** @class */ (function () { var privateClassWithWithPublicSetAccessorTypes = /** @class */ (function () { function privateClassWithWithPublicSetAccessorTypes() { } + var privateClassWithWithPublicSetAccessorTypes_prototype = privateClassWithWithPublicSetAccessorTypes.prototype; Object.defineProperty(privateClassWithWithPublicSetAccessorTypes, "myPublicStaticMethod", { set: function (param) { }, @@ -1423,13 +1431,13 @@ var privateClassWithWithPublicSetAccessorTypes = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPublicSetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(privateClassWithWithPublicSetAccessorTypes_prototype, "myPublicMethod", { set: function (param) { }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPublicSetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(privateClassWithWithPublicSetAccessorTypes_prototype, "myPrivateMethod", { set: function (param) { }, enumerable: false, @@ -1440,6 +1448,7 @@ var privateClassWithWithPublicSetAccessorTypes = /** @class */ (function () { var publicClassWithPrivateModuleGetAccessorTypes = /** @class */ (function () { function publicClassWithPrivateModuleGetAccessorTypes() { } + var publicClassWithPrivateModuleGetAccessorTypes_prototype = publicClassWithPrivateModuleGetAccessorTypes.prototype; Object.defineProperty(publicClassWithPrivateModuleGetAccessorTypes, "myPublicStaticMethod", { get: function () { return null; @@ -1447,7 +1456,7 @@ var publicClassWithPrivateModuleGetAccessorTypes = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithPrivateModuleGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(publicClassWithPrivateModuleGetAccessorTypes_prototype, "myPublicMethod", { get: function () { return null; }, @@ -1461,7 +1470,7 @@ var publicClassWithPrivateModuleGetAccessorTypes = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithPrivateModuleGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(publicClassWithPrivateModuleGetAccessorTypes_prototype, "myPublicMethod1", { get: function () { return new privateModule.publicClass(); }, @@ -1492,6 +1501,7 @@ exports.publicClassWithPrivateModuleSetAccessorTypes = publicClassWithPrivateMod var privateClassWithPrivateModuleGetAccessorTypes = /** @class */ (function () { function privateClassWithPrivateModuleGetAccessorTypes() { } + var privateClassWithPrivateModuleGetAccessorTypes_prototype = privateClassWithPrivateModuleGetAccessorTypes.prototype; Object.defineProperty(privateClassWithPrivateModuleGetAccessorTypes, "myPublicStaticMethod", { get: function () { return null; @@ -1499,7 +1509,7 @@ var privateClassWithPrivateModuleGetAccessorTypes = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithPrivateModuleGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(privateClassWithPrivateModuleGetAccessorTypes_prototype, "myPublicMethod", { get: function () { return null; }, @@ -1513,7 +1523,7 @@ var privateClassWithPrivateModuleGetAccessorTypes = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithPrivateModuleGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(privateClassWithPrivateModuleGetAccessorTypes_prototype, "myPublicMethod1", { get: function () { return new privateModule.publicClass(); }, @@ -1555,6 +1565,7 @@ var publicModule; var publicClassWithWithPrivateGetAccessorTypes = /** @class */ (function () { function publicClassWithWithPrivateGetAccessorTypes() { } + var publicClassWithWithPrivateGetAccessorTypes_prototype_1 = publicClassWithWithPrivateGetAccessorTypes.prototype; Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes, "myPublicStaticMethod", { get: function () { return null; @@ -1569,14 +1580,14 @@ var publicModule; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes_prototype_1, "myPublicMethod", { get: function () { return null; }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes_prototype_1, "myPrivateMethod", { get: function () { return null; }, @@ -1597,14 +1608,14 @@ var publicModule; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes_prototype_1, "myPublicMethod1", { get: function () { return new privateClass(); }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes.prototype, "myPrivateMethod1", { + Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes_prototype_1, "myPrivateMethod1", { get: function () { return new privateClass(); }, @@ -1617,6 +1628,7 @@ var publicModule; var publicClassWithWithPublicGetAccessorTypes = /** @class */ (function () { function publicClassWithWithPublicGetAccessorTypes() { } + var publicClassWithWithPublicGetAccessorTypes_prototype_1 = publicClassWithWithPublicGetAccessorTypes.prototype; Object.defineProperty(publicClassWithWithPublicGetAccessorTypes, "myPublicStaticMethod", { get: function () { return null; @@ -1631,14 +1643,14 @@ var publicModule; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPublicGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(publicClassWithWithPublicGetAccessorTypes_prototype_1, "myPublicMethod", { get: function () { return null; }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPublicGetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(publicClassWithWithPublicGetAccessorTypes_prototype_1, "myPrivateMethod", { get: function () { return null; }, @@ -1659,14 +1671,14 @@ var publicModule; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPublicGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(publicClassWithWithPublicGetAccessorTypes_prototype_1, "myPublicMethod1", { get: function () { return new publicClass(); }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPublicGetAccessorTypes.prototype, "myPrivateMethod1", { + Object.defineProperty(publicClassWithWithPublicGetAccessorTypes_prototype_1, "myPrivateMethod1", { get: function () { return new publicClass(); }, @@ -1679,6 +1691,7 @@ var publicModule; var privateClassWithWithPrivateGetAccessorTypes = /** @class */ (function () { function privateClassWithWithPrivateGetAccessorTypes() { } + var privateClassWithWithPrivateGetAccessorTypes_prototype_1 = privateClassWithWithPrivateGetAccessorTypes.prototype; Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes, "myPublicStaticMethod", { get: function () { return null; @@ -1693,14 +1706,14 @@ var publicModule; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes_prototype_1, "myPublicMethod", { get: function () { return null; }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes_prototype_1, "myPrivateMethod", { get: function () { return null; }, @@ -1721,14 +1734,14 @@ var publicModule; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes_prototype_1, "myPublicMethod1", { get: function () { return new privateClass(); }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes.prototype, "myPrivateMethod1", { + Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes_prototype_1, "myPrivateMethod1", { get: function () { return new privateClass(); }, @@ -1740,6 +1753,7 @@ var publicModule; var privateClassWithWithPublicGetAccessorTypes = /** @class */ (function () { function privateClassWithWithPublicGetAccessorTypes() { } + var privateClassWithWithPublicGetAccessorTypes_prototype_1 = privateClassWithWithPublicGetAccessorTypes.prototype; Object.defineProperty(privateClassWithWithPublicGetAccessorTypes, "myPublicStaticMethod", { get: function () { return null; @@ -1754,14 +1768,14 @@ var publicModule; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPublicGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(privateClassWithWithPublicGetAccessorTypes_prototype_1, "myPublicMethod", { get: function () { return null; }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPublicGetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(privateClassWithWithPublicGetAccessorTypes_prototype_1, "myPrivateMethod", { get: function () { return null; }, @@ -1782,14 +1796,14 @@ var publicModule; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPublicGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(privateClassWithWithPublicGetAccessorTypes_prototype_1, "myPublicMethod1", { get: function () { return new publicClass(); }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPublicGetAccessorTypes.prototype, "myPrivateMethod1", { + Object.defineProperty(privateClassWithWithPublicGetAccessorTypes_prototype_1, "myPrivateMethod1", { get: function () { return new publicClass(); }, @@ -1801,6 +1815,7 @@ var publicModule; var publicClassWithWithPrivateSetAccessorTypes = /** @class */ (function () { function publicClassWithWithPrivateSetAccessorTypes() { } + var publicClassWithWithPrivateSetAccessorTypes_prototype_1 = publicClassWithWithPrivateSetAccessorTypes.prototype; Object.defineProperty(publicClassWithWithPrivateSetAccessorTypes, "myPublicStaticMethod", { set: function (param) { }, @@ -1813,13 +1828,13 @@ var publicModule; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateSetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(publicClassWithWithPrivateSetAccessorTypes_prototype_1, "myPublicMethod", { set: function (param) { }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateSetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(publicClassWithWithPrivateSetAccessorTypes_prototype_1, "myPrivateMethod", { set: function (param) { }, enumerable: false, @@ -1831,6 +1846,7 @@ var publicModule; var publicClassWithWithPublicSetAccessorTypes = /** @class */ (function () { function publicClassWithWithPublicSetAccessorTypes() { } + var publicClassWithWithPublicSetAccessorTypes_prototype_1 = publicClassWithWithPublicSetAccessorTypes.prototype; Object.defineProperty(publicClassWithWithPublicSetAccessorTypes, "myPublicStaticMethod", { set: function (param) { }, @@ -1843,13 +1859,13 @@ var publicModule; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPublicSetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(publicClassWithWithPublicSetAccessorTypes_prototype_1, "myPublicMethod", { set: function (param) { }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPublicSetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(publicClassWithWithPublicSetAccessorTypes_prototype_1, "myPrivateMethod", { set: function (param) { }, enumerable: false, @@ -1861,6 +1877,7 @@ var publicModule; var privateClassWithWithPrivateSetAccessorTypes = /** @class */ (function () { function privateClassWithWithPrivateSetAccessorTypes() { } + var privateClassWithWithPrivateSetAccessorTypes_prototype_1 = privateClassWithWithPrivateSetAccessorTypes.prototype; Object.defineProperty(privateClassWithWithPrivateSetAccessorTypes, "myPublicStaticMethod", { set: function (param) { }, @@ -1873,13 +1890,13 @@ var publicModule; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateSetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(privateClassWithWithPrivateSetAccessorTypes_prototype_1, "myPublicMethod", { set: function (param) { }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateSetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(privateClassWithWithPrivateSetAccessorTypes_prototype_1, "myPrivateMethod", { set: function (param) { }, enumerable: false, @@ -1890,6 +1907,7 @@ var publicModule; var privateClassWithWithPublicSetAccessorTypes = /** @class */ (function () { function privateClassWithWithPublicSetAccessorTypes() { } + var privateClassWithWithPublicSetAccessorTypes_prototype_1 = privateClassWithWithPublicSetAccessorTypes.prototype; Object.defineProperty(privateClassWithWithPublicSetAccessorTypes, "myPublicStaticMethod", { set: function (param) { }, @@ -1902,13 +1920,13 @@ var publicModule; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPublicSetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(privateClassWithWithPublicSetAccessorTypes_prototype_1, "myPublicMethod", { set: function (param) { }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPublicSetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(privateClassWithWithPublicSetAccessorTypes_prototype_1, "myPrivateMethod", { set: function (param) { }, enumerable: false, @@ -1919,6 +1937,7 @@ var publicModule; var publicClassWithPrivateModuleGetAccessorTypes = /** @class */ (function () { function publicClassWithPrivateModuleGetAccessorTypes() { } + var publicClassWithPrivateModuleGetAccessorTypes_prototype_1 = publicClassWithPrivateModuleGetAccessorTypes.prototype; Object.defineProperty(publicClassWithPrivateModuleGetAccessorTypes, "myPublicStaticMethod", { get: function () { return null; @@ -1926,7 +1945,7 @@ var publicModule; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithPrivateModuleGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(publicClassWithPrivateModuleGetAccessorTypes_prototype_1, "myPublicMethod", { get: function () { return null; }, @@ -1940,7 +1959,7 @@ var publicModule; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithPrivateModuleGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(publicClassWithPrivateModuleGetAccessorTypes_prototype_1, "myPublicMethod1", { get: function () { return new privateModule.publicClass(); }, @@ -1971,6 +1990,7 @@ var publicModule; var privateClassWithPrivateModuleGetAccessorTypes = /** @class */ (function () { function privateClassWithPrivateModuleGetAccessorTypes() { } + var privateClassWithPrivateModuleGetAccessorTypes_prototype_1 = privateClassWithPrivateModuleGetAccessorTypes.prototype; Object.defineProperty(privateClassWithPrivateModuleGetAccessorTypes, "myPublicStaticMethod", { get: function () { return null; @@ -1978,7 +1998,7 @@ var publicModule; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithPrivateModuleGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(privateClassWithPrivateModuleGetAccessorTypes_prototype_1, "myPublicMethod", { get: function () { return null; }, @@ -1992,7 +2012,7 @@ var publicModule; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithPrivateModuleGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(privateClassWithPrivateModuleGetAccessorTypes_prototype_1, "myPublicMethod1", { get: function () { return new privateModule.publicClass(); }, @@ -2035,6 +2055,7 @@ var privateModule; var publicClassWithWithPrivateGetAccessorTypes = /** @class */ (function () { function publicClassWithWithPrivateGetAccessorTypes() { } + var publicClassWithWithPrivateGetAccessorTypes_prototype_2 = publicClassWithWithPrivateGetAccessorTypes.prototype; Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes, "myPublicStaticMethod", { get: function () { return null; @@ -2049,14 +2070,14 @@ var privateModule; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes_prototype_2, "myPublicMethod", { get: function () { return null; }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes_prototype_2, "myPrivateMethod", { get: function () { return null; }, @@ -2077,14 +2098,14 @@ var privateModule; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes_prototype_2, "myPublicMethod1", { get: function () { return new privateClass(); }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes.prototype, "myPrivateMethod1", { + Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes_prototype_2, "myPrivateMethod1", { get: function () { return new privateClass(); }, @@ -2097,6 +2118,7 @@ var privateModule; var publicClassWithWithPublicGetAccessorTypes = /** @class */ (function () { function publicClassWithWithPublicGetAccessorTypes() { } + var publicClassWithWithPublicGetAccessorTypes_prototype_2 = publicClassWithWithPublicGetAccessorTypes.prototype; Object.defineProperty(publicClassWithWithPublicGetAccessorTypes, "myPublicStaticMethod", { get: function () { return null; @@ -2111,14 +2133,14 @@ var privateModule; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPublicGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(publicClassWithWithPublicGetAccessorTypes_prototype_2, "myPublicMethod", { get: function () { return null; }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPublicGetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(publicClassWithWithPublicGetAccessorTypes_prototype_2, "myPrivateMethod", { get: function () { return null; }, @@ -2139,14 +2161,14 @@ var privateModule; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPublicGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(publicClassWithWithPublicGetAccessorTypes_prototype_2, "myPublicMethod1", { get: function () { return new publicClass(); }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPublicGetAccessorTypes.prototype, "myPrivateMethod1", { + Object.defineProperty(publicClassWithWithPublicGetAccessorTypes_prototype_2, "myPrivateMethod1", { get: function () { return new publicClass(); }, @@ -2159,6 +2181,7 @@ var privateModule; var privateClassWithWithPrivateGetAccessorTypes = /** @class */ (function () { function privateClassWithWithPrivateGetAccessorTypes() { } + var privateClassWithWithPrivateGetAccessorTypes_prototype_2 = privateClassWithWithPrivateGetAccessorTypes.prototype; Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes, "myPublicStaticMethod", { get: function () { return null; @@ -2173,14 +2196,14 @@ var privateModule; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes_prototype_2, "myPublicMethod", { get: function () { return null; }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes_prototype_2, "myPrivateMethod", { get: function () { return null; }, @@ -2201,14 +2224,14 @@ var privateModule; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes_prototype_2, "myPublicMethod1", { get: function () { return new privateClass(); }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes.prototype, "myPrivateMethod1", { + Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes_prototype_2, "myPrivateMethod1", { get: function () { return new privateClass(); }, @@ -2220,6 +2243,7 @@ var privateModule; var privateClassWithWithPublicGetAccessorTypes = /** @class */ (function () { function privateClassWithWithPublicGetAccessorTypes() { } + var privateClassWithWithPublicGetAccessorTypes_prototype_2 = privateClassWithWithPublicGetAccessorTypes.prototype; Object.defineProperty(privateClassWithWithPublicGetAccessorTypes, "myPublicStaticMethod", { get: function () { return null; @@ -2234,14 +2258,14 @@ var privateModule; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPublicGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(privateClassWithWithPublicGetAccessorTypes_prototype_2, "myPublicMethod", { get: function () { return null; }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPublicGetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(privateClassWithWithPublicGetAccessorTypes_prototype_2, "myPrivateMethod", { get: function () { return null; }, @@ -2262,14 +2286,14 @@ var privateModule; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPublicGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(privateClassWithWithPublicGetAccessorTypes_prototype_2, "myPublicMethod1", { get: function () { return new publicClass(); }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPublicGetAccessorTypes.prototype, "myPrivateMethod1", { + Object.defineProperty(privateClassWithWithPublicGetAccessorTypes_prototype_2, "myPrivateMethod1", { get: function () { return new publicClass(); }, @@ -2281,6 +2305,7 @@ var privateModule; var publicClassWithWithPrivateSetAccessorTypes = /** @class */ (function () { function publicClassWithWithPrivateSetAccessorTypes() { } + var publicClassWithWithPrivateSetAccessorTypes_prototype_2 = publicClassWithWithPrivateSetAccessorTypes.prototype; Object.defineProperty(publicClassWithWithPrivateSetAccessorTypes, "myPublicStaticMethod", { set: function (param) { }, @@ -2293,13 +2318,13 @@ var privateModule; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateSetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(publicClassWithWithPrivateSetAccessorTypes_prototype_2, "myPublicMethod", { set: function (param) { }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateSetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(publicClassWithWithPrivateSetAccessorTypes_prototype_2, "myPrivateMethod", { set: function (param) { }, enumerable: false, @@ -2311,6 +2336,7 @@ var privateModule; var publicClassWithWithPublicSetAccessorTypes = /** @class */ (function () { function publicClassWithWithPublicSetAccessorTypes() { } + var publicClassWithWithPublicSetAccessorTypes_prototype_2 = publicClassWithWithPublicSetAccessorTypes.prototype; Object.defineProperty(publicClassWithWithPublicSetAccessorTypes, "myPublicStaticMethod", { set: function (param) { }, @@ -2323,13 +2349,13 @@ var privateModule; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPublicSetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(publicClassWithWithPublicSetAccessorTypes_prototype_2, "myPublicMethod", { set: function (param) { }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPublicSetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(publicClassWithWithPublicSetAccessorTypes_prototype_2, "myPrivateMethod", { set: function (param) { }, enumerable: false, @@ -2341,6 +2367,7 @@ var privateModule; var privateClassWithWithPrivateSetAccessorTypes = /** @class */ (function () { function privateClassWithWithPrivateSetAccessorTypes() { } + var privateClassWithWithPrivateSetAccessorTypes_prototype_2 = privateClassWithWithPrivateSetAccessorTypes.prototype; Object.defineProperty(privateClassWithWithPrivateSetAccessorTypes, "myPublicStaticMethod", { set: function (param) { }, @@ -2353,13 +2380,13 @@ var privateModule; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateSetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(privateClassWithWithPrivateSetAccessorTypes_prototype_2, "myPublicMethod", { set: function (param) { }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateSetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(privateClassWithWithPrivateSetAccessorTypes_prototype_2, "myPrivateMethod", { set: function (param) { }, enumerable: false, @@ -2370,6 +2397,7 @@ var privateModule; var privateClassWithWithPublicSetAccessorTypes = /** @class */ (function () { function privateClassWithWithPublicSetAccessorTypes() { } + var privateClassWithWithPublicSetAccessorTypes_prototype_2 = privateClassWithWithPublicSetAccessorTypes.prototype; Object.defineProperty(privateClassWithWithPublicSetAccessorTypes, "myPublicStaticMethod", { set: function (param) { }, @@ -2382,13 +2410,13 @@ var privateModule; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPublicSetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(privateClassWithWithPublicSetAccessorTypes_prototype_2, "myPublicMethod", { set: function (param) { }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPublicSetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(privateClassWithWithPublicSetAccessorTypes_prototype_2, "myPrivateMethod", { set: function (param) { }, enumerable: false, @@ -2399,6 +2427,7 @@ var privateModule; var publicClassWithPrivateModuleGetAccessorTypes = /** @class */ (function () { function publicClassWithPrivateModuleGetAccessorTypes() { } + var publicClassWithPrivateModuleGetAccessorTypes_prototype_2 = publicClassWithPrivateModuleGetAccessorTypes.prototype; Object.defineProperty(publicClassWithPrivateModuleGetAccessorTypes, "myPublicStaticMethod", { get: function () { return null; @@ -2406,7 +2435,7 @@ var privateModule; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithPrivateModuleGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(publicClassWithPrivateModuleGetAccessorTypes_prototype_2, "myPublicMethod", { get: function () { return null; }, @@ -2420,7 +2449,7 @@ var privateModule; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithPrivateModuleGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(publicClassWithPrivateModuleGetAccessorTypes_prototype_2, "myPublicMethod1", { get: function () { return new privateModule.publicClass(); }, @@ -2451,6 +2480,7 @@ var privateModule; var privateClassWithPrivateModuleGetAccessorTypes = /** @class */ (function () { function privateClassWithPrivateModuleGetAccessorTypes() { } + var privateClassWithPrivateModuleGetAccessorTypes_prototype_2 = privateClassWithPrivateModuleGetAccessorTypes.prototype; Object.defineProperty(privateClassWithPrivateModuleGetAccessorTypes, "myPublicStaticMethod", { get: function () { return null; @@ -2458,7 +2488,7 @@ var privateModule; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithPrivateModuleGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(privateClassWithPrivateModuleGetAccessorTypes_prototype_2, "myPublicMethod", { get: function () { return null; }, @@ -2472,7 +2502,7 @@ var privateModule; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithPrivateModuleGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(privateClassWithPrivateModuleGetAccessorTypes_prototype_2, "myPublicMethod1", { get: function () { return new privateModule.publicClass(); }, @@ -2508,6 +2538,7 @@ var publicClassInGlobal = /** @class */ (function () { var publicClassInGlobalWithPublicGetAccessorTypes = /** @class */ (function () { function publicClassInGlobalWithPublicGetAccessorTypes() { } + var publicClassInGlobalWithPublicGetAccessorTypes_prototype = publicClassInGlobalWithPublicGetAccessorTypes.prototype; Object.defineProperty(publicClassInGlobalWithPublicGetAccessorTypes, "myPublicStaticMethod", { get: function () { return null; @@ -2522,14 +2553,14 @@ var publicClassInGlobalWithPublicGetAccessorTypes = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(publicClassInGlobalWithPublicGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(publicClassInGlobalWithPublicGetAccessorTypes_prototype, "myPublicMethod", { get: function () { return null; }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassInGlobalWithPublicGetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(publicClassInGlobalWithPublicGetAccessorTypes_prototype, "myPrivateMethod", { get: function () { return null; }, @@ -2550,14 +2581,14 @@ var publicClassInGlobalWithPublicGetAccessorTypes = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(publicClassInGlobalWithPublicGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(publicClassInGlobalWithPublicGetAccessorTypes_prototype, "myPublicMethod1", { get: function () { return new publicClassInGlobal(); }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassInGlobalWithPublicGetAccessorTypes.prototype, "myPrivateMethod1", { + Object.defineProperty(publicClassInGlobalWithPublicGetAccessorTypes_prototype, "myPrivateMethod1", { get: function () { return new publicClassInGlobal(); }, @@ -2569,6 +2600,7 @@ var publicClassInGlobalWithPublicGetAccessorTypes = /** @class */ (function () { var publicClassInGlobalWithWithPublicSetAccessorTypes = /** @class */ (function () { function publicClassInGlobalWithWithPublicSetAccessorTypes() { } + var publicClassInGlobalWithWithPublicSetAccessorTypes_prototype = publicClassInGlobalWithWithPublicSetAccessorTypes.prototype; Object.defineProperty(publicClassInGlobalWithWithPublicSetAccessorTypes, "myPublicStaticMethod", { set: function (param) { }, @@ -2581,13 +2613,13 @@ var publicClassInGlobalWithWithPublicSetAccessorTypes = /** @class */ (function enumerable: false, configurable: true }); - Object.defineProperty(publicClassInGlobalWithWithPublicSetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(publicClassInGlobalWithWithPublicSetAccessorTypes_prototype, "myPublicMethod", { set: function (param) { }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassInGlobalWithWithPublicSetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(publicClassInGlobalWithWithPublicSetAccessorTypes_prototype, "myPrivateMethod", { set: function (param) { }, enumerable: false, @@ -2624,6 +2656,7 @@ var publicModuleInGlobal; var publicClassWithWithPrivateGetAccessorTypes = /** @class */ (function () { function publicClassWithWithPrivateGetAccessorTypes() { } + var publicClassWithWithPrivateGetAccessorTypes_prototype = publicClassWithWithPrivateGetAccessorTypes.prototype; Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes, "myPublicStaticMethod", { get: function () { return null; @@ -2638,14 +2671,14 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes_prototype, "myPublicMethod", { get: function () { return null; }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes_prototype, "myPrivateMethod", { get: function () { return null; }, @@ -2666,14 +2699,14 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes_prototype, "myPublicMethod1", { get: function () { return new privateClass(); }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes.prototype, "myPrivateMethod1", { + Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes_prototype, "myPrivateMethod1", { get: function () { return new privateClass(); }, @@ -2686,6 +2719,7 @@ var publicModuleInGlobal; var publicClassWithWithPublicGetAccessorTypes = /** @class */ (function () { function publicClassWithWithPublicGetAccessorTypes() { } + var publicClassWithWithPublicGetAccessorTypes_prototype = publicClassWithWithPublicGetAccessorTypes.prototype; Object.defineProperty(publicClassWithWithPublicGetAccessorTypes, "myPublicStaticMethod", { get: function () { return null; @@ -2700,14 +2734,14 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPublicGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(publicClassWithWithPublicGetAccessorTypes_prototype, "myPublicMethod", { get: function () { return null; }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPublicGetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(publicClassWithWithPublicGetAccessorTypes_prototype, "myPrivateMethod", { get: function () { return null; }, @@ -2728,14 +2762,14 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPublicGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(publicClassWithWithPublicGetAccessorTypes_prototype, "myPublicMethod1", { get: function () { return new publicClass(); }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPublicGetAccessorTypes.prototype, "myPrivateMethod1", { + Object.defineProperty(publicClassWithWithPublicGetAccessorTypes_prototype, "myPrivateMethod1", { get: function () { return new publicClass(); }, @@ -2748,6 +2782,7 @@ var publicModuleInGlobal; var privateClassWithWithPrivateGetAccessorTypes = /** @class */ (function () { function privateClassWithWithPrivateGetAccessorTypes() { } + var privateClassWithWithPrivateGetAccessorTypes_prototype = privateClassWithWithPrivateGetAccessorTypes.prototype; Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes, "myPublicStaticMethod", { get: function () { return null; @@ -2762,14 +2797,14 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes_prototype, "myPublicMethod", { get: function () { return null; }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes_prototype, "myPrivateMethod", { get: function () { return null; }, @@ -2790,14 +2825,14 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes_prototype, "myPublicMethod1", { get: function () { return new privateClass(); }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes.prototype, "myPrivateMethod1", { + Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes_prototype, "myPrivateMethod1", { get: function () { return new privateClass(); }, @@ -2809,6 +2844,7 @@ var publicModuleInGlobal; var privateClassWithWithPublicGetAccessorTypes = /** @class */ (function () { function privateClassWithWithPublicGetAccessorTypes() { } + var privateClassWithWithPublicGetAccessorTypes_prototype = privateClassWithWithPublicGetAccessorTypes.prototype; Object.defineProperty(privateClassWithWithPublicGetAccessorTypes, "myPublicStaticMethod", { get: function () { return null; @@ -2823,14 +2859,14 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPublicGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(privateClassWithWithPublicGetAccessorTypes_prototype, "myPublicMethod", { get: function () { return null; }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPublicGetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(privateClassWithWithPublicGetAccessorTypes_prototype, "myPrivateMethod", { get: function () { return null; }, @@ -2851,14 +2887,14 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPublicGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(privateClassWithWithPublicGetAccessorTypes_prototype, "myPublicMethod1", { get: function () { return new publicClass(); }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPublicGetAccessorTypes.prototype, "myPrivateMethod1", { + Object.defineProperty(privateClassWithWithPublicGetAccessorTypes_prototype, "myPrivateMethod1", { get: function () { return new publicClass(); }, @@ -2870,6 +2906,7 @@ var publicModuleInGlobal; var publicClassWithWithPrivateSetAccessorTypes = /** @class */ (function () { function publicClassWithWithPrivateSetAccessorTypes() { } + var publicClassWithWithPrivateSetAccessorTypes_prototype = publicClassWithWithPrivateSetAccessorTypes.prototype; Object.defineProperty(publicClassWithWithPrivateSetAccessorTypes, "myPublicStaticMethod", { set: function (param) { }, @@ -2882,13 +2919,13 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateSetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(publicClassWithWithPrivateSetAccessorTypes_prototype, "myPublicMethod", { set: function (param) { }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateSetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(publicClassWithWithPrivateSetAccessorTypes_prototype, "myPrivateMethod", { set: function (param) { }, enumerable: false, @@ -2900,6 +2937,7 @@ var publicModuleInGlobal; var publicClassWithWithPublicSetAccessorTypes = /** @class */ (function () { function publicClassWithWithPublicSetAccessorTypes() { } + var publicClassWithWithPublicSetAccessorTypes_prototype = publicClassWithWithPublicSetAccessorTypes.prototype; Object.defineProperty(publicClassWithWithPublicSetAccessorTypes, "myPublicStaticMethod", { set: function (param) { }, @@ -2912,13 +2950,13 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPublicSetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(publicClassWithWithPublicSetAccessorTypes_prototype, "myPublicMethod", { set: function (param) { }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPublicSetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(publicClassWithWithPublicSetAccessorTypes_prototype, "myPrivateMethod", { set: function (param) { }, enumerable: false, @@ -2930,6 +2968,7 @@ var publicModuleInGlobal; var privateClassWithWithPrivateSetAccessorTypes = /** @class */ (function () { function privateClassWithWithPrivateSetAccessorTypes() { } + var privateClassWithWithPrivateSetAccessorTypes_prototype = privateClassWithWithPrivateSetAccessorTypes.prototype; Object.defineProperty(privateClassWithWithPrivateSetAccessorTypes, "myPublicStaticMethod", { set: function (param) { }, @@ -2942,13 +2981,13 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateSetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(privateClassWithWithPrivateSetAccessorTypes_prototype, "myPublicMethod", { set: function (param) { }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateSetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(privateClassWithWithPrivateSetAccessorTypes_prototype, "myPrivateMethod", { set: function (param) { }, enumerable: false, @@ -2959,6 +2998,7 @@ var publicModuleInGlobal; var privateClassWithWithPublicSetAccessorTypes = /** @class */ (function () { function privateClassWithWithPublicSetAccessorTypes() { } + var privateClassWithWithPublicSetAccessorTypes_prototype = privateClassWithWithPublicSetAccessorTypes.prototype; Object.defineProperty(privateClassWithWithPublicSetAccessorTypes, "myPublicStaticMethod", { set: function (param) { }, @@ -2971,13 +3011,13 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPublicSetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(privateClassWithWithPublicSetAccessorTypes_prototype, "myPublicMethod", { set: function (param) { }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPublicSetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(privateClassWithWithPublicSetAccessorTypes_prototype, "myPrivateMethod", { set: function (param) { }, enumerable: false, @@ -2988,6 +3028,7 @@ var publicModuleInGlobal; var publicClassWithPrivateModuleGetAccessorTypes = /** @class */ (function () { function publicClassWithPrivateModuleGetAccessorTypes() { } + var publicClassWithPrivateModuleGetAccessorTypes_prototype = publicClassWithPrivateModuleGetAccessorTypes.prototype; Object.defineProperty(publicClassWithPrivateModuleGetAccessorTypes, "myPublicStaticMethod", { get: function () { return null; @@ -2995,7 +3036,7 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithPrivateModuleGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(publicClassWithPrivateModuleGetAccessorTypes_prototype, "myPublicMethod", { get: function () { return null; }, @@ -3009,7 +3050,7 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithPrivateModuleGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(publicClassWithPrivateModuleGetAccessorTypes_prototype, "myPublicMethod1", { get: function () { return new privateModule.publicClass(); }, @@ -3040,6 +3081,7 @@ var publicModuleInGlobal; var privateClassWithPrivateModuleGetAccessorTypes = /** @class */ (function () { function privateClassWithPrivateModuleGetAccessorTypes() { } + var privateClassWithPrivateModuleGetAccessorTypes_prototype = privateClassWithPrivateModuleGetAccessorTypes.prototype; Object.defineProperty(privateClassWithPrivateModuleGetAccessorTypes, "myPublicStaticMethod", { get: function () { return null; @@ -3047,7 +3089,7 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithPrivateModuleGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(privateClassWithPrivateModuleGetAccessorTypes_prototype, "myPublicMethod", { get: function () { return null; }, @@ -3061,7 +3103,7 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithPrivateModuleGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(privateClassWithPrivateModuleGetAccessorTypes_prototype, "myPublicMethod1", { get: function () { return new privateModule.publicClass(); }, @@ -3091,6 +3133,7 @@ var publicModuleInGlobal; var publicClassWithWithPrivateGetAccessorTypes = /** @class */ (function () { function publicClassWithWithPrivateGetAccessorTypes() { } + var publicClassWithWithPrivateGetAccessorTypes_prototype_1 = publicClassWithWithPrivateGetAccessorTypes.prototype; Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes, "myPublicStaticMethod", { get: function () { return null; @@ -3105,14 +3148,14 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes_prototype_1, "myPublicMethod", { get: function () { return null; }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes_prototype_1, "myPrivateMethod", { get: function () { return null; }, @@ -3133,14 +3176,14 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes_prototype_1, "myPublicMethod1", { get: function () { return new privateClass(); }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes.prototype, "myPrivateMethod1", { + Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes_prototype_1, "myPrivateMethod1", { get: function () { return new privateClass(); }, @@ -3153,6 +3196,7 @@ var publicModuleInGlobal; var publicClassWithWithPublicGetAccessorTypes = /** @class */ (function () { function publicClassWithWithPublicGetAccessorTypes() { } + var publicClassWithWithPublicGetAccessorTypes_prototype_1 = publicClassWithWithPublicGetAccessorTypes.prototype; Object.defineProperty(publicClassWithWithPublicGetAccessorTypes, "myPublicStaticMethod", { get: function () { return null; @@ -3167,14 +3211,14 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPublicGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(publicClassWithWithPublicGetAccessorTypes_prototype_1, "myPublicMethod", { get: function () { return null; }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPublicGetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(publicClassWithWithPublicGetAccessorTypes_prototype_1, "myPrivateMethod", { get: function () { return null; }, @@ -3195,14 +3239,14 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPublicGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(publicClassWithWithPublicGetAccessorTypes_prototype_1, "myPublicMethod1", { get: function () { return new publicClass(); }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPublicGetAccessorTypes.prototype, "myPrivateMethod1", { + Object.defineProperty(publicClassWithWithPublicGetAccessorTypes_prototype_1, "myPrivateMethod1", { get: function () { return new publicClass(); }, @@ -3215,6 +3259,7 @@ var publicModuleInGlobal; var privateClassWithWithPrivateGetAccessorTypes = /** @class */ (function () { function privateClassWithWithPrivateGetAccessorTypes() { } + var privateClassWithWithPrivateGetAccessorTypes_prototype_1 = privateClassWithWithPrivateGetAccessorTypes.prototype; Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes, "myPublicStaticMethod", { get: function () { return null; @@ -3229,14 +3274,14 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes_prototype_1, "myPublicMethod", { get: function () { return null; }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes_prototype_1, "myPrivateMethod", { get: function () { return null; }, @@ -3257,14 +3302,14 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes_prototype_1, "myPublicMethod1", { get: function () { return new privateClass(); }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes.prototype, "myPrivateMethod1", { + Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes_prototype_1, "myPrivateMethod1", { get: function () { return new privateClass(); }, @@ -3276,6 +3321,7 @@ var publicModuleInGlobal; var privateClassWithWithPublicGetAccessorTypes = /** @class */ (function () { function privateClassWithWithPublicGetAccessorTypes() { } + var privateClassWithWithPublicGetAccessorTypes_prototype_1 = privateClassWithWithPublicGetAccessorTypes.prototype; Object.defineProperty(privateClassWithWithPublicGetAccessorTypes, "myPublicStaticMethod", { get: function () { return null; @@ -3290,14 +3336,14 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPublicGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(privateClassWithWithPublicGetAccessorTypes_prototype_1, "myPublicMethod", { get: function () { return null; }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPublicGetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(privateClassWithWithPublicGetAccessorTypes_prototype_1, "myPrivateMethod", { get: function () { return null; }, @@ -3318,14 +3364,14 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPublicGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(privateClassWithWithPublicGetAccessorTypes_prototype_1, "myPublicMethod1", { get: function () { return new publicClass(); }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPublicGetAccessorTypes.prototype, "myPrivateMethod1", { + Object.defineProperty(privateClassWithWithPublicGetAccessorTypes_prototype_1, "myPrivateMethod1", { get: function () { return new publicClass(); }, @@ -3337,6 +3383,7 @@ var publicModuleInGlobal; var publicClassWithWithPrivateSetAccessorTypes = /** @class */ (function () { function publicClassWithWithPrivateSetAccessorTypes() { } + var publicClassWithWithPrivateSetAccessorTypes_prototype_1 = publicClassWithWithPrivateSetAccessorTypes.prototype; Object.defineProperty(publicClassWithWithPrivateSetAccessorTypes, "myPublicStaticMethod", { set: function (param) { }, @@ -3349,13 +3396,13 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateSetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(publicClassWithWithPrivateSetAccessorTypes_prototype_1, "myPublicMethod", { set: function (param) { }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateSetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(publicClassWithWithPrivateSetAccessorTypes_prototype_1, "myPrivateMethod", { set: function (param) { }, enumerable: false, @@ -3367,6 +3414,7 @@ var publicModuleInGlobal; var publicClassWithWithPublicSetAccessorTypes = /** @class */ (function () { function publicClassWithWithPublicSetAccessorTypes() { } + var publicClassWithWithPublicSetAccessorTypes_prototype_1 = publicClassWithWithPublicSetAccessorTypes.prototype; Object.defineProperty(publicClassWithWithPublicSetAccessorTypes, "myPublicStaticMethod", { set: function (param) { }, @@ -3379,13 +3427,13 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPublicSetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(publicClassWithWithPublicSetAccessorTypes_prototype_1, "myPublicMethod", { set: function (param) { }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPublicSetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(publicClassWithWithPublicSetAccessorTypes_prototype_1, "myPrivateMethod", { set: function (param) { }, enumerable: false, @@ -3397,6 +3445,7 @@ var publicModuleInGlobal; var privateClassWithWithPrivateSetAccessorTypes = /** @class */ (function () { function privateClassWithWithPrivateSetAccessorTypes() { } + var privateClassWithWithPrivateSetAccessorTypes_prototype_1 = privateClassWithWithPrivateSetAccessorTypes.prototype; Object.defineProperty(privateClassWithWithPrivateSetAccessorTypes, "myPublicStaticMethod", { set: function (param) { }, @@ -3409,13 +3458,13 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateSetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(privateClassWithWithPrivateSetAccessorTypes_prototype_1, "myPublicMethod", { set: function (param) { }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateSetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(privateClassWithWithPrivateSetAccessorTypes_prototype_1, "myPrivateMethod", { set: function (param) { }, enumerable: false, @@ -3426,6 +3475,7 @@ var publicModuleInGlobal; var privateClassWithWithPublicSetAccessorTypes = /** @class */ (function () { function privateClassWithWithPublicSetAccessorTypes() { } + var privateClassWithWithPublicSetAccessorTypes_prototype_1 = privateClassWithWithPublicSetAccessorTypes.prototype; Object.defineProperty(privateClassWithWithPublicSetAccessorTypes, "myPublicStaticMethod", { set: function (param) { }, @@ -3438,13 +3488,13 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPublicSetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(privateClassWithWithPublicSetAccessorTypes_prototype_1, "myPublicMethod", { set: function (param) { }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPublicSetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(privateClassWithWithPublicSetAccessorTypes_prototype_1, "myPrivateMethod", { set: function (param) { }, enumerable: false, @@ -3455,6 +3505,7 @@ var publicModuleInGlobal; var publicClassWithPrivateModuleGetAccessorTypes = /** @class */ (function () { function publicClassWithPrivateModuleGetAccessorTypes() { } + var publicClassWithPrivateModuleGetAccessorTypes_prototype_1 = publicClassWithPrivateModuleGetAccessorTypes.prototype; Object.defineProperty(publicClassWithPrivateModuleGetAccessorTypes, "myPublicStaticMethod", { get: function () { return null; @@ -3462,7 +3513,7 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithPrivateModuleGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(publicClassWithPrivateModuleGetAccessorTypes_prototype_1, "myPublicMethod", { get: function () { return null; }, @@ -3476,7 +3527,7 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithPrivateModuleGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(publicClassWithPrivateModuleGetAccessorTypes_prototype_1, "myPublicMethod1", { get: function () { return new privateModule.publicClass(); }, @@ -3507,6 +3558,7 @@ var publicModuleInGlobal; var privateClassWithPrivateModuleGetAccessorTypes = /** @class */ (function () { function privateClassWithPrivateModuleGetAccessorTypes() { } + var privateClassWithPrivateModuleGetAccessorTypes_prototype_1 = privateClassWithPrivateModuleGetAccessorTypes.prototype; Object.defineProperty(privateClassWithPrivateModuleGetAccessorTypes, "myPublicStaticMethod", { get: function () { return null; @@ -3514,7 +3566,7 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithPrivateModuleGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(privateClassWithPrivateModuleGetAccessorTypes_prototype_1, "myPublicMethod", { get: function () { return null; }, @@ -3528,7 +3580,7 @@ var publicModuleInGlobal; enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithPrivateModuleGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(privateClassWithPrivateModuleGetAccessorTypes_prototype_1, "myPublicMethod1", { get: function () { return new privateModule.publicClass(); }, diff --git a/tests/baselines/reference/privacyCannotNameAccessorDeclFile.js b/tests/baselines/reference/privacyCannotNameAccessorDeclFile.js index d5a2ad2a7a098..9bafa90e41789 100644 --- a/tests/baselines/reference/privacyCannotNameAccessorDeclFile.js +++ b/tests/baselines/reference/privacyCannotNameAccessorDeclFile.js @@ -196,6 +196,7 @@ var exporter = require("./privacyCannotNameAccessorDeclFile_exporter"); var publicClassWithWithPrivateGetAccessorTypes = /** @class */ (function () { function publicClassWithWithPrivateGetAccessorTypes() { } + var publicClassWithWithPrivateGetAccessorTypes_prototype = publicClassWithWithPrivateGetAccessorTypes.prototype; Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes, "myPublicStaticMethod", { get: function () { return exporter.createExportedWidget1(); @@ -210,14 +211,14 @@ var publicClassWithWithPrivateGetAccessorTypes = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes_prototype, "myPublicMethod", { get: function () { return exporter.createExportedWidget1(); }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes_prototype, "myPrivateMethod", { get: function () { return exporter.createExportedWidget1(); }, @@ -238,14 +239,14 @@ var publicClassWithWithPrivateGetAccessorTypes = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes_prototype, "myPublicMethod1", { get: function () { return exporter.createExportedWidget3(); }, enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes.prototype, "myPrivateMethod1", { + Object.defineProperty(publicClassWithWithPrivateGetAccessorTypes_prototype, "myPrivateMethod1", { get: function () { return exporter.createExportedWidget3(); }, @@ -258,6 +259,7 @@ exports.publicClassWithWithPrivateGetAccessorTypes = publicClassWithWithPrivateG var privateClassWithWithPrivateGetAccessorTypes = /** @class */ (function () { function privateClassWithWithPrivateGetAccessorTypes() { } + var privateClassWithWithPrivateGetAccessorTypes_prototype = privateClassWithWithPrivateGetAccessorTypes.prototype; Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes, "myPublicStaticMethod", { get: function () { return exporter.createExportedWidget1(); @@ -272,14 +274,14 @@ var privateClassWithWithPrivateGetAccessorTypes = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes_prototype, "myPublicMethod", { get: function () { return exporter.createExportedWidget1(); }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes.prototype, "myPrivateMethod", { + Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes_prototype, "myPrivateMethod", { get: function () { return exporter.createExportedWidget1(); }, @@ -300,14 +302,14 @@ var privateClassWithWithPrivateGetAccessorTypes = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes_prototype, "myPublicMethod1", { get: function () { return exporter.createExportedWidget3(); }, enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes.prototype, "myPrivateMethod1", { + Object.defineProperty(privateClassWithWithPrivateGetAccessorTypes_prototype, "myPrivateMethod1", { get: function () { return exporter.createExportedWidget3(); }, @@ -319,6 +321,7 @@ var privateClassWithWithPrivateGetAccessorTypes = /** @class */ (function () { var publicClassWithPrivateModuleGetAccessorTypes = /** @class */ (function () { function publicClassWithPrivateModuleGetAccessorTypes() { } + var publicClassWithPrivateModuleGetAccessorTypes_prototype = publicClassWithPrivateModuleGetAccessorTypes.prototype; Object.defineProperty(publicClassWithPrivateModuleGetAccessorTypes, "myPublicStaticMethod", { get: function () { return exporter.createExportedWidget2(); @@ -326,7 +329,7 @@ var publicClassWithPrivateModuleGetAccessorTypes = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithPrivateModuleGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(publicClassWithPrivateModuleGetAccessorTypes_prototype, "myPublicMethod", { get: function () { return exporter.createExportedWidget2(); }, @@ -340,7 +343,7 @@ var publicClassWithPrivateModuleGetAccessorTypes = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(publicClassWithPrivateModuleGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(publicClassWithPrivateModuleGetAccessorTypes_prototype, "myPublicMethod1", { get: function () { return exporter.createExportedWidget4(); }, @@ -353,6 +356,7 @@ exports.publicClassWithPrivateModuleGetAccessorTypes = publicClassWithPrivateMod var privateClassWithPrivateModuleGetAccessorTypes = /** @class */ (function () { function privateClassWithPrivateModuleGetAccessorTypes() { } + var privateClassWithPrivateModuleGetAccessorTypes_prototype = privateClassWithPrivateModuleGetAccessorTypes.prototype; Object.defineProperty(privateClassWithPrivateModuleGetAccessorTypes, "myPublicStaticMethod", { get: function () { return exporter.createExportedWidget2(); @@ -360,7 +364,7 @@ var privateClassWithPrivateModuleGetAccessorTypes = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithPrivateModuleGetAccessorTypes.prototype, "myPublicMethod", { + Object.defineProperty(privateClassWithPrivateModuleGetAccessorTypes_prototype, "myPublicMethod", { get: function () { return exporter.createExportedWidget2(); }, @@ -374,7 +378,7 @@ var privateClassWithPrivateModuleGetAccessorTypes = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(privateClassWithPrivateModuleGetAccessorTypes.prototype, "myPublicMethod1", { + Object.defineProperty(privateClassWithPrivateModuleGetAccessorTypes_prototype, "myPublicMethod1", { get: function () { return exporter.createExportedWidget4(); }, diff --git a/tests/baselines/reference/privacyFunc.js b/tests/baselines/reference/privacyFunc.js index cc1173731259a..9b9010b239492 100644 --- a/tests/baselines/reference/privacyFunc.js +++ b/tests/baselines/reference/privacyFunc.js @@ -247,36 +247,37 @@ var m1; var C3_public = /** @class */ (function () { function C3_public(m1_c3_c1_2) { } - C3_public.prototype.f1_private = function (m1_c3_f1_arg) { + var C3_public_prototype = C3_public.prototype; + C3_public_prototype.f1_private = function (m1_c3_f1_arg) { }; - C3_public.prototype.f2_public = function (m1_c3_f2_arg) { + C3_public_prototype.f2_public = function (m1_c3_f2_arg) { }; - C3_public.prototype.f3_private = function (m1_c3_f3_arg) { + C3_public_prototype.f3_private = function (m1_c3_f3_arg) { }; - C3_public.prototype.f4_public = function (m1_c3_f4_arg) { + C3_public_prototype.f4_public = function (m1_c3_f4_arg) { }; - C3_public.prototype.f5_private = function () { + C3_public_prototype.f5_private = function () { return new C1_public(); }; - C3_public.prototype.f6_public = function () { + C3_public_prototype.f6_public = function () { return new C1_public(); }; - C3_public.prototype.f7_private = function () { + C3_public_prototype.f7_private = function () { return new C2_private(); }; - C3_public.prototype.f8_public = function () { + C3_public_prototype.f8_public = function () { return new C2_private(); // error }; - C3_public.prototype.f9_private = function () { + C3_public_prototype.f9_private = function () { return new C1_public(); }; - C3_public.prototype.f10_public = function () { + C3_public_prototype.f10_public = function () { return new C1_public(); }; - C3_public.prototype.f11_private = function () { + C3_public_prototype.f11_private = function () { return new C2_private(); }; - C3_public.prototype.f12_public = function () { + C3_public_prototype.f12_public = function () { return new C2_private(); //error }; return C3_public; @@ -285,36 +286,37 @@ var m1; var C4_private = /** @class */ (function () { function C4_private(m1_c4_c1_2) { } - C4_private.prototype.f1_private = function (m1_c4_f1_arg) { + var C4_private_prototype = C4_private.prototype; + C4_private_prototype.f1_private = function (m1_c4_f1_arg) { }; - C4_private.prototype.f2_public = function (m1_c4_f2_arg) { + C4_private_prototype.f2_public = function (m1_c4_f2_arg) { }; - C4_private.prototype.f3_private = function (m1_c4_f3_arg) { + C4_private_prototype.f3_private = function (m1_c4_f3_arg) { }; - C4_private.prototype.f4_public = function (m1_c4_f4_arg) { + C4_private_prototype.f4_public = function (m1_c4_f4_arg) { }; - C4_private.prototype.f5_private = function () { + C4_private_prototype.f5_private = function () { return new C1_public(); }; - C4_private.prototype.f6_public = function () { + C4_private_prototype.f6_public = function () { return new C1_public(); }; - C4_private.prototype.f7_private = function () { + C4_private_prototype.f7_private = function () { return new C2_private(); }; - C4_private.prototype.f8_public = function () { + C4_private_prototype.f8_public = function () { return new C2_private(); }; - C4_private.prototype.f9_private = function () { + C4_private_prototype.f9_private = function () { return new C1_public(); }; - C4_private.prototype.f10_public = function () { + C4_private_prototype.f10_public = function () { return new C1_public(); }; - C4_private.prototype.f11_private = function () { + C4_private_prototype.f11_private = function () { return new C2_private(); }; - C4_private.prototype.f12_public = function () { + C4_private_prototype.f12_public = function () { return new C2_private(); }; return C4_private; @@ -388,20 +390,21 @@ var C6_public = /** @class */ (function () { var C7_public = /** @class */ (function () { function C7_public(c7_c1_2) { } - C7_public.prototype.f1_private = function (c7_f1_arg) { + var C7_public_prototype = C7_public.prototype; + C7_public_prototype.f1_private = function (c7_f1_arg) { }; - C7_public.prototype.f2_public = function (c7_f2_arg) { + C7_public_prototype.f2_public = function (c7_f2_arg) { }; - C7_public.prototype.f5_private = function () { + C7_public_prototype.f5_private = function () { return new C6_public(); }; - C7_public.prototype.f6_public = function () { + C7_public_prototype.f6_public = function () { return new C6_public(); }; - C7_public.prototype.f9_private = function () { + C7_public_prototype.f9_private = function () { return new C6_public(); }; - C7_public.prototype.f10_public = function () { + C7_public_prototype.f10_public = function () { return new C6_public(); }; return C7_public; diff --git a/tests/baselines/reference/privacyFunctionCannotNameParameterTypeDeclFile.js b/tests/baselines/reference/privacyFunctionCannotNameParameterTypeDeclFile.js index 2b662caefa44d..10c0a0769d596 100644 --- a/tests/baselines/reference/privacyFunctionCannotNameParameterTypeDeclFile.js +++ b/tests/baselines/reference/privacyFunctionCannotNameParameterTypeDeclFile.js @@ -220,16 +220,17 @@ var publicClassWithWithPrivateParmeterTypes = /** @class */ (function () { this.param1 = param1; this.param2 = param2; } + var publicClassWithWithPrivateParmeterTypes_prototype = publicClassWithWithPrivateParmeterTypes.prototype; publicClassWithWithPrivateParmeterTypes.myPublicStaticMethod = function (param) { if (param === void 0) { param = exporter.createExportedWidget1(); } }; publicClassWithWithPrivateParmeterTypes.myPrivateStaticMethod = function (param) { if (param === void 0) { param = exporter.createExportedWidget1(); } }; - publicClassWithWithPrivateParmeterTypes.prototype.myPublicMethod = function (param) { + publicClassWithWithPrivateParmeterTypes_prototype.myPublicMethod = function (param) { if (param === void 0) { param = exporter.createExportedWidget1(); } }; - publicClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod = function (param) { + publicClassWithWithPrivateParmeterTypes_prototype.myPrivateMethod = function (param) { if (param === void 0) { param = exporter.createExportedWidget1(); } }; return publicClassWithWithPrivateParmeterTypes; @@ -243,16 +244,17 @@ var publicClassWithWithPrivateParmeterTypes1 = /** @class */ (function () { this.param1 = param1; this.param2 = param2; } + var publicClassWithWithPrivateParmeterTypes1_prototype = publicClassWithWithPrivateParmeterTypes1.prototype; publicClassWithWithPrivateParmeterTypes1.myPublicStaticMethod = function (param) { if (param === void 0) { param = exporter.createExportedWidget3(); } }; publicClassWithWithPrivateParmeterTypes1.myPrivateStaticMethod = function (param) { if (param === void 0) { param = exporter.createExportedWidget3(); } }; - publicClassWithWithPrivateParmeterTypes1.prototype.myPublicMethod = function (param) { + publicClassWithWithPrivateParmeterTypes1_prototype.myPublicMethod = function (param) { if (param === void 0) { param = exporter.createExportedWidget3(); } }; - publicClassWithWithPrivateParmeterTypes1.prototype.myPrivateMethod = function (param) { + publicClassWithWithPrivateParmeterTypes1_prototype.myPrivateMethod = function (param) { if (param === void 0) { param = exporter.createExportedWidget3(); } }; return publicClassWithWithPrivateParmeterTypes1; @@ -266,16 +268,17 @@ var privateClassWithWithPrivateParmeterTypes = /** @class */ (function () { this.param1 = param1; this.param2 = param2; } + var privateClassWithWithPrivateParmeterTypes_prototype = privateClassWithWithPrivateParmeterTypes.prototype; privateClassWithWithPrivateParmeterTypes.myPublicStaticMethod = function (param) { if (param === void 0) { param = exporter.createExportedWidget1(); } }; privateClassWithWithPrivateParmeterTypes.myPrivateStaticMethod = function (param) { if (param === void 0) { param = exporter.createExportedWidget1(); } }; - privateClassWithWithPrivateParmeterTypes.prototype.myPublicMethod = function (param) { + privateClassWithWithPrivateParmeterTypes_prototype.myPublicMethod = function (param) { if (param === void 0) { param = exporter.createExportedWidget1(); } }; - privateClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod = function (param) { + privateClassWithWithPrivateParmeterTypes_prototype.myPrivateMethod = function (param) { if (param === void 0) { param = exporter.createExportedWidget1(); } }; return privateClassWithWithPrivateParmeterTypes; @@ -288,16 +291,17 @@ var privateClassWithWithPrivateParmeterTypes2 = /** @class */ (function () { this.param1 = param1; this.param2 = param2; } + var privateClassWithWithPrivateParmeterTypes2_prototype = privateClassWithWithPrivateParmeterTypes2.prototype; privateClassWithWithPrivateParmeterTypes2.myPublicStaticMethod = function (param) { if (param === void 0) { param = exporter.createExportedWidget3(); } }; privateClassWithWithPrivateParmeterTypes2.myPrivateStaticMethod = function (param) { if (param === void 0) { param = exporter.createExportedWidget3(); } }; - privateClassWithWithPrivateParmeterTypes2.prototype.myPublicMethod = function (param) { + privateClassWithWithPrivateParmeterTypes2_prototype.myPublicMethod = function (param) { if (param === void 0) { param = exporter.createExportedWidget3(); } }; - privateClassWithWithPrivateParmeterTypes2.prototype.myPrivateMethod = function (param) { + privateClassWithWithPrivateParmeterTypes2_prototype.myPrivateMethod = function (param) { if (param === void 0) { param = exporter.createExportedWidget3(); } }; return privateClassWithWithPrivateParmeterTypes2; diff --git a/tests/baselines/reference/privacyFunctionCannotNameReturnTypeDeclFile.js b/tests/baselines/reference/privacyFunctionCannotNameReturnTypeDeclFile.js index 2861e33a27e49..acd72aa0872b8 100644 --- a/tests/baselines/reference/privacyFunctionCannotNameReturnTypeDeclFile.js +++ b/tests/baselines/reference/privacyFunctionCannotNameReturnTypeDeclFile.js @@ -222,6 +222,7 @@ var exporter = require("./privacyFunctionReturnTypeDeclFile_exporter"); var publicClassWithWithPrivateParmeterTypes = /** @class */ (function () { function publicClassWithWithPrivateParmeterTypes() { } + var publicClassWithWithPrivateParmeterTypes_prototype = publicClassWithWithPrivateParmeterTypes.prototype; publicClassWithWithPrivateParmeterTypes.myPublicStaticMethod = function () { return exporter.createExportedWidget1(); }; @@ -229,11 +230,11 @@ var publicClassWithWithPrivateParmeterTypes = /** @class */ (function () { return exporter.createExportedWidget1(); ; }; - publicClassWithWithPrivateParmeterTypes.prototype.myPublicMethod = function () { + publicClassWithWithPrivateParmeterTypes_prototype.myPublicMethod = function () { return exporter.createExportedWidget1(); ; }; - publicClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod = function () { + publicClassWithWithPrivateParmeterTypes_prototype.myPrivateMethod = function () { return exporter.createExportedWidget1(); ; }; @@ -244,11 +245,11 @@ var publicClassWithWithPrivateParmeterTypes = /** @class */ (function () { return exporter.createExportedWidget3(); ; }; - publicClassWithWithPrivateParmeterTypes.prototype.myPublicMethod1 = function () { + publicClassWithWithPrivateParmeterTypes_prototype.myPublicMethod1 = function () { return exporter.createExportedWidget3(); ; }; - publicClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod1 = function () { + publicClassWithWithPrivateParmeterTypes_prototype.myPrivateMethod1 = function () { return exporter.createExportedWidget3(); ; }; @@ -258,6 +259,7 @@ exports.publicClassWithWithPrivateParmeterTypes = publicClassWithWithPrivateParm var privateClassWithWithPrivateParmeterTypes = /** @class */ (function () { function privateClassWithWithPrivateParmeterTypes() { } + var privateClassWithWithPrivateParmeterTypes_prototype = privateClassWithWithPrivateParmeterTypes.prototype; privateClassWithWithPrivateParmeterTypes.myPublicStaticMethod = function () { return exporter.createExportedWidget1(); }; @@ -265,11 +267,11 @@ var privateClassWithWithPrivateParmeterTypes = /** @class */ (function () { return exporter.createExportedWidget1(); ; }; - privateClassWithWithPrivateParmeterTypes.prototype.myPublicMethod = function () { + privateClassWithWithPrivateParmeterTypes_prototype.myPublicMethod = function () { return exporter.createExportedWidget1(); ; }; - privateClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod = function () { + privateClassWithWithPrivateParmeterTypes_prototype.myPrivateMethod = function () { return exporter.createExportedWidget1(); ; }; @@ -280,11 +282,11 @@ var privateClassWithWithPrivateParmeterTypes = /** @class */ (function () { return exporter.createExportedWidget3(); ; }; - privateClassWithWithPrivateParmeterTypes.prototype.myPublicMethod1 = function () { + privateClassWithWithPrivateParmeterTypes_prototype.myPublicMethod1 = function () { return exporter.createExportedWidget3(); ; }; - privateClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod1 = function () { + privateClassWithWithPrivateParmeterTypes_prototype.myPrivateMethod1 = function () { return exporter.createExportedWidget3(); ; }; @@ -307,16 +309,17 @@ function privateFunctionWithPrivateParmeterTypes1() { var publicClassWithPrivateModuleReturnTypes = /** @class */ (function () { function publicClassWithPrivateModuleReturnTypes() { } + var publicClassWithPrivateModuleReturnTypes_prototype = publicClassWithPrivateModuleReturnTypes.prototype; publicClassWithPrivateModuleReturnTypes.myPublicStaticMethod = function () { return exporter.createExportedWidget2(); }; - publicClassWithPrivateModuleReturnTypes.prototype.myPublicMethod = function () { + publicClassWithPrivateModuleReturnTypes_prototype.myPublicMethod = function () { return exporter.createExportedWidget2(); }; publicClassWithPrivateModuleReturnTypes.myPublicStaticMethod1 = function () { return exporter.createExportedWidget4(); }; - publicClassWithPrivateModuleReturnTypes.prototype.myPublicMethod1 = function () { + publicClassWithPrivateModuleReturnTypes_prototype.myPublicMethod1 = function () { return exporter.createExportedWidget4(); }; return publicClassWithPrivateModuleReturnTypes; @@ -333,16 +336,17 @@ exports.publicFunctionWithPrivateModuleReturnTypes1 = publicFunctionWithPrivateM var privateClassWithPrivateModuleReturnTypes = /** @class */ (function () { function privateClassWithPrivateModuleReturnTypes() { } + var privateClassWithPrivateModuleReturnTypes_prototype = privateClassWithPrivateModuleReturnTypes.prototype; privateClassWithPrivateModuleReturnTypes.myPublicStaticMethod = function () { return exporter.createExportedWidget2(); }; - privateClassWithPrivateModuleReturnTypes.prototype.myPublicMethod = function () { + privateClassWithPrivateModuleReturnTypes_prototype.myPublicMethod = function () { return exporter.createExportedWidget2(); }; privateClassWithPrivateModuleReturnTypes.myPublicStaticMethod1 = function () { return exporter.createExportedWidget4(); }; - privateClassWithPrivateModuleReturnTypes.prototype.myPublicMethod1 = function () { + privateClassWithPrivateModuleReturnTypes_prototype.myPublicMethod1 = function () { return exporter.createExportedWidget4(); }; return privateClassWithPrivateModuleReturnTypes; diff --git a/tests/baselines/reference/privacyFunctionParameterDeclFile.js b/tests/baselines/reference/privacyFunctionParameterDeclFile.js index ab923459281b4..6be744a0edc4a 100644 --- a/tests/baselines/reference/privacyFunctionParameterDeclFile.js +++ b/tests/baselines/reference/privacyFunctionParameterDeclFile.js @@ -705,13 +705,14 @@ var publicClassWithWithPrivateParmeterTypes = /** @class */ (function () { this.param1 = param1; this.param2 = param2; } + var publicClassWithWithPrivateParmeterTypes_prototype = publicClassWithWithPrivateParmeterTypes.prototype; publicClassWithWithPrivateParmeterTypes.myPublicStaticMethod = function (param) { }; publicClassWithWithPrivateParmeterTypes.myPrivateStaticMethod = function (param) { }; - publicClassWithWithPrivateParmeterTypes.prototype.myPublicMethod = function (param) { + publicClassWithWithPrivateParmeterTypes_prototype.myPublicMethod = function (param) { }; - publicClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod = function (param) { + publicClassWithWithPrivateParmeterTypes_prototype.myPrivateMethod = function (param) { }; return publicClassWithWithPrivateParmeterTypes; }()); @@ -721,13 +722,14 @@ var publicClassWithWithPublicParmeterTypes = /** @class */ (function () { this.param1 = param1; this.param2 = param2; } + var publicClassWithWithPublicParmeterTypes_prototype = publicClassWithWithPublicParmeterTypes.prototype; publicClassWithWithPublicParmeterTypes.myPublicStaticMethod = function (param) { }; publicClassWithWithPublicParmeterTypes.myPrivateStaticMethod = function (param) { }; - publicClassWithWithPublicParmeterTypes.prototype.myPublicMethod = function (param) { + publicClassWithWithPublicParmeterTypes_prototype.myPublicMethod = function (param) { }; - publicClassWithWithPublicParmeterTypes.prototype.myPrivateMethod = function (param) { + publicClassWithWithPublicParmeterTypes_prototype.myPrivateMethod = function (param) { }; return publicClassWithWithPublicParmeterTypes; }()); @@ -737,13 +739,14 @@ var privateClassWithWithPrivateParmeterTypes = /** @class */ (function () { this.param1 = param1; this.param2 = param2; } + var privateClassWithWithPrivateParmeterTypes_prototype = privateClassWithWithPrivateParmeterTypes.prototype; privateClassWithWithPrivateParmeterTypes.myPublicStaticMethod = function (param) { }; privateClassWithWithPrivateParmeterTypes.myPrivateStaticMethod = function (param) { }; - privateClassWithWithPrivateParmeterTypes.prototype.myPublicMethod = function (param) { + privateClassWithWithPrivateParmeterTypes_prototype.myPublicMethod = function (param) { }; - privateClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod = function (param) { + privateClassWithWithPrivateParmeterTypes_prototype.myPrivateMethod = function (param) { }; return privateClassWithWithPrivateParmeterTypes; }()); @@ -752,13 +755,14 @@ var privateClassWithWithPublicParmeterTypes = /** @class */ (function () { this.param1 = param1; this.param2 = param2; } + var privateClassWithWithPublicParmeterTypes_prototype = privateClassWithWithPublicParmeterTypes.prototype; privateClassWithWithPublicParmeterTypes.myPublicStaticMethod = function (param) { }; privateClassWithWithPublicParmeterTypes.myPrivateStaticMethod = function (param) { }; - privateClassWithWithPublicParmeterTypes.prototype.myPublicMethod = function (param) { + privateClassWithWithPublicParmeterTypes_prototype.myPublicMethod = function (param) { }; - privateClassWithWithPublicParmeterTypes.prototype.myPrivateMethod = function (param) { + privateClassWithWithPublicParmeterTypes_prototype.myPrivateMethod = function (param) { }; return privateClassWithWithPublicParmeterTypes; }()); @@ -818,13 +822,14 @@ var publicModule; this.param1 = param1; this.param2 = param2; } + var publicClassWithWithPrivateParmeterTypes_prototype_1 = publicClassWithWithPrivateParmeterTypes.prototype; publicClassWithWithPrivateParmeterTypes.myPublicStaticMethod = function (param) { }; publicClassWithWithPrivateParmeterTypes.myPrivateStaticMethod = function (param) { }; - publicClassWithWithPrivateParmeterTypes.prototype.myPublicMethod = function (param) { + publicClassWithWithPrivateParmeterTypes_prototype_1.myPublicMethod = function (param) { }; - publicClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod = function (param) { + publicClassWithWithPrivateParmeterTypes_prototype_1.myPrivateMethod = function (param) { }; return publicClassWithWithPrivateParmeterTypes; }()); @@ -834,13 +839,14 @@ var publicModule; this.param1 = param1; this.param2 = param2; } + var publicClassWithWithPublicParmeterTypes_prototype_1 = publicClassWithWithPublicParmeterTypes.prototype; publicClassWithWithPublicParmeterTypes.myPublicStaticMethod = function (param) { }; publicClassWithWithPublicParmeterTypes.myPrivateStaticMethod = function (param) { }; - publicClassWithWithPublicParmeterTypes.prototype.myPublicMethod = function (param) { + publicClassWithWithPublicParmeterTypes_prototype_1.myPublicMethod = function (param) { }; - publicClassWithWithPublicParmeterTypes.prototype.myPrivateMethod = function (param) { + publicClassWithWithPublicParmeterTypes_prototype_1.myPrivateMethod = function (param) { }; return publicClassWithWithPublicParmeterTypes; }()); @@ -850,13 +856,14 @@ var publicModule; this.param1 = param1; this.param2 = param2; } + var privateClassWithWithPrivateParmeterTypes_prototype_1 = privateClassWithWithPrivateParmeterTypes.prototype; privateClassWithWithPrivateParmeterTypes.myPublicStaticMethod = function (param) { }; privateClassWithWithPrivateParmeterTypes.myPrivateStaticMethod = function (param) { }; - privateClassWithWithPrivateParmeterTypes.prototype.myPublicMethod = function (param) { + privateClassWithWithPrivateParmeterTypes_prototype_1.myPublicMethod = function (param) { }; - privateClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod = function (param) { + privateClassWithWithPrivateParmeterTypes_prototype_1.myPrivateMethod = function (param) { }; return privateClassWithWithPrivateParmeterTypes; }()); @@ -865,13 +872,14 @@ var publicModule; this.param1 = param1; this.param2 = param2; } + var privateClassWithWithPublicParmeterTypes_prototype_1 = privateClassWithWithPublicParmeterTypes.prototype; privateClassWithWithPublicParmeterTypes.myPublicStaticMethod = function (param) { }; privateClassWithWithPublicParmeterTypes.myPrivateStaticMethod = function (param) { }; - privateClassWithWithPublicParmeterTypes.prototype.myPublicMethod = function (param) { + privateClassWithWithPublicParmeterTypes_prototype_1.myPublicMethod = function (param) { }; - privateClassWithWithPublicParmeterTypes.prototype.myPrivateMethod = function (param) { + privateClassWithWithPublicParmeterTypes_prototype_1.myPrivateMethod = function (param) { }; return privateClassWithWithPublicParmeterTypes; }()); @@ -932,13 +940,14 @@ var privateModule; this.param1 = param1; this.param2 = param2; } + var publicClassWithWithPrivateParmeterTypes_prototype_2 = publicClassWithWithPrivateParmeterTypes.prototype; publicClassWithWithPrivateParmeterTypes.myPublicStaticMethod = function (param) { }; publicClassWithWithPrivateParmeterTypes.myPrivateStaticMethod = function (param) { }; - publicClassWithWithPrivateParmeterTypes.prototype.myPublicMethod = function (param) { + publicClassWithWithPrivateParmeterTypes_prototype_2.myPublicMethod = function (param) { }; - publicClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod = function (param) { + publicClassWithWithPrivateParmeterTypes_prototype_2.myPrivateMethod = function (param) { }; return publicClassWithWithPrivateParmeterTypes; }()); @@ -948,13 +957,14 @@ var privateModule; this.param1 = param1; this.param2 = param2; } + var publicClassWithWithPublicParmeterTypes_prototype_2 = publicClassWithWithPublicParmeterTypes.prototype; publicClassWithWithPublicParmeterTypes.myPublicStaticMethod = function (param) { }; publicClassWithWithPublicParmeterTypes.myPrivateStaticMethod = function (param) { }; - publicClassWithWithPublicParmeterTypes.prototype.myPublicMethod = function (param) { + publicClassWithWithPublicParmeterTypes_prototype_2.myPublicMethod = function (param) { }; - publicClassWithWithPublicParmeterTypes.prototype.myPrivateMethod = function (param) { + publicClassWithWithPublicParmeterTypes_prototype_2.myPrivateMethod = function (param) { }; return publicClassWithWithPublicParmeterTypes; }()); @@ -964,13 +974,14 @@ var privateModule; this.param1 = param1; this.param2 = param2; } + var privateClassWithWithPrivateParmeterTypes_prototype_2 = privateClassWithWithPrivateParmeterTypes.prototype; privateClassWithWithPrivateParmeterTypes.myPublicStaticMethod = function (param) { }; privateClassWithWithPrivateParmeterTypes.myPrivateStaticMethod = function (param) { }; - privateClassWithWithPrivateParmeterTypes.prototype.myPublicMethod = function (param) { + privateClassWithWithPrivateParmeterTypes_prototype_2.myPublicMethod = function (param) { }; - privateClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod = function (param) { + privateClassWithWithPrivateParmeterTypes_prototype_2.myPrivateMethod = function (param) { }; return privateClassWithWithPrivateParmeterTypes; }()); @@ -979,13 +990,14 @@ var privateModule; this.param1 = param1; this.param2 = param2; } + var privateClassWithWithPublicParmeterTypes_prototype_2 = privateClassWithWithPublicParmeterTypes.prototype; privateClassWithWithPublicParmeterTypes.myPublicStaticMethod = function (param) { }; privateClassWithWithPublicParmeterTypes.myPrivateStaticMethod = function (param) { }; - privateClassWithWithPublicParmeterTypes.prototype.myPublicMethod = function (param) { + privateClassWithWithPublicParmeterTypes_prototype_2.myPublicMethod = function (param) { }; - privateClassWithWithPublicParmeterTypes.prototype.myPrivateMethod = function (param) { + privateClassWithWithPublicParmeterTypes_prototype_2.myPrivateMethod = function (param) { }; return privateClassWithWithPublicParmeterTypes; }()); @@ -1039,13 +1051,14 @@ var publicClassWithWithPublicParmeterTypesInGlobal = /** @class */ (function () this.param1 = param1; this.param2 = param2; } + var publicClassWithWithPublicParmeterTypesInGlobal_prototype = publicClassWithWithPublicParmeterTypesInGlobal.prototype; publicClassWithWithPublicParmeterTypesInGlobal.myPublicStaticMethod = function (param) { }; publicClassWithWithPublicParmeterTypesInGlobal.myPrivateStaticMethod = function (param) { }; - publicClassWithWithPublicParmeterTypesInGlobal.prototype.myPublicMethod = function (param) { + publicClassWithWithPublicParmeterTypesInGlobal_prototype.myPublicMethod = function (param) { }; - publicClassWithWithPublicParmeterTypesInGlobal.prototype.myPrivateMethod = function (param) { + publicClassWithWithPublicParmeterTypesInGlobal_prototype.myPrivateMethod = function (param) { }; return publicClassWithWithPublicParmeterTypesInGlobal; }()); @@ -1082,13 +1095,14 @@ var publicModuleInGlobal; this.param1 = param1; this.param2 = param2; } + var publicClassWithWithPrivateParmeterTypes_prototype = publicClassWithWithPrivateParmeterTypes.prototype; publicClassWithWithPrivateParmeterTypes.myPublicStaticMethod = function (param) { }; publicClassWithWithPrivateParmeterTypes.myPrivateStaticMethod = function (param) { }; - publicClassWithWithPrivateParmeterTypes.prototype.myPublicMethod = function (param) { + publicClassWithWithPrivateParmeterTypes_prototype.myPublicMethod = function (param) { }; - publicClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod = function (param) { + publicClassWithWithPrivateParmeterTypes_prototype.myPrivateMethod = function (param) { }; return publicClassWithWithPrivateParmeterTypes; }()); @@ -1098,13 +1112,14 @@ var publicModuleInGlobal; this.param1 = param1; this.param2 = param2; } + var publicClassWithWithPublicParmeterTypes_prototype = publicClassWithWithPublicParmeterTypes.prototype; publicClassWithWithPublicParmeterTypes.myPublicStaticMethod = function (param) { }; publicClassWithWithPublicParmeterTypes.myPrivateStaticMethod = function (param) { }; - publicClassWithWithPublicParmeterTypes.prototype.myPublicMethod = function (param) { + publicClassWithWithPublicParmeterTypes_prototype.myPublicMethod = function (param) { }; - publicClassWithWithPublicParmeterTypes.prototype.myPrivateMethod = function (param) { + publicClassWithWithPublicParmeterTypes_prototype.myPrivateMethod = function (param) { }; return publicClassWithWithPublicParmeterTypes; }()); @@ -1114,13 +1129,14 @@ var publicModuleInGlobal; this.param1 = param1; this.param2 = param2; } + var privateClassWithWithPrivateParmeterTypes_prototype = privateClassWithWithPrivateParmeterTypes.prototype; privateClassWithWithPrivateParmeterTypes.myPublicStaticMethod = function (param) { }; privateClassWithWithPrivateParmeterTypes.myPrivateStaticMethod = function (param) { }; - privateClassWithWithPrivateParmeterTypes.prototype.myPublicMethod = function (param) { + privateClassWithWithPrivateParmeterTypes_prototype.myPublicMethod = function (param) { }; - privateClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod = function (param) { + privateClassWithWithPrivateParmeterTypes_prototype.myPrivateMethod = function (param) { }; return privateClassWithWithPrivateParmeterTypes; }()); @@ -1129,13 +1145,14 @@ var publicModuleInGlobal; this.param1 = param1; this.param2 = param2; } + var privateClassWithWithPublicParmeterTypes_prototype = privateClassWithWithPublicParmeterTypes.prototype; privateClassWithWithPublicParmeterTypes.myPublicStaticMethod = function (param) { }; privateClassWithWithPublicParmeterTypes.myPrivateStaticMethod = function (param) { }; - privateClassWithWithPublicParmeterTypes.prototype.myPublicMethod = function (param) { + privateClassWithWithPublicParmeterTypes_prototype.myPublicMethod = function (param) { }; - privateClassWithWithPublicParmeterTypes.prototype.myPrivateMethod = function (param) { + privateClassWithWithPublicParmeterTypes_prototype.myPrivateMethod = function (param) { }; return privateClassWithWithPublicParmeterTypes; }()); @@ -1183,13 +1200,14 @@ var publicModuleInGlobal; this.param1 = param1; this.param2 = param2; } + var publicClassWithWithPrivateParmeterTypes_prototype_1 = publicClassWithWithPrivateParmeterTypes.prototype; publicClassWithWithPrivateParmeterTypes.myPublicStaticMethod = function (param) { }; publicClassWithWithPrivateParmeterTypes.myPrivateStaticMethod = function (param) { }; - publicClassWithWithPrivateParmeterTypes.prototype.myPublicMethod = function (param) { + publicClassWithWithPrivateParmeterTypes_prototype_1.myPublicMethod = function (param) { }; - publicClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod = function (param) { + publicClassWithWithPrivateParmeterTypes_prototype_1.myPrivateMethod = function (param) { }; return publicClassWithWithPrivateParmeterTypes; }()); @@ -1199,13 +1217,14 @@ var publicModuleInGlobal; this.param1 = param1; this.param2 = param2; } + var publicClassWithWithPublicParmeterTypes_prototype_1 = publicClassWithWithPublicParmeterTypes.prototype; publicClassWithWithPublicParmeterTypes.myPublicStaticMethod = function (param) { }; publicClassWithWithPublicParmeterTypes.myPrivateStaticMethod = function (param) { }; - publicClassWithWithPublicParmeterTypes.prototype.myPublicMethod = function (param) { + publicClassWithWithPublicParmeterTypes_prototype_1.myPublicMethod = function (param) { }; - publicClassWithWithPublicParmeterTypes.prototype.myPrivateMethod = function (param) { + publicClassWithWithPublicParmeterTypes_prototype_1.myPrivateMethod = function (param) { }; return publicClassWithWithPublicParmeterTypes; }()); @@ -1215,13 +1234,14 @@ var publicModuleInGlobal; this.param1 = param1; this.param2 = param2; } + var privateClassWithWithPrivateParmeterTypes_prototype_1 = privateClassWithWithPrivateParmeterTypes.prototype; privateClassWithWithPrivateParmeterTypes.myPublicStaticMethod = function (param) { }; privateClassWithWithPrivateParmeterTypes.myPrivateStaticMethod = function (param) { }; - privateClassWithWithPrivateParmeterTypes.prototype.myPublicMethod = function (param) { + privateClassWithWithPrivateParmeterTypes_prototype_1.myPublicMethod = function (param) { }; - privateClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod = function (param) { + privateClassWithWithPrivateParmeterTypes_prototype_1.myPrivateMethod = function (param) { }; return privateClassWithWithPrivateParmeterTypes; }()); @@ -1230,13 +1250,14 @@ var publicModuleInGlobal; this.param1 = param1; this.param2 = param2; } + var privateClassWithWithPublicParmeterTypes_prototype_1 = privateClassWithWithPublicParmeterTypes.prototype; privateClassWithWithPublicParmeterTypes.myPublicStaticMethod = function (param) { }; privateClassWithWithPublicParmeterTypes.myPrivateStaticMethod = function (param) { }; - privateClassWithWithPublicParmeterTypes.prototype.myPublicMethod = function (param) { + privateClassWithWithPublicParmeterTypes_prototype_1.myPublicMethod = function (param) { }; - privateClassWithWithPublicParmeterTypes.prototype.myPrivateMethod = function (param) { + privateClassWithWithPublicParmeterTypes_prototype_1.myPrivateMethod = function (param) { }; return privateClassWithWithPublicParmeterTypes; }()); diff --git a/tests/baselines/reference/privacyFunctionReturnTypeDeclFile.js b/tests/baselines/reference/privacyFunctionReturnTypeDeclFile.js index 0d692bf747be2..3c47cce8a911f 100644 --- a/tests/baselines/reference/privacyFunctionReturnTypeDeclFile.js +++ b/tests/baselines/reference/privacyFunctionReturnTypeDeclFile.js @@ -1210,16 +1210,17 @@ exports.publicClass = publicClass; var publicClassWithWithPrivateParmeterTypes = /** @class */ (function () { function publicClassWithWithPrivateParmeterTypes() { } + var publicClassWithWithPrivateParmeterTypes_prototype = publicClassWithWithPrivateParmeterTypes.prototype; publicClassWithWithPrivateParmeterTypes.myPublicStaticMethod = function () { return null; }; publicClassWithWithPrivateParmeterTypes.myPrivateStaticMethod = function () { return null; }; - publicClassWithWithPrivateParmeterTypes.prototype.myPublicMethod = function () { + publicClassWithWithPrivateParmeterTypes_prototype.myPublicMethod = function () { return null; }; - publicClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod = function () { + publicClassWithWithPrivateParmeterTypes_prototype.myPrivateMethod = function () { return null; }; publicClassWithWithPrivateParmeterTypes.myPublicStaticMethod1 = function () { @@ -1228,10 +1229,10 @@ var publicClassWithWithPrivateParmeterTypes = /** @class */ (function () { publicClassWithWithPrivateParmeterTypes.myPrivateStaticMethod1 = function () { return new privateClass(); }; - publicClassWithWithPrivateParmeterTypes.prototype.myPublicMethod1 = function () { + publicClassWithWithPrivateParmeterTypes_prototype.myPublicMethod1 = function () { return new privateClass(); }; - publicClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod1 = function () { + publicClassWithWithPrivateParmeterTypes_prototype.myPrivateMethod1 = function () { return new privateClass(); }; return publicClassWithWithPrivateParmeterTypes; @@ -1240,16 +1241,17 @@ exports.publicClassWithWithPrivateParmeterTypes = publicClassWithWithPrivateParm var publicClassWithWithPublicParmeterTypes = /** @class */ (function () { function publicClassWithWithPublicParmeterTypes() { } + var publicClassWithWithPublicParmeterTypes_prototype = publicClassWithWithPublicParmeterTypes.prototype; publicClassWithWithPublicParmeterTypes.myPublicStaticMethod = function () { return null; }; publicClassWithWithPublicParmeterTypes.myPrivateStaticMethod = function () { return null; }; - publicClassWithWithPublicParmeterTypes.prototype.myPublicMethod = function () { + publicClassWithWithPublicParmeterTypes_prototype.myPublicMethod = function () { return null; }; - publicClassWithWithPublicParmeterTypes.prototype.myPrivateMethod = function () { + publicClassWithWithPublicParmeterTypes_prototype.myPrivateMethod = function () { return null; }; publicClassWithWithPublicParmeterTypes.myPublicStaticMethod1 = function () { @@ -1258,10 +1260,10 @@ var publicClassWithWithPublicParmeterTypes = /** @class */ (function () { publicClassWithWithPublicParmeterTypes.myPrivateStaticMethod1 = function () { return new publicClass(); }; - publicClassWithWithPublicParmeterTypes.prototype.myPublicMethod1 = function () { + publicClassWithWithPublicParmeterTypes_prototype.myPublicMethod1 = function () { return new publicClass(); }; - publicClassWithWithPublicParmeterTypes.prototype.myPrivateMethod1 = function () { + publicClassWithWithPublicParmeterTypes_prototype.myPrivateMethod1 = function () { return new publicClass(); }; return publicClassWithWithPublicParmeterTypes; @@ -1270,16 +1272,17 @@ exports.publicClassWithWithPublicParmeterTypes = publicClassWithWithPublicParmet var privateClassWithWithPrivateParmeterTypes = /** @class */ (function () { function privateClassWithWithPrivateParmeterTypes() { } + var privateClassWithWithPrivateParmeterTypes_prototype = privateClassWithWithPrivateParmeterTypes.prototype; privateClassWithWithPrivateParmeterTypes.myPublicStaticMethod = function () { return null; }; privateClassWithWithPrivateParmeterTypes.myPrivateStaticMethod = function () { return null; }; - privateClassWithWithPrivateParmeterTypes.prototype.myPublicMethod = function () { + privateClassWithWithPrivateParmeterTypes_prototype.myPublicMethod = function () { return null; }; - privateClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod = function () { + privateClassWithWithPrivateParmeterTypes_prototype.myPrivateMethod = function () { return null; }; privateClassWithWithPrivateParmeterTypes.myPublicStaticMethod1 = function () { @@ -1288,10 +1291,10 @@ var privateClassWithWithPrivateParmeterTypes = /** @class */ (function () { privateClassWithWithPrivateParmeterTypes.myPrivateStaticMethod1 = function () { return new privateClass(); }; - privateClassWithWithPrivateParmeterTypes.prototype.myPublicMethod1 = function () { + privateClassWithWithPrivateParmeterTypes_prototype.myPublicMethod1 = function () { return new privateClass(); }; - privateClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod1 = function () { + privateClassWithWithPrivateParmeterTypes_prototype.myPrivateMethod1 = function () { return new privateClass(); }; return privateClassWithWithPrivateParmeterTypes; @@ -1299,16 +1302,17 @@ var privateClassWithWithPrivateParmeterTypes = /** @class */ (function () { var privateClassWithWithPublicParmeterTypes = /** @class */ (function () { function privateClassWithWithPublicParmeterTypes() { } + var privateClassWithWithPublicParmeterTypes_prototype = privateClassWithWithPublicParmeterTypes.prototype; privateClassWithWithPublicParmeterTypes.myPublicStaticMethod = function () { return null; }; privateClassWithWithPublicParmeterTypes.myPrivateStaticMethod = function () { return null; }; - privateClassWithWithPublicParmeterTypes.prototype.myPublicMethod = function () { + privateClassWithWithPublicParmeterTypes_prototype.myPublicMethod = function () { return null; }; - privateClassWithWithPublicParmeterTypes.prototype.myPrivateMethod = function () { + privateClassWithWithPublicParmeterTypes_prototype.myPrivateMethod = function () { return null; }; privateClassWithWithPublicParmeterTypes.myPublicStaticMethod1 = function () { @@ -1317,10 +1321,10 @@ var privateClassWithWithPublicParmeterTypes = /** @class */ (function () { privateClassWithWithPublicParmeterTypes.myPrivateStaticMethod1 = function () { return new publicClass(); }; - privateClassWithWithPublicParmeterTypes.prototype.myPublicMethod1 = function () { + privateClassWithWithPublicParmeterTypes_prototype.myPublicMethod1 = function () { return new publicClass(); }; - privateClassWithWithPublicParmeterTypes.prototype.myPrivateMethod1 = function () { + privateClassWithWithPublicParmeterTypes_prototype.myPrivateMethod1 = function () { return new publicClass(); }; return privateClassWithWithPublicParmeterTypes; @@ -1356,16 +1360,17 @@ function privateFunctionWithPublicParmeterTypes1() { var publicClassWithPrivateModuleParameterTypes = /** @class */ (function () { function publicClassWithPrivateModuleParameterTypes() { } + var publicClassWithPrivateModuleParameterTypes_prototype = publicClassWithPrivateModuleParameterTypes.prototype; publicClassWithPrivateModuleParameterTypes.myPublicStaticMethod = function () { return null; }; - publicClassWithPrivateModuleParameterTypes.prototype.myPublicMethod = function () { + publicClassWithPrivateModuleParameterTypes_prototype.myPublicMethod = function () { return null; }; publicClassWithPrivateModuleParameterTypes.myPublicStaticMethod1 = function () { return new privateModule.publicClass(); }; - publicClassWithPrivateModuleParameterTypes.prototype.myPublicMethod1 = function () { + publicClassWithPrivateModuleParameterTypes_prototype.myPublicMethod1 = function () { return new privateModule.publicClass(); }; return publicClassWithPrivateModuleParameterTypes; @@ -1382,16 +1387,17 @@ exports.publicFunctionWithPrivateModuleParameterTypes1 = publicFunctionWithPriva var privateClassWithPrivateModuleParameterTypes = /** @class */ (function () { function privateClassWithPrivateModuleParameterTypes() { } + var privateClassWithPrivateModuleParameterTypes_prototype = privateClassWithPrivateModuleParameterTypes.prototype; privateClassWithPrivateModuleParameterTypes.myPublicStaticMethod = function () { return null; }; - privateClassWithPrivateModuleParameterTypes.prototype.myPublicMethod = function () { + privateClassWithPrivateModuleParameterTypes_prototype.myPublicMethod = function () { return null; }; privateClassWithPrivateModuleParameterTypes.myPublicStaticMethod1 = function () { return new privateModule.publicClass(); }; - privateClassWithPrivateModuleParameterTypes.prototype.myPublicMethod1 = function () { + privateClassWithPrivateModuleParameterTypes_prototype.myPublicMethod1 = function () { return new privateModule.publicClass(); }; return privateClassWithPrivateModuleParameterTypes; @@ -1418,16 +1424,17 @@ var publicModule; var publicClassWithWithPrivateParmeterTypes = /** @class */ (function () { function publicClassWithWithPrivateParmeterTypes() { } + var publicClassWithWithPrivateParmeterTypes_prototype_1 = publicClassWithWithPrivateParmeterTypes.prototype; publicClassWithWithPrivateParmeterTypes.myPublicStaticMethod = function () { return null; }; publicClassWithWithPrivateParmeterTypes.myPrivateStaticMethod = function () { return null; }; - publicClassWithWithPrivateParmeterTypes.prototype.myPublicMethod = function () { + publicClassWithWithPrivateParmeterTypes_prototype_1.myPublicMethod = function () { return null; }; - publicClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod = function () { + publicClassWithWithPrivateParmeterTypes_prototype_1.myPrivateMethod = function () { return null; }; publicClassWithWithPrivateParmeterTypes.myPublicStaticMethod1 = function () { @@ -1436,10 +1443,10 @@ var publicModule; publicClassWithWithPrivateParmeterTypes.myPrivateStaticMethod1 = function () { return new privateClass(); }; - publicClassWithWithPrivateParmeterTypes.prototype.myPublicMethod1 = function () { + publicClassWithWithPrivateParmeterTypes_prototype_1.myPublicMethod1 = function () { return new privateClass(); }; - publicClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod1 = function () { + publicClassWithWithPrivateParmeterTypes_prototype_1.myPrivateMethod1 = function () { return new privateClass(); }; return publicClassWithWithPrivateParmeterTypes; @@ -1448,16 +1455,17 @@ var publicModule; var publicClassWithWithPublicParmeterTypes = /** @class */ (function () { function publicClassWithWithPublicParmeterTypes() { } + var publicClassWithWithPublicParmeterTypes_prototype_1 = publicClassWithWithPublicParmeterTypes.prototype; publicClassWithWithPublicParmeterTypes.myPublicStaticMethod = function () { return null; }; publicClassWithWithPublicParmeterTypes.myPrivateStaticMethod = function () { return null; }; - publicClassWithWithPublicParmeterTypes.prototype.myPublicMethod = function () { + publicClassWithWithPublicParmeterTypes_prototype_1.myPublicMethod = function () { return null; }; - publicClassWithWithPublicParmeterTypes.prototype.myPrivateMethod = function () { + publicClassWithWithPublicParmeterTypes_prototype_1.myPrivateMethod = function () { return null; }; publicClassWithWithPublicParmeterTypes.myPublicStaticMethod1 = function () { @@ -1466,10 +1474,10 @@ var publicModule; publicClassWithWithPublicParmeterTypes.myPrivateStaticMethod1 = function () { return new publicClass(); }; - publicClassWithWithPublicParmeterTypes.prototype.myPublicMethod1 = function () { + publicClassWithWithPublicParmeterTypes_prototype_1.myPublicMethod1 = function () { return new publicClass(); }; - publicClassWithWithPublicParmeterTypes.prototype.myPrivateMethod1 = function () { + publicClassWithWithPublicParmeterTypes_prototype_1.myPrivateMethod1 = function () { return new publicClass(); }; return publicClassWithWithPublicParmeterTypes; @@ -1478,16 +1486,17 @@ var publicModule; var privateClassWithWithPrivateParmeterTypes = /** @class */ (function () { function privateClassWithWithPrivateParmeterTypes() { } + var privateClassWithWithPrivateParmeterTypes_prototype_1 = privateClassWithWithPrivateParmeterTypes.prototype; privateClassWithWithPrivateParmeterTypes.myPublicStaticMethod = function () { return null; }; privateClassWithWithPrivateParmeterTypes.myPrivateStaticMethod = function () { return null; }; - privateClassWithWithPrivateParmeterTypes.prototype.myPublicMethod = function () { + privateClassWithWithPrivateParmeterTypes_prototype_1.myPublicMethod = function () { return null; }; - privateClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod = function () { + privateClassWithWithPrivateParmeterTypes_prototype_1.myPrivateMethod = function () { return null; }; privateClassWithWithPrivateParmeterTypes.myPublicStaticMethod1 = function () { @@ -1496,10 +1505,10 @@ var publicModule; privateClassWithWithPrivateParmeterTypes.myPrivateStaticMethod1 = function () { return new privateClass(); }; - privateClassWithWithPrivateParmeterTypes.prototype.myPublicMethod1 = function () { + privateClassWithWithPrivateParmeterTypes_prototype_1.myPublicMethod1 = function () { return new privateClass(); }; - privateClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod1 = function () { + privateClassWithWithPrivateParmeterTypes_prototype_1.myPrivateMethod1 = function () { return new privateClass(); }; return privateClassWithWithPrivateParmeterTypes; @@ -1507,16 +1516,17 @@ var publicModule; var privateClassWithWithPublicParmeterTypes = /** @class */ (function () { function privateClassWithWithPublicParmeterTypes() { } + var privateClassWithWithPublicParmeterTypes_prototype_1 = privateClassWithWithPublicParmeterTypes.prototype; privateClassWithWithPublicParmeterTypes.myPublicStaticMethod = function () { return null; }; privateClassWithWithPublicParmeterTypes.myPrivateStaticMethod = function () { return null; }; - privateClassWithWithPublicParmeterTypes.prototype.myPublicMethod = function () { + privateClassWithWithPublicParmeterTypes_prototype_1.myPublicMethod = function () { return null; }; - privateClassWithWithPublicParmeterTypes.prototype.myPrivateMethod = function () { + privateClassWithWithPublicParmeterTypes_prototype_1.myPrivateMethod = function () { return null; }; privateClassWithWithPublicParmeterTypes.myPublicStaticMethod1 = function () { @@ -1525,10 +1535,10 @@ var publicModule; privateClassWithWithPublicParmeterTypes.myPrivateStaticMethod1 = function () { return new publicClass(); }; - privateClassWithWithPublicParmeterTypes.prototype.myPublicMethod1 = function () { + privateClassWithWithPublicParmeterTypes_prototype_1.myPublicMethod1 = function () { return new publicClass(); }; - privateClassWithWithPublicParmeterTypes.prototype.myPrivateMethod1 = function () { + privateClassWithWithPublicParmeterTypes_prototype_1.myPrivateMethod1 = function () { return new publicClass(); }; return privateClassWithWithPublicParmeterTypes; @@ -1564,16 +1574,17 @@ var publicModule; var publicClassWithPrivateModuleParameterTypes = /** @class */ (function () { function publicClassWithPrivateModuleParameterTypes() { } + var publicClassWithPrivateModuleParameterTypes_prototype_1 = publicClassWithPrivateModuleParameterTypes.prototype; publicClassWithPrivateModuleParameterTypes.myPublicStaticMethod = function () { return null; }; - publicClassWithPrivateModuleParameterTypes.prototype.myPublicMethod = function () { + publicClassWithPrivateModuleParameterTypes_prototype_1.myPublicMethod = function () { return null; }; publicClassWithPrivateModuleParameterTypes.myPublicStaticMethod1 = function () { return new privateModule.publicClass(); }; - publicClassWithPrivateModuleParameterTypes.prototype.myPublicMethod1 = function () { + publicClassWithPrivateModuleParameterTypes_prototype_1.myPublicMethod1 = function () { return new privateModule.publicClass(); }; return publicClassWithPrivateModuleParameterTypes; @@ -1590,16 +1601,17 @@ var publicModule; var privateClassWithPrivateModuleParameterTypes = /** @class */ (function () { function privateClassWithPrivateModuleParameterTypes() { } + var privateClassWithPrivateModuleParameterTypes_prototype_1 = privateClassWithPrivateModuleParameterTypes.prototype; privateClassWithPrivateModuleParameterTypes.myPublicStaticMethod = function () { return null; }; - privateClassWithPrivateModuleParameterTypes.prototype.myPublicMethod = function () { + privateClassWithPrivateModuleParameterTypes_prototype_1.myPublicMethod = function () { return null; }; privateClassWithPrivateModuleParameterTypes.myPublicStaticMethod1 = function () { return new privateModule.publicClass(); }; - privateClassWithPrivateModuleParameterTypes.prototype.myPublicMethod1 = function () { + privateClassWithPrivateModuleParameterTypes_prototype_1.myPublicMethod1 = function () { return new privateModule.publicClass(); }; return privateClassWithPrivateModuleParameterTypes; @@ -1627,16 +1639,17 @@ var privateModule; var publicClassWithWithPrivateParmeterTypes = /** @class */ (function () { function publicClassWithWithPrivateParmeterTypes() { } + var publicClassWithWithPrivateParmeterTypes_prototype_2 = publicClassWithWithPrivateParmeterTypes.prototype; publicClassWithWithPrivateParmeterTypes.myPublicStaticMethod = function () { return null; }; publicClassWithWithPrivateParmeterTypes.myPrivateStaticMethod = function () { return null; }; - publicClassWithWithPrivateParmeterTypes.prototype.myPublicMethod = function () { + publicClassWithWithPrivateParmeterTypes_prototype_2.myPublicMethod = function () { return null; }; - publicClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod = function () { + publicClassWithWithPrivateParmeterTypes_prototype_2.myPrivateMethod = function () { return null; }; publicClassWithWithPrivateParmeterTypes.myPublicStaticMethod1 = function () { @@ -1645,10 +1658,10 @@ var privateModule; publicClassWithWithPrivateParmeterTypes.myPrivateStaticMethod1 = function () { return new privateClass(); }; - publicClassWithWithPrivateParmeterTypes.prototype.myPublicMethod1 = function () { + publicClassWithWithPrivateParmeterTypes_prototype_2.myPublicMethod1 = function () { return new privateClass(); }; - publicClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod1 = function () { + publicClassWithWithPrivateParmeterTypes_prototype_2.myPrivateMethod1 = function () { return new privateClass(); }; return publicClassWithWithPrivateParmeterTypes; @@ -1657,16 +1670,17 @@ var privateModule; var publicClassWithWithPublicParmeterTypes = /** @class */ (function () { function publicClassWithWithPublicParmeterTypes() { } + var publicClassWithWithPublicParmeterTypes_prototype_2 = publicClassWithWithPublicParmeterTypes.prototype; publicClassWithWithPublicParmeterTypes.myPublicStaticMethod = function () { return null; }; publicClassWithWithPublicParmeterTypes.myPrivateStaticMethod = function () { return null; }; - publicClassWithWithPublicParmeterTypes.prototype.myPublicMethod = function () { + publicClassWithWithPublicParmeterTypes_prototype_2.myPublicMethod = function () { return null; }; - publicClassWithWithPublicParmeterTypes.prototype.myPrivateMethod = function () { + publicClassWithWithPublicParmeterTypes_prototype_2.myPrivateMethod = function () { return null; }; publicClassWithWithPublicParmeterTypes.myPublicStaticMethod1 = function () { @@ -1675,10 +1689,10 @@ var privateModule; publicClassWithWithPublicParmeterTypes.myPrivateStaticMethod1 = function () { return new publicClass(); }; - publicClassWithWithPublicParmeterTypes.prototype.myPublicMethod1 = function () { + publicClassWithWithPublicParmeterTypes_prototype_2.myPublicMethod1 = function () { return new publicClass(); }; - publicClassWithWithPublicParmeterTypes.prototype.myPrivateMethod1 = function () { + publicClassWithWithPublicParmeterTypes_prototype_2.myPrivateMethod1 = function () { return new publicClass(); }; return publicClassWithWithPublicParmeterTypes; @@ -1687,16 +1701,17 @@ var privateModule; var privateClassWithWithPrivateParmeterTypes = /** @class */ (function () { function privateClassWithWithPrivateParmeterTypes() { } + var privateClassWithWithPrivateParmeterTypes_prototype_2 = privateClassWithWithPrivateParmeterTypes.prototype; privateClassWithWithPrivateParmeterTypes.myPublicStaticMethod = function () { return null; }; privateClassWithWithPrivateParmeterTypes.myPrivateStaticMethod = function () { return null; }; - privateClassWithWithPrivateParmeterTypes.prototype.myPublicMethod = function () { + privateClassWithWithPrivateParmeterTypes_prototype_2.myPublicMethod = function () { return null; }; - privateClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod = function () { + privateClassWithWithPrivateParmeterTypes_prototype_2.myPrivateMethod = function () { return null; }; privateClassWithWithPrivateParmeterTypes.myPublicStaticMethod1 = function () { @@ -1705,10 +1720,10 @@ var privateModule; privateClassWithWithPrivateParmeterTypes.myPrivateStaticMethod1 = function () { return new privateClass(); }; - privateClassWithWithPrivateParmeterTypes.prototype.myPublicMethod1 = function () { + privateClassWithWithPrivateParmeterTypes_prototype_2.myPublicMethod1 = function () { return new privateClass(); }; - privateClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod1 = function () { + privateClassWithWithPrivateParmeterTypes_prototype_2.myPrivateMethod1 = function () { return new privateClass(); }; return privateClassWithWithPrivateParmeterTypes; @@ -1716,16 +1731,17 @@ var privateModule; var privateClassWithWithPublicParmeterTypes = /** @class */ (function () { function privateClassWithWithPublicParmeterTypes() { } + var privateClassWithWithPublicParmeterTypes_prototype_2 = privateClassWithWithPublicParmeterTypes.prototype; privateClassWithWithPublicParmeterTypes.myPublicStaticMethod = function () { return null; }; privateClassWithWithPublicParmeterTypes.myPrivateStaticMethod = function () { return null; }; - privateClassWithWithPublicParmeterTypes.prototype.myPublicMethod = function () { + privateClassWithWithPublicParmeterTypes_prototype_2.myPublicMethod = function () { return null; }; - privateClassWithWithPublicParmeterTypes.prototype.myPrivateMethod = function () { + privateClassWithWithPublicParmeterTypes_prototype_2.myPrivateMethod = function () { return null; }; privateClassWithWithPublicParmeterTypes.myPublicStaticMethod1 = function () { @@ -1734,10 +1750,10 @@ var privateModule; privateClassWithWithPublicParmeterTypes.myPrivateStaticMethod1 = function () { return new publicClass(); }; - privateClassWithWithPublicParmeterTypes.prototype.myPublicMethod1 = function () { + privateClassWithWithPublicParmeterTypes_prototype_2.myPublicMethod1 = function () { return new publicClass(); }; - privateClassWithWithPublicParmeterTypes.prototype.myPrivateMethod1 = function () { + privateClassWithWithPublicParmeterTypes_prototype_2.myPrivateMethod1 = function () { return new publicClass(); }; return privateClassWithWithPublicParmeterTypes; @@ -1773,16 +1789,17 @@ var privateModule; var publicClassWithPrivateModuleParameterTypes = /** @class */ (function () { function publicClassWithPrivateModuleParameterTypes() { } + var publicClassWithPrivateModuleParameterTypes_prototype_2 = publicClassWithPrivateModuleParameterTypes.prototype; publicClassWithPrivateModuleParameterTypes.myPublicStaticMethod = function () { return null; }; - publicClassWithPrivateModuleParameterTypes.prototype.myPublicMethod = function () { + publicClassWithPrivateModuleParameterTypes_prototype_2.myPublicMethod = function () { return null; }; publicClassWithPrivateModuleParameterTypes.myPublicStaticMethod1 = function () { return new privateModule.publicClass(); }; - publicClassWithPrivateModuleParameterTypes.prototype.myPublicMethod1 = function () { + publicClassWithPrivateModuleParameterTypes_prototype_2.myPublicMethod1 = function () { return new privateModule.publicClass(); }; return publicClassWithPrivateModuleParameterTypes; @@ -1799,16 +1816,17 @@ var privateModule; var privateClassWithPrivateModuleParameterTypes = /** @class */ (function () { function privateClassWithPrivateModuleParameterTypes() { } + var privateClassWithPrivateModuleParameterTypes_prototype_2 = privateClassWithPrivateModuleParameterTypes.prototype; privateClassWithPrivateModuleParameterTypes.myPublicStaticMethod = function () { return null; }; - privateClassWithPrivateModuleParameterTypes.prototype.myPublicMethod = function () { + privateClassWithPrivateModuleParameterTypes_prototype_2.myPublicMethod = function () { return null; }; privateClassWithPrivateModuleParameterTypes.myPublicStaticMethod1 = function () { return new privateModule.publicClass(); }; - privateClassWithPrivateModuleParameterTypes.prototype.myPublicMethod1 = function () { + privateClassWithPrivateModuleParameterTypes_prototype_2.myPublicMethod1 = function () { return new privateModule.publicClass(); }; return privateClassWithPrivateModuleParameterTypes; @@ -1829,16 +1847,17 @@ var publicClassInGlobal = /** @class */ (function () { var publicClassWithWithPublicParmeterTypesInGlobal = /** @class */ (function () { function publicClassWithWithPublicParmeterTypesInGlobal() { } + var publicClassWithWithPublicParmeterTypesInGlobal_prototype = publicClassWithWithPublicParmeterTypesInGlobal.prototype; publicClassWithWithPublicParmeterTypesInGlobal.myPublicStaticMethod = function () { return null; }; publicClassWithWithPublicParmeterTypesInGlobal.myPrivateStaticMethod = function () { return null; }; - publicClassWithWithPublicParmeterTypesInGlobal.prototype.myPublicMethod = function () { + publicClassWithWithPublicParmeterTypesInGlobal_prototype.myPublicMethod = function () { return null; }; - publicClassWithWithPublicParmeterTypesInGlobal.prototype.myPrivateMethod = function () { + publicClassWithWithPublicParmeterTypesInGlobal_prototype.myPrivateMethod = function () { return null; }; publicClassWithWithPublicParmeterTypesInGlobal.myPublicStaticMethod1 = function () { @@ -1847,10 +1866,10 @@ var publicClassWithWithPublicParmeterTypesInGlobal = /** @class */ (function () publicClassWithWithPublicParmeterTypesInGlobal.myPrivateStaticMethod1 = function () { return new publicClassInGlobal(); }; - publicClassWithWithPublicParmeterTypesInGlobal.prototype.myPublicMethod1 = function () { + publicClassWithWithPublicParmeterTypesInGlobal_prototype.myPublicMethod1 = function () { return new publicClassInGlobal(); }; - publicClassWithWithPublicParmeterTypesInGlobal.prototype.myPrivateMethod1 = function () { + publicClassWithWithPublicParmeterTypesInGlobal_prototype.myPrivateMethod1 = function () { return new publicClassInGlobal(); }; return publicClassWithWithPublicParmeterTypesInGlobal; @@ -1890,16 +1909,17 @@ var publicModuleInGlobal; var publicClassWithWithPrivateParmeterTypes = /** @class */ (function () { function publicClassWithWithPrivateParmeterTypes() { } + var publicClassWithWithPrivateParmeterTypes_prototype = publicClassWithWithPrivateParmeterTypes.prototype; publicClassWithWithPrivateParmeterTypes.myPublicStaticMethod = function () { return null; }; publicClassWithWithPrivateParmeterTypes.myPrivateStaticMethod = function () { return null; }; - publicClassWithWithPrivateParmeterTypes.prototype.myPublicMethod = function () { + publicClassWithWithPrivateParmeterTypes_prototype.myPublicMethod = function () { return null; }; - publicClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod = function () { + publicClassWithWithPrivateParmeterTypes_prototype.myPrivateMethod = function () { return null; }; publicClassWithWithPrivateParmeterTypes.myPublicStaticMethod1 = function () { @@ -1908,10 +1928,10 @@ var publicModuleInGlobal; publicClassWithWithPrivateParmeterTypes.myPrivateStaticMethod1 = function () { return new privateClass(); }; - publicClassWithWithPrivateParmeterTypes.prototype.myPublicMethod1 = function () { + publicClassWithWithPrivateParmeterTypes_prototype.myPublicMethod1 = function () { return new privateClass(); }; - publicClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod1 = function () { + publicClassWithWithPrivateParmeterTypes_prototype.myPrivateMethod1 = function () { return new privateClass(); }; return publicClassWithWithPrivateParmeterTypes; @@ -1920,16 +1940,17 @@ var publicModuleInGlobal; var publicClassWithWithPublicParmeterTypes = /** @class */ (function () { function publicClassWithWithPublicParmeterTypes() { } + var publicClassWithWithPublicParmeterTypes_prototype = publicClassWithWithPublicParmeterTypes.prototype; publicClassWithWithPublicParmeterTypes.myPublicStaticMethod = function () { return null; }; publicClassWithWithPublicParmeterTypes.myPrivateStaticMethod = function () { return null; }; - publicClassWithWithPublicParmeterTypes.prototype.myPublicMethod = function () { + publicClassWithWithPublicParmeterTypes_prototype.myPublicMethod = function () { return null; }; - publicClassWithWithPublicParmeterTypes.prototype.myPrivateMethod = function () { + publicClassWithWithPublicParmeterTypes_prototype.myPrivateMethod = function () { return null; }; publicClassWithWithPublicParmeterTypes.myPublicStaticMethod1 = function () { @@ -1938,10 +1959,10 @@ var publicModuleInGlobal; publicClassWithWithPublicParmeterTypes.myPrivateStaticMethod1 = function () { return new publicClass(); }; - publicClassWithWithPublicParmeterTypes.prototype.myPublicMethod1 = function () { + publicClassWithWithPublicParmeterTypes_prototype.myPublicMethod1 = function () { return new publicClass(); }; - publicClassWithWithPublicParmeterTypes.prototype.myPrivateMethod1 = function () { + publicClassWithWithPublicParmeterTypes_prototype.myPrivateMethod1 = function () { return new publicClass(); }; return publicClassWithWithPublicParmeterTypes; @@ -1950,16 +1971,17 @@ var publicModuleInGlobal; var privateClassWithWithPrivateParmeterTypes = /** @class */ (function () { function privateClassWithWithPrivateParmeterTypes() { } + var privateClassWithWithPrivateParmeterTypes_prototype = privateClassWithWithPrivateParmeterTypes.prototype; privateClassWithWithPrivateParmeterTypes.myPublicStaticMethod = function () { return null; }; privateClassWithWithPrivateParmeterTypes.myPrivateStaticMethod = function () { return null; }; - privateClassWithWithPrivateParmeterTypes.prototype.myPublicMethod = function () { + privateClassWithWithPrivateParmeterTypes_prototype.myPublicMethod = function () { return null; }; - privateClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod = function () { + privateClassWithWithPrivateParmeterTypes_prototype.myPrivateMethod = function () { return null; }; privateClassWithWithPrivateParmeterTypes.myPublicStaticMethod1 = function () { @@ -1968,10 +1990,10 @@ var publicModuleInGlobal; privateClassWithWithPrivateParmeterTypes.myPrivateStaticMethod1 = function () { return new privateClass(); }; - privateClassWithWithPrivateParmeterTypes.prototype.myPublicMethod1 = function () { + privateClassWithWithPrivateParmeterTypes_prototype.myPublicMethod1 = function () { return new privateClass(); }; - privateClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod1 = function () { + privateClassWithWithPrivateParmeterTypes_prototype.myPrivateMethod1 = function () { return new privateClass(); }; return privateClassWithWithPrivateParmeterTypes; @@ -1979,16 +2001,17 @@ var publicModuleInGlobal; var privateClassWithWithPublicParmeterTypes = /** @class */ (function () { function privateClassWithWithPublicParmeterTypes() { } + var privateClassWithWithPublicParmeterTypes_prototype = privateClassWithWithPublicParmeterTypes.prototype; privateClassWithWithPublicParmeterTypes.myPublicStaticMethod = function () { return null; }; privateClassWithWithPublicParmeterTypes.myPrivateStaticMethod = function () { return null; }; - privateClassWithWithPublicParmeterTypes.prototype.myPublicMethod = function () { + privateClassWithWithPublicParmeterTypes_prototype.myPublicMethod = function () { return null; }; - privateClassWithWithPublicParmeterTypes.prototype.myPrivateMethod = function () { + privateClassWithWithPublicParmeterTypes_prototype.myPrivateMethod = function () { return null; }; privateClassWithWithPublicParmeterTypes.myPublicStaticMethod1 = function () { @@ -1997,10 +2020,10 @@ var publicModuleInGlobal; privateClassWithWithPublicParmeterTypes.myPrivateStaticMethod1 = function () { return new publicClass(); }; - privateClassWithWithPublicParmeterTypes.prototype.myPublicMethod1 = function () { + privateClassWithWithPublicParmeterTypes_prototype.myPublicMethod1 = function () { return new publicClass(); }; - privateClassWithWithPublicParmeterTypes.prototype.myPrivateMethod1 = function () { + privateClassWithWithPublicParmeterTypes_prototype.myPrivateMethod1 = function () { return new publicClass(); }; return privateClassWithWithPublicParmeterTypes; @@ -2036,16 +2059,17 @@ var publicModuleInGlobal; var publicClassWithPrivateModuleParameterTypes = /** @class */ (function () { function publicClassWithPrivateModuleParameterTypes() { } + var publicClassWithPrivateModuleParameterTypes_prototype = publicClassWithPrivateModuleParameterTypes.prototype; publicClassWithPrivateModuleParameterTypes.myPublicStaticMethod = function () { return null; }; - publicClassWithPrivateModuleParameterTypes.prototype.myPublicMethod = function () { + publicClassWithPrivateModuleParameterTypes_prototype.myPublicMethod = function () { return null; }; publicClassWithPrivateModuleParameterTypes.myPublicStaticMethod1 = function () { return new privateModule.publicClass(); }; - publicClassWithPrivateModuleParameterTypes.prototype.myPublicMethod1 = function () { + publicClassWithPrivateModuleParameterTypes_prototype.myPublicMethod1 = function () { return new privateModule.publicClass(); }; return publicClassWithPrivateModuleParameterTypes; @@ -2062,16 +2086,17 @@ var publicModuleInGlobal; var privateClassWithPrivateModuleParameterTypes = /** @class */ (function () { function privateClassWithPrivateModuleParameterTypes() { } + var privateClassWithPrivateModuleParameterTypes_prototype = privateClassWithPrivateModuleParameterTypes.prototype; privateClassWithPrivateModuleParameterTypes.myPublicStaticMethod = function () { return null; }; - privateClassWithPrivateModuleParameterTypes.prototype.myPublicMethod = function () { + privateClassWithPrivateModuleParameterTypes_prototype.myPublicMethod = function () { return null; }; privateClassWithPrivateModuleParameterTypes.myPublicStaticMethod1 = function () { return new privateModule.publicClass(); }; - privateClassWithPrivateModuleParameterTypes.prototype.myPublicMethod1 = function () { + privateClassWithPrivateModuleParameterTypes_prototype.myPublicMethod1 = function () { return new privateModule.publicClass(); }; return privateClassWithPrivateModuleParameterTypes; @@ -2086,16 +2111,17 @@ var publicModuleInGlobal; var publicClassWithWithPrivateParmeterTypes = /** @class */ (function () { function publicClassWithWithPrivateParmeterTypes() { } + var publicClassWithWithPrivateParmeterTypes_prototype_1 = publicClassWithWithPrivateParmeterTypes.prototype; publicClassWithWithPrivateParmeterTypes.myPublicStaticMethod = function () { return null; }; publicClassWithWithPrivateParmeterTypes.myPrivateStaticMethod = function () { return null; }; - publicClassWithWithPrivateParmeterTypes.prototype.myPublicMethod = function () { + publicClassWithWithPrivateParmeterTypes_prototype_1.myPublicMethod = function () { return null; }; - publicClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod = function () { + publicClassWithWithPrivateParmeterTypes_prototype_1.myPrivateMethod = function () { return null; }; publicClassWithWithPrivateParmeterTypes.myPublicStaticMethod1 = function () { @@ -2104,10 +2130,10 @@ var publicModuleInGlobal; publicClassWithWithPrivateParmeterTypes.myPrivateStaticMethod1 = function () { return new privateClass(); }; - publicClassWithWithPrivateParmeterTypes.prototype.myPublicMethod1 = function () { + publicClassWithWithPrivateParmeterTypes_prototype_1.myPublicMethod1 = function () { return new privateClass(); }; - publicClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod1 = function () { + publicClassWithWithPrivateParmeterTypes_prototype_1.myPrivateMethod1 = function () { return new privateClass(); }; return publicClassWithWithPrivateParmeterTypes; @@ -2116,16 +2142,17 @@ var publicModuleInGlobal; var publicClassWithWithPublicParmeterTypes = /** @class */ (function () { function publicClassWithWithPublicParmeterTypes() { } + var publicClassWithWithPublicParmeterTypes_prototype_1 = publicClassWithWithPublicParmeterTypes.prototype; publicClassWithWithPublicParmeterTypes.myPublicStaticMethod = function () { return null; }; publicClassWithWithPublicParmeterTypes.myPrivateStaticMethod = function () { return null; }; - publicClassWithWithPublicParmeterTypes.prototype.myPublicMethod = function () { + publicClassWithWithPublicParmeterTypes_prototype_1.myPublicMethod = function () { return null; }; - publicClassWithWithPublicParmeterTypes.prototype.myPrivateMethod = function () { + publicClassWithWithPublicParmeterTypes_prototype_1.myPrivateMethod = function () { return null; }; publicClassWithWithPublicParmeterTypes.myPublicStaticMethod1 = function () { @@ -2134,10 +2161,10 @@ var publicModuleInGlobal; publicClassWithWithPublicParmeterTypes.myPrivateStaticMethod1 = function () { return new publicClass(); }; - publicClassWithWithPublicParmeterTypes.prototype.myPublicMethod1 = function () { + publicClassWithWithPublicParmeterTypes_prototype_1.myPublicMethod1 = function () { return new publicClass(); }; - publicClassWithWithPublicParmeterTypes.prototype.myPrivateMethod1 = function () { + publicClassWithWithPublicParmeterTypes_prototype_1.myPrivateMethod1 = function () { return new publicClass(); }; return publicClassWithWithPublicParmeterTypes; @@ -2146,16 +2173,17 @@ var publicModuleInGlobal; var privateClassWithWithPrivateParmeterTypes = /** @class */ (function () { function privateClassWithWithPrivateParmeterTypes() { } + var privateClassWithWithPrivateParmeterTypes_prototype_1 = privateClassWithWithPrivateParmeterTypes.prototype; privateClassWithWithPrivateParmeterTypes.myPublicStaticMethod = function () { return null; }; privateClassWithWithPrivateParmeterTypes.myPrivateStaticMethod = function () { return null; }; - privateClassWithWithPrivateParmeterTypes.prototype.myPublicMethod = function () { + privateClassWithWithPrivateParmeterTypes_prototype_1.myPublicMethod = function () { return null; }; - privateClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod = function () { + privateClassWithWithPrivateParmeterTypes_prototype_1.myPrivateMethod = function () { return null; }; privateClassWithWithPrivateParmeterTypes.myPublicStaticMethod1 = function () { @@ -2164,10 +2192,10 @@ var publicModuleInGlobal; privateClassWithWithPrivateParmeterTypes.myPrivateStaticMethod1 = function () { return new privateClass(); }; - privateClassWithWithPrivateParmeterTypes.prototype.myPublicMethod1 = function () { + privateClassWithWithPrivateParmeterTypes_prototype_1.myPublicMethod1 = function () { return new privateClass(); }; - privateClassWithWithPrivateParmeterTypes.prototype.myPrivateMethod1 = function () { + privateClassWithWithPrivateParmeterTypes_prototype_1.myPrivateMethod1 = function () { return new privateClass(); }; return privateClassWithWithPrivateParmeterTypes; @@ -2175,16 +2203,17 @@ var publicModuleInGlobal; var privateClassWithWithPublicParmeterTypes = /** @class */ (function () { function privateClassWithWithPublicParmeterTypes() { } + var privateClassWithWithPublicParmeterTypes_prototype_1 = privateClassWithWithPublicParmeterTypes.prototype; privateClassWithWithPublicParmeterTypes.myPublicStaticMethod = function () { return null; }; privateClassWithWithPublicParmeterTypes.myPrivateStaticMethod = function () { return null; }; - privateClassWithWithPublicParmeterTypes.prototype.myPublicMethod = function () { + privateClassWithWithPublicParmeterTypes_prototype_1.myPublicMethod = function () { return null; }; - privateClassWithWithPublicParmeterTypes.prototype.myPrivateMethod = function () { + privateClassWithWithPublicParmeterTypes_prototype_1.myPrivateMethod = function () { return null; }; privateClassWithWithPublicParmeterTypes.myPublicStaticMethod1 = function () { @@ -2193,10 +2222,10 @@ var publicModuleInGlobal; privateClassWithWithPublicParmeterTypes.myPrivateStaticMethod1 = function () { return new publicClass(); }; - privateClassWithWithPublicParmeterTypes.prototype.myPublicMethod1 = function () { + privateClassWithWithPublicParmeterTypes_prototype_1.myPublicMethod1 = function () { return new publicClass(); }; - privateClassWithWithPublicParmeterTypes.prototype.myPrivateMethod1 = function () { + privateClassWithWithPublicParmeterTypes_prototype_1.myPrivateMethod1 = function () { return new publicClass(); }; return privateClassWithWithPublicParmeterTypes; @@ -2232,16 +2261,17 @@ var publicModuleInGlobal; var publicClassWithPrivateModuleParameterTypes = /** @class */ (function () { function publicClassWithPrivateModuleParameterTypes() { } + var publicClassWithPrivateModuleParameterTypes_prototype_1 = publicClassWithPrivateModuleParameterTypes.prototype; publicClassWithPrivateModuleParameterTypes.myPublicStaticMethod = function () { return null; }; - publicClassWithPrivateModuleParameterTypes.prototype.myPublicMethod = function () { + publicClassWithPrivateModuleParameterTypes_prototype_1.myPublicMethod = function () { return null; }; publicClassWithPrivateModuleParameterTypes.myPublicStaticMethod1 = function () { return new privateModule.publicClass(); }; - publicClassWithPrivateModuleParameterTypes.prototype.myPublicMethod1 = function () { + publicClassWithPrivateModuleParameterTypes_prototype_1.myPublicMethod1 = function () { return new privateModule.publicClass(); }; return publicClassWithPrivateModuleParameterTypes; @@ -2258,16 +2288,17 @@ var publicModuleInGlobal; var privateClassWithPrivateModuleParameterTypes = /** @class */ (function () { function privateClassWithPrivateModuleParameterTypes() { } + var privateClassWithPrivateModuleParameterTypes_prototype_1 = privateClassWithPrivateModuleParameterTypes.prototype; privateClassWithPrivateModuleParameterTypes.myPublicStaticMethod = function () { return null; }; - privateClassWithPrivateModuleParameterTypes.prototype.myPublicMethod = function () { + privateClassWithPrivateModuleParameterTypes_prototype_1.myPublicMethod = function () { return null; }; privateClassWithPrivateModuleParameterTypes.myPublicStaticMethod1 = function () { return new privateModule.publicClass(); }; - privateClassWithPrivateModuleParameterTypes.prototype.myPublicMethod1 = function () { + privateClassWithPrivateModuleParameterTypes_prototype_1.myPublicMethod1 = function () { return new privateModule.publicClass(); }; return privateClassWithPrivateModuleParameterTypes; diff --git a/tests/baselines/reference/privacyGetter.js b/tests/baselines/reference/privacyGetter.js index 801b133c77f41..88226b8565974 100644 --- a/tests/baselines/reference/privacyGetter.js +++ b/tests/baselines/reference/privacyGetter.js @@ -230,7 +230,8 @@ define(["require", "exports"], function (require, exports) { var C3_public = /** @class */ (function () { function C3_public() { } - Object.defineProperty(C3_public.prototype, "p1_private", { + var C3_public_prototype = C3_public.prototype; + Object.defineProperty(C3_public_prototype, "p1_private", { get: function () { return new C1_public(); }, @@ -239,7 +240,7 @@ define(["require", "exports"], function (require, exports) { enumerable: false, configurable: true }); - Object.defineProperty(C3_public.prototype, "p2_private", { + Object.defineProperty(C3_public_prototype, "p2_private", { get: function () { return new C1_public(); }, @@ -248,7 +249,7 @@ define(["require", "exports"], function (require, exports) { enumerable: false, configurable: true }); - Object.defineProperty(C3_public.prototype, "p3_private", { + Object.defineProperty(C3_public_prototype, "p3_private", { get: function () { return new C2_private(); }, @@ -257,7 +258,7 @@ define(["require", "exports"], function (require, exports) { enumerable: false, configurable: true }); - Object.defineProperty(C3_public.prototype, "p4_public", { + Object.defineProperty(C3_public_prototype, "p4_public", { get: function () { return new C2_private(); //error }, @@ -272,7 +273,8 @@ define(["require", "exports"], function (require, exports) { var C4_private = /** @class */ (function () { function C4_private() { } - Object.defineProperty(C4_private.prototype, "p1_private", { + var C4_private_prototype = C4_private.prototype; + Object.defineProperty(C4_private_prototype, "p1_private", { get: function () { return new C1_public(); }, @@ -281,7 +283,7 @@ define(["require", "exports"], function (require, exports) { enumerable: false, configurable: true }); - Object.defineProperty(C4_private.prototype, "p2_private", { + Object.defineProperty(C4_private_prototype, "p2_private", { get: function () { return new C1_public(); }, @@ -290,7 +292,7 @@ define(["require", "exports"], function (require, exports) { enumerable: false, configurable: true }); - Object.defineProperty(C4_private.prototype, "p3_private", { + Object.defineProperty(C4_private_prototype, "p3_private", { get: function () { return new C2_private(); }, @@ -299,7 +301,7 @@ define(["require", "exports"], function (require, exports) { enumerable: false, configurable: true }); - Object.defineProperty(C4_private.prototype, "p4_public", { + Object.defineProperty(C4_private_prototype, "p4_public", { get: function () { return new C2_private(); }, @@ -329,7 +331,8 @@ define(["require", "exports"], function (require, exports) { var m2_C3_public = /** @class */ (function () { function m2_C3_public() { } - Object.defineProperty(m2_C3_public.prototype, "p1_private", { + var m2_C3_public_prototype = m2_C3_public.prototype; + Object.defineProperty(m2_C3_public_prototype, "p1_private", { get: function () { return new m2_C1_public(); }, @@ -338,7 +341,7 @@ define(["require", "exports"], function (require, exports) { enumerable: false, configurable: true }); - Object.defineProperty(m2_C3_public.prototype, "p2_private", { + Object.defineProperty(m2_C3_public_prototype, "p2_private", { get: function () { return new m2_C1_public(); }, @@ -347,7 +350,7 @@ define(["require", "exports"], function (require, exports) { enumerable: false, configurable: true }); - Object.defineProperty(m2_C3_public.prototype, "p3_private", { + Object.defineProperty(m2_C3_public_prototype, "p3_private", { get: function () { return new m2_C2_private(); }, @@ -356,7 +359,7 @@ define(["require", "exports"], function (require, exports) { enumerable: false, configurable: true }); - Object.defineProperty(m2_C3_public.prototype, "p4_public", { + Object.defineProperty(m2_C3_public_prototype, "p4_public", { get: function () { return new m2_C2_private(); }, @@ -371,7 +374,8 @@ define(["require", "exports"], function (require, exports) { var m2_C4_private = /** @class */ (function () { function m2_C4_private() { } - Object.defineProperty(m2_C4_private.prototype, "p1_private", { + var m2_C4_private_prototype = m2_C4_private.prototype; + Object.defineProperty(m2_C4_private_prototype, "p1_private", { get: function () { return new m2_C1_public(); }, @@ -380,7 +384,7 @@ define(["require", "exports"], function (require, exports) { enumerable: false, configurable: true }); - Object.defineProperty(m2_C4_private.prototype, "p2_private", { + Object.defineProperty(m2_C4_private_prototype, "p2_private", { get: function () { return new m2_C1_public(); }, @@ -389,7 +393,7 @@ define(["require", "exports"], function (require, exports) { enumerable: false, configurable: true }); - Object.defineProperty(m2_C4_private.prototype, "p3_private", { + Object.defineProperty(m2_C4_private_prototype, "p3_private", { get: function () { return new m2_C2_private(); }, @@ -398,7 +402,7 @@ define(["require", "exports"], function (require, exports) { enumerable: false, configurable: true }); - Object.defineProperty(m2_C4_private.prototype, "p4_public", { + Object.defineProperty(m2_C4_private_prototype, "p4_public", { get: function () { return new m2_C2_private(); }, @@ -426,7 +430,8 @@ define(["require", "exports"], function (require, exports) { var C7_public = /** @class */ (function () { function C7_public() { } - Object.defineProperty(C7_public.prototype, "p1_private", { + var C7_public_prototype = C7_public.prototype; + Object.defineProperty(C7_public_prototype, "p1_private", { get: function () { return new C6_public(); }, @@ -435,7 +440,7 @@ define(["require", "exports"], function (require, exports) { enumerable: false, configurable: true }); - Object.defineProperty(C7_public.prototype, "p2_private", { + Object.defineProperty(C7_public_prototype, "p2_private", { get: function () { return new C6_public(); }, @@ -444,7 +449,7 @@ define(["require", "exports"], function (require, exports) { enumerable: false, configurable: true }); - Object.defineProperty(C7_public.prototype, "p3_private", { + Object.defineProperty(C7_public_prototype, "p3_private", { get: function () { return new C5_private(); }, @@ -453,7 +458,7 @@ define(["require", "exports"], function (require, exports) { enumerable: false, configurable: true }); - Object.defineProperty(C7_public.prototype, "p4_public", { + Object.defineProperty(C7_public_prototype, "p4_public", { get: function () { return new C5_private(); //error }, @@ -468,7 +473,8 @@ define(["require", "exports"], function (require, exports) { var C8_private = /** @class */ (function () { function C8_private() { } - Object.defineProperty(C8_private.prototype, "p1_private", { + var C8_private_prototype = C8_private.prototype; + Object.defineProperty(C8_private_prototype, "p1_private", { get: function () { return new C6_public(); }, @@ -477,7 +483,7 @@ define(["require", "exports"], function (require, exports) { enumerable: false, configurable: true }); - Object.defineProperty(C8_private.prototype, "p2_private", { + Object.defineProperty(C8_private_prototype, "p2_private", { get: function () { return new C6_public(); }, @@ -486,7 +492,7 @@ define(["require", "exports"], function (require, exports) { enumerable: false, configurable: true }); - Object.defineProperty(C8_private.prototype, "p3_private", { + Object.defineProperty(C8_private_prototype, "p3_private", { get: function () { return new C5_private(); }, @@ -495,7 +501,7 @@ define(["require", "exports"], function (require, exports) { enumerable: false, configurable: true }); - Object.defineProperty(C8_private.prototype, "p4_public", { + Object.defineProperty(C8_private_prototype, "p4_public", { get: function () { return new C5_private(); }, diff --git a/tests/baselines/reference/privacyGloFunc.js b/tests/baselines/reference/privacyGloFunc.js index 047a7f1cf1516..a3a7ced0a9db6 100644 --- a/tests/baselines/reference/privacyGloFunc.js +++ b/tests/baselines/reference/privacyGloFunc.js @@ -553,36 +553,37 @@ define(["require", "exports"], function (require, exports) { var C3_public = /** @class */ (function () { function C3_public(m1_c3_c1_2) { } - C3_public.prototype.f1_private = function (m1_c3_f1_arg) { + var C3_public_prototype = C3_public.prototype; + C3_public_prototype.f1_private = function (m1_c3_f1_arg) { }; - C3_public.prototype.f2_public = function (m1_c3_f2_arg) { + C3_public_prototype.f2_public = function (m1_c3_f2_arg) { }; - C3_public.prototype.f3_private = function (m1_c3_f3_arg) { + C3_public_prototype.f3_private = function (m1_c3_f3_arg) { }; - C3_public.prototype.f4_public = function (m1_c3_f4_arg) { + C3_public_prototype.f4_public = function (m1_c3_f4_arg) { }; - C3_public.prototype.f5_private = function () { + C3_public_prototype.f5_private = function () { return new C1_public(); }; - C3_public.prototype.f6_public = function () { + C3_public_prototype.f6_public = function () { return new C1_public(); }; - C3_public.prototype.f7_private = function () { + C3_public_prototype.f7_private = function () { return new C2_private(); }; - C3_public.prototype.f8_public = function () { + C3_public_prototype.f8_public = function () { return new C2_private(); // error }; - C3_public.prototype.f9_private = function () { + C3_public_prototype.f9_private = function () { return new C1_public(); }; - C3_public.prototype.f10_public = function () { + C3_public_prototype.f10_public = function () { return new C1_public(); }; - C3_public.prototype.f11_private = function () { + C3_public_prototype.f11_private = function () { return new C2_private(); }; - C3_public.prototype.f12_public = function () { + C3_public_prototype.f12_public = function () { return new C2_private(); //error }; return C3_public; @@ -591,36 +592,37 @@ define(["require", "exports"], function (require, exports) { var C4_private = /** @class */ (function () { function C4_private(m1_c4_c1_2) { } - C4_private.prototype.f1_private = function (m1_c4_f1_arg) { + var C4_private_prototype = C4_private.prototype; + C4_private_prototype.f1_private = function (m1_c4_f1_arg) { }; - C4_private.prototype.f2_public = function (m1_c4_f2_arg) { + C4_private_prototype.f2_public = function (m1_c4_f2_arg) { }; - C4_private.prototype.f3_private = function (m1_c4_f3_arg) { + C4_private_prototype.f3_private = function (m1_c4_f3_arg) { }; - C4_private.prototype.f4_public = function (m1_c4_f4_arg) { + C4_private_prototype.f4_public = function (m1_c4_f4_arg) { }; - C4_private.prototype.f5_private = function () { + C4_private_prototype.f5_private = function () { return new C1_public(); }; - C4_private.prototype.f6_public = function () { + C4_private_prototype.f6_public = function () { return new C1_public(); }; - C4_private.prototype.f7_private = function () { + C4_private_prototype.f7_private = function () { return new C2_private(); }; - C4_private.prototype.f8_public = function () { + C4_private_prototype.f8_public = function () { return new C2_private(); }; - C4_private.prototype.f9_private = function () { + C4_private_prototype.f9_private = function () { return new C1_public(); }; - C4_private.prototype.f10_public = function () { + C4_private_prototype.f10_public = function () { return new C1_public(); }; - C4_private.prototype.f11_private = function () { + C4_private_prototype.f11_private = function () { return new C2_private(); }; - C4_private.prototype.f12_public = function () { + C4_private_prototype.f12_public = function () { return new C2_private(); }; return C4_private; @@ -704,36 +706,37 @@ define(["require", "exports"], function (require, exports) { var m2_C3_public = /** @class */ (function () { function m2_C3_public(m2_c3_c1_2) { } - m2_C3_public.prototype.f1_private = function (m2_c3_f1_arg) { + var m2_C3_public_prototype = m2_C3_public.prototype; + m2_C3_public_prototype.f1_private = function (m2_c3_f1_arg) { }; - m2_C3_public.prototype.f2_public = function (m2_c3_f2_arg) { + m2_C3_public_prototype.f2_public = function (m2_c3_f2_arg) { }; - m2_C3_public.prototype.f3_private = function (m2_c3_f3_arg) { + m2_C3_public_prototype.f3_private = function (m2_c3_f3_arg) { }; - m2_C3_public.prototype.f4_public = function (m2_c3_f4_arg) { + m2_C3_public_prototype.f4_public = function (m2_c3_f4_arg) { }; - m2_C3_public.prototype.f5_private = function () { + m2_C3_public_prototype.f5_private = function () { return new m2_C1_public(); }; - m2_C3_public.prototype.f6_public = function () { + m2_C3_public_prototype.f6_public = function () { return new m2_C1_public(); }; - m2_C3_public.prototype.f7_private = function () { + m2_C3_public_prototype.f7_private = function () { return new m2_C2_private(); }; - m2_C3_public.prototype.f8_public = function () { + m2_C3_public_prototype.f8_public = function () { return new m2_C2_private(); }; - m2_C3_public.prototype.f9_private = function () { + m2_C3_public_prototype.f9_private = function () { return new m2_C1_public(); }; - m2_C3_public.prototype.f10_public = function () { + m2_C3_public_prototype.f10_public = function () { return new m2_C1_public(); }; - m2_C3_public.prototype.f11_private = function () { + m2_C3_public_prototype.f11_private = function () { return new m2_C2_private(); }; - m2_C3_public.prototype.f12_public = function () { + m2_C3_public_prototype.f12_public = function () { return new m2_C2_private(); }; return m2_C3_public; @@ -742,36 +745,37 @@ define(["require", "exports"], function (require, exports) { var m2_C4_private = /** @class */ (function () { function m2_C4_private(m2_c4_c1_2) { } - m2_C4_private.prototype.f1_private = function (m2_c4_f1_arg) { + var m2_C4_private_prototype = m2_C4_private.prototype; + m2_C4_private_prototype.f1_private = function (m2_c4_f1_arg) { }; - m2_C4_private.prototype.f2_public = function (m2_c4_f2_arg) { + m2_C4_private_prototype.f2_public = function (m2_c4_f2_arg) { }; - m2_C4_private.prototype.f3_private = function (m2_c4_f3_arg) { + m2_C4_private_prototype.f3_private = function (m2_c4_f3_arg) { }; - m2_C4_private.prototype.f4_public = function (m2_c4_f4_arg) { + m2_C4_private_prototype.f4_public = function (m2_c4_f4_arg) { }; - m2_C4_private.prototype.f5_private = function () { + m2_C4_private_prototype.f5_private = function () { return new m2_C1_public(); }; - m2_C4_private.prototype.f6_public = function () { + m2_C4_private_prototype.f6_public = function () { return new m2_C1_public(); }; - m2_C4_private.prototype.f7_private = function () { + m2_C4_private_prototype.f7_private = function () { return new m2_C2_private(); }; - m2_C4_private.prototype.f8_public = function () { + m2_C4_private_prototype.f8_public = function () { return new m2_C2_private(); }; - m2_C4_private.prototype.f9_private = function () { + m2_C4_private_prototype.f9_private = function () { return new m2_C1_public(); }; - m2_C4_private.prototype.f10_public = function () { + m2_C4_private_prototype.f10_public = function () { return new m2_C1_public(); }; - m2_C4_private.prototype.f11_private = function () { + m2_C4_private_prototype.f11_private = function () { return new m2_C2_private(); }; - m2_C4_private.prototype.f12_public = function () { + m2_C4_private_prototype.f12_public = function () { return new m2_C2_private(); }; return m2_C4_private; @@ -853,36 +857,37 @@ define(["require", "exports"], function (require, exports) { var C7_public = /** @class */ (function () { function C7_public(c7_c1_2) { } - C7_public.prototype.f1_private = function (c7_f1_arg) { + var C7_public_prototype = C7_public.prototype; + C7_public_prototype.f1_private = function (c7_f1_arg) { }; - C7_public.prototype.f2_public = function (c7_f2_arg) { + C7_public_prototype.f2_public = function (c7_f2_arg) { }; - C7_public.prototype.f3_private = function (c7_f3_arg) { + C7_public_prototype.f3_private = function (c7_f3_arg) { }; - C7_public.prototype.f4_public = function (c7_f4_arg) { + C7_public_prototype.f4_public = function (c7_f4_arg) { }; - C7_public.prototype.f5_private = function () { + C7_public_prototype.f5_private = function () { return new C6_public(); }; - C7_public.prototype.f6_public = function () { + C7_public_prototype.f6_public = function () { return new C6_public(); }; - C7_public.prototype.f7_private = function () { + C7_public_prototype.f7_private = function () { return new C5_private(); }; - C7_public.prototype.f8_public = function () { + C7_public_prototype.f8_public = function () { return new C5_private(); //error }; - C7_public.prototype.f9_private = function () { + C7_public_prototype.f9_private = function () { return new C6_public(); }; - C7_public.prototype.f10_public = function () { + C7_public_prototype.f10_public = function () { return new C6_public(); }; - C7_public.prototype.f11_private = function () { + C7_public_prototype.f11_private = function () { return new C5_private(); }; - C7_public.prototype.f12_public = function () { + C7_public_prototype.f12_public = function () { return new C5_private(); //error }; return C7_public; @@ -891,36 +896,37 @@ define(["require", "exports"], function (require, exports) { var C8_private = /** @class */ (function () { function C8_private(c8_c1_2) { } - C8_private.prototype.f1_private = function (c8_f1_arg) { + var C8_private_prototype = C8_private.prototype; + C8_private_prototype.f1_private = function (c8_f1_arg) { }; - C8_private.prototype.f2_public = function (c8_f2_arg) { + C8_private_prototype.f2_public = function (c8_f2_arg) { }; - C8_private.prototype.f3_private = function (c8_f3_arg) { + C8_private_prototype.f3_private = function (c8_f3_arg) { }; - C8_private.prototype.f4_public = function (c8_f4_arg) { + C8_private_prototype.f4_public = function (c8_f4_arg) { }; - C8_private.prototype.f5_private = function () { + C8_private_prototype.f5_private = function () { return new C6_public(); }; - C8_private.prototype.f6_public = function () { + C8_private_prototype.f6_public = function () { return new C6_public(); }; - C8_private.prototype.f7_private = function () { + C8_private_prototype.f7_private = function () { return new C5_private(); }; - C8_private.prototype.f8_public = function () { + C8_private_prototype.f8_public = function () { return new C5_private(); }; - C8_private.prototype.f9_private = function () { + C8_private_prototype.f9_private = function () { return new C6_public(); }; - C8_private.prototype.f10_public = function () { + C8_private_prototype.f10_public = function () { return new C6_public(); }; - C8_private.prototype.f11_private = function () { + C8_private_prototype.f11_private = function () { return new C5_private(); }; - C8_private.prototype.f12_public = function () { + C8_private_prototype.f12_public = function () { return new C5_private(); }; return C8_private; diff --git a/tests/baselines/reference/privacyGloGetter.js b/tests/baselines/reference/privacyGloGetter.js index a3047863a693f..753702eff8c36 100644 --- a/tests/baselines/reference/privacyGloGetter.js +++ b/tests/baselines/reference/privacyGloGetter.js @@ -107,7 +107,8 @@ var m1; var C3_public = /** @class */ (function () { function C3_public() { } - Object.defineProperty(C3_public.prototype, "p1_private", { + var C3_public_prototype = C3_public.prototype; + Object.defineProperty(C3_public_prototype, "p1_private", { get: function () { return new C1_public(); }, @@ -116,7 +117,7 @@ var m1; enumerable: false, configurable: true }); - Object.defineProperty(C3_public.prototype, "p2_private", { + Object.defineProperty(C3_public_prototype, "p2_private", { get: function () { return new C1_public(); }, @@ -125,7 +126,7 @@ var m1; enumerable: false, configurable: true }); - Object.defineProperty(C3_public.prototype, "p3_private", { + Object.defineProperty(C3_public_prototype, "p3_private", { get: function () { return new C2_private(); }, @@ -134,7 +135,7 @@ var m1; enumerable: false, configurable: true }); - Object.defineProperty(C3_public.prototype, "p4_public", { + Object.defineProperty(C3_public_prototype, "p4_public", { get: function () { return new C2_private(); //error }, @@ -149,7 +150,8 @@ var m1; var C4_private = /** @class */ (function () { function C4_private() { } - Object.defineProperty(C4_private.prototype, "p1_private", { + var C4_private_prototype = C4_private.prototype; + Object.defineProperty(C4_private_prototype, "p1_private", { get: function () { return new C1_public(); }, @@ -158,7 +160,7 @@ var m1; enumerable: false, configurable: true }); - Object.defineProperty(C4_private.prototype, "p2_private", { + Object.defineProperty(C4_private_prototype, "p2_private", { get: function () { return new C1_public(); }, @@ -167,7 +169,7 @@ var m1; enumerable: false, configurable: true }); - Object.defineProperty(C4_private.prototype, "p3_private", { + Object.defineProperty(C4_private_prototype, "p3_private", { get: function () { return new C2_private(); }, @@ -176,7 +178,7 @@ var m1; enumerable: false, configurable: true }); - Object.defineProperty(C4_private.prototype, "p4_public", { + Object.defineProperty(C4_private_prototype, "p4_public", { get: function () { return new C2_private(); }, @@ -196,7 +198,8 @@ var C6_public = /** @class */ (function () { var C7_public = /** @class */ (function () { function C7_public() { } - Object.defineProperty(C7_public.prototype, "p1_private", { + var C7_public_prototype = C7_public.prototype; + Object.defineProperty(C7_public_prototype, "p1_private", { get: function () { return new C6_public(); }, @@ -205,7 +208,7 @@ var C7_public = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(C7_public.prototype, "p2_private", { + Object.defineProperty(C7_public_prototype, "p2_private", { get: function () { return new C6_public(); }, diff --git a/tests/baselines/reference/privacyTypeParameterOfFunction.js b/tests/baselines/reference/privacyTypeParameterOfFunction.js index f1e48fe1df772..5657cd64b9a91 100644 --- a/tests/baselines/reference/privacyTypeParameterOfFunction.js +++ b/tests/baselines/reference/privacyTypeParameterOfFunction.js @@ -150,15 +150,16 @@ exports.publicClass = publicClass; var publicClassWithWithPrivateTypeParameters = /** @class */ (function () { function publicClassWithWithPrivateTypeParameters() { } + var publicClassWithWithPrivateTypeParameters_prototype = publicClassWithWithPrivateTypeParameters.prototype; // TypeParameter_0_of_public_static_method_from_exported_class_has_or_is_using_private_type_1 publicClassWithWithPrivateTypeParameters.myPublicStaticMethod = function () { }; publicClassWithWithPrivateTypeParameters.myPrivateStaticMethod = function () { }; // TypeParameter_0_of_public_method_from_exported_class_has_or_is_using_private_type_1 - publicClassWithWithPrivateTypeParameters.prototype.myPublicMethod = function () { + publicClassWithWithPrivateTypeParameters_prototype.myPublicMethod = function () { }; - publicClassWithWithPrivateTypeParameters.prototype.myPrivateMethod = function () { + publicClassWithWithPrivateTypeParameters_prototype.myPrivateMethod = function () { }; return publicClassWithWithPrivateTypeParameters; }()); @@ -166,13 +167,14 @@ exports.publicClassWithWithPrivateTypeParameters = publicClassWithWithPrivateTyp var publicClassWithWithPublicTypeParameters = /** @class */ (function () { function publicClassWithWithPublicTypeParameters() { } + var publicClassWithWithPublicTypeParameters_prototype = publicClassWithWithPublicTypeParameters.prototype; publicClassWithWithPublicTypeParameters.myPublicStaticMethod = function () { }; publicClassWithWithPublicTypeParameters.myPrivateStaticMethod = function () { }; - publicClassWithWithPublicTypeParameters.prototype.myPublicMethod = function () { + publicClassWithWithPublicTypeParameters_prototype.myPublicMethod = function () { }; - publicClassWithWithPublicTypeParameters.prototype.myPrivateMethod = function () { + publicClassWithWithPublicTypeParameters_prototype.myPrivateMethod = function () { }; return publicClassWithWithPublicTypeParameters; }()); @@ -180,26 +182,28 @@ exports.publicClassWithWithPublicTypeParameters = publicClassWithWithPublicTypeP var privateClassWithWithPrivateTypeParameters = /** @class */ (function () { function privateClassWithWithPrivateTypeParameters() { } + var privateClassWithWithPrivateTypeParameters_prototype = privateClassWithWithPrivateTypeParameters.prototype; privateClassWithWithPrivateTypeParameters.myPublicStaticMethod = function () { }; privateClassWithWithPrivateTypeParameters.myPrivateStaticMethod = function () { }; - privateClassWithWithPrivateTypeParameters.prototype.myPublicMethod = function () { + privateClassWithWithPrivateTypeParameters_prototype.myPublicMethod = function () { }; - privateClassWithWithPrivateTypeParameters.prototype.myPrivateMethod = function () { + privateClassWithWithPrivateTypeParameters_prototype.myPrivateMethod = function () { }; return privateClassWithWithPrivateTypeParameters; }()); var privateClassWithWithPublicTypeParameters = /** @class */ (function () { function privateClassWithWithPublicTypeParameters() { } + var privateClassWithWithPublicTypeParameters_prototype = privateClassWithWithPublicTypeParameters.prototype; privateClassWithWithPublicTypeParameters.myPublicStaticMethod = function () { }; privateClassWithWithPublicTypeParameters.myPrivateStaticMethod = function () { }; - privateClassWithWithPublicTypeParameters.prototype.myPublicMethod = function () { + privateClassWithWithPublicTypeParameters_prototype.myPublicMethod = function () { }; - privateClassWithWithPublicTypeParameters.prototype.myPrivateMethod = function () { + privateClassWithWithPublicTypeParameters_prototype.myPrivateMethod = function () { }; return privateClassWithWithPublicTypeParameters; }()); @@ -217,13 +221,14 @@ function privateFunctionWithPublicTypeParameters() { var publicClassWithWithPublicTypeParametersWithoutExtends = /** @class */ (function () { function publicClassWithWithPublicTypeParametersWithoutExtends() { } + var publicClassWithWithPublicTypeParametersWithoutExtends_prototype = publicClassWithWithPublicTypeParametersWithoutExtends.prototype; publicClassWithWithPublicTypeParametersWithoutExtends.myPublicStaticMethod = function () { }; publicClassWithWithPublicTypeParametersWithoutExtends.myPrivateStaticMethod = function () { }; - publicClassWithWithPublicTypeParametersWithoutExtends.prototype.myPublicMethod = function () { + publicClassWithWithPublicTypeParametersWithoutExtends_prototype.myPublicMethod = function () { }; - publicClassWithWithPublicTypeParametersWithoutExtends.prototype.myPrivateMethod = function () { + publicClassWithWithPublicTypeParametersWithoutExtends_prototype.myPrivateMethod = function () { }; return publicClassWithWithPublicTypeParametersWithoutExtends; }()); @@ -231,13 +236,14 @@ exports.publicClassWithWithPublicTypeParametersWithoutExtends = publicClassWithW var privateClassWithWithPublicTypeParametersWithoutExtends = /** @class */ (function () { function privateClassWithWithPublicTypeParametersWithoutExtends() { } + var privateClassWithWithPublicTypeParametersWithoutExtends_prototype = privateClassWithWithPublicTypeParametersWithoutExtends.prototype; privateClassWithWithPublicTypeParametersWithoutExtends.myPublicStaticMethod = function () { }; privateClassWithWithPublicTypeParametersWithoutExtends.myPrivateStaticMethod = function () { }; - privateClassWithWithPublicTypeParametersWithoutExtends.prototype.myPublicMethod = function () { + privateClassWithWithPublicTypeParametersWithoutExtends_prototype.myPublicMethod = function () { }; - privateClassWithWithPublicTypeParametersWithoutExtends.prototype.myPrivateMethod = function () { + privateClassWithWithPublicTypeParametersWithoutExtends_prototype.myPrivateMethod = function () { }; return privateClassWithWithPublicTypeParametersWithoutExtends; }()); diff --git a/tests/baselines/reference/privacyTypeParameterOfFunctionDeclFile.js b/tests/baselines/reference/privacyTypeParameterOfFunctionDeclFile.js index 3d6ca92beccc3..3fdff242847df 100644 --- a/tests/baselines/reference/privacyTypeParameterOfFunctionDeclFile.js +++ b/tests/baselines/reference/privacyTypeParameterOfFunctionDeclFile.js @@ -456,13 +456,14 @@ exports.publicClass = publicClass; var publicClassWithWithPrivateTypeParameters = /** @class */ (function () { function publicClassWithWithPrivateTypeParameters() { } + var publicClassWithWithPrivateTypeParameters_prototype = publicClassWithWithPrivateTypeParameters.prototype; publicClassWithWithPrivateTypeParameters.myPublicStaticMethod = function () { }; publicClassWithWithPrivateTypeParameters.myPrivateStaticMethod = function () { }; - publicClassWithWithPrivateTypeParameters.prototype.myPublicMethod = function () { + publicClassWithWithPrivateTypeParameters_prototype.myPublicMethod = function () { }; - publicClassWithWithPrivateTypeParameters.prototype.myPrivateMethod = function () { + publicClassWithWithPrivateTypeParameters_prototype.myPrivateMethod = function () { }; return publicClassWithWithPrivateTypeParameters; }()); @@ -470,13 +471,14 @@ exports.publicClassWithWithPrivateTypeParameters = publicClassWithWithPrivateTyp var publicClassWithWithPublicTypeParameters = /** @class */ (function () { function publicClassWithWithPublicTypeParameters() { } + var publicClassWithWithPublicTypeParameters_prototype = publicClassWithWithPublicTypeParameters.prototype; publicClassWithWithPublicTypeParameters.myPublicStaticMethod = function () { }; publicClassWithWithPublicTypeParameters.myPrivateStaticMethod = function () { }; - publicClassWithWithPublicTypeParameters.prototype.myPublicMethod = function () { + publicClassWithWithPublicTypeParameters_prototype.myPublicMethod = function () { }; - publicClassWithWithPublicTypeParameters.prototype.myPrivateMethod = function () { + publicClassWithWithPublicTypeParameters_prototype.myPrivateMethod = function () { }; return publicClassWithWithPublicTypeParameters; }()); @@ -484,26 +486,28 @@ exports.publicClassWithWithPublicTypeParameters = publicClassWithWithPublicTypeP var privateClassWithWithPrivateTypeParameters = /** @class */ (function () { function privateClassWithWithPrivateTypeParameters() { } + var privateClassWithWithPrivateTypeParameters_prototype = privateClassWithWithPrivateTypeParameters.prototype; privateClassWithWithPrivateTypeParameters.myPublicStaticMethod = function () { }; privateClassWithWithPrivateTypeParameters.myPrivateStaticMethod = function () { }; - privateClassWithWithPrivateTypeParameters.prototype.myPublicMethod = function () { + privateClassWithWithPrivateTypeParameters_prototype.myPublicMethod = function () { }; - privateClassWithWithPrivateTypeParameters.prototype.myPrivateMethod = function () { + privateClassWithWithPrivateTypeParameters_prototype.myPrivateMethod = function () { }; return privateClassWithWithPrivateTypeParameters; }()); var privateClassWithWithPublicTypeParameters = /** @class */ (function () { function privateClassWithWithPublicTypeParameters() { } + var privateClassWithWithPublicTypeParameters_prototype = privateClassWithWithPublicTypeParameters.prototype; privateClassWithWithPublicTypeParameters.myPublicStaticMethod = function () { }; privateClassWithWithPublicTypeParameters.myPrivateStaticMethod = function () { }; - privateClassWithWithPublicTypeParameters.prototype.myPublicMethod = function () { + privateClassWithWithPublicTypeParameters_prototype.myPublicMethod = function () { }; - privateClassWithWithPublicTypeParameters.prototype.myPrivateMethod = function () { + privateClassWithWithPublicTypeParameters_prototype.myPrivateMethod = function () { }; return privateClassWithWithPublicTypeParameters; }()); @@ -520,13 +524,14 @@ function privateFunctionWithPublicTypeParameters() { var publicClassWithWithPublicTypeParametersWithoutExtends = /** @class */ (function () { function publicClassWithWithPublicTypeParametersWithoutExtends() { } + var publicClassWithWithPublicTypeParametersWithoutExtends_prototype = publicClassWithWithPublicTypeParametersWithoutExtends.prototype; publicClassWithWithPublicTypeParametersWithoutExtends.myPublicStaticMethod = function () { }; publicClassWithWithPublicTypeParametersWithoutExtends.myPrivateStaticMethod = function () { }; - publicClassWithWithPublicTypeParametersWithoutExtends.prototype.myPublicMethod = function () { + publicClassWithWithPublicTypeParametersWithoutExtends_prototype.myPublicMethod = function () { }; - publicClassWithWithPublicTypeParametersWithoutExtends.prototype.myPrivateMethod = function () { + publicClassWithWithPublicTypeParametersWithoutExtends_prototype.myPrivateMethod = function () { }; return publicClassWithWithPublicTypeParametersWithoutExtends; }()); @@ -534,13 +539,14 @@ exports.publicClassWithWithPublicTypeParametersWithoutExtends = publicClassWithW var privateClassWithWithPublicTypeParametersWithoutExtends = /** @class */ (function () { function privateClassWithWithPublicTypeParametersWithoutExtends() { } + var privateClassWithWithPublicTypeParametersWithoutExtends_prototype = privateClassWithWithPublicTypeParametersWithoutExtends.prototype; privateClassWithWithPublicTypeParametersWithoutExtends.myPublicStaticMethod = function () { }; privateClassWithWithPublicTypeParametersWithoutExtends.myPrivateStaticMethod = function () { }; - privateClassWithWithPublicTypeParametersWithoutExtends.prototype.myPublicMethod = function () { + privateClassWithWithPublicTypeParametersWithoutExtends_prototype.myPublicMethod = function () { }; - privateClassWithWithPublicTypeParametersWithoutExtends.prototype.myPrivateMethod = function () { + privateClassWithWithPublicTypeParametersWithoutExtends_prototype.myPrivateMethod = function () { }; return privateClassWithWithPublicTypeParametersWithoutExtends; }()); @@ -589,13 +595,14 @@ var publicModule; var publicClassWithWithPrivateTypeParameters = /** @class */ (function () { function publicClassWithWithPrivateTypeParameters() { } + var publicClassWithWithPrivateTypeParameters_prototype_1 = publicClassWithWithPrivateTypeParameters.prototype; publicClassWithWithPrivateTypeParameters.myPublicStaticMethod = function () { }; publicClassWithWithPrivateTypeParameters.myPrivateStaticMethod = function () { }; - publicClassWithWithPrivateTypeParameters.prototype.myPublicMethod = function () { + publicClassWithWithPrivateTypeParameters_prototype_1.myPublicMethod = function () { }; - publicClassWithWithPrivateTypeParameters.prototype.myPrivateMethod = function () { + publicClassWithWithPrivateTypeParameters_prototype_1.myPrivateMethod = function () { }; return publicClassWithWithPrivateTypeParameters; }()); @@ -603,13 +610,14 @@ var publicModule; var publicClassWithWithPublicTypeParameters = /** @class */ (function () { function publicClassWithWithPublicTypeParameters() { } + var publicClassWithWithPublicTypeParameters_prototype_1 = publicClassWithWithPublicTypeParameters.prototype; publicClassWithWithPublicTypeParameters.myPublicStaticMethod = function () { }; publicClassWithWithPublicTypeParameters.myPrivateStaticMethod = function () { }; - publicClassWithWithPublicTypeParameters.prototype.myPublicMethod = function () { + publicClassWithWithPublicTypeParameters_prototype_1.myPublicMethod = function () { }; - publicClassWithWithPublicTypeParameters.prototype.myPrivateMethod = function () { + publicClassWithWithPublicTypeParameters_prototype_1.myPrivateMethod = function () { }; return publicClassWithWithPublicTypeParameters; }()); @@ -617,26 +625,28 @@ var publicModule; var privateClassWithWithPrivateTypeParameters = /** @class */ (function () { function privateClassWithWithPrivateTypeParameters() { } + var privateClassWithWithPrivateTypeParameters_prototype_1 = privateClassWithWithPrivateTypeParameters.prototype; privateClassWithWithPrivateTypeParameters.myPublicStaticMethod = function () { }; privateClassWithWithPrivateTypeParameters.myPrivateStaticMethod = function () { }; - privateClassWithWithPrivateTypeParameters.prototype.myPublicMethod = function () { + privateClassWithWithPrivateTypeParameters_prototype_1.myPublicMethod = function () { }; - privateClassWithWithPrivateTypeParameters.prototype.myPrivateMethod = function () { + privateClassWithWithPrivateTypeParameters_prototype_1.myPrivateMethod = function () { }; return privateClassWithWithPrivateTypeParameters; }()); var privateClassWithWithPublicTypeParameters = /** @class */ (function () { function privateClassWithWithPublicTypeParameters() { } + var privateClassWithWithPublicTypeParameters_prototype_1 = privateClassWithWithPublicTypeParameters.prototype; privateClassWithWithPublicTypeParameters.myPublicStaticMethod = function () { }; privateClassWithWithPublicTypeParameters.myPrivateStaticMethod = function () { }; - privateClassWithWithPublicTypeParameters.prototype.myPublicMethod = function () { + privateClassWithWithPublicTypeParameters_prototype_1.myPublicMethod = function () { }; - privateClassWithWithPublicTypeParameters.prototype.myPrivateMethod = function () { + privateClassWithWithPublicTypeParameters_prototype_1.myPrivateMethod = function () { }; return privateClassWithWithPublicTypeParameters; }()); @@ -653,13 +663,14 @@ var publicModule; var publicClassWithWithPublicTypeParametersWithoutExtends = /** @class */ (function () { function publicClassWithWithPublicTypeParametersWithoutExtends() { } + var publicClassWithWithPublicTypeParametersWithoutExtends_prototype_1 = publicClassWithWithPublicTypeParametersWithoutExtends.prototype; publicClassWithWithPublicTypeParametersWithoutExtends.myPublicStaticMethod = function () { }; publicClassWithWithPublicTypeParametersWithoutExtends.myPrivateStaticMethod = function () { }; - publicClassWithWithPublicTypeParametersWithoutExtends.prototype.myPublicMethod = function () { + publicClassWithWithPublicTypeParametersWithoutExtends_prototype_1.myPublicMethod = function () { }; - publicClassWithWithPublicTypeParametersWithoutExtends.prototype.myPrivateMethod = function () { + publicClassWithWithPublicTypeParametersWithoutExtends_prototype_1.myPrivateMethod = function () { }; return publicClassWithWithPublicTypeParametersWithoutExtends; }()); @@ -667,13 +678,14 @@ var publicModule; var privateClassWithWithPublicTypeParametersWithoutExtends = /** @class */ (function () { function privateClassWithWithPublicTypeParametersWithoutExtends() { } + var privateClassWithWithPublicTypeParametersWithoutExtends_prototype_1 = privateClassWithWithPublicTypeParametersWithoutExtends.prototype; privateClassWithWithPublicTypeParametersWithoutExtends.myPublicStaticMethod = function () { }; privateClassWithWithPublicTypeParametersWithoutExtends.myPrivateStaticMethod = function () { }; - privateClassWithWithPublicTypeParametersWithoutExtends.prototype.myPublicMethod = function () { + privateClassWithWithPublicTypeParametersWithoutExtends_prototype_1.myPublicMethod = function () { }; - privateClassWithWithPublicTypeParametersWithoutExtends.prototype.myPrivateMethod = function () { + privateClassWithWithPublicTypeParametersWithoutExtends_prototype_1.myPrivateMethod = function () { }; return privateClassWithWithPublicTypeParametersWithoutExtends; }()); @@ -723,13 +735,14 @@ var privateModule; var publicClassWithWithPrivateTypeParameters = /** @class */ (function () { function publicClassWithWithPrivateTypeParameters() { } + var publicClassWithWithPrivateTypeParameters_prototype_2 = publicClassWithWithPrivateTypeParameters.prototype; publicClassWithWithPrivateTypeParameters.myPublicStaticMethod = function () { }; publicClassWithWithPrivateTypeParameters.myPrivateStaticMethod = function () { }; - publicClassWithWithPrivateTypeParameters.prototype.myPublicMethod = function () { + publicClassWithWithPrivateTypeParameters_prototype_2.myPublicMethod = function () { }; - publicClassWithWithPrivateTypeParameters.prototype.myPrivateMethod = function () { + publicClassWithWithPrivateTypeParameters_prototype_2.myPrivateMethod = function () { }; return publicClassWithWithPrivateTypeParameters; }()); @@ -737,13 +750,14 @@ var privateModule; var publicClassWithWithPublicTypeParameters = /** @class */ (function () { function publicClassWithWithPublicTypeParameters() { } + var publicClassWithWithPublicTypeParameters_prototype_2 = publicClassWithWithPublicTypeParameters.prototype; publicClassWithWithPublicTypeParameters.myPublicStaticMethod = function () { }; publicClassWithWithPublicTypeParameters.myPrivateStaticMethod = function () { }; - publicClassWithWithPublicTypeParameters.prototype.myPublicMethod = function () { + publicClassWithWithPublicTypeParameters_prototype_2.myPublicMethod = function () { }; - publicClassWithWithPublicTypeParameters.prototype.myPrivateMethod = function () { + publicClassWithWithPublicTypeParameters_prototype_2.myPrivateMethod = function () { }; return publicClassWithWithPublicTypeParameters; }()); @@ -751,26 +765,28 @@ var privateModule; var privateClassWithWithPrivateTypeParameters = /** @class */ (function () { function privateClassWithWithPrivateTypeParameters() { } + var privateClassWithWithPrivateTypeParameters_prototype_2 = privateClassWithWithPrivateTypeParameters.prototype; privateClassWithWithPrivateTypeParameters.myPublicStaticMethod = function () { }; privateClassWithWithPrivateTypeParameters.myPrivateStaticMethod = function () { }; - privateClassWithWithPrivateTypeParameters.prototype.myPublicMethod = function () { + privateClassWithWithPrivateTypeParameters_prototype_2.myPublicMethod = function () { }; - privateClassWithWithPrivateTypeParameters.prototype.myPrivateMethod = function () { + privateClassWithWithPrivateTypeParameters_prototype_2.myPrivateMethod = function () { }; return privateClassWithWithPrivateTypeParameters; }()); var privateClassWithWithPublicTypeParameters = /** @class */ (function () { function privateClassWithWithPublicTypeParameters() { } + var privateClassWithWithPublicTypeParameters_prototype_2 = privateClassWithWithPublicTypeParameters.prototype; privateClassWithWithPublicTypeParameters.myPublicStaticMethod = function () { }; privateClassWithWithPublicTypeParameters.myPrivateStaticMethod = function () { }; - privateClassWithWithPublicTypeParameters.prototype.myPublicMethod = function () { + privateClassWithWithPublicTypeParameters_prototype_2.myPublicMethod = function () { }; - privateClassWithWithPublicTypeParameters.prototype.myPrivateMethod = function () { + privateClassWithWithPublicTypeParameters_prototype_2.myPrivateMethod = function () { }; return privateClassWithWithPublicTypeParameters; }()); @@ -787,13 +803,14 @@ var privateModule; var publicClassWithWithPublicTypeParametersWithoutExtends = /** @class */ (function () { function publicClassWithWithPublicTypeParametersWithoutExtends() { } + var publicClassWithWithPublicTypeParametersWithoutExtends_prototype_2 = publicClassWithWithPublicTypeParametersWithoutExtends.prototype; publicClassWithWithPublicTypeParametersWithoutExtends.myPublicStaticMethod = function () { }; publicClassWithWithPublicTypeParametersWithoutExtends.myPrivateStaticMethod = function () { }; - publicClassWithWithPublicTypeParametersWithoutExtends.prototype.myPublicMethod = function () { + publicClassWithWithPublicTypeParametersWithoutExtends_prototype_2.myPublicMethod = function () { }; - publicClassWithWithPublicTypeParametersWithoutExtends.prototype.myPrivateMethod = function () { + publicClassWithWithPublicTypeParametersWithoutExtends_prototype_2.myPrivateMethod = function () { }; return publicClassWithWithPublicTypeParametersWithoutExtends; }()); @@ -801,13 +818,14 @@ var privateModule; var privateClassWithWithPublicTypeParametersWithoutExtends = /** @class */ (function () { function privateClassWithWithPublicTypeParametersWithoutExtends() { } + var privateClassWithWithPublicTypeParametersWithoutExtends_prototype_2 = privateClassWithWithPublicTypeParametersWithoutExtends.prototype; privateClassWithWithPublicTypeParametersWithoutExtends.myPublicStaticMethod = function () { }; privateClassWithWithPublicTypeParametersWithoutExtends.myPrivateStaticMethod = function () { }; - privateClassWithWithPublicTypeParametersWithoutExtends.prototype.myPublicMethod = function () { + privateClassWithWithPublicTypeParametersWithoutExtends_prototype_2.myPublicMethod = function () { }; - privateClassWithWithPublicTypeParametersWithoutExtends.prototype.myPrivateMethod = function () { + privateClassWithWithPublicTypeParametersWithoutExtends_prototype_2.myPrivateMethod = function () { }; return privateClassWithWithPublicTypeParametersWithoutExtends; }()); diff --git a/tests/baselines/reference/privateClassPropertyAccessibleWithinClass.js b/tests/baselines/reference/privateClassPropertyAccessibleWithinClass.js index fcbc18ae1453d..50c1494607b2d 100644 --- a/tests/baselines/reference/privateClassPropertyAccessibleWithinClass.js +++ b/tests/baselines/reference/privateClassPropertyAccessibleWithinClass.js @@ -36,13 +36,14 @@ class C2 { var C = /** @class */ (function () { function C() { } - Object.defineProperty(C.prototype, "y", { + var C_prototype = C.prototype; + Object.defineProperty(C_prototype, "y", { get: function () { return this.x; }, set: function (x) { this.y = this.x; }, enumerable: false, configurable: true }); - C.prototype.foo = function () { return this.foo; }; + C_prototype.foo = function () { return this.foo; }; Object.defineProperty(C, "y", { get: function () { return this.x; }, set: function (x) { this.y = this.x; }, @@ -57,7 +58,8 @@ var C = /** @class */ (function () { var C2 = /** @class */ (function () { function C2() { } - Object.defineProperty(C2.prototype, "y", { + var C2_prototype = C2.prototype; + Object.defineProperty(C2_prototype, "y", { get: function () { var _this = this; (function () { return _this.x; }); @@ -70,7 +72,7 @@ var C2 = /** @class */ (function () { enumerable: false, configurable: true }); - C2.prototype.foo = function () { + C2_prototype.foo = function () { var _this = this; (function () { return _this.foo; }); }; diff --git a/tests/baselines/reference/privateClassPropertyAccessibleWithinNestedClass.js b/tests/baselines/reference/privateClassPropertyAccessibleWithinNestedClass.js index 52ed810cca5f1..12f86b63ffbca 100644 --- a/tests/baselines/reference/privateClassPropertyAccessibleWithinNestedClass.js +++ b/tests/baselines/reference/privateClassPropertyAccessibleWithinNestedClass.js @@ -42,13 +42,14 @@ class C { var C = /** @class */ (function () { function C() { } - Object.defineProperty(C.prototype, "y", { + var C_prototype = C.prototype; + Object.defineProperty(C_prototype, "y", { get: function () { return this.x; }, set: function (x) { this.y = this.x; }, enumerable: false, configurable: true }); - C.prototype.foo = function () { return this.foo; }; + C_prototype.foo = function () { return this.foo; }; Object.defineProperty(C, "y", { get: function () { return this.x; }, set: function (x) { this.y = this.x; }, @@ -57,7 +58,7 @@ var C = /** @class */ (function () { }); C.foo = function () { return this.foo; }; C.bar = function () { this.foo(); }; - C.prototype.bar = function () { + C_prototype.bar = function () { var C2 = /** @class */ (function () { function C2() { } diff --git a/tests/baselines/reference/privateInstanceVisibility.js b/tests/baselines/reference/privateInstanceVisibility.js index 51291447d3375..c9bc9d0db68e9 100644 --- a/tests/baselines/reference/privateInstanceVisibility.js +++ b/tests/baselines/reference/privateInstanceVisibility.js @@ -57,8 +57,9 @@ var Test; var C = /** @class */ (function () { function C() { } - C.prototype.getX = function () { return this.x; }; - C.prototype.clone = function (other) { + var C_prototype = C.prototype; + C_prototype.getX = function () { return this.x; }; + C_prototype.clone = function (other) { this.x = other.x; }; return C; diff --git a/tests/baselines/reference/privateProtectedMembersAreNotAccessibleDestructuring.js b/tests/baselines/reference/privateProtectedMembersAreNotAccessibleDestructuring.js index fc118912dcc5b..86ca9345971ee 100644 --- a/tests/baselines/reference/privateProtectedMembersAreNotAccessibleDestructuring.js +++ b/tests/baselines/reference/privateProtectedMembersAreNotAccessibleDestructuring.js @@ -43,8 +43,9 @@ var __extends = (this && this.__extends) || (function () { var K = /** @class */ (function () { function K() { } - K.prototype.privateMethod = function () { }; - K.prototype.m = function () { + var K_prototype = K.prototype; + K_prototype.privateMethod = function () { }; + K_prototype.m = function () { var _a = this, a = _a.priv, b = _a.prot; // ok var _b = new K(), priv = _b.priv, prot = _b.prot; // ok }; diff --git a/tests/baselines/reference/privateVisibility.js b/tests/baselines/reference/privateVisibility.js index 76723ef244a71..07133043e7afc 100644 --- a/tests/baselines/reference/privateVisibility.js +++ b/tests/baselines/reference/privateVisibility.js @@ -32,8 +32,9 @@ var Foo = /** @class */ (function () { this.pubProp = 0; this.privProp = 0; } - Foo.prototype.pubMeth = function () { this.privMeth(); }; - Foo.prototype.privMeth = function () { }; + var Foo_prototype = Foo.prototype; + Foo_prototype.pubMeth = function () { this.privMeth(); }; + Foo_prototype.privMeth = function () { }; return Foo; }()); var f = new Foo(); diff --git a/tests/baselines/reference/project/visibilityOfTypeUsedAcrossModules/amd/fs.js b/tests/baselines/reference/project/visibilityOfTypeUsedAcrossModules/amd/fs.js index a1d809d77b8b1..a56c3dbc087bb 100644 --- a/tests/baselines/reference/project/visibilityOfTypeUsedAcrossModules/amd/fs.js +++ b/tests/baselines/reference/project/visibilityOfTypeUsedAcrossModules/amd/fs.js @@ -5,13 +5,14 @@ define(["require", "exports"], function (require, exports) { var RM = /** @class */ (function () { function RM() { } - RM.prototype.getName = function () { + var RM_prototype = RM.prototype; + RM_prototype.getName = function () { return 'rm'; }; - RM.prototype.getDescription = function () { + RM_prototype.getDescription = function () { return "\t\t\tDelete file"; }; - RM.prototype.run = function (configuration) { + RM_prototype.run = function (configuration) { var absoluteWorkspacePath = configuration.workspace.toAbsolutePath(configuration.server); }; return RM; diff --git a/tests/baselines/reference/project/visibilityOfTypeUsedAcrossModules/node/fs.js b/tests/baselines/reference/project/visibilityOfTypeUsedAcrossModules/node/fs.js index 69fc2081f86a9..f63845bc6f051 100644 --- a/tests/baselines/reference/project/visibilityOfTypeUsedAcrossModules/node/fs.js +++ b/tests/baselines/reference/project/visibilityOfTypeUsedAcrossModules/node/fs.js @@ -4,13 +4,14 @@ exports.RM = void 0; var RM = /** @class */ (function () { function RM() { } - RM.prototype.getName = function () { + var RM_prototype = RM.prototype; + RM_prototype.getName = function () { return 'rm'; }; - RM.prototype.getDescription = function () { + RM_prototype.getDescription = function () { return "\t\t\tDelete file"; }; - RM.prototype.run = function (configuration) { + RM_prototype.run = function (configuration) { var absoluteWorkspacePath = configuration.workspace.toAbsolutePath(configuration.server); }; return RM; diff --git a/tests/baselines/reference/propertyAccessOnTypeParameterWithConstraints2.js b/tests/baselines/reference/propertyAccessOnTypeParameterWithConstraints2.js index 6d593920208fd..77ebdfbba7973 100644 --- a/tests/baselines/reference/propertyAccessOnTypeParameterWithConstraints2.js +++ b/tests/baselines/reference/propertyAccessOnTypeParameterWithConstraints2.js @@ -117,12 +117,13 @@ var B = /** @class */ (function (_super) { var C = /** @class */ (function () { function C() { } - C.prototype.f = function () { + var C_prototype = C.prototype; + C_prototype.f = function () { var x; var a = x['foo'](); // should be string return a + x.foo(); }; - C.prototype.g = function (x) { + C_prototype.g = function (x) { var a = x['foo'](); // should be string return a + x.foo(); }; diff --git a/tests/baselines/reference/propertyAccessOnTypeParameterWithConstraints3.js b/tests/baselines/reference/propertyAccessOnTypeParameterWithConstraints3.js index 9725218361048..8c400563aae22 100644 --- a/tests/baselines/reference/propertyAccessOnTypeParameterWithConstraints3.js +++ b/tests/baselines/reference/propertyAccessOnTypeParameterWithConstraints3.js @@ -92,13 +92,14 @@ var B = /** @class */ (function (_super) { var C = /** @class */ (function () { function C() { } - C.prototype.f = function () { + var C_prototype = C.prototype; + C_prototype.f = function () { var x; // BUG 823818 var a = x['foo'](); // should be string return a + x.foo(); }; - C.prototype.g = function (x) { + C_prototype.g = function (x) { // BUG 823818 var a = x['foo'](); // should be string return a + x.foo(); diff --git a/tests/baselines/reference/propertyOrdering.js b/tests/baselines/reference/propertyOrdering.js index 469a32dd9e45c..ed6d99122ee3a 100644 --- a/tests/baselines/reference/propertyOrdering.js +++ b/tests/baselines/reference/propertyOrdering.js @@ -28,10 +28,11 @@ var Foo = /** @class */ (function () { function Foo(store) { this._store = store; // no repro if this is first line in class body } - Foo.prototype.foo = function () { + var Foo_prototype = Foo.prototype; + Foo_prototype.foo = function () { return this._store.length; // shouldn't be an error }; - Foo.prototype.bar = function () { return this.store; }; // should be an error + Foo_prototype.bar = function () { return this.store; }; // should be an error return Foo; }()); var Bar = /** @class */ (function () { diff --git a/tests/baselines/reference/protectedClassPropertyAccessibleWithinClass.js b/tests/baselines/reference/protectedClassPropertyAccessibleWithinClass.js index 580e7f74997f9..515a7438eb4a3 100644 --- a/tests/baselines/reference/protectedClassPropertyAccessibleWithinClass.js +++ b/tests/baselines/reference/protectedClassPropertyAccessibleWithinClass.js @@ -36,13 +36,14 @@ class C2 { var C = /** @class */ (function () { function C() { } - Object.defineProperty(C.prototype, "y", { + var C_prototype = C.prototype; + Object.defineProperty(C_prototype, "y", { get: function () { return this.x; }, set: function (x) { this.y = this.x; }, enumerable: false, configurable: true }); - C.prototype.foo = function () { return this.foo; }; + C_prototype.foo = function () { return this.foo; }; Object.defineProperty(C, "y", { get: function () { return this.x; }, set: function (x) { this.y = this.x; }, @@ -57,7 +58,8 @@ var C = /** @class */ (function () { var C2 = /** @class */ (function () { function C2() { } - Object.defineProperty(C2.prototype, "y", { + var C2_prototype = C2.prototype; + Object.defineProperty(C2_prototype, "y", { get: function () { var _this = this; (function () { return _this.x; }); @@ -70,7 +72,7 @@ var C2 = /** @class */ (function () { enumerable: false, configurable: true }); - C2.prototype.foo = function () { + C2_prototype.foo = function () { var _this = this; (function () { return _this.foo; }); }; diff --git a/tests/baselines/reference/protectedClassPropertyAccessibleWithinNestedClass.js b/tests/baselines/reference/protectedClassPropertyAccessibleWithinNestedClass.js index 8fac2fa795c65..b8d39f63b8e6a 100644 --- a/tests/baselines/reference/protectedClassPropertyAccessibleWithinNestedClass.js +++ b/tests/baselines/reference/protectedClassPropertyAccessibleWithinNestedClass.js @@ -42,13 +42,14 @@ class C { var C = /** @class */ (function () { function C() { } - Object.defineProperty(C.prototype, "y", { + var C_prototype = C.prototype; + Object.defineProperty(C_prototype, "y", { get: function () { return this.x; }, set: function (x) { this.y = this.x; }, enumerable: false, configurable: true }); - C.prototype.foo = function () { return this.foo; }; + C_prototype.foo = function () { return this.foo; }; Object.defineProperty(C, "y", { get: function () { return this.x; }, set: function (x) { this.y = this.x; }, @@ -57,7 +58,7 @@ var C = /** @class */ (function () { }); C.foo = function () { return this.foo; }; C.bar = function () { this.foo(); }; - C.prototype.bar = function () { + C_prototype.bar = function () { var C2 = /** @class */ (function () { function C2() { } diff --git a/tests/baselines/reference/protectedClassPropertyAccessibleWithinNestedSubclass.js b/tests/baselines/reference/protectedClassPropertyAccessibleWithinNestedSubclass.js index 03baad61001d7..ea002b4b179e9 100644 --- a/tests/baselines/reference/protectedClassPropertyAccessibleWithinNestedSubclass.js +++ b/tests/baselines/reference/protectedClassPropertyAccessibleWithinNestedSubclass.js @@ -63,13 +63,14 @@ var C = /** @class */ (function (_super) { function C() { return _super !== null && _super.apply(this, arguments) || this; } - Object.defineProperty(C.prototype, "y", { + var C_prototype = C.prototype; + Object.defineProperty(C_prototype, "y", { get: function () { return this.x; }, set: function (x) { this.y = this.x; }, enumerable: false, configurable: true }); - C.prototype.foo = function () { return this.x; }; + C_prototype.foo = function () { return this.x; }; Object.defineProperty(C, "y", { get: function () { return this.x; }, set: function (x) { this.y = this.x; }, @@ -78,7 +79,7 @@ var C = /** @class */ (function (_super) { }); C.foo = function () { return this.x; }; C.bar = function () { this.foo(); }; - C.prototype.bar = function () { + C_prototype.bar = function () { var D = /** @class */ (function () { function D() { } diff --git a/tests/baselines/reference/protectedClassPropertyAccessibleWithinSubclass.js b/tests/baselines/reference/protectedClassPropertyAccessibleWithinSubclass.js index d7e00677654eb..8d041a13edfbd 100644 --- a/tests/baselines/reference/protectedClassPropertyAccessibleWithinSubclass.js +++ b/tests/baselines/reference/protectedClassPropertyAccessibleWithinSubclass.js @@ -46,14 +46,15 @@ var C = /** @class */ (function (_super) { function C() { return _super !== null && _super.apply(this, arguments) || this; } - Object.defineProperty(C.prototype, "y", { + var C_prototype = C.prototype; + Object.defineProperty(C_prototype, "y", { get: function () { return this.x; }, set: function (x) { this.y = this.x; }, enumerable: false, configurable: true }); - C.prototype.foo = function () { return this.x; }; - C.prototype.bar = function () { return this.foo(); }; + C_prototype.foo = function () { return this.x; }; + C_prototype.bar = function () { return this.foo(); }; Object.defineProperty(C, "y", { get: function () { return this.x; }, set: function (x) { this.y = this.x; }, diff --git a/tests/baselines/reference/protoOverlapVariables.js b/tests/baselines/reference/protoOverlapVariables.js new file mode 100644 index 0000000000000..41ce63f243518 --- /dev/null +++ b/tests/baselines/reference/protoOverlapVariables.js @@ -0,0 +1,64 @@ +//// [protoOverlapVariables.ts] +let proto = "gotcha!"; + +class DeclarationWithOne { + member() { + return this; + } +} + +class DeclarationWithTwo { + memberOne() { + return this; + } + + memberTwo() { + return this; + } +} + +const Expression = class { + memberOne() { + return this; + } + + memberTwo() { + return this; + } +}; + + +//// [protoOverlapVariables.js] +var proto = "gotcha!"; +var DeclarationWithOne = /** @class */ (function () { + function DeclarationWithOne() { + } + DeclarationWithOne.prototype.member = function () { + return this; + }; + return DeclarationWithOne; +}()); +var DeclarationWithTwo = /** @class */ (function () { + function DeclarationWithTwo() { + } + var DeclarationWithTwo_prototype = DeclarationWithTwo.prototype; + DeclarationWithTwo_prototype.memberOne = function () { + return this; + }; + DeclarationWithTwo_prototype.memberTwo = function () { + return this; + }; + return DeclarationWithTwo; +}()); +var Expression = /** @class */ (function () { + function Expression() { + } + var proto_1 = Expression.prototype; + proto_1.memberOne = function () { + return this; + }; + proto_1.memberTwo = function () { + return this; + }; + return Expression; +}()); diff --git a/tests/baselines/reference/protoOverlapVariables.symbols b/tests/baselines/reference/protoOverlapVariables.symbols new file mode 100644 index 0000000000000..94c01a10a7a9c --- /dev/null +++ b/tests/baselines/reference/protoOverlapVariables.symbols @@ -0,0 +1,51 @@ +=== tests/cases/conformance/classes/protoOverlapVariables.ts === +let proto = "gotcha!"; +>proto : Symbol(proto, Decl(protoOverlapVariables.ts, 0, 3)) + +class DeclarationWithOne { +>DeclarationWithOne : Symbol(DeclarationWithOne, Decl(protoOverlapVariables.ts, 0, 22)) + + member() { +>member : Symbol(DeclarationWithOne.member, Decl(protoOverlapVariables.ts, 2, 26)) + + return this; +>this : Symbol(DeclarationWithOne, Decl(protoOverlapVariables.ts, 0, 22)) + } +} + +class DeclarationWithTwo { +>DeclarationWithTwo : Symbol(DeclarationWithTwo, Decl(protoOverlapVariables.ts, 6, 1)) + + memberOne() { +>memberOne : Symbol(DeclarationWithTwo.memberOne, Decl(protoOverlapVariables.ts, 8, 26)) + + return this; +>this : Symbol(DeclarationWithTwo, Decl(protoOverlapVariables.ts, 6, 1)) + } + + memberTwo() { +>memberTwo : Symbol(DeclarationWithTwo.memberTwo, Decl(protoOverlapVariables.ts, 11, 5)) + + return this; +>this : Symbol(DeclarationWithTwo, Decl(protoOverlapVariables.ts, 6, 1)) + } +} + +const Expression = class { +>Expression : Symbol(Expression, Decl(protoOverlapVariables.ts, 18, 5)) + + memberOne() { +>memberOne : Symbol(Expression.memberOne, Decl(protoOverlapVariables.ts, 18, 26)) + + return this; +>this : Symbol(Expression, Decl(protoOverlapVariables.ts, 18, 18)) + } + + memberTwo() { +>memberTwo : Symbol(Expression.memberTwo, Decl(protoOverlapVariables.ts, 21, 5)) + + return this; +>this : Symbol(Expression, Decl(protoOverlapVariables.ts, 18, 18)) + } +}; + diff --git a/tests/baselines/reference/protoOverlapVariables.types b/tests/baselines/reference/protoOverlapVariables.types new file mode 100644 index 0000000000000..18361f3256bec --- /dev/null +++ b/tests/baselines/reference/protoOverlapVariables.types @@ -0,0 +1,53 @@ +=== tests/cases/conformance/classes/protoOverlapVariables.ts === +let proto = "gotcha!"; +>proto : string +>"gotcha!" : "gotcha!" + +class DeclarationWithOne { +>DeclarationWithOne : DeclarationWithOne + + member() { +>member : () => this + + return this; +>this : this + } +} + +class DeclarationWithTwo { +>DeclarationWithTwo : DeclarationWithTwo + + memberOne() { +>memberOne : () => this + + return this; +>this : this + } + + memberTwo() { +>memberTwo : () => this + + return this; +>this : this + } +} + +const Expression = class { +>Expression : typeof Expression +>class { memberOne() { return this; } memberTwo() { return this; }} : typeof Expression + + memberOne() { +>memberOne : () => this + + return this; +>this : this + } + + memberTwo() { +>memberTwo : () => this + + return this; +>this : this + } +}; + diff --git a/tests/baselines/reference/readonlyInDeclarationFile.js b/tests/baselines/reference/readonlyInDeclarationFile.js index e401d300aee2a..13957f4e761a5 100644 --- a/tests/baselines/reference/readonlyInDeclarationFile.js +++ b/tests/baselines/reference/readonlyInDeclarationFile.js @@ -57,34 +57,35 @@ function g() { var C = /** @class */ (function () { function C() { } - Object.defineProperty(C.prototype, "b1", { + var C_prototype = C.prototype; + Object.defineProperty(C_prototype, "b1", { get: function () { return 1; }, enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, "b2", { + Object.defineProperty(C_prototype, "b2", { get: function () { return 1; }, enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, "b3", { + Object.defineProperty(C_prototype, "b3", { get: function () { return 1; }, enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, "c1", { + Object.defineProperty(C_prototype, "c1", { get: function () { return 1; }, set: function (value) { }, enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, "c2", { + Object.defineProperty(C_prototype, "c2", { get: function () { return 1; }, set: function (value) { }, enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, "c3", { + Object.defineProperty(C_prototype, "c3", { get: function () { return 1; }, set: function (value) { }, enumerable: false, diff --git a/tests/baselines/reference/readonlyInNonPropertyParameters.js b/tests/baselines/reference/readonlyInNonPropertyParameters.js index fb45e3d4fa20e..84538af9534af 100644 --- a/tests/baselines/reference/readonlyInNonPropertyParameters.js +++ b/tests/baselines/reference/readonlyInNonPropertyParameters.js @@ -13,8 +13,9 @@ class X { var X = /** @class */ (function () { function X() { } - X.prototype.method = function (x) { }; - Object.defineProperty(X.prototype, "x", { + var X_prototype = X.prototype; + X_prototype.method = function (x) { }; + Object.defineProperty(X_prototype, "x", { set: function (value) { }, enumerable: false, configurable: true diff --git a/tests/baselines/reference/readonlyMembers.js b/tests/baselines/reference/readonlyMembers.js index ceb0f3b18e236..556043fce0d9a 100644 --- a/tests/baselines/reference/readonlyMembers.js +++ b/tests/baselines/reference/readonlyMembers.js @@ -82,12 +82,13 @@ var C = /** @class */ (function () { _this.c = 1; // Error }; } - Object.defineProperty(C.prototype, "c", { + var C_prototype = C.prototype; + Object.defineProperty(C_prototype, "c", { get: function () { return 1; }, enumerable: false, configurable: true }); - C.prototype.foo = function () { + C_prototype.foo = function () { this.a = 1; // Error this.b = 1; // Error this.c = 1; // Error diff --git a/tests/baselines/reference/recursiveClassReferenceTest.js b/tests/baselines/reference/recursiveClassReferenceTest.js index e320331ffcf57..53db8d44254d2 100644 --- a/tests/baselines/reference/recursiveClassReferenceTest.js +++ b/tests/baselines/reference/recursiveClassReferenceTest.js @@ -131,8 +131,9 @@ var Sample; var StartFindAction = /** @class */ (function () { function StartFindAction() { } - StartFindAction.prototype.getId = function () { return "yo"; }; - StartFindAction.prototype.run = function (Thing) { + var StartFindAction_prototype = StartFindAction.prototype; + StartFindAction_prototype.getId = function () { return "yo"; }; + StartFindAction_prototype.run = function (Thing) { return true; }; return StartFindAction; @@ -154,13 +155,14 @@ var Sample; // scenario 1 codeThing.addWidget("addWidget", this); } - FindWidget.prototype.gar = function (runner) { if (true) { + var FindWidget_prototype = FindWidget.prototype; + FindWidget_prototype.gar = function (runner) { if (true) { return runner(this); } }; - FindWidget.prototype.getDomNode = function () { + FindWidget_prototype.getDomNode = function () { return domNode; }; - FindWidget.prototype.destroy = function () { + FindWidget_prototype.destroy = function () { }; return FindWidget; }()); @@ -185,13 +187,14 @@ var AbstractMode = /** @class */ (function () { function State(mode) { this.mode = mode; } - State.prototype.clone = function () { + var State_prototype = State.prototype; + State_prototype.clone = function () { return this; }; - State.prototype.equals = function (other) { + State_prototype.equals = function (other) { return this === other; }; - State.prototype.getMode = function () { return mode; }; + State_prototype.getMode = function () { return mode; }; return State; }()); PlainText.State = State; diff --git a/tests/baselines/reference/recursiveClassReferenceTest.js.map b/tests/baselines/reference/recursiveClassReferenceTest.js.map index 6a836fa742900..af1f3831159bd 100644 --- a/tests/baselines/reference/recursiveClassReferenceTest.js.map +++ b/tests/baselines/reference/recursiveClassReferenceTest.js.map @@ -1,3 +1,3 @@ //// [recursiveClassReferenceTest.js.map] -{"version":3,"file":"recursiveClassReferenceTest.js","sourceRoot":"","sources":["recursiveClassReferenceTest.ts"],"names":[],"mappings":"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"} -//// https://sokra.github.io/source-map-visualization#base64,Ly8gU2NlbmFyaW8gMTogVGVzdCByZXF1cnNpdmUgZnVuY3Rpb24gY2FsbCB3aXRoICJ0aGlzIiBwYXJhbWV0ZXINCi8vIFNjZW5hcmlvIDI6IFRlc3QgcmVjdXJzaXZlIGZ1bmN0aW9uIGNhbGwgd2l0aCBjYXN0IGFuZCAidGhpcyIgcGFyYW1ldGVyDQp2YXIgX19leHRlbmRzID0gKHRoaXMgJiYgdGhpcy5fX2V4dGVuZHMpIHx8IChmdW5jdGlvbiAoKSB7DQogICAgdmFyIGV4dGVuZFN0YXRpY3MgPSBmdW5jdGlvbiAoZCwgYikgew0KICAgICAgICBleHRlbmRTdGF0aWNzID0gT2JqZWN0LnNldFByb3RvdHlwZU9mIHx8DQogICAgICAgICAgICAoeyBfX3Byb3RvX186IFtdIH0gaW5zdGFuY2VvZiBBcnJheSAmJiBmdW5jdGlvbiAoZCwgYikgeyBkLl9fcHJvdG9fXyA9IGI7IH0pIHx8DQogICAgICAgICAgICBmdW5jdGlvbiAoZCwgYikgeyBmb3IgKHZhciBwIGluIGIpIGlmIChPYmplY3QucHJvdG90eXBlLmhhc093blByb3BlcnR5LmNhbGwoYiwgcCkpIGRbcF0gPSBiW3BdOyB9Ow0KICAgICAgICByZXR1cm4gZXh0ZW5kU3RhdGljcyhkLCBiKTsNCiAgICB9Ow0KICAgIHJldHVybiBmdW5jdGlvbiAoZCwgYikgew0KICAgICAgICBpZiAodHlwZW9mIGIgIT09ICJmdW5jdGlvbiIgJiYgYiAhPT0gbnVsbCkNCiAgICAgICAgICAgIHRocm93IG5ldyBUeXBlRXJyb3IoIkNsYXNzIGV4dGVuZHMgdmFsdWUgIiArIFN0cmluZyhiKSArICIgaXMgbm90IGEgY29uc3RydWN0b3Igb3IgbnVsbCIpOw0KICAgICAgICBleHRlbmRTdGF0aWNzKGQsIGIpOw0KICAgICAgICBmdW5jdGlvbiBfXygpIHsgdGhpcy5jb25zdHJ1Y3RvciA9IGQ7IH0NCiAgICAgICAgZC5wcm90b3R5cGUgPSBiID09PSBudWxsID8gT2JqZWN0LmNyZWF0ZShiKSA6IChfXy5wcm90b3R5cGUgPSBiLnByb3RvdHlwZSwgbmV3IF9fKCkpOw0KICAgIH07DQp9KSgpOw0KdmFyIFNhbXBsZTsNCihmdW5jdGlvbiAoU2FtcGxlKSB7DQogICAgdmFyIEFjdGlvbnM7DQogICAgKGZ1bmN0aW9uIChBY3Rpb25zKSB7DQogICAgICAgIHZhciBUaGluZzsNCiAgICAgICAgKGZ1bmN0aW9uIChUaGluZ18xKSB7DQogICAgICAgICAgICB2YXIgRmluZDsNCiAgICAgICAgICAgIChmdW5jdGlvbiAoRmluZCkgew0KICAgICAgICAgICAgICAgIHZhciBTdGFydEZpbmRBY3Rpb24gPSAvKiogQGNsYXNzICovIChmdW5jdGlvbiAoKSB7DQogICAgICAgICAgICAgICAgICAgIGZ1bmN0aW9uIFN0YXJ0RmluZEFjdGlvbigpIHsNCiAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICBTdGFydEZpbmRBY3Rpb24ucHJvdG90eXBlLmdldElkID0gZnVuY3Rpb24gKCkgeyByZXR1cm4gInlvIjsgfTsNCiAgICAgICAgICAgICAgICAgICAgU3RhcnRGaW5kQWN0aW9uLnByb3RvdHlwZS5ydW4gPSBmdW5jdGlvbiAoVGhpbmcpIHsNCiAgICAgICAgICAgICAgICAgICAgICAgIHJldHVybiB0cnVlOw0KICAgICAgICAgICAgICAgICAgICB9Ow0KICAgICAgICAgICAgICAgICAgICByZXR1cm4gU3RhcnRGaW5kQWN0aW9uOw0KICAgICAgICAgICAgICAgIH0oKSk7DQogICAgICAgICAgICAgICAgRmluZC5TdGFydEZpbmRBY3Rpb24gPSBTdGFydEZpbmRBY3Rpb247DQogICAgICAgICAgICB9KShGaW5kID0gVGhpbmdfMS5GaW5kIHx8IChUaGluZ18xLkZpbmQgPSB7fSkpOw0KICAgICAgICB9KShUaGluZyA9IEFjdGlvbnMuVGhpbmcgfHwgKEFjdGlvbnMuVGhpbmcgPSB7fSkpOw0KICAgIH0pKEFjdGlvbnMgPSBTYW1wbGUuQWN0aW9ucyB8fCAoU2FtcGxlLkFjdGlvbnMgPSB7fSkpOw0KfSkoU2FtcGxlIHx8IChTYW1wbGUgPSB7fSkpOw0KKGZ1bmN0aW9uIChTYW1wbGUpIHsNCiAgICB2YXIgVGhpbmc7DQogICAgKGZ1bmN0aW9uIChUaGluZykgew0KICAgICAgICB2YXIgV2lkZ2V0czsNCiAgICAgICAgKGZ1bmN0aW9uIChXaWRnZXRzKSB7DQogICAgICAgICAgICB2YXIgRmluZFdpZGdldCA9IC8qKiBAY2xhc3MgKi8gKGZ1bmN0aW9uICgpIHsNCiAgICAgICAgICAgICAgICBmdW5jdGlvbiBGaW5kV2lkZ2V0KGNvZGVUaGluZykgew0KICAgICAgICAgICAgICAgICAgICB0aGlzLmNvZGVUaGluZyA9IGNvZGVUaGluZzsNCiAgICAgICAgICAgICAgICAgICAgdGhpcy5kb21Ob2RlID0gbnVsbDsNCiAgICAgICAgICAgICAgICAgICAgLy8gc2NlbmFyaW8gMQ0KICAgICAgICAgICAgICAgICAgICBjb2RlVGhpbmcuYWRkV2lkZ2V0KCJhZGRXaWRnZXQiLCB0aGlzKTsNCiAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgRmluZFdpZGdldC5wcm90b3R5cGUuZ2FyID0gZnVuY3Rpb24gKHJ1bm5lcikgeyBpZiAodHJ1ZSkgew0KICAgICAgICAgICAgICAgICAgICByZXR1cm4gcnVubmVyKHRoaXMpOw0KICAgICAgICAgICAgICAgIH0gfTsNCiAgICAgICAgICAgICAgICBGaW5kV2lkZ2V0LnByb3RvdHlwZS5nZXREb21Ob2RlID0gZnVuY3Rpb24gKCkgew0KICAgICAgICAgICAgICAgICAgICByZXR1cm4gZG9tTm9kZTsNCiAgICAgICAgICAgICAgICB9Ow0KICAgICAgICAgICAgICAgIEZpbmRXaWRnZXQucHJvdG90eXBlLmRlc3Ryb3kgPSBmdW5jdGlvbiAoKSB7DQogICAgICAgICAgICAgICAgfTsNCiAgICAgICAgICAgICAgICByZXR1cm4gRmluZFdpZGdldDsNCiAgICAgICAgICAgIH0oKSk7DQogICAgICAgICAgICBXaWRnZXRzLkZpbmRXaWRnZXQgPSBGaW5kV2lkZ2V0Ow0KICAgICAgICB9KShXaWRnZXRzID0gVGhpbmcuV2lkZ2V0cyB8fCAoVGhpbmcuV2lkZ2V0cyA9IHt9KSk7DQogICAgfSkoVGhpbmcgPSBTYW1wbGUuVGhpbmcgfHwgKFNhbXBsZS5UaGluZyA9IHt9KSk7DQp9KShTYW1wbGUgfHwgKFNhbXBsZSA9IHt9KSk7DQp2YXIgQWJzdHJhY3RNb2RlID0gLyoqIEBjbGFzcyAqLyAoZnVuY3Rpb24gKCkgew0KICAgIGZ1bmN0aW9uIEFic3RyYWN0TW9kZSgpIHsNCiAgICB9DQogICAgQWJzdHJhY3RNb2RlLnByb3RvdHlwZS5nZXRJbml0aWFsU3RhdGUgPSBmdW5jdGlvbiAoKSB7IHJldHVybiBudWxsOyB9Ow0KICAgIHJldHVybiBBYnN0cmFjdE1vZGU7DQp9KCkpOw0KKGZ1bmN0aW9uIChTYW1wbGUpIHsNCiAgICB2YXIgVGhpbmc7DQogICAgKGZ1bmN0aW9uIChUaGluZykgew0KICAgICAgICB2YXIgTGFuZ3VhZ2VzOw0KICAgICAgICAoZnVuY3Rpb24gKExhbmd1YWdlcykgew0KICAgICAgICAgICAgdmFyIFBsYWluVGV4dDsNCiAgICAgICAgICAgIChmdW5jdGlvbiAoUGxhaW5UZXh0KSB7DQogICAgICAgICAgICAgICAgdmFyIFN0YXRlID0gLyoqIEBjbGFzcyAqLyAoZnVuY3Rpb24gKCkgew0KICAgICAgICAgICAgICAgICAgICBmdW5jdGlvbiBTdGF0ZShtb2RlKSB7DQogICAgICAgICAgICAgICAgICAgICAgICB0aGlzLm1vZGUgPSBtb2RlOw0KICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgIFN0YXRlLnByb3RvdHlwZS5jbG9uZSA9IGZ1bmN0aW9uICgpIHsNCiAgICAgICAgICAgICAgICAgICAgICAgIHJldHVybiB0aGlzOw0KICAgICAgICAgICAgICAgICAgICB9Ow0KICAgICAgICAgICAgICAgICAgICBTdGF0ZS5wcm90b3R5cGUuZXF1YWxzID0gZnVuY3Rpb24gKG90aGVyKSB7DQogICAgICAgICAgICAgICAgICAgICAgICByZXR1cm4gdGhpcyA9PT0gb3RoZXI7DQogICAgICAgICAgICAgICAgICAgIH07DQogICAgICAgICAgICAgICAgICAgIFN0YXRlLnByb3RvdHlwZS5nZXRNb2RlID0gZnVuY3Rpb24gKCkgeyByZXR1cm4gbW9kZTsgfTsNCiAgICAgICAgICAgICAgICAgICAgcmV0dXJuIFN0YXRlOw0KICAgICAgICAgICAgICAgIH0oKSk7DQogICAgICAgICAgICAgICAgUGxhaW5UZXh0LlN0YXRlID0gU3RhdGU7DQogICAgICAgICAgICAgICAgdmFyIE1vZGUgPSAvKiogQGNsYXNzICovIChmdW5jdGlvbiAoX3N1cGVyKSB7DQogICAgICAgICAgICAgICAgICAgIF9fZXh0ZW5kcyhNb2RlLCBfc3VwZXIpOw0KICAgICAgICAgICAgICAgICAgICBmdW5jdGlvbiBNb2RlKCkgew0KICAgICAgICAgICAgICAgICAgICAgICAgcmV0dXJuIF9zdXBlciAhPT0gbnVsbCAmJiBfc3VwZXIuYXBwbHkodGhpcywgYXJndW1lbnRzKSB8fCB0aGlzOw0KICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgIC8vIHNjZW5hcmlvIDINCiAgICAgICAgICAgICAgICAgICAgTW9kZS5wcm90b3R5cGUuZ2V0SW5pdGlhbFN0YXRlID0gZnVuY3Rpb24gKCkgew0KICAgICAgICAgICAgICAgICAgICAgICAgcmV0dXJuIG5ldyBTdGF0ZShzZWxmKTsNCiAgICAgICAgICAgICAgICAgICAgfTsNCiAgICAgICAgICAgICAgICAgICAgcmV0dXJuIE1vZGU7DQogICAgICAgICAgICAgICAgfShBYnN0cmFjdE1vZGUpKTsNCiAgICAgICAgICAgICAgICBQbGFpblRleHQuTW9kZSA9IE1vZGU7DQogICAgICAgICAgICB9KShQbGFpblRleHQgPSBMYW5ndWFnZXMuUGxhaW5UZXh0IHx8IChMYW5ndWFnZXMuUGxhaW5UZXh0ID0ge30pKTsNCiAgICAgICAgfSkoTGFuZ3VhZ2VzID0gVGhpbmcuTGFuZ3VhZ2VzIHx8IChUaGluZy5MYW5ndWFnZXMgPSB7fSkpOw0KICAgIH0pKFRoaW5nID0gU2FtcGxlLlRoaW5nIHx8IChTYW1wbGUuVGhpbmcgPSB7fSkpOw0KfSkoU2FtcGxlIHx8IChTYW1wbGUgPSB7fSkpOw0KLy8jIHNvdXJjZU1hcHBpbmdVUkw9cmVjdXJzaXZlQ2xhc3NSZWZlcmVuY2VUZXN0LmpzLm1hcA==,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVjdXJzaXZlQ2xhc3NSZWZlcmVuY2VUZXN0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsicmVjdXJzaXZlQ2xhc3NSZWZlcmVuY2VUZXN0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGlFQUFpRTtBQUNqRSwwRUFBMEU7Ozs7Ozs7Ozs7Ozs7Ozs7QUE4QjFFLElBQU8sTUFBTSxDQVVaO0FBVkQsV0FBTyxNQUFNO0lBQUMsSUFBQSxPQUFPLENBVXBCO0lBVmEsV0FBQSxPQUFPO1FBQUMsSUFBQSxLQUFLLENBVTFCO1FBVnFCLFdBQUEsT0FBSztZQUFDLElBQUEsSUFBSSxDQVUvQjtZQVYyQixXQUFBLElBQUk7Z0JBQy9CO29CQUFBO29CQVFBLENBQUM7b0JBTk8sK0JBQUssR0FBWixjQUFpQixPQUFPLElBQUksQ0FBQyxDQUFDLENBQUM7b0JBRXhCLDZCQUFHLEdBQVYsVUFBVyxLQUE2Qjt3QkFFdkMsT0FBTyxJQUFJLENBQUM7b0JBQ2IsQ0FBQztvQkFDRixzQkFBQztnQkFBRCxDQUFDLEFBUkQsSUFRQztnQkFSWSxvQkFBZSxrQkFRM0IsQ0FBQTtZQUNGLENBQUMsRUFWMkIsSUFBSSxHQUFKLFlBQUksS0FBSixZQUFJLFFBVS9CO1FBQUQsQ0FBQyxFQVZxQixLQUFLLEdBQUwsYUFBSyxLQUFMLGFBQUssUUFVMUI7SUFBRCxDQUFDLEVBVmEsT0FBTyxHQUFQLGNBQU8sS0FBUCxjQUFPLFFBVXBCO0FBQUQsQ0FBQyxFQVZNLE1BQU0sS0FBTixNQUFNLFFBVVo7QUFFRCxXQUFPLE1BQU07SUFBQyxJQUFBLEtBQUssQ0FvQmxCO0lBcEJhLFdBQUEsS0FBSztRQUFDLElBQUEsT0FBTyxDQW9CMUI7UUFwQm1CLFdBQUEsT0FBTztZQUMxQjtnQkFLQyxvQkFBb0IsU0FBa0M7b0JBQWxDLGNBQVMsR0FBVCxTQUFTLENBQXlCO29CQUQ5QyxZQUFPLEdBQU8sSUFBSSxDQUFDO29CQUV2QixhQUFhO29CQUNiLFNBQVMsQ0FBQyxTQUFTLENBQUMsV0FBVyxFQUFFLElBQUksQ0FBQyxDQUFDO2dCQUMzQyxDQUFDO2dCQU5NLHdCQUFHLEdBQVYsVUFBVyxNQUF5QyxJQUFJLElBQUksSUFBSSxFQUFFO29CQUFDLE9BQU8sTUFBTSxDQUFDLElBQUksQ0FBQyxDQUFDO2lCQUFDLENBQUEsQ0FBQztnQkFRbEYsK0JBQVUsR0FBakI7b0JBQ0MsT0FBTyxPQUFPLENBQUM7Z0JBQ2hCLENBQUM7Z0JBRU0sNEJBQU8sR0FBZDtnQkFFQSxDQUFDO2dCQUVGLGlCQUFDO1lBQUQsQ0FBQyxBQWxCRCxJQWtCQztZQWxCWSxrQkFBVSxhQWtCdEIsQ0FBQTtRQUNGLENBQUMsRUFwQm1CLE9BQU8sR0FBUCxhQUFPLEtBQVAsYUFBTyxRQW9CMUI7SUFBRCxDQUFDLEVBcEJhLEtBQUssR0FBTCxZQUFLLEtBQUwsWUFBSyxRQW9CbEI7QUFBRCxDQUFDLEVBcEJNLE1BQU0sS0FBTixNQUFNLFFBb0JaO0FBR0Q7SUFBQTtJQUF1RixDQUFDO0lBQTNDLHNDQUFlLEdBQXRCLGNBQW1DLE9BQU8sSUFBSSxDQUFDLENBQUEsQ0FBQztJQUFDLG1CQUFDO0FBQUQsQ0FBQyxBQUF4RixJQUF3RjtBQVN4RixXQUFPLE1BQU07SUFBQyxJQUFBLEtBQUssQ0F3QmxCO0lBeEJhLFdBQUEsS0FBSztRQUFDLElBQUEsU0FBUyxDQXdCNUI7UUF4Qm1CLFdBQUEsU0FBUztZQUFDLElBQUEsU0FBUyxDQXdCdEM7WUF4QjZCLFdBQUEsU0FBUztnQkFFdEM7b0JBQ08sZUFBb0IsSUFBVzt3QkFBWCxTQUFJLEdBQUosSUFBSSxDQUFPO29CQUFJLENBQUM7b0JBQ25DLHFCQUFLLEdBQVo7d0JBQ0MsT0FBTyxJQUFJLENBQUM7b0JBQ2IsQ0FBQztvQkFFTSxzQkFBTSxHQUFiLFVBQWMsS0FBWTt3QkFDekIsT0FBTyxJQUFJLEtBQUssS0FBSyxDQUFDO29CQUN2QixDQUFDO29CQUVNLHVCQUFPLEdBQWQsY0FBMEIsT0FBTyxJQUFJLENBQUMsQ0FBQyxDQUFDO29CQUN6QyxZQUFDO2dCQUFELENBQUMsQUFYRCxJQVdDO2dCQVhZLGVBQUssUUFXakIsQ0FBQTtnQkFFRDtvQkFBMEIsd0JBQVk7b0JBQXRDOztvQkFRQSxDQUFDO29CQU5BLGFBQWE7b0JBQ04sOEJBQWUsR0FBdEI7d0JBQ0MsT0FBTyxJQUFJLEtBQUssQ0FBQyxJQUFJLENBQUMsQ0FBQztvQkFDeEIsQ0FBQztvQkFHRixXQUFDO2dCQUFELENBQUMsQUFSRCxDQUEwQixZQUFZLEdBUXJDO2dCQVJZLGNBQUksT0FRaEIsQ0FBQTtZQUNGLENBQUMsRUF4QjZCLFNBQVMsR0FBVCxtQkFBUyxLQUFULG1CQUFTLFFBd0J0QztRQUFELENBQUMsRUF4Qm1CLFNBQVMsR0FBVCxlQUFTLEtBQVQsZUFBUyxRQXdCNUI7SUFBRCxDQUFDLEVBeEJhLEtBQUssR0FBTCxZQUFLLEtBQUwsWUFBSyxRQXdCbEI7QUFBRCxDQUFDLEVBeEJNLE1BQU0sS0FBTixNQUFNLFFBd0JaIn0=,Ly8gU2NlbmFyaW8gMTogVGVzdCByZXF1cnNpdmUgZnVuY3Rpb24gY2FsbCB3aXRoICJ0aGlzIiBwYXJhbWV0ZXIKLy8gU2NlbmFyaW8gMjogVGVzdCByZWN1cnNpdmUgZnVuY3Rpb24gY2FsbCB3aXRoIGNhc3QgYW5kICJ0aGlzIiBwYXJhbWV0ZXIKCgoKZGVjbGFyZSBtb2R1bGUgU2FtcGxlLlRoaW5nIHsKCglleHBvcnQgaW50ZXJmYWNlIElXaWRnZXQgewoJCWdldERvbU5vZGUoKTogYW55OwoJCWRlc3Ryb3koKTsKCQlnYXIocnVubmVyOih3aWRnZXQ6U2FtcGxlLlRoaW5nLklXaWRnZXQpPT5hbnkpOmFueTsKCX0KCglleHBvcnQgaW50ZXJmYWNlIElDb2RlVGhpbmcgewogIAogIAkJZ2V0RG9tTm9kZSgpOiBFbGVtZW50OwoJCQoJCWFkZFdpZGdldCh3aWRnZXRJZDpzdHJpbmcsIHdpZGdldDpJV2lkZ2V0KTsKCgkJCgkJZm9jdXMoKTsgCgkJCgkJLy9hZGRXaWRnZXQod2lkZ2V0OiBTYW1wbGUuVGhpbmcuV2lkZ2V0cy5JV2lkZ2V0KTsKCX0KCglleHBvcnQgaW50ZXJmYWNlIElBY3Rpb24gewoJCXJ1bihUaGluZzpJQ29kZVRoaW5nKTpib29sZWFuOwoJCWdldElkKCk6c3RyaW5nOwoJfQkKfQoKbW9kdWxlIFNhbXBsZS5BY3Rpb25zLlRoaW5nLkZpbmQgewoJZXhwb3J0IGNsYXNzIFN0YXJ0RmluZEFjdGlvbiBpbXBsZW1lbnRzIFNhbXBsZS5UaGluZy5JQWN0aW9uIHsKCQkKCQlwdWJsaWMgZ2V0SWQoKSB7IHJldHVybiAieW8iOyB9CgkJCgkJcHVibGljIHJ1bihUaGluZzpTYW1wbGUuVGhpbmcuSUNvZGVUaGluZyk6Ym9vbGVhbiB7CgoJCQlyZXR1cm4gdHJ1ZTsKCQl9Cgl9Cn0KCm1vZHVsZSBTYW1wbGUuVGhpbmcuV2lkZ2V0cyB7CglleHBvcnQgY2xhc3MgRmluZFdpZGdldCBpbXBsZW1lbnRzIFNhbXBsZS5UaGluZy5JV2lkZ2V0IHsKCgkJcHVibGljIGdhcihydW5uZXI6KHdpZGdldDpTYW1wbGUuVGhpbmcuSVdpZGdldCk9PmFueSkgeyBpZiAodHJ1ZSkge3JldHVybiBydW5uZXIodGhpcyk7fX0KCQkJCgkJcHJpdmF0ZSBkb21Ob2RlOmFueSA9IG51bGw7CgkJY29uc3RydWN0b3IocHJpdmF0ZSBjb2RlVGhpbmc6IFNhbXBsZS5UaGluZy5JQ29kZVRoaW5nKSB7CgkJICAgIC8vIHNjZW5hcmlvIDEKCQkgICAgY29kZVRoaW5nLmFkZFdpZGdldCgiYWRkV2lkZ2V0IiwgdGhpcyk7CgkJfQoJCQoJCXB1YmxpYyBnZXREb21Ob2RlKCkgewoJCQlyZXR1cm4gZG9tTm9kZTsKCQl9CgkJCgkJcHVibGljIGRlc3Ryb3koKSB7CgoJCX0KCgl9Cn0KCmludGVyZmFjZSBJTW9kZSB7IGdldEluaXRpYWxTdGF0ZSgpOiBJU3RhdGU7fSAKY2xhc3MgQWJzdHJhY3RNb2RlIGltcGxlbWVudHMgSU1vZGUgeyBwdWJsaWMgZ2V0SW5pdGlhbFN0YXRlKCk6IElTdGF0ZSB7IHJldHVybiBudWxsO30gfQoKaW50ZXJmYWNlIElTdGF0ZSB7fQoKaW50ZXJmYWNlIFdpbmRvdyB7CiAgICBvcGVuZXI6IFdpbmRvdzsKfQpkZWNsYXJlIHZhciBzZWxmOiBXaW5kb3c7Cgptb2R1bGUgU2FtcGxlLlRoaW5nLkxhbmd1YWdlcy5QbGFpblRleHQgewoJCglleHBvcnQgY2xhc3MgU3RhdGUgaW1wbGVtZW50cyBJU3RhdGUgewkJCiAgICAgICAgY29uc3RydWN0b3IocHJpdmF0ZSBtb2RlOiBJTW9kZSkgeyB9CgkJcHVibGljIGNsb25lKCk6SVN0YXRlIHsKCQkJcmV0dXJuIHRoaXM7CgkJfQoKCQlwdWJsaWMgZXF1YWxzKG90aGVyOklTdGF0ZSk6Ym9vbGVhbiB7CgkJCXJldHVybiB0aGlzID09PSBvdGhlcjsKCQl9CgkJCgkJcHVibGljIGdldE1vZGUoKTogSU1vZGUgeyByZXR1cm4gbW9kZTsgfQoJfQoJCglleHBvcnQgY2xhc3MgTW9kZSBleHRlbmRzIEFic3RyYWN0TW9kZSB7CgoJCS8vIHNjZW5hcmlvIDIKCQlwdWJsaWMgZ2V0SW5pdGlhbFN0YXRlKCk6IElTdGF0ZSB7CgkJCXJldHVybiBuZXcgU3RhdGUoc2VsZik7CgkJfQoKCgl9Cn0KCg== +{"version":3,"file":"recursiveClassReferenceTest.js","sourceRoot":"","sources":["recursiveClassReferenceTest.ts"],"names":[],"mappings":"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"} +//// https://sokra.github.io/source-map-visualization#base64,Ly8gU2NlbmFyaW8gMTogVGVzdCByZXF1cnNpdmUgZnVuY3Rpb24gY2FsbCB3aXRoICJ0aGlzIiBwYXJhbWV0ZXINCi8vIFNjZW5hcmlvIDI6IFRlc3QgcmVjdXJzaXZlIGZ1bmN0aW9uIGNhbGwgd2l0aCBjYXN0IGFuZCAidGhpcyIgcGFyYW1ldGVyDQp2YXIgX19leHRlbmRzID0gKHRoaXMgJiYgdGhpcy5fX2V4dGVuZHMpIHx8IChmdW5jdGlvbiAoKSB7DQogICAgdmFyIGV4dGVuZFN0YXRpY3MgPSBmdW5jdGlvbiAoZCwgYikgew0KICAgICAgICBleHRlbmRTdGF0aWNzID0gT2JqZWN0LnNldFByb3RvdHlwZU9mIHx8DQogICAgICAgICAgICAoeyBfX3Byb3RvX186IFtdIH0gaW5zdGFuY2VvZiBBcnJheSAmJiBmdW5jdGlvbiAoZCwgYikgeyBkLl9fcHJvdG9fXyA9IGI7IH0pIHx8DQogICAgICAgICAgICBmdW5jdGlvbiAoZCwgYikgeyBmb3IgKHZhciBwIGluIGIpIGlmIChPYmplY3QucHJvdG90eXBlLmhhc093blByb3BlcnR5LmNhbGwoYiwgcCkpIGRbcF0gPSBiW3BdOyB9Ow0KICAgICAgICByZXR1cm4gZXh0ZW5kU3RhdGljcyhkLCBiKTsNCiAgICB9Ow0KICAgIHJldHVybiBmdW5jdGlvbiAoZCwgYikgew0KICAgICAgICBpZiAodHlwZW9mIGIgIT09ICJmdW5jdGlvbiIgJiYgYiAhPT0gbnVsbCkNCiAgICAgICAgICAgIHRocm93IG5ldyBUeXBlRXJyb3IoIkNsYXNzIGV4dGVuZHMgdmFsdWUgIiArIFN0cmluZyhiKSArICIgaXMgbm90IGEgY29uc3RydWN0b3Igb3IgbnVsbCIpOw0KICAgICAgICBleHRlbmRTdGF0aWNzKGQsIGIpOw0KICAgICAgICBmdW5jdGlvbiBfXygpIHsgdGhpcy5jb25zdHJ1Y3RvciA9IGQ7IH0NCiAgICAgICAgZC5wcm90b3R5cGUgPSBiID09PSBudWxsID8gT2JqZWN0LmNyZWF0ZShiKSA6IChfXy5wcm90b3R5cGUgPSBiLnByb3RvdHlwZSwgbmV3IF9fKCkpOw0KICAgIH07DQp9KSgpOw0KdmFyIFNhbXBsZTsNCihmdW5jdGlvbiAoU2FtcGxlKSB7DQogICAgdmFyIEFjdGlvbnM7DQogICAgKGZ1bmN0aW9uIChBY3Rpb25zKSB7DQogICAgICAgIHZhciBUaGluZzsNCiAgICAgICAgKGZ1bmN0aW9uIChUaGluZ18xKSB7DQogICAgICAgICAgICB2YXIgRmluZDsNCiAgICAgICAgICAgIChmdW5jdGlvbiAoRmluZCkgew0KICAgICAgICAgICAgICAgIHZhciBTdGFydEZpbmRBY3Rpb24gPSAvKiogQGNsYXNzICovIChmdW5jdGlvbiAoKSB7DQogICAgICAgICAgICAgICAgICAgIGZ1bmN0aW9uIFN0YXJ0RmluZEFjdGlvbigpIHsNCiAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICB2YXIgU3RhcnRGaW5kQWN0aW9uX3Byb3RvdHlwZSA9IFN0YXJ0RmluZEFjdGlvbi5wcm90b3R5cGU7DQogICAgICAgICAgICAgICAgICAgIFN0YXJ0RmluZEFjdGlvbl9wcm90b3R5cGUuZ2V0SWQgPSBmdW5jdGlvbiAoKSB7IHJldHVybiAieW8iOyB9Ow0KICAgICAgICAgICAgICAgICAgICBTdGFydEZpbmRBY3Rpb25fcHJvdG90eXBlLnJ1biA9IGZ1bmN0aW9uIChUaGluZykgew0KICAgICAgICAgICAgICAgICAgICAgICAgcmV0dXJuIHRydWU7DQogICAgICAgICAgICAgICAgICAgIH07DQogICAgICAgICAgICAgICAgICAgIHJldHVybiBTdGFydEZpbmRBY3Rpb247DQogICAgICAgICAgICAgICAgfSgpKTsNCiAgICAgICAgICAgICAgICBGaW5kLlN0YXJ0RmluZEFjdGlvbiA9IFN0YXJ0RmluZEFjdGlvbjsNCiAgICAgICAgICAgIH0pKEZpbmQgPSBUaGluZ18xLkZpbmQgfHwgKFRoaW5nXzEuRmluZCA9IHt9KSk7DQogICAgICAgIH0pKFRoaW5nID0gQWN0aW9ucy5UaGluZyB8fCAoQWN0aW9ucy5UaGluZyA9IHt9KSk7DQogICAgfSkoQWN0aW9ucyA9IFNhbXBsZS5BY3Rpb25zIHx8IChTYW1wbGUuQWN0aW9ucyA9IHt9KSk7DQp9KShTYW1wbGUgfHwgKFNhbXBsZSA9IHt9KSk7DQooZnVuY3Rpb24gKFNhbXBsZSkgew0KICAgIHZhciBUaGluZzsNCiAgICAoZnVuY3Rpb24gKFRoaW5nKSB7DQogICAgICAgIHZhciBXaWRnZXRzOw0KICAgICAgICAoZnVuY3Rpb24gKFdpZGdldHMpIHsNCiAgICAgICAgICAgIHZhciBGaW5kV2lkZ2V0ID0gLyoqIEBjbGFzcyAqLyAoZnVuY3Rpb24gKCkgew0KICAgICAgICAgICAgICAgIGZ1bmN0aW9uIEZpbmRXaWRnZXQoY29kZVRoaW5nKSB7DQogICAgICAgICAgICAgICAgICAgIHRoaXMuY29kZVRoaW5nID0gY29kZVRoaW5nOw0KICAgICAgICAgICAgICAgICAgICB0aGlzLmRvbU5vZGUgPSBudWxsOw0KICAgICAgICAgICAgICAgICAgICAvLyBzY2VuYXJpbyAxDQogICAgICAgICAgICAgICAgICAgIGNvZGVUaGluZy5hZGRXaWRnZXQoImFkZFdpZGdldCIsIHRoaXMpOw0KICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICB2YXIgRmluZFdpZGdldF9wcm90b3R5cGUgPSBGaW5kV2lkZ2V0LnByb3RvdHlwZTsNCiAgICAgICAgICAgICAgICBGaW5kV2lkZ2V0X3Byb3RvdHlwZS5nYXIgPSBmdW5jdGlvbiAocnVubmVyKSB7IGlmICh0cnVlKSB7DQogICAgICAgICAgICAgICAgICAgIHJldHVybiBydW5uZXIodGhpcyk7DQogICAgICAgICAgICAgICAgfSB9Ow0KICAgICAgICAgICAgICAgIEZpbmRXaWRnZXRfcHJvdG90eXBlLmdldERvbU5vZGUgPSBmdW5jdGlvbiAoKSB7DQogICAgICAgICAgICAgICAgICAgIHJldHVybiBkb21Ob2RlOw0KICAgICAgICAgICAgICAgIH07DQogICAgICAgICAgICAgICAgRmluZFdpZGdldF9wcm90b3R5cGUuZGVzdHJveSA9IGZ1bmN0aW9uICgpIHsNCiAgICAgICAgICAgICAgICB9Ow0KICAgICAgICAgICAgICAgIHJldHVybiBGaW5kV2lkZ2V0Ow0KICAgICAgICAgICAgfSgpKTsNCiAgICAgICAgICAgIFdpZGdldHMuRmluZFdpZGdldCA9IEZpbmRXaWRnZXQ7DQogICAgICAgIH0pKFdpZGdldHMgPSBUaGluZy5XaWRnZXRzIHx8IChUaGluZy5XaWRnZXRzID0ge30pKTsNCiAgICB9KShUaGluZyA9IFNhbXBsZS5UaGluZyB8fCAoU2FtcGxlLlRoaW5nID0ge30pKTsNCn0pKFNhbXBsZSB8fCAoU2FtcGxlID0ge30pKTsNCnZhciBBYnN0cmFjdE1vZGUgPSAvKiogQGNsYXNzICovIChmdW5jdGlvbiAoKSB7DQogICAgZnVuY3Rpb24gQWJzdHJhY3RNb2RlKCkgew0KICAgIH0NCiAgICBBYnN0cmFjdE1vZGUucHJvdG90eXBlLmdldEluaXRpYWxTdGF0ZSA9IGZ1bmN0aW9uICgpIHsgcmV0dXJuIG51bGw7IH07DQogICAgcmV0dXJuIEFic3RyYWN0TW9kZTsNCn0oKSk7DQooZnVuY3Rpb24gKFNhbXBsZSkgew0KICAgIHZhciBUaGluZzsNCiAgICAoZnVuY3Rpb24gKFRoaW5nKSB7DQogICAgICAgIHZhciBMYW5ndWFnZXM7DQogICAgICAgIChmdW5jdGlvbiAoTGFuZ3VhZ2VzKSB7DQogICAgICAgICAgICB2YXIgUGxhaW5UZXh0Ow0KICAgICAgICAgICAgKGZ1bmN0aW9uIChQbGFpblRleHQpIHsNCiAgICAgICAgICAgICAgICB2YXIgU3RhdGUgPSAvKiogQGNsYXNzICovIChmdW5jdGlvbiAoKSB7DQogICAgICAgICAgICAgICAgICAgIGZ1bmN0aW9uIFN0YXRlKG1vZGUpIHsNCiAgICAgICAgICAgICAgICAgICAgICAgIHRoaXMubW9kZSA9IG1vZGU7DQogICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgdmFyIFN0YXRlX3Byb3RvdHlwZSA9IFN0YXRlLnByb3RvdHlwZTsNCiAgICAgICAgICAgICAgICAgICAgU3RhdGVfcHJvdG90eXBlLmNsb25lID0gZnVuY3Rpb24gKCkgew0KICAgICAgICAgICAgICAgICAgICAgICAgcmV0dXJuIHRoaXM7DQogICAgICAgICAgICAgICAgICAgIH07DQogICAgICAgICAgICAgICAgICAgIFN0YXRlX3Byb3RvdHlwZS5lcXVhbHMgPSBmdW5jdGlvbiAob3RoZXIpIHsNCiAgICAgICAgICAgICAgICAgICAgICAgIHJldHVybiB0aGlzID09PSBvdGhlcjsNCiAgICAgICAgICAgICAgICAgICAgfTsNCiAgICAgICAgICAgICAgICAgICAgU3RhdGVfcHJvdG90eXBlLmdldE1vZGUgPSBmdW5jdGlvbiAoKSB7IHJldHVybiBtb2RlOyB9Ow0KICAgICAgICAgICAgICAgICAgICByZXR1cm4gU3RhdGU7DQogICAgICAgICAgICAgICAgfSgpKTsNCiAgICAgICAgICAgICAgICBQbGFpblRleHQuU3RhdGUgPSBTdGF0ZTsNCiAgICAgICAgICAgICAgICB2YXIgTW9kZSA9IC8qKiBAY2xhc3MgKi8gKGZ1bmN0aW9uIChfc3VwZXIpIHsNCiAgICAgICAgICAgICAgICAgICAgX19leHRlbmRzKE1vZGUsIF9zdXBlcik7DQogICAgICAgICAgICAgICAgICAgIGZ1bmN0aW9uIE1vZGUoKSB7DQogICAgICAgICAgICAgICAgICAgICAgICByZXR1cm4gX3N1cGVyICE9PSBudWxsICYmIF9zdXBlci5hcHBseSh0aGlzLCBhcmd1bWVudHMpIHx8IHRoaXM7DQogICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgLy8gc2NlbmFyaW8gMg0KICAgICAgICAgICAgICAgICAgICBNb2RlLnByb3RvdHlwZS5nZXRJbml0aWFsU3RhdGUgPSBmdW5jdGlvbiAoKSB7DQogICAgICAgICAgICAgICAgICAgICAgICByZXR1cm4gbmV3IFN0YXRlKHNlbGYpOw0KICAgICAgICAgICAgICAgICAgICB9Ow0KICAgICAgICAgICAgICAgICAgICByZXR1cm4gTW9kZTsNCiAgICAgICAgICAgICAgICB9KEFic3RyYWN0TW9kZSkpOw0KICAgICAgICAgICAgICAgIFBsYWluVGV4dC5Nb2RlID0gTW9kZTsNCiAgICAgICAgICAgIH0pKFBsYWluVGV4dCA9IExhbmd1YWdlcy5QbGFpblRleHQgfHwgKExhbmd1YWdlcy5QbGFpblRleHQgPSB7fSkpOw0KICAgICAgICB9KShMYW5ndWFnZXMgPSBUaGluZy5MYW5ndWFnZXMgfHwgKFRoaW5nLkxhbmd1YWdlcyA9IHt9KSk7DQogICAgfSkoVGhpbmcgPSBTYW1wbGUuVGhpbmcgfHwgKFNhbXBsZS5UaGluZyA9IHt9KSk7DQp9KShTYW1wbGUgfHwgKFNhbXBsZSA9IHt9KSk7DQovLyMgc291cmNlTWFwcGluZ1VSTD1yZWN1cnNpdmVDbGFzc1JlZmVyZW5jZVRlc3QuanMubWFw,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVjdXJzaXZlQ2xhc3NSZWZlcmVuY2VUZXN0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsicmVjdXJzaXZlQ2xhc3NSZWZlcmVuY2VUZXN0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGlFQUFpRTtBQUNqRSwwRUFBMEU7Ozs7Ozs7Ozs7Ozs7Ozs7QUE4QjFFLElBQU8sTUFBTSxDQVVaO0FBVkQsV0FBTyxNQUFNO0lBQUMsSUFBQSxPQUFPLENBVXBCO0lBVmEsV0FBQSxPQUFPO1FBQUMsSUFBQSxLQUFLLENBVTFCO1FBVnFCLFdBQUEsT0FBSztZQUFDLElBQUEsSUFBSSxDQVUvQjtZQVYyQixXQUFBLElBQUk7Z0JBQy9CO29CQUFBO29CQVFBLENBQUM7O29CQU5PLCtCQUFLLEdBQVosY0FBaUIsT0FBTyxJQUFJLENBQUMsQ0FBQyxDQUFDO29CQUV4Qiw2QkFBRyxHQUFWLFVBQVcsS0FBNkI7d0JBRXZDLE9BQU8sSUFBSSxDQUFDO29CQUNiLENBQUM7b0JBQ0Ysc0JBQUM7Z0JBQUQsQ0FBQyxBQVJELElBUUM7Z0JBUlksb0JBQWUsa0JBUTNCLENBQUE7WUFDRixDQUFDLEVBVjJCLElBQUksR0FBSixZQUFJLEtBQUosWUFBSSxRQVUvQjtRQUFELENBQUMsRUFWcUIsS0FBSyxHQUFMLGFBQUssS0FBTCxhQUFLLFFBVTFCO0lBQUQsQ0FBQyxFQVZhLE9BQU8sR0FBUCxjQUFPLEtBQVAsY0FBTyxRQVVwQjtBQUFELENBQUMsRUFWTSxNQUFNLEtBQU4sTUFBTSxRQVVaO0FBRUQsV0FBTyxNQUFNO0lBQUMsSUFBQSxLQUFLLENBb0JsQjtJQXBCYSxXQUFBLEtBQUs7UUFBQyxJQUFBLE9BQU8sQ0FvQjFCO1FBcEJtQixXQUFBLE9BQU87WUFDMUI7Z0JBS0Msb0JBQW9CLFNBQWtDO29CQUFsQyxjQUFTLEdBQVQsU0FBUyxDQUF5QjtvQkFEOUMsWUFBTyxHQUFPLElBQUksQ0FBQztvQkFFdkIsYUFBYTtvQkFDYixTQUFTLENBQUMsU0FBUyxDQUFDLFdBQVcsRUFBRSxJQUFJLENBQUMsQ0FBQztnQkFDM0MsQ0FBQzs7Z0JBTk0sd0JBQUcsR0FBVixVQUFXLE1BQXlDLElBQUksSUFBSSxJQUFJLEVBQUU7b0JBQUMsT0FBTyxNQUFNLENBQUMsSUFBSSxDQUFDLENBQUM7aUJBQUMsQ0FBQSxDQUFDO2dCQVFsRiwrQkFBVSxHQUFqQjtvQkFDQyxPQUFPLE9BQU8sQ0FBQztnQkFDaEIsQ0FBQztnQkFFTSw0QkFBTyxHQUFkO2dCQUVBLENBQUM7Z0JBRUYsaUJBQUM7WUFBRCxDQUFDLEFBbEJELElBa0JDO1lBbEJZLGtCQUFVLGFBa0J0QixDQUFBO1FBQ0YsQ0FBQyxFQXBCbUIsT0FBTyxHQUFQLGFBQU8sS0FBUCxhQUFPLFFBb0IxQjtJQUFELENBQUMsRUFwQmEsS0FBSyxHQUFMLFlBQUssS0FBTCxZQUFLLFFBb0JsQjtBQUFELENBQUMsRUFwQk0sTUFBTSxLQUFOLE1BQU0sUUFvQlo7QUFHRDtJQUFBO0lBQXVGLENBQUM7SUFBM0Msc0NBQWUsR0FBdEIsY0FBbUMsT0FBTyxJQUFJLENBQUMsQ0FBQSxDQUFDO0lBQUMsbUJBQUM7QUFBRCxDQUFDLEFBQXhGLElBQXdGO0FBU3hGLFdBQU8sTUFBTTtJQUFDLElBQUEsS0FBSyxDQXdCbEI7SUF4QmEsV0FBQSxLQUFLO1FBQUMsSUFBQSxTQUFTLENBd0I1QjtRQXhCbUIsV0FBQSxTQUFTO1lBQUMsSUFBQSxTQUFTLENBd0J0QztZQXhCNkIsV0FBQSxTQUFTO2dCQUV0QztvQkFDTyxlQUFvQixJQUFXO3dCQUFYLFNBQUksR0FBSixJQUFJLENBQU87b0JBQUksQ0FBQzs7b0JBQ25DLHFCQUFLLEdBQVo7d0JBQ0MsT0FBTyxJQUFJLENBQUM7b0JBQ2IsQ0FBQztvQkFFTSxzQkFBTSxHQUFiLFVBQWMsS0FBWTt3QkFDekIsT0FBTyxJQUFJLEtBQUssS0FBSyxDQUFDO29CQUN2QixDQUFDO29CQUVNLHVCQUFPLEdBQWQsY0FBMEIsT0FBTyxJQUFJLENBQUMsQ0FBQyxDQUFDO29CQUN6QyxZQUFDO2dCQUFELENBQUMsQUFYRCxJQVdDO2dCQVhZLGVBQUssUUFXakIsQ0FBQTtnQkFFRDtvQkFBMEIsd0JBQVk7b0JBQXRDOztvQkFRQSxDQUFDO29CQU5BLGFBQWE7b0JBQ04sOEJBQWUsR0FBdEI7d0JBQ0MsT0FBTyxJQUFJLEtBQUssQ0FBQyxJQUFJLENBQUMsQ0FBQztvQkFDeEIsQ0FBQztvQkFHRixXQUFDO2dCQUFELENBQUMsQUFSRCxDQUEwQixZQUFZLEdBUXJDO2dCQVJZLGNBQUksT0FRaEIsQ0FBQTtZQUNGLENBQUMsRUF4QjZCLFNBQVMsR0FBVCxtQkFBUyxLQUFULG1CQUFTLFFBd0J0QztRQUFELENBQUMsRUF4Qm1CLFNBQVMsR0FBVCxlQUFTLEtBQVQsZUFBUyxRQXdCNUI7SUFBRCxDQUFDLEVBeEJhLEtBQUssR0FBTCxZQUFLLEtBQUwsWUFBSyxRQXdCbEI7QUFBRCxDQUFDLEVBeEJNLE1BQU0sS0FBTixNQUFNLFFBd0JaIn0=,Ly8gU2NlbmFyaW8gMTogVGVzdCByZXF1cnNpdmUgZnVuY3Rpb24gY2FsbCB3aXRoICJ0aGlzIiBwYXJhbWV0ZXIKLy8gU2NlbmFyaW8gMjogVGVzdCByZWN1cnNpdmUgZnVuY3Rpb24gY2FsbCB3aXRoIGNhc3QgYW5kICJ0aGlzIiBwYXJhbWV0ZXIKCgoKZGVjbGFyZSBtb2R1bGUgU2FtcGxlLlRoaW5nIHsKCglleHBvcnQgaW50ZXJmYWNlIElXaWRnZXQgewoJCWdldERvbU5vZGUoKTogYW55OwoJCWRlc3Ryb3koKTsKCQlnYXIocnVubmVyOih3aWRnZXQ6U2FtcGxlLlRoaW5nLklXaWRnZXQpPT5hbnkpOmFueTsKCX0KCglleHBvcnQgaW50ZXJmYWNlIElDb2RlVGhpbmcgewogIAogIAkJZ2V0RG9tTm9kZSgpOiBFbGVtZW50OwoJCQoJCWFkZFdpZGdldCh3aWRnZXRJZDpzdHJpbmcsIHdpZGdldDpJV2lkZ2V0KTsKCgkJCgkJZm9jdXMoKTsgCgkJCgkJLy9hZGRXaWRnZXQod2lkZ2V0OiBTYW1wbGUuVGhpbmcuV2lkZ2V0cy5JV2lkZ2V0KTsKCX0KCglleHBvcnQgaW50ZXJmYWNlIElBY3Rpb24gewoJCXJ1bihUaGluZzpJQ29kZVRoaW5nKTpib29sZWFuOwoJCWdldElkKCk6c3RyaW5nOwoJfQkKfQoKbW9kdWxlIFNhbXBsZS5BY3Rpb25zLlRoaW5nLkZpbmQgewoJZXhwb3J0IGNsYXNzIFN0YXJ0RmluZEFjdGlvbiBpbXBsZW1lbnRzIFNhbXBsZS5UaGluZy5JQWN0aW9uIHsKCQkKCQlwdWJsaWMgZ2V0SWQoKSB7IHJldHVybiAieW8iOyB9CgkJCgkJcHVibGljIHJ1bihUaGluZzpTYW1wbGUuVGhpbmcuSUNvZGVUaGluZyk6Ym9vbGVhbiB7CgoJCQlyZXR1cm4gdHJ1ZTsKCQl9Cgl9Cn0KCm1vZHVsZSBTYW1wbGUuVGhpbmcuV2lkZ2V0cyB7CglleHBvcnQgY2xhc3MgRmluZFdpZGdldCBpbXBsZW1lbnRzIFNhbXBsZS5UaGluZy5JV2lkZ2V0IHsKCgkJcHVibGljIGdhcihydW5uZXI6KHdpZGdldDpTYW1wbGUuVGhpbmcuSVdpZGdldCk9PmFueSkgeyBpZiAodHJ1ZSkge3JldHVybiBydW5uZXIodGhpcyk7fX0KCQkJCgkJcHJpdmF0ZSBkb21Ob2RlOmFueSA9IG51bGw7CgkJY29uc3RydWN0b3IocHJpdmF0ZSBjb2RlVGhpbmc6IFNhbXBsZS5UaGluZy5JQ29kZVRoaW5nKSB7CgkJICAgIC8vIHNjZW5hcmlvIDEKCQkgICAgY29kZVRoaW5nLmFkZFdpZGdldCgiYWRkV2lkZ2V0IiwgdGhpcyk7CgkJfQoJCQoJCXB1YmxpYyBnZXREb21Ob2RlKCkgewoJCQlyZXR1cm4gZG9tTm9kZTsKCQl9CgkJCgkJcHVibGljIGRlc3Ryb3koKSB7CgoJCX0KCgl9Cn0KCmludGVyZmFjZSBJTW9kZSB7IGdldEluaXRpYWxTdGF0ZSgpOiBJU3RhdGU7fSAKY2xhc3MgQWJzdHJhY3RNb2RlIGltcGxlbWVudHMgSU1vZGUgeyBwdWJsaWMgZ2V0SW5pdGlhbFN0YXRlKCk6IElTdGF0ZSB7IHJldHVybiBudWxsO30gfQoKaW50ZXJmYWNlIElTdGF0ZSB7fQoKaW50ZXJmYWNlIFdpbmRvdyB7CiAgICBvcGVuZXI6IFdpbmRvdzsKfQpkZWNsYXJlIHZhciBzZWxmOiBXaW5kb3c7Cgptb2R1bGUgU2FtcGxlLlRoaW5nLkxhbmd1YWdlcy5QbGFpblRleHQgewoJCglleHBvcnQgY2xhc3MgU3RhdGUgaW1wbGVtZW50cyBJU3RhdGUgewkJCiAgICAgICAgY29uc3RydWN0b3IocHJpdmF0ZSBtb2RlOiBJTW9kZSkgeyB9CgkJcHVibGljIGNsb25lKCk6SVN0YXRlIHsKCQkJcmV0dXJuIHRoaXM7CgkJfQoKCQlwdWJsaWMgZXF1YWxzKG90aGVyOklTdGF0ZSk6Ym9vbGVhbiB7CgkJCXJldHVybiB0aGlzID09PSBvdGhlcjsKCQl9CgkJCgkJcHVibGljIGdldE1vZGUoKTogSU1vZGUgeyByZXR1cm4gbW9kZTsgfQoJfQoJCglleHBvcnQgY2xhc3MgTW9kZSBleHRlbmRzIEFic3RyYWN0TW9kZSB7CgoJCS8vIHNjZW5hcmlvIDIKCQlwdWJsaWMgZ2V0SW5pdGlhbFN0YXRlKCk6IElTdGF0ZSB7CgkJCXJldHVybiBuZXcgU3RhdGUoc2VsZik7CgkJfQoKCgl9Cn0KCg== diff --git a/tests/baselines/reference/recursiveClassReferenceTest.sourcemap.txt b/tests/baselines/reference/recursiveClassReferenceTest.sourcemap.txt index 5be5cb3c912aa..2242a7d2df3d7 100644 --- a/tests/baselines/reference/recursiveClassReferenceTest.sourcemap.txt +++ b/tests/baselines/reference/recursiveClassReferenceTest.sourcemap.txt @@ -232,7 +232,7 @@ sourceFile:recursiveClassReferenceTest.ts >>> } 1->^^^^^^^^^^^^^^^^^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1->export class StartFindAction implements Sample.Thing.IAction { > > public getId() { return "yo"; } @@ -246,7 +246,8 @@ sourceFile:recursiveClassReferenceTest.ts 1->Emitted(28, 21) Source(41, 2) + SourceIndex(0) 2 >Emitted(28, 22) Source(41, 3) + SourceIndex(0) --- ->>> StartFindAction.prototype.getId = function () { return "yo"; }; +>>> var StartFindAction_prototype = StartFindAction.prototype; +>>> StartFindAction_prototype.getId = function () { return "yo"; }; 1->^^^^^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^ @@ -265,17 +266,17 @@ sourceFile:recursiveClassReferenceTest.ts 7 > ; 8 > 9 > } -1->Emitted(29, 21) Source(35, 10) + SourceIndex(0) -2 >Emitted(29, 52) Source(35, 15) + SourceIndex(0) -3 >Emitted(29, 55) Source(35, 3) + SourceIndex(0) -4 >Emitted(29, 69) Source(35, 20) + SourceIndex(0) -5 >Emitted(29, 76) Source(35, 27) + SourceIndex(0) -6 >Emitted(29, 80) Source(35, 31) + SourceIndex(0) -7 >Emitted(29, 81) Source(35, 32) + SourceIndex(0) -8 >Emitted(29, 82) Source(35, 33) + SourceIndex(0) -9 >Emitted(29, 83) Source(35, 34) + SourceIndex(0) ---- ->>> StartFindAction.prototype.run = function (Thing) { +1->Emitted(30, 21) Source(35, 10) + SourceIndex(0) +2 >Emitted(30, 52) Source(35, 15) + SourceIndex(0) +3 >Emitted(30, 55) Source(35, 3) + SourceIndex(0) +4 >Emitted(30, 69) Source(35, 20) + SourceIndex(0) +5 >Emitted(30, 76) Source(35, 27) + SourceIndex(0) +6 >Emitted(30, 80) Source(35, 31) + SourceIndex(0) +7 >Emitted(30, 81) Source(35, 32) + SourceIndex(0) +8 >Emitted(30, 82) Source(35, 33) + SourceIndex(0) +9 >Emitted(30, 83) Source(35, 34) + SourceIndex(0) +--- +>>> StartFindAction_prototype.run = function (Thing) { 1 >^^^^^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^ @@ -288,11 +289,11 @@ sourceFile:recursiveClassReferenceTest.ts 3 > 4 > public run( 5 > Thing:Sample.Thing.ICodeThing -1 >Emitted(30, 21) Source(37, 10) + SourceIndex(0) -2 >Emitted(30, 50) Source(37, 13) + SourceIndex(0) -3 >Emitted(30, 53) Source(37, 3) + SourceIndex(0) -4 >Emitted(30, 63) Source(37, 14) + SourceIndex(0) -5 >Emitted(30, 68) Source(37, 43) + SourceIndex(0) +1 >Emitted(31, 21) Source(37, 10) + SourceIndex(0) +2 >Emitted(31, 50) Source(37, 13) + SourceIndex(0) +3 >Emitted(31, 53) Source(37, 3) + SourceIndex(0) +4 >Emitted(31, 63) Source(37, 14) + SourceIndex(0) +5 >Emitted(31, 68) Source(37, 43) + SourceIndex(0) --- >>> return true; 1 >^^^^^^^^^^^^^^^^^^^^^^^^ @@ -305,10 +306,10 @@ sourceFile:recursiveClassReferenceTest.ts 2 > return 3 > true 4 > ; -1 >Emitted(31, 25) Source(39, 4) + SourceIndex(0) -2 >Emitted(31, 32) Source(39, 11) + SourceIndex(0) -3 >Emitted(31, 36) Source(39, 15) + SourceIndex(0) -4 >Emitted(31, 37) Source(39, 16) + SourceIndex(0) +1 >Emitted(32, 25) Source(39, 4) + SourceIndex(0) +2 >Emitted(32, 32) Source(39, 11) + SourceIndex(0) +3 >Emitted(32, 36) Source(39, 15) + SourceIndex(0) +4 >Emitted(32, 37) Source(39, 16) + SourceIndex(0) --- >>> }; 1 >^^^^^^^^^^^^^^^^^^^^ @@ -317,8 +318,8 @@ sourceFile:recursiveClassReferenceTest.ts 1 > > 2 > } -1 >Emitted(32, 21) Source(40, 3) + SourceIndex(0) -2 >Emitted(32, 22) Source(40, 4) + SourceIndex(0) +1 >Emitted(33, 21) Source(40, 3) + SourceIndex(0) +2 >Emitted(33, 22) Source(40, 4) + SourceIndex(0) --- >>> return StartFindAction; 1->^^^^^^^^^^^^^^^^^^^^ @@ -326,8 +327,8 @@ sourceFile:recursiveClassReferenceTest.ts 1-> > 2 > } -1->Emitted(33, 21) Source(41, 2) + SourceIndex(0) -2 >Emitted(33, 43) Source(41, 3) + SourceIndex(0) +1->Emitted(34, 21) Source(41, 2) + SourceIndex(0) +2 >Emitted(34, 43) Source(41, 3) + SourceIndex(0) --- >>> }()); 1 >^^^^^^^^^^^^^^^^ @@ -347,10 +348,10 @@ sourceFile:recursiveClassReferenceTest.ts > return true; > } > } -1 >Emitted(34, 17) Source(41, 2) + SourceIndex(0) -2 >Emitted(34, 18) Source(41, 3) + SourceIndex(0) -3 >Emitted(34, 18) Source(33, 2) + SourceIndex(0) -4 >Emitted(34, 22) Source(41, 3) + SourceIndex(0) +1 >Emitted(35, 17) Source(41, 2) + SourceIndex(0) +2 >Emitted(35, 18) Source(41, 3) + SourceIndex(0) +3 >Emitted(35, 18) Source(33, 2) + SourceIndex(0) +4 >Emitted(35, 22) Source(41, 3) + SourceIndex(0) --- >>> Find.StartFindAction = StartFindAction; 1->^^^^^^^^^^^^^^^^ @@ -370,10 +371,10 @@ sourceFile:recursiveClassReferenceTest.ts > } > } 4 > -1->Emitted(35, 17) Source(33, 15) + SourceIndex(0) -2 >Emitted(35, 37) Source(33, 30) + SourceIndex(0) -3 >Emitted(35, 55) Source(41, 3) + SourceIndex(0) -4 >Emitted(35, 56) Source(41, 3) + SourceIndex(0) +1->Emitted(36, 17) Source(33, 15) + SourceIndex(0) +2 >Emitted(36, 37) Source(33, 30) + SourceIndex(0) +3 >Emitted(36, 55) Source(41, 3) + SourceIndex(0) +4 >Emitted(36, 56) Source(41, 3) + SourceIndex(0) --- >>> })(Find = Thing_1.Find || (Thing_1.Find = {})); 1->^^^^^^^^^^^^ @@ -405,15 +406,15 @@ sourceFile:recursiveClassReferenceTest.ts > } > } > } -1->Emitted(36, 13) Source(42, 1) + SourceIndex(0) -2 >Emitted(36, 14) Source(42, 2) + SourceIndex(0) -3 >Emitted(36, 16) Source(32, 29) + SourceIndex(0) -4 >Emitted(36, 20) Source(32, 33) + SourceIndex(0) -5 >Emitted(36, 23) Source(32, 29) + SourceIndex(0) -6 >Emitted(36, 35) Source(32, 33) + SourceIndex(0) -7 >Emitted(36, 40) Source(32, 29) + SourceIndex(0) -8 >Emitted(36, 52) Source(32, 33) + SourceIndex(0) -9 >Emitted(36, 60) Source(42, 2) + SourceIndex(0) +1->Emitted(37, 13) Source(42, 1) + SourceIndex(0) +2 >Emitted(37, 14) Source(42, 2) + SourceIndex(0) +3 >Emitted(37, 16) Source(32, 29) + SourceIndex(0) +4 >Emitted(37, 20) Source(32, 33) + SourceIndex(0) +5 >Emitted(37, 23) Source(32, 29) + SourceIndex(0) +6 >Emitted(37, 35) Source(32, 33) + SourceIndex(0) +7 >Emitted(37, 40) Source(32, 29) + SourceIndex(0) +8 >Emitted(37, 52) Source(32, 33) + SourceIndex(0) +9 >Emitted(37, 60) Source(42, 2) + SourceIndex(0) --- >>> })(Thing = Actions.Thing || (Actions.Thing = {})); 1 >^^^^^^^^ @@ -445,15 +446,15 @@ sourceFile:recursiveClassReferenceTest.ts > } > } > } -1 >Emitted(37, 9) Source(42, 1) + SourceIndex(0) -2 >Emitted(37, 10) Source(42, 2) + SourceIndex(0) -3 >Emitted(37, 12) Source(32, 23) + SourceIndex(0) -4 >Emitted(37, 17) Source(32, 28) + SourceIndex(0) -5 >Emitted(37, 20) Source(32, 23) + SourceIndex(0) -6 >Emitted(37, 33) Source(32, 28) + SourceIndex(0) -7 >Emitted(37, 38) Source(32, 23) + SourceIndex(0) -8 >Emitted(37, 51) Source(32, 28) + SourceIndex(0) -9 >Emitted(37, 59) Source(42, 2) + SourceIndex(0) +1 >Emitted(38, 9) Source(42, 1) + SourceIndex(0) +2 >Emitted(38, 10) Source(42, 2) + SourceIndex(0) +3 >Emitted(38, 12) Source(32, 23) + SourceIndex(0) +4 >Emitted(38, 17) Source(32, 28) + SourceIndex(0) +5 >Emitted(38, 20) Source(32, 23) + SourceIndex(0) +6 >Emitted(38, 33) Source(32, 28) + SourceIndex(0) +7 >Emitted(38, 38) Source(32, 23) + SourceIndex(0) +8 >Emitted(38, 51) Source(32, 28) + SourceIndex(0) +9 >Emitted(38, 59) Source(42, 2) + SourceIndex(0) --- >>> })(Actions = Sample.Actions || (Sample.Actions = {})); 1->^^^^ @@ -484,15 +485,15 @@ sourceFile:recursiveClassReferenceTest.ts > } > } > } -1->Emitted(38, 5) Source(42, 1) + SourceIndex(0) -2 >Emitted(38, 6) Source(42, 2) + SourceIndex(0) -3 >Emitted(38, 8) Source(32, 15) + SourceIndex(0) -4 >Emitted(38, 15) Source(32, 22) + SourceIndex(0) -5 >Emitted(38, 18) Source(32, 15) + SourceIndex(0) -6 >Emitted(38, 32) Source(32, 22) + SourceIndex(0) -7 >Emitted(38, 37) Source(32, 15) + SourceIndex(0) -8 >Emitted(38, 51) Source(32, 22) + SourceIndex(0) -9 >Emitted(38, 59) Source(42, 2) + SourceIndex(0) +1->Emitted(39, 5) Source(42, 1) + SourceIndex(0) +2 >Emitted(39, 6) Source(42, 2) + SourceIndex(0) +3 >Emitted(39, 8) Source(32, 15) + SourceIndex(0) +4 >Emitted(39, 15) Source(32, 22) + SourceIndex(0) +5 >Emitted(39, 18) Source(32, 15) + SourceIndex(0) +6 >Emitted(39, 32) Source(32, 22) + SourceIndex(0) +7 >Emitted(39, 37) Source(32, 15) + SourceIndex(0) +8 >Emitted(39, 51) Source(32, 22) + SourceIndex(0) +9 >Emitted(39, 59) Source(42, 2) + SourceIndex(0) --- >>>})(Sample || (Sample = {})); 1 > @@ -519,13 +520,13 @@ sourceFile:recursiveClassReferenceTest.ts > } > } > } -1 >Emitted(39, 1) Source(42, 1) + SourceIndex(0) -2 >Emitted(39, 2) Source(42, 2) + SourceIndex(0) -3 >Emitted(39, 4) Source(32, 8) + SourceIndex(0) -4 >Emitted(39, 10) Source(32, 14) + SourceIndex(0) -5 >Emitted(39, 15) Source(32, 8) + SourceIndex(0) -6 >Emitted(39, 21) Source(32, 14) + SourceIndex(0) -7 >Emitted(39, 29) Source(42, 2) + SourceIndex(0) +1 >Emitted(40, 1) Source(42, 1) + SourceIndex(0) +2 >Emitted(40, 2) Source(42, 2) + SourceIndex(0) +3 >Emitted(40, 4) Source(32, 8) + SourceIndex(0) +4 >Emitted(40, 10) Source(32, 14) + SourceIndex(0) +5 >Emitted(40, 15) Source(32, 8) + SourceIndex(0) +6 >Emitted(40, 21) Source(32, 14) + SourceIndex(0) +7 >Emitted(40, 29) Source(42, 2) + SourceIndex(0) --- >>>(function (Sample) { 1 > @@ -536,9 +537,9 @@ sourceFile:recursiveClassReferenceTest.ts > 2 >module 3 > Sample -1 >Emitted(40, 1) Source(44, 1) + SourceIndex(0) -2 >Emitted(40, 12) Source(44, 8) + SourceIndex(0) -3 >Emitted(40, 18) Source(44, 14) + SourceIndex(0) +1 >Emitted(41, 1) Source(44, 1) + SourceIndex(0) +2 >Emitted(41, 12) Source(44, 8) + SourceIndex(0) +3 >Emitted(41, 18) Source(44, 14) + SourceIndex(0) --- >>> var Thing; 1 >^^^^ @@ -570,10 +571,10 @@ sourceFile:recursiveClassReferenceTest.ts > > } > } -1 >Emitted(41, 5) Source(44, 15) + SourceIndex(0) -2 >Emitted(41, 9) Source(44, 15) + SourceIndex(0) -3 >Emitted(41, 14) Source(44, 20) + SourceIndex(0) -4 >Emitted(41, 15) Source(64, 2) + SourceIndex(0) +1 >Emitted(42, 5) Source(44, 15) + SourceIndex(0) +2 >Emitted(42, 9) Source(44, 15) + SourceIndex(0) +3 >Emitted(42, 14) Source(44, 20) + SourceIndex(0) +4 >Emitted(42, 15) Source(64, 2) + SourceIndex(0) --- >>> (function (Thing) { 1->^^^^ @@ -583,9 +584,9 @@ sourceFile:recursiveClassReferenceTest.ts 1-> 2 > 3 > Thing -1->Emitted(42, 5) Source(44, 15) + SourceIndex(0) -2 >Emitted(42, 16) Source(44, 15) + SourceIndex(0) -3 >Emitted(42, 21) Source(44, 20) + SourceIndex(0) +1->Emitted(43, 5) Source(44, 15) + SourceIndex(0) +2 >Emitted(43, 16) Source(44, 15) + SourceIndex(0) +3 >Emitted(43, 21) Source(44, 20) + SourceIndex(0) --- >>> var Widgets; 1->^^^^^^^^ @@ -617,10 +618,10 @@ sourceFile:recursiveClassReferenceTest.ts > > } > } -1->Emitted(43, 9) Source(44, 21) + SourceIndex(0) -2 >Emitted(43, 13) Source(44, 21) + SourceIndex(0) -3 >Emitted(43, 20) Source(44, 28) + SourceIndex(0) -4 >Emitted(43, 21) Source(64, 2) + SourceIndex(0) +1->Emitted(44, 9) Source(44, 21) + SourceIndex(0) +2 >Emitted(44, 13) Source(44, 21) + SourceIndex(0) +3 >Emitted(44, 20) Source(44, 28) + SourceIndex(0) +4 >Emitted(44, 21) Source(64, 2) + SourceIndex(0) --- >>> (function (Widgets) { 1->^^^^^^^^ @@ -630,16 +631,16 @@ sourceFile:recursiveClassReferenceTest.ts 1-> 2 > 3 > Widgets -1->Emitted(44, 9) Source(44, 21) + SourceIndex(0) -2 >Emitted(44, 20) Source(44, 21) + SourceIndex(0) -3 >Emitted(44, 27) Source(44, 28) + SourceIndex(0) +1->Emitted(45, 9) Source(44, 21) + SourceIndex(0) +2 >Emitted(45, 20) Source(44, 21) + SourceIndex(0) +3 >Emitted(45, 27) Source(44, 28) + SourceIndex(0) --- >>> var FindWidget = /** @class */ (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { > -1->Emitted(45, 13) Source(45, 2) + SourceIndex(0) +1->Emitted(46, 13) Source(45, 2) + SourceIndex(0) --- >>> function FindWidget(codeThing) { 1->^^^^^^^^^^^^^^^^ @@ -654,9 +655,9 @@ sourceFile:recursiveClassReferenceTest.ts > 2 > constructor(private 3 > codeThing: Sample.Thing.ICodeThing -1->Emitted(46, 17) Source(50, 3) + SourceIndex(0) -2 >Emitted(46, 37) Source(50, 23) + SourceIndex(0) -3 >Emitted(46, 46) Source(50, 57) + SourceIndex(0) +1->Emitted(47, 17) Source(50, 3) + SourceIndex(0) +2 >Emitted(47, 37) Source(50, 23) + SourceIndex(0) +3 >Emitted(47, 46) Source(50, 57) + SourceIndex(0) --- >>> this.codeThing = codeThing; 1->^^^^^^^^^^^^^^^^^^^^ @@ -669,11 +670,11 @@ sourceFile:recursiveClassReferenceTest.ts 3 > 4 > codeThing 5 > : Sample.Thing.ICodeThing -1->Emitted(47, 21) Source(50, 23) + SourceIndex(0) -2 >Emitted(47, 35) Source(50, 32) + SourceIndex(0) -3 >Emitted(47, 38) Source(50, 23) + SourceIndex(0) -4 >Emitted(47, 47) Source(50, 32) + SourceIndex(0) -5 >Emitted(47, 48) Source(50, 57) + SourceIndex(0) +1->Emitted(48, 21) Source(50, 23) + SourceIndex(0) +2 >Emitted(48, 35) Source(50, 32) + SourceIndex(0) +3 >Emitted(48, 38) Source(50, 23) + SourceIndex(0) +4 >Emitted(48, 47) Source(50, 32) + SourceIndex(0) +5 >Emitted(48, 48) Source(50, 57) + SourceIndex(0) --- >>> this.domNode = null; 1 >^^^^^^^^^^^^^^^^^^^^ @@ -686,11 +687,11 @@ sourceFile:recursiveClassReferenceTest.ts 3 > :any = 4 > null 5 > ; -1 >Emitted(48, 21) Source(49, 11) + SourceIndex(0) -2 >Emitted(48, 33) Source(49, 18) + SourceIndex(0) -3 >Emitted(48, 36) Source(49, 25) + SourceIndex(0) -4 >Emitted(48, 40) Source(49, 29) + SourceIndex(0) -5 >Emitted(48, 41) Source(49, 30) + SourceIndex(0) +1 >Emitted(49, 21) Source(49, 11) + SourceIndex(0) +2 >Emitted(49, 33) Source(49, 18) + SourceIndex(0) +3 >Emitted(49, 36) Source(49, 25) + SourceIndex(0) +4 >Emitted(49, 40) Source(49, 29) + SourceIndex(0) +5 >Emitted(49, 41) Source(49, 30) + SourceIndex(0) --- >>> // scenario 1 1 >^^^^^^^^^^^^^^^^^^^^ @@ -700,8 +701,8 @@ sourceFile:recursiveClassReferenceTest.ts > constructor(private codeThing: Sample.Thing.ICodeThing) { > 2 > // scenario 1 -1 >Emitted(49, 21) Source(51, 7) + SourceIndex(0) -2 >Emitted(49, 34) Source(51, 20) + SourceIndex(0) +1 >Emitted(50, 21) Source(51, 7) + SourceIndex(0) +2 >Emitted(50, 34) Source(51, 20) + SourceIndex(0) --- >>> codeThing.addWidget("addWidget", this); 1->^^^^^^^^^^^^^^^^^^^^ @@ -725,28 +726,29 @@ sourceFile:recursiveClassReferenceTest.ts 8 > this 9 > ) 10> ; -1->Emitted(50, 21) Source(52, 7) + SourceIndex(0) -2 >Emitted(50, 30) Source(52, 16) + SourceIndex(0) -3 >Emitted(50, 31) Source(52, 17) + SourceIndex(0) -4 >Emitted(50, 40) Source(52, 26) + SourceIndex(0) -5 >Emitted(50, 41) Source(52, 27) + SourceIndex(0) -6 >Emitted(50, 52) Source(52, 38) + SourceIndex(0) -7 >Emitted(50, 54) Source(52, 40) + SourceIndex(0) -8 >Emitted(50, 58) Source(52, 44) + SourceIndex(0) -9 >Emitted(50, 59) Source(52, 45) + SourceIndex(0) -10>Emitted(50, 60) Source(52, 46) + SourceIndex(0) +1->Emitted(51, 21) Source(52, 7) + SourceIndex(0) +2 >Emitted(51, 30) Source(52, 16) + SourceIndex(0) +3 >Emitted(51, 31) Source(52, 17) + SourceIndex(0) +4 >Emitted(51, 40) Source(52, 26) + SourceIndex(0) +5 >Emitted(51, 41) Source(52, 27) + SourceIndex(0) +6 >Emitted(51, 52) Source(52, 38) + SourceIndex(0) +7 >Emitted(51, 54) Source(52, 40) + SourceIndex(0) +8 >Emitted(51, 58) Source(52, 44) + SourceIndex(0) +9 >Emitted(51, 59) Source(52, 45) + SourceIndex(0) +10>Emitted(51, 60) Source(52, 46) + SourceIndex(0) --- >>> } 1 >^^^^^^^^^^^^^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > > 2 > } -1 >Emitted(51, 17) Source(53, 3) + SourceIndex(0) -2 >Emitted(51, 18) Source(53, 4) + SourceIndex(0) +1 >Emitted(52, 17) Source(53, 3) + SourceIndex(0) +2 >Emitted(52, 18) Source(53, 4) + SourceIndex(0) --- ->>> FindWidget.prototype.gar = function (runner) { if (true) { +>>> var FindWidget_prototype = FindWidget.prototype; +>>> FindWidget_prototype.gar = function (runner) { if (true) { 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^ @@ -765,15 +767,15 @@ sourceFile:recursiveClassReferenceTest.ts 7 > if ( 8 > true 9 > ) -1->Emitted(52, 17) Source(47, 10) + SourceIndex(0) -2 >Emitted(52, 41) Source(47, 13) + SourceIndex(0) -3 >Emitted(52, 44) Source(47, 3) + SourceIndex(0) -4 >Emitted(52, 54) Source(47, 14) + SourceIndex(0) -5 >Emitted(52, 60) Source(47, 55) + SourceIndex(0) -6 >Emitted(52, 64) Source(47, 59) + SourceIndex(0) -7 >Emitted(52, 68) Source(47, 63) + SourceIndex(0) -8 >Emitted(52, 72) Source(47, 67) + SourceIndex(0) -9 >Emitted(52, 74) Source(47, 69) + SourceIndex(0) +1->Emitted(54, 17) Source(47, 10) + SourceIndex(0) +2 >Emitted(54, 41) Source(47, 13) + SourceIndex(0) +3 >Emitted(54, 44) Source(47, 3) + SourceIndex(0) +4 >Emitted(54, 54) Source(47, 14) + SourceIndex(0) +5 >Emitted(54, 60) Source(47, 55) + SourceIndex(0) +6 >Emitted(54, 64) Source(47, 59) + SourceIndex(0) +7 >Emitted(54, 68) Source(47, 63) + SourceIndex(0) +8 >Emitted(54, 72) Source(47, 67) + SourceIndex(0) +9 >Emitted(54, 74) Source(47, 69) + SourceIndex(0) --- >>> return runner(this); 1 >^^^^^^^^^^^^^^^^^^^^ @@ -790,13 +792,13 @@ sourceFile:recursiveClassReferenceTest.ts 5 > this 6 > ) 7 > ; -1 >Emitted(53, 21) Source(47, 70) + SourceIndex(0) -2 >Emitted(53, 28) Source(47, 77) + SourceIndex(0) -3 >Emitted(53, 34) Source(47, 83) + SourceIndex(0) -4 >Emitted(53, 35) Source(47, 84) + SourceIndex(0) -5 >Emitted(53, 39) Source(47, 88) + SourceIndex(0) -6 >Emitted(53, 40) Source(47, 89) + SourceIndex(0) -7 >Emitted(53, 41) Source(47, 90) + SourceIndex(0) +1 >Emitted(55, 21) Source(47, 70) + SourceIndex(0) +2 >Emitted(55, 28) Source(47, 77) + SourceIndex(0) +3 >Emitted(55, 34) Source(47, 83) + SourceIndex(0) +4 >Emitted(55, 35) Source(47, 84) + SourceIndex(0) +5 >Emitted(55, 39) Source(47, 88) + SourceIndex(0) +6 >Emitted(55, 40) Source(47, 89) + SourceIndex(0) +7 >Emitted(55, 41) Source(47, 90) + SourceIndex(0) --- >>> } }; 1 >^^^^^^^^^^^^^^^^^ @@ -806,11 +808,11 @@ sourceFile:recursiveClassReferenceTest.ts 1 >} 2 > 3 > } -1 >Emitted(54, 18) Source(47, 91) + SourceIndex(0) -2 >Emitted(54, 19) Source(47, 91) + SourceIndex(0) -3 >Emitted(54, 20) Source(47, 92) + SourceIndex(0) +1 >Emitted(56, 18) Source(47, 91) + SourceIndex(0) +2 >Emitted(56, 19) Source(47, 91) + SourceIndex(0) +3 >Emitted(56, 20) Source(47, 92) + SourceIndex(0) --- ->>> FindWidget.prototype.getDomNode = function () { +>>> FindWidget_prototype.getDomNode = function () { 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^ @@ -825,9 +827,9 @@ sourceFile:recursiveClassReferenceTest.ts > public 2 > getDomNode 3 > -1->Emitted(55, 17) Source(55, 10) + SourceIndex(0) -2 >Emitted(55, 48) Source(55, 20) + SourceIndex(0) -3 >Emitted(55, 51) Source(55, 3) + SourceIndex(0) +1->Emitted(57, 17) Source(55, 10) + SourceIndex(0) +2 >Emitted(57, 48) Source(55, 20) + SourceIndex(0) +3 >Emitted(57, 51) Source(55, 3) + SourceIndex(0) --- >>> return domNode; 1 >^^^^^^^^^^^^^^^^^^^^ @@ -839,10 +841,10 @@ sourceFile:recursiveClassReferenceTest.ts 2 > return 3 > domNode 4 > ; -1 >Emitted(56, 21) Source(56, 4) + SourceIndex(0) -2 >Emitted(56, 28) Source(56, 11) + SourceIndex(0) -3 >Emitted(56, 35) Source(56, 18) + SourceIndex(0) -4 >Emitted(56, 36) Source(56, 19) + SourceIndex(0) +1 >Emitted(58, 21) Source(56, 4) + SourceIndex(0) +2 >Emitted(58, 28) Source(56, 11) + SourceIndex(0) +3 >Emitted(58, 35) Source(56, 18) + SourceIndex(0) +4 >Emitted(58, 36) Source(56, 19) + SourceIndex(0) --- >>> }; 1 >^^^^^^^^^^^^^^^^ @@ -851,10 +853,10 @@ sourceFile:recursiveClassReferenceTest.ts 1 > > 2 > } -1 >Emitted(57, 17) Source(57, 3) + SourceIndex(0) -2 >Emitted(57, 18) Source(57, 4) + SourceIndex(0) +1 >Emitted(59, 17) Source(57, 3) + SourceIndex(0) +2 >Emitted(59, 18) Source(57, 4) + SourceIndex(0) --- ->>> FindWidget.prototype.destroy = function () { +>>> FindWidget_prototype.destroy = function () { 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^ @@ -863,9 +865,9 @@ sourceFile:recursiveClassReferenceTest.ts > public 2 > destroy 3 > -1->Emitted(58, 17) Source(59, 10) + SourceIndex(0) -2 >Emitted(58, 45) Source(59, 17) + SourceIndex(0) -3 >Emitted(58, 48) Source(59, 3) + SourceIndex(0) +1->Emitted(60, 17) Source(59, 10) + SourceIndex(0) +2 >Emitted(60, 45) Source(59, 17) + SourceIndex(0) +3 >Emitted(60, 48) Source(59, 3) + SourceIndex(0) --- >>> }; 1 >^^^^^^^^^^^^^^^^ @@ -875,8 +877,8 @@ sourceFile:recursiveClassReferenceTest.ts > > 2 > } -1 >Emitted(59, 17) Source(61, 3) + SourceIndex(0) -2 >Emitted(59, 18) Source(61, 4) + SourceIndex(0) +1 >Emitted(61, 17) Source(61, 3) + SourceIndex(0) +2 >Emitted(61, 18) Source(61, 4) + SourceIndex(0) --- >>> return FindWidget; 1->^^^^^^^^^^^^^^^^ @@ -885,8 +887,8 @@ sourceFile:recursiveClassReferenceTest.ts > > 2 > } -1->Emitted(60, 17) Source(63, 2) + SourceIndex(0) -2 >Emitted(60, 34) Source(63, 3) + SourceIndex(0) +1->Emitted(62, 17) Source(63, 2) + SourceIndex(0) +2 >Emitted(62, 34) Source(63, 3) + SourceIndex(0) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -916,10 +918,10 @@ sourceFile:recursiveClassReferenceTest.ts > } > > } -1 >Emitted(61, 13) Source(63, 2) + SourceIndex(0) -2 >Emitted(61, 14) Source(63, 3) + SourceIndex(0) -3 >Emitted(61, 14) Source(45, 2) + SourceIndex(0) -4 >Emitted(61, 18) Source(63, 3) + SourceIndex(0) +1 >Emitted(63, 13) Source(63, 2) + SourceIndex(0) +2 >Emitted(63, 14) Source(63, 3) + SourceIndex(0) +3 >Emitted(63, 14) Source(45, 2) + SourceIndex(0) +4 >Emitted(63, 18) Source(63, 3) + SourceIndex(0) --- >>> Widgets.FindWidget = FindWidget; 1->^^^^^^^^^^^^ @@ -949,10 +951,10 @@ sourceFile:recursiveClassReferenceTest.ts > > } 4 > -1->Emitted(62, 13) Source(45, 15) + SourceIndex(0) -2 >Emitted(62, 31) Source(45, 25) + SourceIndex(0) -3 >Emitted(62, 44) Source(63, 3) + SourceIndex(0) -4 >Emitted(62, 45) Source(63, 3) + SourceIndex(0) +1->Emitted(64, 13) Source(45, 15) + SourceIndex(0) +2 >Emitted(64, 31) Source(45, 25) + SourceIndex(0) +3 >Emitted(64, 44) Source(63, 3) + SourceIndex(0) +4 >Emitted(64, 45) Source(63, 3) + SourceIndex(0) --- >>> })(Widgets = Thing.Widgets || (Thing.Widgets = {})); 1->^^^^^^^^ @@ -994,15 +996,15 @@ sourceFile:recursiveClassReferenceTest.ts > > } > } -1->Emitted(63, 9) Source(64, 1) + SourceIndex(0) -2 >Emitted(63, 10) Source(64, 2) + SourceIndex(0) -3 >Emitted(63, 12) Source(44, 21) + SourceIndex(0) -4 >Emitted(63, 19) Source(44, 28) + SourceIndex(0) -5 >Emitted(63, 22) Source(44, 21) + SourceIndex(0) -6 >Emitted(63, 35) Source(44, 28) + SourceIndex(0) -7 >Emitted(63, 40) Source(44, 21) + SourceIndex(0) -8 >Emitted(63, 53) Source(44, 28) + SourceIndex(0) -9 >Emitted(63, 61) Source(64, 2) + SourceIndex(0) +1->Emitted(65, 9) Source(64, 1) + SourceIndex(0) +2 >Emitted(65, 10) Source(64, 2) + SourceIndex(0) +3 >Emitted(65, 12) Source(44, 21) + SourceIndex(0) +4 >Emitted(65, 19) Source(44, 28) + SourceIndex(0) +5 >Emitted(65, 22) Source(44, 21) + SourceIndex(0) +6 >Emitted(65, 35) Source(44, 28) + SourceIndex(0) +7 >Emitted(65, 40) Source(44, 21) + SourceIndex(0) +8 >Emitted(65, 53) Source(44, 28) + SourceIndex(0) +9 >Emitted(65, 61) Source(64, 2) + SourceIndex(0) --- >>> })(Thing = Sample.Thing || (Sample.Thing = {})); 1 >^^^^ @@ -1043,15 +1045,15 @@ sourceFile:recursiveClassReferenceTest.ts > > } > } -1 >Emitted(64, 5) Source(64, 1) + SourceIndex(0) -2 >Emitted(64, 6) Source(64, 2) + SourceIndex(0) -3 >Emitted(64, 8) Source(44, 15) + SourceIndex(0) -4 >Emitted(64, 13) Source(44, 20) + SourceIndex(0) -5 >Emitted(64, 16) Source(44, 15) + SourceIndex(0) -6 >Emitted(64, 28) Source(44, 20) + SourceIndex(0) -7 >Emitted(64, 33) Source(44, 15) + SourceIndex(0) -8 >Emitted(64, 45) Source(44, 20) + SourceIndex(0) -9 >Emitted(64, 53) Source(64, 2) + SourceIndex(0) +1 >Emitted(66, 5) Source(64, 1) + SourceIndex(0) +2 >Emitted(66, 6) Source(64, 2) + SourceIndex(0) +3 >Emitted(66, 8) Source(44, 15) + SourceIndex(0) +4 >Emitted(66, 13) Source(44, 20) + SourceIndex(0) +5 >Emitted(66, 16) Source(44, 15) + SourceIndex(0) +6 >Emitted(66, 28) Source(44, 20) + SourceIndex(0) +7 >Emitted(66, 33) Source(44, 15) + SourceIndex(0) +8 >Emitted(66, 45) Source(44, 20) + SourceIndex(0) +9 >Emitted(66, 53) Source(64, 2) + SourceIndex(0) --- >>>})(Sample || (Sample = {})); 1 > @@ -1089,13 +1091,13 @@ sourceFile:recursiveClassReferenceTest.ts > > } > } -1 >Emitted(65, 1) Source(64, 1) + SourceIndex(0) -2 >Emitted(65, 2) Source(64, 2) + SourceIndex(0) -3 >Emitted(65, 4) Source(44, 8) + SourceIndex(0) -4 >Emitted(65, 10) Source(44, 14) + SourceIndex(0) -5 >Emitted(65, 15) Source(44, 8) + SourceIndex(0) -6 >Emitted(65, 21) Source(44, 14) + SourceIndex(0) -7 >Emitted(65, 29) Source(64, 2) + SourceIndex(0) +1 >Emitted(67, 1) Source(64, 1) + SourceIndex(0) +2 >Emitted(67, 2) Source(64, 2) + SourceIndex(0) +3 >Emitted(67, 4) Source(44, 8) + SourceIndex(0) +4 >Emitted(67, 10) Source(44, 14) + SourceIndex(0) +5 >Emitted(67, 15) Source(44, 8) + SourceIndex(0) +6 >Emitted(67, 21) Source(44, 14) + SourceIndex(0) +7 >Emitted(67, 29) Source(64, 2) + SourceIndex(0) --- >>>var AbstractMode = /** @class */ (function () { 1-> @@ -1104,13 +1106,13 @@ sourceFile:recursiveClassReferenceTest.ts > >interface IMode { getInitialState(): IState;} > -1->Emitted(66, 1) Source(67, 1) + SourceIndex(0) +1->Emitted(68, 1) Source(67, 1) + SourceIndex(0) --- >>> function AbstractMode() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(67, 5) Source(67, 1) + SourceIndex(0) +1->Emitted(69, 5) Source(67, 1) + SourceIndex(0) --- >>> } 1->^^^^ @@ -1118,8 +1120,8 @@ sourceFile:recursiveClassReferenceTest.ts 3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1->class AbstractMode implements IMode { public getInitialState(): IState { return null;} 2 > } -1->Emitted(68, 5) Source(67, 88) + SourceIndex(0) -2 >Emitted(68, 6) Source(67, 89) + SourceIndex(0) +1->Emitted(70, 5) Source(67, 88) + SourceIndex(0) +2 >Emitted(70, 6) Source(67, 89) + SourceIndex(0) --- >>> AbstractMode.prototype.getInitialState = function () { return null; }; 1->^^^^ @@ -1140,23 +1142,23 @@ sourceFile:recursiveClassReferenceTest.ts 7 > ; 8 > 9 > } -1->Emitted(69, 5) Source(67, 46) + SourceIndex(0) -2 >Emitted(69, 43) Source(67, 61) + SourceIndex(0) -3 >Emitted(69, 46) Source(67, 39) + SourceIndex(0) -4 >Emitted(69, 60) Source(67, 74) + SourceIndex(0) -5 >Emitted(69, 67) Source(67, 81) + SourceIndex(0) -6 >Emitted(69, 71) Source(67, 85) + SourceIndex(0) -7 >Emitted(69, 72) Source(67, 86) + SourceIndex(0) -8 >Emitted(69, 73) Source(67, 86) + SourceIndex(0) -9 >Emitted(69, 74) Source(67, 87) + SourceIndex(0) +1->Emitted(71, 5) Source(67, 46) + SourceIndex(0) +2 >Emitted(71, 43) Source(67, 61) + SourceIndex(0) +3 >Emitted(71, 46) Source(67, 39) + SourceIndex(0) +4 >Emitted(71, 60) Source(67, 74) + SourceIndex(0) +5 >Emitted(71, 67) Source(67, 81) + SourceIndex(0) +6 >Emitted(71, 71) Source(67, 85) + SourceIndex(0) +7 >Emitted(71, 72) Source(67, 86) + SourceIndex(0) +8 >Emitted(71, 73) Source(67, 86) + SourceIndex(0) +9 >Emitted(71, 74) Source(67, 87) + SourceIndex(0) --- >>> return AbstractMode; 1 >^^^^ 2 > ^^^^^^^^^^^^^^^^^^^ 1 > 2 > } -1 >Emitted(70, 5) Source(67, 88) + SourceIndex(0) -2 >Emitted(70, 24) Source(67, 89) + SourceIndex(0) +1 >Emitted(72, 5) Source(67, 88) + SourceIndex(0) +2 >Emitted(72, 24) Source(67, 89) + SourceIndex(0) --- >>>}()); 1 > @@ -1168,10 +1170,10 @@ sourceFile:recursiveClassReferenceTest.ts 2 >} 3 > 4 > class AbstractMode implements IMode { public getInitialState(): IState { return null;} } -1 >Emitted(71, 1) Source(67, 88) + SourceIndex(0) -2 >Emitted(71, 2) Source(67, 89) + SourceIndex(0) -3 >Emitted(71, 2) Source(67, 1) + SourceIndex(0) -4 >Emitted(71, 6) Source(67, 89) + SourceIndex(0) +1 >Emitted(73, 1) Source(67, 88) + SourceIndex(0) +2 >Emitted(73, 2) Source(67, 89) + SourceIndex(0) +3 >Emitted(73, 2) Source(67, 1) + SourceIndex(0) +4 >Emitted(73, 6) Source(67, 89) + SourceIndex(0) --- >>>(function (Sample) { 1-> @@ -1189,9 +1191,9 @@ sourceFile:recursiveClassReferenceTest.ts > 2 >module 3 > Sample -1->Emitted(72, 1) Source(76, 1) + SourceIndex(0) -2 >Emitted(72, 12) Source(76, 8) + SourceIndex(0) -3 >Emitted(72, 18) Source(76, 14) + SourceIndex(0) +1->Emitted(74, 1) Source(76, 1) + SourceIndex(0) +2 >Emitted(74, 12) Source(76, 8) + SourceIndex(0) +3 >Emitted(74, 18) Source(76, 14) + SourceIndex(0) --- >>> var Thing; 1 >^^^^ @@ -1227,10 +1229,10 @@ sourceFile:recursiveClassReferenceTest.ts > > } > } -1 >Emitted(73, 5) Source(76, 15) + SourceIndex(0) -2 >Emitted(73, 9) Source(76, 15) + SourceIndex(0) -3 >Emitted(73, 14) Source(76, 20) + SourceIndex(0) -4 >Emitted(73, 15) Source(100, 2) + SourceIndex(0) +1 >Emitted(75, 5) Source(76, 15) + SourceIndex(0) +2 >Emitted(75, 9) Source(76, 15) + SourceIndex(0) +3 >Emitted(75, 14) Source(76, 20) + SourceIndex(0) +4 >Emitted(75, 15) Source(100, 2) + SourceIndex(0) --- >>> (function (Thing) { 1->^^^^ @@ -1240,9 +1242,9 @@ sourceFile:recursiveClassReferenceTest.ts 1-> 2 > 3 > Thing -1->Emitted(74, 5) Source(76, 15) + SourceIndex(0) -2 >Emitted(74, 16) Source(76, 15) + SourceIndex(0) -3 >Emitted(74, 21) Source(76, 20) + SourceIndex(0) +1->Emitted(76, 5) Source(76, 15) + SourceIndex(0) +2 >Emitted(76, 16) Source(76, 15) + SourceIndex(0) +3 >Emitted(76, 21) Source(76, 20) + SourceIndex(0) --- >>> var Languages; 1->^^^^^^^^ @@ -1278,10 +1280,10 @@ sourceFile:recursiveClassReferenceTest.ts > > } > } -1->Emitted(75, 9) Source(76, 21) + SourceIndex(0) -2 >Emitted(75, 13) Source(76, 21) + SourceIndex(0) -3 >Emitted(75, 22) Source(76, 30) + SourceIndex(0) -4 >Emitted(75, 23) Source(100, 2) + SourceIndex(0) +1->Emitted(77, 9) Source(76, 21) + SourceIndex(0) +2 >Emitted(77, 13) Source(76, 21) + SourceIndex(0) +3 >Emitted(77, 22) Source(76, 30) + SourceIndex(0) +4 >Emitted(77, 23) Source(100, 2) + SourceIndex(0) --- >>> (function (Languages) { 1->^^^^^^^^ @@ -1290,9 +1292,9 @@ sourceFile:recursiveClassReferenceTest.ts 1-> 2 > 3 > Languages -1->Emitted(76, 9) Source(76, 21) + SourceIndex(0) -2 >Emitted(76, 20) Source(76, 21) + SourceIndex(0) -3 >Emitted(76, 29) Source(76, 30) + SourceIndex(0) +1->Emitted(78, 9) Source(76, 21) + SourceIndex(0) +2 >Emitted(78, 20) Source(76, 21) + SourceIndex(0) +3 >Emitted(78, 29) Source(76, 30) + SourceIndex(0) --- >>> var PlainText; 1 >^^^^^^^^^^^^ @@ -1328,10 +1330,10 @@ sourceFile:recursiveClassReferenceTest.ts > > } > } -1 >Emitted(77, 13) Source(76, 31) + SourceIndex(0) -2 >Emitted(77, 17) Source(76, 31) + SourceIndex(0) -3 >Emitted(77, 26) Source(76, 40) + SourceIndex(0) -4 >Emitted(77, 27) Source(100, 2) + SourceIndex(0) +1 >Emitted(79, 13) Source(76, 31) + SourceIndex(0) +2 >Emitted(79, 17) Source(76, 31) + SourceIndex(0) +3 >Emitted(79, 26) Source(76, 40) + SourceIndex(0) +4 >Emitted(79, 27) Source(100, 2) + SourceIndex(0) --- >>> (function (PlainText) { 1->^^^^^^^^^^^^ @@ -1341,9 +1343,9 @@ sourceFile:recursiveClassReferenceTest.ts 1-> 2 > 3 > PlainText -1->Emitted(78, 13) Source(76, 31) + SourceIndex(0) -2 >Emitted(78, 24) Source(76, 31) + SourceIndex(0) -3 >Emitted(78, 33) Source(76, 40) + SourceIndex(0) +1->Emitted(80, 13) Source(76, 31) + SourceIndex(0) +2 >Emitted(80, 24) Source(76, 31) + SourceIndex(0) +3 >Emitted(80, 33) Source(76, 40) + SourceIndex(0) --- >>> var State = /** @class */ (function () { 1->^^^^^^^^^^^^^^^^ @@ -1351,7 +1353,7 @@ sourceFile:recursiveClassReferenceTest.ts 1-> { > > -1->Emitted(79, 17) Source(78, 2) + SourceIndex(0) +1->Emitted(81, 17) Source(78, 2) + SourceIndex(0) --- >>> function State(mode) { 1->^^^^^^^^^^^^^^^^^^^^ @@ -1362,9 +1364,9 @@ sourceFile:recursiveClassReferenceTest.ts > 2 > constructor(private 3 > mode: IMode -1->Emitted(80, 21) Source(79, 9) + SourceIndex(0) -2 >Emitted(80, 36) Source(79, 29) + SourceIndex(0) -3 >Emitted(80, 40) Source(79, 40) + SourceIndex(0) +1->Emitted(82, 21) Source(79, 9) + SourceIndex(0) +2 >Emitted(82, 36) Source(79, 29) + SourceIndex(0) +3 >Emitted(82, 40) Source(79, 40) + SourceIndex(0) --- >>> this.mode = mode; 1->^^^^^^^^^^^^^^^^^^^^^^^^ @@ -1377,22 +1379,23 @@ sourceFile:recursiveClassReferenceTest.ts 3 > 4 > mode 5 > : IMode -1->Emitted(81, 25) Source(79, 29) + SourceIndex(0) -2 >Emitted(81, 34) Source(79, 33) + SourceIndex(0) -3 >Emitted(81, 37) Source(79, 29) + SourceIndex(0) -4 >Emitted(81, 41) Source(79, 33) + SourceIndex(0) -5 >Emitted(81, 42) Source(79, 40) + SourceIndex(0) +1->Emitted(83, 25) Source(79, 29) + SourceIndex(0) +2 >Emitted(83, 34) Source(79, 33) + SourceIndex(0) +3 >Emitted(83, 37) Source(79, 29) + SourceIndex(0) +4 >Emitted(83, 41) Source(79, 33) + SourceIndex(0) +5 >Emitted(83, 42) Source(79, 40) + SourceIndex(0) --- >>> } 1 >^^^^^^^^^^^^^^^^^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 >) { 2 > } -1 >Emitted(82, 21) Source(79, 44) + SourceIndex(0) -2 >Emitted(82, 22) Source(79, 45) + SourceIndex(0) +1 >Emitted(84, 21) Source(79, 44) + SourceIndex(0) +2 >Emitted(84, 22) Source(79, 45) + SourceIndex(0) --- ->>> State.prototype.clone = function () { +>>> var State_prototype = State.prototype; +>>> State_prototype.clone = function () { 1->^^^^^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^ @@ -1400,9 +1403,9 @@ sourceFile:recursiveClassReferenceTest.ts > public 2 > clone 3 > -1->Emitted(83, 21) Source(80, 10) + SourceIndex(0) -2 >Emitted(83, 42) Source(80, 15) + SourceIndex(0) -3 >Emitted(83, 45) Source(80, 3) + SourceIndex(0) +1->Emitted(86, 21) Source(80, 10) + SourceIndex(0) +2 >Emitted(86, 42) Source(80, 15) + SourceIndex(0) +3 >Emitted(86, 45) Source(80, 3) + SourceIndex(0) --- >>> return this; 1 >^^^^^^^^^^^^^^^^^^^^^^^^ @@ -1414,10 +1417,10 @@ sourceFile:recursiveClassReferenceTest.ts 2 > return 3 > this 4 > ; -1 >Emitted(84, 25) Source(81, 4) + SourceIndex(0) -2 >Emitted(84, 32) Source(81, 11) + SourceIndex(0) -3 >Emitted(84, 36) Source(81, 15) + SourceIndex(0) -4 >Emitted(84, 37) Source(81, 16) + SourceIndex(0) +1 >Emitted(87, 25) Source(81, 4) + SourceIndex(0) +2 >Emitted(87, 32) Source(81, 11) + SourceIndex(0) +3 >Emitted(87, 36) Source(81, 15) + SourceIndex(0) +4 >Emitted(87, 37) Source(81, 16) + SourceIndex(0) --- >>> }; 1 >^^^^^^^^^^^^^^^^^^^^ @@ -1426,10 +1429,10 @@ sourceFile:recursiveClassReferenceTest.ts 1 > > 2 > } -1 >Emitted(85, 21) Source(82, 3) + SourceIndex(0) -2 >Emitted(85, 22) Source(82, 4) + SourceIndex(0) +1 >Emitted(88, 21) Source(82, 3) + SourceIndex(0) +2 >Emitted(88, 22) Source(82, 4) + SourceIndex(0) --- ->>> State.prototype.equals = function (other) { +>>> State_prototype.equals = function (other) { 1->^^^^^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^ @@ -1442,11 +1445,11 @@ sourceFile:recursiveClassReferenceTest.ts 3 > 4 > public equals( 5 > other:IState -1->Emitted(86, 21) Source(84, 10) + SourceIndex(0) -2 >Emitted(86, 43) Source(84, 16) + SourceIndex(0) -3 >Emitted(86, 46) Source(84, 3) + SourceIndex(0) -4 >Emitted(86, 56) Source(84, 17) + SourceIndex(0) -5 >Emitted(86, 61) Source(84, 29) + SourceIndex(0) +1->Emitted(89, 21) Source(84, 10) + SourceIndex(0) +2 >Emitted(89, 43) Source(84, 16) + SourceIndex(0) +3 >Emitted(89, 46) Source(84, 3) + SourceIndex(0) +4 >Emitted(89, 56) Source(84, 17) + SourceIndex(0) +5 >Emitted(89, 61) Source(84, 29) + SourceIndex(0) --- >>> return this === other; 1 >^^^^^^^^^^^^^^^^^^^^^^^^ @@ -1462,12 +1465,12 @@ sourceFile:recursiveClassReferenceTest.ts 4 > === 5 > other 6 > ; -1 >Emitted(87, 25) Source(85, 4) + SourceIndex(0) -2 >Emitted(87, 32) Source(85, 11) + SourceIndex(0) -3 >Emitted(87, 36) Source(85, 15) + SourceIndex(0) -4 >Emitted(87, 41) Source(85, 20) + SourceIndex(0) -5 >Emitted(87, 46) Source(85, 25) + SourceIndex(0) -6 >Emitted(87, 47) Source(85, 26) + SourceIndex(0) +1 >Emitted(90, 25) Source(85, 4) + SourceIndex(0) +2 >Emitted(90, 32) Source(85, 11) + SourceIndex(0) +3 >Emitted(90, 36) Source(85, 15) + SourceIndex(0) +4 >Emitted(90, 41) Source(85, 20) + SourceIndex(0) +5 >Emitted(90, 46) Source(85, 25) + SourceIndex(0) +6 >Emitted(90, 47) Source(85, 26) + SourceIndex(0) --- >>> }; 1 >^^^^^^^^^^^^^^^^^^^^ @@ -1476,10 +1479,10 @@ sourceFile:recursiveClassReferenceTest.ts 1 > > 2 > } -1 >Emitted(88, 21) Source(86, 3) + SourceIndex(0) -2 >Emitted(88, 22) Source(86, 4) + SourceIndex(0) +1 >Emitted(91, 21) Source(86, 3) + SourceIndex(0) +2 >Emitted(91, 22) Source(86, 4) + SourceIndex(0) --- ->>> State.prototype.getMode = function () { return mode; }; +>>> State_prototype.getMode = function () { return mode; }; 1->^^^^^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^ @@ -1500,15 +1503,15 @@ sourceFile:recursiveClassReferenceTest.ts 7 > ; 8 > 9 > } -1->Emitted(89, 21) Source(88, 10) + SourceIndex(0) -2 >Emitted(89, 44) Source(88, 17) + SourceIndex(0) -3 >Emitted(89, 47) Source(88, 3) + SourceIndex(0) -4 >Emitted(89, 61) Source(88, 29) + SourceIndex(0) -5 >Emitted(89, 68) Source(88, 36) + SourceIndex(0) -6 >Emitted(89, 72) Source(88, 40) + SourceIndex(0) -7 >Emitted(89, 73) Source(88, 41) + SourceIndex(0) -8 >Emitted(89, 74) Source(88, 42) + SourceIndex(0) -9 >Emitted(89, 75) Source(88, 43) + SourceIndex(0) +1->Emitted(92, 21) Source(88, 10) + SourceIndex(0) +2 >Emitted(92, 44) Source(88, 17) + SourceIndex(0) +3 >Emitted(92, 47) Source(88, 3) + SourceIndex(0) +4 >Emitted(92, 61) Source(88, 29) + SourceIndex(0) +5 >Emitted(92, 68) Source(88, 36) + SourceIndex(0) +6 >Emitted(92, 72) Source(88, 40) + SourceIndex(0) +7 >Emitted(92, 73) Source(88, 41) + SourceIndex(0) +8 >Emitted(92, 74) Source(88, 42) + SourceIndex(0) +9 >Emitted(92, 75) Source(88, 43) + SourceIndex(0) --- >>> return State; 1 >^^^^^^^^^^^^^^^^^^^^ @@ -1516,8 +1519,8 @@ sourceFile:recursiveClassReferenceTest.ts 1 > > 2 > } -1 >Emitted(90, 21) Source(89, 2) + SourceIndex(0) -2 >Emitted(90, 33) Source(89, 3) + SourceIndex(0) +1 >Emitted(93, 21) Source(89, 2) + SourceIndex(0) +2 >Emitted(93, 33) Source(89, 3) + SourceIndex(0) --- >>> }()); 1 >^^^^^^^^^^^^^^^^ @@ -1540,10 +1543,10 @@ sourceFile:recursiveClassReferenceTest.ts > > public getMode(): IMode { return mode; } > } -1 >Emitted(91, 17) Source(89, 2) + SourceIndex(0) -2 >Emitted(91, 18) Source(89, 3) + SourceIndex(0) -3 >Emitted(91, 18) Source(78, 2) + SourceIndex(0) -4 >Emitted(91, 22) Source(89, 3) + SourceIndex(0) +1 >Emitted(94, 17) Source(89, 2) + SourceIndex(0) +2 >Emitted(94, 18) Source(89, 3) + SourceIndex(0) +3 >Emitted(94, 18) Source(78, 2) + SourceIndex(0) +4 >Emitted(94, 22) Source(89, 3) + SourceIndex(0) --- >>> PlainText.State = State; 1->^^^^^^^^^^^^^^^^ @@ -1566,10 +1569,10 @@ sourceFile:recursiveClassReferenceTest.ts > public getMode(): IMode { return mode; } > } 4 > -1->Emitted(92, 17) Source(78, 15) + SourceIndex(0) -2 >Emitted(92, 32) Source(78, 20) + SourceIndex(0) -3 >Emitted(92, 40) Source(89, 3) + SourceIndex(0) -4 >Emitted(92, 41) Source(89, 3) + SourceIndex(0) +1->Emitted(95, 17) Source(78, 15) + SourceIndex(0) +2 >Emitted(95, 32) Source(78, 20) + SourceIndex(0) +3 >Emitted(95, 40) Source(89, 3) + SourceIndex(0) +4 >Emitted(95, 41) Source(89, 3) + SourceIndex(0) --- >>> var Mode = /** @class */ (function (_super) { 1->^^^^^^^^^^^^^^^^ @@ -1577,21 +1580,21 @@ sourceFile:recursiveClassReferenceTest.ts 1-> > > -1->Emitted(93, 17) Source(91, 2) + SourceIndex(0) +1->Emitted(96, 17) Source(91, 2) + SourceIndex(0) --- >>> __extends(Mode, _super); 1->^^^^^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^ 1->export class Mode extends 2 > AbstractMode -1->Emitted(94, 21) Source(91, 28) + SourceIndex(0) -2 >Emitted(94, 45) Source(91, 40) + SourceIndex(0) +1->Emitted(97, 21) Source(91, 28) + SourceIndex(0) +2 >Emitted(97, 45) Source(91, 40) + SourceIndex(0) --- >>> function Mode() { 1 >^^^^^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(95, 21) Source(91, 2) + SourceIndex(0) +1 >Emitted(98, 21) Source(91, 2) + SourceIndex(0) --- >>> return _super !== null && _super.apply(this, arguments) || this; >>> } @@ -1608,8 +1611,8 @@ sourceFile:recursiveClassReferenceTest.ts > > 2 > } -1->Emitted(97, 21) Source(99, 2) + SourceIndex(0) -2 >Emitted(97, 22) Source(99, 3) + SourceIndex(0) +1->Emitted(100, 21) Source(99, 2) + SourceIndex(0) +2 >Emitted(100, 22) Source(99, 3) + SourceIndex(0) --- >>> // scenario 2 1->^^^^^^^^^^^^^^^^^^^^ @@ -1617,8 +1620,8 @@ sourceFile:recursiveClassReferenceTest.ts 3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> 2 > // scenario 2 -1->Emitted(98, 21) Source(93, 3) + SourceIndex(0) -2 >Emitted(98, 34) Source(93, 16) + SourceIndex(0) +1->Emitted(101, 21) Source(93, 3) + SourceIndex(0) +2 >Emitted(101, 34) Source(93, 16) + SourceIndex(0) --- >>> Mode.prototype.getInitialState = function () { 1->^^^^^^^^^^^^^^^^^^^^ @@ -1628,9 +1631,9 @@ sourceFile:recursiveClassReferenceTest.ts > public 2 > getInitialState 3 > -1->Emitted(99, 21) Source(94, 10) + SourceIndex(0) -2 >Emitted(99, 51) Source(94, 25) + SourceIndex(0) -3 >Emitted(99, 54) Source(94, 3) + SourceIndex(0) +1->Emitted(102, 21) Source(94, 10) + SourceIndex(0) +2 >Emitted(102, 51) Source(94, 25) + SourceIndex(0) +3 >Emitted(102, 54) Source(94, 3) + SourceIndex(0) --- >>> return new State(self); 1 >^^^^^^^^^^^^^^^^^^^^^^^^ @@ -1650,14 +1653,14 @@ sourceFile:recursiveClassReferenceTest.ts 6 > self 7 > ) 8 > ; -1 >Emitted(100, 25) Source(95, 4) + SourceIndex(0) -2 >Emitted(100, 32) Source(95, 11) + SourceIndex(0) -3 >Emitted(100, 36) Source(95, 15) + SourceIndex(0) -4 >Emitted(100, 41) Source(95, 20) + SourceIndex(0) -5 >Emitted(100, 42) Source(95, 21) + SourceIndex(0) -6 >Emitted(100, 46) Source(95, 25) + SourceIndex(0) -7 >Emitted(100, 47) Source(95, 26) + SourceIndex(0) -8 >Emitted(100, 48) Source(95, 27) + SourceIndex(0) +1 >Emitted(103, 25) Source(95, 4) + SourceIndex(0) +2 >Emitted(103, 32) Source(95, 11) + SourceIndex(0) +3 >Emitted(103, 36) Source(95, 15) + SourceIndex(0) +4 >Emitted(103, 41) Source(95, 20) + SourceIndex(0) +5 >Emitted(103, 42) Source(95, 21) + SourceIndex(0) +6 >Emitted(103, 46) Source(95, 25) + SourceIndex(0) +7 >Emitted(103, 47) Source(95, 26) + SourceIndex(0) +8 >Emitted(103, 48) Source(95, 27) + SourceIndex(0) --- >>> }; 1 >^^^^^^^^^^^^^^^^^^^^ @@ -1666,8 +1669,8 @@ sourceFile:recursiveClassReferenceTest.ts 1 > > 2 > } -1 >Emitted(101, 21) Source(96, 3) + SourceIndex(0) -2 >Emitted(101, 22) Source(96, 4) + SourceIndex(0) +1 >Emitted(104, 21) Source(96, 3) + SourceIndex(0) +2 >Emitted(104, 22) Source(96, 4) + SourceIndex(0) --- >>> return Mode; 1->^^^^^^^^^^^^^^^^^^^^ @@ -1678,8 +1681,8 @@ sourceFile:recursiveClassReferenceTest.ts > > 2 > } -1->Emitted(102, 21) Source(99, 2) + SourceIndex(0) -2 >Emitted(102, 32) Source(99, 3) + SourceIndex(0) +1->Emitted(105, 21) Source(99, 2) + SourceIndex(0) +2 >Emitted(105, 32) Source(99, 3) + SourceIndex(0) --- >>> }(AbstractMode)); 1->^^^^^^^^^^^^^^^^ @@ -1703,12 +1706,12 @@ sourceFile:recursiveClassReferenceTest.ts > > > } -1->Emitted(103, 17) Source(99, 2) + SourceIndex(0) -2 >Emitted(103, 18) Source(99, 3) + SourceIndex(0) -3 >Emitted(103, 18) Source(91, 2) + SourceIndex(0) -4 >Emitted(103, 19) Source(91, 28) + SourceIndex(0) -5 >Emitted(103, 31) Source(91, 40) + SourceIndex(0) -6 >Emitted(103, 34) Source(99, 3) + SourceIndex(0) +1->Emitted(106, 17) Source(99, 2) + SourceIndex(0) +2 >Emitted(106, 18) Source(99, 3) + SourceIndex(0) +3 >Emitted(106, 18) Source(91, 2) + SourceIndex(0) +4 >Emitted(106, 19) Source(91, 28) + SourceIndex(0) +5 >Emitted(106, 31) Source(91, 40) + SourceIndex(0) +6 >Emitted(106, 34) Source(99, 3) + SourceIndex(0) --- >>> PlainText.Mode = Mode; 1->^^^^^^^^^^^^^^^^ @@ -1728,10 +1731,10 @@ sourceFile:recursiveClassReferenceTest.ts > > } 4 > -1->Emitted(104, 17) Source(91, 15) + SourceIndex(0) -2 >Emitted(104, 31) Source(91, 19) + SourceIndex(0) -3 >Emitted(104, 38) Source(99, 3) + SourceIndex(0) -4 >Emitted(104, 39) Source(99, 3) + SourceIndex(0) +1->Emitted(107, 17) Source(91, 15) + SourceIndex(0) +2 >Emitted(107, 31) Source(91, 19) + SourceIndex(0) +3 >Emitted(107, 38) Source(99, 3) + SourceIndex(0) +4 >Emitted(107, 39) Source(99, 3) + SourceIndex(0) --- >>> })(PlainText = Languages.PlainText || (Languages.PlainText = {})); 1->^^^^^^^^^^^^ @@ -1777,15 +1780,15 @@ sourceFile:recursiveClassReferenceTest.ts > > } > } -1->Emitted(105, 13) Source(100, 1) + SourceIndex(0) -2 >Emitted(105, 14) Source(100, 2) + SourceIndex(0) -3 >Emitted(105, 16) Source(76, 31) + SourceIndex(0) -4 >Emitted(105, 25) Source(76, 40) + SourceIndex(0) -5 >Emitted(105, 28) Source(76, 31) + SourceIndex(0) -6 >Emitted(105, 47) Source(76, 40) + SourceIndex(0) -7 >Emitted(105, 52) Source(76, 31) + SourceIndex(0) -8 >Emitted(105, 71) Source(76, 40) + SourceIndex(0) -9 >Emitted(105, 79) Source(100, 2) + SourceIndex(0) +1->Emitted(108, 13) Source(100, 1) + SourceIndex(0) +2 >Emitted(108, 14) Source(100, 2) + SourceIndex(0) +3 >Emitted(108, 16) Source(76, 31) + SourceIndex(0) +4 >Emitted(108, 25) Source(76, 40) + SourceIndex(0) +5 >Emitted(108, 28) Source(76, 31) + SourceIndex(0) +6 >Emitted(108, 47) Source(76, 40) + SourceIndex(0) +7 >Emitted(108, 52) Source(76, 31) + SourceIndex(0) +8 >Emitted(108, 71) Source(76, 40) + SourceIndex(0) +9 >Emitted(108, 79) Source(100, 2) + SourceIndex(0) --- >>> })(Languages = Thing.Languages || (Thing.Languages = {})); 1 >^^^^^^^^ @@ -1830,15 +1833,15 @@ sourceFile:recursiveClassReferenceTest.ts > > } > } -1 >Emitted(106, 9) Source(100, 1) + SourceIndex(0) -2 >Emitted(106, 10) Source(100, 2) + SourceIndex(0) -3 >Emitted(106, 12) Source(76, 21) + SourceIndex(0) -4 >Emitted(106, 21) Source(76, 30) + SourceIndex(0) -5 >Emitted(106, 24) Source(76, 21) + SourceIndex(0) -6 >Emitted(106, 39) Source(76, 30) + SourceIndex(0) -7 >Emitted(106, 44) Source(76, 21) + SourceIndex(0) -8 >Emitted(106, 59) Source(76, 30) + SourceIndex(0) -9 >Emitted(106, 67) Source(100, 2) + SourceIndex(0) +1 >Emitted(109, 9) Source(100, 1) + SourceIndex(0) +2 >Emitted(109, 10) Source(100, 2) + SourceIndex(0) +3 >Emitted(109, 12) Source(76, 21) + SourceIndex(0) +4 >Emitted(109, 21) Source(76, 30) + SourceIndex(0) +5 >Emitted(109, 24) Source(76, 21) + SourceIndex(0) +6 >Emitted(109, 39) Source(76, 30) + SourceIndex(0) +7 >Emitted(109, 44) Source(76, 21) + SourceIndex(0) +8 >Emitted(109, 59) Source(76, 30) + SourceIndex(0) +9 >Emitted(109, 67) Source(100, 2) + SourceIndex(0) --- >>> })(Thing = Sample.Thing || (Sample.Thing = {})); 1 >^^^^ @@ -1883,15 +1886,15 @@ sourceFile:recursiveClassReferenceTest.ts > > } > } -1 >Emitted(107, 5) Source(100, 1) + SourceIndex(0) -2 >Emitted(107, 6) Source(100, 2) + SourceIndex(0) -3 >Emitted(107, 8) Source(76, 15) + SourceIndex(0) -4 >Emitted(107, 13) Source(76, 20) + SourceIndex(0) -5 >Emitted(107, 16) Source(76, 15) + SourceIndex(0) -6 >Emitted(107, 28) Source(76, 20) + SourceIndex(0) -7 >Emitted(107, 33) Source(76, 15) + SourceIndex(0) -8 >Emitted(107, 45) Source(76, 20) + SourceIndex(0) -9 >Emitted(107, 53) Source(100, 2) + SourceIndex(0) +1 >Emitted(110, 5) Source(100, 1) + SourceIndex(0) +2 >Emitted(110, 6) Source(100, 2) + SourceIndex(0) +3 >Emitted(110, 8) Source(76, 15) + SourceIndex(0) +4 >Emitted(110, 13) Source(76, 20) + SourceIndex(0) +5 >Emitted(110, 16) Source(76, 15) + SourceIndex(0) +6 >Emitted(110, 28) Source(76, 20) + SourceIndex(0) +7 >Emitted(110, 33) Source(76, 15) + SourceIndex(0) +8 >Emitted(110, 45) Source(76, 20) + SourceIndex(0) +9 >Emitted(110, 53) Source(100, 2) + SourceIndex(0) --- >>>})(Sample || (Sample = {})); 1 > @@ -1933,12 +1936,12 @@ sourceFile:recursiveClassReferenceTest.ts > > } > } -1 >Emitted(108, 1) Source(100, 1) + SourceIndex(0) -2 >Emitted(108, 2) Source(100, 2) + SourceIndex(0) -3 >Emitted(108, 4) Source(76, 8) + SourceIndex(0) -4 >Emitted(108, 10) Source(76, 14) + SourceIndex(0) -5 >Emitted(108, 15) Source(76, 8) + SourceIndex(0) -6 >Emitted(108, 21) Source(76, 14) + SourceIndex(0) -7 >Emitted(108, 29) Source(100, 2) + SourceIndex(0) +1 >Emitted(111, 1) Source(100, 1) + SourceIndex(0) +2 >Emitted(111, 2) Source(100, 2) + SourceIndex(0) +3 >Emitted(111, 4) Source(76, 8) + SourceIndex(0) +4 >Emitted(111, 10) Source(76, 14) + SourceIndex(0) +5 >Emitted(111, 15) Source(76, 8) + SourceIndex(0) +6 >Emitted(111, 21) Source(76, 14) + SourceIndex(0) +7 >Emitted(111, 29) Source(100, 2) + SourceIndex(0) --- >>>//# sourceMappingURL=recursiveClassReferenceTest.js.map \ No newline at end of file diff --git a/tests/baselines/reference/resolvingClassDeclarationWhenInBaseTypeResolution.js b/tests/baselines/reference/resolvingClassDeclarationWhenInBaseTypeResolution.js index dcc43ff065f66..91d61068cd1a8 100644 --- a/tests/baselines/reference/resolvingClassDeclarationWhenInBaseTypeResolution.js +++ b/tests/baselines/reference/resolvingClassDeclarationWhenInBaseTypeResolution.js @@ -1042,31 +1042,32 @@ var rionegrensis; function caniventer() { return _super !== null && _super.apply(this, arguments) || this; } - caniventer.prototype.salomonseni = function () { + var caniventer_prototype = caniventer.prototype; + caniventer_prototype.salomonseni = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - caniventer.prototype.uchidai = function () { + caniventer_prototype.uchidai = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - caniventer.prototype.raffrayana = function () { + caniventer_prototype.raffrayana = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - caniventer.prototype.Uranium = function () { + caniventer_prototype.Uranium = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - caniventer.prototype.nayaur = function () { + caniventer_prototype.nayaur = function () { var _this = this; var x; (function () { var y = _this; }); @@ -1080,31 +1081,32 @@ var rionegrensis; function veraecrucis() { return _super !== null && _super.apply(this, arguments) || this; } - veraecrucis.prototype.naso = function () { + var veraecrucis_prototype = veraecrucis.prototype; + veraecrucis_prototype.naso = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - veraecrucis.prototype.vancouverensis = function () { + veraecrucis_prototype.vancouverensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - veraecrucis.prototype.africana = function () { + veraecrucis_prototype.africana = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - veraecrucis.prototype.palliolata = function () { + veraecrucis_prototype.palliolata = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - veraecrucis.prototype.nivicola = function () { + veraecrucis_prototype.nivicola = function () { var _this = this; var x; (function () { var y = _this; }); @@ -1125,31 +1127,32 @@ var julianae; var nudicaudus = /** @class */ (function () { function nudicaudus() { } - nudicaudus.prototype.brandtii = function () { + var nudicaudus_prototype = nudicaudus.prototype; + nudicaudus_prototype.brandtii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - nudicaudus.prototype.maxwellii = function () { + nudicaudus_prototype.maxwellii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - nudicaudus.prototype.endoi = function () { + nudicaudus_prototype.endoi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - nudicaudus.prototype.venezuelae = function () { + nudicaudus_prototype.venezuelae = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - nudicaudus.prototype.zamicrus = function () { + nudicaudus_prototype.zamicrus = function () { var _this = this; var x; (function () { var y = _this; }); @@ -1161,43 +1164,44 @@ var julianae; var galapagoensis = /** @class */ (function () { function galapagoensis() { } - galapagoensis.prototype.isabellae = function () { + var galapagoensis_prototype = galapagoensis.prototype; + galapagoensis_prototype.isabellae = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - galapagoensis.prototype.rueppellii = function () { + galapagoensis_prototype.rueppellii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - galapagoensis.prototype.peregusna = function () { + galapagoensis_prototype.peregusna = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - galapagoensis.prototype.gliroides = function () { + galapagoensis_prototype.gliroides = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - galapagoensis.prototype.banakrisi = function () { + galapagoensis_prototype.banakrisi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - galapagoensis.prototype.rozendaali = function () { + galapagoensis_prototype.rozendaali = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - galapagoensis.prototype.stuhlmanni = function () { + galapagoensis_prototype.stuhlmanni = function () { var _this = this; var x; (function () { var y = _this; }); @@ -1209,43 +1213,44 @@ var julianae; var albidens = /** @class */ (function () { function albidens() { } - albidens.prototype.mattheyi = function () { + var albidens_prototype = albidens.prototype; + albidens_prototype.mattheyi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - albidens.prototype.Astatine = function () { + albidens_prototype.Astatine = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - albidens.prototype.vincenti = function () { + albidens_prototype.vincenti = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - albidens.prototype.hirta = function () { + albidens_prototype.hirta = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - albidens.prototype.virginianus = function () { + albidens_prototype.virginianus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - albidens.prototype.macrophyllum = function () { + albidens_prototype.macrophyllum = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - albidens.prototype.porcellus = function () { + albidens_prototype.porcellus = function () { var _this = this; var x; (function () { var y = _this; }); @@ -1259,79 +1264,80 @@ var julianae; function oralis() { return _super !== null && _super.apply(this, arguments) || this; } - oralis.prototype.cepapi = function () { + var oralis_prototype = oralis.prototype; + oralis_prototype.cepapi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oralis.prototype.porteri = function () { + oralis_prototype.porteri = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oralis.prototype.bindi = function () { + oralis_prototype.bindi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oralis.prototype.puda = function () { + oralis_prototype.puda = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oralis.prototype.mindorensis = function () { + oralis_prototype.mindorensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oralis.prototype.ignitus = function () { + oralis_prototype.ignitus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oralis.prototype.rufus = function () { + oralis_prototype.rufus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oralis.prototype.monax = function () { + oralis_prototype.monax = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oralis.prototype.unalascensis = function () { + oralis_prototype.unalascensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oralis.prototype.wuchihensis = function () { + oralis_prototype.wuchihensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oralis.prototype.leucippe = function () { + oralis_prototype.leucippe = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oralis.prototype.ordii = function () { + oralis_prototype.ordii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oralis.prototype.eisentrauti = function () { + oralis_prototype.eisentrauti = function () { var _this = this; var x; (function () { var y = _this; }); @@ -1345,43 +1351,44 @@ var julianae; function sumatrana() { return _super !== null && _super.apply(this, arguments) || this; } - sumatrana.prototype.wolffsohni = function () { + var sumatrana_prototype = sumatrana.prototype; + sumatrana_prototype.wolffsohni = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - sumatrana.prototype.geata = function () { + sumatrana_prototype.geata = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - sumatrana.prototype.awashensis = function () { + sumatrana_prototype.awashensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - sumatrana.prototype.sturdeei = function () { + sumatrana_prototype.sturdeei = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - sumatrana.prototype.pachyurus = function () { + sumatrana_prototype.pachyurus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - sumatrana.prototype.lyelli = function () { + sumatrana_prototype.lyelli = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - sumatrana.prototype.neohibernicus = function () { + sumatrana_prototype.neohibernicus = function () { var _this = this; var x; (function () { var y = _this; }); @@ -1393,67 +1400,68 @@ var julianae; var gerbillus = /** @class */ (function () { function gerbillus() { } - gerbillus.prototype.pundti = function () { + var gerbillus_prototype = gerbillus.prototype; + gerbillus_prototype.pundti = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gerbillus.prototype.tristrami = function () { + gerbillus_prototype.tristrami = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gerbillus.prototype.swarthi = function () { + gerbillus_prototype.swarthi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gerbillus.prototype.horsfieldii = function () { + gerbillus_prototype.horsfieldii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gerbillus.prototype.diazi = function () { + gerbillus_prototype.diazi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gerbillus.prototype.rennelli = function () { + gerbillus_prototype.rennelli = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gerbillus.prototype.maulinus = function () { + gerbillus_prototype.maulinus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gerbillus.prototype.muscina = function () { + gerbillus_prototype.muscina = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gerbillus.prototype.pelengensis = function () { + gerbillus_prototype.pelengensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gerbillus.prototype.abramus = function () { + gerbillus_prototype.abramus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gerbillus.prototype.reevesi = function () { + gerbillus_prototype.reevesi = function () { var _this = this; var x; (function () { var y = _this; }); @@ -1465,73 +1473,74 @@ var julianae; var acariensis = /** @class */ (function () { function acariensis() { } - acariensis.prototype.levicula = function () { + var acariensis_prototype = acariensis.prototype; + acariensis_prototype.levicula = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - acariensis.prototype.minous = function () { + acariensis_prototype.minous = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - acariensis.prototype.cinereiventer = function () { + acariensis_prototype.cinereiventer = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - acariensis.prototype.longicaudatus = function () { + acariensis_prototype.longicaudatus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - acariensis.prototype.baeodon = function () { + acariensis_prototype.baeodon = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - acariensis.prototype.soricoides = function () { + acariensis_prototype.soricoides = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - acariensis.prototype.datae = function () { + acariensis_prototype.datae = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - acariensis.prototype.spixii = function () { + acariensis_prototype.spixii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - acariensis.prototype.anakuma = function () { + acariensis_prototype.anakuma = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - acariensis.prototype.kihaulei = function () { + acariensis_prototype.kihaulei = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - acariensis.prototype.gymnura = function () { + acariensis_prototype.gymnura = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - acariensis.prototype.olchonensis = function () { + acariensis_prototype.olchonensis = function () { var _this = this; var x; (function () { var y = _this; }); @@ -1545,19 +1554,20 @@ var julianae; function durangae() { return _super !== null && _super.apply(this, arguments) || this; } - durangae.prototype.Californium = function () { + var durangae_prototype = durangae.prototype; + durangae_prototype.Californium = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - durangae.prototype.Flerovium = function () { + durangae_prototype.Flerovium = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - durangae.prototype.phrudus = function () { + durangae_prototype.phrudus = function () { var _this = this; var x; (function () { var y = _this; }); @@ -1572,13 +1582,14 @@ var ruatanica; var hector = /** @class */ (function () { function hector() { } - hector.prototype.humulis = function () { + var hector_prototype = hector.prototype; + hector_prototype.humulis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - hector.prototype.eurycerus = function () { + hector_prototype.eurycerus = function () { var _this = this; var x; (function () { var y = _this; }); @@ -1593,19 +1604,20 @@ var Lanthanum; var suillus = /** @class */ (function () { function suillus() { } - suillus.prototype.spilosoma = function () { + var suillus_prototype = suillus.prototype; + suillus_prototype.spilosoma = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - suillus.prototype.tumbalensis = function () { + suillus_prototype.tumbalensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - suillus.prototype.anatolicus = function () { + suillus_prototype.anatolicus = function () { var _this = this; var x; (function () { var y = _this; }); @@ -1619,61 +1631,62 @@ var Lanthanum; function nitidus() { return _super !== null && _super.apply(this, arguments) || this; } - nitidus.prototype.granatensis = function () { + var nitidus_prototype = nitidus.prototype; + nitidus_prototype.granatensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - nitidus.prototype.negligens = function () { + nitidus_prototype.negligens = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - nitidus.prototype.lewisi = function () { + nitidus_prototype.lewisi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - nitidus.prototype.arge = function () { + nitidus_prototype.arge = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - nitidus.prototype.dominicensis = function () { + nitidus_prototype.dominicensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - nitidus.prototype.taurus = function () { + nitidus_prototype.taurus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - nitidus.prototype.tonganus = function () { + nitidus_prototype.tonganus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - nitidus.prototype.silvatica = function () { + nitidus_prototype.silvatica = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - nitidus.prototype.midas = function () { + nitidus_prototype.midas = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - nitidus.prototype.bicornis = function () { + nitidus_prototype.bicornis = function () { var _this = this; var x; (function () { var y = _this; }); @@ -1687,49 +1700,50 @@ var Lanthanum; function megalonyx() { return _super !== null && _super.apply(this, arguments) || this; } - megalonyx.prototype.phillipsii = function () { + var megalonyx_prototype = megalonyx.prototype; + megalonyx_prototype.phillipsii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - megalonyx.prototype.melanogaster = function () { + megalonyx_prototype.melanogaster = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - megalonyx.prototype.elaphus = function () { + megalonyx_prototype.elaphus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - megalonyx.prototype.elater = function () { + megalonyx_prototype.elater = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - megalonyx.prototype.ourebi = function () { + megalonyx_prototype.ourebi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - megalonyx.prototype.caraccioli = function () { + megalonyx_prototype.caraccioli = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - megalonyx.prototype.parva = function () { + megalonyx_prototype.parva = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - megalonyx.prototype.albipes = function () { + megalonyx_prototype.albipes = function () { var _this = this; var x; (function () { var y = _this; }); @@ -1741,85 +1755,86 @@ var Lanthanum; var jugularis = /** @class */ (function () { function jugularis() { } - jugularis.prototype.torrei = function () { + var jugularis_prototype = jugularis.prototype; + jugularis_prototype.torrei = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - jugularis.prototype.revoili = function () { + jugularis_prototype.revoili = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - jugularis.prototype.macrobullatus = function () { + jugularis_prototype.macrobullatus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - jugularis.prototype.compactus = function () { + jugularis_prototype.compactus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - jugularis.prototype.talpinus = function () { + jugularis_prototype.talpinus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - jugularis.prototype.stramineus = function () { + jugularis_prototype.stramineus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - jugularis.prototype.dartmouthi = function () { + jugularis_prototype.dartmouthi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - jugularis.prototype.ogilbyi = function () { + jugularis_prototype.ogilbyi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - jugularis.prototype.incomtus = function () { + jugularis_prototype.incomtus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - jugularis.prototype.surdaster = function () { + jugularis_prototype.surdaster = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - jugularis.prototype.melanorhinus = function () { + jugularis_prototype.melanorhinus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - jugularis.prototype.picticaudata = function () { + jugularis_prototype.picticaudata = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - jugularis.prototype.pomona = function () { + jugularis_prototype.pomona = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - jugularis.prototype.ileile = function () { + jugularis_prototype.ileile = function () { var _this = this; var x; (function () { var y = _this; }); @@ -1836,85 +1851,86 @@ var rendalli; function zuluensis() { return _super !== null && _super.apply(this, arguments) || this; } - zuluensis.prototype.telfairi = function () { + var zuluensis_prototype = zuluensis.prototype; + zuluensis_prototype.telfairi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - zuluensis.prototype.keyensis = function () { + zuluensis_prototype.keyensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - zuluensis.prototype.occasius = function () { + zuluensis_prototype.occasius = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - zuluensis.prototype.damarensis = function () { + zuluensis_prototype.damarensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - zuluensis.prototype.Neptunium = function () { + zuluensis_prototype.Neptunium = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - zuluensis.prototype.griseoflavus = function () { + zuluensis_prototype.griseoflavus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - zuluensis.prototype.thar = function () { + zuluensis_prototype.thar = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - zuluensis.prototype.alborufus = function () { + zuluensis_prototype.alborufus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - zuluensis.prototype.fusicaudus = function () { + zuluensis_prototype.fusicaudus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - zuluensis.prototype.gordonorum = function () { + zuluensis_prototype.gordonorum = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - zuluensis.prototype.ruber = function () { + zuluensis_prototype.ruber = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - zuluensis.prototype.desmarestianus = function () { + zuluensis_prototype.desmarestianus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - zuluensis.prototype.lutillus = function () { + zuluensis_prototype.lutillus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - zuluensis.prototype.salocco = function () { + zuluensis_prototype.salocco = function () { var _this = this; var x; (function () { var y = _this; }); @@ -1926,61 +1942,62 @@ var rendalli; var moojeni = /** @class */ (function () { function moojeni() { } - moojeni.prototype.floweri = function () { + var moojeni_prototype = moojeni.prototype; + moojeni_prototype.floweri = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - moojeni.prototype.montosa = function () { + moojeni_prototype.montosa = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - moojeni.prototype.miletus = function () { + moojeni_prototype.miletus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - moojeni.prototype.heaneyi = function () { + moojeni_prototype.heaneyi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - moojeni.prototype.marchei = function () { + moojeni_prototype.marchei = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - moojeni.prototype.budini = function () { + moojeni_prototype.budini = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - moojeni.prototype.maggietaylorae = function () { + moojeni_prototype.maggietaylorae = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - moojeni.prototype.poliocephalus = function () { + moojeni_prototype.poliocephalus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - moojeni.prototype.zibethicus = function () { + moojeni_prototype.zibethicus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - moojeni.prototype.biacensis = function () { + moojeni_prototype.biacensis = function () { var _this = this; var x; (function () { var y = _this; }); @@ -1994,19 +2011,20 @@ var rendalli; function crenulata() { return _super !== null && _super.apply(this, arguments) || this; } - crenulata.prototype.salvanius = function () { + var crenulata_prototype = crenulata.prototype; + crenulata_prototype.salvanius = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - crenulata.prototype.maritimus = function () { + crenulata_prototype.maritimus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - crenulata.prototype.edax = function () { + crenulata_prototype.edax = function () { var _this = this; var x; (function () { var y = _this; }); @@ -2021,49 +2039,50 @@ var trivirgatus; var tumidifrons = /** @class */ (function () { function tumidifrons() { } - tumidifrons.prototype.nivalis = function () { + var tumidifrons_prototype = tumidifrons.prototype; + tumidifrons_prototype.nivalis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - tumidifrons.prototype.vestitus = function () { + tumidifrons_prototype.vestitus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - tumidifrons.prototype.aequatorius = function () { + tumidifrons_prototype.aequatorius = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - tumidifrons.prototype.scherman = function () { + tumidifrons_prototype.scherman = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - tumidifrons.prototype.improvisum = function () { + tumidifrons_prototype.improvisum = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - tumidifrons.prototype.cervinipes = function () { + tumidifrons_prototype.cervinipes = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - tumidifrons.prototype.audax = function () { + tumidifrons_prototype.audax = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - tumidifrons.prototype.vallinus = function () { + tumidifrons_prototype.vallinus = function () { var _this = this; var x; (function () { var y = _this; }); @@ -2077,43 +2096,44 @@ var trivirgatus; function mixtus() { return _super !== null && _super.apply(this, arguments) || this; } - mixtus.prototype.ochrogaster = function () { + var mixtus_prototype = mixtus.prototype; + mixtus_prototype.ochrogaster = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - mixtus.prototype.bryophilus = function () { + mixtus_prototype.bryophilus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - mixtus.prototype.liechtensteini = function () { + mixtus_prototype.liechtensteini = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - mixtus.prototype.crawfordi = function () { + mixtus_prototype.crawfordi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - mixtus.prototype.hypsibia = function () { + mixtus_prototype.hypsibia = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - mixtus.prototype.matacus = function () { + mixtus_prototype.matacus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - mixtus.prototype.demidoff = function () { + mixtus_prototype.demidoff = function () { var _this = this; var x; (function () { var y = _this; }); @@ -2125,13 +2145,14 @@ var trivirgatus; var lotor = /** @class */ (function () { function lotor() { } - lotor.prototype.balensis = function () { + var lotor_prototype = lotor.prototype; + lotor_prototype.balensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - lotor.prototype.pullata = function () { + lotor_prototype.pullata = function () { var _this = this; var x; (function () { var y = _this; }); @@ -2143,43 +2164,44 @@ var trivirgatus; var falconeri = /** @class */ (function () { function falconeri() { } - falconeri.prototype.cabrali = function () { + var falconeri_prototype = falconeri.prototype; + falconeri_prototype.cabrali = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - falconeri.prototype.gouldi = function () { + falconeri_prototype.gouldi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - falconeri.prototype.fuscicollis = function () { + falconeri_prototype.fuscicollis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - falconeri.prototype.martiensseni = function () { + falconeri_prototype.martiensseni = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - falconeri.prototype.gaoligongensis = function () { + falconeri_prototype.gaoligongensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - falconeri.prototype.shawi = function () { + falconeri_prototype.shawi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - falconeri.prototype.gmelini = function () { + falconeri_prototype.gmelini = function () { var _this = this; var x; (function () { var y = _this; }); @@ -2191,85 +2213,86 @@ var trivirgatus; var oconnelli = /** @class */ (function () { function oconnelli() { } - oconnelli.prototype.youngsoni = function () { + var oconnelli_prototype = oconnelli.prototype; + oconnelli_prototype.youngsoni = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oconnelli.prototype.terrestris = function () { + oconnelli_prototype.terrestris = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oconnelli.prototype.chrysopus = function () { + oconnelli_prototype.chrysopus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oconnelli.prototype.fuscomurina = function () { + oconnelli_prototype.fuscomurina = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oconnelli.prototype.hellwaldii = function () { + oconnelli_prototype.hellwaldii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oconnelli.prototype.aenea = function () { + oconnelli_prototype.aenea = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oconnelli.prototype.perrini = function () { + oconnelli_prototype.perrini = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oconnelli.prototype.entellus = function () { + oconnelli_prototype.entellus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oconnelli.prototype.krebsii = function () { + oconnelli_prototype.krebsii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oconnelli.prototype.cephalotes = function () { + oconnelli_prototype.cephalotes = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oconnelli.prototype.molossinus = function () { + oconnelli_prototype.molossinus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oconnelli.prototype.luisi = function () { + oconnelli_prototype.luisi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oconnelli.prototype.ceylonicus = function () { + oconnelli_prototype.ceylonicus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oconnelli.prototype.ralli = function () { + oconnelli_prototype.ralli = function () { var _this = this; var x; (function () { var y = _this; }); @@ -2284,25 +2307,26 @@ var quasiater; var bobrinskoi = /** @class */ (function () { function bobrinskoi() { } - bobrinskoi.prototype.crassicaudatus = function () { + var bobrinskoi_prototype = bobrinskoi.prototype; + bobrinskoi_prototype.crassicaudatus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - bobrinskoi.prototype.mulatta = function () { + bobrinskoi_prototype.mulatta = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - bobrinskoi.prototype.ansorgei = function () { + bobrinskoi_prototype.ansorgei = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - bobrinskoi.prototype.Copper = function () { + bobrinskoi_prototype.Copper = function () { var _this = this; var x; (function () { var y = _this; }); @@ -2318,25 +2342,26 @@ var quasiater; function americanus() { return _super !== null && _super.apply(this, arguments) || this; } - americanus.prototype.nasoloi = function () { + var americanus_prototype = americanus.prototype; + americanus_prototype.nasoloi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - americanus.prototype.mystacalis = function () { + americanus_prototype.mystacalis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - americanus.prototype.fardoulisi = function () { + americanus_prototype.fardoulisi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - americanus.prototype.tumidus = function () { + americanus_prototype.tumidus = function () { var _this = this; var x; (function () { var y = _this; }); @@ -2353,79 +2378,80 @@ var lavali; function wilsoni() { return _super !== null && _super.apply(this, arguments) || this; } - wilsoni.prototype.setiger = function () { + var wilsoni_prototype = wilsoni.prototype; + wilsoni_prototype.setiger = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - wilsoni.prototype.lorentzii = function () { + wilsoni_prototype.lorentzii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - wilsoni.prototype.antisensis = function () { + wilsoni_prototype.antisensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - wilsoni.prototype.blossevillii = function () { + wilsoni_prototype.blossevillii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - wilsoni.prototype.bontanus = function () { + wilsoni_prototype.bontanus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - wilsoni.prototype.caligata = function () { + wilsoni_prototype.caligata = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - wilsoni.prototype.franqueti = function () { + wilsoni_prototype.franqueti = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - wilsoni.prototype.roberti = function () { + wilsoni_prototype.roberti = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - wilsoni.prototype.degelidus = function () { + wilsoni_prototype.degelidus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - wilsoni.prototype.amoenus = function () { + wilsoni_prototype.amoenus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - wilsoni.prototype.kob = function () { + wilsoni_prototype.kob = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - wilsoni.prototype.csorbai = function () { + wilsoni_prototype.csorbai = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - wilsoni.prototype.dorsata = function () { + wilsoni_prototype.dorsata = function () { var _this = this; var x; (function () { var y = _this; }); @@ -2445,79 +2471,80 @@ var lavali; function otion() { return _super !== null && _super.apply(this, arguments) || this; } - otion.prototype.bonaerensis = function () { + var otion_prototype = otion.prototype; + otion_prototype.bonaerensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - otion.prototype.dussumieri = function () { + otion_prototype.dussumieri = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - otion.prototype.osvaldoreigi = function () { + otion_prototype.osvaldoreigi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - otion.prototype.grevyi = function () { + otion_prototype.grevyi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - otion.prototype.hirtula = function () { + otion_prototype.hirtula = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - otion.prototype.cristatus = function () { + otion_prototype.cristatus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - otion.prototype.darlingtoni = function () { + otion_prototype.darlingtoni = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - otion.prototype.fontanierii = function () { + otion_prototype.fontanierii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - otion.prototype.umbrosus = function () { + otion_prototype.umbrosus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - otion.prototype.chiriquinus = function () { + otion_prototype.chiriquinus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - otion.prototype.orarius = function () { + otion_prototype.orarius = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - otion.prototype.ilaeus = function () { + otion_prototype.ilaeus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - otion.prototype.musschenbroekii = function () { + otion_prototype.musschenbroekii = function () { var _this = this; var x; (function () { var y = _this; }); @@ -2529,73 +2556,74 @@ var lavali; var xanthognathus = /** @class */ (function () { function xanthognathus() { } - xanthognathus.prototype.nanulus = function () { + var xanthognathus_prototype = xanthognathus.prototype; + xanthognathus_prototype.nanulus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - xanthognathus.prototype.albigena = function () { + xanthognathus_prototype.albigena = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - xanthognathus.prototype.onca = function () { + xanthognathus_prototype.onca = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - xanthognathus.prototype.gunnii = function () { + xanthognathus_prototype.gunnii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - xanthognathus.prototype.apeco = function () { + xanthognathus_prototype.apeco = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - xanthognathus.prototype.variegates = function () { + xanthognathus_prototype.variegates = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - xanthognathus.prototype.goudotii = function () { + xanthognathus_prototype.goudotii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - xanthognathus.prototype.pohlei = function () { + xanthognathus_prototype.pohlei = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - xanthognathus.prototype.ineptus = function () { + xanthognathus_prototype.ineptus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - xanthognathus.prototype.euryotis = function () { + xanthognathus_prototype.euryotis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - xanthognathus.prototype.maurisca = function () { + xanthognathus_prototype.maurisca = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - xanthognathus.prototype.coyhaiquensis = function () { + xanthognathus_prototype.coyhaiquensis = function () { var _this = this; var x; (function () { var y = _this; }); @@ -2609,49 +2637,50 @@ var lavali; function thaeleri() { return _super !== null && _super.apply(this, arguments) || this; } - thaeleri.prototype.coromandra = function () { + var thaeleri_prototype = thaeleri.prototype; + thaeleri_prototype.coromandra = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - thaeleri.prototype.parvipes = function () { + thaeleri_prototype.parvipes = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - thaeleri.prototype.sponsorius = function () { + thaeleri_prototype.sponsorius = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - thaeleri.prototype.vates = function () { + thaeleri_prototype.vates = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - thaeleri.prototype.roosmalenorum = function () { + thaeleri_prototype.roosmalenorum = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - thaeleri.prototype.rubicola = function () { + thaeleri_prototype.rubicola = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - thaeleri.prototype.ikonnikovi = function () { + thaeleri_prototype.ikonnikovi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - thaeleri.prototype.paramicrus = function () { + thaeleri_prototype.paramicrus = function () { var _this = this; var x; (function () { var y = _this; }); @@ -2665,13 +2694,14 @@ var lavali; function lepturus() { return _super !== null && _super.apply(this, arguments) || this; } - lepturus.prototype.ferrumequinum = function () { + var lepturus_prototype = lepturus.prototype; + lepturus_prototype.ferrumequinum = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - lepturus.prototype.aequalis = function () { + lepturus_prototype.aequalis = function () { var _this = this; var x; (function () { var y = _this; }); @@ -2688,55 +2718,56 @@ var dogramacii; function robustulus() { return _super !== null && _super.apply(this, arguments) || this; } - robustulus.prototype.fossor = function () { + var robustulus_prototype = robustulus.prototype; + robustulus_prototype.fossor = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - robustulus.prototype.humboldti = function () { + robustulus_prototype.humboldti = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - robustulus.prototype.mexicana = function () { + robustulus_prototype.mexicana = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - robustulus.prototype.martini = function () { + robustulus_prototype.martini = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - robustulus.prototype.beatus = function () { + robustulus_prototype.beatus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - robustulus.prototype.leporina = function () { + robustulus_prototype.leporina = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - robustulus.prototype.pearsonii = function () { + robustulus_prototype.pearsonii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - robustulus.prototype.keaysi = function () { + robustulus_prototype.keaysi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - robustulus.prototype.hindei = function () { + robustulus_prototype.hindei = function () { var _this = this; var x; (function () { var y = _this; }); @@ -2760,79 +2791,80 @@ var dogramacii; var kaiseri = /** @class */ (function () { function kaiseri() { } - kaiseri.prototype.bedfordiae = function () { + var kaiseri_prototype = kaiseri.prototype; + kaiseri_prototype.bedfordiae = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - kaiseri.prototype.paramorum = function () { + kaiseri_prototype.paramorum = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - kaiseri.prototype.rubidus = function () { + kaiseri_prototype.rubidus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - kaiseri.prototype.juninensis = function () { + kaiseri_prototype.juninensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - kaiseri.prototype.marginata = function () { + kaiseri_prototype.marginata = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - kaiseri.prototype.Meitnerium = function () { + kaiseri_prototype.Meitnerium = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - kaiseri.prototype.pinetorum = function () { + kaiseri_prototype.pinetorum = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - kaiseri.prototype.hoolock = function () { + kaiseri_prototype.hoolock = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - kaiseri.prototype.poeyi = function () { + kaiseri_prototype.poeyi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - kaiseri.prototype.Thulium = function () { + kaiseri_prototype.Thulium = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - kaiseri.prototype.patrius = function () { + kaiseri_prototype.patrius = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - kaiseri.prototype.quadraticauda = function () { + kaiseri_prototype.quadraticauda = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - kaiseri.prototype.ater = function () { + kaiseri_prototype.ater = function () { var _this = this; var x; (function () { var y = _this; }); @@ -2844,49 +2876,50 @@ var dogramacii; var aurata = /** @class */ (function () { function aurata() { } - aurata.prototype.grunniens = function () { + var aurata_prototype = aurata.prototype; + aurata_prototype.grunniens = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - aurata.prototype.howensis = function () { + aurata_prototype.howensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - aurata.prototype.karlkoopmani = function () { + aurata_prototype.karlkoopmani = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - aurata.prototype.mirapitanga = function () { + aurata_prototype.mirapitanga = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - aurata.prototype.ophiodon = function () { + aurata_prototype.ophiodon = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - aurata.prototype.landeri = function () { + aurata_prototype.landeri = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - aurata.prototype.sonomae = function () { + aurata_prototype.sonomae = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - aurata.prototype.erythromos = function () { + aurata_prototype.erythromos = function () { var _this = this; var x; (function () { var y = _this; }); @@ -2903,85 +2936,86 @@ var lutreolus; function schlegeli() { return _super !== null && _super.apply(this, arguments) || this; } - schlegeli.prototype.mittendorfi = function () { + var schlegeli_prototype = schlegeli.prototype; + schlegeli_prototype.mittendorfi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - schlegeli.prototype.blicki = function () { + schlegeli_prototype.blicki = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - schlegeli.prototype.culionensis = function () { + schlegeli_prototype.culionensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - schlegeli.prototype.scrofa = function () { + schlegeli_prototype.scrofa = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - schlegeli.prototype.fernandoni = function () { + schlegeli_prototype.fernandoni = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - schlegeli.prototype.Tin = function () { + schlegeli_prototype.Tin = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - schlegeli.prototype.marmorata = function () { + schlegeli_prototype.marmorata = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - schlegeli.prototype.tavaratra = function () { + schlegeli_prototype.tavaratra = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - schlegeli.prototype.peregrina = function () { + schlegeli_prototype.peregrina = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - schlegeli.prototype.frontalis = function () { + schlegeli_prototype.frontalis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - schlegeli.prototype.cuniculus = function () { + schlegeli_prototype.cuniculus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - schlegeli.prototype.magdalenae = function () { + schlegeli_prototype.magdalenae = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - schlegeli.prototype.andamanensis = function () { + schlegeli_prototype.andamanensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - schlegeli.prototype.dispar = function () { + schlegeli_prototype.dispar = function () { var _this = this; var x; (function () { var y = _this; }); @@ -2996,67 +3030,68 @@ var argurus; var dauricus = /** @class */ (function () { function dauricus() { } - dauricus.prototype.chinensis = function () { + var dauricus_prototype = dauricus.prototype; + dauricus_prototype.chinensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - dauricus.prototype.duodecimcostatus = function () { + dauricus_prototype.duodecimcostatus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - dauricus.prototype.foxi = function () { + dauricus_prototype.foxi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - dauricus.prototype.macleayii = function () { + dauricus_prototype.macleayii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - dauricus.prototype.darienensis = function () { + dauricus_prototype.darienensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - dauricus.prototype.hardwickii = function () { + dauricus_prototype.hardwickii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - dauricus.prototype.albifrons = function () { + dauricus_prototype.albifrons = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - dauricus.prototype.jacobitus = function () { + dauricus_prototype.jacobitus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - dauricus.prototype.guentheri = function () { + dauricus_prototype.guentheri = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - dauricus.prototype.mahomet = function () { + dauricus_prototype.mahomet = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - dauricus.prototype.misionensis = function () { + dauricus_prototype.misionensis = function () { var _this = this; var x; (function () { var y = _this; }); @@ -3071,49 +3106,50 @@ var nigra; var dolichurus = /** @class */ (function () { function dolichurus() { } - dolichurus.prototype.solomonis = function () { + var dolichurus_prototype = dolichurus.prototype; + dolichurus_prototype.solomonis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - dolichurus.prototype.alfredi = function () { + dolichurus_prototype.alfredi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - dolichurus.prototype.morrisi = function () { + dolichurus_prototype.morrisi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - dolichurus.prototype.lekaguli = function () { + dolichurus_prototype.lekaguli = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - dolichurus.prototype.dimissus = function () { + dolichurus_prototype.dimissus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - dolichurus.prototype.phaeotis = function () { + dolichurus_prototype.phaeotis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - dolichurus.prototype.ustus = function () { + dolichurus_prototype.ustus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - dolichurus.prototype.sagei = function () { + dolichurus_prototype.sagei = function () { var _this = this; var x; (function () { var y = _this; }); @@ -3130,37 +3166,38 @@ var panglima; function amphibius() { return _super !== null && _super.apply(this, arguments) || this; } - amphibius.prototype.bottegi = function () { + var amphibius_prototype = amphibius.prototype; + amphibius_prototype.bottegi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - amphibius.prototype.jerdoni = function () { + amphibius_prototype.jerdoni = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - amphibius.prototype.camtschatica = function () { + amphibius_prototype.camtschatica = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - amphibius.prototype.spadix = function () { + amphibius_prototype.spadix = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - amphibius.prototype.luismanueli = function () { + amphibius_prototype.luismanueli = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - amphibius.prototype.aceramarcae = function () { + amphibius_prototype.aceramarcae = function () { var _this = this; var x; (function () { var y = _this; }); @@ -3174,19 +3211,20 @@ var panglima; function fundatus() { return _super !== null && _super.apply(this, arguments) || this; } - fundatus.prototype.crassulus = function () { + var fundatus_prototype = fundatus.prototype; + fundatus_prototype.crassulus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - fundatus.prototype.flamarioni = function () { + fundatus_prototype.flamarioni = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - fundatus.prototype.mirabilis = function () { + fundatus_prototype.mirabilis = function () { var _this = this; var x; (function () { var y = _this; }); @@ -3200,31 +3238,32 @@ var panglima; function abidi() { return _super !== null && _super.apply(this, arguments) || this; } - abidi.prototype.greyii = function () { + var abidi_prototype = abidi.prototype; + abidi_prototype.greyii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - abidi.prototype.macedonicus = function () { + abidi_prototype.macedonicus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - abidi.prototype.galili = function () { + abidi_prototype.galili = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - abidi.prototype.thierryi = function () { + abidi_prototype.thierryi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - abidi.prototype.ega = function () { + abidi_prototype.ega = function () { var _this = this; var x; (function () { var y = _this; }); @@ -3238,43 +3277,44 @@ var panglima; var carolinensis = /** @class */ (function () { function carolinensis() { } - carolinensis.prototype.concinna = function () { + var carolinensis_prototype = carolinensis.prototype; + carolinensis_prototype.concinna = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - carolinensis.prototype.aeneus = function () { + carolinensis_prototype.aeneus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - carolinensis.prototype.aloysiisabaudiae = function () { + carolinensis_prototype.aloysiisabaudiae = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - carolinensis.prototype.tenellus = function () { + carolinensis_prototype.tenellus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - carolinensis.prototype.andium = function () { + carolinensis_prototype.andium = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - carolinensis.prototype.persephone = function () { + carolinensis_prototype.persephone = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - carolinensis.prototype.patrizii = function () { + carolinensis_prototype.patrizii = function () { var _this = this; var x; (function () { var y = _this; }); @@ -3291,73 +3331,74 @@ var minutus; function himalayana() { return _super !== null && _super.apply(this, arguments) || this; } - himalayana.prototype.simoni = function () { + var himalayana_prototype = himalayana.prototype; + himalayana_prototype.simoni = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - himalayana.prototype.lobata = function () { + himalayana_prototype.lobata = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - himalayana.prototype.rusticus = function () { + himalayana_prototype.rusticus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - himalayana.prototype.latona = function () { + himalayana_prototype.latona = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - himalayana.prototype.famulus = function () { + himalayana_prototype.famulus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - himalayana.prototype.flaviceps = function () { + himalayana_prototype.flaviceps = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - himalayana.prototype.paradoxolophus = function () { + himalayana_prototype.paradoxolophus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - himalayana.prototype.Osmium = function () { + himalayana_prototype.Osmium = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - himalayana.prototype.vulgaris = function () { + himalayana_prototype.vulgaris = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - himalayana.prototype.betsileoensis = function () { + himalayana_prototype.betsileoensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - himalayana.prototype.vespuccii = function () { + himalayana_prototype.vespuccii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - himalayana.prototype.olympus = function () { + himalayana_prototype.olympus = function () { var _this = this; var x; (function () { var y = _this; }); @@ -3374,49 +3415,50 @@ var caurinus; function mahaganus() { return _super !== null && _super.apply(this, arguments) || this; } - mahaganus.prototype.martiniquensis = function () { + var mahaganus_prototype = mahaganus.prototype; + mahaganus_prototype.martiniquensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - mahaganus.prototype.devius = function () { + mahaganus_prototype.devius = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - mahaganus.prototype.masalai = function () { + mahaganus_prototype.masalai = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - mahaganus.prototype.kathleenae = function () { + mahaganus_prototype.kathleenae = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - mahaganus.prototype.simulus = function () { + mahaganus_prototype.simulus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - mahaganus.prototype.nigrovittatus = function () { + mahaganus_prototype.nigrovittatus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - mahaganus.prototype.senegalensis = function () { + mahaganus_prototype.senegalensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - mahaganus.prototype.acticola = function () { + mahaganus_prototype.acticola = function () { var _this = this; var x; (function () { var y = _this; }); @@ -3471,49 +3513,50 @@ var daubentonii; var thalia = /** @class */ (function () { function thalia() { } - thalia.prototype.dichotomus = function () { + var thalia_prototype = thalia.prototype; + thalia_prototype.dichotomus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - thalia.prototype.arnuxii = function () { + thalia_prototype.arnuxii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - thalia.prototype.verheyeni = function () { + thalia_prototype.verheyeni = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - thalia.prototype.dauuricus = function () { + thalia_prototype.dauuricus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - thalia.prototype.tristriatus = function () { + thalia_prototype.tristriatus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - thalia.prototype.lasiura = function () { + thalia_prototype.lasiura = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - thalia.prototype.gangetica = function () { + thalia_prototype.gangetica = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - thalia.prototype.brucei = function () { + thalia_prototype.brucei = function () { var _this = this; var x; (function () { var y = _this; }); @@ -3573,55 +3616,56 @@ var panamensis; function linulus() { return _super !== null && _super.apply(this, arguments) || this; } - linulus.prototype.goslingi = function () { + var linulus_prototype = linulus.prototype; + linulus_prototype.goslingi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - linulus.prototype.taki = function () { + linulus_prototype.taki = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - linulus.prototype.fumosus = function () { + linulus_prototype.fumosus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - linulus.prototype.rufinus = function () { + linulus_prototype.rufinus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - linulus.prototype.lami = function () { + linulus_prototype.lami = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - linulus.prototype.regina = function () { + linulus_prototype.regina = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - linulus.prototype.nanilla = function () { + linulus_prototype.nanilla = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - linulus.prototype.enganus = function () { + linulus_prototype.enganus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - linulus.prototype.gomantongensis = function () { + linulus_prototype.gomantongensis = function () { var _this = this; var x; (function () { var y = _this; }); @@ -3635,79 +3679,80 @@ var panamensis; var gracilis = /** @class */ (function () { function gracilis() { } - gracilis.prototype.weddellii = function () { + var gracilis_prototype = gracilis.prototype; + gracilis_prototype.weddellii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gracilis.prototype.echinothrix = function () { + gracilis_prototype.echinothrix = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gracilis.prototype.garridoi = function () { + gracilis_prototype.garridoi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gracilis.prototype.rouxii = function () { + gracilis_prototype.rouxii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gracilis.prototype.aurita = function () { + gracilis_prototype.aurita = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gracilis.prototype.geoffrensis = function () { + gracilis_prototype.geoffrensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gracilis.prototype.theresa = function () { + gracilis_prototype.theresa = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gracilis.prototype.melanocarpus = function () { + gracilis_prototype.melanocarpus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gracilis.prototype.dubiaquercus = function () { + gracilis_prototype.dubiaquercus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gracilis.prototype.pectoralis = function () { + gracilis_prototype.pectoralis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gracilis.prototype.apoensis = function () { + gracilis_prototype.apoensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gracilis.prototype.grisescens = function () { + gracilis_prototype.grisescens = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gracilis.prototype.ramirohitra = function () { + gracilis_prototype.ramirohitra = function () { var _this = this; var x; (function () { var y = _this; }); @@ -3724,79 +3769,80 @@ var samarensis; function pelurus() { return _super !== null && _super.apply(this, arguments) || this; } - pelurus.prototype.Palladium = function () { + var pelurus_prototype = pelurus.prototype; + pelurus_prototype.Palladium = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - pelurus.prototype.castanea = function () { + pelurus_prototype.castanea = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - pelurus.prototype.chamek = function () { + pelurus_prototype.chamek = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - pelurus.prototype.nigriceps = function () { + pelurus_prototype.nigriceps = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - pelurus.prototype.lunatus = function () { + pelurus_prototype.lunatus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - pelurus.prototype.madurae = function () { + pelurus_prototype.madurae = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - pelurus.prototype.chinchilla = function () { + pelurus_prototype.chinchilla = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - pelurus.prototype.eliasi = function () { + pelurus_prototype.eliasi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - pelurus.prototype.proditor = function () { + pelurus_prototype.proditor = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - pelurus.prototype.gambianus = function () { + pelurus_prototype.gambianus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - pelurus.prototype.petteri = function () { + pelurus_prototype.petteri = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - pelurus.prototype.nusatenggara = function () { + pelurus_prototype.nusatenggara = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - pelurus.prototype.olitor = function () { + pelurus_prototype.olitor = function () { var _this = this; var x; (function () { var y = _this; }); @@ -3810,85 +3856,86 @@ var samarensis; function fuscus() { return _super !== null && _super.apply(this, arguments) || this; } - fuscus.prototype.planifrons = function () { + var fuscus_prototype = fuscus.prototype; + fuscus_prototype.planifrons = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - fuscus.prototype.badia = function () { + fuscus_prototype.badia = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - fuscus.prototype.prymnolopha = function () { + fuscus_prototype.prymnolopha = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - fuscus.prototype.natalensis = function () { + fuscus_prototype.natalensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - fuscus.prototype.hunteri = function () { + fuscus_prototype.hunteri = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - fuscus.prototype.sapiens = function () { + fuscus_prototype.sapiens = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - fuscus.prototype.macrocercus = function () { + fuscus_prototype.macrocercus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - fuscus.prototype.nimbae = function () { + fuscus_prototype.nimbae = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - fuscus.prototype.suricatta = function () { + fuscus_prototype.suricatta = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - fuscus.prototype.jagorii = function () { + fuscus_prototype.jagorii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - fuscus.prototype.beecrofti = function () { + fuscus_prototype.beecrofti = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - fuscus.prototype.imaizumii = function () { + fuscus_prototype.imaizumii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - fuscus.prototype.colocolo = function () { + fuscus_prototype.colocolo = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - fuscus.prototype.wolfi = function () { + fuscus_prototype.wolfi = function () { var _this = this; var x; (function () { var y = _this; }); @@ -3900,25 +3947,26 @@ var samarensis; var pallidus = /** @class */ (function () { function pallidus() { } - pallidus.prototype.oblativa = function () { + var pallidus_prototype = pallidus.prototype; + pallidus_prototype.oblativa = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - pallidus.prototype.watersi = function () { + pallidus_prototype.watersi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - pallidus.prototype.glacialis = function () { + pallidus_prototype.glacialis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - pallidus.prototype.viaria = function () { + pallidus_prototype.viaria = function () { var _this = this; var x; (function () { var y = _this; }); @@ -3930,31 +3978,32 @@ var samarensis; var cahirinus = /** @class */ (function () { function cahirinus() { } - cahirinus.prototype.alashanicus = function () { + var cahirinus_prototype = cahirinus.prototype; + cahirinus_prototype.alashanicus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - cahirinus.prototype.flaviventer = function () { + cahirinus_prototype.flaviventer = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - cahirinus.prototype.bottai = function () { + cahirinus_prototype.bottai = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - cahirinus.prototype.pinetis = function () { + cahirinus_prototype.pinetis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - cahirinus.prototype.saussurei = function () { + cahirinus_prototype.saussurei = function () { var _this = this; var x; (function () { var y = _this; }); @@ -3970,31 +4019,32 @@ var samarensis; function leptoceros() { return _super !== null && _super.apply(this, arguments) || this; } - leptoceros.prototype.victus = function () { + var leptoceros_prototype = leptoceros.prototype; + leptoceros_prototype.victus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - leptoceros.prototype.hoplomyoides = function () { + leptoceros_prototype.hoplomyoides = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - leptoceros.prototype.gratiosus = function () { + leptoceros_prototype.gratiosus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - leptoceros.prototype.rex = function () { + leptoceros_prototype.rex = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - leptoceros.prototype.bolami = function () { + leptoceros_prototype.bolami = function () { var _this = this; var x; (function () { var y = _this; }); @@ -4035,19 +4085,20 @@ var dammermani; function pygmaea() { return _super !== null && _super.apply(this, arguments) || this; } - pygmaea.prototype.pajeros = function () { + var pygmaea_prototype = pygmaea.prototype; + pygmaea_prototype.pajeros = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - pygmaea.prototype.capucinus = function () { + pygmaea_prototype.capucinus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - pygmaea.prototype.cuvieri = function () { + pygmaea_prototype.cuvieri = function () { var _this = this; var x; (function () { var y = _this; }); @@ -4064,43 +4115,44 @@ var chrysaeolus; function sarasinorum() { return _super !== null && _super.apply(this, arguments) || this; } - sarasinorum.prototype.belzebul = function () { + var sarasinorum_prototype = sarasinorum.prototype; + sarasinorum_prototype.belzebul = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - sarasinorum.prototype.hinpoon = function () { + sarasinorum_prototype.hinpoon = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - sarasinorum.prototype.kandti = function () { + sarasinorum_prototype.kandti = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - sarasinorum.prototype.cynosuros = function () { + sarasinorum_prototype.cynosuros = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - sarasinorum.prototype.Germanium = function () { + sarasinorum_prototype.Germanium = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - sarasinorum.prototype.Ununoctium = function () { + sarasinorum_prototype.Ununoctium = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - sarasinorum.prototype.princeps = function () { + sarasinorum_prototype.princeps = function () { var _this = this; var x; (function () { var y = _this; }); @@ -4114,43 +4166,44 @@ var chrysaeolus; var wetmorei = /** @class */ (function () { function wetmorei() { } - wetmorei.prototype.leucoptera = function () { + var wetmorei_prototype = wetmorei.prototype; + wetmorei_prototype.leucoptera = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - wetmorei.prototype.ochraventer = function () { + wetmorei_prototype.ochraventer = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - wetmorei.prototype.tephromelas = function () { + wetmorei_prototype.tephromelas = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - wetmorei.prototype.cracens = function () { + wetmorei_prototype.cracens = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - wetmorei.prototype.jamaicensis = function () { + wetmorei_prototype.jamaicensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - wetmorei.prototype.gymnocaudus = function () { + wetmorei_prototype.gymnocaudus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - wetmorei.prototype.mayori = function () { + wetmorei_prototype.mayori = function () { var _this = this; var x; (function () { var y = _this; }); @@ -4166,49 +4219,50 @@ var chrysaeolus; function oreas() { return _super !== null && _super.apply(this, arguments) || this; } - oreas.prototype.salamonis = function () { + var oreas_prototype = oreas.prototype; + oreas_prototype.salamonis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oreas.prototype.paniscus = function () { + oreas_prototype.paniscus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oreas.prototype.fagani = function () { + oreas_prototype.fagani = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oreas.prototype.papuanus = function () { + oreas_prototype.papuanus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oreas.prototype.timidus = function () { + oreas_prototype.timidus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oreas.prototype.nghetinhensis = function () { + oreas_prototype.nghetinhensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oreas.prototype.barbei = function () { + oreas_prototype.barbei = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - oreas.prototype.univittatus = function () { + oreas_prototype.univittatus = function () { var _this = this; var x; (function () { var y = _this; }); @@ -4222,73 +4276,74 @@ var chrysaeolus; var arboreus = /** @class */ (function () { function arboreus() { } - arboreus.prototype.capreolus = function () { + var arboreus_prototype = arboreus.prototype; + arboreus_prototype.capreolus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - arboreus.prototype.moreni = function () { + arboreus_prototype.moreni = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - arboreus.prototype.hypoleucos = function () { + arboreus_prototype.hypoleucos = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - arboreus.prototype.paedulcus = function () { + arboreus_prototype.paedulcus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - arboreus.prototype.pucheranii = function () { + arboreus_prototype.pucheranii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - arboreus.prototype.stella = function () { + arboreus_prototype.stella = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - arboreus.prototype.brasiliensis = function () { + arboreus_prototype.brasiliensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - arboreus.prototype.brevicaudata = function () { + arboreus_prototype.brevicaudata = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - arboreus.prototype.vitticollis = function () { + arboreus_prototype.vitticollis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - arboreus.prototype.huangensis = function () { + arboreus_prototype.huangensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - arboreus.prototype.cameroni = function () { + arboreus_prototype.cameroni = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - arboreus.prototype.tianshanica = function () { + arboreus_prototype.tianshanica = function () { var _this = this; var x; (function () { var y = _this; }); @@ -4303,79 +4358,80 @@ var patas; var uralensis = /** @class */ (function () { function uralensis() { } - uralensis.prototype.cartilagonodus = function () { + var uralensis_prototype = uralensis.prototype; + uralensis_prototype.cartilagonodus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - uralensis.prototype.pyrrhinus = function () { + uralensis_prototype.pyrrhinus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - uralensis.prototype.insulans = function () { + uralensis_prototype.insulans = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - uralensis.prototype.nigricauda = function () { + uralensis_prototype.nigricauda = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - uralensis.prototype.muricauda = function () { + uralensis_prototype.muricauda = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - uralensis.prototype.albicaudus = function () { + uralensis_prototype.albicaudus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - uralensis.prototype.fallax = function () { + uralensis_prototype.fallax = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - uralensis.prototype.attenuata = function () { + uralensis_prototype.attenuata = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - uralensis.prototype.megalura = function () { + uralensis_prototype.megalura = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - uralensis.prototype.neblina = function () { + uralensis_prototype.neblina = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - uralensis.prototype.citellus = function () { + uralensis_prototype.citellus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - uralensis.prototype.tanezumi = function () { + uralensis_prototype.tanezumi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - uralensis.prototype.albiventer = function () { + uralensis_prototype.albiventer = function () { var _this = this; var x; (function () { var y = _this; }); @@ -4392,13 +4448,14 @@ var provocax; function melanoleuca() { return _super !== null && _super.apply(this, arguments) || this; } - melanoleuca.prototype.Neodymium = function () { + var melanoleuca_prototype = melanoleuca.prototype; + melanoleuca_prototype.Neodymium = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - melanoleuca.prototype.baeri = function () { + melanoleuca_prototype.baeri = function () { var _this = this; var x; (function () { var y = _this; }); @@ -4412,13 +4469,14 @@ var provocax; var sicarius = /** @class */ (function () { function sicarius() { } - sicarius.prototype.Chlorine = function () { + var sicarius_prototype = sicarius.prototype; + sicarius_prototype.Chlorine = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - sicarius.prototype.simulator = function () { + sicarius_prototype.simulator = function () { var _this = this; var x; (function () { var y = _this; }); @@ -4434,85 +4492,86 @@ var provocax; function marcanoi() { return _super !== null && _super.apply(this, arguments) || this; } - marcanoi.prototype.formosae = function () { + var marcanoi_prototype = marcanoi.prototype; + marcanoi_prototype.formosae = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - marcanoi.prototype.dudui = function () { + marcanoi_prototype.dudui = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - marcanoi.prototype.leander = function () { + marcanoi_prototype.leander = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - marcanoi.prototype.martinsi = function () { + marcanoi_prototype.martinsi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - marcanoi.prototype.beatrix = function () { + marcanoi_prototype.beatrix = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - marcanoi.prototype.griseoventer = function () { + marcanoi_prototype.griseoventer = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - marcanoi.prototype.zerda = function () { + marcanoi_prototype.zerda = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - marcanoi.prototype.yucatanicus = function () { + marcanoi_prototype.yucatanicus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - marcanoi.prototype.nigrita = function () { + marcanoi_prototype.nigrita = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - marcanoi.prototype.jouvenetae = function () { + marcanoi_prototype.jouvenetae = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - marcanoi.prototype.indefessus = function () { + marcanoi_prototype.indefessus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - marcanoi.prototype.vuquangensis = function () { + marcanoi_prototype.vuquangensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - marcanoi.prototype.Zirconium = function () { + marcanoi_prototype.Zirconium = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - marcanoi.prototype.hyaena = function () { + marcanoi_prototype.hyaena = function () { var _this = this; var x; (function () { var y = _this; }); @@ -4526,73 +4585,74 @@ var provocax; var gilbertii = /** @class */ (function () { function gilbertii() { } - gilbertii.prototype.nasutus = function () { + var gilbertii_prototype = gilbertii.prototype; + gilbertii_prototype.nasutus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gilbertii.prototype.poecilops = function () { + gilbertii_prototype.poecilops = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gilbertii.prototype.sondaicus = function () { + gilbertii_prototype.sondaicus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gilbertii.prototype.auriventer = function () { + gilbertii_prototype.auriventer = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gilbertii.prototype.cherriei = function () { + gilbertii_prototype.cherriei = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gilbertii.prototype.lindberghi = function () { + gilbertii_prototype.lindberghi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gilbertii.prototype.pipistrellus = function () { + gilbertii_prototype.pipistrellus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gilbertii.prototype.paranus = function () { + gilbertii_prototype.paranus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gilbertii.prototype.dubosti = function () { + gilbertii_prototype.dubosti = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gilbertii.prototype.opossum = function () { + gilbertii_prototype.opossum = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gilbertii.prototype.oreopolus = function () { + gilbertii_prototype.oreopolus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - gilbertii.prototype.amurensis = function () { + gilbertii_prototype.amurensis = function () { var _this = this; var x; (function () { var y = _this; }); @@ -4615,79 +4675,80 @@ var petrophilus; var punicus = /** @class */ (function () { function punicus() { } - punicus.prototype.strandi = function () { + var punicus_prototype = punicus.prototype; + punicus_prototype.strandi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - punicus.prototype.lar = function () { + punicus_prototype.lar = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - punicus.prototype.erica = function () { + punicus_prototype.erica = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - punicus.prototype.trichura = function () { + punicus_prototype.trichura = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - punicus.prototype.lemniscatus = function () { + punicus_prototype.lemniscatus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - punicus.prototype.aspalax = function () { + punicus_prototype.aspalax = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - punicus.prototype.marshalli = function () { + punicus_prototype.marshalli = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - punicus.prototype.Zinc = function () { + punicus_prototype.Zinc = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - punicus.prototype.monochromos = function () { + punicus_prototype.monochromos = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - punicus.prototype.purinus = function () { + punicus_prototype.purinus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - punicus.prototype.ischyrus = function () { + punicus_prototype.ischyrus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - punicus.prototype.tenuis = function () { + punicus_prototype.tenuis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - punicus.prototype.Helium = function () { + punicus_prototype.Helium = function () { var _this = this; var x; (function () { var y = _this; }); @@ -4701,37 +4762,38 @@ var petrophilus; var daphaenodon = /** @class */ (function () { function daphaenodon() { } - daphaenodon.prototype.bredanensis = function () { + var daphaenodon_prototype = daphaenodon.prototype; + daphaenodon_prototype.bredanensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - daphaenodon.prototype.othus = function () { + daphaenodon_prototype.othus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - daphaenodon.prototype.hammondi = function () { + daphaenodon_prototype.hammondi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - daphaenodon.prototype.aureocollaris = function () { + daphaenodon_prototype.aureocollaris = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - daphaenodon.prototype.flavipes = function () { + daphaenodon_prototype.flavipes = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - daphaenodon.prototype.callosus = function () { + daphaenodon_prototype.callosus = function () { var _this = this; var x; (function () { var y = _this; }); @@ -4745,73 +4807,74 @@ var petrophilus; var cinereus = /** @class */ (function () { function cinereus() { } - cinereus.prototype.zunigae = function () { + var cinereus_prototype = cinereus.prototype; + cinereus_prototype.zunigae = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - cinereus.prototype.microps = function () { + cinereus_prototype.microps = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - cinereus.prototype.guaporensis = function () { + cinereus_prototype.guaporensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - cinereus.prototype.tonkeana = function () { + cinereus_prototype.tonkeana = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - cinereus.prototype.montensis = function () { + cinereus_prototype.montensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - cinereus.prototype.sphinx = function () { + cinereus_prototype.sphinx = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - cinereus.prototype.glis = function () { + cinereus_prototype.glis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - cinereus.prototype.dorsalis = function () { + cinereus_prototype.dorsalis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - cinereus.prototype.fimbriatus = function () { + cinereus_prototype.fimbriatus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - cinereus.prototype.sara = function () { + cinereus_prototype.sara = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - cinereus.prototype.epimelas = function () { + cinereus_prototype.epimelas = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - cinereus.prototype.pittieri = function () { + cinereus_prototype.pittieri = function () { var _this = this; var x; (function () { var y = _this; }); @@ -4842,61 +4905,62 @@ var gabriellae; var amicus = /** @class */ (function () { function amicus() { } - amicus.prototype.pirrensis = function () { + var amicus_prototype = amicus.prototype; + amicus_prototype.pirrensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - amicus.prototype.phaeura = function () { + amicus_prototype.phaeura = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - amicus.prototype.voratus = function () { + amicus_prototype.voratus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - amicus.prototype.satarae = function () { + amicus_prototype.satarae = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - amicus.prototype.hooperi = function () { + amicus_prototype.hooperi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - amicus.prototype.perrensi = function () { + amicus_prototype.perrensi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - amicus.prototype.ridei = function () { + amicus_prototype.ridei = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - amicus.prototype.audeberti = function () { + amicus_prototype.audeberti = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - amicus.prototype.Lutetium = function () { + amicus_prototype.Lutetium = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - amicus.prototype.atrox = function () { + amicus_prototype.atrox = function () { var _this = this; var x; (function () { var y = _this; }); @@ -4923,37 +4987,38 @@ var imperfecta; var lasiurus = /** @class */ (function () { function lasiurus() { } - lasiurus.prototype.marisae = function () { + var lasiurus_prototype = lasiurus.prototype; + lasiurus_prototype.marisae = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - lasiurus.prototype.fulvus = function () { + lasiurus_prototype.fulvus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - lasiurus.prototype.paranaensis = function () { + lasiurus_prototype.paranaensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - lasiurus.prototype.didactylus = function () { + lasiurus_prototype.didactylus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - lasiurus.prototype.schreibersii = function () { + lasiurus_prototype.schreibersii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - lasiurus.prototype.orii = function () { + lasiurus_prototype.orii = function () { var _this = this; var x; (function () { var y = _this; }); @@ -4965,67 +5030,68 @@ var imperfecta; var subspinosus = /** @class */ (function () { function subspinosus() { } - subspinosus.prototype.monticularis = function () { + var subspinosus_prototype = subspinosus.prototype; + subspinosus_prototype.monticularis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - subspinosus.prototype.Gadolinium = function () { + subspinosus_prototype.Gadolinium = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - subspinosus.prototype.oasicus = function () { + subspinosus_prototype.oasicus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - subspinosus.prototype.paterculus = function () { + subspinosus_prototype.paterculus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - subspinosus.prototype.punctata = function () { + subspinosus_prototype.punctata = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - subspinosus.prototype.invictus = function () { + subspinosus_prototype.invictus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - subspinosus.prototype.stangeri = function () { + subspinosus_prototype.stangeri = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - subspinosus.prototype.siskiyou = function () { + subspinosus_prototype.siskiyou = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - subspinosus.prototype.welwitschii = function () { + subspinosus_prototype.welwitschii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - subspinosus.prototype.Polonium = function () { + subspinosus_prototype.Polonium = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - subspinosus.prototype.harpia = function () { + subspinosus_prototype.harpia = function () { var _this = this; var x; (function () { var y = _this; }); @@ -5039,19 +5105,20 @@ var imperfecta; function ciliolabrum() { return _super !== null && _super.apply(this, arguments) || this; } - ciliolabrum.prototype.leschenaultii = function () { + var ciliolabrum_prototype = ciliolabrum.prototype; + ciliolabrum_prototype.leschenaultii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - ciliolabrum.prototype.ludia = function () { + ciliolabrum_prototype.ludia = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - ciliolabrum.prototype.sinicus = function () { + ciliolabrum_prototype.sinicus = function () { var _this = this; var x; (function () { var y = _this; }); @@ -5065,25 +5132,26 @@ var imperfecta; var wattsi = /** @class */ (function () { function wattsi() { } - wattsi.prototype.lagotis = function () { + var wattsi_prototype = wattsi.prototype; + wattsi_prototype.lagotis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - wattsi.prototype.hussoni = function () { + wattsi_prototype.hussoni = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - wattsi.prototype.bilarni = function () { + wattsi_prototype.bilarni = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - wattsi.prototype.cabrerae = function () { + wattsi_prototype.cabrerae = function () { var _this = this; var x; (function () { var y = _this; }); @@ -5099,55 +5167,56 @@ var imperfecta; function sodyi() { return _super !== null && _super.apply(this, arguments) || this; } - sodyi.prototype.saundersiae = function () { + var sodyi_prototype = sodyi.prototype; + sodyi_prototype.saundersiae = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - sodyi.prototype.imberbis = function () { + sodyi_prototype.imberbis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - sodyi.prototype.cansdalei = function () { + sodyi_prototype.cansdalei = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - sodyi.prototype.Lawrencium = function () { + sodyi_prototype.Lawrencium = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - sodyi.prototype.catta = function () { + sodyi_prototype.catta = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - sodyi.prototype.breviceps = function () { + sodyi_prototype.breviceps = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - sodyi.prototype.transitionalis = function () { + sodyi_prototype.transitionalis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - sodyi.prototype.heptneri = function () { + sodyi_prototype.heptneri = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - sodyi.prototype.bairdii = function () { + sodyi_prototype.bairdii = function () { var _this = this; var x; (function () { var y = _this; }); @@ -5163,49 +5232,50 @@ var imperfecta; function megaphyllus() { return _super !== null && _super.apply(this, arguments) || this; } - megaphyllus.prototype.montana = function () { + var megaphyllus_prototype = megaphyllus.prototype; + megaphyllus_prototype.montana = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - megaphyllus.prototype.amatus = function () { + megaphyllus_prototype.amatus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - megaphyllus.prototype.bucculentus = function () { + megaphyllus_prototype.bucculentus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - megaphyllus.prototype.lepida = function () { + megaphyllus_prototype.lepida = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - megaphyllus.prototype.graecus = function () { + megaphyllus_prototype.graecus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - megaphyllus.prototype.forsteri = function () { + megaphyllus_prototype.forsteri = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - megaphyllus.prototype.perotensis = function () { + megaphyllus_prototype.perotensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - megaphyllus.prototype.cirrhosus = function () { + megaphyllus_prototype.cirrhosus = function () { var _this = this; var x; (function () { var y = _this; }); @@ -5219,19 +5289,20 @@ var imperfecta; var portoricensis = /** @class */ (function () { function portoricensis() { } - portoricensis.prototype.relictus = function () { + var portoricensis_prototype = portoricensis.prototype; + portoricensis_prototype.relictus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - portoricensis.prototype.aequatorianus = function () { + portoricensis_prototype.aequatorianus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - portoricensis.prototype.rhinogradoides = function () { + portoricensis_prototype.rhinogradoides = function () { var _this = this; var x; (function () { var y = _this; }); @@ -5245,79 +5316,80 @@ var imperfecta; var foina = /** @class */ (function () { function foina() { } - foina.prototype.tarfayensis = function () { + var foina_prototype = foina.prototype; + foina_prototype.tarfayensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - foina.prototype.Promethium = function () { + foina_prototype.Promethium = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - foina.prototype.salinae = function () { + foina_prototype.salinae = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - foina.prototype.kerri = function () { + foina_prototype.kerri = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - foina.prototype.scotti = function () { + foina_prototype.scotti = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - foina.prototype.camerunensis = function () { + foina_prototype.camerunensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - foina.prototype.affinis = function () { + foina_prototype.affinis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - foina.prototype.siebersi = function () { + foina_prototype.siebersi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - foina.prototype.maquassiensis = function () { + foina_prototype.maquassiensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - foina.prototype.layardi = function () { + foina_prototype.layardi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - foina.prototype.bishopi = function () { + foina_prototype.bishopi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - foina.prototype.apodemoides = function () { + foina_prototype.apodemoides = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - foina.prototype.argentiventer = function () { + foina_prototype.argentiventer = function () { var _this = this; var x; (function () { var y = _this; }); @@ -5333,61 +5405,62 @@ var imperfecta; function cor() { return _super !== null && _super.apply(this, arguments) || this; } - cor.prototype.antinorii = function () { + var cor_prototype = cor.prototype; + cor_prototype.antinorii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - cor.prototype.voi = function () { + cor_prototype.voi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - cor.prototype.mussoi = function () { + cor_prototype.mussoi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - cor.prototype.truncatus = function () { + cor_prototype.truncatus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - cor.prototype.achates = function () { + cor_prototype.achates = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - cor.prototype.praedatrix = function () { + cor_prototype.praedatrix = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - cor.prototype.mzabi = function () { + cor_prototype.mzabi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - cor.prototype.xanthinus = function () { + cor_prototype.xanthinus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - cor.prototype.tapoatafa = function () { + cor_prototype.tapoatafa = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - cor.prototype.castroviejoi = function () { + cor_prototype.castroviejoi = function () { var _this = this; var x; (function () { var y = _this; }); @@ -5401,13 +5474,14 @@ var imperfecta; var coludo = /** @class */ (function () { function coludo() { } - coludo.prototype.bernhardi = function () { + var coludo_prototype = coludo.prototype; + coludo_prototype.bernhardi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - coludo.prototype.isseli = function () { + coludo_prototype.isseli = function () { var _this = this; var x; (function () { var y = _this; }); @@ -5423,13 +5497,14 @@ var imperfecta; function germaini() { return _super !== null && _super.apply(this, arguments) || this; } - germaini.prototype.sharpei = function () { + var germaini_prototype = germaini.prototype; + germaini_prototype.sharpei = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - germaini.prototype.palmarum = function () { + germaini_prototype.palmarum = function () { var _this = this; var x; (function () { var y = _this; }); @@ -5443,67 +5518,68 @@ var imperfecta; var stolzmanni = /** @class */ (function () { function stolzmanni() { } - stolzmanni.prototype.riparius = function () { + var stolzmanni_prototype = stolzmanni.prototype; + stolzmanni_prototype.riparius = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - stolzmanni.prototype.dhofarensis = function () { + stolzmanni_prototype.dhofarensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - stolzmanni.prototype.tricolor = function () { + stolzmanni_prototype.tricolor = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - stolzmanni.prototype.gardneri = function () { + stolzmanni_prototype.gardneri = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - stolzmanni.prototype.walleri = function () { + stolzmanni_prototype.walleri = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - stolzmanni.prototype.talpoides = function () { + stolzmanni_prototype.talpoides = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - stolzmanni.prototype.pallipes = function () { + stolzmanni_prototype.pallipes = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - stolzmanni.prototype.lagurus = function () { + stolzmanni_prototype.lagurus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - stolzmanni.prototype.hipposideros = function () { + stolzmanni_prototype.hipposideros = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - stolzmanni.prototype.griselda = function () { + stolzmanni_prototype.griselda = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - stolzmanni.prototype.florium = function () { + stolzmanni_prototype.florium = function () { var _this = this; var x; (function () { var y = _this; }); @@ -5519,79 +5595,80 @@ var imperfecta; function melanops() { return _super !== null && _super.apply(this, arguments) || this; } - melanops.prototype.blarina = function () { + var melanops_prototype = melanops.prototype; + melanops_prototype.blarina = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - melanops.prototype.harwoodi = function () { + melanops_prototype.harwoodi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - melanops.prototype.ashaninka = function () { + melanops_prototype.ashaninka = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - melanops.prototype.wiedii = function () { + melanops_prototype.wiedii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - melanops.prototype.godmani = function () { + melanops_prototype.godmani = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - melanops.prototype.condorensis = function () { + melanops_prototype.condorensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - melanops.prototype.xerophila = function () { + melanops_prototype.xerophila = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - melanops.prototype.laminatus = function () { + melanops_prototype.laminatus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - melanops.prototype.archeri = function () { + melanops_prototype.archeri = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - melanops.prototype.hidalgo = function () { + melanops_prototype.hidalgo = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - melanops.prototype.unicolor = function () { + melanops_prototype.unicolor = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - melanops.prototype.philippii = function () { + melanops_prototype.philippii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - melanops.prototype.bocagei = function () { + melanops_prototype.bocagei = function () { var _this = this; var x; (function () { var y = _this; }); @@ -5607,49 +5684,50 @@ var imperfecta; function peninsulae() { return _super !== null && _super.apply(this, arguments) || this; } - peninsulae.prototype.aitkeni = function () { + var peninsulae_prototype = peninsulae.prototype; + peninsulae_prototype.aitkeni = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - peninsulae.prototype.novaeangliae = function () { + peninsulae_prototype.novaeangliae = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - peninsulae.prototype.olallae = function () { + peninsulae_prototype.olallae = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - peninsulae.prototype.anselli = function () { + peninsulae_prototype.anselli = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - peninsulae.prototype.timminsi = function () { + peninsulae_prototype.timminsi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - peninsulae.prototype.sordidus = function () { + peninsulae_prototype.sordidus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - peninsulae.prototype.telfordi = function () { + peninsulae_prototype.telfordi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - peninsulae.prototype.cavernarum = function () { + peninsulae_prototype.cavernarum = function () { var _this = this; var x; (function () { var y = _this; }); @@ -5663,79 +5741,80 @@ var imperfecta; var netscheri = /** @class */ (function () { function netscheri() { } - netscheri.prototype.gravis = function () { + var netscheri_prototype = netscheri.prototype; + netscheri_prototype.gravis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - netscheri.prototype.ruschii = function () { + netscheri_prototype.ruschii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - netscheri.prototype.tricuspidatus = function () { + netscheri_prototype.tricuspidatus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - netscheri.prototype.fernandezi = function () { + netscheri_prototype.fernandezi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - netscheri.prototype.colletti = function () { + netscheri_prototype.colletti = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - netscheri.prototype.microbullatus = function () { + netscheri_prototype.microbullatus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - netscheri.prototype.eburneae = function () { + netscheri_prototype.eburneae = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - netscheri.prototype.tatei = function () { + netscheri_prototype.tatei = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - netscheri.prototype.millardi = function () { + netscheri_prototype.millardi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - netscheri.prototype.pruinosus = function () { + netscheri_prototype.pruinosus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - netscheri.prototype.delator = function () { + netscheri_prototype.delator = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - netscheri.prototype.nyikae = function () { + netscheri_prototype.nyikae = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - netscheri.prototype.ruemmleri = function () { + netscheri_prototype.ruemmleri = function () { var _this = this; var x; (function () { var y = _this; }); @@ -5751,79 +5830,80 @@ var imperfecta; function Praseodymium() { return _super !== null && _super.apply(this, arguments) || this; } - Praseodymium.prototype.clara = function () { + var Praseodymium_prototype = Praseodymium.prototype; + Praseodymium_prototype.clara = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - Praseodymium.prototype.spectabilis = function () { + Praseodymium_prototype.spectabilis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - Praseodymium.prototype.kamensis = function () { + Praseodymium_prototype.kamensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - Praseodymium.prototype.ruddi = function () { + Praseodymium_prototype.ruddi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - Praseodymium.prototype.bartelsii = function () { + Praseodymium_prototype.bartelsii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - Praseodymium.prototype.yerbabuenae = function () { + Praseodymium_prototype.yerbabuenae = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - Praseodymium.prototype.davidi = function () { + Praseodymium_prototype.davidi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - Praseodymium.prototype.pilirostris = function () { + Praseodymium_prototype.pilirostris = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - Praseodymium.prototype.catherinae = function () { + Praseodymium_prototype.catherinae = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - Praseodymium.prototype.frontata = function () { + Praseodymium_prototype.frontata = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - Praseodymium.prototype.Terbium = function () { + Praseodymium_prototype.Terbium = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - Praseodymium.prototype.thomensis = function () { + Praseodymium_prototype.thomensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - Praseodymium.prototype.soricinus = function () { + Praseodymium_prototype.soricinus = function () { var _this = this; var x; (function () { var y = _this; }); @@ -5867,49 +5947,50 @@ var imperfecta; var setulosus = /** @class */ (function () { function setulosus() { } - setulosus.prototype.duthieae = function () { + var setulosus_prototype = setulosus.prototype; + setulosus_prototype.duthieae = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - setulosus.prototype.guereza = function () { + setulosus_prototype.guereza = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - setulosus.prototype.buselaphus = function () { + setulosus_prototype.buselaphus = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - setulosus.prototype.nuttalli = function () { + setulosus_prototype.nuttalli = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - setulosus.prototype.pelii = function () { + setulosus_prototype.pelii = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - setulosus.prototype.tunneyi = function () { + setulosus_prototype.tunneyi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - setulosus.prototype.lamula = function () { + setulosus_prototype.lamula = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - setulosus.prototype.vampyrus = function () { + setulosus_prototype.vampyrus = function () { var _this = this; var x; (function () { var y = _this; }); @@ -5923,31 +6004,32 @@ var imperfecta; var rosalia = /** @class */ (function () { function rosalia() { } - rosalia.prototype.palmeri = function () { + var rosalia_prototype = rosalia.prototype; + rosalia_prototype.palmeri = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - rosalia.prototype.baeops = function () { + rosalia_prototype.baeops = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - rosalia.prototype.ozensis = function () { + rosalia_prototype.ozensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - rosalia.prototype.creaghi = function () { + rosalia_prototype.creaghi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - rosalia.prototype.montivaga = function () { + rosalia_prototype.montivaga = function () { var _this = this; var x; (function () { var y = _this; }); @@ -5963,37 +6045,38 @@ var imperfecta; function psilurus() { return _super !== null && _super.apply(this, arguments) || this; } - psilurus.prototype.socialis = function () { + var psilurus_prototype = psilurus.prototype; + psilurus_prototype.socialis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - psilurus.prototype.lundi = function () { + psilurus_prototype.lundi = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - psilurus.prototype.araeum = function () { + psilurus_prototype.araeum = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - psilurus.prototype.calamianensis = function () { + psilurus_prototype.calamianensis = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - psilurus.prototype.petersoni = function () { + psilurus_prototype.petersoni = function () { var _this = this; var x; (function () { var y = _this; }); return x; }; - psilurus.prototype.nitela = function () { + psilurus_prototype.nitela = function () { var _this = this; var x; (function () { var y = _this; }); diff --git a/tests/baselines/reference/returnInConstructor1.js b/tests/baselines/reference/returnInConstructor1.js index a474fadb66791..2a1586f00a313 100644 --- a/tests/baselines/reference/returnInConstructor1.js +++ b/tests/baselines/reference/returnInConstructor1.js @@ -126,8 +126,9 @@ var G = /** @class */ (function () { function G() { this.test = 2; } - G.prototype.test1 = function () { }; - G.prototype.foo = function () { }; + var G_prototype = G.prototype; + G_prototype.test1 = function () { }; + G_prototype.foo = function () { }; return G; }()); var H = /** @class */ (function (_super) { diff --git a/tests/baselines/reference/returnTypeTypeArguments.js b/tests/baselines/reference/returnTypeTypeArguments.js index d9264bdb7bc87..9e8a7e9ee6877 100644 --- a/tests/baselines/reference/returnTypeTypeArguments.js +++ b/tests/baselines/reference/returnTypeTypeArguments.js @@ -101,22 +101,24 @@ function B3() { return null; } var C = /** @class */ (function () { function C() { } - C.prototype.A1 = function () { return null; }; - C.prototype.A2 = function () { return null; }; - C.prototype.A3 = function () { return null; }; - C.prototype.B1 = function () { return null; }; - C.prototype.B2 = function () { return null; }; - C.prototype.B3 = function () { return null; }; + var C_prototype = C.prototype; + C_prototype.A1 = function () { return null; }; + C_prototype.A2 = function () { return null; }; + C_prototype.A3 = function () { return null; }; + C_prototype.B1 = function () { return null; }; + C_prototype.B2 = function () { return null; }; + C_prototype.B3 = function () { return null; }; return C; }()); var D = /** @class */ (function () { function D() { } - D.prototype.A2 = function () { return null; }; - D.prototype.A3 = function () { return null; }; - D.prototype.B1 = function () { return null; }; - D.prototype.B2 = function () { return null; }; - D.prototype.B3 = function () { return null; }; + var D_prototype = D.prototype; + D_prototype.A2 = function () { return null; }; + D_prototype.A3 = function () { return null; }; + D_prototype.B1 = function () { return null; }; + D_prototype.B2 = function () { return null; }; + D_prototype.B3 = function () { return null; }; return D; }()); var Y = /** @class */ (function () { diff --git a/tests/baselines/reference/scopeCheckStaticInitializer.js b/tests/baselines/reference/scopeCheckStaticInitializer.js index a03cce6e0ac9e..8c38f1bb82b32 100644 --- a/tests/baselines/reference/scopeCheckStaticInitializer.js +++ b/tests/baselines/reference/scopeCheckStaticInitializer.js @@ -30,6 +30,7 @@ var X = /** @class */ (function () { var After = /** @class */ (function () { function After() { } + var After_prototype = After.prototype; After.method = function () { }; ; After.data = 12; diff --git a/tests/baselines/reference/selfInCallback.js b/tests/baselines/reference/selfInCallback.js index 585e72ea54882..b8276da38d887 100644 --- a/tests/baselines/reference/selfInCallback.js +++ b/tests/baselines/reference/selfInCallback.js @@ -12,8 +12,9 @@ var C = /** @class */ (function () { function C() { this.p1 = 0; } - C.prototype.callback = function (cb) { cb(); }; - C.prototype.doit = function () { + var C_prototype = C.prototype; + C_prototype.callback = function (cb) { cb(); }; + C_prototype.doit = function () { var _this = this; this.callback(function () { _this.p1 + 1; }); }; diff --git a/tests/baselines/reference/sourceMapValidationClass.js b/tests/baselines/reference/sourceMapValidationClass.js index fe5a714acdc40..26f3f2b955631 100644 --- a/tests/baselines/reference/sourceMapValidationClass.js +++ b/tests/baselines/reference/sourceMapValidationClass.js @@ -28,13 +28,14 @@ var Greeter = /** @class */ (function () { this.greeting = greeting; this.x1 = 10; } - Greeter.prototype.greet = function () { + var Greeter_prototype = Greeter.prototype; + Greeter_prototype.greet = function () { return "

" + this.greeting + "

"; }; - Greeter.prototype.fn = function () { + Greeter_prototype.fn = function () { return this.greeting; }; - Object.defineProperty(Greeter.prototype, "greetings", { + Object.defineProperty(Greeter_prototype, "greetings", { get: function () { return this.greeting; }, diff --git a/tests/baselines/reference/sourceMapValidationClass.js.map b/tests/baselines/reference/sourceMapValidationClass.js.map index 95ffd06228986..e5f054829cf91 100644 --- a/tests/baselines/reference/sourceMapValidationClass.js.map +++ b/tests/baselines/reference/sourceMapValidationClass.js.map @@ -1,3 +1,3 @@ //// [sourceMapValidationClass.js.map] -{"version":3,"file":"sourceMapValidationClass.js","sourceRoot":"","sources":["sourceMapValidationClass.ts"],"names":[],"mappings":"AAAA;IACI,iBAAmB,QAAgB;QAAE,WAAc;aAAd,UAAc,EAAd,qBAAc,EAAd,IAAc;YAAd,0BAAc;;QAAhC,aAAQ,GAAR,QAAQ,CAAQ;QAM3B,OAAE,GAAW,EAAE,CAAC;IALxB,CAAC;IACD,uBAAK,GAAL;QACI,OAAO,MAAM,GAAG,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;IAC5C,CAAC;IAGO,oBAAE,GAAV;QACI,OAAO,IAAI,CAAC,QAAQ,CAAC;IACzB,CAAC;IACD,sBAAI,8BAAS;aAAb;YACI,OAAO,IAAI,CAAC,QAAQ,CAAC;QACzB,CAAC;aACD,UAAc,SAAiB;YAC3B,IAAI,CAAC,QAAQ,GAAG,SAAS,CAAC;QAC9B,CAAC;;;OAHA;IAIL,cAAC;AAAD,CAAC,AAjBD,IAiBC"} -//// https://sokra.github.io/source-map-visualization#base64,dmFyIEdyZWV0ZXIgPSAvKiogQGNsYXNzICovIChmdW5jdGlvbiAoKSB7DQogICAgZnVuY3Rpb24gR3JlZXRlcihncmVldGluZykgew0KICAgICAgICB2YXIgYiA9IFtdOw0KICAgICAgICBmb3IgKHZhciBfaSA9IDE7IF9pIDwgYXJndW1lbnRzLmxlbmd0aDsgX2krKykgew0KICAgICAgICAgICAgYltfaSAtIDFdID0gYXJndW1lbnRzW19pXTsNCiAgICAgICAgfQ0KICAgICAgICB0aGlzLmdyZWV0aW5nID0gZ3JlZXRpbmc7DQogICAgICAgIHRoaXMueDEgPSAxMDsNCiAgICB9DQogICAgR3JlZXRlci5wcm90b3R5cGUuZ3JlZXQgPSBmdW5jdGlvbiAoKSB7DQogICAgICAgIHJldHVybiAiPGgxPiIgKyB0aGlzLmdyZWV0aW5nICsgIjwvaDE+IjsNCiAgICB9Ow0KICAgIEdyZWV0ZXIucHJvdG90eXBlLmZuID0gZnVuY3Rpb24gKCkgew0KICAgICAgICByZXR1cm4gdGhpcy5ncmVldGluZzsNCiAgICB9Ow0KICAgIE9iamVjdC5kZWZpbmVQcm9wZXJ0eShHcmVldGVyLnByb3RvdHlwZSwgImdyZWV0aW5ncyIsIHsNCiAgICAgICAgZ2V0OiBmdW5jdGlvbiAoKSB7DQogICAgICAgICAgICByZXR1cm4gdGhpcy5ncmVldGluZzsNCiAgICAgICAgfSwNCiAgICAgICAgc2V0OiBmdW5jdGlvbiAoZ3JlZXRpbmdzKSB7DQogICAgICAgICAgICB0aGlzLmdyZWV0aW5nID0gZ3JlZXRpbmdzOw0KICAgICAgICB9LA0KICAgICAgICBlbnVtZXJhYmxlOiBmYWxzZSwNCiAgICAgICAgY29uZmlndXJhYmxlOiB0cnVlDQogICAgfSk7DQogICAgcmV0dXJuIEdyZWV0ZXI7DQp9KCkpOw0KLy8jIHNvdXJjZU1hcHBpbmdVUkw9c291cmNlTWFwVmFsaWRhdGlvbkNsYXNzLmpzLm1hcA==,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic291cmNlTWFwVmFsaWRhdGlvbkNsYXNzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsic291cmNlTWFwVmFsaWRhdGlvbkNsYXNzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0lBQ0ksaUJBQW1CLFFBQWdCO1FBQUUsV0FBYzthQUFkLFVBQWMsRUFBZCxxQkFBYyxFQUFkLElBQWM7WUFBZCwwQkFBYzs7UUFBaEMsYUFBUSxHQUFSLFFBQVEsQ0FBUTtRQU0zQixPQUFFLEdBQVcsRUFBRSxDQUFDO0lBTHhCLENBQUM7SUFDRCx1QkFBSyxHQUFMO1FBQ0ksT0FBTyxNQUFNLEdBQUcsSUFBSSxDQUFDLFFBQVEsR0FBRyxPQUFPLENBQUM7SUFDNUMsQ0FBQztJQUdPLG9CQUFFLEdBQVY7UUFDSSxPQUFPLElBQUksQ0FBQyxRQUFRLENBQUM7SUFDekIsQ0FBQztJQUNELHNCQUFJLDhCQUFTO2FBQWI7WUFDSSxPQUFPLElBQUksQ0FBQyxRQUFRLENBQUM7UUFDekIsQ0FBQzthQUNELFVBQWMsU0FBaUI7WUFDM0IsSUFBSSxDQUFDLFFBQVEsR0FBRyxTQUFTLENBQUM7UUFDOUIsQ0FBQzs7O09BSEE7SUFJTCxjQUFDO0FBQUQsQ0FBQyxBQWpCRCxJQWlCQyJ9,Y2xhc3MgR3JlZXRlciB7CiAgICBjb25zdHJ1Y3RvcihwdWJsaWMgZ3JlZXRpbmc6IHN0cmluZywgLi4uYjogc3RyaW5nW10pIHsKICAgIH0KICAgIGdyZWV0KCkgewogICAgICAgIHJldHVybiAiPGgxPiIgKyB0aGlzLmdyZWV0aW5nICsgIjwvaDE+IjsKICAgIH0KICAgIHByaXZhdGUgeDogc3RyaW5nOwogICAgcHJpdmF0ZSB4MTogbnVtYmVyID0gMTA7CiAgICBwcml2YXRlIGZuKCkgewogICAgICAgIHJldHVybiB0aGlzLmdyZWV0aW5nOwogICAgfQogICAgZ2V0IGdyZWV0aW5ncygpIHsKICAgICAgICByZXR1cm4gdGhpcy5ncmVldGluZzsKICAgIH0KICAgIHNldCBncmVldGluZ3MoZ3JlZXRpbmdzOiBzdHJpbmcpIHsKICAgICAgICB0aGlzLmdyZWV0aW5nID0gZ3JlZXRpbmdzOwogICAgfQp9 +{"version":3,"file":"sourceMapValidationClass.js","sourceRoot":"","sources":["sourceMapValidationClass.ts"],"names":[],"mappings":"AAAA;IACI,iBAAmB,QAAgB;QAAE,WAAc;aAAd,UAAc,EAAd,qBAAc,EAAd,IAAc;YAAd,0BAAc;;QAAhC,aAAQ,GAAR,QAAQ,CAAQ;QAM3B,OAAE,GAAW,EAAE,CAAC;IALxB,CAAC;;IACD,uBAAK,GAAL;QACI,OAAO,MAAM,GAAG,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;IAC5C,CAAC;IAGO,oBAAE,GAAV;QACI,OAAO,IAAI,CAAC,QAAQ,CAAC;IACzB,CAAC;IACD,sBAAI,8BAAS;aAAb;YACI,OAAO,IAAI,CAAC,QAAQ,CAAC;QACzB,CAAC;aACD,UAAc,SAAiB;YAC3B,IAAI,CAAC,QAAQ,GAAG,SAAS,CAAC;QAC9B,CAAC;;;OAHA;IAIL,cAAC;AAAD,CAAC,AAjBD,IAiBC"} +//// https://sokra.github.io/source-map-visualization#base64,dmFyIEdyZWV0ZXIgPSAvKiogQGNsYXNzICovIChmdW5jdGlvbiAoKSB7DQogICAgZnVuY3Rpb24gR3JlZXRlcihncmVldGluZykgew0KICAgICAgICB2YXIgYiA9IFtdOw0KICAgICAgICBmb3IgKHZhciBfaSA9IDE7IF9pIDwgYXJndW1lbnRzLmxlbmd0aDsgX2krKykgew0KICAgICAgICAgICAgYltfaSAtIDFdID0gYXJndW1lbnRzW19pXTsNCiAgICAgICAgfQ0KICAgICAgICB0aGlzLmdyZWV0aW5nID0gZ3JlZXRpbmc7DQogICAgICAgIHRoaXMueDEgPSAxMDsNCiAgICB9DQogICAgdmFyIEdyZWV0ZXJfcHJvdG90eXBlID0gR3JlZXRlci5wcm90b3R5cGU7DQogICAgR3JlZXRlcl9wcm90b3R5cGUuZ3JlZXQgPSBmdW5jdGlvbiAoKSB7DQogICAgICAgIHJldHVybiAiPGgxPiIgKyB0aGlzLmdyZWV0aW5nICsgIjwvaDE+IjsNCiAgICB9Ow0KICAgIEdyZWV0ZXJfcHJvdG90eXBlLmZuID0gZnVuY3Rpb24gKCkgew0KICAgICAgICByZXR1cm4gdGhpcy5ncmVldGluZzsNCiAgICB9Ow0KICAgIE9iamVjdC5kZWZpbmVQcm9wZXJ0eShHcmVldGVyX3Byb3RvdHlwZSwgImdyZWV0aW5ncyIsIHsNCiAgICAgICAgZ2V0OiBmdW5jdGlvbiAoKSB7DQogICAgICAgICAgICByZXR1cm4gdGhpcy5ncmVldGluZzsNCiAgICAgICAgfSwNCiAgICAgICAgc2V0OiBmdW5jdGlvbiAoZ3JlZXRpbmdzKSB7DQogICAgICAgICAgICB0aGlzLmdyZWV0aW5nID0gZ3JlZXRpbmdzOw0KICAgICAgICB9LA0KICAgICAgICBlbnVtZXJhYmxlOiBmYWxzZSwNCiAgICAgICAgY29uZmlndXJhYmxlOiB0cnVlDQogICAgfSk7DQogICAgcmV0dXJuIEdyZWV0ZXI7DQp9KCkpOw0KLy8jIHNvdXJjZU1hcHBpbmdVUkw9c291cmNlTWFwVmFsaWRhdGlvbkNsYXNzLmpzLm1hcA==,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic291cmNlTWFwVmFsaWRhdGlvbkNsYXNzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsic291cmNlTWFwVmFsaWRhdGlvbkNsYXNzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0lBQ0ksaUJBQW1CLFFBQWdCO1FBQUUsV0FBYzthQUFkLFVBQWMsRUFBZCxxQkFBYyxFQUFkLElBQWM7WUFBZCwwQkFBYzs7UUFBaEMsYUFBUSxHQUFSLFFBQVEsQ0FBUTtRQU0zQixPQUFFLEdBQVcsRUFBRSxDQUFDO0lBTHhCLENBQUM7O0lBQ0QsdUJBQUssR0FBTDtRQUNJLE9BQU8sTUFBTSxHQUFHLElBQUksQ0FBQyxRQUFRLEdBQUcsT0FBTyxDQUFDO0lBQzVDLENBQUM7SUFHTyxvQkFBRSxHQUFWO1FBQ0ksT0FBTyxJQUFJLENBQUMsUUFBUSxDQUFDO0lBQ3pCLENBQUM7SUFDRCxzQkFBSSw4QkFBUzthQUFiO1lBQ0ksT0FBTyxJQUFJLENBQUMsUUFBUSxDQUFDO1FBQ3pCLENBQUM7YUFDRCxVQUFjLFNBQWlCO1lBQzNCLElBQUksQ0FBQyxRQUFRLEdBQUcsU0FBUyxDQUFDO1FBQzlCLENBQUM7OztPQUhBO0lBSUwsY0FBQztBQUFELENBQUMsQUFqQkQsSUFpQkMifQ==,Y2xhc3MgR3JlZXRlciB7CiAgICBjb25zdHJ1Y3RvcihwdWJsaWMgZ3JlZXRpbmc6IHN0cmluZywgLi4uYjogc3RyaW5nW10pIHsKICAgIH0KICAgIGdyZWV0KCkgewogICAgICAgIHJldHVybiAiPGgxPiIgKyB0aGlzLmdyZWV0aW5nICsgIjwvaDE+IjsKICAgIH0KICAgIHByaXZhdGUgeDogc3RyaW5nOwogICAgcHJpdmF0ZSB4MTogbnVtYmVyID0gMTA7CiAgICBwcml2YXRlIGZuKCkgewogICAgICAgIHJldHVybiB0aGlzLmdyZWV0aW5nOwogICAgfQogICAgZ2V0IGdyZWV0aW5ncygpIHsKICAgICAgICByZXR1cm4gdGhpcy5ncmVldGluZzsKICAgIH0KICAgIHNldCBncmVldGluZ3MoZ3JlZXRpbmdzOiBzdHJpbmcpIHsKICAgICAgICB0aGlzLmdyZWV0aW5nID0gZ3JlZXRpbmdzOwogICAgfQp9 diff --git a/tests/baselines/reference/sourceMapValidationClass.sourcemap.txt b/tests/baselines/reference/sourceMapValidationClass.sourcemap.txt index 00e9a0da75dde..b784630e31302 100644 --- a/tests/baselines/reference/sourceMapValidationClass.sourcemap.txt +++ b/tests/baselines/reference/sourceMapValidationClass.sourcemap.txt @@ -107,13 +107,14 @@ sourceFile:sourceMapValidationClass.ts >>> } 1 >^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > 2 > } 1 >Emitted(9, 5) Source(3, 5) + SourceIndex(0) 2 >Emitted(9, 6) Source(3, 6) + SourceIndex(0) --- ->>> Greeter.prototype.greet = function () { +>>> var Greeter_prototype = Greeter.prototype; +>>> Greeter_prototype.greet = function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^ @@ -122,9 +123,9 @@ sourceFile:sourceMapValidationClass.ts > 2 > greet 3 > -1->Emitted(10, 5) Source(4, 5) + SourceIndex(0) -2 >Emitted(10, 28) Source(4, 10) + SourceIndex(0) -3 >Emitted(10, 31) Source(4, 5) + SourceIndex(0) +1->Emitted(11, 5) Source(4, 5) + SourceIndex(0) +2 >Emitted(11, 28) Source(4, 10) + SourceIndex(0) +3 >Emitted(11, 31) Source(4, 5) + SourceIndex(0) --- >>> return "

" + this.greeting + "

"; 1->^^^^^^^^ @@ -148,16 +149,16 @@ sourceFile:sourceMapValidationClass.ts 8 > + 9 > "" 10> ; -1->Emitted(11, 9) Source(5, 9) + SourceIndex(0) -2 >Emitted(11, 16) Source(5, 16) + SourceIndex(0) -3 >Emitted(11, 22) Source(5, 22) + SourceIndex(0) -4 >Emitted(11, 25) Source(5, 25) + SourceIndex(0) -5 >Emitted(11, 29) Source(5, 29) + SourceIndex(0) -6 >Emitted(11, 30) Source(5, 30) + SourceIndex(0) -7 >Emitted(11, 38) Source(5, 38) + SourceIndex(0) -8 >Emitted(11, 41) Source(5, 41) + SourceIndex(0) -9 >Emitted(11, 48) Source(5, 48) + SourceIndex(0) -10>Emitted(11, 49) Source(5, 49) + SourceIndex(0) +1->Emitted(12, 9) Source(5, 9) + SourceIndex(0) +2 >Emitted(12, 16) Source(5, 16) + SourceIndex(0) +3 >Emitted(12, 22) Source(5, 22) + SourceIndex(0) +4 >Emitted(12, 25) Source(5, 25) + SourceIndex(0) +5 >Emitted(12, 29) Source(5, 29) + SourceIndex(0) +6 >Emitted(12, 30) Source(5, 30) + SourceIndex(0) +7 >Emitted(12, 38) Source(5, 38) + SourceIndex(0) +8 >Emitted(12, 41) Source(5, 41) + SourceIndex(0) +9 >Emitted(12, 48) Source(5, 48) + SourceIndex(0) +10>Emitted(12, 49) Source(5, 49) + SourceIndex(0) --- >>> }; 1 >^^^^ @@ -166,10 +167,10 @@ sourceFile:sourceMapValidationClass.ts 1 > > 2 > } -1 >Emitted(12, 5) Source(6, 5) + SourceIndex(0) -2 >Emitted(12, 6) Source(6, 6) + SourceIndex(0) +1 >Emitted(13, 5) Source(6, 5) + SourceIndex(0) +2 >Emitted(13, 6) Source(6, 6) + SourceIndex(0) --- ->>> Greeter.prototype.fn = function () { +>>> Greeter_prototype.fn = function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^ 3 > ^^^ @@ -180,9 +181,9 @@ sourceFile:sourceMapValidationClass.ts > private 2 > fn 3 > -1->Emitted(13, 5) Source(9, 13) + SourceIndex(0) -2 >Emitted(13, 25) Source(9, 15) + SourceIndex(0) -3 >Emitted(13, 28) Source(9, 5) + SourceIndex(0) +1->Emitted(14, 5) Source(9, 13) + SourceIndex(0) +2 >Emitted(14, 25) Source(9, 15) + SourceIndex(0) +3 >Emitted(14, 28) Source(9, 5) + SourceIndex(0) --- >>> return this.greeting; 1->^^^^^^^^ @@ -198,12 +199,12 @@ sourceFile:sourceMapValidationClass.ts 4 > . 5 > greeting 6 > ; -1->Emitted(14, 9) Source(10, 9) + SourceIndex(0) -2 >Emitted(14, 16) Source(10, 16) + SourceIndex(0) -3 >Emitted(14, 20) Source(10, 20) + SourceIndex(0) -4 >Emitted(14, 21) Source(10, 21) + SourceIndex(0) -5 >Emitted(14, 29) Source(10, 29) + SourceIndex(0) -6 >Emitted(14, 30) Source(10, 30) + SourceIndex(0) +1->Emitted(15, 9) Source(10, 9) + SourceIndex(0) +2 >Emitted(15, 16) Source(10, 16) + SourceIndex(0) +3 >Emitted(15, 20) Source(10, 20) + SourceIndex(0) +4 >Emitted(15, 21) Source(10, 21) + SourceIndex(0) +5 >Emitted(15, 29) Source(10, 29) + SourceIndex(0) +6 >Emitted(15, 30) Source(10, 30) + SourceIndex(0) --- >>> }; 1 >^^^^ @@ -212,10 +213,10 @@ sourceFile:sourceMapValidationClass.ts 1 > > 2 > } -1 >Emitted(15, 5) Source(11, 5) + SourceIndex(0) -2 >Emitted(15, 6) Source(11, 6) + SourceIndex(0) +1 >Emitted(16, 5) Source(11, 5) + SourceIndex(0) +2 >Emitted(16, 6) Source(11, 6) + SourceIndex(0) --- ->>> Object.defineProperty(Greeter.prototype, "greetings", { +>>> Object.defineProperty(Greeter_prototype, "greetings", { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -223,15 +224,15 @@ sourceFile:sourceMapValidationClass.ts > 2 > get 3 > greetings -1->Emitted(16, 5) Source(12, 5) + SourceIndex(0) -2 >Emitted(16, 27) Source(12, 9) + SourceIndex(0) -3 >Emitted(16, 57) Source(12, 18) + SourceIndex(0) +1->Emitted(17, 5) Source(12, 5) + SourceIndex(0) +2 >Emitted(17, 27) Source(12, 9) + SourceIndex(0) +3 >Emitted(17, 57) Source(12, 18) + SourceIndex(0) --- >>> get: function () { 1 >^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(17, 14) Source(12, 5) + SourceIndex(0) +1 >Emitted(18, 14) Source(12, 5) + SourceIndex(0) --- >>> return this.greeting; 1->^^^^^^^^^^^^ @@ -247,12 +248,12 @@ sourceFile:sourceMapValidationClass.ts 4 > . 5 > greeting 6 > ; -1->Emitted(18, 13) Source(13, 9) + SourceIndex(0) -2 >Emitted(18, 20) Source(13, 16) + SourceIndex(0) -3 >Emitted(18, 24) Source(13, 20) + SourceIndex(0) -4 >Emitted(18, 25) Source(13, 21) + SourceIndex(0) -5 >Emitted(18, 33) Source(13, 29) + SourceIndex(0) -6 >Emitted(18, 34) Source(13, 30) + SourceIndex(0) +1->Emitted(19, 13) Source(13, 9) + SourceIndex(0) +2 >Emitted(19, 20) Source(13, 16) + SourceIndex(0) +3 >Emitted(19, 24) Source(13, 20) + SourceIndex(0) +4 >Emitted(19, 25) Source(13, 21) + SourceIndex(0) +5 >Emitted(19, 33) Source(13, 29) + SourceIndex(0) +6 >Emitted(19, 34) Source(13, 30) + SourceIndex(0) --- >>> }, 1 >^^^^^^^^ @@ -261,8 +262,8 @@ sourceFile:sourceMapValidationClass.ts 1 > > 2 > } -1 >Emitted(19, 9) Source(14, 5) + SourceIndex(0) -2 >Emitted(19, 10) Source(14, 6) + SourceIndex(0) +1 >Emitted(20, 9) Source(14, 5) + SourceIndex(0) +2 >Emitted(20, 10) Source(14, 6) + SourceIndex(0) --- >>> set: function (greetings) { 1->^^^^^^^^^^^^^ @@ -273,9 +274,9 @@ sourceFile:sourceMapValidationClass.ts > 2 > set greetings( 3 > greetings: string -1->Emitted(20, 14) Source(15, 5) + SourceIndex(0) -2 >Emitted(20, 24) Source(15, 19) + SourceIndex(0) -3 >Emitted(20, 33) Source(15, 36) + SourceIndex(0) +1->Emitted(21, 14) Source(15, 5) + SourceIndex(0) +2 >Emitted(21, 24) Source(15, 19) + SourceIndex(0) +3 >Emitted(21, 33) Source(15, 36) + SourceIndex(0) --- >>> this.greeting = greetings; 1->^^^^^^^^^^^^ @@ -293,13 +294,13 @@ sourceFile:sourceMapValidationClass.ts 5 > = 6 > greetings 7 > ; -1->Emitted(21, 13) Source(16, 9) + SourceIndex(0) -2 >Emitted(21, 17) Source(16, 13) + SourceIndex(0) -3 >Emitted(21, 18) Source(16, 14) + SourceIndex(0) -4 >Emitted(21, 26) Source(16, 22) + SourceIndex(0) -5 >Emitted(21, 29) Source(16, 25) + SourceIndex(0) -6 >Emitted(21, 38) Source(16, 34) + SourceIndex(0) -7 >Emitted(21, 39) Source(16, 35) + SourceIndex(0) +1->Emitted(22, 13) Source(16, 9) + SourceIndex(0) +2 >Emitted(22, 17) Source(16, 13) + SourceIndex(0) +3 >Emitted(22, 18) Source(16, 14) + SourceIndex(0) +4 >Emitted(22, 26) Source(16, 22) + SourceIndex(0) +5 >Emitted(22, 29) Source(16, 25) + SourceIndex(0) +6 >Emitted(22, 38) Source(16, 34) + SourceIndex(0) +7 >Emitted(22, 39) Source(16, 35) + SourceIndex(0) --- >>> }, 1 >^^^^^^^^ @@ -308,8 +309,8 @@ sourceFile:sourceMapValidationClass.ts 1 > > 2 > } -1 >Emitted(22, 9) Source(17, 5) + SourceIndex(0) -2 >Emitted(22, 10) Source(17, 6) + SourceIndex(0) +1 >Emitted(23, 9) Source(17, 5) + SourceIndex(0) +2 >Emitted(23, 10) Source(17, 6) + SourceIndex(0) --- >>> enumerable: false, >>> configurable: true @@ -317,7 +318,7 @@ sourceFile:sourceMapValidationClass.ts 1->^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1-> -1->Emitted(25, 8) Source(14, 6) + SourceIndex(0) +1->Emitted(26, 8) Source(14, 6) + SourceIndex(0) --- >>> return Greeter; 1->^^^^ @@ -328,8 +329,8 @@ sourceFile:sourceMapValidationClass.ts > } > 2 > } -1->Emitted(26, 5) Source(18, 1) + SourceIndex(0) -2 >Emitted(26, 19) Source(18, 2) + SourceIndex(0) +1->Emitted(27, 5) Source(18, 1) + SourceIndex(0) +2 >Emitted(27, 19) Source(18, 2) + SourceIndex(0) --- >>>}()); 1 > @@ -358,9 +359,9 @@ sourceFile:sourceMapValidationClass.ts > this.greeting = greetings; > } > } -1 >Emitted(27, 1) Source(18, 1) + SourceIndex(0) -2 >Emitted(27, 2) Source(18, 2) + SourceIndex(0) -3 >Emitted(27, 2) Source(1, 1) + SourceIndex(0) -4 >Emitted(27, 6) Source(18, 2) + SourceIndex(0) +1 >Emitted(28, 1) Source(18, 1) + SourceIndex(0) +2 >Emitted(28, 2) Source(18, 2) + SourceIndex(0) +3 >Emitted(28, 2) Source(1, 1) + SourceIndex(0) +4 >Emitted(28, 6) Source(18, 2) + SourceIndex(0) --- >>>//# sourceMappingURL=sourceMapValidationClass.js.map \ No newline at end of file diff --git a/tests/baselines/reference/sourceMapValidationDecorators.js b/tests/baselines/reference/sourceMapValidationDecorators.js index 86a843f7f82c3..60695a5d1b2c8 100644 --- a/tests/baselines/reference/sourceMapValidationDecorators.js +++ b/tests/baselines/reference/sourceMapValidationDecorators.js @@ -72,13 +72,14 @@ var Greeter = /** @class */ (function () { } this.greeting = greeting; } - Greeter.prototype.greet = function () { + var Greeter_prototype = Greeter.prototype; + Greeter_prototype.greet = function () { return "

" + this.greeting + "

"; }; - Greeter.prototype.fn = function (x) { + Greeter_prototype.fn = function (x) { return this.greeting; }; - Object.defineProperty(Greeter.prototype, "greetings", { + Object.defineProperty(Greeter_prototype, "greetings", { get: function () { return this.greeting; }, diff --git a/tests/baselines/reference/sourceMapValidationDecorators.js.map b/tests/baselines/reference/sourceMapValidationDecorators.js.map index 5b5471bc7bf62..90c00bf490acf 100644 --- a/tests/baselines/reference/sourceMapValidationDecorators.js.map +++ b/tests/baselines/reference/sourceMapValidationDecorators.js.map @@ -1,3 +1,3 @@ //// [sourceMapValidationDecorators.js.map] -{"version":3,"file":"sourceMapValidationDecorators.js","sourceRoot":"","sources":["sourceMapValidationDecorators.ts"],"names":[],"mappings":";;;;;;;;;AASA;IACI,iBAGS,QAAgB;QAIvB,WAAc;aAAd,UAAc,EAAd,qBAAc,EAAd,IAAc;YAAd,0BAAc;;QAJP,aAAQ,GAAR,QAAQ,CAAQ;IAKzB,CAAC;IAID,uBAAK,GAAL;QACI,OAAO,MAAM,GAAG,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;IAC5C,CAAC;IAUO,oBAAE,GAAV,UAGE,CAAS;QACP,OAAO,IAAI,CAAC,QAAQ,CAAC;IACzB,CAAC;IAID,sBAAI,8BAAS;aAAb;YACI,OAAO,IAAI,CAAC,QAAQ,CAAC;QACzB,CAAC;aAED,UAGE,SAAiB;YACf,IAAI,CAAC,QAAQ,GAAG,SAAS,CAAC;QAC9B,CAAC;;;OAPA;IAbc,UAAE,GAAW,EAAE,CAAC;IAV/B;QAFC,kBAAkB;QAClB,kBAAkB,CAAC,EAAE,CAAC;wCAGtB;IAID;QAFC,kBAAkB;QAClB,kBAAkB,CAAC,EAAE,CAAC;sCACL;IAMlB;QACG,WAAA,mBAAmB,CAAA;QACnB,WAAA,mBAAmB,CAAC,EAAE,CAAC,CAAA;qCAGzB;IAID;QAFC,kBAAkB;QAClB,kBAAkB,CAAC,EAAE,CAAC;QAMpB,WAAA,mBAAmB,CAAA;QACnB,WAAA,mBAAmB,CAAC,EAAE,CAAC,CAAA;4CAJzB;IAbD;QAFC,kBAAkB;QAClB,kBAAkB,CAAC,EAAE,CAAC;6BACQ;IAvB7B,OAAO;QAFZ,eAAe;QACf,eAAe,CAAC,EAAE,CAAC;QAGb,WAAA,mBAAmB,CAAA;QACnB,WAAA,mBAAmB,CAAC,EAAE,CAAC,CAAA;QAGvB,WAAA,mBAAmB,CAAA;QACnB,WAAA,mBAAmB,CAAC,EAAE,CAAC,CAAA;OAPxB,OAAO,CA4CZ;IAAD,cAAC;CAAA,AA5CD,IA4CC"} -//// https://sokra.github.io/source-map-visualization#base64,dmFyIF9fZGVjb3JhdGUgPSAodGhpcyAmJiB0aGlzLl9fZGVjb3JhdGUpIHx8IGZ1bmN0aW9uIChkZWNvcmF0b3JzLCB0YXJnZXQsIGtleSwgZGVzYykgew0KICAgIHZhciBjID0gYXJndW1lbnRzLmxlbmd0aCwgciA9IGMgPCAzID8gdGFyZ2V0IDogZGVzYyA9PT0gbnVsbCA/IGRlc2MgPSBPYmplY3QuZ2V0T3duUHJvcGVydHlEZXNjcmlwdG9yKHRhcmdldCwga2V5KSA6IGRlc2MsIGQ7DQogICAgaWYgKHR5cGVvZiBSZWZsZWN0ID09PSAib2JqZWN0IiAmJiB0eXBlb2YgUmVmbGVjdC5kZWNvcmF0ZSA9PT0gImZ1bmN0aW9uIikgciA9IFJlZmxlY3QuZGVjb3JhdGUoZGVjb3JhdG9ycywgdGFyZ2V0LCBrZXksIGRlc2MpOw0KICAgIGVsc2UgZm9yICh2YXIgaSA9IGRlY29yYXRvcnMubGVuZ3RoIC0gMTsgaSA+PSAwOyBpLS0pIGlmIChkID0gZGVjb3JhdG9yc1tpXSkgciA9IChjIDwgMyA/IGQocikgOiBjID4gMyA/IGQodGFyZ2V0LCBrZXksIHIpIDogZCh0YXJnZXQsIGtleSkpIHx8IHI7DQogICAgcmV0dXJuIGMgPiAzICYmIHIgJiYgT2JqZWN0LmRlZmluZVByb3BlcnR5KHRhcmdldCwga2V5LCByKSwgcjsNCn07DQp2YXIgX19wYXJhbSA9ICh0aGlzICYmIHRoaXMuX19wYXJhbSkgfHwgZnVuY3Rpb24gKHBhcmFtSW5kZXgsIGRlY29yYXRvcikgew0KICAgIHJldHVybiBmdW5jdGlvbiAodGFyZ2V0LCBrZXkpIHsgZGVjb3JhdG9yKHRhcmdldCwga2V5LCBwYXJhbUluZGV4KTsgfQ0KfTsNCnZhciBHcmVldGVyID0gLyoqIEBjbGFzcyAqLyAoZnVuY3Rpb24gKCkgew0KICAgIGZ1bmN0aW9uIEdyZWV0ZXIoZ3JlZXRpbmcpIHsNCiAgICAgICAgdmFyIGIgPSBbXTsNCiAgICAgICAgZm9yICh2YXIgX2kgPSAxOyBfaSA8IGFyZ3VtZW50cy5sZW5ndGg7IF9pKyspIHsNCiAgICAgICAgICAgIGJbX2kgLSAxXSA9IGFyZ3VtZW50c1tfaV07DQogICAgICAgIH0NCiAgICAgICAgdGhpcy5ncmVldGluZyA9IGdyZWV0aW5nOw0KICAgIH0NCiAgICBHcmVldGVyLnByb3RvdHlwZS5ncmVldCA9IGZ1bmN0aW9uICgpIHsNCiAgICAgICAgcmV0dXJuICI8aDE+IiArIHRoaXMuZ3JlZXRpbmcgKyAiPC9oMT4iOw0KICAgIH07DQogICAgR3JlZXRlci5wcm90b3R5cGUuZm4gPSBmdW5jdGlvbiAoeCkgew0KICAgICAgICByZXR1cm4gdGhpcy5ncmVldGluZzsNCiAgICB9Ow0KICAgIE9iamVjdC5kZWZpbmVQcm9wZXJ0eShHcmVldGVyLnByb3RvdHlwZSwgImdyZWV0aW5ncyIsIHsNCiAgICAgICAgZ2V0OiBmdW5jdGlvbiAoKSB7DQogICAgICAgICAgICByZXR1cm4gdGhpcy5ncmVldGluZzsNCiAgICAgICAgfSwNCiAgICAgICAgc2V0OiBmdW5jdGlvbiAoZ3JlZXRpbmdzKSB7DQogICAgICAgICAgICB0aGlzLmdyZWV0aW5nID0gZ3JlZXRpbmdzOw0KICAgICAgICB9LA0KICAgICAgICBlbnVtZXJhYmxlOiBmYWxzZSwNCiAgICAgICAgY29uZmlndXJhYmxlOiB0cnVlDQogICAgfSk7DQogICAgR3JlZXRlci54MSA9IDEwOw0KICAgIF9fZGVjb3JhdGUoWw0KICAgICAgICBQcm9wZXJ0eURlY29yYXRvcjEsDQogICAgICAgIFByb3BlcnR5RGVjb3JhdG9yMig0MCkNCiAgICBdLCBHcmVldGVyLnByb3RvdHlwZSwgImdyZWV0IiwgbnVsbCk7DQogICAgX19kZWNvcmF0ZShbDQogICAgICAgIFByb3BlcnR5RGVjb3JhdG9yMSwNCiAgICAgICAgUHJvcGVydHlEZWNvcmF0b3IyKDUwKQ0KICAgIF0sIEdyZWV0ZXIucHJvdG90eXBlLCAieCIsIHZvaWQgMCk7DQogICAgX19kZWNvcmF0ZShbDQogICAgICAgIF9fcGFyYW0oMCwgUGFyYW1ldGVyRGVjb3JhdG9yMSksDQogICAgICAgIF9fcGFyYW0oMCwgUGFyYW1ldGVyRGVjb3JhdG9yMig3MCkpDQogICAgXSwgR3JlZXRlci5wcm90b3R5cGUsICJmbiIsIG51bGwpOw0KICAgIF9fZGVjb3JhdGUoWw0KICAgICAgICBQcm9wZXJ0eURlY29yYXRvcjEsDQogICAgICAgIFByb3BlcnR5RGVjb3JhdG9yMig4MCksDQogICAgICAgIF9fcGFyYW0oMCwgUGFyYW1ldGVyRGVjb3JhdG9yMSksDQogICAgICAgIF9fcGFyYW0oMCwgUGFyYW1ldGVyRGVjb3JhdG9yMig5MCkpDQogICAgXSwgR3JlZXRlci5wcm90b3R5cGUsICJncmVldGluZ3MiLCBudWxsKTsNCiAgICBfX2RlY29yYXRlKFsNCiAgICAgICAgUHJvcGVydHlEZWNvcmF0b3IxLA0KICAgICAgICBQcm9wZXJ0eURlY29yYXRvcjIoNjApDQogICAgXSwgR3JlZXRlciwgIngxIiwgdm9pZCAwKTsNCiAgICBHcmVldGVyID0gX19kZWNvcmF0ZShbDQogICAgICAgIENsYXNzRGVjb3JhdG9yMSwNCiAgICAgICAgQ2xhc3NEZWNvcmF0b3IyKDEwKSwNCiAgICAgICAgX19wYXJhbSgwLCBQYXJhbWV0ZXJEZWNvcmF0b3IxKSwNCiAgICAgICAgX19wYXJhbSgwLCBQYXJhbWV0ZXJEZWNvcmF0b3IyKDIwKSksDQogICAgICAgIF9fcGFyYW0oMSwgUGFyYW1ldGVyRGVjb3JhdG9yMSksDQogICAgICAgIF9fcGFyYW0oMSwgUGFyYW1ldGVyRGVjb3JhdG9yMigzMCkpDQogICAgXSwgR3JlZXRlcik7DQogICAgcmV0dXJuIEdyZWV0ZXI7DQp9KCkpOw0KLy8jIHNvdXJjZU1hcHBpbmdVUkw9c291cmNlTWFwVmFsaWRhdGlvbkRlY29yYXRvcnMuanMubWFw,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic291cmNlTWFwVmFsaWRhdGlvbkRlY29yYXRvcnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJzb3VyY2VNYXBWYWxpZGF0aW9uRGVjb3JhdG9ycy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7QUFTQTtJQUNJLGlCQUdTLFFBQWdCO1FBSXZCLFdBQWM7YUFBZCxVQUFjLEVBQWQscUJBQWMsRUFBZCxJQUFjO1lBQWQsMEJBQWM7O1FBSlAsYUFBUSxHQUFSLFFBQVEsQ0FBUTtJQUt6QixDQUFDO0lBSUQsdUJBQUssR0FBTDtRQUNJLE9BQU8sTUFBTSxHQUFHLElBQUksQ0FBQyxRQUFRLEdBQUcsT0FBTyxDQUFDO0lBQzVDLENBQUM7SUFVTyxvQkFBRSxHQUFWLFVBR0UsQ0FBUztRQUNQLE9BQU8sSUFBSSxDQUFDLFFBQVEsQ0FBQztJQUN6QixDQUFDO0lBSUQsc0JBQUksOEJBQVM7YUFBYjtZQUNJLE9BQU8sSUFBSSxDQUFDLFFBQVEsQ0FBQztRQUN6QixDQUFDO2FBRUQsVUFHRSxTQUFpQjtZQUNmLElBQUksQ0FBQyxRQUFRLEdBQUcsU0FBUyxDQUFDO1FBQzlCLENBQUM7OztPQVBBO0lBYmMsVUFBRSxHQUFXLEVBQUUsQ0FBQztJQVYvQjtRQUZDLGtCQUFrQjtRQUNsQixrQkFBa0IsQ0FBQyxFQUFFLENBQUM7d0NBR3RCO0lBSUQ7UUFGQyxrQkFBa0I7UUFDbEIsa0JBQWtCLENBQUMsRUFBRSxDQUFDO3NDQUNMO0lBTWxCO1FBQ0csV0FBQSxtQkFBbUIsQ0FBQTtRQUNuQixXQUFBLG1CQUFtQixDQUFDLEVBQUUsQ0FBQyxDQUFBO3FDQUd6QjtJQUlEO1FBRkMsa0JBQWtCO1FBQ2xCLGtCQUFrQixDQUFDLEVBQUUsQ0FBQztRQU1wQixXQUFBLG1CQUFtQixDQUFBO1FBQ25CLFdBQUEsbUJBQW1CLENBQUMsRUFBRSxDQUFDLENBQUE7NENBSnpCO0lBYkQ7UUFGQyxrQkFBa0I7UUFDbEIsa0JBQWtCLENBQUMsRUFBRSxDQUFDOzZCQUNRO0lBdkI3QixPQUFPO1FBRlosZUFBZTtRQUNmLGVBQWUsQ0FBQyxFQUFFLENBQUM7UUFHYixXQUFBLG1CQUFtQixDQUFBO1FBQ25CLFdBQUEsbUJBQW1CLENBQUMsRUFBRSxDQUFDLENBQUE7UUFHdkIsV0FBQSxtQkFBbUIsQ0FBQTtRQUNuQixXQUFBLG1CQUFtQixDQUFDLEVBQUUsQ0FBQyxDQUFBO09BUHhCLE9BQU8sQ0E0Q1o7SUFBRCxjQUFDO0NBQUEsQUE1Q0QsSUE0Q0MifQ==,ZGVjbGFyZSBmdW5jdGlvbiBDbGFzc0RlY29yYXRvcjEodGFyZ2V0OiBGdW5jdGlvbik6IHZvaWQ7CmRlY2xhcmUgZnVuY3Rpb24gQ2xhc3NEZWNvcmF0b3IyKHg6IG51bWJlcik6ICh0YXJnZXQ6IEZ1bmN0aW9uKSA9PiB2b2lkOwpkZWNsYXJlIGZ1bmN0aW9uIFByb3BlcnR5RGVjb3JhdG9yMSh0YXJnZXQ6IE9iamVjdCwga2V5OiBzdHJpbmcgfCBzeW1ib2wsIGRlc2NyaXB0b3I/OiBQcm9wZXJ0eURlc2NyaXB0b3IpOiB2b2lkOwpkZWNsYXJlIGZ1bmN0aW9uIFByb3BlcnR5RGVjb3JhdG9yMih4OiBudW1iZXIpOiAodGFyZ2V0OiBPYmplY3QsIGtleTogc3RyaW5nIHwgc3ltYm9sLCBkZXNjcmlwdG9yPzogUHJvcGVydHlEZXNjcmlwdG9yKSA9PiB2b2lkOwpkZWNsYXJlIGZ1bmN0aW9uIFBhcmFtZXRlckRlY29yYXRvcjEodGFyZ2V0OiBPYmplY3QsIGtleTogc3RyaW5nIHwgc3ltYm9sLCBwYXJhbUluZGV4OiBudW1iZXIpOiB2b2lkOwpkZWNsYXJlIGZ1bmN0aW9uIFBhcmFtZXRlckRlY29yYXRvcjIoeDogbnVtYmVyKTogKHRhcmdldDogT2JqZWN0LCBrZXk6IHN0cmluZyB8IHN5bWJvbCwgcGFyYW1JbmRleDogbnVtYmVyKSA9PiB2b2lkOwoKQENsYXNzRGVjb3JhdG9yMQpAQ2xhc3NEZWNvcmF0b3IyKDEwKQpjbGFzcyBHcmVldGVyIHsKICAgIGNvbnN0cnVjdG9yKAogICAgICBAUGFyYW1ldGVyRGVjb3JhdG9yMSAKICAgICAgQFBhcmFtZXRlckRlY29yYXRvcjIoMjApIAogICAgICBwdWJsaWMgZ3JlZXRpbmc6IHN0cmluZywgCiAgICAgIAogICAgICBAUGFyYW1ldGVyRGVjb3JhdG9yMSAKICAgICAgQFBhcmFtZXRlckRlY29yYXRvcjIoMzApIAogICAgICAuLi5iOiBzdHJpbmdbXSkgewogICAgfQogICAgCiAgICBAUHJvcGVydHlEZWNvcmF0b3IxCiAgICBAUHJvcGVydHlEZWNvcmF0b3IyKDQwKQogICAgZ3JlZXQoKSB7CiAgICAgICAgcmV0dXJuICI8aDE+IiArIHRoaXMuZ3JlZXRpbmcgKyAiPC9oMT4iOwogICAgfQoKICAgIEBQcm9wZXJ0eURlY29yYXRvcjEKICAgIEBQcm9wZXJ0eURlY29yYXRvcjIoNTApCiAgICBwcml2YXRlIHg6IHN0cmluZzsKCiAgICBAUHJvcGVydHlEZWNvcmF0b3IxCiAgICBAUHJvcGVydHlEZWNvcmF0b3IyKDYwKQogICAgcHJpdmF0ZSBzdGF0aWMgeDE6IG51bWJlciA9IDEwOwogICAgCiAgICBwcml2YXRlIGZuKAogICAgICBAUGFyYW1ldGVyRGVjb3JhdG9yMSAKICAgICAgQFBhcmFtZXRlckRlY29yYXRvcjIoNzApIAogICAgICB4OiBudW1iZXIpIHsKICAgICAgICByZXR1cm4gdGhpcy5ncmVldGluZzsKICAgIH0KCiAgICBAUHJvcGVydHlEZWNvcmF0b3IxCiAgICBAUHJvcGVydHlEZWNvcmF0b3IyKDgwKQogICAgZ2V0IGdyZWV0aW5ncygpIHsKICAgICAgICByZXR1cm4gdGhpcy5ncmVldGluZzsKICAgIH0KCiAgICBzZXQgZ3JlZXRpbmdzKAogICAgICBAUGFyYW1ldGVyRGVjb3JhdG9yMSAKICAgICAgQFBhcmFtZXRlckRlY29yYXRvcjIoOTApIAogICAgICBncmVldGluZ3M6IHN0cmluZykgewogICAgICAgIHRoaXMuZ3JlZXRpbmcgPSBncmVldGluZ3M7CiAgICB9ICAgIAp9 +{"version":3,"file":"sourceMapValidationDecorators.js","sourceRoot":"","sources":["sourceMapValidationDecorators.ts"],"names":[],"mappings":";;;;;;;;;AASA;IACI,iBAGS,QAAgB;QAIvB,WAAc;aAAd,UAAc,EAAd,qBAAc,EAAd,IAAc;YAAd,0BAAc;;QAJP,aAAQ,GAAR,QAAQ,CAAQ;IAKzB,CAAC;;IAID,uBAAK,GAAL;QACI,OAAO,MAAM,GAAG,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC;IAC5C,CAAC;IAUO,oBAAE,GAAV,UAGE,CAAS;QACP,OAAO,IAAI,CAAC,QAAQ,CAAC;IACzB,CAAC;IAID,sBAAI,8BAAS;aAAb;YACI,OAAO,IAAI,CAAC,QAAQ,CAAC;QACzB,CAAC;aAED,UAGE,SAAiB;YACf,IAAI,CAAC,QAAQ,GAAG,SAAS,CAAC;QAC9B,CAAC;;;OAPA;IAbc,UAAE,GAAW,EAAE,CAAC;IAV/B;QAFC,kBAAkB;QAClB,kBAAkB,CAAC,EAAE,CAAC;wCAGtB;IAID;QAFC,kBAAkB;QAClB,kBAAkB,CAAC,EAAE,CAAC;sCACL;IAMlB;QACG,WAAA,mBAAmB,CAAA;QACnB,WAAA,mBAAmB,CAAC,EAAE,CAAC,CAAA;qCAGzB;IAID;QAFC,kBAAkB;QAClB,kBAAkB,CAAC,EAAE,CAAC;QAMpB,WAAA,mBAAmB,CAAA;QACnB,WAAA,mBAAmB,CAAC,EAAE,CAAC,CAAA;4CAJzB;IAbD;QAFC,kBAAkB;QAClB,kBAAkB,CAAC,EAAE,CAAC;6BACQ;IAvB7B,OAAO;QAFZ,eAAe;QACf,eAAe,CAAC,EAAE,CAAC;QAGb,WAAA,mBAAmB,CAAA;QACnB,WAAA,mBAAmB,CAAC,EAAE,CAAC,CAAA;QAGvB,WAAA,mBAAmB,CAAA;QACnB,WAAA,mBAAmB,CAAC,EAAE,CAAC,CAAA;OAPxB,OAAO,CA4CZ;IAAD,cAAC;CAAA,AA5CD,IA4CC"} +//// https://sokra.github.io/source-map-visualization#base64,dmFyIF9fZGVjb3JhdGUgPSAodGhpcyAmJiB0aGlzLl9fZGVjb3JhdGUpIHx8IGZ1bmN0aW9uIChkZWNvcmF0b3JzLCB0YXJnZXQsIGtleSwgZGVzYykgew0KICAgIHZhciBjID0gYXJndW1lbnRzLmxlbmd0aCwgciA9IGMgPCAzID8gdGFyZ2V0IDogZGVzYyA9PT0gbnVsbCA/IGRlc2MgPSBPYmplY3QuZ2V0T3duUHJvcGVydHlEZXNjcmlwdG9yKHRhcmdldCwga2V5KSA6IGRlc2MsIGQ7DQogICAgaWYgKHR5cGVvZiBSZWZsZWN0ID09PSAib2JqZWN0IiAmJiB0eXBlb2YgUmVmbGVjdC5kZWNvcmF0ZSA9PT0gImZ1bmN0aW9uIikgciA9IFJlZmxlY3QuZGVjb3JhdGUoZGVjb3JhdG9ycywgdGFyZ2V0LCBrZXksIGRlc2MpOw0KICAgIGVsc2UgZm9yICh2YXIgaSA9IGRlY29yYXRvcnMubGVuZ3RoIC0gMTsgaSA+PSAwOyBpLS0pIGlmIChkID0gZGVjb3JhdG9yc1tpXSkgciA9IChjIDwgMyA/IGQocikgOiBjID4gMyA/IGQodGFyZ2V0LCBrZXksIHIpIDogZCh0YXJnZXQsIGtleSkpIHx8IHI7DQogICAgcmV0dXJuIGMgPiAzICYmIHIgJiYgT2JqZWN0LmRlZmluZVByb3BlcnR5KHRhcmdldCwga2V5LCByKSwgcjsNCn07DQp2YXIgX19wYXJhbSA9ICh0aGlzICYmIHRoaXMuX19wYXJhbSkgfHwgZnVuY3Rpb24gKHBhcmFtSW5kZXgsIGRlY29yYXRvcikgew0KICAgIHJldHVybiBmdW5jdGlvbiAodGFyZ2V0LCBrZXkpIHsgZGVjb3JhdG9yKHRhcmdldCwga2V5LCBwYXJhbUluZGV4KTsgfQ0KfTsNCnZhciBHcmVldGVyID0gLyoqIEBjbGFzcyAqLyAoZnVuY3Rpb24gKCkgew0KICAgIGZ1bmN0aW9uIEdyZWV0ZXIoZ3JlZXRpbmcpIHsNCiAgICAgICAgdmFyIGIgPSBbXTsNCiAgICAgICAgZm9yICh2YXIgX2kgPSAxOyBfaSA8IGFyZ3VtZW50cy5sZW5ndGg7IF9pKyspIHsNCiAgICAgICAgICAgIGJbX2kgLSAxXSA9IGFyZ3VtZW50c1tfaV07DQogICAgICAgIH0NCiAgICAgICAgdGhpcy5ncmVldGluZyA9IGdyZWV0aW5nOw0KICAgIH0NCiAgICB2YXIgR3JlZXRlcl9wcm90b3R5cGUgPSBHcmVldGVyLnByb3RvdHlwZTsNCiAgICBHcmVldGVyX3Byb3RvdHlwZS5ncmVldCA9IGZ1bmN0aW9uICgpIHsNCiAgICAgICAgcmV0dXJuICI8aDE+IiArIHRoaXMuZ3JlZXRpbmcgKyAiPC9oMT4iOw0KICAgIH07DQogICAgR3JlZXRlcl9wcm90b3R5cGUuZm4gPSBmdW5jdGlvbiAoeCkgew0KICAgICAgICByZXR1cm4gdGhpcy5ncmVldGluZzsNCiAgICB9Ow0KICAgIE9iamVjdC5kZWZpbmVQcm9wZXJ0eShHcmVldGVyX3Byb3RvdHlwZSwgImdyZWV0aW5ncyIsIHsNCiAgICAgICAgZ2V0OiBmdW5jdGlvbiAoKSB7DQogICAgICAgICAgICByZXR1cm4gdGhpcy5ncmVldGluZzsNCiAgICAgICAgfSwNCiAgICAgICAgc2V0OiBmdW5jdGlvbiAoZ3JlZXRpbmdzKSB7DQogICAgICAgICAgICB0aGlzLmdyZWV0aW5nID0gZ3JlZXRpbmdzOw0KICAgICAgICB9LA0KICAgICAgICBlbnVtZXJhYmxlOiBmYWxzZSwNCiAgICAgICAgY29uZmlndXJhYmxlOiB0cnVlDQogICAgfSk7DQogICAgR3JlZXRlci54MSA9IDEwOw0KICAgIF9fZGVjb3JhdGUoWw0KICAgICAgICBQcm9wZXJ0eURlY29yYXRvcjEsDQogICAgICAgIFByb3BlcnR5RGVjb3JhdG9yMig0MCkNCiAgICBdLCBHcmVldGVyLnByb3RvdHlwZSwgImdyZWV0IiwgbnVsbCk7DQogICAgX19kZWNvcmF0ZShbDQogICAgICAgIFByb3BlcnR5RGVjb3JhdG9yMSwNCiAgICAgICAgUHJvcGVydHlEZWNvcmF0b3IyKDUwKQ0KICAgIF0sIEdyZWV0ZXIucHJvdG90eXBlLCAieCIsIHZvaWQgMCk7DQogICAgX19kZWNvcmF0ZShbDQogICAgICAgIF9fcGFyYW0oMCwgUGFyYW1ldGVyRGVjb3JhdG9yMSksDQogICAgICAgIF9fcGFyYW0oMCwgUGFyYW1ldGVyRGVjb3JhdG9yMig3MCkpDQogICAgXSwgR3JlZXRlci5wcm90b3R5cGUsICJmbiIsIG51bGwpOw0KICAgIF9fZGVjb3JhdGUoWw0KICAgICAgICBQcm9wZXJ0eURlY29yYXRvcjEsDQogICAgICAgIFByb3BlcnR5RGVjb3JhdG9yMig4MCksDQogICAgICAgIF9fcGFyYW0oMCwgUGFyYW1ldGVyRGVjb3JhdG9yMSksDQogICAgICAgIF9fcGFyYW0oMCwgUGFyYW1ldGVyRGVjb3JhdG9yMig5MCkpDQogICAgXSwgR3JlZXRlci5wcm90b3R5cGUsICJncmVldGluZ3MiLCBudWxsKTsNCiAgICBfX2RlY29yYXRlKFsNCiAgICAgICAgUHJvcGVydHlEZWNvcmF0b3IxLA0KICAgICAgICBQcm9wZXJ0eURlY29yYXRvcjIoNjApDQogICAgXSwgR3JlZXRlciwgIngxIiwgdm9pZCAwKTsNCiAgICBHcmVldGVyID0gX19kZWNvcmF0ZShbDQogICAgICAgIENsYXNzRGVjb3JhdG9yMSwNCiAgICAgICAgQ2xhc3NEZWNvcmF0b3IyKDEwKSwNCiAgICAgICAgX19wYXJhbSgwLCBQYXJhbWV0ZXJEZWNvcmF0b3IxKSwNCiAgICAgICAgX19wYXJhbSgwLCBQYXJhbWV0ZXJEZWNvcmF0b3IyKDIwKSksDQogICAgICAgIF9fcGFyYW0oMSwgUGFyYW1ldGVyRGVjb3JhdG9yMSksDQogICAgICAgIF9fcGFyYW0oMSwgUGFyYW1ldGVyRGVjb3JhdG9yMigzMCkpDQogICAgXSwgR3JlZXRlcik7DQogICAgcmV0dXJuIEdyZWV0ZXI7DQp9KCkpOw0KLy8jIHNvdXJjZU1hcHBpbmdVUkw9c291cmNlTWFwVmFsaWRhdGlvbkRlY29yYXRvcnMuanMubWFw,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic291cmNlTWFwVmFsaWRhdGlvbkRlY29yYXRvcnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJzb3VyY2VNYXBWYWxpZGF0aW9uRGVjb3JhdG9ycy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7QUFTQTtJQUNJLGlCQUdTLFFBQWdCO1FBSXZCLFdBQWM7YUFBZCxVQUFjLEVBQWQscUJBQWMsRUFBZCxJQUFjO1lBQWQsMEJBQWM7O1FBSlAsYUFBUSxHQUFSLFFBQVEsQ0FBUTtJQUt6QixDQUFDOztJQUlELHVCQUFLLEdBQUw7UUFDSSxPQUFPLE1BQU0sR0FBRyxJQUFJLENBQUMsUUFBUSxHQUFHLE9BQU8sQ0FBQztJQUM1QyxDQUFDO0lBVU8sb0JBQUUsR0FBVixVQUdFLENBQVM7UUFDUCxPQUFPLElBQUksQ0FBQyxRQUFRLENBQUM7SUFDekIsQ0FBQztJQUlELHNCQUFJLDhCQUFTO2FBQWI7WUFDSSxPQUFPLElBQUksQ0FBQyxRQUFRLENBQUM7UUFDekIsQ0FBQzthQUVELFVBR0UsU0FBaUI7WUFDZixJQUFJLENBQUMsUUFBUSxHQUFHLFNBQVMsQ0FBQztRQUM5QixDQUFDOzs7T0FQQTtJQWJjLFVBQUUsR0FBVyxFQUFFLENBQUM7SUFWL0I7UUFGQyxrQkFBa0I7UUFDbEIsa0JBQWtCLENBQUMsRUFBRSxDQUFDO3dDQUd0QjtJQUlEO1FBRkMsa0JBQWtCO1FBQ2xCLGtCQUFrQixDQUFDLEVBQUUsQ0FBQztzQ0FDTDtJQU1sQjtRQUNHLFdBQUEsbUJBQW1CLENBQUE7UUFDbkIsV0FBQSxtQkFBbUIsQ0FBQyxFQUFFLENBQUMsQ0FBQTtxQ0FHekI7SUFJRDtRQUZDLGtCQUFrQjtRQUNsQixrQkFBa0IsQ0FBQyxFQUFFLENBQUM7UUFNcEIsV0FBQSxtQkFBbUIsQ0FBQTtRQUNuQixXQUFBLG1CQUFtQixDQUFDLEVBQUUsQ0FBQyxDQUFBOzRDQUp6QjtJQWJEO1FBRkMsa0JBQWtCO1FBQ2xCLGtCQUFrQixDQUFDLEVBQUUsQ0FBQzs2QkFDUTtJQXZCN0IsT0FBTztRQUZaLGVBQWU7UUFDZixlQUFlLENBQUMsRUFBRSxDQUFDO1FBR2IsV0FBQSxtQkFBbUIsQ0FBQTtRQUNuQixXQUFBLG1CQUFtQixDQUFDLEVBQUUsQ0FBQyxDQUFBO1FBR3ZCLFdBQUEsbUJBQW1CLENBQUE7UUFDbkIsV0FBQSxtQkFBbUIsQ0FBQyxFQUFFLENBQUMsQ0FBQTtPQVB4QixPQUFPLENBNENaO0lBQUQsY0FBQztDQUFBLEFBNUNELElBNENDIn0=,ZGVjbGFyZSBmdW5jdGlvbiBDbGFzc0RlY29yYXRvcjEodGFyZ2V0OiBGdW5jdGlvbik6IHZvaWQ7CmRlY2xhcmUgZnVuY3Rpb24gQ2xhc3NEZWNvcmF0b3IyKHg6IG51bWJlcik6ICh0YXJnZXQ6IEZ1bmN0aW9uKSA9PiB2b2lkOwpkZWNsYXJlIGZ1bmN0aW9uIFByb3BlcnR5RGVjb3JhdG9yMSh0YXJnZXQ6IE9iamVjdCwga2V5OiBzdHJpbmcgfCBzeW1ib2wsIGRlc2NyaXB0b3I/OiBQcm9wZXJ0eURlc2NyaXB0b3IpOiB2b2lkOwpkZWNsYXJlIGZ1bmN0aW9uIFByb3BlcnR5RGVjb3JhdG9yMih4OiBudW1iZXIpOiAodGFyZ2V0OiBPYmplY3QsIGtleTogc3RyaW5nIHwgc3ltYm9sLCBkZXNjcmlwdG9yPzogUHJvcGVydHlEZXNjcmlwdG9yKSA9PiB2b2lkOwpkZWNsYXJlIGZ1bmN0aW9uIFBhcmFtZXRlckRlY29yYXRvcjEodGFyZ2V0OiBPYmplY3QsIGtleTogc3RyaW5nIHwgc3ltYm9sLCBwYXJhbUluZGV4OiBudW1iZXIpOiB2b2lkOwpkZWNsYXJlIGZ1bmN0aW9uIFBhcmFtZXRlckRlY29yYXRvcjIoeDogbnVtYmVyKTogKHRhcmdldDogT2JqZWN0LCBrZXk6IHN0cmluZyB8IHN5bWJvbCwgcGFyYW1JbmRleDogbnVtYmVyKSA9PiB2b2lkOwoKQENsYXNzRGVjb3JhdG9yMQpAQ2xhc3NEZWNvcmF0b3IyKDEwKQpjbGFzcyBHcmVldGVyIHsKICAgIGNvbnN0cnVjdG9yKAogICAgICBAUGFyYW1ldGVyRGVjb3JhdG9yMSAKICAgICAgQFBhcmFtZXRlckRlY29yYXRvcjIoMjApIAogICAgICBwdWJsaWMgZ3JlZXRpbmc6IHN0cmluZywgCiAgICAgIAogICAgICBAUGFyYW1ldGVyRGVjb3JhdG9yMSAKICAgICAgQFBhcmFtZXRlckRlY29yYXRvcjIoMzApIAogICAgICAuLi5iOiBzdHJpbmdbXSkgewogICAgfQogICAgCiAgICBAUHJvcGVydHlEZWNvcmF0b3IxCiAgICBAUHJvcGVydHlEZWNvcmF0b3IyKDQwKQogICAgZ3JlZXQoKSB7CiAgICAgICAgcmV0dXJuICI8aDE+IiArIHRoaXMuZ3JlZXRpbmcgKyAiPC9oMT4iOwogICAgfQoKICAgIEBQcm9wZXJ0eURlY29yYXRvcjEKICAgIEBQcm9wZXJ0eURlY29yYXRvcjIoNTApCiAgICBwcml2YXRlIHg6IHN0cmluZzsKCiAgICBAUHJvcGVydHlEZWNvcmF0b3IxCiAgICBAUHJvcGVydHlEZWNvcmF0b3IyKDYwKQogICAgcHJpdmF0ZSBzdGF0aWMgeDE6IG51bWJlciA9IDEwOwogICAgCiAgICBwcml2YXRlIGZuKAogICAgICBAUGFyYW1ldGVyRGVjb3JhdG9yMSAKICAgICAgQFBhcmFtZXRlckRlY29yYXRvcjIoNzApIAogICAgICB4OiBudW1iZXIpIHsKICAgICAgICByZXR1cm4gdGhpcy5ncmVldGluZzsKICAgIH0KCiAgICBAUHJvcGVydHlEZWNvcmF0b3IxCiAgICBAUHJvcGVydHlEZWNvcmF0b3IyKDgwKQogICAgZ2V0IGdyZWV0aW5ncygpIHsKICAgICAgICByZXR1cm4gdGhpcy5ncmVldGluZzsKICAgIH0KCiAgICBzZXQgZ3JlZXRpbmdzKAogICAgICBAUGFyYW1ldGVyRGVjb3JhdG9yMSAKICAgICAgQFBhcmFtZXRlckRlY29yYXRvcjIoOTApIAogICAgICBncmVldGluZ3M6IHN0cmluZykgewogICAgICAgIHRoaXMuZ3JlZXRpbmcgPSBncmVldGluZ3M7CiAgICB9ICAgIAp9 diff --git a/tests/baselines/reference/sourceMapValidationDecorators.sourcemap.txt b/tests/baselines/reference/sourceMapValidationDecorators.sourcemap.txt index de57be0e9fa38..f98442095aefc 100644 --- a/tests/baselines/reference/sourceMapValidationDecorators.sourcemap.txt +++ b/tests/baselines/reference/sourceMapValidationDecorators.sourcemap.txt @@ -109,7 +109,7 @@ sourceFile:sourceMapValidationDecorators.ts >>> } 1 >^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 >, > > @ParameterDecorator1 @@ -120,7 +120,8 @@ sourceFile:sourceMapValidationDecorators.ts 1 >Emitted(17, 5) Source(19, 5) + SourceIndex(0) 2 >Emitted(17, 6) Source(19, 6) + SourceIndex(0) --- ->>> Greeter.prototype.greet = function () { +>>> var Greeter_prototype = Greeter.prototype; +>>> Greeter_prototype.greet = function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^ @@ -132,9 +133,9 @@ sourceFile:sourceMapValidationDecorators.ts > 2 > greet 3 > -1->Emitted(18, 5) Source(23, 5) + SourceIndex(0) -2 >Emitted(18, 28) Source(23, 10) + SourceIndex(0) -3 >Emitted(18, 31) Source(23, 5) + SourceIndex(0) +1->Emitted(19, 5) Source(23, 5) + SourceIndex(0) +2 >Emitted(19, 28) Source(23, 10) + SourceIndex(0) +3 >Emitted(19, 31) Source(23, 5) + SourceIndex(0) --- >>> return "

" + this.greeting + "

"; 1->^^^^^^^^ @@ -158,16 +159,16 @@ sourceFile:sourceMapValidationDecorators.ts 8 > + 9 > "" 10> ; -1->Emitted(19, 9) Source(24, 9) + SourceIndex(0) -2 >Emitted(19, 16) Source(24, 16) + SourceIndex(0) -3 >Emitted(19, 22) Source(24, 22) + SourceIndex(0) -4 >Emitted(19, 25) Source(24, 25) + SourceIndex(0) -5 >Emitted(19, 29) Source(24, 29) + SourceIndex(0) -6 >Emitted(19, 30) Source(24, 30) + SourceIndex(0) -7 >Emitted(19, 38) Source(24, 38) + SourceIndex(0) -8 >Emitted(19, 41) Source(24, 41) + SourceIndex(0) -9 >Emitted(19, 48) Source(24, 48) + SourceIndex(0) -10>Emitted(19, 49) Source(24, 49) + SourceIndex(0) +1->Emitted(20, 9) Source(24, 9) + SourceIndex(0) +2 >Emitted(20, 16) Source(24, 16) + SourceIndex(0) +3 >Emitted(20, 22) Source(24, 22) + SourceIndex(0) +4 >Emitted(20, 25) Source(24, 25) + SourceIndex(0) +5 >Emitted(20, 29) Source(24, 29) + SourceIndex(0) +6 >Emitted(20, 30) Source(24, 30) + SourceIndex(0) +7 >Emitted(20, 38) Source(24, 38) + SourceIndex(0) +8 >Emitted(20, 41) Source(24, 41) + SourceIndex(0) +9 >Emitted(20, 48) Source(24, 48) + SourceIndex(0) +10>Emitted(20, 49) Source(24, 49) + SourceIndex(0) --- >>> }; 1 >^^^^ @@ -176,10 +177,10 @@ sourceFile:sourceMapValidationDecorators.ts 1 > > 2 > } -1 >Emitted(20, 5) Source(25, 5) + SourceIndex(0) -2 >Emitted(20, 6) Source(25, 6) + SourceIndex(0) +1 >Emitted(21, 5) Source(25, 5) + SourceIndex(0) +2 >Emitted(21, 6) Source(25, 6) + SourceIndex(0) --- ->>> Greeter.prototype.fn = function (x) { +>>> Greeter_prototype.fn = function (x) { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^ 3 > ^^^ @@ -203,11 +204,11 @@ sourceFile:sourceMapValidationDecorators.ts > @ParameterDecorator2(70) > 5 > x: number -1->Emitted(21, 5) Source(35, 13) + SourceIndex(0) -2 >Emitted(21, 25) Source(35, 15) + SourceIndex(0) -3 >Emitted(21, 28) Source(35, 5) + SourceIndex(0) -4 >Emitted(21, 38) Source(38, 7) + SourceIndex(0) -5 >Emitted(21, 39) Source(38, 16) + SourceIndex(0) +1->Emitted(22, 5) Source(35, 13) + SourceIndex(0) +2 >Emitted(22, 25) Source(35, 15) + SourceIndex(0) +3 >Emitted(22, 28) Source(35, 5) + SourceIndex(0) +4 >Emitted(22, 38) Source(38, 7) + SourceIndex(0) +5 >Emitted(22, 39) Source(38, 16) + SourceIndex(0) --- >>> return this.greeting; 1 >^^^^^^^^ @@ -223,12 +224,12 @@ sourceFile:sourceMapValidationDecorators.ts 4 > . 5 > greeting 6 > ; -1 >Emitted(22, 9) Source(39, 9) + SourceIndex(0) -2 >Emitted(22, 16) Source(39, 16) + SourceIndex(0) -3 >Emitted(22, 20) Source(39, 20) + SourceIndex(0) -4 >Emitted(22, 21) Source(39, 21) + SourceIndex(0) -5 >Emitted(22, 29) Source(39, 29) + SourceIndex(0) -6 >Emitted(22, 30) Source(39, 30) + SourceIndex(0) +1 >Emitted(23, 9) Source(39, 9) + SourceIndex(0) +2 >Emitted(23, 16) Source(39, 16) + SourceIndex(0) +3 >Emitted(23, 20) Source(39, 20) + SourceIndex(0) +4 >Emitted(23, 21) Source(39, 21) + SourceIndex(0) +5 >Emitted(23, 29) Source(39, 29) + SourceIndex(0) +6 >Emitted(23, 30) Source(39, 30) + SourceIndex(0) --- >>> }; 1 >^^^^ @@ -237,10 +238,10 @@ sourceFile:sourceMapValidationDecorators.ts 1 > > 2 > } -1 >Emitted(23, 5) Source(40, 5) + SourceIndex(0) -2 >Emitted(23, 6) Source(40, 6) + SourceIndex(0) +1 >Emitted(24, 5) Source(40, 5) + SourceIndex(0) +2 >Emitted(24, 6) Source(40, 6) + SourceIndex(0) --- ->>> Object.defineProperty(Greeter.prototype, "greetings", { +>>> Object.defineProperty(Greeter_prototype, "greetings", { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -251,15 +252,15 @@ sourceFile:sourceMapValidationDecorators.ts > 2 > get 3 > greetings -1->Emitted(24, 5) Source(44, 5) + SourceIndex(0) -2 >Emitted(24, 27) Source(44, 9) + SourceIndex(0) -3 >Emitted(24, 57) Source(44, 18) + SourceIndex(0) +1->Emitted(25, 5) Source(44, 5) + SourceIndex(0) +2 >Emitted(25, 27) Source(44, 9) + SourceIndex(0) +3 >Emitted(25, 57) Source(44, 18) + SourceIndex(0) --- >>> get: function () { 1 >^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(25, 14) Source(44, 5) + SourceIndex(0) +1 >Emitted(26, 14) Source(44, 5) + SourceIndex(0) --- >>> return this.greeting; 1->^^^^^^^^^^^^ @@ -275,12 +276,12 @@ sourceFile:sourceMapValidationDecorators.ts 4 > . 5 > greeting 6 > ; -1->Emitted(26, 13) Source(45, 9) + SourceIndex(0) -2 >Emitted(26, 20) Source(45, 16) + SourceIndex(0) -3 >Emitted(26, 24) Source(45, 20) + SourceIndex(0) -4 >Emitted(26, 25) Source(45, 21) + SourceIndex(0) -5 >Emitted(26, 33) Source(45, 29) + SourceIndex(0) -6 >Emitted(26, 34) Source(45, 30) + SourceIndex(0) +1->Emitted(27, 13) Source(45, 9) + SourceIndex(0) +2 >Emitted(27, 20) Source(45, 16) + SourceIndex(0) +3 >Emitted(27, 24) Source(45, 20) + SourceIndex(0) +4 >Emitted(27, 25) Source(45, 21) + SourceIndex(0) +5 >Emitted(27, 33) Source(45, 29) + SourceIndex(0) +6 >Emitted(27, 34) Source(45, 30) + SourceIndex(0) --- >>> }, 1 >^^^^^^^^ @@ -289,8 +290,8 @@ sourceFile:sourceMapValidationDecorators.ts 1 > > 2 > } -1 >Emitted(27, 9) Source(46, 5) + SourceIndex(0) -2 >Emitted(27, 10) Source(46, 6) + SourceIndex(0) +1 >Emitted(28, 9) Source(46, 5) + SourceIndex(0) +2 >Emitted(28, 10) Source(46, 6) + SourceIndex(0) --- >>> set: function (greetings) { 1->^^^^^^^^^^^^^ @@ -305,9 +306,9 @@ sourceFile:sourceMapValidationDecorators.ts > @ParameterDecorator2(90) > 3 > greetings: string -1->Emitted(28, 14) Source(48, 5) + SourceIndex(0) -2 >Emitted(28, 24) Source(51, 7) + SourceIndex(0) -3 >Emitted(28, 33) Source(51, 24) + SourceIndex(0) +1->Emitted(29, 14) Source(48, 5) + SourceIndex(0) +2 >Emitted(29, 24) Source(51, 7) + SourceIndex(0) +3 >Emitted(29, 33) Source(51, 24) + SourceIndex(0) --- >>> this.greeting = greetings; 1->^^^^^^^^^^^^ @@ -325,13 +326,13 @@ sourceFile:sourceMapValidationDecorators.ts 5 > = 6 > greetings 7 > ; -1->Emitted(29, 13) Source(52, 9) + SourceIndex(0) -2 >Emitted(29, 17) Source(52, 13) + SourceIndex(0) -3 >Emitted(29, 18) Source(52, 14) + SourceIndex(0) -4 >Emitted(29, 26) Source(52, 22) + SourceIndex(0) -5 >Emitted(29, 29) Source(52, 25) + SourceIndex(0) -6 >Emitted(29, 38) Source(52, 34) + SourceIndex(0) -7 >Emitted(29, 39) Source(52, 35) + SourceIndex(0) +1->Emitted(30, 13) Source(52, 9) + SourceIndex(0) +2 >Emitted(30, 17) Source(52, 13) + SourceIndex(0) +3 >Emitted(30, 18) Source(52, 14) + SourceIndex(0) +4 >Emitted(30, 26) Source(52, 22) + SourceIndex(0) +5 >Emitted(30, 29) Source(52, 25) + SourceIndex(0) +6 >Emitted(30, 38) Source(52, 34) + SourceIndex(0) +7 >Emitted(30, 39) Source(52, 35) + SourceIndex(0) --- >>> }, 1 >^^^^^^^^ @@ -340,8 +341,8 @@ sourceFile:sourceMapValidationDecorators.ts 1 > > 2 > } -1 >Emitted(30, 9) Source(53, 5) + SourceIndex(0) -2 >Emitted(30, 10) Source(53, 6) + SourceIndex(0) +1 >Emitted(31, 9) Source(53, 5) + SourceIndex(0) +2 >Emitted(31, 10) Source(53, 6) + SourceIndex(0) --- >>> enumerable: false, >>> configurable: true @@ -349,7 +350,7 @@ sourceFile:sourceMapValidationDecorators.ts 1->^^^^^^^ 2 > ^^^^^^^^^^^^^^-> 1-> -1->Emitted(33, 8) Source(46, 6) + SourceIndex(0) +1->Emitted(34, 8) Source(46, 6) + SourceIndex(0) --- >>> Greeter.x1 = 10; 1->^^^^ @@ -362,17 +363,17 @@ sourceFile:sourceMapValidationDecorators.ts 3 > : number = 4 > 10 5 > ; -1->Emitted(34, 5) Source(33, 20) + SourceIndex(0) -2 >Emitted(34, 15) Source(33, 22) + SourceIndex(0) -3 >Emitted(34, 18) Source(33, 33) + SourceIndex(0) -4 >Emitted(34, 20) Source(33, 35) + SourceIndex(0) -5 >Emitted(34, 21) Source(33, 36) + SourceIndex(0) +1->Emitted(35, 5) Source(33, 20) + SourceIndex(0) +2 >Emitted(35, 15) Source(33, 22) + SourceIndex(0) +3 >Emitted(35, 18) Source(33, 33) + SourceIndex(0) +4 >Emitted(35, 20) Source(33, 35) + SourceIndex(0) +5 >Emitted(35, 21) Source(33, 36) + SourceIndex(0) --- >>> __decorate([ 1 >^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(35, 5) Source(23, 5) + SourceIndex(0) +1 >Emitted(36, 5) Source(23, 5) + SourceIndex(0) --- >>> PropertyDecorator1, 1->^^^^^^^^ @@ -380,8 +381,8 @@ sourceFile:sourceMapValidationDecorators.ts 3 > ^^^^^-> 1-> 2 > PropertyDecorator1 -1->Emitted(36, 9) Source(21, 6) + SourceIndex(0) -2 >Emitted(36, 27) Source(21, 24) + SourceIndex(0) +1->Emitted(37, 9) Source(21, 6) + SourceIndex(0) +2 >Emitted(37, 27) Source(21, 24) + SourceIndex(0) --- >>> PropertyDecorator2(40) 1->^^^^^^^^ @@ -396,11 +397,11 @@ sourceFile:sourceMapValidationDecorators.ts 3 > ( 4 > 40 5 > ) -1->Emitted(37, 9) Source(22, 6) + SourceIndex(0) -2 >Emitted(37, 27) Source(22, 24) + SourceIndex(0) -3 >Emitted(37, 28) Source(22, 25) + SourceIndex(0) -4 >Emitted(37, 30) Source(22, 27) + SourceIndex(0) -5 >Emitted(37, 31) Source(22, 28) + SourceIndex(0) +1->Emitted(38, 9) Source(22, 6) + SourceIndex(0) +2 >Emitted(38, 27) Source(22, 24) + SourceIndex(0) +3 >Emitted(38, 28) Source(22, 25) + SourceIndex(0) +4 >Emitted(38, 30) Source(22, 27) + SourceIndex(0) +5 >Emitted(38, 31) Source(22, 28) + SourceIndex(0) --- >>> ], Greeter.prototype, "greet", null); 1->^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -408,7 +409,7 @@ sourceFile:sourceMapValidationDecorators.ts > greet() { > return "

" + this.greeting + "

"; > } -1->Emitted(38, 41) Source(25, 6) + SourceIndex(0) +1->Emitted(39, 41) Source(25, 6) + SourceIndex(0) --- >>> __decorate([ 1 >^^^^ @@ -418,7 +419,7 @@ sourceFile:sourceMapValidationDecorators.ts > @PropertyDecorator1 > @PropertyDecorator2(50) > -1 >Emitted(39, 5) Source(29, 5) + SourceIndex(0) +1 >Emitted(40, 5) Source(29, 5) + SourceIndex(0) --- >>> PropertyDecorator1, 1->^^^^^^^^ @@ -426,8 +427,8 @@ sourceFile:sourceMapValidationDecorators.ts 3 > ^^^^^-> 1-> 2 > PropertyDecorator1 -1->Emitted(40, 9) Source(27, 6) + SourceIndex(0) -2 >Emitted(40, 27) Source(27, 24) + SourceIndex(0) +1->Emitted(41, 9) Source(27, 6) + SourceIndex(0) +2 >Emitted(41, 27) Source(27, 24) + SourceIndex(0) --- >>> PropertyDecorator2(50) 1->^^^^^^^^ @@ -442,17 +443,17 @@ sourceFile:sourceMapValidationDecorators.ts 3 > ( 4 > 50 5 > ) -1->Emitted(41, 9) Source(28, 6) + SourceIndex(0) -2 >Emitted(41, 27) Source(28, 24) + SourceIndex(0) -3 >Emitted(41, 28) Source(28, 25) + SourceIndex(0) -4 >Emitted(41, 30) Source(28, 27) + SourceIndex(0) -5 >Emitted(41, 31) Source(28, 28) + SourceIndex(0) +1->Emitted(42, 9) Source(28, 6) + SourceIndex(0) +2 >Emitted(42, 27) Source(28, 24) + SourceIndex(0) +3 >Emitted(42, 28) Source(28, 25) + SourceIndex(0) +4 >Emitted(42, 30) Source(28, 27) + SourceIndex(0) +5 >Emitted(42, 31) Source(28, 28) + SourceIndex(0) --- >>> ], Greeter.prototype, "x", void 0); 1->^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> > private x: string; -1->Emitted(42, 39) Source(29, 23) + SourceIndex(0) +1->Emitted(43, 39) Source(29, 23) + SourceIndex(0) --- >>> __decorate([ 1 >^^^^ @@ -464,7 +465,7 @@ sourceFile:sourceMapValidationDecorators.ts > private static x1: number = 10; > > -1 >Emitted(43, 5) Source(35, 5) + SourceIndex(0) +1 >Emitted(44, 5) Source(35, 5) + SourceIndex(0) --- >>> __param(0, ParameterDecorator1), 1->^^^^^^^^ @@ -477,10 +478,10 @@ sourceFile:sourceMapValidationDecorators.ts 2 > 3 > ParameterDecorator1 4 > -1->Emitted(44, 9) Source(36, 8) + SourceIndex(0) -2 >Emitted(44, 20) Source(36, 8) + SourceIndex(0) -3 >Emitted(44, 39) Source(36, 27) + SourceIndex(0) -4 >Emitted(44, 40) Source(36, 27) + SourceIndex(0) +1->Emitted(45, 9) Source(36, 8) + SourceIndex(0) +2 >Emitted(45, 20) Source(36, 8) + SourceIndex(0) +3 >Emitted(45, 39) Source(36, 27) + SourceIndex(0) +4 >Emitted(45, 40) Source(36, 27) + SourceIndex(0) --- >>> __param(0, ParameterDecorator2(70)) 1->^^^^^^^^ @@ -498,13 +499,13 @@ sourceFile:sourceMapValidationDecorators.ts 5 > 70 6 > ) 7 > -1->Emitted(45, 9) Source(37, 8) + SourceIndex(0) -2 >Emitted(45, 20) Source(37, 8) + SourceIndex(0) -3 >Emitted(45, 39) Source(37, 27) + SourceIndex(0) -4 >Emitted(45, 40) Source(37, 28) + SourceIndex(0) -5 >Emitted(45, 42) Source(37, 30) + SourceIndex(0) -6 >Emitted(45, 43) Source(37, 31) + SourceIndex(0) -7 >Emitted(45, 44) Source(37, 31) + SourceIndex(0) +1->Emitted(46, 9) Source(37, 8) + SourceIndex(0) +2 >Emitted(46, 20) Source(37, 8) + SourceIndex(0) +3 >Emitted(46, 39) Source(37, 27) + SourceIndex(0) +4 >Emitted(46, 40) Source(37, 28) + SourceIndex(0) +5 >Emitted(46, 42) Source(37, 30) + SourceIndex(0) +6 >Emitted(46, 43) Source(37, 31) + SourceIndex(0) +7 >Emitted(46, 44) Source(37, 31) + SourceIndex(0) --- >>> ], Greeter.prototype, "fn", null); 1 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -512,7 +513,7 @@ sourceFile:sourceMapValidationDecorators.ts > x: number) { > return this.greeting; > } -1 >Emitted(46, 38) Source(40, 6) + SourceIndex(0) +1 >Emitted(47, 38) Source(40, 6) + SourceIndex(0) --- >>> __decorate([ 1 >^^^^ @@ -522,7 +523,7 @@ sourceFile:sourceMapValidationDecorators.ts > @PropertyDecorator1 > @PropertyDecorator2(80) > -1 >Emitted(47, 5) Source(44, 5) + SourceIndex(0) +1 >Emitted(48, 5) Source(44, 5) + SourceIndex(0) --- >>> PropertyDecorator1, 1->^^^^^^^^ @@ -530,8 +531,8 @@ sourceFile:sourceMapValidationDecorators.ts 3 > ^^^^^^-> 1-> 2 > PropertyDecorator1 -1->Emitted(48, 9) Source(42, 6) + SourceIndex(0) -2 >Emitted(48, 27) Source(42, 24) + SourceIndex(0) +1->Emitted(49, 9) Source(42, 6) + SourceIndex(0) +2 >Emitted(49, 27) Source(42, 24) + SourceIndex(0) --- >>> PropertyDecorator2(80), 1->^^^^^^^^ @@ -546,11 +547,11 @@ sourceFile:sourceMapValidationDecorators.ts 3 > ( 4 > 80 5 > ) -1->Emitted(49, 9) Source(43, 6) + SourceIndex(0) -2 >Emitted(49, 27) Source(43, 24) + SourceIndex(0) -3 >Emitted(49, 28) Source(43, 25) + SourceIndex(0) -4 >Emitted(49, 30) Source(43, 27) + SourceIndex(0) -5 >Emitted(49, 31) Source(43, 28) + SourceIndex(0) +1->Emitted(50, 9) Source(43, 6) + SourceIndex(0) +2 >Emitted(50, 27) Source(43, 24) + SourceIndex(0) +3 >Emitted(50, 28) Source(43, 25) + SourceIndex(0) +4 >Emitted(50, 30) Source(43, 27) + SourceIndex(0) +5 >Emitted(50, 31) Source(43, 28) + SourceIndex(0) --- >>> __param(0, ParameterDecorator1), 1->^^^^^^^^ @@ -568,10 +569,10 @@ sourceFile:sourceMapValidationDecorators.ts 2 > 3 > ParameterDecorator1 4 > -1->Emitted(50, 9) Source(49, 8) + SourceIndex(0) -2 >Emitted(50, 20) Source(49, 8) + SourceIndex(0) -3 >Emitted(50, 39) Source(49, 27) + SourceIndex(0) -4 >Emitted(50, 40) Source(49, 27) + SourceIndex(0) +1->Emitted(51, 9) Source(49, 8) + SourceIndex(0) +2 >Emitted(51, 20) Source(49, 8) + SourceIndex(0) +3 >Emitted(51, 39) Source(49, 27) + SourceIndex(0) +4 >Emitted(51, 40) Source(49, 27) + SourceIndex(0) --- >>> __param(0, ParameterDecorator2(90)) 1->^^^^^^^^ @@ -590,24 +591,24 @@ sourceFile:sourceMapValidationDecorators.ts 5 > 90 6 > ) 7 > -1->Emitted(51, 9) Source(50, 8) + SourceIndex(0) -2 >Emitted(51, 20) Source(50, 8) + SourceIndex(0) -3 >Emitted(51, 39) Source(50, 27) + SourceIndex(0) -4 >Emitted(51, 40) Source(50, 28) + SourceIndex(0) -5 >Emitted(51, 42) Source(50, 30) + SourceIndex(0) -6 >Emitted(51, 43) Source(50, 31) + SourceIndex(0) -7 >Emitted(51, 44) Source(50, 31) + SourceIndex(0) +1->Emitted(52, 9) Source(50, 8) + SourceIndex(0) +2 >Emitted(52, 20) Source(50, 8) + SourceIndex(0) +3 >Emitted(52, 39) Source(50, 27) + SourceIndex(0) +4 >Emitted(52, 40) Source(50, 28) + SourceIndex(0) +5 >Emitted(52, 42) Source(50, 30) + SourceIndex(0) +6 >Emitted(52, 43) Source(50, 31) + SourceIndex(0) +7 >Emitted(52, 44) Source(50, 31) + SourceIndex(0) --- >>> ], Greeter.prototype, "greetings", null); 1->^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -1->Emitted(52, 45) Source(46, 6) + SourceIndex(0) +1->Emitted(53, 45) Source(46, 6) + SourceIndex(0) --- >>> __decorate([ 1 >^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(53, 5) Source(33, 5) + SourceIndex(0) +1 >Emitted(54, 5) Source(33, 5) + SourceIndex(0) --- >>> PropertyDecorator1, 1->^^^^^^^^ @@ -615,8 +616,8 @@ sourceFile:sourceMapValidationDecorators.ts 3 > ^^^^^-> 1-> 2 > PropertyDecorator1 -1->Emitted(54, 9) Source(31, 6) + SourceIndex(0) -2 >Emitted(54, 27) Source(31, 24) + SourceIndex(0) +1->Emitted(55, 9) Source(31, 6) + SourceIndex(0) +2 >Emitted(55, 27) Source(31, 24) + SourceIndex(0) --- >>> PropertyDecorator2(60) 1->^^^^^^^^ @@ -631,17 +632,17 @@ sourceFile:sourceMapValidationDecorators.ts 3 > ( 4 > 60 5 > ) -1->Emitted(55, 9) Source(32, 6) + SourceIndex(0) -2 >Emitted(55, 27) Source(32, 24) + SourceIndex(0) -3 >Emitted(55, 28) Source(32, 25) + SourceIndex(0) -4 >Emitted(55, 30) Source(32, 27) + SourceIndex(0) -5 >Emitted(55, 31) Source(32, 28) + SourceIndex(0) +1->Emitted(56, 9) Source(32, 6) + SourceIndex(0) +2 >Emitted(56, 27) Source(32, 24) + SourceIndex(0) +3 >Emitted(56, 28) Source(32, 25) + SourceIndex(0) +4 >Emitted(56, 30) Source(32, 27) + SourceIndex(0) +5 >Emitted(56, 31) Source(32, 28) + SourceIndex(0) --- >>> ], Greeter, "x1", void 0); 1->^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> > private static x1: number = 10; -1->Emitted(56, 30) Source(33, 36) + SourceIndex(0) +1->Emitted(57, 30) Source(33, 36) + SourceIndex(0) --- >>> Greeter = __decorate([ 1 >^^^^ @@ -649,8 +650,8 @@ sourceFile:sourceMapValidationDecorators.ts 3 > ^^^^^^^^^^^^^^-> 1 > 2 > Greeter -1 >Emitted(57, 5) Source(10, 7) + SourceIndex(0) -2 >Emitted(57, 12) Source(10, 14) + SourceIndex(0) +1 >Emitted(58, 5) Source(10, 7) + SourceIndex(0) +2 >Emitted(58, 12) Source(10, 14) + SourceIndex(0) --- >>> ClassDecorator1, 1->^^^^^^^^ @@ -658,8 +659,8 @@ sourceFile:sourceMapValidationDecorators.ts 3 > ^^^^^^-> 1-> 2 > ClassDecorator1 -1->Emitted(58, 9) Source(8, 2) + SourceIndex(0) -2 >Emitted(58, 24) Source(8, 17) + SourceIndex(0) +1->Emitted(59, 9) Source(8, 2) + SourceIndex(0) +2 >Emitted(59, 24) Source(8, 17) + SourceIndex(0) --- >>> ClassDecorator2(10), 1->^^^^^^^^ @@ -674,11 +675,11 @@ sourceFile:sourceMapValidationDecorators.ts 3 > ( 4 > 10 5 > ) -1->Emitted(59, 9) Source(9, 2) + SourceIndex(0) -2 >Emitted(59, 24) Source(9, 17) + SourceIndex(0) -3 >Emitted(59, 25) Source(9, 18) + SourceIndex(0) -4 >Emitted(59, 27) Source(9, 20) + SourceIndex(0) -5 >Emitted(59, 28) Source(9, 21) + SourceIndex(0) +1->Emitted(60, 9) Source(9, 2) + SourceIndex(0) +2 >Emitted(60, 24) Source(9, 17) + SourceIndex(0) +3 >Emitted(60, 25) Source(9, 18) + SourceIndex(0) +4 >Emitted(60, 27) Source(9, 20) + SourceIndex(0) +5 >Emitted(60, 28) Source(9, 21) + SourceIndex(0) --- >>> __param(0, ParameterDecorator1), 1->^^^^^^^^ @@ -693,10 +694,10 @@ sourceFile:sourceMapValidationDecorators.ts 2 > 3 > ParameterDecorator1 4 > -1->Emitted(60, 9) Source(12, 8) + SourceIndex(0) -2 >Emitted(60, 20) Source(12, 8) + SourceIndex(0) -3 >Emitted(60, 39) Source(12, 27) + SourceIndex(0) -4 >Emitted(60, 40) Source(12, 27) + SourceIndex(0) +1->Emitted(61, 9) Source(12, 8) + SourceIndex(0) +2 >Emitted(61, 20) Source(12, 8) + SourceIndex(0) +3 >Emitted(61, 39) Source(12, 27) + SourceIndex(0) +4 >Emitted(61, 40) Source(12, 27) + SourceIndex(0) --- >>> __param(0, ParameterDecorator2(20)), 1->^^^^^^^^ @@ -714,13 +715,13 @@ sourceFile:sourceMapValidationDecorators.ts 5 > 20 6 > ) 7 > -1->Emitted(61, 9) Source(13, 8) + SourceIndex(0) -2 >Emitted(61, 20) Source(13, 8) + SourceIndex(0) -3 >Emitted(61, 39) Source(13, 27) + SourceIndex(0) -4 >Emitted(61, 40) Source(13, 28) + SourceIndex(0) -5 >Emitted(61, 42) Source(13, 30) + SourceIndex(0) -6 >Emitted(61, 43) Source(13, 31) + SourceIndex(0) -7 >Emitted(61, 44) Source(13, 31) + SourceIndex(0) +1->Emitted(62, 9) Source(13, 8) + SourceIndex(0) +2 >Emitted(62, 20) Source(13, 8) + SourceIndex(0) +3 >Emitted(62, 39) Source(13, 27) + SourceIndex(0) +4 >Emitted(62, 40) Source(13, 28) + SourceIndex(0) +5 >Emitted(62, 42) Source(13, 30) + SourceIndex(0) +6 >Emitted(62, 43) Source(13, 31) + SourceIndex(0) +7 >Emitted(62, 44) Source(13, 31) + SourceIndex(0) --- >>> __param(1, ParameterDecorator1), 1 >^^^^^^^^ @@ -735,10 +736,10 @@ sourceFile:sourceMapValidationDecorators.ts 2 > 3 > ParameterDecorator1 4 > -1 >Emitted(62, 9) Source(16, 8) + SourceIndex(0) -2 >Emitted(62, 20) Source(16, 8) + SourceIndex(0) -3 >Emitted(62, 39) Source(16, 27) + SourceIndex(0) -4 >Emitted(62, 40) Source(16, 27) + SourceIndex(0) +1 >Emitted(63, 9) Source(16, 8) + SourceIndex(0) +2 >Emitted(63, 20) Source(16, 8) + SourceIndex(0) +3 >Emitted(63, 39) Source(16, 27) + SourceIndex(0) +4 >Emitted(63, 40) Source(16, 27) + SourceIndex(0) --- >>> __param(1, ParameterDecorator2(30)) 1->^^^^^^^^ @@ -756,13 +757,13 @@ sourceFile:sourceMapValidationDecorators.ts 5 > 30 6 > ) 7 > -1->Emitted(63, 9) Source(17, 8) + SourceIndex(0) -2 >Emitted(63, 20) Source(17, 8) + SourceIndex(0) -3 >Emitted(63, 39) Source(17, 27) + SourceIndex(0) -4 >Emitted(63, 40) Source(17, 28) + SourceIndex(0) -5 >Emitted(63, 42) Source(17, 30) + SourceIndex(0) -6 >Emitted(63, 43) Source(17, 31) + SourceIndex(0) -7 >Emitted(63, 44) Source(17, 31) + SourceIndex(0) +1->Emitted(64, 9) Source(17, 8) + SourceIndex(0) +2 >Emitted(64, 20) Source(17, 8) + SourceIndex(0) +3 >Emitted(64, 39) Source(17, 27) + SourceIndex(0) +4 >Emitted(64, 40) Source(17, 28) + SourceIndex(0) +5 >Emitted(64, 42) Source(17, 30) + SourceIndex(0) +6 >Emitted(64, 43) Source(17, 31) + SourceIndex(0) +7 >Emitted(64, 44) Source(17, 31) + SourceIndex(0) --- >>> ], Greeter); 1 >^^^^^^^ @@ -816,17 +817,17 @@ sourceFile:sourceMapValidationDecorators.ts > this.greeting = greetings; > } > } -1 >Emitted(64, 8) Source(10, 7) + SourceIndex(0) -2 >Emitted(64, 15) Source(10, 14) + SourceIndex(0) -3 >Emitted(64, 16) Source(54, 2) + SourceIndex(0) +1 >Emitted(65, 8) Source(10, 7) + SourceIndex(0) +2 >Emitted(65, 15) Source(10, 14) + SourceIndex(0) +3 >Emitted(65, 16) Source(54, 2) + SourceIndex(0) --- >>> return Greeter; 1->^^^^ 2 > ^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(65, 5) Source(54, 1) + SourceIndex(0) -2 >Emitted(65, 19) Source(54, 2) + SourceIndex(0) +1->Emitted(66, 5) Source(54, 1) + SourceIndex(0) +2 >Emitted(66, 19) Source(54, 2) + SourceIndex(0) --- >>>}()); 1 >^ @@ -880,8 +881,8 @@ sourceFile:sourceMapValidationDecorators.ts > this.greeting = greetings; > } > } -1 >Emitted(66, 2) Source(54, 2) + SourceIndex(0) -2 >Emitted(66, 2) Source(10, 1) + SourceIndex(0) -3 >Emitted(66, 6) Source(54, 2) + SourceIndex(0) +1 >Emitted(67, 2) Source(54, 2) + SourceIndex(0) +2 >Emitted(67, 2) Source(10, 1) + SourceIndex(0) +3 >Emitted(67, 6) Source(54, 2) + SourceIndex(0) --- >>>//# sourceMappingURL=sourceMapValidationDecorators.js.map \ No newline at end of file diff --git a/tests/baselines/reference/staticMethodWithTypeParameterExtendsClauseDeclFile.js b/tests/baselines/reference/staticMethodWithTypeParameterExtendsClauseDeclFile.js index 040d7eac4c148..abfeca2774ac7 100644 --- a/tests/baselines/reference/staticMethodWithTypeParameterExtendsClauseDeclFile.js +++ b/tests/baselines/reference/staticMethodWithTypeParameterExtendsClauseDeclFile.js @@ -39,17 +39,18 @@ exports.publicClass = publicClass; var publicClassWithWithPrivateTypeParameters = /** @class */ (function () { function publicClassWithWithPrivateTypeParameters() { } + var publicClassWithWithPrivateTypeParameters_prototype = publicClassWithWithPrivateTypeParameters.prototype; publicClassWithWithPrivateTypeParameters.myPrivateStaticMethod1 = function () { }; - publicClassWithWithPrivateTypeParameters.prototype.myPrivateMethod1 = function () { + publicClassWithWithPrivateTypeParameters_prototype.myPrivateMethod1 = function () { }; publicClassWithWithPrivateTypeParameters.myPrivateStaticMethod2 = function () { }; - publicClassWithWithPrivateTypeParameters.prototype.myPrivateMethod2 = function () { + publicClassWithWithPrivateTypeParameters_prototype.myPrivateMethod2 = function () { }; publicClassWithWithPrivateTypeParameters.myPublicStaticMethod = function () { }; - publicClassWithWithPrivateTypeParameters.prototype.myPublicMethod = function () { + publicClassWithWithPrivateTypeParameters_prototype.myPublicMethod = function () { }; return publicClassWithWithPrivateTypeParameters; }()); diff --git a/tests/baselines/reference/strictBindCallApply1.js b/tests/baselines/reference/strictBindCallApply1.js index fc90729a8d6a1..f39849c2f36e1 100644 --- a/tests/baselines/reference/strictBindCallApply1.js +++ b/tests/baselines/reference/strictBindCallApply1.js @@ -92,9 +92,10 @@ var a03 = foo.apply(undefined, [10, "hello", 30]); // Error var C = /** @class */ (function () { function C(a, b) { } - C.prototype.foo = function (a, b) { return ""; }; - C.prototype.overloaded = function (x) { return undefined; }; - C.prototype.generic = function (x) { return x; }; + var C_prototype = C.prototype; + C_prototype.foo = function (a, b) { return ""; }; + C_prototype.overloaded = function (x) { return undefined; }; + C_prototype.generic = function (x) { return x; }; return C; }()); var f10 = c.foo.bind(c); diff --git a/tests/baselines/reference/strictFunctionTypesErrors.js b/tests/baselines/reference/strictFunctionTypesErrors.js index d0608f6c1acbc..613a5985de318 100644 --- a/tests/baselines/reference/strictFunctionTypesErrors.js +++ b/tests/baselines/reference/strictFunctionTypesErrors.js @@ -223,6 +223,7 @@ var n1; var Foo = /** @class */ (function () { function Foo() { } + var Foo_prototype = Foo.prototype; Foo.f1 = function (x) { throw "wat"; }; Foo.f2 = function (x) { throw "wat"; }; ; diff --git a/tests/baselines/reference/strictModeReservedWordInClassDeclaration.js b/tests/baselines/reference/strictModeReservedWordInClassDeclaration.js index d8ec0ec3e7f04..c105b08d56a8b 100644 --- a/tests/baselines/reference/strictModeReservedWordInClassDeclaration.js +++ b/tests/baselines/reference/strictModeReservedWordInClassDeclaration.js @@ -55,11 +55,12 @@ var C = /** @class */ (function () { function C(public, let) { this.public = public; } - C.prototype.foo1 = function (private, static, public) { + var C_prototype = C.prototype; + C_prototype.foo1 = function (private, static, public) { function let() { } var z = function let() { }; }; - C.prototype.pulbic = function () { }; // No Error; + C_prototype.pulbic = function () { }; // No Error; return C; }()); var D = /** @class */ (function () { diff --git a/tests/baselines/reference/stringIndexerConstrainsPropertyDeclarations.js b/tests/baselines/reference/stringIndexerConstrainsPropertyDeclarations.js index 33eee0a943605..140ce7e1bf8d7 100644 --- a/tests/baselines/reference/stringIndexerConstrainsPropertyDeclarations.js +++ b/tests/baselines/reference/stringIndexerConstrainsPropertyDeclarations.js @@ -102,7 +102,8 @@ var b: { [x: string]: string; } = { var C = /** @class */ (function () { function C() { } // ok - Object.defineProperty(C.prototype, "X", { + var C_prototype = C.prototype; + Object.defineProperty(C_prototype, "X", { get: function () { return ''; }, @@ -111,7 +112,7 @@ var C = /** @class */ (function () { enumerable: false, configurable: true }); - C.prototype.foo = function () { + C_prototype.foo = function () { return ''; }; C.foo = function () { }; // ok diff --git a/tests/baselines/reference/stringLiteralTypeIsSubtypeOfString.js b/tests/baselines/reference/stringLiteralTypeIsSubtypeOfString.js index 83e659775604a..f8c562f747f61 100644 --- a/tests/baselines/reference/stringLiteralTypeIsSubtypeOfString.js +++ b/tests/baselines/reference/stringLiteralTypeIsSubtypeOfString.js @@ -114,32 +114,33 @@ function f9(x) { } var C = /** @class */ (function () { function C() { } - C.prototype.toString = function () { return null; }; - C.prototype.charAt = function (pos) { return null; }; - C.prototype.charCodeAt = function (index) { return null; }; - C.prototype.concat = function () { + var C_prototype = C.prototype; + C_prototype.toString = function () { return null; }; + C_prototype.charAt = function (pos) { return null; }; + C_prototype.charCodeAt = function (index) { return null; }; + C_prototype.concat = function () { var strings = []; for (var _i = 0; _i < arguments.length; _i++) { strings[_i] = arguments[_i]; } return null; }; - C.prototype.indexOf = function (searchString, position) { return null; }; - C.prototype.lastIndexOf = function (searchString, position) { return null; }; - C.prototype.localeCompare = function (that) { return null; }; - C.prototype.match = function (regexp) { return null; }; - C.prototype.replace = function (searchValue, replaceValue) { return null; }; - C.prototype.search = function (regexp) { return null; }; - C.prototype.slice = function (start, end) { return null; }; - C.prototype.split = function (separator, limit) { return null; }; - C.prototype.substring = function (start, end) { return null; }; - C.prototype.toLowerCase = function () { return null; }; - C.prototype.toLocaleLowerCase = function () { return null; }; - C.prototype.toUpperCase = function () { return null; }; - C.prototype.toLocaleUpperCase = function () { return null; }; - C.prototype.trim = function () { return null; }; - C.prototype.substr = function (from, length) { return null; }; - C.prototype.valueOf = function () { return null; }; + C_prototype.indexOf = function (searchString, position) { return null; }; + C_prototype.lastIndexOf = function (searchString, position) { return null; }; + C_prototype.localeCompare = function (that) { return null; }; + C_prototype.match = function (regexp) { return null; }; + C_prototype.replace = function (searchValue, replaceValue) { return null; }; + C_prototype.search = function (regexp) { return null; }; + C_prototype.slice = function (start, end) { return null; }; + C_prototype.split = function (separator, limit) { return null; }; + C_prototype.substring = function (start, end) { return null; }; + C_prototype.toLowerCase = function () { return null; }; + C_prototype.toLocaleLowerCase = function () { return null; }; + C_prototype.toUpperCase = function () { return null; }; + C_prototype.toLocaleUpperCase = function () { return null; }; + C_prototype.trim = function () { return null; }; + C_prototype.substr = function (from, length) { return null; }; + C_prototype.valueOf = function () { return null; }; return C; }()); function f10(x) { } diff --git a/tests/baselines/reference/stripInternal1.js b/tests/baselines/reference/stripInternal1.js index 9df483631f725..ac0b3c6abc9ab 100644 --- a/tests/baselines/reference/stripInternal1.js +++ b/tests/baselines/reference/stripInternal1.js @@ -9,9 +9,10 @@ class C { var C = /** @class */ (function () { function C() { } - C.prototype.foo = function () { }; + var C_prototype = C.prototype; + C_prototype.foo = function () { }; // @internal - C.prototype.bar = function () { }; + C_prototype.bar = function () { }; return C; }()); diff --git a/tests/baselines/reference/super.js b/tests/baselines/reference/super.js index 3a145bccb6481..3924109cf6141 100644 --- a/tests/baselines/reference/super.js +++ b/tests/baselines/reference/super.js @@ -57,10 +57,11 @@ var Base = /** @class */ (function () { function Base() { var x; } - Base.prototype.foo = function () { + var Base_prototype = Base.prototype; + Base_prototype.foo = function () { return "base"; }; - Base.prototype.bar = function () { + Base_prototype.bar = function () { return "basebar"; }; return Base; diff --git a/tests/baselines/reference/super2.js b/tests/baselines/reference/super2.js index 5db836a3be4b9..598757fe2027e 100644 --- a/tests/baselines/reference/super2.js +++ b/tests/baselines/reference/super2.js @@ -70,10 +70,11 @@ var __extends = (this && this.__extends) || (function () { var Base5 = /** @class */ (function () { function Base5() { } - Base5.prototype.x = function () { + var Base5_prototype = Base5.prototype; + Base5_prototype.x = function () { return "BaseX"; }; - Base5.prototype.y = function () { + Base5_prototype.y = function () { return "BaseY"; }; return Base5; @@ -93,10 +94,11 @@ var SubSub5 = /** @class */ (function (_super) { function SubSub5() { return _super !== null && _super.apply(this, arguments) || this; } - SubSub5.prototype.x = function () { + var SubSub5_prototype = SubSub5.prototype; + SubSub5_prototype.x = function () { return _super.prototype.x.call(this); }; - SubSub5.prototype.y = function () { + SubSub5_prototype.y = function () { return _super.prototype.y.call(this); }; return SubSub5; diff --git a/tests/baselines/reference/superAccessInFatArrow1.js b/tests/baselines/reference/superAccessInFatArrow1.js index 3259141597c20..1d65c440d2d09 100644 --- a/tests/baselines/reference/superAccessInFatArrow1.js +++ b/tests/baselines/reference/superAccessInFatArrow1.js @@ -46,9 +46,10 @@ var test; function B() { return _super !== null && _super.apply(this, arguments) || this; } - B.prototype.bar = function (callback) { + var B_prototype = B.prototype; + B_prototype.bar = function (callback) { }; - B.prototype.runme = function () { + B_prototype.runme = function () { var _this = this; this.bar(function () { _super.prototype.foo.call(_this); diff --git a/tests/baselines/reference/superCallInNonStaticMethod.js b/tests/baselines/reference/superCallInNonStaticMethod.js index 2a99e059c96d9..20d93c6259c39 100644 --- a/tests/baselines/reference/superCallInNonStaticMethod.js +++ b/tests/baselines/reference/superCallInNonStaticMethod.js @@ -82,19 +82,20 @@ var Other = /** @class */ (function (_super) { _super.prototype.instanceMethod.call(_this); return _this; } + var Other_prototype = Other.prototype; // in instance method - Other.prototype.instanceMethod = function () { + Other_prototype.instanceMethod = function () { _super.prototype.instanceMethod.call(this); }; // in a lambda inside a instance method - Other.prototype.lambdaInsideAnInstanceMethod = function () { + Other_prototype.lambdaInsideAnInstanceMethod = function () { var _this = this; (function () { _super.prototype.instanceMethod.call(_this); }); }; // in an object literal inside a instance method - Other.prototype.objectLiteralInsideAnInstanceMethod = function () { + Other_prototype.objectLiteralInsideAnInstanceMethod = function () { var _this = this; return { a: function () { @@ -103,7 +104,7 @@ var Other = /** @class */ (function (_super) { b: _super.prototype.instanceMethod.call(this) }; }; - Object.defineProperty(Other.prototype, "accessor", { + Object.defineProperty(Other_prototype, "accessor", { // in a getter get: function () { _super.prototype.instanceMethod.call(this); diff --git a/tests/baselines/reference/superCallsInConstructor.js b/tests/baselines/reference/superCallsInConstructor.js index 2f45e33024fa2..2c61f0452b58e 100644 --- a/tests/baselines/reference/superCallsInConstructor.js +++ b/tests/baselines/reference/superCallsInConstructor.js @@ -39,8 +39,9 @@ var __extends = (this && this.__extends) || (function () { var C = /** @class */ (function () { function C() { } - C.prototype.foo = function () { }; - C.prototype.bar = function () { }; + var C_prototype = C.prototype; + C_prototype.foo = function () { }; + C_prototype.bar = function () { }; return C; }()); var Base = /** @class */ (function () { diff --git a/tests/baselines/reference/superElementAccess.js b/tests/baselines/reference/superElementAccess.js index 88e2ac110575d..63bab86dfe5fb 100644 --- a/tests/baselines/reference/superElementAccess.js +++ b/tests/baselines/reference/superElementAccess.js @@ -57,9 +57,10 @@ var MyBase = /** @class */ (function () { this.d1 = 42; this.d2 = 42; } - MyBase.prototype.m1 = function (a) { return a; }; - MyBase.prototype.p1 = function () { }; - Object.defineProperty(MyBase.prototype, "value", { + var MyBase_prototype = MyBase.prototype; + MyBase_prototype.m1 = function (a) { return a; }; + MyBase_prototype.p1 = function () { }; + Object.defineProperty(MyBase_prototype, "value", { get: function () { return 0; }, set: function (v) { }, enumerable: false, diff --git a/tests/baselines/reference/superPropertyAccess.js b/tests/baselines/reference/superPropertyAccess.js index c41909b6c6c06..a0359bda68f1a 100644 --- a/tests/baselines/reference/superPropertyAccess.js +++ b/tests/baselines/reference/superPropertyAccess.js @@ -57,9 +57,10 @@ var MyBase = /** @class */ (function () { this.d1 = 42; this.d2 = 42; } - MyBase.prototype.m1 = function (a) { return a; }; - MyBase.prototype.p1 = function () { }; - Object.defineProperty(MyBase.prototype, "value", { + var MyBase_prototype = MyBase.prototype; + MyBase_prototype.m1 = function (a) { return a; }; + MyBase_prototype.p1 = function () { }; + Object.defineProperty(MyBase_prototype, "value", { get: function () { return 0; }, set: function (v) { }, enumerable: false, diff --git a/tests/baselines/reference/superPropertyAccess1.js b/tests/baselines/reference/superPropertyAccess1.js index 5ea0dc65bac4f..d8d72da1996bb 100644 --- a/tests/baselines/reference/superPropertyAccess1.js +++ b/tests/baselines/reference/superPropertyAccess1.js @@ -46,15 +46,16 @@ var __extends = (this && this.__extends) || (function () { var C = /** @class */ (function () { function C() { } - C.prototype.foo = function () { }; - Object.defineProperty(C.prototype, "x", { + var C_prototype = C.prototype; + C_prototype.foo = function () { }; + Object.defineProperty(C_prototype, "x", { get: function () { return 1; }, enumerable: false, configurable: true }); - C.prototype.bar = function () { }; + C_prototype.bar = function () { }; return C; }()); var D = /** @class */ (function (_super) { @@ -65,11 +66,12 @@ var D = /** @class */ (function (_super) { _super.prototype.x; // error return _this; } - D.prototype.foo = function () { + var D_prototype = D.prototype; + D_prototype.foo = function () { _super.prototype.bar.call(this); _super.prototype.x; // error }; - Object.defineProperty(D.prototype, "y", { + Object.defineProperty(D_prototype, "y", { get: function () { _super.prototype.bar.call(this); _super.prototype.x; // error diff --git a/tests/baselines/reference/superPropertyAccessInComputedPropertiesOfNestedType_ES5.js b/tests/baselines/reference/superPropertyAccessInComputedPropertiesOfNestedType_ES5.js index b5551a7c00d8b..0b88d58ea3478 100644 --- a/tests/baselines/reference/superPropertyAccessInComputedPropertiesOfNestedType_ES5.js +++ b/tests/baselines/reference/superPropertyAccessInComputedPropertiesOfNestedType_ES5.js @@ -41,8 +41,9 @@ var B = /** @class */ (function (_super) { function B() { return _super !== null && _super.apply(this, arguments) || this; } - B.prototype.foo = function () { return 2; }; - B.prototype.bar = function () { + var B_prototype = B.prototype; + B_prototype.foo = function () { return 2; }; + B_prototype.bar = function () { return /** @class */ (function () { function class_1() { } diff --git a/tests/baselines/reference/superPropertyAccessNoError.js b/tests/baselines/reference/superPropertyAccessNoError.js index 7cf49fd4bd4f5..e4c5693df6346 100644 --- a/tests/baselines/reference/superPropertyAccessNoError.js +++ b/tests/baselines/reference/superPropertyAccessNoError.js @@ -95,13 +95,14 @@ var __extends = (this && this.__extends) || (function () { var SomeBaseClass = /** @class */ (function () { function SomeBaseClass() { } - SomeBaseClass.prototype.func = function () { + var SomeBaseClass_prototype = SomeBaseClass.prototype; + SomeBaseClass_prototype.func = function () { return ''; }; SomeBaseClass.func = function () { return 3; }; - SomeBaseClass.prototype.returnThis = function () { + SomeBaseClass_prototype.returnThis = function () { return this; }; return SomeBaseClass; @@ -114,13 +115,14 @@ var SomeDerivedClass = /** @class */ (function (_super) { var x; return _this; } - SomeDerivedClass.prototype.fn = function () { + var SomeDerivedClass_prototype = SomeDerivedClass.prototype; + SomeDerivedClass_prototype.fn = function () { var _this = this; var x = _super.prototype.func.call(this); var x; var y = function () { return _super.prototype.func.call(_this); }; }; - Object.defineProperty(SomeDerivedClass.prototype, "a", { + Object.defineProperty(SomeDerivedClass_prototype, "a", { get: function () { var x = _super.prototype.func.call(this); var x; @@ -150,7 +152,7 @@ var SomeDerivedClass = /** @class */ (function (_super) { enumerable: false, configurable: true }); - SomeDerivedClass.prototype.returnThis = function () { + SomeDerivedClass_prototype.returnThis = function () { return _super.prototype.returnThis.call(this); }; return SomeDerivedClass; diff --git a/tests/baselines/reference/superPropertyAccess_ES5.js b/tests/baselines/reference/superPropertyAccess_ES5.js index ef1d8704aaeb1..7c7ea2f571203 100644 --- a/tests/baselines/reference/superPropertyAccess_ES5.js +++ b/tests/baselines/reference/superPropertyAccess_ES5.js @@ -47,8 +47,9 @@ var __extends = (this && this.__extends) || (function () { var MyBase = /** @class */ (function () { function MyBase() { } - MyBase.prototype.getValue = function () { return 1; }; - Object.defineProperty(MyBase.prototype, "value", { + var MyBase_prototype = MyBase.prototype; + MyBase_prototype.getValue = function () { return 1; }; + Object.defineProperty(MyBase_prototype, "value", { get: function () { return 1; }, enumerable: false, configurable: true diff --git a/tests/baselines/reference/superPropertyElementNoUnusedLexicalThisCapture.js b/tests/baselines/reference/superPropertyElementNoUnusedLexicalThisCapture.js index faa6ba0a58808..24532a5ce6868 100644 --- a/tests/baselines/reference/superPropertyElementNoUnusedLexicalThisCapture.js +++ b/tests/baselines/reference/superPropertyElementNoUnusedLexicalThisCapture.js @@ -44,12 +44,13 @@ var B = /** @class */ (function (_super) { function B() { return _super.call(this) || this; } - B.prototype.foo = function () { + var B_prototype = B.prototype; + B_prototype.foo = function () { return function () { _super.prototype.x; }; }; - B.prototype.bar = function () { + B_prototype.bar = function () { return function () { _super.prototype["x"]; }; diff --git a/tests/baselines/reference/thisTypeAndConstraints.js b/tests/baselines/reference/thisTypeAndConstraints.js index b9b2dfba2e35f..22cc0910c334d 100644 --- a/tests/baselines/reference/thisTypeAndConstraints.js +++ b/tests/baselines/reference/thisTypeAndConstraints.js @@ -40,10 +40,11 @@ function f(x) { var B = /** @class */ (function () { function B() { } - B.prototype.foo = function (x) { + var B_prototype = B.prototype; + B_prototype.foo = function (x) { x = x.self(); }; - B.prototype.bar = function (x) { + B_prototype.bar = function (x) { x = x.self(); }; return B; diff --git a/tests/baselines/reference/thisTypeInClasses.js b/tests/baselines/reference/thisTypeInClasses.js index b10fcbcf61248..07152cea47ce4 100644 --- a/tests/baselines/reference/thisTypeInClasses.js +++ b/tests/baselines/reference/thisTypeInClasses.js @@ -70,7 +70,8 @@ var C3 = /** @class */ (function () { var C5 = /** @class */ (function () { function C5() { } - C5.prototype.foo = function () { + var C5_prototype = C5.prototype; + C5_prototype.foo = function () { var _this = this; var f1 = function (x) { return _this; }; var f2 = function (x) { return _this; }; @@ -82,7 +83,7 @@ var C5 = /** @class */ (function () { return g(_this); }; }; - C5.prototype.bar = function () { + C5_prototype.bar = function () { var x1 = undefined; var x2 = undefined; }; diff --git a/tests/baselines/reference/thisTypeInFunctions.js b/tests/baselines/reference/thisTypeInFunctions.js index d9dd0133db43e..6fddaff358cc8 100644 --- a/tests/baselines/reference/thisTypeInFunctions.js +++ b/tests/baselines/reference/thisTypeInFunctions.js @@ -220,16 +220,17 @@ var B = /** @class */ (function () { var C = /** @class */ (function () { function C() { } - C.prototype.explicitThis = function (m) { + var C_prototype = C.prototype; + C_prototype.explicitThis = function (m) { return this.n + m; }; - C.prototype.explicitC = function (m) { + C_prototype.explicitC = function (m) { return this.n + m; }; - C.prototype.explicitProperty = function (m) { + C_prototype.explicitProperty = function (m) { return this.n + m; }; - C.prototype.explicitVoid = function (m) { + C_prototype.explicitVoid = function (m) { return m + 1; }; return C; @@ -338,8 +339,9 @@ c.explicitVoid = function (n) { return n; }; var Base1 = /** @class */ (function () { function Base1() { } - Base1.prototype.polymorphic = function () { return this.x; }; - Base1.prototype.explicit = function () { return this.x; }; + var Base1_prototype = Base1.prototype; + Base1_prototype.polymorphic = function () { return this.x; }; + Base1_prototype.explicit = function () { return this.x; }; Base1.explicitStatic = function () { return this.y; }; return Base1; }()); @@ -353,8 +355,9 @@ var Derived1 = /** @class */ (function (_super) { var Base2 = /** @class */ (function () { function Base2() { } - Base2.prototype.polymorphic = function () { return this.y; }; - Base2.prototype.explicit = function () { return this.x; }; + var Base2_prototype = Base2.prototype; + Base2_prototype.polymorphic = function () { return this.y; }; + Base2_prototype.explicit = function () { return this.x; }; return Base2; }()); var Derived2 = /** @class */ (function (_super) { diff --git a/tests/baselines/reference/topLevel.js b/tests/baselines/reference/topLevel.js index 05622165a5fef..c426e9c94ffa1 100644 --- a/tests/baselines/reference/topLevel.js +++ b/tests/baselines/reference/topLevel.js @@ -33,12 +33,13 @@ var Point = /** @class */ (function () { this.x = x; this.y = y; } - Point.prototype.move = function (xo, yo) { + var Point_prototype = Point.prototype; + Point_prototype.move = function (xo, yo) { this.x += xo; this.y += yo; return this; }; - Point.prototype.toString = function () { + Point_prototype.toString = function () { return ("(" + this.x + "," + this.y + ")"); }; return Point; diff --git a/tests/baselines/reference/trailingCommaInHeterogenousArrayLiteral1.js b/tests/baselines/reference/trailingCommaInHeterogenousArrayLiteral1.js index a3a1775130966..6f3bad95271c4 100644 --- a/tests/baselines/reference/trailingCommaInHeterogenousArrayLiteral1.js +++ b/tests/baselines/reference/trailingCommaInHeterogenousArrayLiteral1.js @@ -13,8 +13,9 @@ class arrTest { var arrTest = /** @class */ (function () { function arrTest() { } - arrTest.prototype.test = function (arg1) { }; - arrTest.prototype.callTest = function () { + var arrTest_prototype = arrTest.prototype; + arrTest_prototype.test = function (arg1) { }; + arrTest_prototype.callTest = function () { // these two should give the same error this.test([1, 2, "hi", 5,]); this.test([1, 2, "hi", 5]); diff --git a/tests/baselines/reference/truthinessCallExpressionCoercion.js b/tests/baselines/reference/truthinessCallExpressionCoercion.js index 3f43e62967186..87bd115e4f204 100644 --- a/tests/baselines/reference/truthinessCallExpressionCoercion.js +++ b/tests/baselines/reference/truthinessCallExpressionCoercion.js @@ -145,10 +145,11 @@ function checksPropertyAccess() { var Foo = /** @class */ (function () { function Foo() { } - Foo.prototype.isUser = function () { + var Foo_prototype = Foo.prototype; + Foo_prototype.isUser = function () { return true; }; - Foo.prototype.test = function () { + Foo_prototype.test = function () { if (this.isUser) { // error } if (this.maybeIsUser) { // ok diff --git a/tests/baselines/reference/truthinessCallExpressionCoercion1.js b/tests/baselines/reference/truthinessCallExpressionCoercion1.js index 482f64a6b4946..3909c0f94215c 100644 --- a/tests/baselines/reference/truthinessCallExpressionCoercion1.js +++ b/tests/baselines/reference/truthinessCallExpressionCoercion1.js @@ -143,10 +143,11 @@ function checksPropertyAccess() { var Foo = /** @class */ (function () { function Foo() { } - Foo.prototype.isUser = function () { + var Foo_prototype = Foo.prototype; + Foo_prototype.isUser = function () { return true; }; - Foo.prototype.test = function () { + Foo_prototype.test = function () { // error this.isUser ? console.log('this.isUser') : undefined; // ok diff --git a/tests/baselines/reference/truthinessCallExpressionCoercion2.js b/tests/baselines/reference/truthinessCallExpressionCoercion2.js index 04c604feb692f..d6446f70a8b51 100644 --- a/tests/baselines/reference/truthinessCallExpressionCoercion2.js +++ b/tests/baselines/reference/truthinessCallExpressionCoercion2.js @@ -180,10 +180,11 @@ function checksPropertyAccess() { var Foo = /** @class */ (function () { function Foo() { } - Foo.prototype.required = function () { + var Foo_prototype = Foo.prototype; + Foo_prototype.required = function () { return true; }; - Foo.prototype.test = function () { + Foo_prototype.test = function () { // error this.required && console.log('required'); // error diff --git a/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/stripInternal.js b/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/stripInternal.js index 1b74e80929944..f321827d31ecc 100644 --- a/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/stripInternal.js +++ b/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-declaration-doesnt-change/stripInternal.js @@ -58,8 +58,9 @@ define("file1", ["require", "exports"], function (require, exports) { var normalC = /** @class */ (function () { /*@internal*/ function normalC() { } - /*@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /*@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /*@internal*/ get: function () { return 10; }, /*@internal*/ set: function (val) { }, enumerable: false, @@ -164,7 +165,7 @@ var myVar = 30; //# sourceMappingURL=module.js.map //// [/src/app/module.js.map] -{"version":3,"file":"module.js","sourceRoot":"","sources":["../lib/file0.ts","../lib/file1.ts","../lib/file2.ts","../lib/global.ts","file3.ts","file4.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"module.js","sourceRoot":"","sources":["../lib/file0.ts","../lib/file1.ts","../lib/file2.ts","../lib/global.ts","file3.ts","file4.ts"],"names":[],"mappings":"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"} //// [/src/app/module.js.map.baseline.txt] =================================================================== @@ -255,13 +256,14 @@ sourceFile:../lib/file1.ts >>> } 1 >^^^^^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 >constructor() { 2 > } 1 >Emitted(9, 9) Source(3, 35) + SourceIndex(1) 2 >Emitted(9, 10) Source(3, 36) + SourceIndex(1) --- ->>> /*@internal*/ normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> /*@internal*/ normalC_prototype.method = function () { }; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^ 3 > ^ @@ -278,15 +280,15 @@ sourceFile:../lib/file1.ts 5 > 6 > method() { 7 > } -1->Emitted(10, 9) Source(5, 5) + SourceIndex(1) -2 >Emitted(10, 22) Source(5, 18) + SourceIndex(1) -3 >Emitted(10, 23) Source(5, 19) + SourceIndex(1) -4 >Emitted(10, 47) Source(5, 25) + SourceIndex(1) -5 >Emitted(10, 50) Source(5, 19) + SourceIndex(1) -6 >Emitted(10, 64) Source(5, 30) + SourceIndex(1) -7 >Emitted(10, 65) Source(5, 31) + SourceIndex(1) ---- ->>> Object.defineProperty(normalC.prototype, "c", { +1->Emitted(11, 9) Source(5, 5) + SourceIndex(1) +2 >Emitted(11, 22) Source(5, 18) + SourceIndex(1) +3 >Emitted(11, 23) Source(5, 19) + SourceIndex(1) +4 >Emitted(11, 47) Source(5, 25) + SourceIndex(1) +5 >Emitted(11, 50) Source(5, 19) + SourceIndex(1) +6 >Emitted(11, 64) Source(5, 30) + SourceIndex(1) +7 >Emitted(11, 65) Source(5, 31) + SourceIndex(1) +--- +>>> Object.defineProperty(normalC_prototype, "c", { 1 >^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -295,9 +297,9 @@ sourceFile:../lib/file1.ts > /*@internal*/ 2 > get 3 > c -1 >Emitted(11, 9) Source(6, 19) + SourceIndex(1) -2 >Emitted(11, 31) Source(6, 23) + SourceIndex(1) -3 >Emitted(11, 53) Source(6, 24) + SourceIndex(1) +1 >Emitted(12, 9) Source(6, 19) + SourceIndex(1) +2 >Emitted(12, 31) Source(6, 23) + SourceIndex(1) +3 >Emitted(12, 53) Source(6, 24) + SourceIndex(1) --- >>> /*@internal*/ get: function () { return 10; }, 1->^^^^^^^^^^^^ @@ -318,15 +320,15 @@ sourceFile:../lib/file1.ts 7 > ; 8 > 9 > } -1->Emitted(12, 13) Source(6, 5) + SourceIndex(1) -2 >Emitted(12, 26) Source(6, 18) + SourceIndex(1) -3 >Emitted(12, 32) Source(6, 19) + SourceIndex(1) -4 >Emitted(12, 46) Source(6, 29) + SourceIndex(1) -5 >Emitted(12, 53) Source(6, 36) + SourceIndex(1) -6 >Emitted(12, 55) Source(6, 38) + SourceIndex(1) -7 >Emitted(12, 56) Source(6, 39) + SourceIndex(1) -8 >Emitted(12, 57) Source(6, 40) + SourceIndex(1) -9 >Emitted(12, 58) Source(6, 41) + SourceIndex(1) +1->Emitted(13, 13) Source(6, 5) + SourceIndex(1) +2 >Emitted(13, 26) Source(6, 18) + SourceIndex(1) +3 >Emitted(13, 32) Source(6, 19) + SourceIndex(1) +4 >Emitted(13, 46) Source(6, 29) + SourceIndex(1) +5 >Emitted(13, 53) Source(6, 36) + SourceIndex(1) +6 >Emitted(13, 55) Source(6, 38) + SourceIndex(1) +7 >Emitted(13, 56) Source(6, 39) + SourceIndex(1) +8 >Emitted(13, 57) Source(6, 40) + SourceIndex(1) +9 >Emitted(13, 58) Source(6, 41) + SourceIndex(1) --- >>> /*@internal*/ set: function (val) { }, 1 >^^^^^^^^^^^^ @@ -344,13 +346,13 @@ sourceFile:../lib/file1.ts 5 > val: number 6 > ) { 7 > } -1 >Emitted(13, 13) Source(7, 5) + SourceIndex(1) -2 >Emitted(13, 26) Source(7, 18) + SourceIndex(1) -3 >Emitted(13, 32) Source(7, 19) + SourceIndex(1) -4 >Emitted(13, 42) Source(7, 25) + SourceIndex(1) -5 >Emitted(13, 45) Source(7, 36) + SourceIndex(1) -6 >Emitted(13, 49) Source(7, 40) + SourceIndex(1) -7 >Emitted(13, 50) Source(7, 41) + SourceIndex(1) +1 >Emitted(14, 13) Source(7, 5) + SourceIndex(1) +2 >Emitted(14, 26) Source(7, 18) + SourceIndex(1) +3 >Emitted(14, 32) Source(7, 19) + SourceIndex(1) +4 >Emitted(14, 42) Source(7, 25) + SourceIndex(1) +5 >Emitted(14, 45) Source(7, 36) + SourceIndex(1) +6 >Emitted(14, 49) Source(7, 40) + SourceIndex(1) +7 >Emitted(14, 50) Source(7, 41) + SourceIndex(1) --- >>> enumerable: false, >>> configurable: true @@ -358,7 +360,7 @@ sourceFile:../lib/file1.ts 1 >^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(16, 12) Source(6, 41) + SourceIndex(1) +1 >Emitted(17, 12) Source(6, 41) + SourceIndex(1) --- >>> return normalC; 1->^^^^^^^^ @@ -367,8 +369,8 @@ sourceFile:../lib/file1.ts > /*@internal*/ set c(val: number) { } > 2 > } -1->Emitted(17, 9) Source(8, 1) + SourceIndex(1) -2 >Emitted(17, 23) Source(8, 2) + SourceIndex(1) +1->Emitted(18, 9) Source(8, 1) + SourceIndex(1) +2 >Emitted(18, 23) Source(8, 2) + SourceIndex(1) --- >>> }()); 1 >^^^^ @@ -386,18 +388,18 @@ sourceFile:../lib/file1.ts > /*@internal*/ get c() { return 10; } > /*@internal*/ set c(val: number) { } > } -1 >Emitted(18, 5) Source(8, 1) + SourceIndex(1) -2 >Emitted(18, 6) Source(8, 2) + SourceIndex(1) -3 >Emitted(18, 6) Source(2, 1) + SourceIndex(1) -4 >Emitted(18, 10) Source(8, 2) + SourceIndex(1) +1 >Emitted(19, 5) Source(8, 1) + SourceIndex(1) +2 >Emitted(19, 6) Source(8, 2) + SourceIndex(1) +3 >Emitted(19, 6) Source(2, 1) + SourceIndex(1) +4 >Emitted(19, 10) Source(8, 2) + SourceIndex(1) --- >>> exports.normalC = normalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> 2 > normalC -1->Emitted(19, 5) Source(2, 14) + SourceIndex(1) -2 >Emitted(19, 31) Source(2, 21) + SourceIndex(1) +1->Emitted(20, 5) Source(2, 14) + SourceIndex(1) +2 >Emitted(20, 31) Source(2, 21) + SourceIndex(1) --- >>> var normalN; 1 >^^^^ @@ -425,10 +427,10 @@ sourceFile:../lib/file1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(20, 5) Source(9, 1) + SourceIndex(1) -2 >Emitted(20, 9) Source(9, 18) + SourceIndex(1) -3 >Emitted(20, 16) Source(9, 25) + SourceIndex(1) -4 >Emitted(20, 17) Source(18, 2) + SourceIndex(1) +1 >Emitted(21, 5) Source(9, 1) + SourceIndex(1) +2 >Emitted(21, 9) Source(9, 18) + SourceIndex(1) +3 >Emitted(21, 16) Source(9, 25) + SourceIndex(1) +4 >Emitted(21, 17) Source(18, 2) + SourceIndex(1) --- >>> (function (normalN) { 1->^^^^ @@ -438,9 +440,9 @@ sourceFile:../lib/file1.ts 1-> 2 > export namespace 3 > normalN -1->Emitted(21, 5) Source(9, 1) + SourceIndex(1) -2 >Emitted(21, 16) Source(9, 18) + SourceIndex(1) -3 >Emitted(21, 23) Source(9, 25) + SourceIndex(1) +1->Emitted(22, 5) Source(9, 1) + SourceIndex(1) +2 >Emitted(22, 16) Source(9, 18) + SourceIndex(1) +3 >Emitted(22, 23) Source(9, 25) + SourceIndex(1) --- >>> /*@internal*/ var C = /** @class */ (function () { 1->^^^^^^^^ @@ -451,15 +453,15 @@ sourceFile:../lib/file1.ts > 2 > /*@internal*/ 3 > -1->Emitted(22, 9) Source(10, 5) + SourceIndex(1) -2 >Emitted(22, 22) Source(10, 18) + SourceIndex(1) -3 >Emitted(22, 23) Source(10, 19) + SourceIndex(1) +1->Emitted(23, 9) Source(10, 5) + SourceIndex(1) +2 >Emitted(23, 22) Source(10, 18) + SourceIndex(1) +3 >Emitted(23, 23) Source(10, 19) + SourceIndex(1) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(23, 13) Source(10, 19) + SourceIndex(1) +1->Emitted(24, 13) Source(10, 19) + SourceIndex(1) --- >>> } 1->^^^^^^^^^^^^ @@ -467,16 +469,16 @@ sourceFile:../lib/file1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(24, 13) Source(10, 36) + SourceIndex(1) -2 >Emitted(24, 14) Source(10, 37) + SourceIndex(1) +1->Emitted(25, 13) Source(10, 36) + SourceIndex(1) +2 >Emitted(25, 14) Source(10, 37) + SourceIndex(1) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(25, 13) Source(10, 36) + SourceIndex(1) -2 >Emitted(25, 21) Source(10, 37) + SourceIndex(1) +1->Emitted(26, 13) Source(10, 36) + SourceIndex(1) +2 >Emitted(26, 21) Source(10, 37) + SourceIndex(1) --- >>> }()); 1 >^^^^^^^^ @@ -488,10 +490,10 @@ sourceFile:../lib/file1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(26, 9) Source(10, 36) + SourceIndex(1) -2 >Emitted(26, 10) Source(10, 37) + SourceIndex(1) -3 >Emitted(26, 10) Source(10, 19) + SourceIndex(1) -4 >Emitted(26, 14) Source(10, 37) + SourceIndex(1) +1 >Emitted(27, 9) Source(10, 36) + SourceIndex(1) +2 >Emitted(27, 10) Source(10, 37) + SourceIndex(1) +3 >Emitted(27, 10) Source(10, 19) + SourceIndex(1) +4 >Emitted(27, 14) Source(10, 37) + SourceIndex(1) --- >>> normalN.C = C; 1->^^^^^^^^ @@ -503,10 +505,10 @@ sourceFile:../lib/file1.ts 2 > C 3 > { } 4 > -1->Emitted(27, 9) Source(10, 32) + SourceIndex(1) -2 >Emitted(27, 18) Source(10, 33) + SourceIndex(1) -3 >Emitted(27, 22) Source(10, 37) + SourceIndex(1) -4 >Emitted(27, 23) Source(10, 37) + SourceIndex(1) +1->Emitted(28, 9) Source(10, 32) + SourceIndex(1) +2 >Emitted(28, 18) Source(10, 33) + SourceIndex(1) +3 >Emitted(28, 22) Source(10, 37) + SourceIndex(1) +4 >Emitted(28, 23) Source(10, 37) + SourceIndex(1) --- >>> /*@internal*/ function foo() { } 1->^^^^^^^^ @@ -524,13 +526,13 @@ sourceFile:../lib/file1.ts 5 > foo 6 > () { 7 > } -1->Emitted(28, 9) Source(11, 5) + SourceIndex(1) -2 >Emitted(28, 22) Source(11, 18) + SourceIndex(1) -3 >Emitted(28, 23) Source(11, 19) + SourceIndex(1) -4 >Emitted(28, 32) Source(11, 35) + SourceIndex(1) -5 >Emitted(28, 35) Source(11, 38) + SourceIndex(1) -6 >Emitted(28, 40) Source(11, 42) + SourceIndex(1) -7 >Emitted(28, 41) Source(11, 43) + SourceIndex(1) +1->Emitted(29, 9) Source(11, 5) + SourceIndex(1) +2 >Emitted(29, 22) Source(11, 18) + SourceIndex(1) +3 >Emitted(29, 23) Source(11, 19) + SourceIndex(1) +4 >Emitted(29, 32) Source(11, 35) + SourceIndex(1) +5 >Emitted(29, 35) Source(11, 38) + SourceIndex(1) +6 >Emitted(29, 40) Source(11, 42) + SourceIndex(1) +7 >Emitted(29, 41) Source(11, 43) + SourceIndex(1) --- >>> normalN.foo = foo; 1 >^^^^^^^^ @@ -542,10 +544,10 @@ sourceFile:../lib/file1.ts 2 > foo 3 > () {} 4 > -1 >Emitted(29, 9) Source(11, 35) + SourceIndex(1) -2 >Emitted(29, 20) Source(11, 38) + SourceIndex(1) -3 >Emitted(29, 26) Source(11, 43) + SourceIndex(1) -4 >Emitted(29, 27) Source(11, 43) + SourceIndex(1) +1 >Emitted(30, 9) Source(11, 35) + SourceIndex(1) +2 >Emitted(30, 20) Source(11, 38) + SourceIndex(1) +3 >Emitted(30, 26) Source(11, 43) + SourceIndex(1) +4 >Emitted(30, 27) Source(11, 43) + SourceIndex(1) --- >>> /*@internal*/ var someNamespace; 1->^^^^^^^^ @@ -561,12 +563,12 @@ sourceFile:../lib/file1.ts 4 > export namespace 5 > someNamespace 6 > { export class C {} } -1->Emitted(30, 9) Source(12, 5) + SourceIndex(1) -2 >Emitted(30, 22) Source(12, 18) + SourceIndex(1) -3 >Emitted(30, 23) Source(12, 19) + SourceIndex(1) -4 >Emitted(30, 27) Source(12, 36) + SourceIndex(1) -5 >Emitted(30, 40) Source(12, 49) + SourceIndex(1) -6 >Emitted(30, 41) Source(12, 71) + SourceIndex(1) +1->Emitted(31, 9) Source(12, 5) + SourceIndex(1) +2 >Emitted(31, 22) Source(12, 18) + SourceIndex(1) +3 >Emitted(31, 23) Source(12, 19) + SourceIndex(1) +4 >Emitted(31, 27) Source(12, 36) + SourceIndex(1) +5 >Emitted(31, 40) Source(12, 49) + SourceIndex(1) +6 >Emitted(31, 41) Source(12, 71) + SourceIndex(1) --- >>> (function (someNamespace) { 1 >^^^^^^^^ @@ -576,21 +578,21 @@ sourceFile:../lib/file1.ts 1 > 2 > export namespace 3 > someNamespace -1 >Emitted(31, 9) Source(12, 19) + SourceIndex(1) -2 >Emitted(31, 20) Source(12, 36) + SourceIndex(1) -3 >Emitted(31, 33) Source(12, 49) + SourceIndex(1) +1 >Emitted(32, 9) Source(12, 19) + SourceIndex(1) +2 >Emitted(32, 20) Source(12, 36) + SourceIndex(1) +3 >Emitted(32, 33) Source(12, 49) + SourceIndex(1) --- >>> var C = /** @class */ (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(32, 13) Source(12, 52) + SourceIndex(1) +1->Emitted(33, 13) Source(12, 52) + SourceIndex(1) --- >>> function C() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(33, 17) Source(12, 52) + SourceIndex(1) +1->Emitted(34, 17) Source(12, 52) + SourceIndex(1) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -598,16 +600,16 @@ sourceFile:../lib/file1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(34, 17) Source(12, 68) + SourceIndex(1) -2 >Emitted(34, 18) Source(12, 69) + SourceIndex(1) +1->Emitted(35, 17) Source(12, 68) + SourceIndex(1) +2 >Emitted(35, 18) Source(12, 69) + SourceIndex(1) --- >>> return C; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(35, 17) Source(12, 68) + SourceIndex(1) -2 >Emitted(35, 25) Source(12, 69) + SourceIndex(1) +1->Emitted(36, 17) Source(12, 68) + SourceIndex(1) +2 >Emitted(36, 25) Source(12, 69) + SourceIndex(1) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -619,10 +621,10 @@ sourceFile:../lib/file1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(36, 13) Source(12, 68) + SourceIndex(1) -2 >Emitted(36, 14) Source(12, 69) + SourceIndex(1) -3 >Emitted(36, 14) Source(12, 52) + SourceIndex(1) -4 >Emitted(36, 18) Source(12, 69) + SourceIndex(1) +1 >Emitted(37, 13) Source(12, 68) + SourceIndex(1) +2 >Emitted(37, 14) Source(12, 69) + SourceIndex(1) +3 >Emitted(37, 14) Source(12, 52) + SourceIndex(1) +4 >Emitted(37, 18) Source(12, 69) + SourceIndex(1) --- >>> someNamespace.C = C; 1->^^^^^^^^^^^^ @@ -634,10 +636,10 @@ sourceFile:../lib/file1.ts 2 > C 3 > {} 4 > -1->Emitted(37, 13) Source(12, 65) + SourceIndex(1) -2 >Emitted(37, 28) Source(12, 66) + SourceIndex(1) -3 >Emitted(37, 32) Source(12, 69) + SourceIndex(1) -4 >Emitted(37, 33) Source(12, 69) + SourceIndex(1) +1->Emitted(38, 13) Source(12, 65) + SourceIndex(1) +2 >Emitted(38, 28) Source(12, 66) + SourceIndex(1) +3 >Emitted(38, 32) Source(12, 69) + SourceIndex(1) +4 >Emitted(38, 33) Source(12, 69) + SourceIndex(1) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^^^^^ @@ -658,15 +660,15 @@ sourceFile:../lib/file1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(38, 9) Source(12, 70) + SourceIndex(1) -2 >Emitted(38, 10) Source(12, 71) + SourceIndex(1) -3 >Emitted(38, 12) Source(12, 36) + SourceIndex(1) -4 >Emitted(38, 25) Source(12, 49) + SourceIndex(1) -5 >Emitted(38, 28) Source(12, 36) + SourceIndex(1) -6 >Emitted(38, 49) Source(12, 49) + SourceIndex(1) -7 >Emitted(38, 54) Source(12, 36) + SourceIndex(1) -8 >Emitted(38, 75) Source(12, 49) + SourceIndex(1) -9 >Emitted(38, 83) Source(12, 71) + SourceIndex(1) +1->Emitted(39, 9) Source(12, 70) + SourceIndex(1) +2 >Emitted(39, 10) Source(12, 71) + SourceIndex(1) +3 >Emitted(39, 12) Source(12, 36) + SourceIndex(1) +4 >Emitted(39, 25) Source(12, 49) + SourceIndex(1) +5 >Emitted(39, 28) Source(12, 36) + SourceIndex(1) +6 >Emitted(39, 49) Source(12, 49) + SourceIndex(1) +7 >Emitted(39, 54) Source(12, 36) + SourceIndex(1) +8 >Emitted(39, 75) Source(12, 49) + SourceIndex(1) +9 >Emitted(39, 83) Source(12, 71) + SourceIndex(1) --- >>> /*@internal*/ var someOther; 1 >^^^^^^^^ @@ -682,12 +684,12 @@ sourceFile:../lib/file1.ts 4 > export namespace 5 > someOther 6 > .something { export class someClass {} } -1 >Emitted(39, 9) Source(13, 5) + SourceIndex(1) -2 >Emitted(39, 22) Source(13, 18) + SourceIndex(1) -3 >Emitted(39, 23) Source(13, 19) + SourceIndex(1) -4 >Emitted(39, 27) Source(13, 36) + SourceIndex(1) -5 >Emitted(39, 36) Source(13, 45) + SourceIndex(1) -6 >Emitted(39, 37) Source(13, 85) + SourceIndex(1) +1 >Emitted(40, 9) Source(13, 5) + SourceIndex(1) +2 >Emitted(40, 22) Source(13, 18) + SourceIndex(1) +3 >Emitted(40, 23) Source(13, 19) + SourceIndex(1) +4 >Emitted(40, 27) Source(13, 36) + SourceIndex(1) +5 >Emitted(40, 36) Source(13, 45) + SourceIndex(1) +6 >Emitted(40, 37) Source(13, 85) + SourceIndex(1) --- >>> (function (someOther) { 1 >^^^^^^^^ @@ -696,9 +698,9 @@ sourceFile:../lib/file1.ts 1 > 2 > export namespace 3 > someOther -1 >Emitted(40, 9) Source(13, 19) + SourceIndex(1) -2 >Emitted(40, 20) Source(13, 36) + SourceIndex(1) -3 >Emitted(40, 29) Source(13, 45) + SourceIndex(1) +1 >Emitted(41, 9) Source(13, 19) + SourceIndex(1) +2 >Emitted(41, 20) Source(13, 36) + SourceIndex(1) +3 >Emitted(41, 29) Source(13, 45) + SourceIndex(1) --- >>> var something; 1 >^^^^^^^^^^^^ @@ -710,10 +712,10 @@ sourceFile:../lib/file1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(41, 13) Source(13, 46) + SourceIndex(1) -2 >Emitted(41, 17) Source(13, 46) + SourceIndex(1) -3 >Emitted(41, 26) Source(13, 55) + SourceIndex(1) -4 >Emitted(41, 27) Source(13, 85) + SourceIndex(1) +1 >Emitted(42, 13) Source(13, 46) + SourceIndex(1) +2 >Emitted(42, 17) Source(13, 46) + SourceIndex(1) +3 >Emitted(42, 26) Source(13, 55) + SourceIndex(1) +4 >Emitted(42, 27) Source(13, 85) + SourceIndex(1) --- >>> (function (something) { 1->^^^^^^^^^^^^ @@ -723,21 +725,21 @@ sourceFile:../lib/file1.ts 1-> 2 > 3 > something -1->Emitted(42, 13) Source(13, 46) + SourceIndex(1) -2 >Emitted(42, 24) Source(13, 46) + SourceIndex(1) -3 >Emitted(42, 33) Source(13, 55) + SourceIndex(1) +1->Emitted(43, 13) Source(13, 46) + SourceIndex(1) +2 >Emitted(43, 24) Source(13, 46) + SourceIndex(1) +3 >Emitted(43, 33) Source(13, 55) + SourceIndex(1) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(43, 17) Source(13, 58) + SourceIndex(1) +1->Emitted(44, 17) Source(13, 58) + SourceIndex(1) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(44, 21) Source(13, 58) + SourceIndex(1) +1->Emitted(45, 21) Source(13, 58) + SourceIndex(1) --- >>> } 1->^^^^^^^^^^^^^^^^^^^^ @@ -745,16 +747,16 @@ sourceFile:../lib/file1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(45, 21) Source(13, 82) + SourceIndex(1) -2 >Emitted(45, 22) Source(13, 83) + SourceIndex(1) +1->Emitted(46, 21) Source(13, 82) + SourceIndex(1) +2 >Emitted(46, 22) Source(13, 83) + SourceIndex(1) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(46, 21) Source(13, 82) + SourceIndex(1) -2 >Emitted(46, 37) Source(13, 83) + SourceIndex(1) +1->Emitted(47, 21) Source(13, 82) + SourceIndex(1) +2 >Emitted(47, 37) Source(13, 83) + SourceIndex(1) --- >>> }()); 1 >^^^^^^^^^^^^^^^^ @@ -766,10 +768,10 @@ sourceFile:../lib/file1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(47, 17) Source(13, 82) + SourceIndex(1) -2 >Emitted(47, 18) Source(13, 83) + SourceIndex(1) -3 >Emitted(47, 18) Source(13, 58) + SourceIndex(1) -4 >Emitted(47, 22) Source(13, 83) + SourceIndex(1) +1 >Emitted(48, 17) Source(13, 82) + SourceIndex(1) +2 >Emitted(48, 18) Source(13, 83) + SourceIndex(1) +3 >Emitted(48, 18) Source(13, 58) + SourceIndex(1) +4 >Emitted(48, 22) Source(13, 83) + SourceIndex(1) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^^^^^ @@ -781,10 +783,10 @@ sourceFile:../lib/file1.ts 2 > someClass 3 > {} 4 > -1->Emitted(48, 17) Source(13, 71) + SourceIndex(1) -2 >Emitted(48, 36) Source(13, 80) + SourceIndex(1) -3 >Emitted(48, 48) Source(13, 83) + SourceIndex(1) -4 >Emitted(48, 49) Source(13, 83) + SourceIndex(1) +1->Emitted(49, 17) Source(13, 71) + SourceIndex(1) +2 >Emitted(49, 36) Source(13, 80) + SourceIndex(1) +3 >Emitted(49, 48) Source(13, 83) + SourceIndex(1) +4 >Emitted(49, 49) Source(13, 83) + SourceIndex(1) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^^^^^ @@ -805,15 +807,15 @@ sourceFile:../lib/file1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(49, 13) Source(13, 84) + SourceIndex(1) -2 >Emitted(49, 14) Source(13, 85) + SourceIndex(1) -3 >Emitted(49, 16) Source(13, 46) + SourceIndex(1) -4 >Emitted(49, 25) Source(13, 55) + SourceIndex(1) -5 >Emitted(49, 28) Source(13, 46) + SourceIndex(1) -6 >Emitted(49, 47) Source(13, 55) + SourceIndex(1) -7 >Emitted(49, 52) Source(13, 46) + SourceIndex(1) -8 >Emitted(49, 71) Source(13, 55) + SourceIndex(1) -9 >Emitted(49, 79) Source(13, 85) + SourceIndex(1) +1->Emitted(50, 13) Source(13, 84) + SourceIndex(1) +2 >Emitted(50, 14) Source(13, 85) + SourceIndex(1) +3 >Emitted(50, 16) Source(13, 46) + SourceIndex(1) +4 >Emitted(50, 25) Source(13, 55) + SourceIndex(1) +5 >Emitted(50, 28) Source(13, 46) + SourceIndex(1) +6 >Emitted(50, 47) Source(13, 55) + SourceIndex(1) +7 >Emitted(50, 52) Source(13, 46) + SourceIndex(1) +8 >Emitted(50, 71) Source(13, 55) + SourceIndex(1) +9 >Emitted(50, 79) Source(13, 85) + SourceIndex(1) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^^^^^ @@ -834,15 +836,15 @@ sourceFile:../lib/file1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(50, 9) Source(13, 84) + SourceIndex(1) -2 >Emitted(50, 10) Source(13, 85) + SourceIndex(1) -3 >Emitted(50, 12) Source(13, 36) + SourceIndex(1) -4 >Emitted(50, 21) Source(13, 45) + SourceIndex(1) -5 >Emitted(50, 24) Source(13, 36) + SourceIndex(1) -6 >Emitted(50, 41) Source(13, 45) + SourceIndex(1) -7 >Emitted(50, 46) Source(13, 36) + SourceIndex(1) -8 >Emitted(50, 63) Source(13, 45) + SourceIndex(1) -9 >Emitted(50, 71) Source(13, 85) + SourceIndex(1) +1 >Emitted(51, 9) Source(13, 84) + SourceIndex(1) +2 >Emitted(51, 10) Source(13, 85) + SourceIndex(1) +3 >Emitted(51, 12) Source(13, 36) + SourceIndex(1) +4 >Emitted(51, 21) Source(13, 45) + SourceIndex(1) +5 >Emitted(51, 24) Source(13, 36) + SourceIndex(1) +6 >Emitted(51, 41) Source(13, 45) + SourceIndex(1) +7 >Emitted(51, 46) Source(13, 36) + SourceIndex(1) +8 >Emitted(51, 63) Source(13, 45) + SourceIndex(1) +9 >Emitted(51, 71) Source(13, 85) + SourceIndex(1) --- >>> /*@internal*/ normalN.someImport = someNamespace.C; 1 >^^^^^^^^ @@ -864,15 +866,15 @@ sourceFile:../lib/file1.ts 7 > . 8 > C 9 > ; -1 >Emitted(51, 9) Source(14, 5) + SourceIndex(1) -2 >Emitted(51, 22) Source(14, 18) + SourceIndex(1) -3 >Emitted(51, 23) Source(14, 33) + SourceIndex(1) -4 >Emitted(51, 41) Source(14, 43) + SourceIndex(1) -5 >Emitted(51, 44) Source(14, 46) + SourceIndex(1) -6 >Emitted(51, 57) Source(14, 59) + SourceIndex(1) -7 >Emitted(51, 58) Source(14, 60) + SourceIndex(1) -8 >Emitted(51, 59) Source(14, 61) + SourceIndex(1) -9 >Emitted(51, 60) Source(14, 62) + SourceIndex(1) +1 >Emitted(52, 9) Source(14, 5) + SourceIndex(1) +2 >Emitted(52, 22) Source(14, 18) + SourceIndex(1) +3 >Emitted(52, 23) Source(14, 33) + SourceIndex(1) +4 >Emitted(52, 41) Source(14, 43) + SourceIndex(1) +5 >Emitted(52, 44) Source(14, 46) + SourceIndex(1) +6 >Emitted(52, 57) Source(14, 59) + SourceIndex(1) +7 >Emitted(52, 58) Source(14, 60) + SourceIndex(1) +8 >Emitted(52, 59) Source(14, 61) + SourceIndex(1) +9 >Emitted(52, 60) Source(14, 62) + SourceIndex(1) --- >>> /*@internal*/ normalN.internalConst = 10; 1 >^^^^^^^^ @@ -891,13 +893,13 @@ sourceFile:../lib/file1.ts 5 > = 6 > 10 7 > ; -1 >Emitted(52, 9) Source(16, 5) + SourceIndex(1) -2 >Emitted(52, 22) Source(16, 18) + SourceIndex(1) -3 >Emitted(52, 23) Source(16, 32) + SourceIndex(1) -4 >Emitted(52, 44) Source(16, 45) + SourceIndex(1) -5 >Emitted(52, 47) Source(16, 48) + SourceIndex(1) -6 >Emitted(52, 49) Source(16, 50) + SourceIndex(1) -7 >Emitted(52, 50) Source(16, 51) + SourceIndex(1) +1 >Emitted(53, 9) Source(16, 5) + SourceIndex(1) +2 >Emitted(53, 22) Source(16, 18) + SourceIndex(1) +3 >Emitted(53, 23) Source(16, 32) + SourceIndex(1) +4 >Emitted(53, 44) Source(16, 45) + SourceIndex(1) +5 >Emitted(53, 47) Source(16, 48) + SourceIndex(1) +6 >Emitted(53, 49) Source(16, 50) + SourceIndex(1) +7 >Emitted(53, 50) Source(16, 51) + SourceIndex(1) --- >>> /*@internal*/ var internalEnum; 1 >^^^^^^^^ @@ -911,11 +913,11 @@ sourceFile:../lib/file1.ts 3 > 4 > export enum 5 > internalEnum { a, b, c } -1 >Emitted(53, 9) Source(17, 5) + SourceIndex(1) -2 >Emitted(53, 22) Source(17, 18) + SourceIndex(1) -3 >Emitted(53, 23) Source(17, 19) + SourceIndex(1) -4 >Emitted(53, 27) Source(17, 31) + SourceIndex(1) -5 >Emitted(53, 39) Source(17, 55) + SourceIndex(1) +1 >Emitted(54, 9) Source(17, 5) + SourceIndex(1) +2 >Emitted(54, 22) Source(17, 18) + SourceIndex(1) +3 >Emitted(54, 23) Source(17, 19) + SourceIndex(1) +4 >Emitted(54, 27) Source(17, 31) + SourceIndex(1) +5 >Emitted(54, 39) Source(17, 55) + SourceIndex(1) --- >>> (function (internalEnum) { 1 >^^^^^^^^ @@ -925,9 +927,9 @@ sourceFile:../lib/file1.ts 1 > 2 > export enum 3 > internalEnum -1 >Emitted(54, 9) Source(17, 19) + SourceIndex(1) -2 >Emitted(54, 20) Source(17, 31) + SourceIndex(1) -3 >Emitted(54, 32) Source(17, 43) + SourceIndex(1) +1 >Emitted(55, 9) Source(17, 19) + SourceIndex(1) +2 >Emitted(55, 20) Source(17, 31) + SourceIndex(1) +3 >Emitted(55, 32) Source(17, 43) + SourceIndex(1) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^^^^^ @@ -937,9 +939,9 @@ sourceFile:../lib/file1.ts 1-> { 2 > a 3 > -1->Emitted(55, 13) Source(17, 46) + SourceIndex(1) -2 >Emitted(55, 54) Source(17, 47) + SourceIndex(1) -3 >Emitted(55, 55) Source(17, 47) + SourceIndex(1) +1->Emitted(56, 13) Source(17, 46) + SourceIndex(1) +2 >Emitted(56, 54) Source(17, 47) + SourceIndex(1) +3 >Emitted(56, 55) Source(17, 47) + SourceIndex(1) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^^^^^ @@ -949,9 +951,9 @@ sourceFile:../lib/file1.ts 1->, 2 > b 3 > -1->Emitted(56, 13) Source(17, 49) + SourceIndex(1) -2 >Emitted(56, 54) Source(17, 50) + SourceIndex(1) -3 >Emitted(56, 55) Source(17, 50) + SourceIndex(1) +1->Emitted(57, 13) Source(17, 49) + SourceIndex(1) +2 >Emitted(57, 54) Source(17, 50) + SourceIndex(1) +3 >Emitted(57, 55) Source(17, 50) + SourceIndex(1) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^^^^^ @@ -961,9 +963,9 @@ sourceFile:../lib/file1.ts 1->, 2 > c 3 > -1->Emitted(57, 13) Source(17, 52) + SourceIndex(1) -2 >Emitted(57, 54) Source(17, 53) + SourceIndex(1) -3 >Emitted(57, 55) Source(17, 53) + SourceIndex(1) +1->Emitted(58, 13) Source(17, 52) + SourceIndex(1) +2 >Emitted(58, 54) Source(17, 53) + SourceIndex(1) +3 >Emitted(58, 55) Source(17, 53) + SourceIndex(1) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^^^^^ @@ -984,15 +986,15 @@ sourceFile:../lib/file1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(58, 9) Source(17, 54) + SourceIndex(1) -2 >Emitted(58, 10) Source(17, 55) + SourceIndex(1) -3 >Emitted(58, 12) Source(17, 31) + SourceIndex(1) -4 >Emitted(58, 24) Source(17, 43) + SourceIndex(1) -5 >Emitted(58, 27) Source(17, 31) + SourceIndex(1) -6 >Emitted(58, 47) Source(17, 43) + SourceIndex(1) -7 >Emitted(58, 52) Source(17, 31) + SourceIndex(1) -8 >Emitted(58, 72) Source(17, 43) + SourceIndex(1) -9 >Emitted(58, 80) Source(17, 55) + SourceIndex(1) +1->Emitted(59, 9) Source(17, 54) + SourceIndex(1) +2 >Emitted(59, 10) Source(17, 55) + SourceIndex(1) +3 >Emitted(59, 12) Source(17, 31) + SourceIndex(1) +4 >Emitted(59, 24) Source(17, 43) + SourceIndex(1) +5 >Emitted(59, 27) Source(17, 31) + SourceIndex(1) +6 >Emitted(59, 47) Source(17, 43) + SourceIndex(1) +7 >Emitted(59, 52) Source(17, 31) + SourceIndex(1) +8 >Emitted(59, 72) Source(17, 43) + SourceIndex(1) +9 >Emitted(59, 80) Source(17, 55) + SourceIndex(1) --- >>> })(normalN = exports.normalN || (exports.normalN = {})); 1 >^^^^ @@ -1024,15 +1026,15 @@ sourceFile:../lib/file1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(59, 5) Source(18, 1) + SourceIndex(1) -2 >Emitted(59, 6) Source(18, 2) + SourceIndex(1) -3 >Emitted(59, 8) Source(9, 18) + SourceIndex(1) -4 >Emitted(59, 15) Source(9, 25) + SourceIndex(1) -5 >Emitted(59, 18) Source(9, 18) + SourceIndex(1) -6 >Emitted(59, 33) Source(9, 25) + SourceIndex(1) -7 >Emitted(59, 38) Source(9, 18) + SourceIndex(1) -8 >Emitted(59, 53) Source(9, 25) + SourceIndex(1) -9 >Emitted(59, 61) Source(18, 2) + SourceIndex(1) +1 >Emitted(60, 5) Source(18, 1) + SourceIndex(1) +2 >Emitted(60, 6) Source(18, 2) + SourceIndex(1) +3 >Emitted(60, 8) Source(9, 18) + SourceIndex(1) +4 >Emitted(60, 15) Source(9, 25) + SourceIndex(1) +5 >Emitted(60, 18) Source(9, 18) + SourceIndex(1) +6 >Emitted(60, 33) Source(9, 25) + SourceIndex(1) +7 >Emitted(60, 38) Source(9, 18) + SourceIndex(1) +8 >Emitted(60, 53) Source(9, 25) + SourceIndex(1) +9 >Emitted(60, 61) Source(18, 2) + SourceIndex(1) --- >>> /*@internal*/ var internalC = /** @class */ (function () { 1->^^^^ @@ -1043,15 +1045,15 @@ sourceFile:../lib/file1.ts > 2 > /*@internal*/ 3 > -1->Emitted(60, 5) Source(19, 1) + SourceIndex(1) -2 >Emitted(60, 18) Source(19, 14) + SourceIndex(1) -3 >Emitted(60, 19) Source(19, 15) + SourceIndex(1) +1->Emitted(61, 5) Source(19, 1) + SourceIndex(1) +2 >Emitted(61, 18) Source(19, 14) + SourceIndex(1) +3 >Emitted(61, 19) Source(19, 15) + SourceIndex(1) --- >>> function internalC() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(61, 9) Source(19, 15) + SourceIndex(1) +1->Emitted(62, 9) Source(19, 15) + SourceIndex(1) --- >>> } 1->^^^^^^^^ @@ -1059,16 +1061,16 @@ sourceFile:../lib/file1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class internalC { 2 > } -1->Emitted(62, 9) Source(19, 39) + SourceIndex(1) -2 >Emitted(62, 10) Source(19, 40) + SourceIndex(1) +1->Emitted(63, 9) Source(19, 39) + SourceIndex(1) +2 >Emitted(63, 10) Source(19, 40) + SourceIndex(1) --- >>> return internalC; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(63, 9) Source(19, 39) + SourceIndex(1) -2 >Emitted(63, 25) Source(19, 40) + SourceIndex(1) +1->Emitted(64, 9) Source(19, 39) + SourceIndex(1) +2 >Emitted(64, 25) Source(19, 40) + SourceIndex(1) --- >>> }()); 1 >^^^^ @@ -1080,10 +1082,10 @@ sourceFile:../lib/file1.ts 2 > } 3 > 4 > export class internalC {} -1 >Emitted(64, 5) Source(19, 39) + SourceIndex(1) -2 >Emitted(64, 6) Source(19, 40) + SourceIndex(1) -3 >Emitted(64, 6) Source(19, 15) + SourceIndex(1) -4 >Emitted(64, 10) Source(19, 40) + SourceIndex(1) +1 >Emitted(65, 5) Source(19, 39) + SourceIndex(1) +2 >Emitted(65, 6) Source(19, 40) + SourceIndex(1) +3 >Emitted(65, 6) Source(19, 15) + SourceIndex(1) +4 >Emitted(65, 10) Source(19, 40) + SourceIndex(1) --- >>> exports.internalC = internalC; 1->^^^^ @@ -1091,8 +1093,8 @@ sourceFile:../lib/file1.ts 3 > ^^^^^^^^^^^-> 1-> 2 > internalC -1->Emitted(65, 5) Source(19, 28) + SourceIndex(1) -2 >Emitted(65, 35) Source(19, 37) + SourceIndex(1) +1->Emitted(66, 5) Source(19, 28) + SourceIndex(1) +2 >Emitted(66, 35) Source(19, 37) + SourceIndex(1) --- >>> /*@internal*/ function internalfoo() { } 1->^^^^ @@ -1110,13 +1112,13 @@ sourceFile:../lib/file1.ts 5 > internalfoo 6 > () { 7 > } -1->Emitted(66, 5) Source(20, 1) + SourceIndex(1) -2 >Emitted(66, 18) Source(20, 14) + SourceIndex(1) -3 >Emitted(66, 19) Source(20, 15) + SourceIndex(1) -4 >Emitted(66, 28) Source(20, 31) + SourceIndex(1) -5 >Emitted(66, 39) Source(20, 42) + SourceIndex(1) -6 >Emitted(66, 44) Source(20, 46) + SourceIndex(1) -7 >Emitted(66, 45) Source(20, 47) + SourceIndex(1) +1->Emitted(67, 5) Source(20, 1) + SourceIndex(1) +2 >Emitted(67, 18) Source(20, 14) + SourceIndex(1) +3 >Emitted(67, 19) Source(20, 15) + SourceIndex(1) +4 >Emitted(67, 28) Source(20, 31) + SourceIndex(1) +5 >Emitted(67, 39) Source(20, 42) + SourceIndex(1) +6 >Emitted(67, 44) Source(20, 46) + SourceIndex(1) +7 >Emitted(67, 45) Source(20, 47) + SourceIndex(1) --- >>> exports.internalfoo = internalfoo; 1 >^^^^ @@ -1124,8 +1126,8 @@ sourceFile:../lib/file1.ts 3 > ^^^-> 1 > 2 > export function internalfoo() {} -1 >Emitted(67, 5) Source(20, 15) + SourceIndex(1) -2 >Emitted(67, 39) Source(20, 47) + SourceIndex(1) +1 >Emitted(68, 5) Source(20, 15) + SourceIndex(1) +2 >Emitted(68, 39) Source(20, 47) + SourceIndex(1) --- >>> /*@internal*/ var internalNamespace; 1->^^^^ @@ -1141,12 +1143,12 @@ sourceFile:../lib/file1.ts 4 > export namespace 5 > internalNamespace 6 > { export class someClass {} } -1->Emitted(68, 5) Source(21, 1) + SourceIndex(1) -2 >Emitted(68, 18) Source(21, 14) + SourceIndex(1) -3 >Emitted(68, 19) Source(21, 15) + SourceIndex(1) -4 >Emitted(68, 23) Source(21, 32) + SourceIndex(1) -5 >Emitted(68, 40) Source(21, 49) + SourceIndex(1) -6 >Emitted(68, 41) Source(21, 79) + SourceIndex(1) +1->Emitted(69, 5) Source(21, 1) + SourceIndex(1) +2 >Emitted(69, 18) Source(21, 14) + SourceIndex(1) +3 >Emitted(69, 19) Source(21, 15) + SourceIndex(1) +4 >Emitted(69, 23) Source(21, 32) + SourceIndex(1) +5 >Emitted(69, 40) Source(21, 49) + SourceIndex(1) +6 >Emitted(69, 41) Source(21, 79) + SourceIndex(1) --- >>> (function (internalNamespace) { 1 >^^^^ @@ -1156,21 +1158,21 @@ sourceFile:../lib/file1.ts 1 > 2 > export namespace 3 > internalNamespace -1 >Emitted(69, 5) Source(21, 15) + SourceIndex(1) -2 >Emitted(69, 16) Source(21, 32) + SourceIndex(1) -3 >Emitted(69, 33) Source(21, 49) + SourceIndex(1) +1 >Emitted(70, 5) Source(21, 15) + SourceIndex(1) +2 >Emitted(70, 16) Source(21, 32) + SourceIndex(1) +3 >Emitted(70, 33) Source(21, 49) + SourceIndex(1) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(70, 9) Source(21, 52) + SourceIndex(1) +1->Emitted(71, 9) Source(21, 52) + SourceIndex(1) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(71, 13) Source(21, 52) + SourceIndex(1) +1->Emitted(72, 13) Source(21, 52) + SourceIndex(1) --- >>> } 1->^^^^^^^^^^^^ @@ -1178,16 +1180,16 @@ sourceFile:../lib/file1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(72, 13) Source(21, 76) + SourceIndex(1) -2 >Emitted(72, 14) Source(21, 77) + SourceIndex(1) +1->Emitted(73, 13) Source(21, 76) + SourceIndex(1) +2 >Emitted(73, 14) Source(21, 77) + SourceIndex(1) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(73, 13) Source(21, 76) + SourceIndex(1) -2 >Emitted(73, 29) Source(21, 77) + SourceIndex(1) +1->Emitted(74, 13) Source(21, 76) + SourceIndex(1) +2 >Emitted(74, 29) Source(21, 77) + SourceIndex(1) --- >>> }()); 1 >^^^^^^^^ @@ -1199,10 +1201,10 @@ sourceFile:../lib/file1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(74, 9) Source(21, 76) + SourceIndex(1) -2 >Emitted(74, 10) Source(21, 77) + SourceIndex(1) -3 >Emitted(74, 10) Source(21, 52) + SourceIndex(1) -4 >Emitted(74, 14) Source(21, 77) + SourceIndex(1) +1 >Emitted(75, 9) Source(21, 76) + SourceIndex(1) +2 >Emitted(75, 10) Source(21, 77) + SourceIndex(1) +3 >Emitted(75, 10) Source(21, 52) + SourceIndex(1) +4 >Emitted(75, 14) Source(21, 77) + SourceIndex(1) --- >>> internalNamespace.someClass = someClass; 1->^^^^^^^^ @@ -1214,10 +1216,10 @@ sourceFile:../lib/file1.ts 2 > someClass 3 > {} 4 > -1->Emitted(75, 9) Source(21, 65) + SourceIndex(1) -2 >Emitted(75, 36) Source(21, 74) + SourceIndex(1) -3 >Emitted(75, 48) Source(21, 77) + SourceIndex(1) -4 >Emitted(75, 49) Source(21, 77) + SourceIndex(1) +1->Emitted(76, 9) Source(21, 65) + SourceIndex(1) +2 >Emitted(76, 36) Source(21, 74) + SourceIndex(1) +3 >Emitted(76, 48) Source(21, 77) + SourceIndex(1) +4 >Emitted(76, 49) Source(21, 77) + SourceIndex(1) --- >>> })(internalNamespace = exports.internalNamespace || (exports.internalNamespace = {})); 1->^^^^ @@ -1238,15 +1240,15 @@ sourceFile:../lib/file1.ts 7 > 8 > internalNamespace 9 > { export class someClass {} } -1->Emitted(76, 5) Source(21, 78) + SourceIndex(1) -2 >Emitted(76, 6) Source(21, 79) + SourceIndex(1) -3 >Emitted(76, 8) Source(21, 32) + SourceIndex(1) -4 >Emitted(76, 25) Source(21, 49) + SourceIndex(1) -5 >Emitted(76, 28) Source(21, 32) + SourceIndex(1) -6 >Emitted(76, 53) Source(21, 49) + SourceIndex(1) -7 >Emitted(76, 58) Source(21, 32) + SourceIndex(1) -8 >Emitted(76, 83) Source(21, 49) + SourceIndex(1) -9 >Emitted(76, 91) Source(21, 79) + SourceIndex(1) +1->Emitted(77, 5) Source(21, 78) + SourceIndex(1) +2 >Emitted(77, 6) Source(21, 79) + SourceIndex(1) +3 >Emitted(77, 8) Source(21, 32) + SourceIndex(1) +4 >Emitted(77, 25) Source(21, 49) + SourceIndex(1) +5 >Emitted(77, 28) Source(21, 32) + SourceIndex(1) +6 >Emitted(77, 53) Source(21, 49) + SourceIndex(1) +7 >Emitted(77, 58) Source(21, 32) + SourceIndex(1) +8 >Emitted(77, 83) Source(21, 49) + SourceIndex(1) +9 >Emitted(77, 91) Source(21, 79) + SourceIndex(1) --- >>> /*@internal*/ var internalOther; 1 >^^^^ @@ -1262,12 +1264,12 @@ sourceFile:../lib/file1.ts 4 > export namespace 5 > internalOther 6 > .something { export class someClass {} } -1 >Emitted(77, 5) Source(22, 1) + SourceIndex(1) -2 >Emitted(77, 18) Source(22, 14) + SourceIndex(1) -3 >Emitted(77, 19) Source(22, 15) + SourceIndex(1) -4 >Emitted(77, 23) Source(22, 32) + SourceIndex(1) -5 >Emitted(77, 36) Source(22, 45) + SourceIndex(1) -6 >Emitted(77, 37) Source(22, 85) + SourceIndex(1) +1 >Emitted(78, 5) Source(22, 1) + SourceIndex(1) +2 >Emitted(78, 18) Source(22, 14) + SourceIndex(1) +3 >Emitted(78, 19) Source(22, 15) + SourceIndex(1) +4 >Emitted(78, 23) Source(22, 32) + SourceIndex(1) +5 >Emitted(78, 36) Source(22, 45) + SourceIndex(1) +6 >Emitted(78, 37) Source(22, 85) + SourceIndex(1) --- >>> (function (internalOther) { 1 >^^^^ @@ -1276,9 +1278,9 @@ sourceFile:../lib/file1.ts 1 > 2 > export namespace 3 > internalOther -1 >Emitted(78, 5) Source(22, 15) + SourceIndex(1) -2 >Emitted(78, 16) Source(22, 32) + SourceIndex(1) -3 >Emitted(78, 29) Source(22, 45) + SourceIndex(1) +1 >Emitted(79, 5) Source(22, 15) + SourceIndex(1) +2 >Emitted(79, 16) Source(22, 32) + SourceIndex(1) +3 >Emitted(79, 29) Source(22, 45) + SourceIndex(1) --- >>> var something; 1 >^^^^^^^^ @@ -1290,10 +1292,10 @@ sourceFile:../lib/file1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(79, 9) Source(22, 46) + SourceIndex(1) -2 >Emitted(79, 13) Source(22, 46) + SourceIndex(1) -3 >Emitted(79, 22) Source(22, 55) + SourceIndex(1) -4 >Emitted(79, 23) Source(22, 85) + SourceIndex(1) +1 >Emitted(80, 9) Source(22, 46) + SourceIndex(1) +2 >Emitted(80, 13) Source(22, 46) + SourceIndex(1) +3 >Emitted(80, 22) Source(22, 55) + SourceIndex(1) +4 >Emitted(80, 23) Source(22, 85) + SourceIndex(1) --- >>> (function (something) { 1->^^^^^^^^ @@ -1303,21 +1305,21 @@ sourceFile:../lib/file1.ts 1-> 2 > 3 > something -1->Emitted(80, 9) Source(22, 46) + SourceIndex(1) -2 >Emitted(80, 20) Source(22, 46) + SourceIndex(1) -3 >Emitted(80, 29) Source(22, 55) + SourceIndex(1) +1->Emitted(81, 9) Source(22, 46) + SourceIndex(1) +2 >Emitted(81, 20) Source(22, 46) + SourceIndex(1) +3 >Emitted(81, 29) Source(22, 55) + SourceIndex(1) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(81, 13) Source(22, 58) + SourceIndex(1) +1->Emitted(82, 13) Source(22, 58) + SourceIndex(1) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(82, 17) Source(22, 58) + SourceIndex(1) +1->Emitted(83, 17) Source(22, 58) + SourceIndex(1) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -1325,16 +1327,16 @@ sourceFile:../lib/file1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(83, 17) Source(22, 82) + SourceIndex(1) -2 >Emitted(83, 18) Source(22, 83) + SourceIndex(1) +1->Emitted(84, 17) Source(22, 82) + SourceIndex(1) +2 >Emitted(84, 18) Source(22, 83) + SourceIndex(1) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(84, 17) Source(22, 82) + SourceIndex(1) -2 >Emitted(84, 33) Source(22, 83) + SourceIndex(1) +1->Emitted(85, 17) Source(22, 82) + SourceIndex(1) +2 >Emitted(85, 33) Source(22, 83) + SourceIndex(1) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -1346,10 +1348,10 @@ sourceFile:../lib/file1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(85, 13) Source(22, 82) + SourceIndex(1) -2 >Emitted(85, 14) Source(22, 83) + SourceIndex(1) -3 >Emitted(85, 14) Source(22, 58) + SourceIndex(1) -4 >Emitted(85, 18) Source(22, 83) + SourceIndex(1) +1 >Emitted(86, 13) Source(22, 82) + SourceIndex(1) +2 >Emitted(86, 14) Source(22, 83) + SourceIndex(1) +3 >Emitted(86, 14) Source(22, 58) + SourceIndex(1) +4 >Emitted(86, 18) Source(22, 83) + SourceIndex(1) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -1361,10 +1363,10 @@ sourceFile:../lib/file1.ts 2 > someClass 3 > {} 4 > -1->Emitted(86, 13) Source(22, 71) + SourceIndex(1) -2 >Emitted(86, 32) Source(22, 80) + SourceIndex(1) -3 >Emitted(86, 44) Source(22, 83) + SourceIndex(1) -4 >Emitted(86, 45) Source(22, 83) + SourceIndex(1) +1->Emitted(87, 13) Source(22, 71) + SourceIndex(1) +2 >Emitted(87, 32) Source(22, 80) + SourceIndex(1) +3 >Emitted(87, 44) Source(22, 83) + SourceIndex(1) +4 >Emitted(87, 45) Source(22, 83) + SourceIndex(1) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^^^^^ @@ -1385,15 +1387,15 @@ sourceFile:../lib/file1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(87, 9) Source(22, 84) + SourceIndex(1) -2 >Emitted(87, 10) Source(22, 85) + SourceIndex(1) -3 >Emitted(87, 12) Source(22, 46) + SourceIndex(1) -4 >Emitted(87, 21) Source(22, 55) + SourceIndex(1) -5 >Emitted(87, 24) Source(22, 46) + SourceIndex(1) -6 >Emitted(87, 47) Source(22, 55) + SourceIndex(1) -7 >Emitted(87, 52) Source(22, 46) + SourceIndex(1) -8 >Emitted(87, 75) Source(22, 55) + SourceIndex(1) -9 >Emitted(87, 83) Source(22, 85) + SourceIndex(1) +1->Emitted(88, 9) Source(22, 84) + SourceIndex(1) +2 >Emitted(88, 10) Source(22, 85) + SourceIndex(1) +3 >Emitted(88, 12) Source(22, 46) + SourceIndex(1) +4 >Emitted(88, 21) Source(22, 55) + SourceIndex(1) +5 >Emitted(88, 24) Source(22, 46) + SourceIndex(1) +6 >Emitted(88, 47) Source(22, 55) + SourceIndex(1) +7 >Emitted(88, 52) Source(22, 46) + SourceIndex(1) +8 >Emitted(88, 75) Source(22, 55) + SourceIndex(1) +9 >Emitted(88, 83) Source(22, 85) + SourceIndex(1) --- >>> })(internalOther = exports.internalOther || (exports.internalOther = {})); 1 >^^^^ @@ -1414,15 +1416,15 @@ sourceFile:../lib/file1.ts 7 > 8 > internalOther 9 > .something { export class someClass {} } -1 >Emitted(88, 5) Source(22, 84) + SourceIndex(1) -2 >Emitted(88, 6) Source(22, 85) + SourceIndex(1) -3 >Emitted(88, 8) Source(22, 32) + SourceIndex(1) -4 >Emitted(88, 21) Source(22, 45) + SourceIndex(1) -5 >Emitted(88, 24) Source(22, 32) + SourceIndex(1) -6 >Emitted(88, 45) Source(22, 45) + SourceIndex(1) -7 >Emitted(88, 50) Source(22, 32) + SourceIndex(1) -8 >Emitted(88, 71) Source(22, 45) + SourceIndex(1) -9 >Emitted(88, 79) Source(22, 85) + SourceIndex(1) +1 >Emitted(89, 5) Source(22, 84) + SourceIndex(1) +2 >Emitted(89, 6) Source(22, 85) + SourceIndex(1) +3 >Emitted(89, 8) Source(22, 32) + SourceIndex(1) +4 >Emitted(89, 21) Source(22, 45) + SourceIndex(1) +5 >Emitted(89, 24) Source(22, 32) + SourceIndex(1) +6 >Emitted(89, 45) Source(22, 45) + SourceIndex(1) +7 >Emitted(89, 50) Source(22, 32) + SourceIndex(1) +8 >Emitted(89, 71) Source(22, 45) + SourceIndex(1) +9 >Emitted(89, 79) Source(22, 85) + SourceIndex(1) --- >>> /*@internal*/ exports.internalImport = internalNamespace.someClass; 1 >^^^^ @@ -1446,16 +1448,16 @@ sourceFile:../lib/file1.ts 8 > . 9 > someClass 10> ; -1 >Emitted(89, 5) Source(23, 1) + SourceIndex(1) -2 >Emitted(89, 18) Source(23, 14) + SourceIndex(1) -3 >Emitted(89, 19) Source(23, 29) + SourceIndex(1) -4 >Emitted(89, 27) Source(23, 29) + SourceIndex(1) -5 >Emitted(89, 41) Source(23, 43) + SourceIndex(1) -6 >Emitted(89, 44) Source(23, 46) + SourceIndex(1) -7 >Emitted(89, 61) Source(23, 63) + SourceIndex(1) -8 >Emitted(89, 62) Source(23, 64) + SourceIndex(1) -9 >Emitted(89, 71) Source(23, 73) + SourceIndex(1) -10>Emitted(89, 72) Source(23, 74) + SourceIndex(1) +1 >Emitted(90, 5) Source(23, 1) + SourceIndex(1) +2 >Emitted(90, 18) Source(23, 14) + SourceIndex(1) +3 >Emitted(90, 19) Source(23, 29) + SourceIndex(1) +4 >Emitted(90, 27) Source(23, 29) + SourceIndex(1) +5 >Emitted(90, 41) Source(23, 43) + SourceIndex(1) +6 >Emitted(90, 44) Source(23, 46) + SourceIndex(1) +7 >Emitted(90, 61) Source(23, 63) + SourceIndex(1) +8 >Emitted(90, 62) Source(23, 64) + SourceIndex(1) +9 >Emitted(90, 71) Source(23, 73) + SourceIndex(1) +10>Emitted(90, 72) Source(23, 74) + SourceIndex(1) --- >>> /*@internal*/ exports.internalConst = 10; 1 >^^^^ @@ -1476,14 +1478,14 @@ sourceFile:../lib/file1.ts 6 > = 7 > 10 8 > ; -1 >Emitted(90, 5) Source(25, 1) + SourceIndex(1) -2 >Emitted(90, 18) Source(25, 14) + SourceIndex(1) -3 >Emitted(90, 19) Source(25, 28) + SourceIndex(1) -4 >Emitted(90, 27) Source(25, 28) + SourceIndex(1) -5 >Emitted(90, 40) Source(25, 41) + SourceIndex(1) -6 >Emitted(90, 43) Source(25, 44) + SourceIndex(1) -7 >Emitted(90, 45) Source(25, 46) + SourceIndex(1) -8 >Emitted(90, 46) Source(25, 47) + SourceIndex(1) +1 >Emitted(91, 5) Source(25, 1) + SourceIndex(1) +2 >Emitted(91, 18) Source(25, 14) + SourceIndex(1) +3 >Emitted(91, 19) Source(25, 28) + SourceIndex(1) +4 >Emitted(91, 27) Source(25, 28) + SourceIndex(1) +5 >Emitted(91, 40) Source(25, 41) + SourceIndex(1) +6 >Emitted(91, 43) Source(25, 44) + SourceIndex(1) +7 >Emitted(91, 45) Source(25, 46) + SourceIndex(1) +8 >Emitted(91, 46) Source(25, 47) + SourceIndex(1) --- >>> /*@internal*/ var internalEnum; 1 >^^^^ @@ -1497,11 +1499,11 @@ sourceFile:../lib/file1.ts 3 > 4 > export enum 5 > internalEnum { a, b, c } -1 >Emitted(91, 5) Source(26, 1) + SourceIndex(1) -2 >Emitted(91, 18) Source(26, 14) + SourceIndex(1) -3 >Emitted(91, 19) Source(26, 15) + SourceIndex(1) -4 >Emitted(91, 23) Source(26, 27) + SourceIndex(1) -5 >Emitted(91, 35) Source(26, 51) + SourceIndex(1) +1 >Emitted(92, 5) Source(26, 1) + SourceIndex(1) +2 >Emitted(92, 18) Source(26, 14) + SourceIndex(1) +3 >Emitted(92, 19) Source(26, 15) + SourceIndex(1) +4 >Emitted(92, 23) Source(26, 27) + SourceIndex(1) +5 >Emitted(92, 35) Source(26, 51) + SourceIndex(1) --- >>> (function (internalEnum) { 1 >^^^^ @@ -1511,9 +1513,9 @@ sourceFile:../lib/file1.ts 1 > 2 > export enum 3 > internalEnum -1 >Emitted(92, 5) Source(26, 15) + SourceIndex(1) -2 >Emitted(92, 16) Source(26, 27) + SourceIndex(1) -3 >Emitted(92, 28) Source(26, 39) + SourceIndex(1) +1 >Emitted(93, 5) Source(26, 15) + SourceIndex(1) +2 >Emitted(93, 16) Source(26, 27) + SourceIndex(1) +3 >Emitted(93, 28) Source(26, 39) + SourceIndex(1) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -1523,9 +1525,9 @@ sourceFile:../lib/file1.ts 1-> { 2 > a 3 > -1->Emitted(93, 9) Source(26, 42) + SourceIndex(1) -2 >Emitted(93, 50) Source(26, 43) + SourceIndex(1) -3 >Emitted(93, 51) Source(26, 43) + SourceIndex(1) +1->Emitted(94, 9) Source(26, 42) + SourceIndex(1) +2 >Emitted(94, 50) Source(26, 43) + SourceIndex(1) +3 >Emitted(94, 51) Source(26, 43) + SourceIndex(1) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -1535,9 +1537,9 @@ sourceFile:../lib/file1.ts 1->, 2 > b 3 > -1->Emitted(94, 9) Source(26, 45) + SourceIndex(1) -2 >Emitted(94, 50) Source(26, 46) + SourceIndex(1) -3 >Emitted(94, 51) Source(26, 46) + SourceIndex(1) +1->Emitted(95, 9) Source(26, 45) + SourceIndex(1) +2 >Emitted(95, 50) Source(26, 46) + SourceIndex(1) +3 >Emitted(95, 51) Source(26, 46) + SourceIndex(1) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -1547,9 +1549,9 @@ sourceFile:../lib/file1.ts 1->, 2 > c 3 > -1->Emitted(95, 9) Source(26, 48) + SourceIndex(1) -2 >Emitted(95, 50) Source(26, 49) + SourceIndex(1) -3 >Emitted(95, 51) Source(26, 49) + SourceIndex(1) +1->Emitted(96, 9) Source(26, 48) + SourceIndex(1) +2 >Emitted(96, 50) Source(26, 49) + SourceIndex(1) +3 >Emitted(96, 51) Source(26, 49) + SourceIndex(1) --- >>> })(internalEnum = exports.internalEnum || (exports.internalEnum = {})); 1->^^^^ @@ -1570,15 +1572,15 @@ sourceFile:../lib/file1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(96, 5) Source(26, 50) + SourceIndex(1) -2 >Emitted(96, 6) Source(26, 51) + SourceIndex(1) -3 >Emitted(96, 8) Source(26, 27) + SourceIndex(1) -4 >Emitted(96, 20) Source(26, 39) + SourceIndex(1) -5 >Emitted(96, 23) Source(26, 27) + SourceIndex(1) -6 >Emitted(96, 43) Source(26, 39) + SourceIndex(1) -7 >Emitted(96, 48) Source(26, 27) + SourceIndex(1) -8 >Emitted(96, 68) Source(26, 39) + SourceIndex(1) -9 >Emitted(96, 76) Source(26, 51) + SourceIndex(1) +1->Emitted(97, 5) Source(26, 50) + SourceIndex(1) +2 >Emitted(97, 6) Source(26, 51) + SourceIndex(1) +3 >Emitted(97, 8) Source(26, 27) + SourceIndex(1) +4 >Emitted(97, 20) Source(26, 39) + SourceIndex(1) +5 >Emitted(97, 23) Source(26, 27) + SourceIndex(1) +6 >Emitted(97, 43) Source(26, 39) + SourceIndex(1) +7 >Emitted(97, 48) Source(26, 27) + SourceIndex(1) +8 >Emitted(97, 68) Source(26, 39) + SourceIndex(1) +9 >Emitted(97, 76) Source(26, 51) + SourceIndex(1) --- >>> console.log(exports.x); 1 >^^^^ @@ -1597,14 +1599,14 @@ sourceFile:../lib/file1.ts 6 > x 7 > ) 8 > ; -1 >Emitted(97, 5) Source(26, 51) + SourceIndex(1) -2 >Emitted(97, 12) Source(26, 58) + SourceIndex(1) -3 >Emitted(97, 13) Source(26, 59) + SourceIndex(1) -4 >Emitted(97, 16) Source(26, 62) + SourceIndex(1) -5 >Emitted(97, 17) Source(26, 63) + SourceIndex(1) -6 >Emitted(97, 26) Source(26, 64) + SourceIndex(1) -7 >Emitted(97, 27) Source(26, 65) + SourceIndex(1) -8 >Emitted(97, 28) Source(26, 66) + SourceIndex(1) +1 >Emitted(98, 5) Source(26, 51) + SourceIndex(1) +2 >Emitted(98, 12) Source(26, 58) + SourceIndex(1) +3 >Emitted(98, 13) Source(26, 59) + SourceIndex(1) +4 >Emitted(98, 16) Source(26, 62) + SourceIndex(1) +5 >Emitted(98, 17) Source(26, 63) + SourceIndex(1) +6 >Emitted(98, 26) Source(26, 64) + SourceIndex(1) +7 >Emitted(98, 27) Source(26, 65) + SourceIndex(1) +8 >Emitted(98, 28) Source(26, 66) + SourceIndex(1) --- ------------------------------------------------------------------- emittedFile:/src/app/module.js @@ -1628,12 +1630,12 @@ sourceFile:../lib/file2.ts 4 > = 5 > 20 6 > ; -1 >Emitted(103, 5) Source(1, 14) + SourceIndex(2) -2 >Emitted(103, 13) Source(1, 14) + SourceIndex(2) -3 >Emitted(103, 14) Source(1, 15) + SourceIndex(2) -4 >Emitted(103, 17) Source(1, 18) + SourceIndex(2) -5 >Emitted(103, 19) Source(1, 20) + SourceIndex(2) -6 >Emitted(103, 20) Source(1, 21) + SourceIndex(2) +1 >Emitted(104, 5) Source(1, 14) + SourceIndex(2) +2 >Emitted(104, 13) Source(1, 14) + SourceIndex(2) +3 >Emitted(104, 14) Source(1, 15) + SourceIndex(2) +4 >Emitted(104, 17) Source(1, 18) + SourceIndex(2) +5 >Emitted(104, 19) Source(1, 20) + SourceIndex(2) +6 >Emitted(104, 20) Source(1, 21) + SourceIndex(2) --- ------------------------------------------------------------------- emittedFile:/src/app/module.js @@ -1654,12 +1656,12 @@ sourceFile:../lib/global.ts 4 > = 5 > 10 6 > ; -1 >Emitted(105, 1) Source(1, 1) + SourceIndex(3) -2 >Emitted(105, 5) Source(1, 7) + SourceIndex(3) -3 >Emitted(105, 16) Source(1, 18) + SourceIndex(3) -4 >Emitted(105, 19) Source(1, 21) + SourceIndex(3) -5 >Emitted(105, 21) Source(1, 23) + SourceIndex(3) -6 >Emitted(105, 22) Source(1, 24) + SourceIndex(3) +1 >Emitted(106, 1) Source(1, 1) + SourceIndex(3) +2 >Emitted(106, 5) Source(1, 7) + SourceIndex(3) +3 >Emitted(106, 16) Source(1, 18) + SourceIndex(3) +4 >Emitted(106, 19) Source(1, 21) + SourceIndex(3) +5 >Emitted(106, 21) Source(1, 23) + SourceIndex(3) +6 >Emitted(106, 22) Source(1, 24) + SourceIndex(3) --- ------------------------------------------------------------------- emittedFile:/src/app/module.js @@ -1682,12 +1684,12 @@ sourceFile:file3.ts 4 > = 5 > 30 6 > ; -1->Emitted(110, 5) Source(1, 14) + SourceIndex(4) -2 >Emitted(110, 13) Source(1, 14) + SourceIndex(4) -3 >Emitted(110, 14) Source(1, 15) + SourceIndex(4) -4 >Emitted(110, 17) Source(1, 18) + SourceIndex(4) -5 >Emitted(110, 19) Source(1, 20) + SourceIndex(4) -6 >Emitted(110, 20) Source(1, 21) + SourceIndex(4) +1->Emitted(111, 5) Source(1, 14) + SourceIndex(4) +2 >Emitted(111, 13) Source(1, 14) + SourceIndex(4) +3 >Emitted(111, 14) Source(1, 15) + SourceIndex(4) +4 >Emitted(111, 17) Source(1, 18) + SourceIndex(4) +5 >Emitted(111, 19) Source(1, 20) + SourceIndex(4) +6 >Emitted(111, 20) Source(1, 21) + SourceIndex(4) --- ------------------------------------------------------------------- emittedFile:/src/app/module.js @@ -1708,12 +1710,12 @@ sourceFile:file4.ts 4 > = 5 > 30 6 > ; -1 >Emitted(112, 1) Source(1, 1) + SourceIndex(5) -2 >Emitted(112, 5) Source(1, 7) + SourceIndex(5) -3 >Emitted(112, 10) Source(1, 12) + SourceIndex(5) -4 >Emitted(112, 13) Source(1, 15) + SourceIndex(5) -5 >Emitted(112, 15) Source(1, 17) + SourceIndex(5) -6 >Emitted(112, 16) Source(1, 18) + SourceIndex(5) +1 >Emitted(113, 1) Source(1, 1) + SourceIndex(5) +2 >Emitted(113, 5) Source(1, 7) + SourceIndex(5) +3 >Emitted(113, 10) Source(1, 12) + SourceIndex(5) +4 >Emitted(113, 13) Source(1, 15) + SourceIndex(5) +5 >Emitted(113, 15) Source(1, 17) + SourceIndex(5) +6 >Emitted(113, 16) Source(1, 18) + SourceIndex(5) --- >>>//# sourceMappingURL=module.js.map @@ -1729,20 +1731,20 @@ sourceFile:file4.ts "sections": [ { "pos": 0, - "end": 4411, + "end": 4463, "kind": "prepend", "data": "../lib/module.js", "texts": [ { "pos": 0, - "end": 4411, + "end": 4463, "kind": "text" } ] }, { - "pos": 4411, - "end": 4637, + "pos": 4463, + "end": 4689, "kind": "text" } ] @@ -1777,9 +1779,9 @@ sourceFile:file4.ts ====================================================================== File:: /src/app/module.js ---------------------------------------------------------------------- -prepend: (0-4411):: ../lib/module.js texts:: 1 +prepend: (0-4463):: ../lib/module.js texts:: 1 >>-------------------------------------------------------------------- -text: (0-4411) +text: (0-4463) /*@internal*/ var myGlob = 20; define("file1", ["require", "exports"], function (require, exports) { "use strict"; @@ -1789,8 +1791,9 @@ define("file1", ["require", "exports"], function (require, exports) { var normalC = /** @class */ (function () { /*@internal*/ function normalC() { } - /*@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /*@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /*@internal*/ get: function () { return 10; }, /*@internal*/ set: function (val) { }, enumerable: false, @@ -1887,7 +1890,7 @@ define("file2", ["require", "exports"], function (require, exports) { var globalConst = 10; ---------------------------------------------------------------------- -text: (4411-4637) +text: (4463-4689) define("file3", ["require", "exports"], function (require, exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); @@ -1937,8 +1940,9 @@ define("file1", ["require", "exports"], function (require, exports) { var normalC = /** @class */ (function () { /*@internal*/ function normalC() { } - /*@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /*@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /*@internal*/ get: function () { return 10; }, /*@internal*/ set: function (val) { }, enumerable: false, @@ -2036,7 +2040,7 @@ var globalConst = 10; //# sourceMappingURL=module.js.map //// [/src/lib/module.js.map] -{"version":3,"file":"module.js","sourceRoot":"","sources":["file0.ts","file1.ts","file2.ts","global.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"module.js","sourceRoot":"","sources":["file0.ts","file1.ts","file2.ts","global.ts"],"names":[],"mappings":"AAAA,aAAa,CAAC,IAAM,MAAM,GAAG,EAAE,CAAC;;;;;ICAnB,QAAA,CAAC,GAAG,EAAE,CAAC;IACpB;QACI,aAAa,CAAC;QAAgB,CAAC;;QAE/B,aAAa,CAAC,wBAAM,GAAN,cAAW,CAAC;QACZ,sBAAI,sBAAC;YAAnB,aAAa,MAAC,cAAU,OAAO,EAAE,CAAC,CAAC,CAAC;YACpC,aAAa,MAAC,UAAM,GAAW,IAAI,CAAC;;;WADA;QAExC,cAAC;IAAD,CAAC,AAND,IAMC;IANY,0BAAO;IAOpB,IAAiB,OAAO,CASvB;IATD,WAAiB,OAAO;QACpB,aAAa,CAAC;YAAA;YAAiB,CAAC;YAAD,QAAC;QAAD,CAAC,AAAlB,IAAkB;QAAL,SAAC,IAAI,CAAA;QAChC,aAAa,CAAC,SAAgB,GAAG,KAAI,CAAC;QAAR,WAAG,MAAK,CAAA;QACtC,aAAa,CAAC,IAAiB,aAAa,CAAsB;QAApD,WAAiB,aAAa;YAAG;gBAAA;gBAAgB,CAAC;gBAAD,QAAC;YAAD,CAAC,AAAjB,IAAiB;YAAJ,eAAC,IAAG,CAAA;QAAC,CAAC,EAAnC,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAAsB;QAClE,aAAa,CAAC,IAAiB,SAAS,CAAwC;QAAlE,WAAiB,SAAS;YAAC,IAAA,SAAS,CAA8B;YAAvC,WAAA,SAAS;gBAAG;oBAAA;oBAAwB,CAAC;oBAAD,gBAAC;gBAAD,CAAC,AAAzB,IAAyB;gBAAZ,mBAAS,YAAG,CAAA;YAAC,CAAC,EAAvC,SAAS,GAAT,mBAAS,KAAT,mBAAS,QAA8B;QAAD,CAAC,EAAjD,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAAwC;QAChF,aAAa,CAAe,kBAAU,GAAG,aAAa,CAAC,CAAC,CAAC;QAEzD,aAAa,CAAc,qBAAa,GAAG,EAAE,CAAC;QAC9C,aAAa,CAAC,IAAY,YAAwB;QAApC,WAAY,YAAY;YAAG,yCAAC,CAAA;YAAE,yCAAC,CAAA;YAAE,yCAAC,CAAA;QAAC,CAAC,EAAxB,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAAY;IACtD,CAAC,EATgB,OAAO,GAAP,eAAO,KAAP,eAAO,QASvB;IACD,aAAa,CAAC;QAAA;QAAwB,CAAC;QAAD,gBAAC;IAAD,CAAC,AAAzB,IAAyB;IAAZ,8BAAS;IACpC,aAAa,CAAC,SAAgB,WAAW,KAAI,CAAC;IAAhC,kCAAgC;IAC9C,aAAa,CAAC,IAAiB,iBAAiB,CAA8B;IAAhE,WAAiB,iBAAiB;QAAG;YAAA;YAAwB,CAAC;YAAD,gBAAC;QAAD,CAAC,AAAzB,IAAyB;QAAZ,2BAAS,YAAG,CAAA;IAAC,CAAC,EAA/C,iBAAiB,GAAjB,yBAAiB,KAAjB,yBAAiB,QAA8B;IAC9E,aAAa,CAAC,IAAiB,aAAa,CAAwC;IAAtE,WAAiB,aAAa;QAAC,IAAA,SAAS,CAA8B;QAAvC,WAAA,SAAS;YAAG;gBAAA;gBAAwB,CAAC;gBAAD,gBAAC;YAAD,CAAC,AAAzB,IAAyB;YAAZ,mBAAS,YAAG,CAAA;QAAC,CAAC,EAAvC,SAAS,GAAT,uBAAS,KAAT,uBAAS,QAA8B;IAAD,CAAC,EAArD,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAAwC;IACpF,aAAa,CAAe,QAAA,cAAc,GAAG,iBAAiB,CAAC,SAAS,CAAC;IAEzE,aAAa,CAAc,QAAA,aAAa,GAAG,EAAE,CAAC;IAC9C,aAAa,CAAC,IAAY,YAAwB;IAApC,WAAY,YAAY;QAAG,yCAAC,CAAA;QAAE,yCAAC,CAAA;QAAE,yCAAC,CAAA;IAAC,CAAC,EAAxB,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAAY;IAAA,OAAO,CAAC,GAAG,CAAC,SAAC,CAAC,CAAC;;;;;;ICzBpD,QAAA,CAAC,GAAG,EAAE,CAAC;;ACApB,IAAM,WAAW,GAAG,EAAE,CAAC"} //// [/src/lib/module.js.map.baseline.txt] =================================================================== @@ -2127,13 +2131,14 @@ sourceFile:file1.ts >>> } 1 >^^^^^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 >constructor() { 2 > } 1 >Emitted(9, 9) Source(3, 35) + SourceIndex(1) 2 >Emitted(9, 10) Source(3, 36) + SourceIndex(1) --- ->>> /*@internal*/ normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> /*@internal*/ normalC_prototype.method = function () { }; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^ 3 > ^ @@ -2150,15 +2155,15 @@ sourceFile:file1.ts 5 > 6 > method() { 7 > } -1->Emitted(10, 9) Source(5, 5) + SourceIndex(1) -2 >Emitted(10, 22) Source(5, 18) + SourceIndex(1) -3 >Emitted(10, 23) Source(5, 19) + SourceIndex(1) -4 >Emitted(10, 47) Source(5, 25) + SourceIndex(1) -5 >Emitted(10, 50) Source(5, 19) + SourceIndex(1) -6 >Emitted(10, 64) Source(5, 30) + SourceIndex(1) -7 >Emitted(10, 65) Source(5, 31) + SourceIndex(1) ---- ->>> Object.defineProperty(normalC.prototype, "c", { +1->Emitted(11, 9) Source(5, 5) + SourceIndex(1) +2 >Emitted(11, 22) Source(5, 18) + SourceIndex(1) +3 >Emitted(11, 23) Source(5, 19) + SourceIndex(1) +4 >Emitted(11, 47) Source(5, 25) + SourceIndex(1) +5 >Emitted(11, 50) Source(5, 19) + SourceIndex(1) +6 >Emitted(11, 64) Source(5, 30) + SourceIndex(1) +7 >Emitted(11, 65) Source(5, 31) + SourceIndex(1) +--- +>>> Object.defineProperty(normalC_prototype, "c", { 1 >^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -2167,9 +2172,9 @@ sourceFile:file1.ts > /*@internal*/ 2 > get 3 > c -1 >Emitted(11, 9) Source(6, 19) + SourceIndex(1) -2 >Emitted(11, 31) Source(6, 23) + SourceIndex(1) -3 >Emitted(11, 53) Source(6, 24) + SourceIndex(1) +1 >Emitted(12, 9) Source(6, 19) + SourceIndex(1) +2 >Emitted(12, 31) Source(6, 23) + SourceIndex(1) +3 >Emitted(12, 53) Source(6, 24) + SourceIndex(1) --- >>> /*@internal*/ get: function () { return 10; }, 1->^^^^^^^^^^^^ @@ -2190,15 +2195,15 @@ sourceFile:file1.ts 7 > ; 8 > 9 > } -1->Emitted(12, 13) Source(6, 5) + SourceIndex(1) -2 >Emitted(12, 26) Source(6, 18) + SourceIndex(1) -3 >Emitted(12, 32) Source(6, 19) + SourceIndex(1) -4 >Emitted(12, 46) Source(6, 29) + SourceIndex(1) -5 >Emitted(12, 53) Source(6, 36) + SourceIndex(1) -6 >Emitted(12, 55) Source(6, 38) + SourceIndex(1) -7 >Emitted(12, 56) Source(6, 39) + SourceIndex(1) -8 >Emitted(12, 57) Source(6, 40) + SourceIndex(1) -9 >Emitted(12, 58) Source(6, 41) + SourceIndex(1) +1->Emitted(13, 13) Source(6, 5) + SourceIndex(1) +2 >Emitted(13, 26) Source(6, 18) + SourceIndex(1) +3 >Emitted(13, 32) Source(6, 19) + SourceIndex(1) +4 >Emitted(13, 46) Source(6, 29) + SourceIndex(1) +5 >Emitted(13, 53) Source(6, 36) + SourceIndex(1) +6 >Emitted(13, 55) Source(6, 38) + SourceIndex(1) +7 >Emitted(13, 56) Source(6, 39) + SourceIndex(1) +8 >Emitted(13, 57) Source(6, 40) + SourceIndex(1) +9 >Emitted(13, 58) Source(6, 41) + SourceIndex(1) --- >>> /*@internal*/ set: function (val) { }, 1 >^^^^^^^^^^^^ @@ -2216,13 +2221,13 @@ sourceFile:file1.ts 5 > val: number 6 > ) { 7 > } -1 >Emitted(13, 13) Source(7, 5) + SourceIndex(1) -2 >Emitted(13, 26) Source(7, 18) + SourceIndex(1) -3 >Emitted(13, 32) Source(7, 19) + SourceIndex(1) -4 >Emitted(13, 42) Source(7, 25) + SourceIndex(1) -5 >Emitted(13, 45) Source(7, 36) + SourceIndex(1) -6 >Emitted(13, 49) Source(7, 40) + SourceIndex(1) -7 >Emitted(13, 50) Source(7, 41) + SourceIndex(1) +1 >Emitted(14, 13) Source(7, 5) + SourceIndex(1) +2 >Emitted(14, 26) Source(7, 18) + SourceIndex(1) +3 >Emitted(14, 32) Source(7, 19) + SourceIndex(1) +4 >Emitted(14, 42) Source(7, 25) + SourceIndex(1) +5 >Emitted(14, 45) Source(7, 36) + SourceIndex(1) +6 >Emitted(14, 49) Source(7, 40) + SourceIndex(1) +7 >Emitted(14, 50) Source(7, 41) + SourceIndex(1) --- >>> enumerable: false, >>> configurable: true @@ -2230,7 +2235,7 @@ sourceFile:file1.ts 1 >^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(16, 12) Source(6, 41) + SourceIndex(1) +1 >Emitted(17, 12) Source(6, 41) + SourceIndex(1) --- >>> return normalC; 1->^^^^^^^^ @@ -2239,8 +2244,8 @@ sourceFile:file1.ts > /*@internal*/ set c(val: number) { } > 2 > } -1->Emitted(17, 9) Source(8, 1) + SourceIndex(1) -2 >Emitted(17, 23) Source(8, 2) + SourceIndex(1) +1->Emitted(18, 9) Source(8, 1) + SourceIndex(1) +2 >Emitted(18, 23) Source(8, 2) + SourceIndex(1) --- >>> }()); 1 >^^^^ @@ -2258,18 +2263,18 @@ sourceFile:file1.ts > /*@internal*/ get c() { return 10; } > /*@internal*/ set c(val: number) { } > } -1 >Emitted(18, 5) Source(8, 1) + SourceIndex(1) -2 >Emitted(18, 6) Source(8, 2) + SourceIndex(1) -3 >Emitted(18, 6) Source(2, 1) + SourceIndex(1) -4 >Emitted(18, 10) Source(8, 2) + SourceIndex(1) +1 >Emitted(19, 5) Source(8, 1) + SourceIndex(1) +2 >Emitted(19, 6) Source(8, 2) + SourceIndex(1) +3 >Emitted(19, 6) Source(2, 1) + SourceIndex(1) +4 >Emitted(19, 10) Source(8, 2) + SourceIndex(1) --- >>> exports.normalC = normalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> 2 > normalC -1->Emitted(19, 5) Source(2, 14) + SourceIndex(1) -2 >Emitted(19, 31) Source(2, 21) + SourceIndex(1) +1->Emitted(20, 5) Source(2, 14) + SourceIndex(1) +2 >Emitted(20, 31) Source(2, 21) + SourceIndex(1) --- >>> var normalN; 1 >^^^^ @@ -2297,10 +2302,10 @@ sourceFile:file1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(20, 5) Source(9, 1) + SourceIndex(1) -2 >Emitted(20, 9) Source(9, 18) + SourceIndex(1) -3 >Emitted(20, 16) Source(9, 25) + SourceIndex(1) -4 >Emitted(20, 17) Source(18, 2) + SourceIndex(1) +1 >Emitted(21, 5) Source(9, 1) + SourceIndex(1) +2 >Emitted(21, 9) Source(9, 18) + SourceIndex(1) +3 >Emitted(21, 16) Source(9, 25) + SourceIndex(1) +4 >Emitted(21, 17) Source(18, 2) + SourceIndex(1) --- >>> (function (normalN) { 1->^^^^ @@ -2310,9 +2315,9 @@ sourceFile:file1.ts 1-> 2 > export namespace 3 > normalN -1->Emitted(21, 5) Source(9, 1) + SourceIndex(1) -2 >Emitted(21, 16) Source(9, 18) + SourceIndex(1) -3 >Emitted(21, 23) Source(9, 25) + SourceIndex(1) +1->Emitted(22, 5) Source(9, 1) + SourceIndex(1) +2 >Emitted(22, 16) Source(9, 18) + SourceIndex(1) +3 >Emitted(22, 23) Source(9, 25) + SourceIndex(1) --- >>> /*@internal*/ var C = /** @class */ (function () { 1->^^^^^^^^ @@ -2323,15 +2328,15 @@ sourceFile:file1.ts > 2 > /*@internal*/ 3 > -1->Emitted(22, 9) Source(10, 5) + SourceIndex(1) -2 >Emitted(22, 22) Source(10, 18) + SourceIndex(1) -3 >Emitted(22, 23) Source(10, 19) + SourceIndex(1) +1->Emitted(23, 9) Source(10, 5) + SourceIndex(1) +2 >Emitted(23, 22) Source(10, 18) + SourceIndex(1) +3 >Emitted(23, 23) Source(10, 19) + SourceIndex(1) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(23, 13) Source(10, 19) + SourceIndex(1) +1->Emitted(24, 13) Source(10, 19) + SourceIndex(1) --- >>> } 1->^^^^^^^^^^^^ @@ -2339,16 +2344,16 @@ sourceFile:file1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(24, 13) Source(10, 36) + SourceIndex(1) -2 >Emitted(24, 14) Source(10, 37) + SourceIndex(1) +1->Emitted(25, 13) Source(10, 36) + SourceIndex(1) +2 >Emitted(25, 14) Source(10, 37) + SourceIndex(1) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(25, 13) Source(10, 36) + SourceIndex(1) -2 >Emitted(25, 21) Source(10, 37) + SourceIndex(1) +1->Emitted(26, 13) Source(10, 36) + SourceIndex(1) +2 >Emitted(26, 21) Source(10, 37) + SourceIndex(1) --- >>> }()); 1 >^^^^^^^^ @@ -2360,10 +2365,10 @@ sourceFile:file1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(26, 9) Source(10, 36) + SourceIndex(1) -2 >Emitted(26, 10) Source(10, 37) + SourceIndex(1) -3 >Emitted(26, 10) Source(10, 19) + SourceIndex(1) -4 >Emitted(26, 14) Source(10, 37) + SourceIndex(1) +1 >Emitted(27, 9) Source(10, 36) + SourceIndex(1) +2 >Emitted(27, 10) Source(10, 37) + SourceIndex(1) +3 >Emitted(27, 10) Source(10, 19) + SourceIndex(1) +4 >Emitted(27, 14) Source(10, 37) + SourceIndex(1) --- >>> normalN.C = C; 1->^^^^^^^^ @@ -2375,10 +2380,10 @@ sourceFile:file1.ts 2 > C 3 > { } 4 > -1->Emitted(27, 9) Source(10, 32) + SourceIndex(1) -2 >Emitted(27, 18) Source(10, 33) + SourceIndex(1) -3 >Emitted(27, 22) Source(10, 37) + SourceIndex(1) -4 >Emitted(27, 23) Source(10, 37) + SourceIndex(1) +1->Emitted(28, 9) Source(10, 32) + SourceIndex(1) +2 >Emitted(28, 18) Source(10, 33) + SourceIndex(1) +3 >Emitted(28, 22) Source(10, 37) + SourceIndex(1) +4 >Emitted(28, 23) Source(10, 37) + SourceIndex(1) --- >>> /*@internal*/ function foo() { } 1->^^^^^^^^ @@ -2396,13 +2401,13 @@ sourceFile:file1.ts 5 > foo 6 > () { 7 > } -1->Emitted(28, 9) Source(11, 5) + SourceIndex(1) -2 >Emitted(28, 22) Source(11, 18) + SourceIndex(1) -3 >Emitted(28, 23) Source(11, 19) + SourceIndex(1) -4 >Emitted(28, 32) Source(11, 35) + SourceIndex(1) -5 >Emitted(28, 35) Source(11, 38) + SourceIndex(1) -6 >Emitted(28, 40) Source(11, 42) + SourceIndex(1) -7 >Emitted(28, 41) Source(11, 43) + SourceIndex(1) +1->Emitted(29, 9) Source(11, 5) + SourceIndex(1) +2 >Emitted(29, 22) Source(11, 18) + SourceIndex(1) +3 >Emitted(29, 23) Source(11, 19) + SourceIndex(1) +4 >Emitted(29, 32) Source(11, 35) + SourceIndex(1) +5 >Emitted(29, 35) Source(11, 38) + SourceIndex(1) +6 >Emitted(29, 40) Source(11, 42) + SourceIndex(1) +7 >Emitted(29, 41) Source(11, 43) + SourceIndex(1) --- >>> normalN.foo = foo; 1 >^^^^^^^^ @@ -2414,10 +2419,10 @@ sourceFile:file1.ts 2 > foo 3 > () {} 4 > -1 >Emitted(29, 9) Source(11, 35) + SourceIndex(1) -2 >Emitted(29, 20) Source(11, 38) + SourceIndex(1) -3 >Emitted(29, 26) Source(11, 43) + SourceIndex(1) -4 >Emitted(29, 27) Source(11, 43) + SourceIndex(1) +1 >Emitted(30, 9) Source(11, 35) + SourceIndex(1) +2 >Emitted(30, 20) Source(11, 38) + SourceIndex(1) +3 >Emitted(30, 26) Source(11, 43) + SourceIndex(1) +4 >Emitted(30, 27) Source(11, 43) + SourceIndex(1) --- >>> /*@internal*/ var someNamespace; 1->^^^^^^^^ @@ -2433,12 +2438,12 @@ sourceFile:file1.ts 4 > export namespace 5 > someNamespace 6 > { export class C {} } -1->Emitted(30, 9) Source(12, 5) + SourceIndex(1) -2 >Emitted(30, 22) Source(12, 18) + SourceIndex(1) -3 >Emitted(30, 23) Source(12, 19) + SourceIndex(1) -4 >Emitted(30, 27) Source(12, 36) + SourceIndex(1) -5 >Emitted(30, 40) Source(12, 49) + SourceIndex(1) -6 >Emitted(30, 41) Source(12, 71) + SourceIndex(1) +1->Emitted(31, 9) Source(12, 5) + SourceIndex(1) +2 >Emitted(31, 22) Source(12, 18) + SourceIndex(1) +3 >Emitted(31, 23) Source(12, 19) + SourceIndex(1) +4 >Emitted(31, 27) Source(12, 36) + SourceIndex(1) +5 >Emitted(31, 40) Source(12, 49) + SourceIndex(1) +6 >Emitted(31, 41) Source(12, 71) + SourceIndex(1) --- >>> (function (someNamespace) { 1 >^^^^^^^^ @@ -2448,21 +2453,21 @@ sourceFile:file1.ts 1 > 2 > export namespace 3 > someNamespace -1 >Emitted(31, 9) Source(12, 19) + SourceIndex(1) -2 >Emitted(31, 20) Source(12, 36) + SourceIndex(1) -3 >Emitted(31, 33) Source(12, 49) + SourceIndex(1) +1 >Emitted(32, 9) Source(12, 19) + SourceIndex(1) +2 >Emitted(32, 20) Source(12, 36) + SourceIndex(1) +3 >Emitted(32, 33) Source(12, 49) + SourceIndex(1) --- >>> var C = /** @class */ (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(32, 13) Source(12, 52) + SourceIndex(1) +1->Emitted(33, 13) Source(12, 52) + SourceIndex(1) --- >>> function C() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(33, 17) Source(12, 52) + SourceIndex(1) +1->Emitted(34, 17) Source(12, 52) + SourceIndex(1) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -2470,16 +2475,16 @@ sourceFile:file1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(34, 17) Source(12, 68) + SourceIndex(1) -2 >Emitted(34, 18) Source(12, 69) + SourceIndex(1) +1->Emitted(35, 17) Source(12, 68) + SourceIndex(1) +2 >Emitted(35, 18) Source(12, 69) + SourceIndex(1) --- >>> return C; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(35, 17) Source(12, 68) + SourceIndex(1) -2 >Emitted(35, 25) Source(12, 69) + SourceIndex(1) +1->Emitted(36, 17) Source(12, 68) + SourceIndex(1) +2 >Emitted(36, 25) Source(12, 69) + SourceIndex(1) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -2491,10 +2496,10 @@ sourceFile:file1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(36, 13) Source(12, 68) + SourceIndex(1) -2 >Emitted(36, 14) Source(12, 69) + SourceIndex(1) -3 >Emitted(36, 14) Source(12, 52) + SourceIndex(1) -4 >Emitted(36, 18) Source(12, 69) + SourceIndex(1) +1 >Emitted(37, 13) Source(12, 68) + SourceIndex(1) +2 >Emitted(37, 14) Source(12, 69) + SourceIndex(1) +3 >Emitted(37, 14) Source(12, 52) + SourceIndex(1) +4 >Emitted(37, 18) Source(12, 69) + SourceIndex(1) --- >>> someNamespace.C = C; 1->^^^^^^^^^^^^ @@ -2506,10 +2511,10 @@ sourceFile:file1.ts 2 > C 3 > {} 4 > -1->Emitted(37, 13) Source(12, 65) + SourceIndex(1) -2 >Emitted(37, 28) Source(12, 66) + SourceIndex(1) -3 >Emitted(37, 32) Source(12, 69) + SourceIndex(1) -4 >Emitted(37, 33) Source(12, 69) + SourceIndex(1) +1->Emitted(38, 13) Source(12, 65) + SourceIndex(1) +2 >Emitted(38, 28) Source(12, 66) + SourceIndex(1) +3 >Emitted(38, 32) Source(12, 69) + SourceIndex(1) +4 >Emitted(38, 33) Source(12, 69) + SourceIndex(1) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^^^^^ @@ -2530,15 +2535,15 @@ sourceFile:file1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(38, 9) Source(12, 70) + SourceIndex(1) -2 >Emitted(38, 10) Source(12, 71) + SourceIndex(1) -3 >Emitted(38, 12) Source(12, 36) + SourceIndex(1) -4 >Emitted(38, 25) Source(12, 49) + SourceIndex(1) -5 >Emitted(38, 28) Source(12, 36) + SourceIndex(1) -6 >Emitted(38, 49) Source(12, 49) + SourceIndex(1) -7 >Emitted(38, 54) Source(12, 36) + SourceIndex(1) -8 >Emitted(38, 75) Source(12, 49) + SourceIndex(1) -9 >Emitted(38, 83) Source(12, 71) + SourceIndex(1) +1->Emitted(39, 9) Source(12, 70) + SourceIndex(1) +2 >Emitted(39, 10) Source(12, 71) + SourceIndex(1) +3 >Emitted(39, 12) Source(12, 36) + SourceIndex(1) +4 >Emitted(39, 25) Source(12, 49) + SourceIndex(1) +5 >Emitted(39, 28) Source(12, 36) + SourceIndex(1) +6 >Emitted(39, 49) Source(12, 49) + SourceIndex(1) +7 >Emitted(39, 54) Source(12, 36) + SourceIndex(1) +8 >Emitted(39, 75) Source(12, 49) + SourceIndex(1) +9 >Emitted(39, 83) Source(12, 71) + SourceIndex(1) --- >>> /*@internal*/ var someOther; 1 >^^^^^^^^ @@ -2554,12 +2559,12 @@ sourceFile:file1.ts 4 > export namespace 5 > someOther 6 > .something { export class someClass {} } -1 >Emitted(39, 9) Source(13, 5) + SourceIndex(1) -2 >Emitted(39, 22) Source(13, 18) + SourceIndex(1) -3 >Emitted(39, 23) Source(13, 19) + SourceIndex(1) -4 >Emitted(39, 27) Source(13, 36) + SourceIndex(1) -5 >Emitted(39, 36) Source(13, 45) + SourceIndex(1) -6 >Emitted(39, 37) Source(13, 85) + SourceIndex(1) +1 >Emitted(40, 9) Source(13, 5) + SourceIndex(1) +2 >Emitted(40, 22) Source(13, 18) + SourceIndex(1) +3 >Emitted(40, 23) Source(13, 19) + SourceIndex(1) +4 >Emitted(40, 27) Source(13, 36) + SourceIndex(1) +5 >Emitted(40, 36) Source(13, 45) + SourceIndex(1) +6 >Emitted(40, 37) Source(13, 85) + SourceIndex(1) --- >>> (function (someOther) { 1 >^^^^^^^^ @@ -2568,9 +2573,9 @@ sourceFile:file1.ts 1 > 2 > export namespace 3 > someOther -1 >Emitted(40, 9) Source(13, 19) + SourceIndex(1) -2 >Emitted(40, 20) Source(13, 36) + SourceIndex(1) -3 >Emitted(40, 29) Source(13, 45) + SourceIndex(1) +1 >Emitted(41, 9) Source(13, 19) + SourceIndex(1) +2 >Emitted(41, 20) Source(13, 36) + SourceIndex(1) +3 >Emitted(41, 29) Source(13, 45) + SourceIndex(1) --- >>> var something; 1 >^^^^^^^^^^^^ @@ -2582,10 +2587,10 @@ sourceFile:file1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(41, 13) Source(13, 46) + SourceIndex(1) -2 >Emitted(41, 17) Source(13, 46) + SourceIndex(1) -3 >Emitted(41, 26) Source(13, 55) + SourceIndex(1) -4 >Emitted(41, 27) Source(13, 85) + SourceIndex(1) +1 >Emitted(42, 13) Source(13, 46) + SourceIndex(1) +2 >Emitted(42, 17) Source(13, 46) + SourceIndex(1) +3 >Emitted(42, 26) Source(13, 55) + SourceIndex(1) +4 >Emitted(42, 27) Source(13, 85) + SourceIndex(1) --- >>> (function (something) { 1->^^^^^^^^^^^^ @@ -2595,21 +2600,21 @@ sourceFile:file1.ts 1-> 2 > 3 > something -1->Emitted(42, 13) Source(13, 46) + SourceIndex(1) -2 >Emitted(42, 24) Source(13, 46) + SourceIndex(1) -3 >Emitted(42, 33) Source(13, 55) + SourceIndex(1) +1->Emitted(43, 13) Source(13, 46) + SourceIndex(1) +2 >Emitted(43, 24) Source(13, 46) + SourceIndex(1) +3 >Emitted(43, 33) Source(13, 55) + SourceIndex(1) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(43, 17) Source(13, 58) + SourceIndex(1) +1->Emitted(44, 17) Source(13, 58) + SourceIndex(1) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(44, 21) Source(13, 58) + SourceIndex(1) +1->Emitted(45, 21) Source(13, 58) + SourceIndex(1) --- >>> } 1->^^^^^^^^^^^^^^^^^^^^ @@ -2617,16 +2622,16 @@ sourceFile:file1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(45, 21) Source(13, 82) + SourceIndex(1) -2 >Emitted(45, 22) Source(13, 83) + SourceIndex(1) +1->Emitted(46, 21) Source(13, 82) + SourceIndex(1) +2 >Emitted(46, 22) Source(13, 83) + SourceIndex(1) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(46, 21) Source(13, 82) + SourceIndex(1) -2 >Emitted(46, 37) Source(13, 83) + SourceIndex(1) +1->Emitted(47, 21) Source(13, 82) + SourceIndex(1) +2 >Emitted(47, 37) Source(13, 83) + SourceIndex(1) --- >>> }()); 1 >^^^^^^^^^^^^^^^^ @@ -2638,10 +2643,10 @@ sourceFile:file1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(47, 17) Source(13, 82) + SourceIndex(1) -2 >Emitted(47, 18) Source(13, 83) + SourceIndex(1) -3 >Emitted(47, 18) Source(13, 58) + SourceIndex(1) -4 >Emitted(47, 22) Source(13, 83) + SourceIndex(1) +1 >Emitted(48, 17) Source(13, 82) + SourceIndex(1) +2 >Emitted(48, 18) Source(13, 83) + SourceIndex(1) +3 >Emitted(48, 18) Source(13, 58) + SourceIndex(1) +4 >Emitted(48, 22) Source(13, 83) + SourceIndex(1) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^^^^^ @@ -2653,10 +2658,10 @@ sourceFile:file1.ts 2 > someClass 3 > {} 4 > -1->Emitted(48, 17) Source(13, 71) + SourceIndex(1) -2 >Emitted(48, 36) Source(13, 80) + SourceIndex(1) -3 >Emitted(48, 48) Source(13, 83) + SourceIndex(1) -4 >Emitted(48, 49) Source(13, 83) + SourceIndex(1) +1->Emitted(49, 17) Source(13, 71) + SourceIndex(1) +2 >Emitted(49, 36) Source(13, 80) + SourceIndex(1) +3 >Emitted(49, 48) Source(13, 83) + SourceIndex(1) +4 >Emitted(49, 49) Source(13, 83) + SourceIndex(1) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^^^^^ @@ -2677,15 +2682,15 @@ sourceFile:file1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(49, 13) Source(13, 84) + SourceIndex(1) -2 >Emitted(49, 14) Source(13, 85) + SourceIndex(1) -3 >Emitted(49, 16) Source(13, 46) + SourceIndex(1) -4 >Emitted(49, 25) Source(13, 55) + SourceIndex(1) -5 >Emitted(49, 28) Source(13, 46) + SourceIndex(1) -6 >Emitted(49, 47) Source(13, 55) + SourceIndex(1) -7 >Emitted(49, 52) Source(13, 46) + SourceIndex(1) -8 >Emitted(49, 71) Source(13, 55) + SourceIndex(1) -9 >Emitted(49, 79) Source(13, 85) + SourceIndex(1) +1->Emitted(50, 13) Source(13, 84) + SourceIndex(1) +2 >Emitted(50, 14) Source(13, 85) + SourceIndex(1) +3 >Emitted(50, 16) Source(13, 46) + SourceIndex(1) +4 >Emitted(50, 25) Source(13, 55) + SourceIndex(1) +5 >Emitted(50, 28) Source(13, 46) + SourceIndex(1) +6 >Emitted(50, 47) Source(13, 55) + SourceIndex(1) +7 >Emitted(50, 52) Source(13, 46) + SourceIndex(1) +8 >Emitted(50, 71) Source(13, 55) + SourceIndex(1) +9 >Emitted(50, 79) Source(13, 85) + SourceIndex(1) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^^^^^ @@ -2706,15 +2711,15 @@ sourceFile:file1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(50, 9) Source(13, 84) + SourceIndex(1) -2 >Emitted(50, 10) Source(13, 85) + SourceIndex(1) -3 >Emitted(50, 12) Source(13, 36) + SourceIndex(1) -4 >Emitted(50, 21) Source(13, 45) + SourceIndex(1) -5 >Emitted(50, 24) Source(13, 36) + SourceIndex(1) -6 >Emitted(50, 41) Source(13, 45) + SourceIndex(1) -7 >Emitted(50, 46) Source(13, 36) + SourceIndex(1) -8 >Emitted(50, 63) Source(13, 45) + SourceIndex(1) -9 >Emitted(50, 71) Source(13, 85) + SourceIndex(1) +1 >Emitted(51, 9) Source(13, 84) + SourceIndex(1) +2 >Emitted(51, 10) Source(13, 85) + SourceIndex(1) +3 >Emitted(51, 12) Source(13, 36) + SourceIndex(1) +4 >Emitted(51, 21) Source(13, 45) + SourceIndex(1) +5 >Emitted(51, 24) Source(13, 36) + SourceIndex(1) +6 >Emitted(51, 41) Source(13, 45) + SourceIndex(1) +7 >Emitted(51, 46) Source(13, 36) + SourceIndex(1) +8 >Emitted(51, 63) Source(13, 45) + SourceIndex(1) +9 >Emitted(51, 71) Source(13, 85) + SourceIndex(1) --- >>> /*@internal*/ normalN.someImport = someNamespace.C; 1 >^^^^^^^^ @@ -2736,15 +2741,15 @@ sourceFile:file1.ts 7 > . 8 > C 9 > ; -1 >Emitted(51, 9) Source(14, 5) + SourceIndex(1) -2 >Emitted(51, 22) Source(14, 18) + SourceIndex(1) -3 >Emitted(51, 23) Source(14, 33) + SourceIndex(1) -4 >Emitted(51, 41) Source(14, 43) + SourceIndex(1) -5 >Emitted(51, 44) Source(14, 46) + SourceIndex(1) -6 >Emitted(51, 57) Source(14, 59) + SourceIndex(1) -7 >Emitted(51, 58) Source(14, 60) + SourceIndex(1) -8 >Emitted(51, 59) Source(14, 61) + SourceIndex(1) -9 >Emitted(51, 60) Source(14, 62) + SourceIndex(1) +1 >Emitted(52, 9) Source(14, 5) + SourceIndex(1) +2 >Emitted(52, 22) Source(14, 18) + SourceIndex(1) +3 >Emitted(52, 23) Source(14, 33) + SourceIndex(1) +4 >Emitted(52, 41) Source(14, 43) + SourceIndex(1) +5 >Emitted(52, 44) Source(14, 46) + SourceIndex(1) +6 >Emitted(52, 57) Source(14, 59) + SourceIndex(1) +7 >Emitted(52, 58) Source(14, 60) + SourceIndex(1) +8 >Emitted(52, 59) Source(14, 61) + SourceIndex(1) +9 >Emitted(52, 60) Source(14, 62) + SourceIndex(1) --- >>> /*@internal*/ normalN.internalConst = 10; 1 >^^^^^^^^ @@ -2763,13 +2768,13 @@ sourceFile:file1.ts 5 > = 6 > 10 7 > ; -1 >Emitted(52, 9) Source(16, 5) + SourceIndex(1) -2 >Emitted(52, 22) Source(16, 18) + SourceIndex(1) -3 >Emitted(52, 23) Source(16, 32) + SourceIndex(1) -4 >Emitted(52, 44) Source(16, 45) + SourceIndex(1) -5 >Emitted(52, 47) Source(16, 48) + SourceIndex(1) -6 >Emitted(52, 49) Source(16, 50) + SourceIndex(1) -7 >Emitted(52, 50) Source(16, 51) + SourceIndex(1) +1 >Emitted(53, 9) Source(16, 5) + SourceIndex(1) +2 >Emitted(53, 22) Source(16, 18) + SourceIndex(1) +3 >Emitted(53, 23) Source(16, 32) + SourceIndex(1) +4 >Emitted(53, 44) Source(16, 45) + SourceIndex(1) +5 >Emitted(53, 47) Source(16, 48) + SourceIndex(1) +6 >Emitted(53, 49) Source(16, 50) + SourceIndex(1) +7 >Emitted(53, 50) Source(16, 51) + SourceIndex(1) --- >>> /*@internal*/ var internalEnum; 1 >^^^^^^^^ @@ -2783,11 +2788,11 @@ sourceFile:file1.ts 3 > 4 > export enum 5 > internalEnum { a, b, c } -1 >Emitted(53, 9) Source(17, 5) + SourceIndex(1) -2 >Emitted(53, 22) Source(17, 18) + SourceIndex(1) -3 >Emitted(53, 23) Source(17, 19) + SourceIndex(1) -4 >Emitted(53, 27) Source(17, 31) + SourceIndex(1) -5 >Emitted(53, 39) Source(17, 55) + SourceIndex(1) +1 >Emitted(54, 9) Source(17, 5) + SourceIndex(1) +2 >Emitted(54, 22) Source(17, 18) + SourceIndex(1) +3 >Emitted(54, 23) Source(17, 19) + SourceIndex(1) +4 >Emitted(54, 27) Source(17, 31) + SourceIndex(1) +5 >Emitted(54, 39) Source(17, 55) + SourceIndex(1) --- >>> (function (internalEnum) { 1 >^^^^^^^^ @@ -2797,9 +2802,9 @@ sourceFile:file1.ts 1 > 2 > export enum 3 > internalEnum -1 >Emitted(54, 9) Source(17, 19) + SourceIndex(1) -2 >Emitted(54, 20) Source(17, 31) + SourceIndex(1) -3 >Emitted(54, 32) Source(17, 43) + SourceIndex(1) +1 >Emitted(55, 9) Source(17, 19) + SourceIndex(1) +2 >Emitted(55, 20) Source(17, 31) + SourceIndex(1) +3 >Emitted(55, 32) Source(17, 43) + SourceIndex(1) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^^^^^ @@ -2809,9 +2814,9 @@ sourceFile:file1.ts 1-> { 2 > a 3 > -1->Emitted(55, 13) Source(17, 46) + SourceIndex(1) -2 >Emitted(55, 54) Source(17, 47) + SourceIndex(1) -3 >Emitted(55, 55) Source(17, 47) + SourceIndex(1) +1->Emitted(56, 13) Source(17, 46) + SourceIndex(1) +2 >Emitted(56, 54) Source(17, 47) + SourceIndex(1) +3 >Emitted(56, 55) Source(17, 47) + SourceIndex(1) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^^^^^ @@ -2821,9 +2826,9 @@ sourceFile:file1.ts 1->, 2 > b 3 > -1->Emitted(56, 13) Source(17, 49) + SourceIndex(1) -2 >Emitted(56, 54) Source(17, 50) + SourceIndex(1) -3 >Emitted(56, 55) Source(17, 50) + SourceIndex(1) +1->Emitted(57, 13) Source(17, 49) + SourceIndex(1) +2 >Emitted(57, 54) Source(17, 50) + SourceIndex(1) +3 >Emitted(57, 55) Source(17, 50) + SourceIndex(1) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^^^^^ @@ -2833,9 +2838,9 @@ sourceFile:file1.ts 1->, 2 > c 3 > -1->Emitted(57, 13) Source(17, 52) + SourceIndex(1) -2 >Emitted(57, 54) Source(17, 53) + SourceIndex(1) -3 >Emitted(57, 55) Source(17, 53) + SourceIndex(1) +1->Emitted(58, 13) Source(17, 52) + SourceIndex(1) +2 >Emitted(58, 54) Source(17, 53) + SourceIndex(1) +3 >Emitted(58, 55) Source(17, 53) + SourceIndex(1) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^^^^^ @@ -2856,15 +2861,15 @@ sourceFile:file1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(58, 9) Source(17, 54) + SourceIndex(1) -2 >Emitted(58, 10) Source(17, 55) + SourceIndex(1) -3 >Emitted(58, 12) Source(17, 31) + SourceIndex(1) -4 >Emitted(58, 24) Source(17, 43) + SourceIndex(1) -5 >Emitted(58, 27) Source(17, 31) + SourceIndex(1) -6 >Emitted(58, 47) Source(17, 43) + SourceIndex(1) -7 >Emitted(58, 52) Source(17, 31) + SourceIndex(1) -8 >Emitted(58, 72) Source(17, 43) + SourceIndex(1) -9 >Emitted(58, 80) Source(17, 55) + SourceIndex(1) +1->Emitted(59, 9) Source(17, 54) + SourceIndex(1) +2 >Emitted(59, 10) Source(17, 55) + SourceIndex(1) +3 >Emitted(59, 12) Source(17, 31) + SourceIndex(1) +4 >Emitted(59, 24) Source(17, 43) + SourceIndex(1) +5 >Emitted(59, 27) Source(17, 31) + SourceIndex(1) +6 >Emitted(59, 47) Source(17, 43) + SourceIndex(1) +7 >Emitted(59, 52) Source(17, 31) + SourceIndex(1) +8 >Emitted(59, 72) Source(17, 43) + SourceIndex(1) +9 >Emitted(59, 80) Source(17, 55) + SourceIndex(1) --- >>> })(normalN = exports.normalN || (exports.normalN = {})); 1 >^^^^ @@ -2896,15 +2901,15 @@ sourceFile:file1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(59, 5) Source(18, 1) + SourceIndex(1) -2 >Emitted(59, 6) Source(18, 2) + SourceIndex(1) -3 >Emitted(59, 8) Source(9, 18) + SourceIndex(1) -4 >Emitted(59, 15) Source(9, 25) + SourceIndex(1) -5 >Emitted(59, 18) Source(9, 18) + SourceIndex(1) -6 >Emitted(59, 33) Source(9, 25) + SourceIndex(1) -7 >Emitted(59, 38) Source(9, 18) + SourceIndex(1) -8 >Emitted(59, 53) Source(9, 25) + SourceIndex(1) -9 >Emitted(59, 61) Source(18, 2) + SourceIndex(1) +1 >Emitted(60, 5) Source(18, 1) + SourceIndex(1) +2 >Emitted(60, 6) Source(18, 2) + SourceIndex(1) +3 >Emitted(60, 8) Source(9, 18) + SourceIndex(1) +4 >Emitted(60, 15) Source(9, 25) + SourceIndex(1) +5 >Emitted(60, 18) Source(9, 18) + SourceIndex(1) +6 >Emitted(60, 33) Source(9, 25) + SourceIndex(1) +7 >Emitted(60, 38) Source(9, 18) + SourceIndex(1) +8 >Emitted(60, 53) Source(9, 25) + SourceIndex(1) +9 >Emitted(60, 61) Source(18, 2) + SourceIndex(1) --- >>> /*@internal*/ var internalC = /** @class */ (function () { 1->^^^^ @@ -2915,15 +2920,15 @@ sourceFile:file1.ts > 2 > /*@internal*/ 3 > -1->Emitted(60, 5) Source(19, 1) + SourceIndex(1) -2 >Emitted(60, 18) Source(19, 14) + SourceIndex(1) -3 >Emitted(60, 19) Source(19, 15) + SourceIndex(1) +1->Emitted(61, 5) Source(19, 1) + SourceIndex(1) +2 >Emitted(61, 18) Source(19, 14) + SourceIndex(1) +3 >Emitted(61, 19) Source(19, 15) + SourceIndex(1) --- >>> function internalC() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(61, 9) Source(19, 15) + SourceIndex(1) +1->Emitted(62, 9) Source(19, 15) + SourceIndex(1) --- >>> } 1->^^^^^^^^ @@ -2931,16 +2936,16 @@ sourceFile:file1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class internalC { 2 > } -1->Emitted(62, 9) Source(19, 39) + SourceIndex(1) -2 >Emitted(62, 10) Source(19, 40) + SourceIndex(1) +1->Emitted(63, 9) Source(19, 39) + SourceIndex(1) +2 >Emitted(63, 10) Source(19, 40) + SourceIndex(1) --- >>> return internalC; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(63, 9) Source(19, 39) + SourceIndex(1) -2 >Emitted(63, 25) Source(19, 40) + SourceIndex(1) +1->Emitted(64, 9) Source(19, 39) + SourceIndex(1) +2 >Emitted(64, 25) Source(19, 40) + SourceIndex(1) --- >>> }()); 1 >^^^^ @@ -2952,10 +2957,10 @@ sourceFile:file1.ts 2 > } 3 > 4 > export class internalC {} -1 >Emitted(64, 5) Source(19, 39) + SourceIndex(1) -2 >Emitted(64, 6) Source(19, 40) + SourceIndex(1) -3 >Emitted(64, 6) Source(19, 15) + SourceIndex(1) -4 >Emitted(64, 10) Source(19, 40) + SourceIndex(1) +1 >Emitted(65, 5) Source(19, 39) + SourceIndex(1) +2 >Emitted(65, 6) Source(19, 40) + SourceIndex(1) +3 >Emitted(65, 6) Source(19, 15) + SourceIndex(1) +4 >Emitted(65, 10) Source(19, 40) + SourceIndex(1) --- >>> exports.internalC = internalC; 1->^^^^ @@ -2963,8 +2968,8 @@ sourceFile:file1.ts 3 > ^^^^^^^^^^^-> 1-> 2 > internalC -1->Emitted(65, 5) Source(19, 28) + SourceIndex(1) -2 >Emitted(65, 35) Source(19, 37) + SourceIndex(1) +1->Emitted(66, 5) Source(19, 28) + SourceIndex(1) +2 >Emitted(66, 35) Source(19, 37) + SourceIndex(1) --- >>> /*@internal*/ function internalfoo() { } 1->^^^^ @@ -2982,13 +2987,13 @@ sourceFile:file1.ts 5 > internalfoo 6 > () { 7 > } -1->Emitted(66, 5) Source(20, 1) + SourceIndex(1) -2 >Emitted(66, 18) Source(20, 14) + SourceIndex(1) -3 >Emitted(66, 19) Source(20, 15) + SourceIndex(1) -4 >Emitted(66, 28) Source(20, 31) + SourceIndex(1) -5 >Emitted(66, 39) Source(20, 42) + SourceIndex(1) -6 >Emitted(66, 44) Source(20, 46) + SourceIndex(1) -7 >Emitted(66, 45) Source(20, 47) + SourceIndex(1) +1->Emitted(67, 5) Source(20, 1) + SourceIndex(1) +2 >Emitted(67, 18) Source(20, 14) + SourceIndex(1) +3 >Emitted(67, 19) Source(20, 15) + SourceIndex(1) +4 >Emitted(67, 28) Source(20, 31) + SourceIndex(1) +5 >Emitted(67, 39) Source(20, 42) + SourceIndex(1) +6 >Emitted(67, 44) Source(20, 46) + SourceIndex(1) +7 >Emitted(67, 45) Source(20, 47) + SourceIndex(1) --- >>> exports.internalfoo = internalfoo; 1 >^^^^ @@ -2996,8 +3001,8 @@ sourceFile:file1.ts 3 > ^^^-> 1 > 2 > export function internalfoo() {} -1 >Emitted(67, 5) Source(20, 15) + SourceIndex(1) -2 >Emitted(67, 39) Source(20, 47) + SourceIndex(1) +1 >Emitted(68, 5) Source(20, 15) + SourceIndex(1) +2 >Emitted(68, 39) Source(20, 47) + SourceIndex(1) --- >>> /*@internal*/ var internalNamespace; 1->^^^^ @@ -3013,12 +3018,12 @@ sourceFile:file1.ts 4 > export namespace 5 > internalNamespace 6 > { export class someClass {} } -1->Emitted(68, 5) Source(21, 1) + SourceIndex(1) -2 >Emitted(68, 18) Source(21, 14) + SourceIndex(1) -3 >Emitted(68, 19) Source(21, 15) + SourceIndex(1) -4 >Emitted(68, 23) Source(21, 32) + SourceIndex(1) -5 >Emitted(68, 40) Source(21, 49) + SourceIndex(1) -6 >Emitted(68, 41) Source(21, 79) + SourceIndex(1) +1->Emitted(69, 5) Source(21, 1) + SourceIndex(1) +2 >Emitted(69, 18) Source(21, 14) + SourceIndex(1) +3 >Emitted(69, 19) Source(21, 15) + SourceIndex(1) +4 >Emitted(69, 23) Source(21, 32) + SourceIndex(1) +5 >Emitted(69, 40) Source(21, 49) + SourceIndex(1) +6 >Emitted(69, 41) Source(21, 79) + SourceIndex(1) --- >>> (function (internalNamespace) { 1 >^^^^ @@ -3028,21 +3033,21 @@ sourceFile:file1.ts 1 > 2 > export namespace 3 > internalNamespace -1 >Emitted(69, 5) Source(21, 15) + SourceIndex(1) -2 >Emitted(69, 16) Source(21, 32) + SourceIndex(1) -3 >Emitted(69, 33) Source(21, 49) + SourceIndex(1) +1 >Emitted(70, 5) Source(21, 15) + SourceIndex(1) +2 >Emitted(70, 16) Source(21, 32) + SourceIndex(1) +3 >Emitted(70, 33) Source(21, 49) + SourceIndex(1) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(70, 9) Source(21, 52) + SourceIndex(1) +1->Emitted(71, 9) Source(21, 52) + SourceIndex(1) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(71, 13) Source(21, 52) + SourceIndex(1) +1->Emitted(72, 13) Source(21, 52) + SourceIndex(1) --- >>> } 1->^^^^^^^^^^^^ @@ -3050,16 +3055,16 @@ sourceFile:file1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(72, 13) Source(21, 76) + SourceIndex(1) -2 >Emitted(72, 14) Source(21, 77) + SourceIndex(1) +1->Emitted(73, 13) Source(21, 76) + SourceIndex(1) +2 >Emitted(73, 14) Source(21, 77) + SourceIndex(1) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(73, 13) Source(21, 76) + SourceIndex(1) -2 >Emitted(73, 29) Source(21, 77) + SourceIndex(1) +1->Emitted(74, 13) Source(21, 76) + SourceIndex(1) +2 >Emitted(74, 29) Source(21, 77) + SourceIndex(1) --- >>> }()); 1 >^^^^^^^^ @@ -3071,10 +3076,10 @@ sourceFile:file1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(74, 9) Source(21, 76) + SourceIndex(1) -2 >Emitted(74, 10) Source(21, 77) + SourceIndex(1) -3 >Emitted(74, 10) Source(21, 52) + SourceIndex(1) -4 >Emitted(74, 14) Source(21, 77) + SourceIndex(1) +1 >Emitted(75, 9) Source(21, 76) + SourceIndex(1) +2 >Emitted(75, 10) Source(21, 77) + SourceIndex(1) +3 >Emitted(75, 10) Source(21, 52) + SourceIndex(1) +4 >Emitted(75, 14) Source(21, 77) + SourceIndex(1) --- >>> internalNamespace.someClass = someClass; 1->^^^^^^^^ @@ -3086,10 +3091,10 @@ sourceFile:file1.ts 2 > someClass 3 > {} 4 > -1->Emitted(75, 9) Source(21, 65) + SourceIndex(1) -2 >Emitted(75, 36) Source(21, 74) + SourceIndex(1) -3 >Emitted(75, 48) Source(21, 77) + SourceIndex(1) -4 >Emitted(75, 49) Source(21, 77) + SourceIndex(1) +1->Emitted(76, 9) Source(21, 65) + SourceIndex(1) +2 >Emitted(76, 36) Source(21, 74) + SourceIndex(1) +3 >Emitted(76, 48) Source(21, 77) + SourceIndex(1) +4 >Emitted(76, 49) Source(21, 77) + SourceIndex(1) --- >>> })(internalNamespace = exports.internalNamespace || (exports.internalNamespace = {})); 1->^^^^ @@ -3110,15 +3115,15 @@ sourceFile:file1.ts 7 > 8 > internalNamespace 9 > { export class someClass {} } -1->Emitted(76, 5) Source(21, 78) + SourceIndex(1) -2 >Emitted(76, 6) Source(21, 79) + SourceIndex(1) -3 >Emitted(76, 8) Source(21, 32) + SourceIndex(1) -4 >Emitted(76, 25) Source(21, 49) + SourceIndex(1) -5 >Emitted(76, 28) Source(21, 32) + SourceIndex(1) -6 >Emitted(76, 53) Source(21, 49) + SourceIndex(1) -7 >Emitted(76, 58) Source(21, 32) + SourceIndex(1) -8 >Emitted(76, 83) Source(21, 49) + SourceIndex(1) -9 >Emitted(76, 91) Source(21, 79) + SourceIndex(1) +1->Emitted(77, 5) Source(21, 78) + SourceIndex(1) +2 >Emitted(77, 6) Source(21, 79) + SourceIndex(1) +3 >Emitted(77, 8) Source(21, 32) + SourceIndex(1) +4 >Emitted(77, 25) Source(21, 49) + SourceIndex(1) +5 >Emitted(77, 28) Source(21, 32) + SourceIndex(1) +6 >Emitted(77, 53) Source(21, 49) + SourceIndex(1) +7 >Emitted(77, 58) Source(21, 32) + SourceIndex(1) +8 >Emitted(77, 83) Source(21, 49) + SourceIndex(1) +9 >Emitted(77, 91) Source(21, 79) + SourceIndex(1) --- >>> /*@internal*/ var internalOther; 1 >^^^^ @@ -3134,12 +3139,12 @@ sourceFile:file1.ts 4 > export namespace 5 > internalOther 6 > .something { export class someClass {} } -1 >Emitted(77, 5) Source(22, 1) + SourceIndex(1) -2 >Emitted(77, 18) Source(22, 14) + SourceIndex(1) -3 >Emitted(77, 19) Source(22, 15) + SourceIndex(1) -4 >Emitted(77, 23) Source(22, 32) + SourceIndex(1) -5 >Emitted(77, 36) Source(22, 45) + SourceIndex(1) -6 >Emitted(77, 37) Source(22, 85) + SourceIndex(1) +1 >Emitted(78, 5) Source(22, 1) + SourceIndex(1) +2 >Emitted(78, 18) Source(22, 14) + SourceIndex(1) +3 >Emitted(78, 19) Source(22, 15) + SourceIndex(1) +4 >Emitted(78, 23) Source(22, 32) + SourceIndex(1) +5 >Emitted(78, 36) Source(22, 45) + SourceIndex(1) +6 >Emitted(78, 37) Source(22, 85) + SourceIndex(1) --- >>> (function (internalOther) { 1 >^^^^ @@ -3148,9 +3153,9 @@ sourceFile:file1.ts 1 > 2 > export namespace 3 > internalOther -1 >Emitted(78, 5) Source(22, 15) + SourceIndex(1) -2 >Emitted(78, 16) Source(22, 32) + SourceIndex(1) -3 >Emitted(78, 29) Source(22, 45) + SourceIndex(1) +1 >Emitted(79, 5) Source(22, 15) + SourceIndex(1) +2 >Emitted(79, 16) Source(22, 32) + SourceIndex(1) +3 >Emitted(79, 29) Source(22, 45) + SourceIndex(1) --- >>> var something; 1 >^^^^^^^^ @@ -3162,10 +3167,10 @@ sourceFile:file1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(79, 9) Source(22, 46) + SourceIndex(1) -2 >Emitted(79, 13) Source(22, 46) + SourceIndex(1) -3 >Emitted(79, 22) Source(22, 55) + SourceIndex(1) -4 >Emitted(79, 23) Source(22, 85) + SourceIndex(1) +1 >Emitted(80, 9) Source(22, 46) + SourceIndex(1) +2 >Emitted(80, 13) Source(22, 46) + SourceIndex(1) +3 >Emitted(80, 22) Source(22, 55) + SourceIndex(1) +4 >Emitted(80, 23) Source(22, 85) + SourceIndex(1) --- >>> (function (something) { 1->^^^^^^^^ @@ -3175,21 +3180,21 @@ sourceFile:file1.ts 1-> 2 > 3 > something -1->Emitted(80, 9) Source(22, 46) + SourceIndex(1) -2 >Emitted(80, 20) Source(22, 46) + SourceIndex(1) -3 >Emitted(80, 29) Source(22, 55) + SourceIndex(1) +1->Emitted(81, 9) Source(22, 46) + SourceIndex(1) +2 >Emitted(81, 20) Source(22, 46) + SourceIndex(1) +3 >Emitted(81, 29) Source(22, 55) + SourceIndex(1) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(81, 13) Source(22, 58) + SourceIndex(1) +1->Emitted(82, 13) Source(22, 58) + SourceIndex(1) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(82, 17) Source(22, 58) + SourceIndex(1) +1->Emitted(83, 17) Source(22, 58) + SourceIndex(1) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -3197,16 +3202,16 @@ sourceFile:file1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(83, 17) Source(22, 82) + SourceIndex(1) -2 >Emitted(83, 18) Source(22, 83) + SourceIndex(1) +1->Emitted(84, 17) Source(22, 82) + SourceIndex(1) +2 >Emitted(84, 18) Source(22, 83) + SourceIndex(1) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(84, 17) Source(22, 82) + SourceIndex(1) -2 >Emitted(84, 33) Source(22, 83) + SourceIndex(1) +1->Emitted(85, 17) Source(22, 82) + SourceIndex(1) +2 >Emitted(85, 33) Source(22, 83) + SourceIndex(1) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -3218,10 +3223,10 @@ sourceFile:file1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(85, 13) Source(22, 82) + SourceIndex(1) -2 >Emitted(85, 14) Source(22, 83) + SourceIndex(1) -3 >Emitted(85, 14) Source(22, 58) + SourceIndex(1) -4 >Emitted(85, 18) Source(22, 83) + SourceIndex(1) +1 >Emitted(86, 13) Source(22, 82) + SourceIndex(1) +2 >Emitted(86, 14) Source(22, 83) + SourceIndex(1) +3 >Emitted(86, 14) Source(22, 58) + SourceIndex(1) +4 >Emitted(86, 18) Source(22, 83) + SourceIndex(1) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -3233,10 +3238,10 @@ sourceFile:file1.ts 2 > someClass 3 > {} 4 > -1->Emitted(86, 13) Source(22, 71) + SourceIndex(1) -2 >Emitted(86, 32) Source(22, 80) + SourceIndex(1) -3 >Emitted(86, 44) Source(22, 83) + SourceIndex(1) -4 >Emitted(86, 45) Source(22, 83) + SourceIndex(1) +1->Emitted(87, 13) Source(22, 71) + SourceIndex(1) +2 >Emitted(87, 32) Source(22, 80) + SourceIndex(1) +3 >Emitted(87, 44) Source(22, 83) + SourceIndex(1) +4 >Emitted(87, 45) Source(22, 83) + SourceIndex(1) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^^^^^ @@ -3257,15 +3262,15 @@ sourceFile:file1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(87, 9) Source(22, 84) + SourceIndex(1) -2 >Emitted(87, 10) Source(22, 85) + SourceIndex(1) -3 >Emitted(87, 12) Source(22, 46) + SourceIndex(1) -4 >Emitted(87, 21) Source(22, 55) + SourceIndex(1) -5 >Emitted(87, 24) Source(22, 46) + SourceIndex(1) -6 >Emitted(87, 47) Source(22, 55) + SourceIndex(1) -7 >Emitted(87, 52) Source(22, 46) + SourceIndex(1) -8 >Emitted(87, 75) Source(22, 55) + SourceIndex(1) -9 >Emitted(87, 83) Source(22, 85) + SourceIndex(1) +1->Emitted(88, 9) Source(22, 84) + SourceIndex(1) +2 >Emitted(88, 10) Source(22, 85) + SourceIndex(1) +3 >Emitted(88, 12) Source(22, 46) + SourceIndex(1) +4 >Emitted(88, 21) Source(22, 55) + SourceIndex(1) +5 >Emitted(88, 24) Source(22, 46) + SourceIndex(1) +6 >Emitted(88, 47) Source(22, 55) + SourceIndex(1) +7 >Emitted(88, 52) Source(22, 46) + SourceIndex(1) +8 >Emitted(88, 75) Source(22, 55) + SourceIndex(1) +9 >Emitted(88, 83) Source(22, 85) + SourceIndex(1) --- >>> })(internalOther = exports.internalOther || (exports.internalOther = {})); 1 >^^^^ @@ -3286,15 +3291,15 @@ sourceFile:file1.ts 7 > 8 > internalOther 9 > .something { export class someClass {} } -1 >Emitted(88, 5) Source(22, 84) + SourceIndex(1) -2 >Emitted(88, 6) Source(22, 85) + SourceIndex(1) -3 >Emitted(88, 8) Source(22, 32) + SourceIndex(1) -4 >Emitted(88, 21) Source(22, 45) + SourceIndex(1) -5 >Emitted(88, 24) Source(22, 32) + SourceIndex(1) -6 >Emitted(88, 45) Source(22, 45) + SourceIndex(1) -7 >Emitted(88, 50) Source(22, 32) + SourceIndex(1) -8 >Emitted(88, 71) Source(22, 45) + SourceIndex(1) -9 >Emitted(88, 79) Source(22, 85) + SourceIndex(1) +1 >Emitted(89, 5) Source(22, 84) + SourceIndex(1) +2 >Emitted(89, 6) Source(22, 85) + SourceIndex(1) +3 >Emitted(89, 8) Source(22, 32) + SourceIndex(1) +4 >Emitted(89, 21) Source(22, 45) + SourceIndex(1) +5 >Emitted(89, 24) Source(22, 32) + SourceIndex(1) +6 >Emitted(89, 45) Source(22, 45) + SourceIndex(1) +7 >Emitted(89, 50) Source(22, 32) + SourceIndex(1) +8 >Emitted(89, 71) Source(22, 45) + SourceIndex(1) +9 >Emitted(89, 79) Source(22, 85) + SourceIndex(1) --- >>> /*@internal*/ exports.internalImport = internalNamespace.someClass; 1 >^^^^ @@ -3318,16 +3323,16 @@ sourceFile:file1.ts 8 > . 9 > someClass 10> ; -1 >Emitted(89, 5) Source(23, 1) + SourceIndex(1) -2 >Emitted(89, 18) Source(23, 14) + SourceIndex(1) -3 >Emitted(89, 19) Source(23, 29) + SourceIndex(1) -4 >Emitted(89, 27) Source(23, 29) + SourceIndex(1) -5 >Emitted(89, 41) Source(23, 43) + SourceIndex(1) -6 >Emitted(89, 44) Source(23, 46) + SourceIndex(1) -7 >Emitted(89, 61) Source(23, 63) + SourceIndex(1) -8 >Emitted(89, 62) Source(23, 64) + SourceIndex(1) -9 >Emitted(89, 71) Source(23, 73) + SourceIndex(1) -10>Emitted(89, 72) Source(23, 74) + SourceIndex(1) +1 >Emitted(90, 5) Source(23, 1) + SourceIndex(1) +2 >Emitted(90, 18) Source(23, 14) + SourceIndex(1) +3 >Emitted(90, 19) Source(23, 29) + SourceIndex(1) +4 >Emitted(90, 27) Source(23, 29) + SourceIndex(1) +5 >Emitted(90, 41) Source(23, 43) + SourceIndex(1) +6 >Emitted(90, 44) Source(23, 46) + SourceIndex(1) +7 >Emitted(90, 61) Source(23, 63) + SourceIndex(1) +8 >Emitted(90, 62) Source(23, 64) + SourceIndex(1) +9 >Emitted(90, 71) Source(23, 73) + SourceIndex(1) +10>Emitted(90, 72) Source(23, 74) + SourceIndex(1) --- >>> /*@internal*/ exports.internalConst = 10; 1 >^^^^ @@ -3348,14 +3353,14 @@ sourceFile:file1.ts 6 > = 7 > 10 8 > ; -1 >Emitted(90, 5) Source(25, 1) + SourceIndex(1) -2 >Emitted(90, 18) Source(25, 14) + SourceIndex(1) -3 >Emitted(90, 19) Source(25, 28) + SourceIndex(1) -4 >Emitted(90, 27) Source(25, 28) + SourceIndex(1) -5 >Emitted(90, 40) Source(25, 41) + SourceIndex(1) -6 >Emitted(90, 43) Source(25, 44) + SourceIndex(1) -7 >Emitted(90, 45) Source(25, 46) + SourceIndex(1) -8 >Emitted(90, 46) Source(25, 47) + SourceIndex(1) +1 >Emitted(91, 5) Source(25, 1) + SourceIndex(1) +2 >Emitted(91, 18) Source(25, 14) + SourceIndex(1) +3 >Emitted(91, 19) Source(25, 28) + SourceIndex(1) +4 >Emitted(91, 27) Source(25, 28) + SourceIndex(1) +5 >Emitted(91, 40) Source(25, 41) + SourceIndex(1) +6 >Emitted(91, 43) Source(25, 44) + SourceIndex(1) +7 >Emitted(91, 45) Source(25, 46) + SourceIndex(1) +8 >Emitted(91, 46) Source(25, 47) + SourceIndex(1) --- >>> /*@internal*/ var internalEnum; 1 >^^^^ @@ -3369,11 +3374,11 @@ sourceFile:file1.ts 3 > 4 > export enum 5 > internalEnum { a, b, c } -1 >Emitted(91, 5) Source(26, 1) + SourceIndex(1) -2 >Emitted(91, 18) Source(26, 14) + SourceIndex(1) -3 >Emitted(91, 19) Source(26, 15) + SourceIndex(1) -4 >Emitted(91, 23) Source(26, 27) + SourceIndex(1) -5 >Emitted(91, 35) Source(26, 51) + SourceIndex(1) +1 >Emitted(92, 5) Source(26, 1) + SourceIndex(1) +2 >Emitted(92, 18) Source(26, 14) + SourceIndex(1) +3 >Emitted(92, 19) Source(26, 15) + SourceIndex(1) +4 >Emitted(92, 23) Source(26, 27) + SourceIndex(1) +5 >Emitted(92, 35) Source(26, 51) + SourceIndex(1) --- >>> (function (internalEnum) { 1 >^^^^ @@ -3383,9 +3388,9 @@ sourceFile:file1.ts 1 > 2 > export enum 3 > internalEnum -1 >Emitted(92, 5) Source(26, 15) + SourceIndex(1) -2 >Emitted(92, 16) Source(26, 27) + SourceIndex(1) -3 >Emitted(92, 28) Source(26, 39) + SourceIndex(1) +1 >Emitted(93, 5) Source(26, 15) + SourceIndex(1) +2 >Emitted(93, 16) Source(26, 27) + SourceIndex(1) +3 >Emitted(93, 28) Source(26, 39) + SourceIndex(1) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -3395,9 +3400,9 @@ sourceFile:file1.ts 1-> { 2 > a 3 > -1->Emitted(93, 9) Source(26, 42) + SourceIndex(1) -2 >Emitted(93, 50) Source(26, 43) + SourceIndex(1) -3 >Emitted(93, 51) Source(26, 43) + SourceIndex(1) +1->Emitted(94, 9) Source(26, 42) + SourceIndex(1) +2 >Emitted(94, 50) Source(26, 43) + SourceIndex(1) +3 >Emitted(94, 51) Source(26, 43) + SourceIndex(1) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -3407,9 +3412,9 @@ sourceFile:file1.ts 1->, 2 > b 3 > -1->Emitted(94, 9) Source(26, 45) + SourceIndex(1) -2 >Emitted(94, 50) Source(26, 46) + SourceIndex(1) -3 >Emitted(94, 51) Source(26, 46) + SourceIndex(1) +1->Emitted(95, 9) Source(26, 45) + SourceIndex(1) +2 >Emitted(95, 50) Source(26, 46) + SourceIndex(1) +3 >Emitted(95, 51) Source(26, 46) + SourceIndex(1) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -3419,9 +3424,9 @@ sourceFile:file1.ts 1->, 2 > c 3 > -1->Emitted(95, 9) Source(26, 48) + SourceIndex(1) -2 >Emitted(95, 50) Source(26, 49) + SourceIndex(1) -3 >Emitted(95, 51) Source(26, 49) + SourceIndex(1) +1->Emitted(96, 9) Source(26, 48) + SourceIndex(1) +2 >Emitted(96, 50) Source(26, 49) + SourceIndex(1) +3 >Emitted(96, 51) Source(26, 49) + SourceIndex(1) --- >>> })(internalEnum = exports.internalEnum || (exports.internalEnum = {})); 1->^^^^ @@ -3442,15 +3447,15 @@ sourceFile:file1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(96, 5) Source(26, 50) + SourceIndex(1) -2 >Emitted(96, 6) Source(26, 51) + SourceIndex(1) -3 >Emitted(96, 8) Source(26, 27) + SourceIndex(1) -4 >Emitted(96, 20) Source(26, 39) + SourceIndex(1) -5 >Emitted(96, 23) Source(26, 27) + SourceIndex(1) -6 >Emitted(96, 43) Source(26, 39) + SourceIndex(1) -7 >Emitted(96, 48) Source(26, 27) + SourceIndex(1) -8 >Emitted(96, 68) Source(26, 39) + SourceIndex(1) -9 >Emitted(96, 76) Source(26, 51) + SourceIndex(1) +1->Emitted(97, 5) Source(26, 50) + SourceIndex(1) +2 >Emitted(97, 6) Source(26, 51) + SourceIndex(1) +3 >Emitted(97, 8) Source(26, 27) + SourceIndex(1) +4 >Emitted(97, 20) Source(26, 39) + SourceIndex(1) +5 >Emitted(97, 23) Source(26, 27) + SourceIndex(1) +6 >Emitted(97, 43) Source(26, 39) + SourceIndex(1) +7 >Emitted(97, 48) Source(26, 27) + SourceIndex(1) +8 >Emitted(97, 68) Source(26, 39) + SourceIndex(1) +9 >Emitted(97, 76) Source(26, 51) + SourceIndex(1) --- >>> console.log(exports.x); 1 >^^^^ @@ -3469,14 +3474,14 @@ sourceFile:file1.ts 6 > x 7 > ) 8 > ; -1 >Emitted(97, 5) Source(26, 51) + SourceIndex(1) -2 >Emitted(97, 12) Source(26, 58) + SourceIndex(1) -3 >Emitted(97, 13) Source(26, 59) + SourceIndex(1) -4 >Emitted(97, 16) Source(26, 62) + SourceIndex(1) -5 >Emitted(97, 17) Source(26, 63) + SourceIndex(1) -6 >Emitted(97, 26) Source(26, 64) + SourceIndex(1) -7 >Emitted(97, 27) Source(26, 65) + SourceIndex(1) -8 >Emitted(97, 28) Source(26, 66) + SourceIndex(1) +1 >Emitted(98, 5) Source(26, 51) + SourceIndex(1) +2 >Emitted(98, 12) Source(26, 58) + SourceIndex(1) +3 >Emitted(98, 13) Source(26, 59) + SourceIndex(1) +4 >Emitted(98, 16) Source(26, 62) + SourceIndex(1) +5 >Emitted(98, 17) Source(26, 63) + SourceIndex(1) +6 >Emitted(98, 26) Source(26, 64) + SourceIndex(1) +7 >Emitted(98, 27) Source(26, 65) + SourceIndex(1) +8 >Emitted(98, 28) Source(26, 66) + SourceIndex(1) --- ------------------------------------------------------------------- emittedFile:/src/lib/module.js @@ -3500,12 +3505,12 @@ sourceFile:file2.ts 4 > = 5 > 20 6 > ; -1 >Emitted(103, 5) Source(1, 14) + SourceIndex(2) -2 >Emitted(103, 13) Source(1, 14) + SourceIndex(2) -3 >Emitted(103, 14) Source(1, 15) + SourceIndex(2) -4 >Emitted(103, 17) Source(1, 18) + SourceIndex(2) -5 >Emitted(103, 19) Source(1, 20) + SourceIndex(2) -6 >Emitted(103, 20) Source(1, 21) + SourceIndex(2) +1 >Emitted(104, 5) Source(1, 14) + SourceIndex(2) +2 >Emitted(104, 13) Source(1, 14) + SourceIndex(2) +3 >Emitted(104, 14) Source(1, 15) + SourceIndex(2) +4 >Emitted(104, 17) Source(1, 18) + SourceIndex(2) +5 >Emitted(104, 19) Source(1, 20) + SourceIndex(2) +6 >Emitted(104, 20) Source(1, 21) + SourceIndex(2) --- ------------------------------------------------------------------- emittedFile:/src/lib/module.js @@ -3526,12 +3531,12 @@ sourceFile:global.ts 4 > = 5 > 10 6 > ; -1 >Emitted(105, 1) Source(1, 1) + SourceIndex(3) -2 >Emitted(105, 5) Source(1, 7) + SourceIndex(3) -3 >Emitted(105, 16) Source(1, 18) + SourceIndex(3) -4 >Emitted(105, 19) Source(1, 21) + SourceIndex(3) -5 >Emitted(105, 21) Source(1, 23) + SourceIndex(3) -6 >Emitted(105, 22) Source(1, 24) + SourceIndex(3) +1 >Emitted(106, 1) Source(1, 1) + SourceIndex(3) +2 >Emitted(106, 5) Source(1, 7) + SourceIndex(3) +3 >Emitted(106, 16) Source(1, 18) + SourceIndex(3) +4 >Emitted(106, 19) Source(1, 21) + SourceIndex(3) +5 >Emitted(106, 21) Source(1, 23) + SourceIndex(3) +6 >Emitted(106, 22) Source(1, 24) + SourceIndex(3) --- >>>//# sourceMappingURL=module.js.map @@ -3549,7 +3554,7 @@ sourceFile:global.ts "sections": [ { "pos": 0, - "end": 4411, + "end": 4463, "kind": "text" } ] @@ -3606,7 +3611,7 @@ sourceFile:global.ts ====================================================================== File:: /src/lib/module.js ---------------------------------------------------------------------- -text: (0-4411) +text: (0-4463) /*@internal*/ var myGlob = 20; define("file1", ["require", "exports"], function (require, exports) { "use strict"; @@ -3616,8 +3621,9 @@ define("file1", ["require", "exports"], function (require, exports) { var normalC = /** @class */ (function () { /*@internal*/ function normalC() { } - /*@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /*@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /*@internal*/ get: function () { return 10; }, /*@internal*/ set: function (val) { }, enumerable: false, diff --git a/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-headers-change-without-dts-changes/stripInternal.js b/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-headers-change-without-dts-changes/stripInternal.js index cb26d9f069cd8..07eb29530ebe7 100644 --- a/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-headers-change-without-dts-changes/stripInternal.js +++ b/tests/baselines/reference/tsbuild/amdModulesWithOut/incremental-headers-change-without-dts-changes/stripInternal.js @@ -257,8 +257,9 @@ define("file1", ["require", "exports"], function (require, exports) { var normalC = /** @class */ (function () { /*@internal*/ function normalC() { } - /*@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /*@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /*@internal*/ get: function () { return 10; }, /*@internal*/ set: function (val) { }, enumerable: false, @@ -362,7 +363,7 @@ var myVar = 30; //# sourceMappingURL=module.js.map //// [/src/app/module.js.map] -{"version":3,"file":"module.js","sourceRoot":"","sources":["../lib/file0.ts","../lib/file1.ts","../lib/file2.ts","../lib/global.ts","file3.ts","file4.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"module.js","sourceRoot":"","sources":["../lib/file0.ts","../lib/file1.ts","../lib/file2.ts","../lib/global.ts","file3.ts","file4.ts"],"names":[],"mappings":"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"} //// [/src/app/module.js.map.baseline.txt] =================================================================== @@ -459,13 +460,14 @@ sourceFile:../lib/file1.ts >>> } 1 >^^^^^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 >constructor() { 2 > } 1 >Emitted(9, 9) Source(3, 35) + SourceIndex(1) 2 >Emitted(9, 10) Source(3, 36) + SourceIndex(1) --- ->>> /*@internal*/ normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> /*@internal*/ normalC_prototype.method = function () { }; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^ 3 > ^ @@ -482,15 +484,15 @@ sourceFile:../lib/file1.ts 5 > 6 > method() { 7 > } -1->Emitted(10, 9) Source(5, 5) + SourceIndex(1) -2 >Emitted(10, 22) Source(5, 18) + SourceIndex(1) -3 >Emitted(10, 23) Source(5, 19) + SourceIndex(1) -4 >Emitted(10, 47) Source(5, 25) + SourceIndex(1) -5 >Emitted(10, 50) Source(5, 19) + SourceIndex(1) -6 >Emitted(10, 64) Source(5, 30) + SourceIndex(1) -7 >Emitted(10, 65) Source(5, 31) + SourceIndex(1) ---- ->>> Object.defineProperty(normalC.prototype, "c", { +1->Emitted(11, 9) Source(5, 5) + SourceIndex(1) +2 >Emitted(11, 22) Source(5, 18) + SourceIndex(1) +3 >Emitted(11, 23) Source(5, 19) + SourceIndex(1) +4 >Emitted(11, 47) Source(5, 25) + SourceIndex(1) +5 >Emitted(11, 50) Source(5, 19) + SourceIndex(1) +6 >Emitted(11, 64) Source(5, 30) + SourceIndex(1) +7 >Emitted(11, 65) Source(5, 31) + SourceIndex(1) +--- +>>> Object.defineProperty(normalC_prototype, "c", { 1 >^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -499,9 +501,9 @@ sourceFile:../lib/file1.ts > /*@internal*/ 2 > get 3 > c -1 >Emitted(11, 9) Source(6, 19) + SourceIndex(1) -2 >Emitted(11, 31) Source(6, 23) + SourceIndex(1) -3 >Emitted(11, 53) Source(6, 24) + SourceIndex(1) +1 >Emitted(12, 9) Source(6, 19) + SourceIndex(1) +2 >Emitted(12, 31) Source(6, 23) + SourceIndex(1) +3 >Emitted(12, 53) Source(6, 24) + SourceIndex(1) --- >>> /*@internal*/ get: function () { return 10; }, 1->^^^^^^^^^^^^ @@ -522,15 +524,15 @@ sourceFile:../lib/file1.ts 7 > ; 8 > 9 > } -1->Emitted(12, 13) Source(6, 5) + SourceIndex(1) -2 >Emitted(12, 26) Source(6, 18) + SourceIndex(1) -3 >Emitted(12, 32) Source(6, 19) + SourceIndex(1) -4 >Emitted(12, 46) Source(6, 29) + SourceIndex(1) -5 >Emitted(12, 53) Source(6, 36) + SourceIndex(1) -6 >Emitted(12, 55) Source(6, 38) + SourceIndex(1) -7 >Emitted(12, 56) Source(6, 39) + SourceIndex(1) -8 >Emitted(12, 57) Source(6, 40) + SourceIndex(1) -9 >Emitted(12, 58) Source(6, 41) + SourceIndex(1) +1->Emitted(13, 13) Source(6, 5) + SourceIndex(1) +2 >Emitted(13, 26) Source(6, 18) + SourceIndex(1) +3 >Emitted(13, 32) Source(6, 19) + SourceIndex(1) +4 >Emitted(13, 46) Source(6, 29) + SourceIndex(1) +5 >Emitted(13, 53) Source(6, 36) + SourceIndex(1) +6 >Emitted(13, 55) Source(6, 38) + SourceIndex(1) +7 >Emitted(13, 56) Source(6, 39) + SourceIndex(1) +8 >Emitted(13, 57) Source(6, 40) + SourceIndex(1) +9 >Emitted(13, 58) Source(6, 41) + SourceIndex(1) --- >>> /*@internal*/ set: function (val) { }, 1 >^^^^^^^^^^^^ @@ -548,13 +550,13 @@ sourceFile:../lib/file1.ts 5 > val: number 6 > ) { 7 > } -1 >Emitted(13, 13) Source(7, 5) + SourceIndex(1) -2 >Emitted(13, 26) Source(7, 18) + SourceIndex(1) -3 >Emitted(13, 32) Source(7, 19) + SourceIndex(1) -4 >Emitted(13, 42) Source(7, 25) + SourceIndex(1) -5 >Emitted(13, 45) Source(7, 36) + SourceIndex(1) -6 >Emitted(13, 49) Source(7, 40) + SourceIndex(1) -7 >Emitted(13, 50) Source(7, 41) + SourceIndex(1) +1 >Emitted(14, 13) Source(7, 5) + SourceIndex(1) +2 >Emitted(14, 26) Source(7, 18) + SourceIndex(1) +3 >Emitted(14, 32) Source(7, 19) + SourceIndex(1) +4 >Emitted(14, 42) Source(7, 25) + SourceIndex(1) +5 >Emitted(14, 45) Source(7, 36) + SourceIndex(1) +6 >Emitted(14, 49) Source(7, 40) + SourceIndex(1) +7 >Emitted(14, 50) Source(7, 41) + SourceIndex(1) --- >>> enumerable: false, >>> configurable: true @@ -562,7 +564,7 @@ sourceFile:../lib/file1.ts 1 >^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(16, 12) Source(6, 41) + SourceIndex(1) +1 >Emitted(17, 12) Source(6, 41) + SourceIndex(1) --- >>> return normalC; 1->^^^^^^^^ @@ -571,8 +573,8 @@ sourceFile:../lib/file1.ts > /*@internal*/ set c(val: number) { } > 2 > } -1->Emitted(17, 9) Source(8, 1) + SourceIndex(1) -2 >Emitted(17, 23) Source(8, 2) + SourceIndex(1) +1->Emitted(18, 9) Source(8, 1) + SourceIndex(1) +2 >Emitted(18, 23) Source(8, 2) + SourceIndex(1) --- >>> }()); 1 >^^^^ @@ -590,18 +592,18 @@ sourceFile:../lib/file1.ts > /*@internal*/ get c() { return 10; } > /*@internal*/ set c(val: number) { } > } -1 >Emitted(18, 5) Source(8, 1) + SourceIndex(1) -2 >Emitted(18, 6) Source(8, 2) + SourceIndex(1) -3 >Emitted(18, 6) Source(2, 1) + SourceIndex(1) -4 >Emitted(18, 10) Source(8, 2) + SourceIndex(1) +1 >Emitted(19, 5) Source(8, 1) + SourceIndex(1) +2 >Emitted(19, 6) Source(8, 2) + SourceIndex(1) +3 >Emitted(19, 6) Source(2, 1) + SourceIndex(1) +4 >Emitted(19, 10) Source(8, 2) + SourceIndex(1) --- >>> exports.normalC = normalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> 2 > normalC -1->Emitted(19, 5) Source(2, 14) + SourceIndex(1) -2 >Emitted(19, 31) Source(2, 21) + SourceIndex(1) +1->Emitted(20, 5) Source(2, 14) + SourceIndex(1) +2 >Emitted(20, 31) Source(2, 21) + SourceIndex(1) --- >>> var normalN; 1 >^^^^ @@ -629,10 +631,10 @@ sourceFile:../lib/file1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(20, 5) Source(9, 1) + SourceIndex(1) -2 >Emitted(20, 9) Source(9, 18) + SourceIndex(1) -3 >Emitted(20, 16) Source(9, 25) + SourceIndex(1) -4 >Emitted(20, 17) Source(18, 2) + SourceIndex(1) +1 >Emitted(21, 5) Source(9, 1) + SourceIndex(1) +2 >Emitted(21, 9) Source(9, 18) + SourceIndex(1) +3 >Emitted(21, 16) Source(9, 25) + SourceIndex(1) +4 >Emitted(21, 17) Source(18, 2) + SourceIndex(1) --- >>> (function (normalN) { 1->^^^^ @@ -642,9 +644,9 @@ sourceFile:../lib/file1.ts 1-> 2 > export namespace 3 > normalN -1->Emitted(21, 5) Source(9, 1) + SourceIndex(1) -2 >Emitted(21, 16) Source(9, 18) + SourceIndex(1) -3 >Emitted(21, 23) Source(9, 25) + SourceIndex(1) +1->Emitted(22, 5) Source(9, 1) + SourceIndex(1) +2 >Emitted(22, 16) Source(9, 18) + SourceIndex(1) +3 >Emitted(22, 23) Source(9, 25) + SourceIndex(1) --- >>> /*@internal*/ var C = /** @class */ (function () { 1->^^^^^^^^ @@ -655,15 +657,15 @@ sourceFile:../lib/file1.ts > 2 > /*@internal*/ 3 > -1->Emitted(22, 9) Source(10, 5) + SourceIndex(1) -2 >Emitted(22, 22) Source(10, 18) + SourceIndex(1) -3 >Emitted(22, 23) Source(10, 19) + SourceIndex(1) +1->Emitted(23, 9) Source(10, 5) + SourceIndex(1) +2 >Emitted(23, 22) Source(10, 18) + SourceIndex(1) +3 >Emitted(23, 23) Source(10, 19) + SourceIndex(1) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(23, 13) Source(10, 19) + SourceIndex(1) +1->Emitted(24, 13) Source(10, 19) + SourceIndex(1) --- >>> } 1->^^^^^^^^^^^^ @@ -671,16 +673,16 @@ sourceFile:../lib/file1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(24, 13) Source(10, 36) + SourceIndex(1) -2 >Emitted(24, 14) Source(10, 37) + SourceIndex(1) +1->Emitted(25, 13) Source(10, 36) + SourceIndex(1) +2 >Emitted(25, 14) Source(10, 37) + SourceIndex(1) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(25, 13) Source(10, 36) + SourceIndex(1) -2 >Emitted(25, 21) Source(10, 37) + SourceIndex(1) +1->Emitted(26, 13) Source(10, 36) + SourceIndex(1) +2 >Emitted(26, 21) Source(10, 37) + SourceIndex(1) --- >>> }()); 1 >^^^^^^^^ @@ -692,10 +694,10 @@ sourceFile:../lib/file1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(26, 9) Source(10, 36) + SourceIndex(1) -2 >Emitted(26, 10) Source(10, 37) + SourceIndex(1) -3 >Emitted(26, 10) Source(10, 19) + SourceIndex(1) -4 >Emitted(26, 14) Source(10, 37) + SourceIndex(1) +1 >Emitted(27, 9) Source(10, 36) + SourceIndex(1) +2 >Emitted(27, 10) Source(10, 37) + SourceIndex(1) +3 >Emitted(27, 10) Source(10, 19) + SourceIndex(1) +4 >Emitted(27, 14) Source(10, 37) + SourceIndex(1) --- >>> normalN.C = C; 1->^^^^^^^^ @@ -707,10 +709,10 @@ sourceFile:../lib/file1.ts 2 > C 3 > { } 4 > -1->Emitted(27, 9) Source(10, 32) + SourceIndex(1) -2 >Emitted(27, 18) Source(10, 33) + SourceIndex(1) -3 >Emitted(27, 22) Source(10, 37) + SourceIndex(1) -4 >Emitted(27, 23) Source(10, 37) + SourceIndex(1) +1->Emitted(28, 9) Source(10, 32) + SourceIndex(1) +2 >Emitted(28, 18) Source(10, 33) + SourceIndex(1) +3 >Emitted(28, 22) Source(10, 37) + SourceIndex(1) +4 >Emitted(28, 23) Source(10, 37) + SourceIndex(1) --- >>> /*@internal*/ function foo() { } 1->^^^^^^^^ @@ -728,13 +730,13 @@ sourceFile:../lib/file1.ts 5 > foo 6 > () { 7 > } -1->Emitted(28, 9) Source(11, 5) + SourceIndex(1) -2 >Emitted(28, 22) Source(11, 18) + SourceIndex(1) -3 >Emitted(28, 23) Source(11, 19) + SourceIndex(1) -4 >Emitted(28, 32) Source(11, 35) + SourceIndex(1) -5 >Emitted(28, 35) Source(11, 38) + SourceIndex(1) -6 >Emitted(28, 40) Source(11, 42) + SourceIndex(1) -7 >Emitted(28, 41) Source(11, 43) + SourceIndex(1) +1->Emitted(29, 9) Source(11, 5) + SourceIndex(1) +2 >Emitted(29, 22) Source(11, 18) + SourceIndex(1) +3 >Emitted(29, 23) Source(11, 19) + SourceIndex(1) +4 >Emitted(29, 32) Source(11, 35) + SourceIndex(1) +5 >Emitted(29, 35) Source(11, 38) + SourceIndex(1) +6 >Emitted(29, 40) Source(11, 42) + SourceIndex(1) +7 >Emitted(29, 41) Source(11, 43) + SourceIndex(1) --- >>> normalN.foo = foo; 1 >^^^^^^^^ @@ -746,10 +748,10 @@ sourceFile:../lib/file1.ts 2 > foo 3 > () {} 4 > -1 >Emitted(29, 9) Source(11, 35) + SourceIndex(1) -2 >Emitted(29, 20) Source(11, 38) + SourceIndex(1) -3 >Emitted(29, 26) Source(11, 43) + SourceIndex(1) -4 >Emitted(29, 27) Source(11, 43) + SourceIndex(1) +1 >Emitted(30, 9) Source(11, 35) + SourceIndex(1) +2 >Emitted(30, 20) Source(11, 38) + SourceIndex(1) +3 >Emitted(30, 26) Source(11, 43) + SourceIndex(1) +4 >Emitted(30, 27) Source(11, 43) + SourceIndex(1) --- >>> /*@internal*/ var someNamespace; 1->^^^^^^^^ @@ -765,12 +767,12 @@ sourceFile:../lib/file1.ts 4 > export namespace 5 > someNamespace 6 > { export class C {} } -1->Emitted(30, 9) Source(12, 5) + SourceIndex(1) -2 >Emitted(30, 22) Source(12, 18) + SourceIndex(1) -3 >Emitted(30, 23) Source(12, 19) + SourceIndex(1) -4 >Emitted(30, 27) Source(12, 36) + SourceIndex(1) -5 >Emitted(30, 40) Source(12, 49) + SourceIndex(1) -6 >Emitted(30, 41) Source(12, 71) + SourceIndex(1) +1->Emitted(31, 9) Source(12, 5) + SourceIndex(1) +2 >Emitted(31, 22) Source(12, 18) + SourceIndex(1) +3 >Emitted(31, 23) Source(12, 19) + SourceIndex(1) +4 >Emitted(31, 27) Source(12, 36) + SourceIndex(1) +5 >Emitted(31, 40) Source(12, 49) + SourceIndex(1) +6 >Emitted(31, 41) Source(12, 71) + SourceIndex(1) --- >>> (function (someNamespace) { 1 >^^^^^^^^ @@ -780,21 +782,21 @@ sourceFile:../lib/file1.ts 1 > 2 > export namespace 3 > someNamespace -1 >Emitted(31, 9) Source(12, 19) + SourceIndex(1) -2 >Emitted(31, 20) Source(12, 36) + SourceIndex(1) -3 >Emitted(31, 33) Source(12, 49) + SourceIndex(1) +1 >Emitted(32, 9) Source(12, 19) + SourceIndex(1) +2 >Emitted(32, 20) Source(12, 36) + SourceIndex(1) +3 >Emitted(32, 33) Source(12, 49) + SourceIndex(1) --- >>> var C = /** @class */ (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(32, 13) Source(12, 52) + SourceIndex(1) +1->Emitted(33, 13) Source(12, 52) + SourceIndex(1) --- >>> function C() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(33, 17) Source(12, 52) + SourceIndex(1) +1->Emitted(34, 17) Source(12, 52) + SourceIndex(1) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -802,16 +804,16 @@ sourceFile:../lib/file1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(34, 17) Source(12, 68) + SourceIndex(1) -2 >Emitted(34, 18) Source(12, 69) + SourceIndex(1) +1->Emitted(35, 17) Source(12, 68) + SourceIndex(1) +2 >Emitted(35, 18) Source(12, 69) + SourceIndex(1) --- >>> return C; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(35, 17) Source(12, 68) + SourceIndex(1) -2 >Emitted(35, 25) Source(12, 69) + SourceIndex(1) +1->Emitted(36, 17) Source(12, 68) + SourceIndex(1) +2 >Emitted(36, 25) Source(12, 69) + SourceIndex(1) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -823,10 +825,10 @@ sourceFile:../lib/file1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(36, 13) Source(12, 68) + SourceIndex(1) -2 >Emitted(36, 14) Source(12, 69) + SourceIndex(1) -3 >Emitted(36, 14) Source(12, 52) + SourceIndex(1) -4 >Emitted(36, 18) Source(12, 69) + SourceIndex(1) +1 >Emitted(37, 13) Source(12, 68) + SourceIndex(1) +2 >Emitted(37, 14) Source(12, 69) + SourceIndex(1) +3 >Emitted(37, 14) Source(12, 52) + SourceIndex(1) +4 >Emitted(37, 18) Source(12, 69) + SourceIndex(1) --- >>> someNamespace.C = C; 1->^^^^^^^^^^^^ @@ -838,10 +840,10 @@ sourceFile:../lib/file1.ts 2 > C 3 > {} 4 > -1->Emitted(37, 13) Source(12, 65) + SourceIndex(1) -2 >Emitted(37, 28) Source(12, 66) + SourceIndex(1) -3 >Emitted(37, 32) Source(12, 69) + SourceIndex(1) -4 >Emitted(37, 33) Source(12, 69) + SourceIndex(1) +1->Emitted(38, 13) Source(12, 65) + SourceIndex(1) +2 >Emitted(38, 28) Source(12, 66) + SourceIndex(1) +3 >Emitted(38, 32) Source(12, 69) + SourceIndex(1) +4 >Emitted(38, 33) Source(12, 69) + SourceIndex(1) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^^^^^ @@ -862,15 +864,15 @@ sourceFile:../lib/file1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(38, 9) Source(12, 70) + SourceIndex(1) -2 >Emitted(38, 10) Source(12, 71) + SourceIndex(1) -3 >Emitted(38, 12) Source(12, 36) + SourceIndex(1) -4 >Emitted(38, 25) Source(12, 49) + SourceIndex(1) -5 >Emitted(38, 28) Source(12, 36) + SourceIndex(1) -6 >Emitted(38, 49) Source(12, 49) + SourceIndex(1) -7 >Emitted(38, 54) Source(12, 36) + SourceIndex(1) -8 >Emitted(38, 75) Source(12, 49) + SourceIndex(1) -9 >Emitted(38, 83) Source(12, 71) + SourceIndex(1) +1->Emitted(39, 9) Source(12, 70) + SourceIndex(1) +2 >Emitted(39, 10) Source(12, 71) + SourceIndex(1) +3 >Emitted(39, 12) Source(12, 36) + SourceIndex(1) +4 >Emitted(39, 25) Source(12, 49) + SourceIndex(1) +5 >Emitted(39, 28) Source(12, 36) + SourceIndex(1) +6 >Emitted(39, 49) Source(12, 49) + SourceIndex(1) +7 >Emitted(39, 54) Source(12, 36) + SourceIndex(1) +8 >Emitted(39, 75) Source(12, 49) + SourceIndex(1) +9 >Emitted(39, 83) Source(12, 71) + SourceIndex(1) --- >>> /*@internal*/ var someOther; 1 >^^^^^^^^ @@ -886,12 +888,12 @@ sourceFile:../lib/file1.ts 4 > export namespace 5 > someOther 6 > .something { export class someClass {} } -1 >Emitted(39, 9) Source(13, 5) + SourceIndex(1) -2 >Emitted(39, 22) Source(13, 18) + SourceIndex(1) -3 >Emitted(39, 23) Source(13, 19) + SourceIndex(1) -4 >Emitted(39, 27) Source(13, 36) + SourceIndex(1) -5 >Emitted(39, 36) Source(13, 45) + SourceIndex(1) -6 >Emitted(39, 37) Source(13, 85) + SourceIndex(1) +1 >Emitted(40, 9) Source(13, 5) + SourceIndex(1) +2 >Emitted(40, 22) Source(13, 18) + SourceIndex(1) +3 >Emitted(40, 23) Source(13, 19) + SourceIndex(1) +4 >Emitted(40, 27) Source(13, 36) + SourceIndex(1) +5 >Emitted(40, 36) Source(13, 45) + SourceIndex(1) +6 >Emitted(40, 37) Source(13, 85) + SourceIndex(1) --- >>> (function (someOther) { 1 >^^^^^^^^ @@ -900,9 +902,9 @@ sourceFile:../lib/file1.ts 1 > 2 > export namespace 3 > someOther -1 >Emitted(40, 9) Source(13, 19) + SourceIndex(1) -2 >Emitted(40, 20) Source(13, 36) + SourceIndex(1) -3 >Emitted(40, 29) Source(13, 45) + SourceIndex(1) +1 >Emitted(41, 9) Source(13, 19) + SourceIndex(1) +2 >Emitted(41, 20) Source(13, 36) + SourceIndex(1) +3 >Emitted(41, 29) Source(13, 45) + SourceIndex(1) --- >>> var something; 1 >^^^^^^^^^^^^ @@ -914,10 +916,10 @@ sourceFile:../lib/file1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(41, 13) Source(13, 46) + SourceIndex(1) -2 >Emitted(41, 17) Source(13, 46) + SourceIndex(1) -3 >Emitted(41, 26) Source(13, 55) + SourceIndex(1) -4 >Emitted(41, 27) Source(13, 85) + SourceIndex(1) +1 >Emitted(42, 13) Source(13, 46) + SourceIndex(1) +2 >Emitted(42, 17) Source(13, 46) + SourceIndex(1) +3 >Emitted(42, 26) Source(13, 55) + SourceIndex(1) +4 >Emitted(42, 27) Source(13, 85) + SourceIndex(1) --- >>> (function (something) { 1->^^^^^^^^^^^^ @@ -927,21 +929,21 @@ sourceFile:../lib/file1.ts 1-> 2 > 3 > something -1->Emitted(42, 13) Source(13, 46) + SourceIndex(1) -2 >Emitted(42, 24) Source(13, 46) + SourceIndex(1) -3 >Emitted(42, 33) Source(13, 55) + SourceIndex(1) +1->Emitted(43, 13) Source(13, 46) + SourceIndex(1) +2 >Emitted(43, 24) Source(13, 46) + SourceIndex(1) +3 >Emitted(43, 33) Source(13, 55) + SourceIndex(1) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(43, 17) Source(13, 58) + SourceIndex(1) +1->Emitted(44, 17) Source(13, 58) + SourceIndex(1) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(44, 21) Source(13, 58) + SourceIndex(1) +1->Emitted(45, 21) Source(13, 58) + SourceIndex(1) --- >>> } 1->^^^^^^^^^^^^^^^^^^^^ @@ -949,16 +951,16 @@ sourceFile:../lib/file1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(45, 21) Source(13, 82) + SourceIndex(1) -2 >Emitted(45, 22) Source(13, 83) + SourceIndex(1) +1->Emitted(46, 21) Source(13, 82) + SourceIndex(1) +2 >Emitted(46, 22) Source(13, 83) + SourceIndex(1) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(46, 21) Source(13, 82) + SourceIndex(1) -2 >Emitted(46, 37) Source(13, 83) + SourceIndex(1) +1->Emitted(47, 21) Source(13, 82) + SourceIndex(1) +2 >Emitted(47, 37) Source(13, 83) + SourceIndex(1) --- >>> }()); 1 >^^^^^^^^^^^^^^^^ @@ -970,10 +972,10 @@ sourceFile:../lib/file1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(47, 17) Source(13, 82) + SourceIndex(1) -2 >Emitted(47, 18) Source(13, 83) + SourceIndex(1) -3 >Emitted(47, 18) Source(13, 58) + SourceIndex(1) -4 >Emitted(47, 22) Source(13, 83) + SourceIndex(1) +1 >Emitted(48, 17) Source(13, 82) + SourceIndex(1) +2 >Emitted(48, 18) Source(13, 83) + SourceIndex(1) +3 >Emitted(48, 18) Source(13, 58) + SourceIndex(1) +4 >Emitted(48, 22) Source(13, 83) + SourceIndex(1) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^^^^^ @@ -985,10 +987,10 @@ sourceFile:../lib/file1.ts 2 > someClass 3 > {} 4 > -1->Emitted(48, 17) Source(13, 71) + SourceIndex(1) -2 >Emitted(48, 36) Source(13, 80) + SourceIndex(1) -3 >Emitted(48, 48) Source(13, 83) + SourceIndex(1) -4 >Emitted(48, 49) Source(13, 83) + SourceIndex(1) +1->Emitted(49, 17) Source(13, 71) + SourceIndex(1) +2 >Emitted(49, 36) Source(13, 80) + SourceIndex(1) +3 >Emitted(49, 48) Source(13, 83) + SourceIndex(1) +4 >Emitted(49, 49) Source(13, 83) + SourceIndex(1) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^^^^^ @@ -1009,15 +1011,15 @@ sourceFile:../lib/file1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(49, 13) Source(13, 84) + SourceIndex(1) -2 >Emitted(49, 14) Source(13, 85) + SourceIndex(1) -3 >Emitted(49, 16) Source(13, 46) + SourceIndex(1) -4 >Emitted(49, 25) Source(13, 55) + SourceIndex(1) -5 >Emitted(49, 28) Source(13, 46) + SourceIndex(1) -6 >Emitted(49, 47) Source(13, 55) + SourceIndex(1) -7 >Emitted(49, 52) Source(13, 46) + SourceIndex(1) -8 >Emitted(49, 71) Source(13, 55) + SourceIndex(1) -9 >Emitted(49, 79) Source(13, 85) + SourceIndex(1) +1->Emitted(50, 13) Source(13, 84) + SourceIndex(1) +2 >Emitted(50, 14) Source(13, 85) + SourceIndex(1) +3 >Emitted(50, 16) Source(13, 46) + SourceIndex(1) +4 >Emitted(50, 25) Source(13, 55) + SourceIndex(1) +5 >Emitted(50, 28) Source(13, 46) + SourceIndex(1) +6 >Emitted(50, 47) Source(13, 55) + SourceIndex(1) +7 >Emitted(50, 52) Source(13, 46) + SourceIndex(1) +8 >Emitted(50, 71) Source(13, 55) + SourceIndex(1) +9 >Emitted(50, 79) Source(13, 85) + SourceIndex(1) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^^^^^ @@ -1038,15 +1040,15 @@ sourceFile:../lib/file1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(50, 9) Source(13, 84) + SourceIndex(1) -2 >Emitted(50, 10) Source(13, 85) + SourceIndex(1) -3 >Emitted(50, 12) Source(13, 36) + SourceIndex(1) -4 >Emitted(50, 21) Source(13, 45) + SourceIndex(1) -5 >Emitted(50, 24) Source(13, 36) + SourceIndex(1) -6 >Emitted(50, 41) Source(13, 45) + SourceIndex(1) -7 >Emitted(50, 46) Source(13, 36) + SourceIndex(1) -8 >Emitted(50, 63) Source(13, 45) + SourceIndex(1) -9 >Emitted(50, 71) Source(13, 85) + SourceIndex(1) +1 >Emitted(51, 9) Source(13, 84) + SourceIndex(1) +2 >Emitted(51, 10) Source(13, 85) + SourceIndex(1) +3 >Emitted(51, 12) Source(13, 36) + SourceIndex(1) +4 >Emitted(51, 21) Source(13, 45) + SourceIndex(1) +5 >Emitted(51, 24) Source(13, 36) + SourceIndex(1) +6 >Emitted(51, 41) Source(13, 45) + SourceIndex(1) +7 >Emitted(51, 46) Source(13, 36) + SourceIndex(1) +8 >Emitted(51, 63) Source(13, 45) + SourceIndex(1) +9 >Emitted(51, 71) Source(13, 85) + SourceIndex(1) --- >>> /*@internal*/ normalN.someImport = someNamespace.C; 1 >^^^^^^^^ @@ -1068,15 +1070,15 @@ sourceFile:../lib/file1.ts 7 > . 8 > C 9 > ; -1 >Emitted(51, 9) Source(14, 5) + SourceIndex(1) -2 >Emitted(51, 22) Source(14, 18) + SourceIndex(1) -3 >Emitted(51, 23) Source(14, 33) + SourceIndex(1) -4 >Emitted(51, 41) Source(14, 43) + SourceIndex(1) -5 >Emitted(51, 44) Source(14, 46) + SourceIndex(1) -6 >Emitted(51, 57) Source(14, 59) + SourceIndex(1) -7 >Emitted(51, 58) Source(14, 60) + SourceIndex(1) -8 >Emitted(51, 59) Source(14, 61) + SourceIndex(1) -9 >Emitted(51, 60) Source(14, 62) + SourceIndex(1) +1 >Emitted(52, 9) Source(14, 5) + SourceIndex(1) +2 >Emitted(52, 22) Source(14, 18) + SourceIndex(1) +3 >Emitted(52, 23) Source(14, 33) + SourceIndex(1) +4 >Emitted(52, 41) Source(14, 43) + SourceIndex(1) +5 >Emitted(52, 44) Source(14, 46) + SourceIndex(1) +6 >Emitted(52, 57) Source(14, 59) + SourceIndex(1) +7 >Emitted(52, 58) Source(14, 60) + SourceIndex(1) +8 >Emitted(52, 59) Source(14, 61) + SourceIndex(1) +9 >Emitted(52, 60) Source(14, 62) + SourceIndex(1) --- >>> /*@internal*/ normalN.internalConst = 10; 1 >^^^^^^^^ @@ -1095,13 +1097,13 @@ sourceFile:../lib/file1.ts 5 > = 6 > 10 7 > ; -1 >Emitted(52, 9) Source(16, 5) + SourceIndex(1) -2 >Emitted(52, 22) Source(16, 18) + SourceIndex(1) -3 >Emitted(52, 23) Source(16, 32) + SourceIndex(1) -4 >Emitted(52, 44) Source(16, 45) + SourceIndex(1) -5 >Emitted(52, 47) Source(16, 48) + SourceIndex(1) -6 >Emitted(52, 49) Source(16, 50) + SourceIndex(1) -7 >Emitted(52, 50) Source(16, 51) + SourceIndex(1) +1 >Emitted(53, 9) Source(16, 5) + SourceIndex(1) +2 >Emitted(53, 22) Source(16, 18) + SourceIndex(1) +3 >Emitted(53, 23) Source(16, 32) + SourceIndex(1) +4 >Emitted(53, 44) Source(16, 45) + SourceIndex(1) +5 >Emitted(53, 47) Source(16, 48) + SourceIndex(1) +6 >Emitted(53, 49) Source(16, 50) + SourceIndex(1) +7 >Emitted(53, 50) Source(16, 51) + SourceIndex(1) --- >>> /*@internal*/ var internalEnum; 1 >^^^^^^^^ @@ -1115,11 +1117,11 @@ sourceFile:../lib/file1.ts 3 > 4 > export enum 5 > internalEnum { a, b, c } -1 >Emitted(53, 9) Source(17, 5) + SourceIndex(1) -2 >Emitted(53, 22) Source(17, 18) + SourceIndex(1) -3 >Emitted(53, 23) Source(17, 19) + SourceIndex(1) -4 >Emitted(53, 27) Source(17, 31) + SourceIndex(1) -5 >Emitted(53, 39) Source(17, 55) + SourceIndex(1) +1 >Emitted(54, 9) Source(17, 5) + SourceIndex(1) +2 >Emitted(54, 22) Source(17, 18) + SourceIndex(1) +3 >Emitted(54, 23) Source(17, 19) + SourceIndex(1) +4 >Emitted(54, 27) Source(17, 31) + SourceIndex(1) +5 >Emitted(54, 39) Source(17, 55) + SourceIndex(1) --- >>> (function (internalEnum) { 1 >^^^^^^^^ @@ -1129,9 +1131,9 @@ sourceFile:../lib/file1.ts 1 > 2 > export enum 3 > internalEnum -1 >Emitted(54, 9) Source(17, 19) + SourceIndex(1) -2 >Emitted(54, 20) Source(17, 31) + SourceIndex(1) -3 >Emitted(54, 32) Source(17, 43) + SourceIndex(1) +1 >Emitted(55, 9) Source(17, 19) + SourceIndex(1) +2 >Emitted(55, 20) Source(17, 31) + SourceIndex(1) +3 >Emitted(55, 32) Source(17, 43) + SourceIndex(1) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^^^^^ @@ -1141,9 +1143,9 @@ sourceFile:../lib/file1.ts 1-> { 2 > a 3 > -1->Emitted(55, 13) Source(17, 46) + SourceIndex(1) -2 >Emitted(55, 54) Source(17, 47) + SourceIndex(1) -3 >Emitted(55, 55) Source(17, 47) + SourceIndex(1) +1->Emitted(56, 13) Source(17, 46) + SourceIndex(1) +2 >Emitted(56, 54) Source(17, 47) + SourceIndex(1) +3 >Emitted(56, 55) Source(17, 47) + SourceIndex(1) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^^^^^ @@ -1153,9 +1155,9 @@ sourceFile:../lib/file1.ts 1->, 2 > b 3 > -1->Emitted(56, 13) Source(17, 49) + SourceIndex(1) -2 >Emitted(56, 54) Source(17, 50) + SourceIndex(1) -3 >Emitted(56, 55) Source(17, 50) + SourceIndex(1) +1->Emitted(57, 13) Source(17, 49) + SourceIndex(1) +2 >Emitted(57, 54) Source(17, 50) + SourceIndex(1) +3 >Emitted(57, 55) Source(17, 50) + SourceIndex(1) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^^^^^ @@ -1165,9 +1167,9 @@ sourceFile:../lib/file1.ts 1->, 2 > c 3 > -1->Emitted(57, 13) Source(17, 52) + SourceIndex(1) -2 >Emitted(57, 54) Source(17, 53) + SourceIndex(1) -3 >Emitted(57, 55) Source(17, 53) + SourceIndex(1) +1->Emitted(58, 13) Source(17, 52) + SourceIndex(1) +2 >Emitted(58, 54) Source(17, 53) + SourceIndex(1) +3 >Emitted(58, 55) Source(17, 53) + SourceIndex(1) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^^^^^ @@ -1188,15 +1190,15 @@ sourceFile:../lib/file1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(58, 9) Source(17, 54) + SourceIndex(1) -2 >Emitted(58, 10) Source(17, 55) + SourceIndex(1) -3 >Emitted(58, 12) Source(17, 31) + SourceIndex(1) -4 >Emitted(58, 24) Source(17, 43) + SourceIndex(1) -5 >Emitted(58, 27) Source(17, 31) + SourceIndex(1) -6 >Emitted(58, 47) Source(17, 43) + SourceIndex(1) -7 >Emitted(58, 52) Source(17, 31) + SourceIndex(1) -8 >Emitted(58, 72) Source(17, 43) + SourceIndex(1) -9 >Emitted(58, 80) Source(17, 55) + SourceIndex(1) +1->Emitted(59, 9) Source(17, 54) + SourceIndex(1) +2 >Emitted(59, 10) Source(17, 55) + SourceIndex(1) +3 >Emitted(59, 12) Source(17, 31) + SourceIndex(1) +4 >Emitted(59, 24) Source(17, 43) + SourceIndex(1) +5 >Emitted(59, 27) Source(17, 31) + SourceIndex(1) +6 >Emitted(59, 47) Source(17, 43) + SourceIndex(1) +7 >Emitted(59, 52) Source(17, 31) + SourceIndex(1) +8 >Emitted(59, 72) Source(17, 43) + SourceIndex(1) +9 >Emitted(59, 80) Source(17, 55) + SourceIndex(1) --- >>> })(normalN = exports.normalN || (exports.normalN = {})); 1 >^^^^ @@ -1228,15 +1230,15 @@ sourceFile:../lib/file1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(59, 5) Source(18, 1) + SourceIndex(1) -2 >Emitted(59, 6) Source(18, 2) + SourceIndex(1) -3 >Emitted(59, 8) Source(9, 18) + SourceIndex(1) -4 >Emitted(59, 15) Source(9, 25) + SourceIndex(1) -5 >Emitted(59, 18) Source(9, 18) + SourceIndex(1) -6 >Emitted(59, 33) Source(9, 25) + SourceIndex(1) -7 >Emitted(59, 38) Source(9, 18) + SourceIndex(1) -8 >Emitted(59, 53) Source(9, 25) + SourceIndex(1) -9 >Emitted(59, 61) Source(18, 2) + SourceIndex(1) +1 >Emitted(60, 5) Source(18, 1) + SourceIndex(1) +2 >Emitted(60, 6) Source(18, 2) + SourceIndex(1) +3 >Emitted(60, 8) Source(9, 18) + SourceIndex(1) +4 >Emitted(60, 15) Source(9, 25) + SourceIndex(1) +5 >Emitted(60, 18) Source(9, 18) + SourceIndex(1) +6 >Emitted(60, 33) Source(9, 25) + SourceIndex(1) +7 >Emitted(60, 38) Source(9, 18) + SourceIndex(1) +8 >Emitted(60, 53) Source(9, 25) + SourceIndex(1) +9 >Emitted(60, 61) Source(18, 2) + SourceIndex(1) --- >>> /*@internal*/ var internalC = /** @class */ (function () { 1->^^^^ @@ -1247,15 +1249,15 @@ sourceFile:../lib/file1.ts > 2 > /*@internal*/ 3 > -1->Emitted(60, 5) Source(19, 1) + SourceIndex(1) -2 >Emitted(60, 18) Source(19, 14) + SourceIndex(1) -3 >Emitted(60, 19) Source(19, 15) + SourceIndex(1) +1->Emitted(61, 5) Source(19, 1) + SourceIndex(1) +2 >Emitted(61, 18) Source(19, 14) + SourceIndex(1) +3 >Emitted(61, 19) Source(19, 15) + SourceIndex(1) --- >>> function internalC() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(61, 9) Source(19, 15) + SourceIndex(1) +1->Emitted(62, 9) Source(19, 15) + SourceIndex(1) --- >>> } 1->^^^^^^^^ @@ -1263,16 +1265,16 @@ sourceFile:../lib/file1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class internalC { 2 > } -1->Emitted(62, 9) Source(19, 39) + SourceIndex(1) -2 >Emitted(62, 10) Source(19, 40) + SourceIndex(1) +1->Emitted(63, 9) Source(19, 39) + SourceIndex(1) +2 >Emitted(63, 10) Source(19, 40) + SourceIndex(1) --- >>> return internalC; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(63, 9) Source(19, 39) + SourceIndex(1) -2 >Emitted(63, 25) Source(19, 40) + SourceIndex(1) +1->Emitted(64, 9) Source(19, 39) + SourceIndex(1) +2 >Emitted(64, 25) Source(19, 40) + SourceIndex(1) --- >>> }()); 1 >^^^^ @@ -1284,10 +1286,10 @@ sourceFile:../lib/file1.ts 2 > } 3 > 4 > export class internalC {} -1 >Emitted(64, 5) Source(19, 39) + SourceIndex(1) -2 >Emitted(64, 6) Source(19, 40) + SourceIndex(1) -3 >Emitted(64, 6) Source(19, 15) + SourceIndex(1) -4 >Emitted(64, 10) Source(19, 40) + SourceIndex(1) +1 >Emitted(65, 5) Source(19, 39) + SourceIndex(1) +2 >Emitted(65, 6) Source(19, 40) + SourceIndex(1) +3 >Emitted(65, 6) Source(19, 15) + SourceIndex(1) +4 >Emitted(65, 10) Source(19, 40) + SourceIndex(1) --- >>> exports.internalC = internalC; 1->^^^^ @@ -1295,8 +1297,8 @@ sourceFile:../lib/file1.ts 3 > ^^^^^^^^^^^-> 1-> 2 > internalC -1->Emitted(65, 5) Source(19, 28) + SourceIndex(1) -2 >Emitted(65, 35) Source(19, 37) + SourceIndex(1) +1->Emitted(66, 5) Source(19, 28) + SourceIndex(1) +2 >Emitted(66, 35) Source(19, 37) + SourceIndex(1) --- >>> /*@internal*/ function internalfoo() { } 1->^^^^ @@ -1314,13 +1316,13 @@ sourceFile:../lib/file1.ts 5 > internalfoo 6 > () { 7 > } -1->Emitted(66, 5) Source(20, 1) + SourceIndex(1) -2 >Emitted(66, 18) Source(20, 14) + SourceIndex(1) -3 >Emitted(66, 19) Source(20, 15) + SourceIndex(1) -4 >Emitted(66, 28) Source(20, 31) + SourceIndex(1) -5 >Emitted(66, 39) Source(20, 42) + SourceIndex(1) -6 >Emitted(66, 44) Source(20, 46) + SourceIndex(1) -7 >Emitted(66, 45) Source(20, 47) + SourceIndex(1) +1->Emitted(67, 5) Source(20, 1) + SourceIndex(1) +2 >Emitted(67, 18) Source(20, 14) + SourceIndex(1) +3 >Emitted(67, 19) Source(20, 15) + SourceIndex(1) +4 >Emitted(67, 28) Source(20, 31) + SourceIndex(1) +5 >Emitted(67, 39) Source(20, 42) + SourceIndex(1) +6 >Emitted(67, 44) Source(20, 46) + SourceIndex(1) +7 >Emitted(67, 45) Source(20, 47) + SourceIndex(1) --- >>> exports.internalfoo = internalfoo; 1 >^^^^ @@ -1328,8 +1330,8 @@ sourceFile:../lib/file1.ts 3 > ^^^-> 1 > 2 > export function internalfoo() {} -1 >Emitted(67, 5) Source(20, 15) + SourceIndex(1) -2 >Emitted(67, 39) Source(20, 47) + SourceIndex(1) +1 >Emitted(68, 5) Source(20, 15) + SourceIndex(1) +2 >Emitted(68, 39) Source(20, 47) + SourceIndex(1) --- >>> /*@internal*/ var internalNamespace; 1->^^^^ @@ -1345,12 +1347,12 @@ sourceFile:../lib/file1.ts 4 > export namespace 5 > internalNamespace 6 > { export class someClass {} } -1->Emitted(68, 5) Source(21, 1) + SourceIndex(1) -2 >Emitted(68, 18) Source(21, 14) + SourceIndex(1) -3 >Emitted(68, 19) Source(21, 15) + SourceIndex(1) -4 >Emitted(68, 23) Source(21, 32) + SourceIndex(1) -5 >Emitted(68, 40) Source(21, 49) + SourceIndex(1) -6 >Emitted(68, 41) Source(21, 79) + SourceIndex(1) +1->Emitted(69, 5) Source(21, 1) + SourceIndex(1) +2 >Emitted(69, 18) Source(21, 14) + SourceIndex(1) +3 >Emitted(69, 19) Source(21, 15) + SourceIndex(1) +4 >Emitted(69, 23) Source(21, 32) + SourceIndex(1) +5 >Emitted(69, 40) Source(21, 49) + SourceIndex(1) +6 >Emitted(69, 41) Source(21, 79) + SourceIndex(1) --- >>> (function (internalNamespace) { 1 >^^^^ @@ -1360,21 +1362,21 @@ sourceFile:../lib/file1.ts 1 > 2 > export namespace 3 > internalNamespace -1 >Emitted(69, 5) Source(21, 15) + SourceIndex(1) -2 >Emitted(69, 16) Source(21, 32) + SourceIndex(1) -3 >Emitted(69, 33) Source(21, 49) + SourceIndex(1) +1 >Emitted(70, 5) Source(21, 15) + SourceIndex(1) +2 >Emitted(70, 16) Source(21, 32) + SourceIndex(1) +3 >Emitted(70, 33) Source(21, 49) + SourceIndex(1) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(70, 9) Source(21, 52) + SourceIndex(1) +1->Emitted(71, 9) Source(21, 52) + SourceIndex(1) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(71, 13) Source(21, 52) + SourceIndex(1) +1->Emitted(72, 13) Source(21, 52) + SourceIndex(1) --- >>> } 1->^^^^^^^^^^^^ @@ -1382,16 +1384,16 @@ sourceFile:../lib/file1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(72, 13) Source(21, 76) + SourceIndex(1) -2 >Emitted(72, 14) Source(21, 77) + SourceIndex(1) +1->Emitted(73, 13) Source(21, 76) + SourceIndex(1) +2 >Emitted(73, 14) Source(21, 77) + SourceIndex(1) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(73, 13) Source(21, 76) + SourceIndex(1) -2 >Emitted(73, 29) Source(21, 77) + SourceIndex(1) +1->Emitted(74, 13) Source(21, 76) + SourceIndex(1) +2 >Emitted(74, 29) Source(21, 77) + SourceIndex(1) --- >>> }()); 1 >^^^^^^^^ @@ -1403,10 +1405,10 @@ sourceFile:../lib/file1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(74, 9) Source(21, 76) + SourceIndex(1) -2 >Emitted(74, 10) Source(21, 77) + SourceIndex(1) -3 >Emitted(74, 10) Source(21, 52) + SourceIndex(1) -4 >Emitted(74, 14) Source(21, 77) + SourceIndex(1) +1 >Emitted(75, 9) Source(21, 76) + SourceIndex(1) +2 >Emitted(75, 10) Source(21, 77) + SourceIndex(1) +3 >Emitted(75, 10) Source(21, 52) + SourceIndex(1) +4 >Emitted(75, 14) Source(21, 77) + SourceIndex(1) --- >>> internalNamespace.someClass = someClass; 1->^^^^^^^^ @@ -1418,10 +1420,10 @@ sourceFile:../lib/file1.ts 2 > someClass 3 > {} 4 > -1->Emitted(75, 9) Source(21, 65) + SourceIndex(1) -2 >Emitted(75, 36) Source(21, 74) + SourceIndex(1) -3 >Emitted(75, 48) Source(21, 77) + SourceIndex(1) -4 >Emitted(75, 49) Source(21, 77) + SourceIndex(1) +1->Emitted(76, 9) Source(21, 65) + SourceIndex(1) +2 >Emitted(76, 36) Source(21, 74) + SourceIndex(1) +3 >Emitted(76, 48) Source(21, 77) + SourceIndex(1) +4 >Emitted(76, 49) Source(21, 77) + SourceIndex(1) --- >>> })(internalNamespace = exports.internalNamespace || (exports.internalNamespace = {})); 1->^^^^ @@ -1442,15 +1444,15 @@ sourceFile:../lib/file1.ts 7 > 8 > internalNamespace 9 > { export class someClass {} } -1->Emitted(76, 5) Source(21, 78) + SourceIndex(1) -2 >Emitted(76, 6) Source(21, 79) + SourceIndex(1) -3 >Emitted(76, 8) Source(21, 32) + SourceIndex(1) -4 >Emitted(76, 25) Source(21, 49) + SourceIndex(1) -5 >Emitted(76, 28) Source(21, 32) + SourceIndex(1) -6 >Emitted(76, 53) Source(21, 49) + SourceIndex(1) -7 >Emitted(76, 58) Source(21, 32) + SourceIndex(1) -8 >Emitted(76, 83) Source(21, 49) + SourceIndex(1) -9 >Emitted(76, 91) Source(21, 79) + SourceIndex(1) +1->Emitted(77, 5) Source(21, 78) + SourceIndex(1) +2 >Emitted(77, 6) Source(21, 79) + SourceIndex(1) +3 >Emitted(77, 8) Source(21, 32) + SourceIndex(1) +4 >Emitted(77, 25) Source(21, 49) + SourceIndex(1) +5 >Emitted(77, 28) Source(21, 32) + SourceIndex(1) +6 >Emitted(77, 53) Source(21, 49) + SourceIndex(1) +7 >Emitted(77, 58) Source(21, 32) + SourceIndex(1) +8 >Emitted(77, 83) Source(21, 49) + SourceIndex(1) +9 >Emitted(77, 91) Source(21, 79) + SourceIndex(1) --- >>> /*@internal*/ var internalOther; 1 >^^^^ @@ -1466,12 +1468,12 @@ sourceFile:../lib/file1.ts 4 > export namespace 5 > internalOther 6 > .something { export class someClass {} } -1 >Emitted(77, 5) Source(22, 1) + SourceIndex(1) -2 >Emitted(77, 18) Source(22, 14) + SourceIndex(1) -3 >Emitted(77, 19) Source(22, 15) + SourceIndex(1) -4 >Emitted(77, 23) Source(22, 32) + SourceIndex(1) -5 >Emitted(77, 36) Source(22, 45) + SourceIndex(1) -6 >Emitted(77, 37) Source(22, 85) + SourceIndex(1) +1 >Emitted(78, 5) Source(22, 1) + SourceIndex(1) +2 >Emitted(78, 18) Source(22, 14) + SourceIndex(1) +3 >Emitted(78, 19) Source(22, 15) + SourceIndex(1) +4 >Emitted(78, 23) Source(22, 32) + SourceIndex(1) +5 >Emitted(78, 36) Source(22, 45) + SourceIndex(1) +6 >Emitted(78, 37) Source(22, 85) + SourceIndex(1) --- >>> (function (internalOther) { 1 >^^^^ @@ -1480,9 +1482,9 @@ sourceFile:../lib/file1.ts 1 > 2 > export namespace 3 > internalOther -1 >Emitted(78, 5) Source(22, 15) + SourceIndex(1) -2 >Emitted(78, 16) Source(22, 32) + SourceIndex(1) -3 >Emitted(78, 29) Source(22, 45) + SourceIndex(1) +1 >Emitted(79, 5) Source(22, 15) + SourceIndex(1) +2 >Emitted(79, 16) Source(22, 32) + SourceIndex(1) +3 >Emitted(79, 29) Source(22, 45) + SourceIndex(1) --- >>> var something; 1 >^^^^^^^^ @@ -1494,10 +1496,10 @@ sourceFile:../lib/file1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(79, 9) Source(22, 46) + SourceIndex(1) -2 >Emitted(79, 13) Source(22, 46) + SourceIndex(1) -3 >Emitted(79, 22) Source(22, 55) + SourceIndex(1) -4 >Emitted(79, 23) Source(22, 85) + SourceIndex(1) +1 >Emitted(80, 9) Source(22, 46) + SourceIndex(1) +2 >Emitted(80, 13) Source(22, 46) + SourceIndex(1) +3 >Emitted(80, 22) Source(22, 55) + SourceIndex(1) +4 >Emitted(80, 23) Source(22, 85) + SourceIndex(1) --- >>> (function (something) { 1->^^^^^^^^ @@ -1507,21 +1509,21 @@ sourceFile:../lib/file1.ts 1-> 2 > 3 > something -1->Emitted(80, 9) Source(22, 46) + SourceIndex(1) -2 >Emitted(80, 20) Source(22, 46) + SourceIndex(1) -3 >Emitted(80, 29) Source(22, 55) + SourceIndex(1) +1->Emitted(81, 9) Source(22, 46) + SourceIndex(1) +2 >Emitted(81, 20) Source(22, 46) + SourceIndex(1) +3 >Emitted(81, 29) Source(22, 55) + SourceIndex(1) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(81, 13) Source(22, 58) + SourceIndex(1) +1->Emitted(82, 13) Source(22, 58) + SourceIndex(1) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(82, 17) Source(22, 58) + SourceIndex(1) +1->Emitted(83, 17) Source(22, 58) + SourceIndex(1) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -1529,16 +1531,16 @@ sourceFile:../lib/file1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(83, 17) Source(22, 82) + SourceIndex(1) -2 >Emitted(83, 18) Source(22, 83) + SourceIndex(1) +1->Emitted(84, 17) Source(22, 82) + SourceIndex(1) +2 >Emitted(84, 18) Source(22, 83) + SourceIndex(1) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(84, 17) Source(22, 82) + SourceIndex(1) -2 >Emitted(84, 33) Source(22, 83) + SourceIndex(1) +1->Emitted(85, 17) Source(22, 82) + SourceIndex(1) +2 >Emitted(85, 33) Source(22, 83) + SourceIndex(1) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -1550,10 +1552,10 @@ sourceFile:../lib/file1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(85, 13) Source(22, 82) + SourceIndex(1) -2 >Emitted(85, 14) Source(22, 83) + SourceIndex(1) -3 >Emitted(85, 14) Source(22, 58) + SourceIndex(1) -4 >Emitted(85, 18) Source(22, 83) + SourceIndex(1) +1 >Emitted(86, 13) Source(22, 82) + SourceIndex(1) +2 >Emitted(86, 14) Source(22, 83) + SourceIndex(1) +3 >Emitted(86, 14) Source(22, 58) + SourceIndex(1) +4 >Emitted(86, 18) Source(22, 83) + SourceIndex(1) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -1565,10 +1567,10 @@ sourceFile:../lib/file1.ts 2 > someClass 3 > {} 4 > -1->Emitted(86, 13) Source(22, 71) + SourceIndex(1) -2 >Emitted(86, 32) Source(22, 80) + SourceIndex(1) -3 >Emitted(86, 44) Source(22, 83) + SourceIndex(1) -4 >Emitted(86, 45) Source(22, 83) + SourceIndex(1) +1->Emitted(87, 13) Source(22, 71) + SourceIndex(1) +2 >Emitted(87, 32) Source(22, 80) + SourceIndex(1) +3 >Emitted(87, 44) Source(22, 83) + SourceIndex(1) +4 >Emitted(87, 45) Source(22, 83) + SourceIndex(1) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^^^^^ @@ -1589,15 +1591,15 @@ sourceFile:../lib/file1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(87, 9) Source(22, 84) + SourceIndex(1) -2 >Emitted(87, 10) Source(22, 85) + SourceIndex(1) -3 >Emitted(87, 12) Source(22, 46) + SourceIndex(1) -4 >Emitted(87, 21) Source(22, 55) + SourceIndex(1) -5 >Emitted(87, 24) Source(22, 46) + SourceIndex(1) -6 >Emitted(87, 47) Source(22, 55) + SourceIndex(1) -7 >Emitted(87, 52) Source(22, 46) + SourceIndex(1) -8 >Emitted(87, 75) Source(22, 55) + SourceIndex(1) -9 >Emitted(87, 83) Source(22, 85) + SourceIndex(1) +1->Emitted(88, 9) Source(22, 84) + SourceIndex(1) +2 >Emitted(88, 10) Source(22, 85) + SourceIndex(1) +3 >Emitted(88, 12) Source(22, 46) + SourceIndex(1) +4 >Emitted(88, 21) Source(22, 55) + SourceIndex(1) +5 >Emitted(88, 24) Source(22, 46) + SourceIndex(1) +6 >Emitted(88, 47) Source(22, 55) + SourceIndex(1) +7 >Emitted(88, 52) Source(22, 46) + SourceIndex(1) +8 >Emitted(88, 75) Source(22, 55) + SourceIndex(1) +9 >Emitted(88, 83) Source(22, 85) + SourceIndex(1) --- >>> })(internalOther = exports.internalOther || (exports.internalOther = {})); 1 >^^^^ @@ -1618,15 +1620,15 @@ sourceFile:../lib/file1.ts 7 > 8 > internalOther 9 > .something { export class someClass {} } -1 >Emitted(88, 5) Source(22, 84) + SourceIndex(1) -2 >Emitted(88, 6) Source(22, 85) + SourceIndex(1) -3 >Emitted(88, 8) Source(22, 32) + SourceIndex(1) -4 >Emitted(88, 21) Source(22, 45) + SourceIndex(1) -5 >Emitted(88, 24) Source(22, 32) + SourceIndex(1) -6 >Emitted(88, 45) Source(22, 45) + SourceIndex(1) -7 >Emitted(88, 50) Source(22, 32) + SourceIndex(1) -8 >Emitted(88, 71) Source(22, 45) + SourceIndex(1) -9 >Emitted(88, 79) Source(22, 85) + SourceIndex(1) +1 >Emitted(89, 5) Source(22, 84) + SourceIndex(1) +2 >Emitted(89, 6) Source(22, 85) + SourceIndex(1) +3 >Emitted(89, 8) Source(22, 32) + SourceIndex(1) +4 >Emitted(89, 21) Source(22, 45) + SourceIndex(1) +5 >Emitted(89, 24) Source(22, 32) + SourceIndex(1) +6 >Emitted(89, 45) Source(22, 45) + SourceIndex(1) +7 >Emitted(89, 50) Source(22, 32) + SourceIndex(1) +8 >Emitted(89, 71) Source(22, 45) + SourceIndex(1) +9 >Emitted(89, 79) Source(22, 85) + SourceIndex(1) --- >>> /*@internal*/ exports.internalImport = internalNamespace.someClass; 1 >^^^^ @@ -1650,16 +1652,16 @@ sourceFile:../lib/file1.ts 8 > . 9 > someClass 10> ; -1 >Emitted(89, 5) Source(23, 1) + SourceIndex(1) -2 >Emitted(89, 18) Source(23, 14) + SourceIndex(1) -3 >Emitted(89, 19) Source(23, 29) + SourceIndex(1) -4 >Emitted(89, 27) Source(23, 29) + SourceIndex(1) -5 >Emitted(89, 41) Source(23, 43) + SourceIndex(1) -6 >Emitted(89, 44) Source(23, 46) + SourceIndex(1) -7 >Emitted(89, 61) Source(23, 63) + SourceIndex(1) -8 >Emitted(89, 62) Source(23, 64) + SourceIndex(1) -9 >Emitted(89, 71) Source(23, 73) + SourceIndex(1) -10>Emitted(89, 72) Source(23, 74) + SourceIndex(1) +1 >Emitted(90, 5) Source(23, 1) + SourceIndex(1) +2 >Emitted(90, 18) Source(23, 14) + SourceIndex(1) +3 >Emitted(90, 19) Source(23, 29) + SourceIndex(1) +4 >Emitted(90, 27) Source(23, 29) + SourceIndex(1) +5 >Emitted(90, 41) Source(23, 43) + SourceIndex(1) +6 >Emitted(90, 44) Source(23, 46) + SourceIndex(1) +7 >Emitted(90, 61) Source(23, 63) + SourceIndex(1) +8 >Emitted(90, 62) Source(23, 64) + SourceIndex(1) +9 >Emitted(90, 71) Source(23, 73) + SourceIndex(1) +10>Emitted(90, 72) Source(23, 74) + SourceIndex(1) --- >>> /*@internal*/ exports.internalConst = 10; 1 >^^^^ @@ -1680,14 +1682,14 @@ sourceFile:../lib/file1.ts 6 > = 7 > 10 8 > ; -1 >Emitted(90, 5) Source(25, 1) + SourceIndex(1) -2 >Emitted(90, 18) Source(25, 14) + SourceIndex(1) -3 >Emitted(90, 19) Source(25, 28) + SourceIndex(1) -4 >Emitted(90, 27) Source(25, 28) + SourceIndex(1) -5 >Emitted(90, 40) Source(25, 41) + SourceIndex(1) -6 >Emitted(90, 43) Source(25, 44) + SourceIndex(1) -7 >Emitted(90, 45) Source(25, 46) + SourceIndex(1) -8 >Emitted(90, 46) Source(25, 47) + SourceIndex(1) +1 >Emitted(91, 5) Source(25, 1) + SourceIndex(1) +2 >Emitted(91, 18) Source(25, 14) + SourceIndex(1) +3 >Emitted(91, 19) Source(25, 28) + SourceIndex(1) +4 >Emitted(91, 27) Source(25, 28) + SourceIndex(1) +5 >Emitted(91, 40) Source(25, 41) + SourceIndex(1) +6 >Emitted(91, 43) Source(25, 44) + SourceIndex(1) +7 >Emitted(91, 45) Source(25, 46) + SourceIndex(1) +8 >Emitted(91, 46) Source(25, 47) + SourceIndex(1) --- >>> /*@internal*/ var internalEnum; 1 >^^^^ @@ -1701,11 +1703,11 @@ sourceFile:../lib/file1.ts 3 > 4 > export enum 5 > internalEnum { a, b, c } -1 >Emitted(91, 5) Source(26, 1) + SourceIndex(1) -2 >Emitted(91, 18) Source(26, 14) + SourceIndex(1) -3 >Emitted(91, 19) Source(26, 15) + SourceIndex(1) -4 >Emitted(91, 23) Source(26, 27) + SourceIndex(1) -5 >Emitted(91, 35) Source(26, 51) + SourceIndex(1) +1 >Emitted(92, 5) Source(26, 1) + SourceIndex(1) +2 >Emitted(92, 18) Source(26, 14) + SourceIndex(1) +3 >Emitted(92, 19) Source(26, 15) + SourceIndex(1) +4 >Emitted(92, 23) Source(26, 27) + SourceIndex(1) +5 >Emitted(92, 35) Source(26, 51) + SourceIndex(1) --- >>> (function (internalEnum) { 1 >^^^^ @@ -1715,9 +1717,9 @@ sourceFile:../lib/file1.ts 1 > 2 > export enum 3 > internalEnum -1 >Emitted(92, 5) Source(26, 15) + SourceIndex(1) -2 >Emitted(92, 16) Source(26, 27) + SourceIndex(1) -3 >Emitted(92, 28) Source(26, 39) + SourceIndex(1) +1 >Emitted(93, 5) Source(26, 15) + SourceIndex(1) +2 >Emitted(93, 16) Source(26, 27) + SourceIndex(1) +3 >Emitted(93, 28) Source(26, 39) + SourceIndex(1) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -1727,9 +1729,9 @@ sourceFile:../lib/file1.ts 1-> { 2 > a 3 > -1->Emitted(93, 9) Source(26, 42) + SourceIndex(1) -2 >Emitted(93, 50) Source(26, 43) + SourceIndex(1) -3 >Emitted(93, 51) Source(26, 43) + SourceIndex(1) +1->Emitted(94, 9) Source(26, 42) + SourceIndex(1) +2 >Emitted(94, 50) Source(26, 43) + SourceIndex(1) +3 >Emitted(94, 51) Source(26, 43) + SourceIndex(1) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -1739,9 +1741,9 @@ sourceFile:../lib/file1.ts 1->, 2 > b 3 > -1->Emitted(94, 9) Source(26, 45) + SourceIndex(1) -2 >Emitted(94, 50) Source(26, 46) + SourceIndex(1) -3 >Emitted(94, 51) Source(26, 46) + SourceIndex(1) +1->Emitted(95, 9) Source(26, 45) + SourceIndex(1) +2 >Emitted(95, 50) Source(26, 46) + SourceIndex(1) +3 >Emitted(95, 51) Source(26, 46) + SourceIndex(1) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -1751,9 +1753,9 @@ sourceFile:../lib/file1.ts 1->, 2 > c 3 > -1->Emitted(95, 9) Source(26, 48) + SourceIndex(1) -2 >Emitted(95, 50) Source(26, 49) + SourceIndex(1) -3 >Emitted(95, 51) Source(26, 49) + SourceIndex(1) +1->Emitted(96, 9) Source(26, 48) + SourceIndex(1) +2 >Emitted(96, 50) Source(26, 49) + SourceIndex(1) +3 >Emitted(96, 51) Source(26, 49) + SourceIndex(1) --- >>> })(internalEnum = exports.internalEnum || (exports.internalEnum = {})); 1->^^^^ @@ -1774,15 +1776,15 @@ sourceFile:../lib/file1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(96, 5) Source(26, 50) + SourceIndex(1) -2 >Emitted(96, 6) Source(26, 51) + SourceIndex(1) -3 >Emitted(96, 8) Source(26, 27) + SourceIndex(1) -4 >Emitted(96, 20) Source(26, 39) + SourceIndex(1) -5 >Emitted(96, 23) Source(26, 27) + SourceIndex(1) -6 >Emitted(96, 43) Source(26, 39) + SourceIndex(1) -7 >Emitted(96, 48) Source(26, 27) + SourceIndex(1) -8 >Emitted(96, 68) Source(26, 39) + SourceIndex(1) -9 >Emitted(96, 76) Source(26, 51) + SourceIndex(1) +1->Emitted(97, 5) Source(26, 50) + SourceIndex(1) +2 >Emitted(97, 6) Source(26, 51) + SourceIndex(1) +3 >Emitted(97, 8) Source(26, 27) + SourceIndex(1) +4 >Emitted(97, 20) Source(26, 39) + SourceIndex(1) +5 >Emitted(97, 23) Source(26, 27) + SourceIndex(1) +6 >Emitted(97, 43) Source(26, 39) + SourceIndex(1) +7 >Emitted(97, 48) Source(26, 27) + SourceIndex(1) +8 >Emitted(97, 68) Source(26, 39) + SourceIndex(1) +9 >Emitted(97, 76) Source(26, 51) + SourceIndex(1) --- ------------------------------------------------------------------- emittedFile:/src/app/module.js @@ -1806,12 +1808,12 @@ sourceFile:../lib/file2.ts 4 > = 5 > 20 6 > ; -1 >Emitted(102, 5) Source(1, 14) + SourceIndex(2) -2 >Emitted(102, 13) Source(1, 14) + SourceIndex(2) -3 >Emitted(102, 14) Source(1, 15) + SourceIndex(2) -4 >Emitted(102, 17) Source(1, 18) + SourceIndex(2) -5 >Emitted(102, 19) Source(1, 20) + SourceIndex(2) -6 >Emitted(102, 20) Source(1, 21) + SourceIndex(2) +1 >Emitted(103, 5) Source(1, 14) + SourceIndex(2) +2 >Emitted(103, 13) Source(1, 14) + SourceIndex(2) +3 >Emitted(103, 14) Source(1, 15) + SourceIndex(2) +4 >Emitted(103, 17) Source(1, 18) + SourceIndex(2) +5 >Emitted(103, 19) Source(1, 20) + SourceIndex(2) +6 >Emitted(103, 20) Source(1, 21) + SourceIndex(2) --- ------------------------------------------------------------------- emittedFile:/src/app/module.js @@ -1832,12 +1834,12 @@ sourceFile:../lib/global.ts 4 > = 5 > 10 6 > ; -1 >Emitted(104, 1) Source(1, 1) + SourceIndex(3) -2 >Emitted(104, 5) Source(1, 7) + SourceIndex(3) -3 >Emitted(104, 16) Source(1, 18) + SourceIndex(3) -4 >Emitted(104, 19) Source(1, 21) + SourceIndex(3) -5 >Emitted(104, 21) Source(1, 23) + SourceIndex(3) -6 >Emitted(104, 22) Source(1, 24) + SourceIndex(3) +1 >Emitted(105, 1) Source(1, 1) + SourceIndex(3) +2 >Emitted(105, 5) Source(1, 7) + SourceIndex(3) +3 >Emitted(105, 16) Source(1, 18) + SourceIndex(3) +4 >Emitted(105, 19) Source(1, 21) + SourceIndex(3) +5 >Emitted(105, 21) Source(1, 23) + SourceIndex(3) +6 >Emitted(105, 22) Source(1, 24) + SourceIndex(3) --- ------------------------------------------------------------------- emittedFile:/src/app/module.js @@ -1860,12 +1862,12 @@ sourceFile:file3.ts 4 > = 5 > 30 6 > ; -1->Emitted(109, 5) Source(1, 14) + SourceIndex(4) -2 >Emitted(109, 13) Source(1, 14) + SourceIndex(4) -3 >Emitted(109, 14) Source(1, 15) + SourceIndex(4) -4 >Emitted(109, 17) Source(1, 18) + SourceIndex(4) -5 >Emitted(109, 19) Source(1, 20) + SourceIndex(4) -6 >Emitted(109, 20) Source(1, 21) + SourceIndex(4) +1->Emitted(110, 5) Source(1, 14) + SourceIndex(4) +2 >Emitted(110, 13) Source(1, 14) + SourceIndex(4) +3 >Emitted(110, 14) Source(1, 15) + SourceIndex(4) +4 >Emitted(110, 17) Source(1, 18) + SourceIndex(4) +5 >Emitted(110, 19) Source(1, 20) + SourceIndex(4) +6 >Emitted(110, 20) Source(1, 21) + SourceIndex(4) --- ------------------------------------------------------------------- emittedFile:/src/app/module.js @@ -1886,12 +1888,12 @@ sourceFile:file4.ts 4 > = 5 > 30 6 > ; -1 >Emitted(111, 1) Source(1, 1) + SourceIndex(5) -2 >Emitted(111, 5) Source(1, 7) + SourceIndex(5) -3 >Emitted(111, 10) Source(1, 12) + SourceIndex(5) -4 >Emitted(111, 13) Source(1, 15) + SourceIndex(5) -5 >Emitted(111, 15) Source(1, 17) + SourceIndex(5) -6 >Emitted(111, 16) Source(1, 18) + SourceIndex(5) +1 >Emitted(112, 1) Source(1, 1) + SourceIndex(5) +2 >Emitted(112, 5) Source(1, 7) + SourceIndex(5) +3 >Emitted(112, 10) Source(1, 12) + SourceIndex(5) +4 >Emitted(112, 13) Source(1, 15) + SourceIndex(5) +5 >Emitted(112, 15) Source(1, 17) + SourceIndex(5) +6 >Emitted(112, 16) Source(1, 18) + SourceIndex(5) --- >>>//# sourceMappingURL=module.js.map @@ -1907,20 +1909,20 @@ sourceFile:file4.ts "sections": [ { "pos": 0, - "end": 4396, + "end": 4448, "kind": "prepend", "data": "../lib/module.js", "texts": [ { "pos": 0, - "end": 4396, + "end": 4448, "kind": "text" } ] }, { - "pos": 4396, - "end": 4622, + "pos": 4448, + "end": 4674, "kind": "text" } ] @@ -1955,9 +1957,9 @@ sourceFile:file4.ts ====================================================================== File:: /src/app/module.js ---------------------------------------------------------------------- -prepend: (0-4396):: ../lib/module.js texts:: 1 +prepend: (0-4448):: ../lib/module.js texts:: 1 >>-------------------------------------------------------------------- -text: (0-4396) +text: (0-4448) /*@internal*/ var myGlob = 20; define("file1", ["require", "exports"], function (require, exports) { "use strict"; @@ -1967,8 +1969,9 @@ define("file1", ["require", "exports"], function (require, exports) { var normalC = /** @class */ (function () { /*@internal*/ function normalC() { } - /*@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /*@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /*@internal*/ get: function () { return 10; }, /*@internal*/ set: function (val) { }, enumerable: false, @@ -2064,7 +2067,7 @@ define("file2", ["require", "exports"], function (require, exports) { var globalConst = 10; ---------------------------------------------------------------------- -text: (4396-4622) +text: (4448-4674) define("file3", ["require", "exports"], function (require, exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); @@ -2850,8 +2853,9 @@ define("file1", ["require", "exports"], function (require, exports) { var normalC = /** @class */ (function () { /*@internal*/ function normalC() { } - /*@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /*@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /*@internal*/ get: function () { return 10; }, /*@internal*/ set: function (val) { }, enumerable: false, @@ -2948,7 +2952,7 @@ var globalConst = 10; //# sourceMappingURL=module.js.map //// [/src/lib/module.js.map] -{"version":3,"file":"module.js","sourceRoot":"","sources":["file0.ts","file1.ts","file2.ts","global.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"module.js","sourceRoot":"","sources":["file0.ts","file1.ts","file2.ts","global.ts"],"names":[],"mappings":"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"} //// [/src/lib/module.js.map.baseline.txt] =================================================================== @@ -3045,13 +3049,14 @@ sourceFile:file1.ts >>> } 1 >^^^^^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 >constructor() { 2 > } 1 >Emitted(9, 9) Source(3, 35) + SourceIndex(1) 2 >Emitted(9, 10) Source(3, 36) + SourceIndex(1) --- ->>> /*@internal*/ normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> /*@internal*/ normalC_prototype.method = function () { }; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^ 3 > ^ @@ -3068,15 +3073,15 @@ sourceFile:file1.ts 5 > 6 > method() { 7 > } -1->Emitted(10, 9) Source(5, 5) + SourceIndex(1) -2 >Emitted(10, 22) Source(5, 18) + SourceIndex(1) -3 >Emitted(10, 23) Source(5, 19) + SourceIndex(1) -4 >Emitted(10, 47) Source(5, 25) + SourceIndex(1) -5 >Emitted(10, 50) Source(5, 19) + SourceIndex(1) -6 >Emitted(10, 64) Source(5, 30) + SourceIndex(1) -7 >Emitted(10, 65) Source(5, 31) + SourceIndex(1) ---- ->>> Object.defineProperty(normalC.prototype, "c", { +1->Emitted(11, 9) Source(5, 5) + SourceIndex(1) +2 >Emitted(11, 22) Source(5, 18) + SourceIndex(1) +3 >Emitted(11, 23) Source(5, 19) + SourceIndex(1) +4 >Emitted(11, 47) Source(5, 25) + SourceIndex(1) +5 >Emitted(11, 50) Source(5, 19) + SourceIndex(1) +6 >Emitted(11, 64) Source(5, 30) + SourceIndex(1) +7 >Emitted(11, 65) Source(5, 31) + SourceIndex(1) +--- +>>> Object.defineProperty(normalC_prototype, "c", { 1 >^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -3085,9 +3090,9 @@ sourceFile:file1.ts > /*@internal*/ 2 > get 3 > c -1 >Emitted(11, 9) Source(6, 19) + SourceIndex(1) -2 >Emitted(11, 31) Source(6, 23) + SourceIndex(1) -3 >Emitted(11, 53) Source(6, 24) + SourceIndex(1) +1 >Emitted(12, 9) Source(6, 19) + SourceIndex(1) +2 >Emitted(12, 31) Source(6, 23) + SourceIndex(1) +3 >Emitted(12, 53) Source(6, 24) + SourceIndex(1) --- >>> /*@internal*/ get: function () { return 10; }, 1->^^^^^^^^^^^^ @@ -3108,15 +3113,15 @@ sourceFile:file1.ts 7 > ; 8 > 9 > } -1->Emitted(12, 13) Source(6, 5) + SourceIndex(1) -2 >Emitted(12, 26) Source(6, 18) + SourceIndex(1) -3 >Emitted(12, 32) Source(6, 19) + SourceIndex(1) -4 >Emitted(12, 46) Source(6, 29) + SourceIndex(1) -5 >Emitted(12, 53) Source(6, 36) + SourceIndex(1) -6 >Emitted(12, 55) Source(6, 38) + SourceIndex(1) -7 >Emitted(12, 56) Source(6, 39) + SourceIndex(1) -8 >Emitted(12, 57) Source(6, 40) + SourceIndex(1) -9 >Emitted(12, 58) Source(6, 41) + SourceIndex(1) +1->Emitted(13, 13) Source(6, 5) + SourceIndex(1) +2 >Emitted(13, 26) Source(6, 18) + SourceIndex(1) +3 >Emitted(13, 32) Source(6, 19) + SourceIndex(1) +4 >Emitted(13, 46) Source(6, 29) + SourceIndex(1) +5 >Emitted(13, 53) Source(6, 36) + SourceIndex(1) +6 >Emitted(13, 55) Source(6, 38) + SourceIndex(1) +7 >Emitted(13, 56) Source(6, 39) + SourceIndex(1) +8 >Emitted(13, 57) Source(6, 40) + SourceIndex(1) +9 >Emitted(13, 58) Source(6, 41) + SourceIndex(1) --- >>> /*@internal*/ set: function (val) { }, 1 >^^^^^^^^^^^^ @@ -3134,13 +3139,13 @@ sourceFile:file1.ts 5 > val: number 6 > ) { 7 > } -1 >Emitted(13, 13) Source(7, 5) + SourceIndex(1) -2 >Emitted(13, 26) Source(7, 18) + SourceIndex(1) -3 >Emitted(13, 32) Source(7, 19) + SourceIndex(1) -4 >Emitted(13, 42) Source(7, 25) + SourceIndex(1) -5 >Emitted(13, 45) Source(7, 36) + SourceIndex(1) -6 >Emitted(13, 49) Source(7, 40) + SourceIndex(1) -7 >Emitted(13, 50) Source(7, 41) + SourceIndex(1) +1 >Emitted(14, 13) Source(7, 5) + SourceIndex(1) +2 >Emitted(14, 26) Source(7, 18) + SourceIndex(1) +3 >Emitted(14, 32) Source(7, 19) + SourceIndex(1) +4 >Emitted(14, 42) Source(7, 25) + SourceIndex(1) +5 >Emitted(14, 45) Source(7, 36) + SourceIndex(1) +6 >Emitted(14, 49) Source(7, 40) + SourceIndex(1) +7 >Emitted(14, 50) Source(7, 41) + SourceIndex(1) --- >>> enumerable: false, >>> configurable: true @@ -3148,7 +3153,7 @@ sourceFile:file1.ts 1 >^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(16, 12) Source(6, 41) + SourceIndex(1) +1 >Emitted(17, 12) Source(6, 41) + SourceIndex(1) --- >>> return normalC; 1->^^^^^^^^ @@ -3157,8 +3162,8 @@ sourceFile:file1.ts > /*@internal*/ set c(val: number) { } > 2 > } -1->Emitted(17, 9) Source(8, 1) + SourceIndex(1) -2 >Emitted(17, 23) Source(8, 2) + SourceIndex(1) +1->Emitted(18, 9) Source(8, 1) + SourceIndex(1) +2 >Emitted(18, 23) Source(8, 2) + SourceIndex(1) --- >>> }()); 1 >^^^^ @@ -3176,18 +3181,18 @@ sourceFile:file1.ts > /*@internal*/ get c() { return 10; } > /*@internal*/ set c(val: number) { } > } -1 >Emitted(18, 5) Source(8, 1) + SourceIndex(1) -2 >Emitted(18, 6) Source(8, 2) + SourceIndex(1) -3 >Emitted(18, 6) Source(2, 1) + SourceIndex(1) -4 >Emitted(18, 10) Source(8, 2) + SourceIndex(1) +1 >Emitted(19, 5) Source(8, 1) + SourceIndex(1) +2 >Emitted(19, 6) Source(8, 2) + SourceIndex(1) +3 >Emitted(19, 6) Source(2, 1) + SourceIndex(1) +4 >Emitted(19, 10) Source(8, 2) + SourceIndex(1) --- >>> exports.normalC = normalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> 2 > normalC -1->Emitted(19, 5) Source(2, 14) + SourceIndex(1) -2 >Emitted(19, 31) Source(2, 21) + SourceIndex(1) +1->Emitted(20, 5) Source(2, 14) + SourceIndex(1) +2 >Emitted(20, 31) Source(2, 21) + SourceIndex(1) --- >>> var normalN; 1 >^^^^ @@ -3215,10 +3220,10 @@ sourceFile:file1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(20, 5) Source(9, 1) + SourceIndex(1) -2 >Emitted(20, 9) Source(9, 18) + SourceIndex(1) -3 >Emitted(20, 16) Source(9, 25) + SourceIndex(1) -4 >Emitted(20, 17) Source(18, 2) + SourceIndex(1) +1 >Emitted(21, 5) Source(9, 1) + SourceIndex(1) +2 >Emitted(21, 9) Source(9, 18) + SourceIndex(1) +3 >Emitted(21, 16) Source(9, 25) + SourceIndex(1) +4 >Emitted(21, 17) Source(18, 2) + SourceIndex(1) --- >>> (function (normalN) { 1->^^^^ @@ -3228,9 +3233,9 @@ sourceFile:file1.ts 1-> 2 > export namespace 3 > normalN -1->Emitted(21, 5) Source(9, 1) + SourceIndex(1) -2 >Emitted(21, 16) Source(9, 18) + SourceIndex(1) -3 >Emitted(21, 23) Source(9, 25) + SourceIndex(1) +1->Emitted(22, 5) Source(9, 1) + SourceIndex(1) +2 >Emitted(22, 16) Source(9, 18) + SourceIndex(1) +3 >Emitted(22, 23) Source(9, 25) + SourceIndex(1) --- >>> /*@internal*/ var C = /** @class */ (function () { 1->^^^^^^^^ @@ -3241,15 +3246,15 @@ sourceFile:file1.ts > 2 > /*@internal*/ 3 > -1->Emitted(22, 9) Source(10, 5) + SourceIndex(1) -2 >Emitted(22, 22) Source(10, 18) + SourceIndex(1) -3 >Emitted(22, 23) Source(10, 19) + SourceIndex(1) +1->Emitted(23, 9) Source(10, 5) + SourceIndex(1) +2 >Emitted(23, 22) Source(10, 18) + SourceIndex(1) +3 >Emitted(23, 23) Source(10, 19) + SourceIndex(1) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(23, 13) Source(10, 19) + SourceIndex(1) +1->Emitted(24, 13) Source(10, 19) + SourceIndex(1) --- >>> } 1->^^^^^^^^^^^^ @@ -3257,16 +3262,16 @@ sourceFile:file1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(24, 13) Source(10, 36) + SourceIndex(1) -2 >Emitted(24, 14) Source(10, 37) + SourceIndex(1) +1->Emitted(25, 13) Source(10, 36) + SourceIndex(1) +2 >Emitted(25, 14) Source(10, 37) + SourceIndex(1) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(25, 13) Source(10, 36) + SourceIndex(1) -2 >Emitted(25, 21) Source(10, 37) + SourceIndex(1) +1->Emitted(26, 13) Source(10, 36) + SourceIndex(1) +2 >Emitted(26, 21) Source(10, 37) + SourceIndex(1) --- >>> }()); 1 >^^^^^^^^ @@ -3278,10 +3283,10 @@ sourceFile:file1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(26, 9) Source(10, 36) + SourceIndex(1) -2 >Emitted(26, 10) Source(10, 37) + SourceIndex(1) -3 >Emitted(26, 10) Source(10, 19) + SourceIndex(1) -4 >Emitted(26, 14) Source(10, 37) + SourceIndex(1) +1 >Emitted(27, 9) Source(10, 36) + SourceIndex(1) +2 >Emitted(27, 10) Source(10, 37) + SourceIndex(1) +3 >Emitted(27, 10) Source(10, 19) + SourceIndex(1) +4 >Emitted(27, 14) Source(10, 37) + SourceIndex(1) --- >>> normalN.C = C; 1->^^^^^^^^ @@ -3293,10 +3298,10 @@ sourceFile:file1.ts 2 > C 3 > { } 4 > -1->Emitted(27, 9) Source(10, 32) + SourceIndex(1) -2 >Emitted(27, 18) Source(10, 33) + SourceIndex(1) -3 >Emitted(27, 22) Source(10, 37) + SourceIndex(1) -4 >Emitted(27, 23) Source(10, 37) + SourceIndex(1) +1->Emitted(28, 9) Source(10, 32) + SourceIndex(1) +2 >Emitted(28, 18) Source(10, 33) + SourceIndex(1) +3 >Emitted(28, 22) Source(10, 37) + SourceIndex(1) +4 >Emitted(28, 23) Source(10, 37) + SourceIndex(1) --- >>> /*@internal*/ function foo() { } 1->^^^^^^^^ @@ -3314,13 +3319,13 @@ sourceFile:file1.ts 5 > foo 6 > () { 7 > } -1->Emitted(28, 9) Source(11, 5) + SourceIndex(1) -2 >Emitted(28, 22) Source(11, 18) + SourceIndex(1) -3 >Emitted(28, 23) Source(11, 19) + SourceIndex(1) -4 >Emitted(28, 32) Source(11, 35) + SourceIndex(1) -5 >Emitted(28, 35) Source(11, 38) + SourceIndex(1) -6 >Emitted(28, 40) Source(11, 42) + SourceIndex(1) -7 >Emitted(28, 41) Source(11, 43) + SourceIndex(1) +1->Emitted(29, 9) Source(11, 5) + SourceIndex(1) +2 >Emitted(29, 22) Source(11, 18) + SourceIndex(1) +3 >Emitted(29, 23) Source(11, 19) + SourceIndex(1) +4 >Emitted(29, 32) Source(11, 35) + SourceIndex(1) +5 >Emitted(29, 35) Source(11, 38) + SourceIndex(1) +6 >Emitted(29, 40) Source(11, 42) + SourceIndex(1) +7 >Emitted(29, 41) Source(11, 43) + SourceIndex(1) --- >>> normalN.foo = foo; 1 >^^^^^^^^ @@ -3332,10 +3337,10 @@ sourceFile:file1.ts 2 > foo 3 > () {} 4 > -1 >Emitted(29, 9) Source(11, 35) + SourceIndex(1) -2 >Emitted(29, 20) Source(11, 38) + SourceIndex(1) -3 >Emitted(29, 26) Source(11, 43) + SourceIndex(1) -4 >Emitted(29, 27) Source(11, 43) + SourceIndex(1) +1 >Emitted(30, 9) Source(11, 35) + SourceIndex(1) +2 >Emitted(30, 20) Source(11, 38) + SourceIndex(1) +3 >Emitted(30, 26) Source(11, 43) + SourceIndex(1) +4 >Emitted(30, 27) Source(11, 43) + SourceIndex(1) --- >>> /*@internal*/ var someNamespace; 1->^^^^^^^^ @@ -3351,12 +3356,12 @@ sourceFile:file1.ts 4 > export namespace 5 > someNamespace 6 > { export class C {} } -1->Emitted(30, 9) Source(12, 5) + SourceIndex(1) -2 >Emitted(30, 22) Source(12, 18) + SourceIndex(1) -3 >Emitted(30, 23) Source(12, 19) + SourceIndex(1) -4 >Emitted(30, 27) Source(12, 36) + SourceIndex(1) -5 >Emitted(30, 40) Source(12, 49) + SourceIndex(1) -6 >Emitted(30, 41) Source(12, 71) + SourceIndex(1) +1->Emitted(31, 9) Source(12, 5) + SourceIndex(1) +2 >Emitted(31, 22) Source(12, 18) + SourceIndex(1) +3 >Emitted(31, 23) Source(12, 19) + SourceIndex(1) +4 >Emitted(31, 27) Source(12, 36) + SourceIndex(1) +5 >Emitted(31, 40) Source(12, 49) + SourceIndex(1) +6 >Emitted(31, 41) Source(12, 71) + SourceIndex(1) --- >>> (function (someNamespace) { 1 >^^^^^^^^ @@ -3366,21 +3371,21 @@ sourceFile:file1.ts 1 > 2 > export namespace 3 > someNamespace -1 >Emitted(31, 9) Source(12, 19) + SourceIndex(1) -2 >Emitted(31, 20) Source(12, 36) + SourceIndex(1) -3 >Emitted(31, 33) Source(12, 49) + SourceIndex(1) +1 >Emitted(32, 9) Source(12, 19) + SourceIndex(1) +2 >Emitted(32, 20) Source(12, 36) + SourceIndex(1) +3 >Emitted(32, 33) Source(12, 49) + SourceIndex(1) --- >>> var C = /** @class */ (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(32, 13) Source(12, 52) + SourceIndex(1) +1->Emitted(33, 13) Source(12, 52) + SourceIndex(1) --- >>> function C() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(33, 17) Source(12, 52) + SourceIndex(1) +1->Emitted(34, 17) Source(12, 52) + SourceIndex(1) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -3388,16 +3393,16 @@ sourceFile:file1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(34, 17) Source(12, 68) + SourceIndex(1) -2 >Emitted(34, 18) Source(12, 69) + SourceIndex(1) +1->Emitted(35, 17) Source(12, 68) + SourceIndex(1) +2 >Emitted(35, 18) Source(12, 69) + SourceIndex(1) --- >>> return C; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(35, 17) Source(12, 68) + SourceIndex(1) -2 >Emitted(35, 25) Source(12, 69) + SourceIndex(1) +1->Emitted(36, 17) Source(12, 68) + SourceIndex(1) +2 >Emitted(36, 25) Source(12, 69) + SourceIndex(1) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -3409,10 +3414,10 @@ sourceFile:file1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(36, 13) Source(12, 68) + SourceIndex(1) -2 >Emitted(36, 14) Source(12, 69) + SourceIndex(1) -3 >Emitted(36, 14) Source(12, 52) + SourceIndex(1) -4 >Emitted(36, 18) Source(12, 69) + SourceIndex(1) +1 >Emitted(37, 13) Source(12, 68) + SourceIndex(1) +2 >Emitted(37, 14) Source(12, 69) + SourceIndex(1) +3 >Emitted(37, 14) Source(12, 52) + SourceIndex(1) +4 >Emitted(37, 18) Source(12, 69) + SourceIndex(1) --- >>> someNamespace.C = C; 1->^^^^^^^^^^^^ @@ -3424,10 +3429,10 @@ sourceFile:file1.ts 2 > C 3 > {} 4 > -1->Emitted(37, 13) Source(12, 65) + SourceIndex(1) -2 >Emitted(37, 28) Source(12, 66) + SourceIndex(1) -3 >Emitted(37, 32) Source(12, 69) + SourceIndex(1) -4 >Emitted(37, 33) Source(12, 69) + SourceIndex(1) +1->Emitted(38, 13) Source(12, 65) + SourceIndex(1) +2 >Emitted(38, 28) Source(12, 66) + SourceIndex(1) +3 >Emitted(38, 32) Source(12, 69) + SourceIndex(1) +4 >Emitted(38, 33) Source(12, 69) + SourceIndex(1) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^^^^^ @@ -3448,15 +3453,15 @@ sourceFile:file1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(38, 9) Source(12, 70) + SourceIndex(1) -2 >Emitted(38, 10) Source(12, 71) + SourceIndex(1) -3 >Emitted(38, 12) Source(12, 36) + SourceIndex(1) -4 >Emitted(38, 25) Source(12, 49) + SourceIndex(1) -5 >Emitted(38, 28) Source(12, 36) + SourceIndex(1) -6 >Emitted(38, 49) Source(12, 49) + SourceIndex(1) -7 >Emitted(38, 54) Source(12, 36) + SourceIndex(1) -8 >Emitted(38, 75) Source(12, 49) + SourceIndex(1) -9 >Emitted(38, 83) Source(12, 71) + SourceIndex(1) +1->Emitted(39, 9) Source(12, 70) + SourceIndex(1) +2 >Emitted(39, 10) Source(12, 71) + SourceIndex(1) +3 >Emitted(39, 12) Source(12, 36) + SourceIndex(1) +4 >Emitted(39, 25) Source(12, 49) + SourceIndex(1) +5 >Emitted(39, 28) Source(12, 36) + SourceIndex(1) +6 >Emitted(39, 49) Source(12, 49) + SourceIndex(1) +7 >Emitted(39, 54) Source(12, 36) + SourceIndex(1) +8 >Emitted(39, 75) Source(12, 49) + SourceIndex(1) +9 >Emitted(39, 83) Source(12, 71) + SourceIndex(1) --- >>> /*@internal*/ var someOther; 1 >^^^^^^^^ @@ -3472,12 +3477,12 @@ sourceFile:file1.ts 4 > export namespace 5 > someOther 6 > .something { export class someClass {} } -1 >Emitted(39, 9) Source(13, 5) + SourceIndex(1) -2 >Emitted(39, 22) Source(13, 18) + SourceIndex(1) -3 >Emitted(39, 23) Source(13, 19) + SourceIndex(1) -4 >Emitted(39, 27) Source(13, 36) + SourceIndex(1) -5 >Emitted(39, 36) Source(13, 45) + SourceIndex(1) -6 >Emitted(39, 37) Source(13, 85) + SourceIndex(1) +1 >Emitted(40, 9) Source(13, 5) + SourceIndex(1) +2 >Emitted(40, 22) Source(13, 18) + SourceIndex(1) +3 >Emitted(40, 23) Source(13, 19) + SourceIndex(1) +4 >Emitted(40, 27) Source(13, 36) + SourceIndex(1) +5 >Emitted(40, 36) Source(13, 45) + SourceIndex(1) +6 >Emitted(40, 37) Source(13, 85) + SourceIndex(1) --- >>> (function (someOther) { 1 >^^^^^^^^ @@ -3486,9 +3491,9 @@ sourceFile:file1.ts 1 > 2 > export namespace 3 > someOther -1 >Emitted(40, 9) Source(13, 19) + SourceIndex(1) -2 >Emitted(40, 20) Source(13, 36) + SourceIndex(1) -3 >Emitted(40, 29) Source(13, 45) + SourceIndex(1) +1 >Emitted(41, 9) Source(13, 19) + SourceIndex(1) +2 >Emitted(41, 20) Source(13, 36) + SourceIndex(1) +3 >Emitted(41, 29) Source(13, 45) + SourceIndex(1) --- >>> var something; 1 >^^^^^^^^^^^^ @@ -3500,10 +3505,10 @@ sourceFile:file1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(41, 13) Source(13, 46) + SourceIndex(1) -2 >Emitted(41, 17) Source(13, 46) + SourceIndex(1) -3 >Emitted(41, 26) Source(13, 55) + SourceIndex(1) -4 >Emitted(41, 27) Source(13, 85) + SourceIndex(1) +1 >Emitted(42, 13) Source(13, 46) + SourceIndex(1) +2 >Emitted(42, 17) Source(13, 46) + SourceIndex(1) +3 >Emitted(42, 26) Source(13, 55) + SourceIndex(1) +4 >Emitted(42, 27) Source(13, 85) + SourceIndex(1) --- >>> (function (something) { 1->^^^^^^^^^^^^ @@ -3513,21 +3518,21 @@ sourceFile:file1.ts 1-> 2 > 3 > something -1->Emitted(42, 13) Source(13, 46) + SourceIndex(1) -2 >Emitted(42, 24) Source(13, 46) + SourceIndex(1) -3 >Emitted(42, 33) Source(13, 55) + SourceIndex(1) +1->Emitted(43, 13) Source(13, 46) + SourceIndex(1) +2 >Emitted(43, 24) Source(13, 46) + SourceIndex(1) +3 >Emitted(43, 33) Source(13, 55) + SourceIndex(1) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(43, 17) Source(13, 58) + SourceIndex(1) +1->Emitted(44, 17) Source(13, 58) + SourceIndex(1) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(44, 21) Source(13, 58) + SourceIndex(1) +1->Emitted(45, 21) Source(13, 58) + SourceIndex(1) --- >>> } 1->^^^^^^^^^^^^^^^^^^^^ @@ -3535,16 +3540,16 @@ sourceFile:file1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(45, 21) Source(13, 82) + SourceIndex(1) -2 >Emitted(45, 22) Source(13, 83) + SourceIndex(1) +1->Emitted(46, 21) Source(13, 82) + SourceIndex(1) +2 >Emitted(46, 22) Source(13, 83) + SourceIndex(1) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(46, 21) Source(13, 82) + SourceIndex(1) -2 >Emitted(46, 37) Source(13, 83) + SourceIndex(1) +1->Emitted(47, 21) Source(13, 82) + SourceIndex(1) +2 >Emitted(47, 37) Source(13, 83) + SourceIndex(1) --- >>> }()); 1 >^^^^^^^^^^^^^^^^ @@ -3556,10 +3561,10 @@ sourceFile:file1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(47, 17) Source(13, 82) + SourceIndex(1) -2 >Emitted(47, 18) Source(13, 83) + SourceIndex(1) -3 >Emitted(47, 18) Source(13, 58) + SourceIndex(1) -4 >Emitted(47, 22) Source(13, 83) + SourceIndex(1) +1 >Emitted(48, 17) Source(13, 82) + SourceIndex(1) +2 >Emitted(48, 18) Source(13, 83) + SourceIndex(1) +3 >Emitted(48, 18) Source(13, 58) + SourceIndex(1) +4 >Emitted(48, 22) Source(13, 83) + SourceIndex(1) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^^^^^ @@ -3571,10 +3576,10 @@ sourceFile:file1.ts 2 > someClass 3 > {} 4 > -1->Emitted(48, 17) Source(13, 71) + SourceIndex(1) -2 >Emitted(48, 36) Source(13, 80) + SourceIndex(1) -3 >Emitted(48, 48) Source(13, 83) + SourceIndex(1) -4 >Emitted(48, 49) Source(13, 83) + SourceIndex(1) +1->Emitted(49, 17) Source(13, 71) + SourceIndex(1) +2 >Emitted(49, 36) Source(13, 80) + SourceIndex(1) +3 >Emitted(49, 48) Source(13, 83) + SourceIndex(1) +4 >Emitted(49, 49) Source(13, 83) + SourceIndex(1) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^^^^^ @@ -3595,15 +3600,15 @@ sourceFile:file1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(49, 13) Source(13, 84) + SourceIndex(1) -2 >Emitted(49, 14) Source(13, 85) + SourceIndex(1) -3 >Emitted(49, 16) Source(13, 46) + SourceIndex(1) -4 >Emitted(49, 25) Source(13, 55) + SourceIndex(1) -5 >Emitted(49, 28) Source(13, 46) + SourceIndex(1) -6 >Emitted(49, 47) Source(13, 55) + SourceIndex(1) -7 >Emitted(49, 52) Source(13, 46) + SourceIndex(1) -8 >Emitted(49, 71) Source(13, 55) + SourceIndex(1) -9 >Emitted(49, 79) Source(13, 85) + SourceIndex(1) +1->Emitted(50, 13) Source(13, 84) + SourceIndex(1) +2 >Emitted(50, 14) Source(13, 85) + SourceIndex(1) +3 >Emitted(50, 16) Source(13, 46) + SourceIndex(1) +4 >Emitted(50, 25) Source(13, 55) + SourceIndex(1) +5 >Emitted(50, 28) Source(13, 46) + SourceIndex(1) +6 >Emitted(50, 47) Source(13, 55) + SourceIndex(1) +7 >Emitted(50, 52) Source(13, 46) + SourceIndex(1) +8 >Emitted(50, 71) Source(13, 55) + SourceIndex(1) +9 >Emitted(50, 79) Source(13, 85) + SourceIndex(1) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^^^^^ @@ -3624,15 +3629,15 @@ sourceFile:file1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(50, 9) Source(13, 84) + SourceIndex(1) -2 >Emitted(50, 10) Source(13, 85) + SourceIndex(1) -3 >Emitted(50, 12) Source(13, 36) + SourceIndex(1) -4 >Emitted(50, 21) Source(13, 45) + SourceIndex(1) -5 >Emitted(50, 24) Source(13, 36) + SourceIndex(1) -6 >Emitted(50, 41) Source(13, 45) + SourceIndex(1) -7 >Emitted(50, 46) Source(13, 36) + SourceIndex(1) -8 >Emitted(50, 63) Source(13, 45) + SourceIndex(1) -9 >Emitted(50, 71) Source(13, 85) + SourceIndex(1) +1 >Emitted(51, 9) Source(13, 84) + SourceIndex(1) +2 >Emitted(51, 10) Source(13, 85) + SourceIndex(1) +3 >Emitted(51, 12) Source(13, 36) + SourceIndex(1) +4 >Emitted(51, 21) Source(13, 45) + SourceIndex(1) +5 >Emitted(51, 24) Source(13, 36) + SourceIndex(1) +6 >Emitted(51, 41) Source(13, 45) + SourceIndex(1) +7 >Emitted(51, 46) Source(13, 36) + SourceIndex(1) +8 >Emitted(51, 63) Source(13, 45) + SourceIndex(1) +9 >Emitted(51, 71) Source(13, 85) + SourceIndex(1) --- >>> /*@internal*/ normalN.someImport = someNamespace.C; 1 >^^^^^^^^ @@ -3654,15 +3659,15 @@ sourceFile:file1.ts 7 > . 8 > C 9 > ; -1 >Emitted(51, 9) Source(14, 5) + SourceIndex(1) -2 >Emitted(51, 22) Source(14, 18) + SourceIndex(1) -3 >Emitted(51, 23) Source(14, 33) + SourceIndex(1) -4 >Emitted(51, 41) Source(14, 43) + SourceIndex(1) -5 >Emitted(51, 44) Source(14, 46) + SourceIndex(1) -6 >Emitted(51, 57) Source(14, 59) + SourceIndex(1) -7 >Emitted(51, 58) Source(14, 60) + SourceIndex(1) -8 >Emitted(51, 59) Source(14, 61) + SourceIndex(1) -9 >Emitted(51, 60) Source(14, 62) + SourceIndex(1) +1 >Emitted(52, 9) Source(14, 5) + SourceIndex(1) +2 >Emitted(52, 22) Source(14, 18) + SourceIndex(1) +3 >Emitted(52, 23) Source(14, 33) + SourceIndex(1) +4 >Emitted(52, 41) Source(14, 43) + SourceIndex(1) +5 >Emitted(52, 44) Source(14, 46) + SourceIndex(1) +6 >Emitted(52, 57) Source(14, 59) + SourceIndex(1) +7 >Emitted(52, 58) Source(14, 60) + SourceIndex(1) +8 >Emitted(52, 59) Source(14, 61) + SourceIndex(1) +9 >Emitted(52, 60) Source(14, 62) + SourceIndex(1) --- >>> /*@internal*/ normalN.internalConst = 10; 1 >^^^^^^^^ @@ -3681,13 +3686,13 @@ sourceFile:file1.ts 5 > = 6 > 10 7 > ; -1 >Emitted(52, 9) Source(16, 5) + SourceIndex(1) -2 >Emitted(52, 22) Source(16, 18) + SourceIndex(1) -3 >Emitted(52, 23) Source(16, 32) + SourceIndex(1) -4 >Emitted(52, 44) Source(16, 45) + SourceIndex(1) -5 >Emitted(52, 47) Source(16, 48) + SourceIndex(1) -6 >Emitted(52, 49) Source(16, 50) + SourceIndex(1) -7 >Emitted(52, 50) Source(16, 51) + SourceIndex(1) +1 >Emitted(53, 9) Source(16, 5) + SourceIndex(1) +2 >Emitted(53, 22) Source(16, 18) + SourceIndex(1) +3 >Emitted(53, 23) Source(16, 32) + SourceIndex(1) +4 >Emitted(53, 44) Source(16, 45) + SourceIndex(1) +5 >Emitted(53, 47) Source(16, 48) + SourceIndex(1) +6 >Emitted(53, 49) Source(16, 50) + SourceIndex(1) +7 >Emitted(53, 50) Source(16, 51) + SourceIndex(1) --- >>> /*@internal*/ var internalEnum; 1 >^^^^^^^^ @@ -3701,11 +3706,11 @@ sourceFile:file1.ts 3 > 4 > export enum 5 > internalEnum { a, b, c } -1 >Emitted(53, 9) Source(17, 5) + SourceIndex(1) -2 >Emitted(53, 22) Source(17, 18) + SourceIndex(1) -3 >Emitted(53, 23) Source(17, 19) + SourceIndex(1) -4 >Emitted(53, 27) Source(17, 31) + SourceIndex(1) -5 >Emitted(53, 39) Source(17, 55) + SourceIndex(1) +1 >Emitted(54, 9) Source(17, 5) + SourceIndex(1) +2 >Emitted(54, 22) Source(17, 18) + SourceIndex(1) +3 >Emitted(54, 23) Source(17, 19) + SourceIndex(1) +4 >Emitted(54, 27) Source(17, 31) + SourceIndex(1) +5 >Emitted(54, 39) Source(17, 55) + SourceIndex(1) --- >>> (function (internalEnum) { 1 >^^^^^^^^ @@ -3715,9 +3720,9 @@ sourceFile:file1.ts 1 > 2 > export enum 3 > internalEnum -1 >Emitted(54, 9) Source(17, 19) + SourceIndex(1) -2 >Emitted(54, 20) Source(17, 31) + SourceIndex(1) -3 >Emitted(54, 32) Source(17, 43) + SourceIndex(1) +1 >Emitted(55, 9) Source(17, 19) + SourceIndex(1) +2 >Emitted(55, 20) Source(17, 31) + SourceIndex(1) +3 >Emitted(55, 32) Source(17, 43) + SourceIndex(1) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^^^^^ @@ -3727,9 +3732,9 @@ sourceFile:file1.ts 1-> { 2 > a 3 > -1->Emitted(55, 13) Source(17, 46) + SourceIndex(1) -2 >Emitted(55, 54) Source(17, 47) + SourceIndex(1) -3 >Emitted(55, 55) Source(17, 47) + SourceIndex(1) +1->Emitted(56, 13) Source(17, 46) + SourceIndex(1) +2 >Emitted(56, 54) Source(17, 47) + SourceIndex(1) +3 >Emitted(56, 55) Source(17, 47) + SourceIndex(1) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^^^^^ @@ -3739,9 +3744,9 @@ sourceFile:file1.ts 1->, 2 > b 3 > -1->Emitted(56, 13) Source(17, 49) + SourceIndex(1) -2 >Emitted(56, 54) Source(17, 50) + SourceIndex(1) -3 >Emitted(56, 55) Source(17, 50) + SourceIndex(1) +1->Emitted(57, 13) Source(17, 49) + SourceIndex(1) +2 >Emitted(57, 54) Source(17, 50) + SourceIndex(1) +3 >Emitted(57, 55) Source(17, 50) + SourceIndex(1) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^^^^^ @@ -3751,9 +3756,9 @@ sourceFile:file1.ts 1->, 2 > c 3 > -1->Emitted(57, 13) Source(17, 52) + SourceIndex(1) -2 >Emitted(57, 54) Source(17, 53) + SourceIndex(1) -3 >Emitted(57, 55) Source(17, 53) + SourceIndex(1) +1->Emitted(58, 13) Source(17, 52) + SourceIndex(1) +2 >Emitted(58, 54) Source(17, 53) + SourceIndex(1) +3 >Emitted(58, 55) Source(17, 53) + SourceIndex(1) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^^^^^ @@ -3774,15 +3779,15 @@ sourceFile:file1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(58, 9) Source(17, 54) + SourceIndex(1) -2 >Emitted(58, 10) Source(17, 55) + SourceIndex(1) -3 >Emitted(58, 12) Source(17, 31) + SourceIndex(1) -4 >Emitted(58, 24) Source(17, 43) + SourceIndex(1) -5 >Emitted(58, 27) Source(17, 31) + SourceIndex(1) -6 >Emitted(58, 47) Source(17, 43) + SourceIndex(1) -7 >Emitted(58, 52) Source(17, 31) + SourceIndex(1) -8 >Emitted(58, 72) Source(17, 43) + SourceIndex(1) -9 >Emitted(58, 80) Source(17, 55) + SourceIndex(1) +1->Emitted(59, 9) Source(17, 54) + SourceIndex(1) +2 >Emitted(59, 10) Source(17, 55) + SourceIndex(1) +3 >Emitted(59, 12) Source(17, 31) + SourceIndex(1) +4 >Emitted(59, 24) Source(17, 43) + SourceIndex(1) +5 >Emitted(59, 27) Source(17, 31) + SourceIndex(1) +6 >Emitted(59, 47) Source(17, 43) + SourceIndex(1) +7 >Emitted(59, 52) Source(17, 31) + SourceIndex(1) +8 >Emitted(59, 72) Source(17, 43) + SourceIndex(1) +9 >Emitted(59, 80) Source(17, 55) + SourceIndex(1) --- >>> })(normalN = exports.normalN || (exports.normalN = {})); 1 >^^^^ @@ -3814,15 +3819,15 @@ sourceFile:file1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(59, 5) Source(18, 1) + SourceIndex(1) -2 >Emitted(59, 6) Source(18, 2) + SourceIndex(1) -3 >Emitted(59, 8) Source(9, 18) + SourceIndex(1) -4 >Emitted(59, 15) Source(9, 25) + SourceIndex(1) -5 >Emitted(59, 18) Source(9, 18) + SourceIndex(1) -6 >Emitted(59, 33) Source(9, 25) + SourceIndex(1) -7 >Emitted(59, 38) Source(9, 18) + SourceIndex(1) -8 >Emitted(59, 53) Source(9, 25) + SourceIndex(1) -9 >Emitted(59, 61) Source(18, 2) + SourceIndex(1) +1 >Emitted(60, 5) Source(18, 1) + SourceIndex(1) +2 >Emitted(60, 6) Source(18, 2) + SourceIndex(1) +3 >Emitted(60, 8) Source(9, 18) + SourceIndex(1) +4 >Emitted(60, 15) Source(9, 25) + SourceIndex(1) +5 >Emitted(60, 18) Source(9, 18) + SourceIndex(1) +6 >Emitted(60, 33) Source(9, 25) + SourceIndex(1) +7 >Emitted(60, 38) Source(9, 18) + SourceIndex(1) +8 >Emitted(60, 53) Source(9, 25) + SourceIndex(1) +9 >Emitted(60, 61) Source(18, 2) + SourceIndex(1) --- >>> /*@internal*/ var internalC = /** @class */ (function () { 1->^^^^ @@ -3833,15 +3838,15 @@ sourceFile:file1.ts > 2 > /*@internal*/ 3 > -1->Emitted(60, 5) Source(19, 1) + SourceIndex(1) -2 >Emitted(60, 18) Source(19, 14) + SourceIndex(1) -3 >Emitted(60, 19) Source(19, 15) + SourceIndex(1) +1->Emitted(61, 5) Source(19, 1) + SourceIndex(1) +2 >Emitted(61, 18) Source(19, 14) + SourceIndex(1) +3 >Emitted(61, 19) Source(19, 15) + SourceIndex(1) --- >>> function internalC() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(61, 9) Source(19, 15) + SourceIndex(1) +1->Emitted(62, 9) Source(19, 15) + SourceIndex(1) --- >>> } 1->^^^^^^^^ @@ -3849,16 +3854,16 @@ sourceFile:file1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class internalC { 2 > } -1->Emitted(62, 9) Source(19, 39) + SourceIndex(1) -2 >Emitted(62, 10) Source(19, 40) + SourceIndex(1) +1->Emitted(63, 9) Source(19, 39) + SourceIndex(1) +2 >Emitted(63, 10) Source(19, 40) + SourceIndex(1) --- >>> return internalC; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(63, 9) Source(19, 39) + SourceIndex(1) -2 >Emitted(63, 25) Source(19, 40) + SourceIndex(1) +1->Emitted(64, 9) Source(19, 39) + SourceIndex(1) +2 >Emitted(64, 25) Source(19, 40) + SourceIndex(1) --- >>> }()); 1 >^^^^ @@ -3870,10 +3875,10 @@ sourceFile:file1.ts 2 > } 3 > 4 > export class internalC {} -1 >Emitted(64, 5) Source(19, 39) + SourceIndex(1) -2 >Emitted(64, 6) Source(19, 40) + SourceIndex(1) -3 >Emitted(64, 6) Source(19, 15) + SourceIndex(1) -4 >Emitted(64, 10) Source(19, 40) + SourceIndex(1) +1 >Emitted(65, 5) Source(19, 39) + SourceIndex(1) +2 >Emitted(65, 6) Source(19, 40) + SourceIndex(1) +3 >Emitted(65, 6) Source(19, 15) + SourceIndex(1) +4 >Emitted(65, 10) Source(19, 40) + SourceIndex(1) --- >>> exports.internalC = internalC; 1->^^^^ @@ -3881,8 +3886,8 @@ sourceFile:file1.ts 3 > ^^^^^^^^^^^-> 1-> 2 > internalC -1->Emitted(65, 5) Source(19, 28) + SourceIndex(1) -2 >Emitted(65, 35) Source(19, 37) + SourceIndex(1) +1->Emitted(66, 5) Source(19, 28) + SourceIndex(1) +2 >Emitted(66, 35) Source(19, 37) + SourceIndex(1) --- >>> /*@internal*/ function internalfoo() { } 1->^^^^ @@ -3900,13 +3905,13 @@ sourceFile:file1.ts 5 > internalfoo 6 > () { 7 > } -1->Emitted(66, 5) Source(20, 1) + SourceIndex(1) -2 >Emitted(66, 18) Source(20, 14) + SourceIndex(1) -3 >Emitted(66, 19) Source(20, 15) + SourceIndex(1) -4 >Emitted(66, 28) Source(20, 31) + SourceIndex(1) -5 >Emitted(66, 39) Source(20, 42) + SourceIndex(1) -6 >Emitted(66, 44) Source(20, 46) + SourceIndex(1) -7 >Emitted(66, 45) Source(20, 47) + SourceIndex(1) +1->Emitted(67, 5) Source(20, 1) + SourceIndex(1) +2 >Emitted(67, 18) Source(20, 14) + SourceIndex(1) +3 >Emitted(67, 19) Source(20, 15) + SourceIndex(1) +4 >Emitted(67, 28) Source(20, 31) + SourceIndex(1) +5 >Emitted(67, 39) Source(20, 42) + SourceIndex(1) +6 >Emitted(67, 44) Source(20, 46) + SourceIndex(1) +7 >Emitted(67, 45) Source(20, 47) + SourceIndex(1) --- >>> exports.internalfoo = internalfoo; 1 >^^^^ @@ -3914,8 +3919,8 @@ sourceFile:file1.ts 3 > ^^^-> 1 > 2 > export function internalfoo() {} -1 >Emitted(67, 5) Source(20, 15) + SourceIndex(1) -2 >Emitted(67, 39) Source(20, 47) + SourceIndex(1) +1 >Emitted(68, 5) Source(20, 15) + SourceIndex(1) +2 >Emitted(68, 39) Source(20, 47) + SourceIndex(1) --- >>> /*@internal*/ var internalNamespace; 1->^^^^ @@ -3931,12 +3936,12 @@ sourceFile:file1.ts 4 > export namespace 5 > internalNamespace 6 > { export class someClass {} } -1->Emitted(68, 5) Source(21, 1) + SourceIndex(1) -2 >Emitted(68, 18) Source(21, 14) + SourceIndex(1) -3 >Emitted(68, 19) Source(21, 15) + SourceIndex(1) -4 >Emitted(68, 23) Source(21, 32) + SourceIndex(1) -5 >Emitted(68, 40) Source(21, 49) + SourceIndex(1) -6 >Emitted(68, 41) Source(21, 79) + SourceIndex(1) +1->Emitted(69, 5) Source(21, 1) + SourceIndex(1) +2 >Emitted(69, 18) Source(21, 14) + SourceIndex(1) +3 >Emitted(69, 19) Source(21, 15) + SourceIndex(1) +4 >Emitted(69, 23) Source(21, 32) + SourceIndex(1) +5 >Emitted(69, 40) Source(21, 49) + SourceIndex(1) +6 >Emitted(69, 41) Source(21, 79) + SourceIndex(1) --- >>> (function (internalNamespace) { 1 >^^^^ @@ -3946,21 +3951,21 @@ sourceFile:file1.ts 1 > 2 > export namespace 3 > internalNamespace -1 >Emitted(69, 5) Source(21, 15) + SourceIndex(1) -2 >Emitted(69, 16) Source(21, 32) + SourceIndex(1) -3 >Emitted(69, 33) Source(21, 49) + SourceIndex(1) +1 >Emitted(70, 5) Source(21, 15) + SourceIndex(1) +2 >Emitted(70, 16) Source(21, 32) + SourceIndex(1) +3 >Emitted(70, 33) Source(21, 49) + SourceIndex(1) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(70, 9) Source(21, 52) + SourceIndex(1) +1->Emitted(71, 9) Source(21, 52) + SourceIndex(1) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(71, 13) Source(21, 52) + SourceIndex(1) +1->Emitted(72, 13) Source(21, 52) + SourceIndex(1) --- >>> } 1->^^^^^^^^^^^^ @@ -3968,16 +3973,16 @@ sourceFile:file1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(72, 13) Source(21, 76) + SourceIndex(1) -2 >Emitted(72, 14) Source(21, 77) + SourceIndex(1) +1->Emitted(73, 13) Source(21, 76) + SourceIndex(1) +2 >Emitted(73, 14) Source(21, 77) + SourceIndex(1) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(73, 13) Source(21, 76) + SourceIndex(1) -2 >Emitted(73, 29) Source(21, 77) + SourceIndex(1) +1->Emitted(74, 13) Source(21, 76) + SourceIndex(1) +2 >Emitted(74, 29) Source(21, 77) + SourceIndex(1) --- >>> }()); 1 >^^^^^^^^ @@ -3989,10 +3994,10 @@ sourceFile:file1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(74, 9) Source(21, 76) + SourceIndex(1) -2 >Emitted(74, 10) Source(21, 77) + SourceIndex(1) -3 >Emitted(74, 10) Source(21, 52) + SourceIndex(1) -4 >Emitted(74, 14) Source(21, 77) + SourceIndex(1) +1 >Emitted(75, 9) Source(21, 76) + SourceIndex(1) +2 >Emitted(75, 10) Source(21, 77) + SourceIndex(1) +3 >Emitted(75, 10) Source(21, 52) + SourceIndex(1) +4 >Emitted(75, 14) Source(21, 77) + SourceIndex(1) --- >>> internalNamespace.someClass = someClass; 1->^^^^^^^^ @@ -4004,10 +4009,10 @@ sourceFile:file1.ts 2 > someClass 3 > {} 4 > -1->Emitted(75, 9) Source(21, 65) + SourceIndex(1) -2 >Emitted(75, 36) Source(21, 74) + SourceIndex(1) -3 >Emitted(75, 48) Source(21, 77) + SourceIndex(1) -4 >Emitted(75, 49) Source(21, 77) + SourceIndex(1) +1->Emitted(76, 9) Source(21, 65) + SourceIndex(1) +2 >Emitted(76, 36) Source(21, 74) + SourceIndex(1) +3 >Emitted(76, 48) Source(21, 77) + SourceIndex(1) +4 >Emitted(76, 49) Source(21, 77) + SourceIndex(1) --- >>> })(internalNamespace = exports.internalNamespace || (exports.internalNamespace = {})); 1->^^^^ @@ -4028,15 +4033,15 @@ sourceFile:file1.ts 7 > 8 > internalNamespace 9 > { export class someClass {} } -1->Emitted(76, 5) Source(21, 78) + SourceIndex(1) -2 >Emitted(76, 6) Source(21, 79) + SourceIndex(1) -3 >Emitted(76, 8) Source(21, 32) + SourceIndex(1) -4 >Emitted(76, 25) Source(21, 49) + SourceIndex(1) -5 >Emitted(76, 28) Source(21, 32) + SourceIndex(1) -6 >Emitted(76, 53) Source(21, 49) + SourceIndex(1) -7 >Emitted(76, 58) Source(21, 32) + SourceIndex(1) -8 >Emitted(76, 83) Source(21, 49) + SourceIndex(1) -9 >Emitted(76, 91) Source(21, 79) + SourceIndex(1) +1->Emitted(77, 5) Source(21, 78) + SourceIndex(1) +2 >Emitted(77, 6) Source(21, 79) + SourceIndex(1) +3 >Emitted(77, 8) Source(21, 32) + SourceIndex(1) +4 >Emitted(77, 25) Source(21, 49) + SourceIndex(1) +5 >Emitted(77, 28) Source(21, 32) + SourceIndex(1) +6 >Emitted(77, 53) Source(21, 49) + SourceIndex(1) +7 >Emitted(77, 58) Source(21, 32) + SourceIndex(1) +8 >Emitted(77, 83) Source(21, 49) + SourceIndex(1) +9 >Emitted(77, 91) Source(21, 79) + SourceIndex(1) --- >>> /*@internal*/ var internalOther; 1 >^^^^ @@ -4052,12 +4057,12 @@ sourceFile:file1.ts 4 > export namespace 5 > internalOther 6 > .something { export class someClass {} } -1 >Emitted(77, 5) Source(22, 1) + SourceIndex(1) -2 >Emitted(77, 18) Source(22, 14) + SourceIndex(1) -3 >Emitted(77, 19) Source(22, 15) + SourceIndex(1) -4 >Emitted(77, 23) Source(22, 32) + SourceIndex(1) -5 >Emitted(77, 36) Source(22, 45) + SourceIndex(1) -6 >Emitted(77, 37) Source(22, 85) + SourceIndex(1) +1 >Emitted(78, 5) Source(22, 1) + SourceIndex(1) +2 >Emitted(78, 18) Source(22, 14) + SourceIndex(1) +3 >Emitted(78, 19) Source(22, 15) + SourceIndex(1) +4 >Emitted(78, 23) Source(22, 32) + SourceIndex(1) +5 >Emitted(78, 36) Source(22, 45) + SourceIndex(1) +6 >Emitted(78, 37) Source(22, 85) + SourceIndex(1) --- >>> (function (internalOther) { 1 >^^^^ @@ -4066,9 +4071,9 @@ sourceFile:file1.ts 1 > 2 > export namespace 3 > internalOther -1 >Emitted(78, 5) Source(22, 15) + SourceIndex(1) -2 >Emitted(78, 16) Source(22, 32) + SourceIndex(1) -3 >Emitted(78, 29) Source(22, 45) + SourceIndex(1) +1 >Emitted(79, 5) Source(22, 15) + SourceIndex(1) +2 >Emitted(79, 16) Source(22, 32) + SourceIndex(1) +3 >Emitted(79, 29) Source(22, 45) + SourceIndex(1) --- >>> var something; 1 >^^^^^^^^ @@ -4080,10 +4085,10 @@ sourceFile:file1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(79, 9) Source(22, 46) + SourceIndex(1) -2 >Emitted(79, 13) Source(22, 46) + SourceIndex(1) -3 >Emitted(79, 22) Source(22, 55) + SourceIndex(1) -4 >Emitted(79, 23) Source(22, 85) + SourceIndex(1) +1 >Emitted(80, 9) Source(22, 46) + SourceIndex(1) +2 >Emitted(80, 13) Source(22, 46) + SourceIndex(1) +3 >Emitted(80, 22) Source(22, 55) + SourceIndex(1) +4 >Emitted(80, 23) Source(22, 85) + SourceIndex(1) --- >>> (function (something) { 1->^^^^^^^^ @@ -4093,21 +4098,21 @@ sourceFile:file1.ts 1-> 2 > 3 > something -1->Emitted(80, 9) Source(22, 46) + SourceIndex(1) -2 >Emitted(80, 20) Source(22, 46) + SourceIndex(1) -3 >Emitted(80, 29) Source(22, 55) + SourceIndex(1) +1->Emitted(81, 9) Source(22, 46) + SourceIndex(1) +2 >Emitted(81, 20) Source(22, 46) + SourceIndex(1) +3 >Emitted(81, 29) Source(22, 55) + SourceIndex(1) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(81, 13) Source(22, 58) + SourceIndex(1) +1->Emitted(82, 13) Source(22, 58) + SourceIndex(1) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(82, 17) Source(22, 58) + SourceIndex(1) +1->Emitted(83, 17) Source(22, 58) + SourceIndex(1) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -4115,16 +4120,16 @@ sourceFile:file1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(83, 17) Source(22, 82) + SourceIndex(1) -2 >Emitted(83, 18) Source(22, 83) + SourceIndex(1) +1->Emitted(84, 17) Source(22, 82) + SourceIndex(1) +2 >Emitted(84, 18) Source(22, 83) + SourceIndex(1) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(84, 17) Source(22, 82) + SourceIndex(1) -2 >Emitted(84, 33) Source(22, 83) + SourceIndex(1) +1->Emitted(85, 17) Source(22, 82) + SourceIndex(1) +2 >Emitted(85, 33) Source(22, 83) + SourceIndex(1) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -4136,10 +4141,10 @@ sourceFile:file1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(85, 13) Source(22, 82) + SourceIndex(1) -2 >Emitted(85, 14) Source(22, 83) + SourceIndex(1) -3 >Emitted(85, 14) Source(22, 58) + SourceIndex(1) -4 >Emitted(85, 18) Source(22, 83) + SourceIndex(1) +1 >Emitted(86, 13) Source(22, 82) + SourceIndex(1) +2 >Emitted(86, 14) Source(22, 83) + SourceIndex(1) +3 >Emitted(86, 14) Source(22, 58) + SourceIndex(1) +4 >Emitted(86, 18) Source(22, 83) + SourceIndex(1) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -4151,10 +4156,10 @@ sourceFile:file1.ts 2 > someClass 3 > {} 4 > -1->Emitted(86, 13) Source(22, 71) + SourceIndex(1) -2 >Emitted(86, 32) Source(22, 80) + SourceIndex(1) -3 >Emitted(86, 44) Source(22, 83) + SourceIndex(1) -4 >Emitted(86, 45) Source(22, 83) + SourceIndex(1) +1->Emitted(87, 13) Source(22, 71) + SourceIndex(1) +2 >Emitted(87, 32) Source(22, 80) + SourceIndex(1) +3 >Emitted(87, 44) Source(22, 83) + SourceIndex(1) +4 >Emitted(87, 45) Source(22, 83) + SourceIndex(1) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^^^^^ @@ -4175,15 +4180,15 @@ sourceFile:file1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(87, 9) Source(22, 84) + SourceIndex(1) -2 >Emitted(87, 10) Source(22, 85) + SourceIndex(1) -3 >Emitted(87, 12) Source(22, 46) + SourceIndex(1) -4 >Emitted(87, 21) Source(22, 55) + SourceIndex(1) -5 >Emitted(87, 24) Source(22, 46) + SourceIndex(1) -6 >Emitted(87, 47) Source(22, 55) + SourceIndex(1) -7 >Emitted(87, 52) Source(22, 46) + SourceIndex(1) -8 >Emitted(87, 75) Source(22, 55) + SourceIndex(1) -9 >Emitted(87, 83) Source(22, 85) + SourceIndex(1) +1->Emitted(88, 9) Source(22, 84) + SourceIndex(1) +2 >Emitted(88, 10) Source(22, 85) + SourceIndex(1) +3 >Emitted(88, 12) Source(22, 46) + SourceIndex(1) +4 >Emitted(88, 21) Source(22, 55) + SourceIndex(1) +5 >Emitted(88, 24) Source(22, 46) + SourceIndex(1) +6 >Emitted(88, 47) Source(22, 55) + SourceIndex(1) +7 >Emitted(88, 52) Source(22, 46) + SourceIndex(1) +8 >Emitted(88, 75) Source(22, 55) + SourceIndex(1) +9 >Emitted(88, 83) Source(22, 85) + SourceIndex(1) --- >>> })(internalOther = exports.internalOther || (exports.internalOther = {})); 1 >^^^^ @@ -4204,15 +4209,15 @@ sourceFile:file1.ts 7 > 8 > internalOther 9 > .something { export class someClass {} } -1 >Emitted(88, 5) Source(22, 84) + SourceIndex(1) -2 >Emitted(88, 6) Source(22, 85) + SourceIndex(1) -3 >Emitted(88, 8) Source(22, 32) + SourceIndex(1) -4 >Emitted(88, 21) Source(22, 45) + SourceIndex(1) -5 >Emitted(88, 24) Source(22, 32) + SourceIndex(1) -6 >Emitted(88, 45) Source(22, 45) + SourceIndex(1) -7 >Emitted(88, 50) Source(22, 32) + SourceIndex(1) -8 >Emitted(88, 71) Source(22, 45) + SourceIndex(1) -9 >Emitted(88, 79) Source(22, 85) + SourceIndex(1) +1 >Emitted(89, 5) Source(22, 84) + SourceIndex(1) +2 >Emitted(89, 6) Source(22, 85) + SourceIndex(1) +3 >Emitted(89, 8) Source(22, 32) + SourceIndex(1) +4 >Emitted(89, 21) Source(22, 45) + SourceIndex(1) +5 >Emitted(89, 24) Source(22, 32) + SourceIndex(1) +6 >Emitted(89, 45) Source(22, 45) + SourceIndex(1) +7 >Emitted(89, 50) Source(22, 32) + SourceIndex(1) +8 >Emitted(89, 71) Source(22, 45) + SourceIndex(1) +9 >Emitted(89, 79) Source(22, 85) + SourceIndex(1) --- >>> /*@internal*/ exports.internalImport = internalNamespace.someClass; 1 >^^^^ @@ -4236,16 +4241,16 @@ sourceFile:file1.ts 8 > . 9 > someClass 10> ; -1 >Emitted(89, 5) Source(23, 1) + SourceIndex(1) -2 >Emitted(89, 18) Source(23, 14) + SourceIndex(1) -3 >Emitted(89, 19) Source(23, 29) + SourceIndex(1) -4 >Emitted(89, 27) Source(23, 29) + SourceIndex(1) -5 >Emitted(89, 41) Source(23, 43) + SourceIndex(1) -6 >Emitted(89, 44) Source(23, 46) + SourceIndex(1) -7 >Emitted(89, 61) Source(23, 63) + SourceIndex(1) -8 >Emitted(89, 62) Source(23, 64) + SourceIndex(1) -9 >Emitted(89, 71) Source(23, 73) + SourceIndex(1) -10>Emitted(89, 72) Source(23, 74) + SourceIndex(1) +1 >Emitted(90, 5) Source(23, 1) + SourceIndex(1) +2 >Emitted(90, 18) Source(23, 14) + SourceIndex(1) +3 >Emitted(90, 19) Source(23, 29) + SourceIndex(1) +4 >Emitted(90, 27) Source(23, 29) + SourceIndex(1) +5 >Emitted(90, 41) Source(23, 43) + SourceIndex(1) +6 >Emitted(90, 44) Source(23, 46) + SourceIndex(1) +7 >Emitted(90, 61) Source(23, 63) + SourceIndex(1) +8 >Emitted(90, 62) Source(23, 64) + SourceIndex(1) +9 >Emitted(90, 71) Source(23, 73) + SourceIndex(1) +10>Emitted(90, 72) Source(23, 74) + SourceIndex(1) --- >>> /*@internal*/ exports.internalConst = 10; 1 >^^^^ @@ -4266,14 +4271,14 @@ sourceFile:file1.ts 6 > = 7 > 10 8 > ; -1 >Emitted(90, 5) Source(25, 1) + SourceIndex(1) -2 >Emitted(90, 18) Source(25, 14) + SourceIndex(1) -3 >Emitted(90, 19) Source(25, 28) + SourceIndex(1) -4 >Emitted(90, 27) Source(25, 28) + SourceIndex(1) -5 >Emitted(90, 40) Source(25, 41) + SourceIndex(1) -6 >Emitted(90, 43) Source(25, 44) + SourceIndex(1) -7 >Emitted(90, 45) Source(25, 46) + SourceIndex(1) -8 >Emitted(90, 46) Source(25, 47) + SourceIndex(1) +1 >Emitted(91, 5) Source(25, 1) + SourceIndex(1) +2 >Emitted(91, 18) Source(25, 14) + SourceIndex(1) +3 >Emitted(91, 19) Source(25, 28) + SourceIndex(1) +4 >Emitted(91, 27) Source(25, 28) + SourceIndex(1) +5 >Emitted(91, 40) Source(25, 41) + SourceIndex(1) +6 >Emitted(91, 43) Source(25, 44) + SourceIndex(1) +7 >Emitted(91, 45) Source(25, 46) + SourceIndex(1) +8 >Emitted(91, 46) Source(25, 47) + SourceIndex(1) --- >>> /*@internal*/ var internalEnum; 1 >^^^^ @@ -4287,11 +4292,11 @@ sourceFile:file1.ts 3 > 4 > export enum 5 > internalEnum { a, b, c } -1 >Emitted(91, 5) Source(26, 1) + SourceIndex(1) -2 >Emitted(91, 18) Source(26, 14) + SourceIndex(1) -3 >Emitted(91, 19) Source(26, 15) + SourceIndex(1) -4 >Emitted(91, 23) Source(26, 27) + SourceIndex(1) -5 >Emitted(91, 35) Source(26, 51) + SourceIndex(1) +1 >Emitted(92, 5) Source(26, 1) + SourceIndex(1) +2 >Emitted(92, 18) Source(26, 14) + SourceIndex(1) +3 >Emitted(92, 19) Source(26, 15) + SourceIndex(1) +4 >Emitted(92, 23) Source(26, 27) + SourceIndex(1) +5 >Emitted(92, 35) Source(26, 51) + SourceIndex(1) --- >>> (function (internalEnum) { 1 >^^^^ @@ -4301,9 +4306,9 @@ sourceFile:file1.ts 1 > 2 > export enum 3 > internalEnum -1 >Emitted(92, 5) Source(26, 15) + SourceIndex(1) -2 >Emitted(92, 16) Source(26, 27) + SourceIndex(1) -3 >Emitted(92, 28) Source(26, 39) + SourceIndex(1) +1 >Emitted(93, 5) Source(26, 15) + SourceIndex(1) +2 >Emitted(93, 16) Source(26, 27) + SourceIndex(1) +3 >Emitted(93, 28) Source(26, 39) + SourceIndex(1) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -4313,9 +4318,9 @@ sourceFile:file1.ts 1-> { 2 > a 3 > -1->Emitted(93, 9) Source(26, 42) + SourceIndex(1) -2 >Emitted(93, 50) Source(26, 43) + SourceIndex(1) -3 >Emitted(93, 51) Source(26, 43) + SourceIndex(1) +1->Emitted(94, 9) Source(26, 42) + SourceIndex(1) +2 >Emitted(94, 50) Source(26, 43) + SourceIndex(1) +3 >Emitted(94, 51) Source(26, 43) + SourceIndex(1) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -4325,9 +4330,9 @@ sourceFile:file1.ts 1->, 2 > b 3 > -1->Emitted(94, 9) Source(26, 45) + SourceIndex(1) -2 >Emitted(94, 50) Source(26, 46) + SourceIndex(1) -3 >Emitted(94, 51) Source(26, 46) + SourceIndex(1) +1->Emitted(95, 9) Source(26, 45) + SourceIndex(1) +2 >Emitted(95, 50) Source(26, 46) + SourceIndex(1) +3 >Emitted(95, 51) Source(26, 46) + SourceIndex(1) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -4337,9 +4342,9 @@ sourceFile:file1.ts 1->, 2 > c 3 > -1->Emitted(95, 9) Source(26, 48) + SourceIndex(1) -2 >Emitted(95, 50) Source(26, 49) + SourceIndex(1) -3 >Emitted(95, 51) Source(26, 49) + SourceIndex(1) +1->Emitted(96, 9) Source(26, 48) + SourceIndex(1) +2 >Emitted(96, 50) Source(26, 49) + SourceIndex(1) +3 >Emitted(96, 51) Source(26, 49) + SourceIndex(1) --- >>> })(internalEnum = exports.internalEnum || (exports.internalEnum = {})); 1->^^^^ @@ -4360,15 +4365,15 @@ sourceFile:file1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(96, 5) Source(26, 50) + SourceIndex(1) -2 >Emitted(96, 6) Source(26, 51) + SourceIndex(1) -3 >Emitted(96, 8) Source(26, 27) + SourceIndex(1) -4 >Emitted(96, 20) Source(26, 39) + SourceIndex(1) -5 >Emitted(96, 23) Source(26, 27) + SourceIndex(1) -6 >Emitted(96, 43) Source(26, 39) + SourceIndex(1) -7 >Emitted(96, 48) Source(26, 27) + SourceIndex(1) -8 >Emitted(96, 68) Source(26, 39) + SourceIndex(1) -9 >Emitted(96, 76) Source(26, 51) + SourceIndex(1) +1->Emitted(97, 5) Source(26, 50) + SourceIndex(1) +2 >Emitted(97, 6) Source(26, 51) + SourceIndex(1) +3 >Emitted(97, 8) Source(26, 27) + SourceIndex(1) +4 >Emitted(97, 20) Source(26, 39) + SourceIndex(1) +5 >Emitted(97, 23) Source(26, 27) + SourceIndex(1) +6 >Emitted(97, 43) Source(26, 39) + SourceIndex(1) +7 >Emitted(97, 48) Source(26, 27) + SourceIndex(1) +8 >Emitted(97, 68) Source(26, 39) + SourceIndex(1) +9 >Emitted(97, 76) Source(26, 51) + SourceIndex(1) --- ------------------------------------------------------------------- emittedFile:/src/lib/module.js @@ -4392,12 +4397,12 @@ sourceFile:file2.ts 4 > = 5 > 20 6 > ; -1 >Emitted(102, 5) Source(1, 14) + SourceIndex(2) -2 >Emitted(102, 13) Source(1, 14) + SourceIndex(2) -3 >Emitted(102, 14) Source(1, 15) + SourceIndex(2) -4 >Emitted(102, 17) Source(1, 18) + SourceIndex(2) -5 >Emitted(102, 19) Source(1, 20) + SourceIndex(2) -6 >Emitted(102, 20) Source(1, 21) + SourceIndex(2) +1 >Emitted(103, 5) Source(1, 14) + SourceIndex(2) +2 >Emitted(103, 13) Source(1, 14) + SourceIndex(2) +3 >Emitted(103, 14) Source(1, 15) + SourceIndex(2) +4 >Emitted(103, 17) Source(1, 18) + SourceIndex(2) +5 >Emitted(103, 19) Source(1, 20) + SourceIndex(2) +6 >Emitted(103, 20) Source(1, 21) + SourceIndex(2) --- ------------------------------------------------------------------- emittedFile:/src/lib/module.js @@ -4418,12 +4423,12 @@ sourceFile:global.ts 4 > = 5 > 10 6 > ; -1 >Emitted(104, 1) Source(1, 1) + SourceIndex(3) -2 >Emitted(104, 5) Source(1, 7) + SourceIndex(3) -3 >Emitted(104, 16) Source(1, 18) + SourceIndex(3) -4 >Emitted(104, 19) Source(1, 21) + SourceIndex(3) -5 >Emitted(104, 21) Source(1, 23) + SourceIndex(3) -6 >Emitted(104, 22) Source(1, 24) + SourceIndex(3) +1 >Emitted(105, 1) Source(1, 1) + SourceIndex(3) +2 >Emitted(105, 5) Source(1, 7) + SourceIndex(3) +3 >Emitted(105, 16) Source(1, 18) + SourceIndex(3) +4 >Emitted(105, 19) Source(1, 21) + SourceIndex(3) +5 >Emitted(105, 21) Source(1, 23) + SourceIndex(3) +6 >Emitted(105, 22) Source(1, 24) + SourceIndex(3) --- >>>//# sourceMappingURL=module.js.map @@ -4441,7 +4446,7 @@ sourceFile:global.ts "sections": [ { "pos": 0, - "end": 4396, + "end": 4448, "kind": "text" } ] @@ -4508,7 +4513,7 @@ sourceFile:global.ts ====================================================================== File:: /src/lib/module.js ---------------------------------------------------------------------- -text: (0-4396) +text: (0-4448) /*@internal*/ var myGlob = 20; define("file1", ["require", "exports"], function (require, exports) { "use strict"; @@ -4518,8 +4523,9 @@ define("file1", ["require", "exports"], function (require, exports) { var normalC = /** @class */ (function () { /*@internal*/ function normalC() { } - /*@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /*@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /*@internal*/ get: function () { return 10; }, /*@internal*/ set: function (val) { }, enumerable: false, diff --git a/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/stripInternal.js b/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/stripInternal.js index bb809835351b2..c9b632b8a0a98 100644 --- a/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/stripInternal.js +++ b/tests/baselines/reference/tsbuild/amdModulesWithOut/initial-build/stripInternal.js @@ -346,8 +346,9 @@ define("file1", ["require", "exports"], function (require, exports) { var normalC = /** @class */ (function () { /*@internal*/ function normalC() { } - /*@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /*@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /*@internal*/ get: function () { return 10; }, /*@internal*/ set: function (val) { }, enumerable: false, @@ -451,7 +452,7 @@ var myVar = 30; //# sourceMappingURL=module.js.map //// [/src/app/module.js.map] -{"version":3,"file":"module.js","sourceRoot":"","sources":["../lib/file0.ts","../lib/file1.ts","../lib/file2.ts","../lib/global.ts","file3.ts","file4.ts"],"names":[],"mappings":"AAAA,aAAa,CAAC,IAAM,MAAM,GAAG,EAAE,CAAC;;;;;ICAnB,QAAA,CAAC,GAAG,EAAE,CAAC;IACpB;QACI,aAAa,CAAC;QAAgB,CAAC;QAE/B,aAAa,CAAC,wBAAM,GAAN,cAAW,CAAC;QACZ,sBAAI,sBAAC;YAAnB,aAAa,MAAC,cAAU,OAAO,EAAE,CAAC,CAAC,CAAC;YACpC,aAAa,MAAC,UAAM,GAAW,IAAI,CAAC;;;WADA;QAExC,cAAC;IAAD,CAAC,AAND,IAMC;IANY,0BAAO;IAOpB,IAAiB,OAAO,CASvB;IATD,WAAiB,OAAO;QACpB,aAAa,CAAC;YAAA;YAAiB,CAAC;YAAD,QAAC;QAAD,CAAC,AAAlB,IAAkB;QAAL,SAAC,IAAI,CAAA;QAChC,aAAa,CAAC,SAAgB,GAAG,KAAI,CAAC;QAAR,WAAG,MAAK,CAAA;QACtC,aAAa,CAAC,IAAiB,aAAa,CAAsB;QAApD,WAAiB,aAAa;YAAG;gBAAA;gBAAgB,CAAC;gBAAD,QAAC;YAAD,CAAC,AAAjB,IAAiB;YAAJ,eAAC,IAAG,CAAA;QAAC,CAAC,EAAnC,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAAsB;QAClE,aAAa,CAAC,IAAiB,SAAS,CAAwC;QAAlE,WAAiB,SAAS;YAAC,IAAA,SAAS,CAA8B;YAAvC,WAAA,SAAS;gBAAG;oBAAA;oBAAwB,CAAC;oBAAD,gBAAC;gBAAD,CAAC,AAAzB,IAAyB;gBAAZ,mBAAS,YAAG,CAAA;YAAC,CAAC,EAAvC,SAAS,GAAT,mBAAS,KAAT,mBAAS,QAA8B;QAAD,CAAC,EAAjD,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAAwC;QAChF,aAAa,CAAe,kBAAU,GAAG,aAAa,CAAC,CAAC,CAAC;QAEzD,aAAa,CAAc,qBAAa,GAAG,EAAE,CAAC;QAC9C,aAAa,CAAC,IAAY,YAAwB;QAApC,WAAY,YAAY;YAAG,yCAAC,CAAA;YAAE,yCAAC,CAAA;YAAE,yCAAC,CAAA;QAAC,CAAC,EAAxB,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAAY;IACtD,CAAC,EATgB,OAAO,GAAP,eAAO,KAAP,eAAO,QASvB;IACD,aAAa,CAAC;QAAA;QAAwB,CAAC;QAAD,gBAAC;IAAD,CAAC,AAAzB,IAAyB;IAAZ,8BAAS;IACpC,aAAa,CAAC,SAAgB,WAAW,KAAI,CAAC;IAAhC,kCAAgC;IAC9C,aAAa,CAAC,IAAiB,iBAAiB,CAA8B;IAAhE,WAAiB,iBAAiB;QAAG;YAAA;YAAwB,CAAC;YAAD,gBAAC;QAAD,CAAC,AAAzB,IAAyB;QAAZ,2BAAS,YAAG,CAAA;IAAC,CAAC,EAA/C,iBAAiB,GAAjB,yBAAiB,KAAjB,yBAAiB,QAA8B;IAC9E,aAAa,CAAC,IAAiB,aAAa,CAAwC;IAAtE,WAAiB,aAAa;QAAC,IAAA,SAAS,CAA8B;QAAvC,WAAA,SAAS;YAAG;gBAAA;gBAAwB,CAAC;gBAAD,gBAAC;YAAD,CAAC,AAAzB,IAAyB;YAAZ,mBAAS,YAAG,CAAA;QAAC,CAAC,EAAvC,SAAS,GAAT,uBAAS,KAAT,uBAAS,QAA8B;IAAD,CAAC,EAArD,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAAwC;IACpF,aAAa,CAAe,QAAA,cAAc,GAAG,iBAAiB,CAAC,SAAS,CAAC;IAEzE,aAAa,CAAc,QAAA,aAAa,GAAG,EAAE,CAAC;IAC9C,aAAa,CAAC,IAAY,YAAwB;IAApC,WAAY,YAAY;QAAG,yCAAC,CAAA;QAAE,yCAAC,CAAA;QAAE,yCAAC,CAAA;IAAC,CAAC,EAAxB,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAAY;;;;;;ICzBrC,QAAA,CAAC,GAAG,EAAE,CAAC;;ACApB,IAAM,WAAW,GAAG,EAAE,CAAC;;;;;ICAV,QAAA,CAAC,GAAG,EAAE,CAAC;;ACApB,IAAM,KAAK,GAAG,EAAE,CAAC"} +{"version":3,"file":"module.js","sourceRoot":"","sources":["../lib/file0.ts","../lib/file1.ts","../lib/file2.ts","../lib/global.ts","file3.ts","file4.ts"],"names":[],"mappings":"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"} //// [/src/app/module.js.map.baseline.txt] =================================================================== @@ -542,13 +543,14 @@ sourceFile:../lib/file1.ts >>> } 1 >^^^^^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 >constructor() { 2 > } 1 >Emitted(9, 9) Source(3, 35) + SourceIndex(1) 2 >Emitted(9, 10) Source(3, 36) + SourceIndex(1) --- ->>> /*@internal*/ normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> /*@internal*/ normalC_prototype.method = function () { }; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^ 3 > ^ @@ -565,15 +567,15 @@ sourceFile:../lib/file1.ts 5 > 6 > method() { 7 > } -1->Emitted(10, 9) Source(5, 5) + SourceIndex(1) -2 >Emitted(10, 22) Source(5, 18) + SourceIndex(1) -3 >Emitted(10, 23) Source(5, 19) + SourceIndex(1) -4 >Emitted(10, 47) Source(5, 25) + SourceIndex(1) -5 >Emitted(10, 50) Source(5, 19) + SourceIndex(1) -6 >Emitted(10, 64) Source(5, 30) + SourceIndex(1) -7 >Emitted(10, 65) Source(5, 31) + SourceIndex(1) ---- ->>> Object.defineProperty(normalC.prototype, "c", { +1->Emitted(11, 9) Source(5, 5) + SourceIndex(1) +2 >Emitted(11, 22) Source(5, 18) + SourceIndex(1) +3 >Emitted(11, 23) Source(5, 19) + SourceIndex(1) +4 >Emitted(11, 47) Source(5, 25) + SourceIndex(1) +5 >Emitted(11, 50) Source(5, 19) + SourceIndex(1) +6 >Emitted(11, 64) Source(5, 30) + SourceIndex(1) +7 >Emitted(11, 65) Source(5, 31) + SourceIndex(1) +--- +>>> Object.defineProperty(normalC_prototype, "c", { 1 >^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -582,9 +584,9 @@ sourceFile:../lib/file1.ts > /*@internal*/ 2 > get 3 > c -1 >Emitted(11, 9) Source(6, 19) + SourceIndex(1) -2 >Emitted(11, 31) Source(6, 23) + SourceIndex(1) -3 >Emitted(11, 53) Source(6, 24) + SourceIndex(1) +1 >Emitted(12, 9) Source(6, 19) + SourceIndex(1) +2 >Emitted(12, 31) Source(6, 23) + SourceIndex(1) +3 >Emitted(12, 53) Source(6, 24) + SourceIndex(1) --- >>> /*@internal*/ get: function () { return 10; }, 1->^^^^^^^^^^^^ @@ -605,15 +607,15 @@ sourceFile:../lib/file1.ts 7 > ; 8 > 9 > } -1->Emitted(12, 13) Source(6, 5) + SourceIndex(1) -2 >Emitted(12, 26) Source(6, 18) + SourceIndex(1) -3 >Emitted(12, 32) Source(6, 19) + SourceIndex(1) -4 >Emitted(12, 46) Source(6, 29) + SourceIndex(1) -5 >Emitted(12, 53) Source(6, 36) + SourceIndex(1) -6 >Emitted(12, 55) Source(6, 38) + SourceIndex(1) -7 >Emitted(12, 56) Source(6, 39) + SourceIndex(1) -8 >Emitted(12, 57) Source(6, 40) + SourceIndex(1) -9 >Emitted(12, 58) Source(6, 41) + SourceIndex(1) +1->Emitted(13, 13) Source(6, 5) + SourceIndex(1) +2 >Emitted(13, 26) Source(6, 18) + SourceIndex(1) +3 >Emitted(13, 32) Source(6, 19) + SourceIndex(1) +4 >Emitted(13, 46) Source(6, 29) + SourceIndex(1) +5 >Emitted(13, 53) Source(6, 36) + SourceIndex(1) +6 >Emitted(13, 55) Source(6, 38) + SourceIndex(1) +7 >Emitted(13, 56) Source(6, 39) + SourceIndex(1) +8 >Emitted(13, 57) Source(6, 40) + SourceIndex(1) +9 >Emitted(13, 58) Source(6, 41) + SourceIndex(1) --- >>> /*@internal*/ set: function (val) { }, 1 >^^^^^^^^^^^^ @@ -631,13 +633,13 @@ sourceFile:../lib/file1.ts 5 > val: number 6 > ) { 7 > } -1 >Emitted(13, 13) Source(7, 5) + SourceIndex(1) -2 >Emitted(13, 26) Source(7, 18) + SourceIndex(1) -3 >Emitted(13, 32) Source(7, 19) + SourceIndex(1) -4 >Emitted(13, 42) Source(7, 25) + SourceIndex(1) -5 >Emitted(13, 45) Source(7, 36) + SourceIndex(1) -6 >Emitted(13, 49) Source(7, 40) + SourceIndex(1) -7 >Emitted(13, 50) Source(7, 41) + SourceIndex(1) +1 >Emitted(14, 13) Source(7, 5) + SourceIndex(1) +2 >Emitted(14, 26) Source(7, 18) + SourceIndex(1) +3 >Emitted(14, 32) Source(7, 19) + SourceIndex(1) +4 >Emitted(14, 42) Source(7, 25) + SourceIndex(1) +5 >Emitted(14, 45) Source(7, 36) + SourceIndex(1) +6 >Emitted(14, 49) Source(7, 40) + SourceIndex(1) +7 >Emitted(14, 50) Source(7, 41) + SourceIndex(1) --- >>> enumerable: false, >>> configurable: true @@ -645,7 +647,7 @@ sourceFile:../lib/file1.ts 1 >^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(16, 12) Source(6, 41) + SourceIndex(1) +1 >Emitted(17, 12) Source(6, 41) + SourceIndex(1) --- >>> return normalC; 1->^^^^^^^^ @@ -654,8 +656,8 @@ sourceFile:../lib/file1.ts > /*@internal*/ set c(val: number) { } > 2 > } -1->Emitted(17, 9) Source(8, 1) + SourceIndex(1) -2 >Emitted(17, 23) Source(8, 2) + SourceIndex(1) +1->Emitted(18, 9) Source(8, 1) + SourceIndex(1) +2 >Emitted(18, 23) Source(8, 2) + SourceIndex(1) --- >>> }()); 1 >^^^^ @@ -673,18 +675,18 @@ sourceFile:../lib/file1.ts > /*@internal*/ get c() { return 10; } > /*@internal*/ set c(val: number) { } > } -1 >Emitted(18, 5) Source(8, 1) + SourceIndex(1) -2 >Emitted(18, 6) Source(8, 2) + SourceIndex(1) -3 >Emitted(18, 6) Source(2, 1) + SourceIndex(1) -4 >Emitted(18, 10) Source(8, 2) + SourceIndex(1) +1 >Emitted(19, 5) Source(8, 1) + SourceIndex(1) +2 >Emitted(19, 6) Source(8, 2) + SourceIndex(1) +3 >Emitted(19, 6) Source(2, 1) + SourceIndex(1) +4 >Emitted(19, 10) Source(8, 2) + SourceIndex(1) --- >>> exports.normalC = normalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> 2 > normalC -1->Emitted(19, 5) Source(2, 14) + SourceIndex(1) -2 >Emitted(19, 31) Source(2, 21) + SourceIndex(1) +1->Emitted(20, 5) Source(2, 14) + SourceIndex(1) +2 >Emitted(20, 31) Source(2, 21) + SourceIndex(1) --- >>> var normalN; 1 >^^^^ @@ -712,10 +714,10 @@ sourceFile:../lib/file1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(20, 5) Source(9, 1) + SourceIndex(1) -2 >Emitted(20, 9) Source(9, 18) + SourceIndex(1) -3 >Emitted(20, 16) Source(9, 25) + SourceIndex(1) -4 >Emitted(20, 17) Source(18, 2) + SourceIndex(1) +1 >Emitted(21, 5) Source(9, 1) + SourceIndex(1) +2 >Emitted(21, 9) Source(9, 18) + SourceIndex(1) +3 >Emitted(21, 16) Source(9, 25) + SourceIndex(1) +4 >Emitted(21, 17) Source(18, 2) + SourceIndex(1) --- >>> (function (normalN) { 1->^^^^ @@ -725,9 +727,9 @@ sourceFile:../lib/file1.ts 1-> 2 > export namespace 3 > normalN -1->Emitted(21, 5) Source(9, 1) + SourceIndex(1) -2 >Emitted(21, 16) Source(9, 18) + SourceIndex(1) -3 >Emitted(21, 23) Source(9, 25) + SourceIndex(1) +1->Emitted(22, 5) Source(9, 1) + SourceIndex(1) +2 >Emitted(22, 16) Source(9, 18) + SourceIndex(1) +3 >Emitted(22, 23) Source(9, 25) + SourceIndex(1) --- >>> /*@internal*/ var C = /** @class */ (function () { 1->^^^^^^^^ @@ -738,15 +740,15 @@ sourceFile:../lib/file1.ts > 2 > /*@internal*/ 3 > -1->Emitted(22, 9) Source(10, 5) + SourceIndex(1) -2 >Emitted(22, 22) Source(10, 18) + SourceIndex(1) -3 >Emitted(22, 23) Source(10, 19) + SourceIndex(1) +1->Emitted(23, 9) Source(10, 5) + SourceIndex(1) +2 >Emitted(23, 22) Source(10, 18) + SourceIndex(1) +3 >Emitted(23, 23) Source(10, 19) + SourceIndex(1) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(23, 13) Source(10, 19) + SourceIndex(1) +1->Emitted(24, 13) Source(10, 19) + SourceIndex(1) --- >>> } 1->^^^^^^^^^^^^ @@ -754,16 +756,16 @@ sourceFile:../lib/file1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(24, 13) Source(10, 36) + SourceIndex(1) -2 >Emitted(24, 14) Source(10, 37) + SourceIndex(1) +1->Emitted(25, 13) Source(10, 36) + SourceIndex(1) +2 >Emitted(25, 14) Source(10, 37) + SourceIndex(1) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(25, 13) Source(10, 36) + SourceIndex(1) -2 >Emitted(25, 21) Source(10, 37) + SourceIndex(1) +1->Emitted(26, 13) Source(10, 36) + SourceIndex(1) +2 >Emitted(26, 21) Source(10, 37) + SourceIndex(1) --- >>> }()); 1 >^^^^^^^^ @@ -775,10 +777,10 @@ sourceFile:../lib/file1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(26, 9) Source(10, 36) + SourceIndex(1) -2 >Emitted(26, 10) Source(10, 37) + SourceIndex(1) -3 >Emitted(26, 10) Source(10, 19) + SourceIndex(1) -4 >Emitted(26, 14) Source(10, 37) + SourceIndex(1) +1 >Emitted(27, 9) Source(10, 36) + SourceIndex(1) +2 >Emitted(27, 10) Source(10, 37) + SourceIndex(1) +3 >Emitted(27, 10) Source(10, 19) + SourceIndex(1) +4 >Emitted(27, 14) Source(10, 37) + SourceIndex(1) --- >>> normalN.C = C; 1->^^^^^^^^ @@ -790,10 +792,10 @@ sourceFile:../lib/file1.ts 2 > C 3 > { } 4 > -1->Emitted(27, 9) Source(10, 32) + SourceIndex(1) -2 >Emitted(27, 18) Source(10, 33) + SourceIndex(1) -3 >Emitted(27, 22) Source(10, 37) + SourceIndex(1) -4 >Emitted(27, 23) Source(10, 37) + SourceIndex(1) +1->Emitted(28, 9) Source(10, 32) + SourceIndex(1) +2 >Emitted(28, 18) Source(10, 33) + SourceIndex(1) +3 >Emitted(28, 22) Source(10, 37) + SourceIndex(1) +4 >Emitted(28, 23) Source(10, 37) + SourceIndex(1) --- >>> /*@internal*/ function foo() { } 1->^^^^^^^^ @@ -811,13 +813,13 @@ sourceFile:../lib/file1.ts 5 > foo 6 > () { 7 > } -1->Emitted(28, 9) Source(11, 5) + SourceIndex(1) -2 >Emitted(28, 22) Source(11, 18) + SourceIndex(1) -3 >Emitted(28, 23) Source(11, 19) + SourceIndex(1) -4 >Emitted(28, 32) Source(11, 35) + SourceIndex(1) -5 >Emitted(28, 35) Source(11, 38) + SourceIndex(1) -6 >Emitted(28, 40) Source(11, 42) + SourceIndex(1) -7 >Emitted(28, 41) Source(11, 43) + SourceIndex(1) +1->Emitted(29, 9) Source(11, 5) + SourceIndex(1) +2 >Emitted(29, 22) Source(11, 18) + SourceIndex(1) +3 >Emitted(29, 23) Source(11, 19) + SourceIndex(1) +4 >Emitted(29, 32) Source(11, 35) + SourceIndex(1) +5 >Emitted(29, 35) Source(11, 38) + SourceIndex(1) +6 >Emitted(29, 40) Source(11, 42) + SourceIndex(1) +7 >Emitted(29, 41) Source(11, 43) + SourceIndex(1) --- >>> normalN.foo = foo; 1 >^^^^^^^^ @@ -829,10 +831,10 @@ sourceFile:../lib/file1.ts 2 > foo 3 > () {} 4 > -1 >Emitted(29, 9) Source(11, 35) + SourceIndex(1) -2 >Emitted(29, 20) Source(11, 38) + SourceIndex(1) -3 >Emitted(29, 26) Source(11, 43) + SourceIndex(1) -4 >Emitted(29, 27) Source(11, 43) + SourceIndex(1) +1 >Emitted(30, 9) Source(11, 35) + SourceIndex(1) +2 >Emitted(30, 20) Source(11, 38) + SourceIndex(1) +3 >Emitted(30, 26) Source(11, 43) + SourceIndex(1) +4 >Emitted(30, 27) Source(11, 43) + SourceIndex(1) --- >>> /*@internal*/ var someNamespace; 1->^^^^^^^^ @@ -848,12 +850,12 @@ sourceFile:../lib/file1.ts 4 > export namespace 5 > someNamespace 6 > { export class C {} } -1->Emitted(30, 9) Source(12, 5) + SourceIndex(1) -2 >Emitted(30, 22) Source(12, 18) + SourceIndex(1) -3 >Emitted(30, 23) Source(12, 19) + SourceIndex(1) -4 >Emitted(30, 27) Source(12, 36) + SourceIndex(1) -5 >Emitted(30, 40) Source(12, 49) + SourceIndex(1) -6 >Emitted(30, 41) Source(12, 71) + SourceIndex(1) +1->Emitted(31, 9) Source(12, 5) + SourceIndex(1) +2 >Emitted(31, 22) Source(12, 18) + SourceIndex(1) +3 >Emitted(31, 23) Source(12, 19) + SourceIndex(1) +4 >Emitted(31, 27) Source(12, 36) + SourceIndex(1) +5 >Emitted(31, 40) Source(12, 49) + SourceIndex(1) +6 >Emitted(31, 41) Source(12, 71) + SourceIndex(1) --- >>> (function (someNamespace) { 1 >^^^^^^^^ @@ -863,21 +865,21 @@ sourceFile:../lib/file1.ts 1 > 2 > export namespace 3 > someNamespace -1 >Emitted(31, 9) Source(12, 19) + SourceIndex(1) -2 >Emitted(31, 20) Source(12, 36) + SourceIndex(1) -3 >Emitted(31, 33) Source(12, 49) + SourceIndex(1) +1 >Emitted(32, 9) Source(12, 19) + SourceIndex(1) +2 >Emitted(32, 20) Source(12, 36) + SourceIndex(1) +3 >Emitted(32, 33) Source(12, 49) + SourceIndex(1) --- >>> var C = /** @class */ (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(32, 13) Source(12, 52) + SourceIndex(1) +1->Emitted(33, 13) Source(12, 52) + SourceIndex(1) --- >>> function C() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(33, 17) Source(12, 52) + SourceIndex(1) +1->Emitted(34, 17) Source(12, 52) + SourceIndex(1) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -885,16 +887,16 @@ sourceFile:../lib/file1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(34, 17) Source(12, 68) + SourceIndex(1) -2 >Emitted(34, 18) Source(12, 69) + SourceIndex(1) +1->Emitted(35, 17) Source(12, 68) + SourceIndex(1) +2 >Emitted(35, 18) Source(12, 69) + SourceIndex(1) --- >>> return C; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(35, 17) Source(12, 68) + SourceIndex(1) -2 >Emitted(35, 25) Source(12, 69) + SourceIndex(1) +1->Emitted(36, 17) Source(12, 68) + SourceIndex(1) +2 >Emitted(36, 25) Source(12, 69) + SourceIndex(1) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -906,10 +908,10 @@ sourceFile:../lib/file1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(36, 13) Source(12, 68) + SourceIndex(1) -2 >Emitted(36, 14) Source(12, 69) + SourceIndex(1) -3 >Emitted(36, 14) Source(12, 52) + SourceIndex(1) -4 >Emitted(36, 18) Source(12, 69) + SourceIndex(1) +1 >Emitted(37, 13) Source(12, 68) + SourceIndex(1) +2 >Emitted(37, 14) Source(12, 69) + SourceIndex(1) +3 >Emitted(37, 14) Source(12, 52) + SourceIndex(1) +4 >Emitted(37, 18) Source(12, 69) + SourceIndex(1) --- >>> someNamespace.C = C; 1->^^^^^^^^^^^^ @@ -921,10 +923,10 @@ sourceFile:../lib/file1.ts 2 > C 3 > {} 4 > -1->Emitted(37, 13) Source(12, 65) + SourceIndex(1) -2 >Emitted(37, 28) Source(12, 66) + SourceIndex(1) -3 >Emitted(37, 32) Source(12, 69) + SourceIndex(1) -4 >Emitted(37, 33) Source(12, 69) + SourceIndex(1) +1->Emitted(38, 13) Source(12, 65) + SourceIndex(1) +2 >Emitted(38, 28) Source(12, 66) + SourceIndex(1) +3 >Emitted(38, 32) Source(12, 69) + SourceIndex(1) +4 >Emitted(38, 33) Source(12, 69) + SourceIndex(1) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^^^^^ @@ -945,15 +947,15 @@ sourceFile:../lib/file1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(38, 9) Source(12, 70) + SourceIndex(1) -2 >Emitted(38, 10) Source(12, 71) + SourceIndex(1) -3 >Emitted(38, 12) Source(12, 36) + SourceIndex(1) -4 >Emitted(38, 25) Source(12, 49) + SourceIndex(1) -5 >Emitted(38, 28) Source(12, 36) + SourceIndex(1) -6 >Emitted(38, 49) Source(12, 49) + SourceIndex(1) -7 >Emitted(38, 54) Source(12, 36) + SourceIndex(1) -8 >Emitted(38, 75) Source(12, 49) + SourceIndex(1) -9 >Emitted(38, 83) Source(12, 71) + SourceIndex(1) +1->Emitted(39, 9) Source(12, 70) + SourceIndex(1) +2 >Emitted(39, 10) Source(12, 71) + SourceIndex(1) +3 >Emitted(39, 12) Source(12, 36) + SourceIndex(1) +4 >Emitted(39, 25) Source(12, 49) + SourceIndex(1) +5 >Emitted(39, 28) Source(12, 36) + SourceIndex(1) +6 >Emitted(39, 49) Source(12, 49) + SourceIndex(1) +7 >Emitted(39, 54) Source(12, 36) + SourceIndex(1) +8 >Emitted(39, 75) Source(12, 49) + SourceIndex(1) +9 >Emitted(39, 83) Source(12, 71) + SourceIndex(1) --- >>> /*@internal*/ var someOther; 1 >^^^^^^^^ @@ -969,12 +971,12 @@ sourceFile:../lib/file1.ts 4 > export namespace 5 > someOther 6 > .something { export class someClass {} } -1 >Emitted(39, 9) Source(13, 5) + SourceIndex(1) -2 >Emitted(39, 22) Source(13, 18) + SourceIndex(1) -3 >Emitted(39, 23) Source(13, 19) + SourceIndex(1) -4 >Emitted(39, 27) Source(13, 36) + SourceIndex(1) -5 >Emitted(39, 36) Source(13, 45) + SourceIndex(1) -6 >Emitted(39, 37) Source(13, 85) + SourceIndex(1) +1 >Emitted(40, 9) Source(13, 5) + SourceIndex(1) +2 >Emitted(40, 22) Source(13, 18) + SourceIndex(1) +3 >Emitted(40, 23) Source(13, 19) + SourceIndex(1) +4 >Emitted(40, 27) Source(13, 36) + SourceIndex(1) +5 >Emitted(40, 36) Source(13, 45) + SourceIndex(1) +6 >Emitted(40, 37) Source(13, 85) + SourceIndex(1) --- >>> (function (someOther) { 1 >^^^^^^^^ @@ -983,9 +985,9 @@ sourceFile:../lib/file1.ts 1 > 2 > export namespace 3 > someOther -1 >Emitted(40, 9) Source(13, 19) + SourceIndex(1) -2 >Emitted(40, 20) Source(13, 36) + SourceIndex(1) -3 >Emitted(40, 29) Source(13, 45) + SourceIndex(1) +1 >Emitted(41, 9) Source(13, 19) + SourceIndex(1) +2 >Emitted(41, 20) Source(13, 36) + SourceIndex(1) +3 >Emitted(41, 29) Source(13, 45) + SourceIndex(1) --- >>> var something; 1 >^^^^^^^^^^^^ @@ -997,10 +999,10 @@ sourceFile:../lib/file1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(41, 13) Source(13, 46) + SourceIndex(1) -2 >Emitted(41, 17) Source(13, 46) + SourceIndex(1) -3 >Emitted(41, 26) Source(13, 55) + SourceIndex(1) -4 >Emitted(41, 27) Source(13, 85) + SourceIndex(1) +1 >Emitted(42, 13) Source(13, 46) + SourceIndex(1) +2 >Emitted(42, 17) Source(13, 46) + SourceIndex(1) +3 >Emitted(42, 26) Source(13, 55) + SourceIndex(1) +4 >Emitted(42, 27) Source(13, 85) + SourceIndex(1) --- >>> (function (something) { 1->^^^^^^^^^^^^ @@ -1010,21 +1012,21 @@ sourceFile:../lib/file1.ts 1-> 2 > 3 > something -1->Emitted(42, 13) Source(13, 46) + SourceIndex(1) -2 >Emitted(42, 24) Source(13, 46) + SourceIndex(1) -3 >Emitted(42, 33) Source(13, 55) + SourceIndex(1) +1->Emitted(43, 13) Source(13, 46) + SourceIndex(1) +2 >Emitted(43, 24) Source(13, 46) + SourceIndex(1) +3 >Emitted(43, 33) Source(13, 55) + SourceIndex(1) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(43, 17) Source(13, 58) + SourceIndex(1) +1->Emitted(44, 17) Source(13, 58) + SourceIndex(1) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(44, 21) Source(13, 58) + SourceIndex(1) +1->Emitted(45, 21) Source(13, 58) + SourceIndex(1) --- >>> } 1->^^^^^^^^^^^^^^^^^^^^ @@ -1032,16 +1034,16 @@ sourceFile:../lib/file1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(45, 21) Source(13, 82) + SourceIndex(1) -2 >Emitted(45, 22) Source(13, 83) + SourceIndex(1) +1->Emitted(46, 21) Source(13, 82) + SourceIndex(1) +2 >Emitted(46, 22) Source(13, 83) + SourceIndex(1) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(46, 21) Source(13, 82) + SourceIndex(1) -2 >Emitted(46, 37) Source(13, 83) + SourceIndex(1) +1->Emitted(47, 21) Source(13, 82) + SourceIndex(1) +2 >Emitted(47, 37) Source(13, 83) + SourceIndex(1) --- >>> }()); 1 >^^^^^^^^^^^^^^^^ @@ -1053,10 +1055,10 @@ sourceFile:../lib/file1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(47, 17) Source(13, 82) + SourceIndex(1) -2 >Emitted(47, 18) Source(13, 83) + SourceIndex(1) -3 >Emitted(47, 18) Source(13, 58) + SourceIndex(1) -4 >Emitted(47, 22) Source(13, 83) + SourceIndex(1) +1 >Emitted(48, 17) Source(13, 82) + SourceIndex(1) +2 >Emitted(48, 18) Source(13, 83) + SourceIndex(1) +3 >Emitted(48, 18) Source(13, 58) + SourceIndex(1) +4 >Emitted(48, 22) Source(13, 83) + SourceIndex(1) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^^^^^ @@ -1068,10 +1070,10 @@ sourceFile:../lib/file1.ts 2 > someClass 3 > {} 4 > -1->Emitted(48, 17) Source(13, 71) + SourceIndex(1) -2 >Emitted(48, 36) Source(13, 80) + SourceIndex(1) -3 >Emitted(48, 48) Source(13, 83) + SourceIndex(1) -4 >Emitted(48, 49) Source(13, 83) + SourceIndex(1) +1->Emitted(49, 17) Source(13, 71) + SourceIndex(1) +2 >Emitted(49, 36) Source(13, 80) + SourceIndex(1) +3 >Emitted(49, 48) Source(13, 83) + SourceIndex(1) +4 >Emitted(49, 49) Source(13, 83) + SourceIndex(1) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^^^^^ @@ -1092,15 +1094,15 @@ sourceFile:../lib/file1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(49, 13) Source(13, 84) + SourceIndex(1) -2 >Emitted(49, 14) Source(13, 85) + SourceIndex(1) -3 >Emitted(49, 16) Source(13, 46) + SourceIndex(1) -4 >Emitted(49, 25) Source(13, 55) + SourceIndex(1) -5 >Emitted(49, 28) Source(13, 46) + SourceIndex(1) -6 >Emitted(49, 47) Source(13, 55) + SourceIndex(1) -7 >Emitted(49, 52) Source(13, 46) + SourceIndex(1) -8 >Emitted(49, 71) Source(13, 55) + SourceIndex(1) -9 >Emitted(49, 79) Source(13, 85) + SourceIndex(1) +1->Emitted(50, 13) Source(13, 84) + SourceIndex(1) +2 >Emitted(50, 14) Source(13, 85) + SourceIndex(1) +3 >Emitted(50, 16) Source(13, 46) + SourceIndex(1) +4 >Emitted(50, 25) Source(13, 55) + SourceIndex(1) +5 >Emitted(50, 28) Source(13, 46) + SourceIndex(1) +6 >Emitted(50, 47) Source(13, 55) + SourceIndex(1) +7 >Emitted(50, 52) Source(13, 46) + SourceIndex(1) +8 >Emitted(50, 71) Source(13, 55) + SourceIndex(1) +9 >Emitted(50, 79) Source(13, 85) + SourceIndex(1) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^^^^^ @@ -1121,15 +1123,15 @@ sourceFile:../lib/file1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(50, 9) Source(13, 84) + SourceIndex(1) -2 >Emitted(50, 10) Source(13, 85) + SourceIndex(1) -3 >Emitted(50, 12) Source(13, 36) + SourceIndex(1) -4 >Emitted(50, 21) Source(13, 45) + SourceIndex(1) -5 >Emitted(50, 24) Source(13, 36) + SourceIndex(1) -6 >Emitted(50, 41) Source(13, 45) + SourceIndex(1) -7 >Emitted(50, 46) Source(13, 36) + SourceIndex(1) -8 >Emitted(50, 63) Source(13, 45) + SourceIndex(1) -9 >Emitted(50, 71) Source(13, 85) + SourceIndex(1) +1 >Emitted(51, 9) Source(13, 84) + SourceIndex(1) +2 >Emitted(51, 10) Source(13, 85) + SourceIndex(1) +3 >Emitted(51, 12) Source(13, 36) + SourceIndex(1) +4 >Emitted(51, 21) Source(13, 45) + SourceIndex(1) +5 >Emitted(51, 24) Source(13, 36) + SourceIndex(1) +6 >Emitted(51, 41) Source(13, 45) + SourceIndex(1) +7 >Emitted(51, 46) Source(13, 36) + SourceIndex(1) +8 >Emitted(51, 63) Source(13, 45) + SourceIndex(1) +9 >Emitted(51, 71) Source(13, 85) + SourceIndex(1) --- >>> /*@internal*/ normalN.someImport = someNamespace.C; 1 >^^^^^^^^ @@ -1151,15 +1153,15 @@ sourceFile:../lib/file1.ts 7 > . 8 > C 9 > ; -1 >Emitted(51, 9) Source(14, 5) + SourceIndex(1) -2 >Emitted(51, 22) Source(14, 18) + SourceIndex(1) -3 >Emitted(51, 23) Source(14, 33) + SourceIndex(1) -4 >Emitted(51, 41) Source(14, 43) + SourceIndex(1) -5 >Emitted(51, 44) Source(14, 46) + SourceIndex(1) -6 >Emitted(51, 57) Source(14, 59) + SourceIndex(1) -7 >Emitted(51, 58) Source(14, 60) + SourceIndex(1) -8 >Emitted(51, 59) Source(14, 61) + SourceIndex(1) -9 >Emitted(51, 60) Source(14, 62) + SourceIndex(1) +1 >Emitted(52, 9) Source(14, 5) + SourceIndex(1) +2 >Emitted(52, 22) Source(14, 18) + SourceIndex(1) +3 >Emitted(52, 23) Source(14, 33) + SourceIndex(1) +4 >Emitted(52, 41) Source(14, 43) + SourceIndex(1) +5 >Emitted(52, 44) Source(14, 46) + SourceIndex(1) +6 >Emitted(52, 57) Source(14, 59) + SourceIndex(1) +7 >Emitted(52, 58) Source(14, 60) + SourceIndex(1) +8 >Emitted(52, 59) Source(14, 61) + SourceIndex(1) +9 >Emitted(52, 60) Source(14, 62) + SourceIndex(1) --- >>> /*@internal*/ normalN.internalConst = 10; 1 >^^^^^^^^ @@ -1178,13 +1180,13 @@ sourceFile:../lib/file1.ts 5 > = 6 > 10 7 > ; -1 >Emitted(52, 9) Source(16, 5) + SourceIndex(1) -2 >Emitted(52, 22) Source(16, 18) + SourceIndex(1) -3 >Emitted(52, 23) Source(16, 32) + SourceIndex(1) -4 >Emitted(52, 44) Source(16, 45) + SourceIndex(1) -5 >Emitted(52, 47) Source(16, 48) + SourceIndex(1) -6 >Emitted(52, 49) Source(16, 50) + SourceIndex(1) -7 >Emitted(52, 50) Source(16, 51) + SourceIndex(1) +1 >Emitted(53, 9) Source(16, 5) + SourceIndex(1) +2 >Emitted(53, 22) Source(16, 18) + SourceIndex(1) +3 >Emitted(53, 23) Source(16, 32) + SourceIndex(1) +4 >Emitted(53, 44) Source(16, 45) + SourceIndex(1) +5 >Emitted(53, 47) Source(16, 48) + SourceIndex(1) +6 >Emitted(53, 49) Source(16, 50) + SourceIndex(1) +7 >Emitted(53, 50) Source(16, 51) + SourceIndex(1) --- >>> /*@internal*/ var internalEnum; 1 >^^^^^^^^ @@ -1198,11 +1200,11 @@ sourceFile:../lib/file1.ts 3 > 4 > export enum 5 > internalEnum { a, b, c } -1 >Emitted(53, 9) Source(17, 5) + SourceIndex(1) -2 >Emitted(53, 22) Source(17, 18) + SourceIndex(1) -3 >Emitted(53, 23) Source(17, 19) + SourceIndex(1) -4 >Emitted(53, 27) Source(17, 31) + SourceIndex(1) -5 >Emitted(53, 39) Source(17, 55) + SourceIndex(1) +1 >Emitted(54, 9) Source(17, 5) + SourceIndex(1) +2 >Emitted(54, 22) Source(17, 18) + SourceIndex(1) +3 >Emitted(54, 23) Source(17, 19) + SourceIndex(1) +4 >Emitted(54, 27) Source(17, 31) + SourceIndex(1) +5 >Emitted(54, 39) Source(17, 55) + SourceIndex(1) --- >>> (function (internalEnum) { 1 >^^^^^^^^ @@ -1212,9 +1214,9 @@ sourceFile:../lib/file1.ts 1 > 2 > export enum 3 > internalEnum -1 >Emitted(54, 9) Source(17, 19) + SourceIndex(1) -2 >Emitted(54, 20) Source(17, 31) + SourceIndex(1) -3 >Emitted(54, 32) Source(17, 43) + SourceIndex(1) +1 >Emitted(55, 9) Source(17, 19) + SourceIndex(1) +2 >Emitted(55, 20) Source(17, 31) + SourceIndex(1) +3 >Emitted(55, 32) Source(17, 43) + SourceIndex(1) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^^^^^ @@ -1224,9 +1226,9 @@ sourceFile:../lib/file1.ts 1-> { 2 > a 3 > -1->Emitted(55, 13) Source(17, 46) + SourceIndex(1) -2 >Emitted(55, 54) Source(17, 47) + SourceIndex(1) -3 >Emitted(55, 55) Source(17, 47) + SourceIndex(1) +1->Emitted(56, 13) Source(17, 46) + SourceIndex(1) +2 >Emitted(56, 54) Source(17, 47) + SourceIndex(1) +3 >Emitted(56, 55) Source(17, 47) + SourceIndex(1) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^^^^^ @@ -1236,9 +1238,9 @@ sourceFile:../lib/file1.ts 1->, 2 > b 3 > -1->Emitted(56, 13) Source(17, 49) + SourceIndex(1) -2 >Emitted(56, 54) Source(17, 50) + SourceIndex(1) -3 >Emitted(56, 55) Source(17, 50) + SourceIndex(1) +1->Emitted(57, 13) Source(17, 49) + SourceIndex(1) +2 >Emitted(57, 54) Source(17, 50) + SourceIndex(1) +3 >Emitted(57, 55) Source(17, 50) + SourceIndex(1) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^^^^^ @@ -1248,9 +1250,9 @@ sourceFile:../lib/file1.ts 1->, 2 > c 3 > -1->Emitted(57, 13) Source(17, 52) + SourceIndex(1) -2 >Emitted(57, 54) Source(17, 53) + SourceIndex(1) -3 >Emitted(57, 55) Source(17, 53) + SourceIndex(1) +1->Emitted(58, 13) Source(17, 52) + SourceIndex(1) +2 >Emitted(58, 54) Source(17, 53) + SourceIndex(1) +3 >Emitted(58, 55) Source(17, 53) + SourceIndex(1) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^^^^^ @@ -1271,15 +1273,15 @@ sourceFile:../lib/file1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(58, 9) Source(17, 54) + SourceIndex(1) -2 >Emitted(58, 10) Source(17, 55) + SourceIndex(1) -3 >Emitted(58, 12) Source(17, 31) + SourceIndex(1) -4 >Emitted(58, 24) Source(17, 43) + SourceIndex(1) -5 >Emitted(58, 27) Source(17, 31) + SourceIndex(1) -6 >Emitted(58, 47) Source(17, 43) + SourceIndex(1) -7 >Emitted(58, 52) Source(17, 31) + SourceIndex(1) -8 >Emitted(58, 72) Source(17, 43) + SourceIndex(1) -9 >Emitted(58, 80) Source(17, 55) + SourceIndex(1) +1->Emitted(59, 9) Source(17, 54) + SourceIndex(1) +2 >Emitted(59, 10) Source(17, 55) + SourceIndex(1) +3 >Emitted(59, 12) Source(17, 31) + SourceIndex(1) +4 >Emitted(59, 24) Source(17, 43) + SourceIndex(1) +5 >Emitted(59, 27) Source(17, 31) + SourceIndex(1) +6 >Emitted(59, 47) Source(17, 43) + SourceIndex(1) +7 >Emitted(59, 52) Source(17, 31) + SourceIndex(1) +8 >Emitted(59, 72) Source(17, 43) + SourceIndex(1) +9 >Emitted(59, 80) Source(17, 55) + SourceIndex(1) --- >>> })(normalN = exports.normalN || (exports.normalN = {})); 1 >^^^^ @@ -1311,15 +1313,15 @@ sourceFile:../lib/file1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(59, 5) Source(18, 1) + SourceIndex(1) -2 >Emitted(59, 6) Source(18, 2) + SourceIndex(1) -3 >Emitted(59, 8) Source(9, 18) + SourceIndex(1) -4 >Emitted(59, 15) Source(9, 25) + SourceIndex(1) -5 >Emitted(59, 18) Source(9, 18) + SourceIndex(1) -6 >Emitted(59, 33) Source(9, 25) + SourceIndex(1) -7 >Emitted(59, 38) Source(9, 18) + SourceIndex(1) -8 >Emitted(59, 53) Source(9, 25) + SourceIndex(1) -9 >Emitted(59, 61) Source(18, 2) + SourceIndex(1) +1 >Emitted(60, 5) Source(18, 1) + SourceIndex(1) +2 >Emitted(60, 6) Source(18, 2) + SourceIndex(1) +3 >Emitted(60, 8) Source(9, 18) + SourceIndex(1) +4 >Emitted(60, 15) Source(9, 25) + SourceIndex(1) +5 >Emitted(60, 18) Source(9, 18) + SourceIndex(1) +6 >Emitted(60, 33) Source(9, 25) + SourceIndex(1) +7 >Emitted(60, 38) Source(9, 18) + SourceIndex(1) +8 >Emitted(60, 53) Source(9, 25) + SourceIndex(1) +9 >Emitted(60, 61) Source(18, 2) + SourceIndex(1) --- >>> /*@internal*/ var internalC = /** @class */ (function () { 1->^^^^ @@ -1330,15 +1332,15 @@ sourceFile:../lib/file1.ts > 2 > /*@internal*/ 3 > -1->Emitted(60, 5) Source(19, 1) + SourceIndex(1) -2 >Emitted(60, 18) Source(19, 14) + SourceIndex(1) -3 >Emitted(60, 19) Source(19, 15) + SourceIndex(1) +1->Emitted(61, 5) Source(19, 1) + SourceIndex(1) +2 >Emitted(61, 18) Source(19, 14) + SourceIndex(1) +3 >Emitted(61, 19) Source(19, 15) + SourceIndex(1) --- >>> function internalC() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(61, 9) Source(19, 15) + SourceIndex(1) +1->Emitted(62, 9) Source(19, 15) + SourceIndex(1) --- >>> } 1->^^^^^^^^ @@ -1346,16 +1348,16 @@ sourceFile:../lib/file1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class internalC { 2 > } -1->Emitted(62, 9) Source(19, 39) + SourceIndex(1) -2 >Emitted(62, 10) Source(19, 40) + SourceIndex(1) +1->Emitted(63, 9) Source(19, 39) + SourceIndex(1) +2 >Emitted(63, 10) Source(19, 40) + SourceIndex(1) --- >>> return internalC; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(63, 9) Source(19, 39) + SourceIndex(1) -2 >Emitted(63, 25) Source(19, 40) + SourceIndex(1) +1->Emitted(64, 9) Source(19, 39) + SourceIndex(1) +2 >Emitted(64, 25) Source(19, 40) + SourceIndex(1) --- >>> }()); 1 >^^^^ @@ -1367,10 +1369,10 @@ sourceFile:../lib/file1.ts 2 > } 3 > 4 > export class internalC {} -1 >Emitted(64, 5) Source(19, 39) + SourceIndex(1) -2 >Emitted(64, 6) Source(19, 40) + SourceIndex(1) -3 >Emitted(64, 6) Source(19, 15) + SourceIndex(1) -4 >Emitted(64, 10) Source(19, 40) + SourceIndex(1) +1 >Emitted(65, 5) Source(19, 39) + SourceIndex(1) +2 >Emitted(65, 6) Source(19, 40) + SourceIndex(1) +3 >Emitted(65, 6) Source(19, 15) + SourceIndex(1) +4 >Emitted(65, 10) Source(19, 40) + SourceIndex(1) --- >>> exports.internalC = internalC; 1->^^^^ @@ -1378,8 +1380,8 @@ sourceFile:../lib/file1.ts 3 > ^^^^^^^^^^^-> 1-> 2 > internalC -1->Emitted(65, 5) Source(19, 28) + SourceIndex(1) -2 >Emitted(65, 35) Source(19, 37) + SourceIndex(1) +1->Emitted(66, 5) Source(19, 28) + SourceIndex(1) +2 >Emitted(66, 35) Source(19, 37) + SourceIndex(1) --- >>> /*@internal*/ function internalfoo() { } 1->^^^^ @@ -1397,13 +1399,13 @@ sourceFile:../lib/file1.ts 5 > internalfoo 6 > () { 7 > } -1->Emitted(66, 5) Source(20, 1) + SourceIndex(1) -2 >Emitted(66, 18) Source(20, 14) + SourceIndex(1) -3 >Emitted(66, 19) Source(20, 15) + SourceIndex(1) -4 >Emitted(66, 28) Source(20, 31) + SourceIndex(1) -5 >Emitted(66, 39) Source(20, 42) + SourceIndex(1) -6 >Emitted(66, 44) Source(20, 46) + SourceIndex(1) -7 >Emitted(66, 45) Source(20, 47) + SourceIndex(1) +1->Emitted(67, 5) Source(20, 1) + SourceIndex(1) +2 >Emitted(67, 18) Source(20, 14) + SourceIndex(1) +3 >Emitted(67, 19) Source(20, 15) + SourceIndex(1) +4 >Emitted(67, 28) Source(20, 31) + SourceIndex(1) +5 >Emitted(67, 39) Source(20, 42) + SourceIndex(1) +6 >Emitted(67, 44) Source(20, 46) + SourceIndex(1) +7 >Emitted(67, 45) Source(20, 47) + SourceIndex(1) --- >>> exports.internalfoo = internalfoo; 1 >^^^^ @@ -1411,8 +1413,8 @@ sourceFile:../lib/file1.ts 3 > ^^^-> 1 > 2 > export function internalfoo() {} -1 >Emitted(67, 5) Source(20, 15) + SourceIndex(1) -2 >Emitted(67, 39) Source(20, 47) + SourceIndex(1) +1 >Emitted(68, 5) Source(20, 15) + SourceIndex(1) +2 >Emitted(68, 39) Source(20, 47) + SourceIndex(1) --- >>> /*@internal*/ var internalNamespace; 1->^^^^ @@ -1428,12 +1430,12 @@ sourceFile:../lib/file1.ts 4 > export namespace 5 > internalNamespace 6 > { export class someClass {} } -1->Emitted(68, 5) Source(21, 1) + SourceIndex(1) -2 >Emitted(68, 18) Source(21, 14) + SourceIndex(1) -3 >Emitted(68, 19) Source(21, 15) + SourceIndex(1) -4 >Emitted(68, 23) Source(21, 32) + SourceIndex(1) -5 >Emitted(68, 40) Source(21, 49) + SourceIndex(1) -6 >Emitted(68, 41) Source(21, 79) + SourceIndex(1) +1->Emitted(69, 5) Source(21, 1) + SourceIndex(1) +2 >Emitted(69, 18) Source(21, 14) + SourceIndex(1) +3 >Emitted(69, 19) Source(21, 15) + SourceIndex(1) +4 >Emitted(69, 23) Source(21, 32) + SourceIndex(1) +5 >Emitted(69, 40) Source(21, 49) + SourceIndex(1) +6 >Emitted(69, 41) Source(21, 79) + SourceIndex(1) --- >>> (function (internalNamespace) { 1 >^^^^ @@ -1443,21 +1445,21 @@ sourceFile:../lib/file1.ts 1 > 2 > export namespace 3 > internalNamespace -1 >Emitted(69, 5) Source(21, 15) + SourceIndex(1) -2 >Emitted(69, 16) Source(21, 32) + SourceIndex(1) -3 >Emitted(69, 33) Source(21, 49) + SourceIndex(1) +1 >Emitted(70, 5) Source(21, 15) + SourceIndex(1) +2 >Emitted(70, 16) Source(21, 32) + SourceIndex(1) +3 >Emitted(70, 33) Source(21, 49) + SourceIndex(1) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(70, 9) Source(21, 52) + SourceIndex(1) +1->Emitted(71, 9) Source(21, 52) + SourceIndex(1) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(71, 13) Source(21, 52) + SourceIndex(1) +1->Emitted(72, 13) Source(21, 52) + SourceIndex(1) --- >>> } 1->^^^^^^^^^^^^ @@ -1465,16 +1467,16 @@ sourceFile:../lib/file1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(72, 13) Source(21, 76) + SourceIndex(1) -2 >Emitted(72, 14) Source(21, 77) + SourceIndex(1) +1->Emitted(73, 13) Source(21, 76) + SourceIndex(1) +2 >Emitted(73, 14) Source(21, 77) + SourceIndex(1) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(73, 13) Source(21, 76) + SourceIndex(1) -2 >Emitted(73, 29) Source(21, 77) + SourceIndex(1) +1->Emitted(74, 13) Source(21, 76) + SourceIndex(1) +2 >Emitted(74, 29) Source(21, 77) + SourceIndex(1) --- >>> }()); 1 >^^^^^^^^ @@ -1486,10 +1488,10 @@ sourceFile:../lib/file1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(74, 9) Source(21, 76) + SourceIndex(1) -2 >Emitted(74, 10) Source(21, 77) + SourceIndex(1) -3 >Emitted(74, 10) Source(21, 52) + SourceIndex(1) -4 >Emitted(74, 14) Source(21, 77) + SourceIndex(1) +1 >Emitted(75, 9) Source(21, 76) + SourceIndex(1) +2 >Emitted(75, 10) Source(21, 77) + SourceIndex(1) +3 >Emitted(75, 10) Source(21, 52) + SourceIndex(1) +4 >Emitted(75, 14) Source(21, 77) + SourceIndex(1) --- >>> internalNamespace.someClass = someClass; 1->^^^^^^^^ @@ -1501,10 +1503,10 @@ sourceFile:../lib/file1.ts 2 > someClass 3 > {} 4 > -1->Emitted(75, 9) Source(21, 65) + SourceIndex(1) -2 >Emitted(75, 36) Source(21, 74) + SourceIndex(1) -3 >Emitted(75, 48) Source(21, 77) + SourceIndex(1) -4 >Emitted(75, 49) Source(21, 77) + SourceIndex(1) +1->Emitted(76, 9) Source(21, 65) + SourceIndex(1) +2 >Emitted(76, 36) Source(21, 74) + SourceIndex(1) +3 >Emitted(76, 48) Source(21, 77) + SourceIndex(1) +4 >Emitted(76, 49) Source(21, 77) + SourceIndex(1) --- >>> })(internalNamespace = exports.internalNamespace || (exports.internalNamespace = {})); 1->^^^^ @@ -1525,15 +1527,15 @@ sourceFile:../lib/file1.ts 7 > 8 > internalNamespace 9 > { export class someClass {} } -1->Emitted(76, 5) Source(21, 78) + SourceIndex(1) -2 >Emitted(76, 6) Source(21, 79) + SourceIndex(1) -3 >Emitted(76, 8) Source(21, 32) + SourceIndex(1) -4 >Emitted(76, 25) Source(21, 49) + SourceIndex(1) -5 >Emitted(76, 28) Source(21, 32) + SourceIndex(1) -6 >Emitted(76, 53) Source(21, 49) + SourceIndex(1) -7 >Emitted(76, 58) Source(21, 32) + SourceIndex(1) -8 >Emitted(76, 83) Source(21, 49) + SourceIndex(1) -9 >Emitted(76, 91) Source(21, 79) + SourceIndex(1) +1->Emitted(77, 5) Source(21, 78) + SourceIndex(1) +2 >Emitted(77, 6) Source(21, 79) + SourceIndex(1) +3 >Emitted(77, 8) Source(21, 32) + SourceIndex(1) +4 >Emitted(77, 25) Source(21, 49) + SourceIndex(1) +5 >Emitted(77, 28) Source(21, 32) + SourceIndex(1) +6 >Emitted(77, 53) Source(21, 49) + SourceIndex(1) +7 >Emitted(77, 58) Source(21, 32) + SourceIndex(1) +8 >Emitted(77, 83) Source(21, 49) + SourceIndex(1) +9 >Emitted(77, 91) Source(21, 79) + SourceIndex(1) --- >>> /*@internal*/ var internalOther; 1 >^^^^ @@ -1549,12 +1551,12 @@ sourceFile:../lib/file1.ts 4 > export namespace 5 > internalOther 6 > .something { export class someClass {} } -1 >Emitted(77, 5) Source(22, 1) + SourceIndex(1) -2 >Emitted(77, 18) Source(22, 14) + SourceIndex(1) -3 >Emitted(77, 19) Source(22, 15) + SourceIndex(1) -4 >Emitted(77, 23) Source(22, 32) + SourceIndex(1) -5 >Emitted(77, 36) Source(22, 45) + SourceIndex(1) -6 >Emitted(77, 37) Source(22, 85) + SourceIndex(1) +1 >Emitted(78, 5) Source(22, 1) + SourceIndex(1) +2 >Emitted(78, 18) Source(22, 14) + SourceIndex(1) +3 >Emitted(78, 19) Source(22, 15) + SourceIndex(1) +4 >Emitted(78, 23) Source(22, 32) + SourceIndex(1) +5 >Emitted(78, 36) Source(22, 45) + SourceIndex(1) +6 >Emitted(78, 37) Source(22, 85) + SourceIndex(1) --- >>> (function (internalOther) { 1 >^^^^ @@ -1563,9 +1565,9 @@ sourceFile:../lib/file1.ts 1 > 2 > export namespace 3 > internalOther -1 >Emitted(78, 5) Source(22, 15) + SourceIndex(1) -2 >Emitted(78, 16) Source(22, 32) + SourceIndex(1) -3 >Emitted(78, 29) Source(22, 45) + SourceIndex(1) +1 >Emitted(79, 5) Source(22, 15) + SourceIndex(1) +2 >Emitted(79, 16) Source(22, 32) + SourceIndex(1) +3 >Emitted(79, 29) Source(22, 45) + SourceIndex(1) --- >>> var something; 1 >^^^^^^^^ @@ -1577,10 +1579,10 @@ sourceFile:../lib/file1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(79, 9) Source(22, 46) + SourceIndex(1) -2 >Emitted(79, 13) Source(22, 46) + SourceIndex(1) -3 >Emitted(79, 22) Source(22, 55) + SourceIndex(1) -4 >Emitted(79, 23) Source(22, 85) + SourceIndex(1) +1 >Emitted(80, 9) Source(22, 46) + SourceIndex(1) +2 >Emitted(80, 13) Source(22, 46) + SourceIndex(1) +3 >Emitted(80, 22) Source(22, 55) + SourceIndex(1) +4 >Emitted(80, 23) Source(22, 85) + SourceIndex(1) --- >>> (function (something) { 1->^^^^^^^^ @@ -1590,21 +1592,21 @@ sourceFile:../lib/file1.ts 1-> 2 > 3 > something -1->Emitted(80, 9) Source(22, 46) + SourceIndex(1) -2 >Emitted(80, 20) Source(22, 46) + SourceIndex(1) -3 >Emitted(80, 29) Source(22, 55) + SourceIndex(1) +1->Emitted(81, 9) Source(22, 46) + SourceIndex(1) +2 >Emitted(81, 20) Source(22, 46) + SourceIndex(1) +3 >Emitted(81, 29) Source(22, 55) + SourceIndex(1) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(81, 13) Source(22, 58) + SourceIndex(1) +1->Emitted(82, 13) Source(22, 58) + SourceIndex(1) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(82, 17) Source(22, 58) + SourceIndex(1) +1->Emitted(83, 17) Source(22, 58) + SourceIndex(1) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -1612,16 +1614,16 @@ sourceFile:../lib/file1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(83, 17) Source(22, 82) + SourceIndex(1) -2 >Emitted(83, 18) Source(22, 83) + SourceIndex(1) +1->Emitted(84, 17) Source(22, 82) + SourceIndex(1) +2 >Emitted(84, 18) Source(22, 83) + SourceIndex(1) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(84, 17) Source(22, 82) + SourceIndex(1) -2 >Emitted(84, 33) Source(22, 83) + SourceIndex(1) +1->Emitted(85, 17) Source(22, 82) + SourceIndex(1) +2 >Emitted(85, 33) Source(22, 83) + SourceIndex(1) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -1633,10 +1635,10 @@ sourceFile:../lib/file1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(85, 13) Source(22, 82) + SourceIndex(1) -2 >Emitted(85, 14) Source(22, 83) + SourceIndex(1) -3 >Emitted(85, 14) Source(22, 58) + SourceIndex(1) -4 >Emitted(85, 18) Source(22, 83) + SourceIndex(1) +1 >Emitted(86, 13) Source(22, 82) + SourceIndex(1) +2 >Emitted(86, 14) Source(22, 83) + SourceIndex(1) +3 >Emitted(86, 14) Source(22, 58) + SourceIndex(1) +4 >Emitted(86, 18) Source(22, 83) + SourceIndex(1) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -1648,10 +1650,10 @@ sourceFile:../lib/file1.ts 2 > someClass 3 > {} 4 > -1->Emitted(86, 13) Source(22, 71) + SourceIndex(1) -2 >Emitted(86, 32) Source(22, 80) + SourceIndex(1) -3 >Emitted(86, 44) Source(22, 83) + SourceIndex(1) -4 >Emitted(86, 45) Source(22, 83) + SourceIndex(1) +1->Emitted(87, 13) Source(22, 71) + SourceIndex(1) +2 >Emitted(87, 32) Source(22, 80) + SourceIndex(1) +3 >Emitted(87, 44) Source(22, 83) + SourceIndex(1) +4 >Emitted(87, 45) Source(22, 83) + SourceIndex(1) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^^^^^ @@ -1672,15 +1674,15 @@ sourceFile:../lib/file1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(87, 9) Source(22, 84) + SourceIndex(1) -2 >Emitted(87, 10) Source(22, 85) + SourceIndex(1) -3 >Emitted(87, 12) Source(22, 46) + SourceIndex(1) -4 >Emitted(87, 21) Source(22, 55) + SourceIndex(1) -5 >Emitted(87, 24) Source(22, 46) + SourceIndex(1) -6 >Emitted(87, 47) Source(22, 55) + SourceIndex(1) -7 >Emitted(87, 52) Source(22, 46) + SourceIndex(1) -8 >Emitted(87, 75) Source(22, 55) + SourceIndex(1) -9 >Emitted(87, 83) Source(22, 85) + SourceIndex(1) +1->Emitted(88, 9) Source(22, 84) + SourceIndex(1) +2 >Emitted(88, 10) Source(22, 85) + SourceIndex(1) +3 >Emitted(88, 12) Source(22, 46) + SourceIndex(1) +4 >Emitted(88, 21) Source(22, 55) + SourceIndex(1) +5 >Emitted(88, 24) Source(22, 46) + SourceIndex(1) +6 >Emitted(88, 47) Source(22, 55) + SourceIndex(1) +7 >Emitted(88, 52) Source(22, 46) + SourceIndex(1) +8 >Emitted(88, 75) Source(22, 55) + SourceIndex(1) +9 >Emitted(88, 83) Source(22, 85) + SourceIndex(1) --- >>> })(internalOther = exports.internalOther || (exports.internalOther = {})); 1 >^^^^ @@ -1701,15 +1703,15 @@ sourceFile:../lib/file1.ts 7 > 8 > internalOther 9 > .something { export class someClass {} } -1 >Emitted(88, 5) Source(22, 84) + SourceIndex(1) -2 >Emitted(88, 6) Source(22, 85) + SourceIndex(1) -3 >Emitted(88, 8) Source(22, 32) + SourceIndex(1) -4 >Emitted(88, 21) Source(22, 45) + SourceIndex(1) -5 >Emitted(88, 24) Source(22, 32) + SourceIndex(1) -6 >Emitted(88, 45) Source(22, 45) + SourceIndex(1) -7 >Emitted(88, 50) Source(22, 32) + SourceIndex(1) -8 >Emitted(88, 71) Source(22, 45) + SourceIndex(1) -9 >Emitted(88, 79) Source(22, 85) + SourceIndex(1) +1 >Emitted(89, 5) Source(22, 84) + SourceIndex(1) +2 >Emitted(89, 6) Source(22, 85) + SourceIndex(1) +3 >Emitted(89, 8) Source(22, 32) + SourceIndex(1) +4 >Emitted(89, 21) Source(22, 45) + SourceIndex(1) +5 >Emitted(89, 24) Source(22, 32) + SourceIndex(1) +6 >Emitted(89, 45) Source(22, 45) + SourceIndex(1) +7 >Emitted(89, 50) Source(22, 32) + SourceIndex(1) +8 >Emitted(89, 71) Source(22, 45) + SourceIndex(1) +9 >Emitted(89, 79) Source(22, 85) + SourceIndex(1) --- >>> /*@internal*/ exports.internalImport = internalNamespace.someClass; 1 >^^^^ @@ -1733,16 +1735,16 @@ sourceFile:../lib/file1.ts 8 > . 9 > someClass 10> ; -1 >Emitted(89, 5) Source(23, 1) + SourceIndex(1) -2 >Emitted(89, 18) Source(23, 14) + SourceIndex(1) -3 >Emitted(89, 19) Source(23, 29) + SourceIndex(1) -4 >Emitted(89, 27) Source(23, 29) + SourceIndex(1) -5 >Emitted(89, 41) Source(23, 43) + SourceIndex(1) -6 >Emitted(89, 44) Source(23, 46) + SourceIndex(1) -7 >Emitted(89, 61) Source(23, 63) + SourceIndex(1) -8 >Emitted(89, 62) Source(23, 64) + SourceIndex(1) -9 >Emitted(89, 71) Source(23, 73) + SourceIndex(1) -10>Emitted(89, 72) Source(23, 74) + SourceIndex(1) +1 >Emitted(90, 5) Source(23, 1) + SourceIndex(1) +2 >Emitted(90, 18) Source(23, 14) + SourceIndex(1) +3 >Emitted(90, 19) Source(23, 29) + SourceIndex(1) +4 >Emitted(90, 27) Source(23, 29) + SourceIndex(1) +5 >Emitted(90, 41) Source(23, 43) + SourceIndex(1) +6 >Emitted(90, 44) Source(23, 46) + SourceIndex(1) +7 >Emitted(90, 61) Source(23, 63) + SourceIndex(1) +8 >Emitted(90, 62) Source(23, 64) + SourceIndex(1) +9 >Emitted(90, 71) Source(23, 73) + SourceIndex(1) +10>Emitted(90, 72) Source(23, 74) + SourceIndex(1) --- >>> /*@internal*/ exports.internalConst = 10; 1 >^^^^ @@ -1763,14 +1765,14 @@ sourceFile:../lib/file1.ts 6 > = 7 > 10 8 > ; -1 >Emitted(90, 5) Source(25, 1) + SourceIndex(1) -2 >Emitted(90, 18) Source(25, 14) + SourceIndex(1) -3 >Emitted(90, 19) Source(25, 28) + SourceIndex(1) -4 >Emitted(90, 27) Source(25, 28) + SourceIndex(1) -5 >Emitted(90, 40) Source(25, 41) + SourceIndex(1) -6 >Emitted(90, 43) Source(25, 44) + SourceIndex(1) -7 >Emitted(90, 45) Source(25, 46) + SourceIndex(1) -8 >Emitted(90, 46) Source(25, 47) + SourceIndex(1) +1 >Emitted(91, 5) Source(25, 1) + SourceIndex(1) +2 >Emitted(91, 18) Source(25, 14) + SourceIndex(1) +3 >Emitted(91, 19) Source(25, 28) + SourceIndex(1) +4 >Emitted(91, 27) Source(25, 28) + SourceIndex(1) +5 >Emitted(91, 40) Source(25, 41) + SourceIndex(1) +6 >Emitted(91, 43) Source(25, 44) + SourceIndex(1) +7 >Emitted(91, 45) Source(25, 46) + SourceIndex(1) +8 >Emitted(91, 46) Source(25, 47) + SourceIndex(1) --- >>> /*@internal*/ var internalEnum; 1 >^^^^ @@ -1784,11 +1786,11 @@ sourceFile:../lib/file1.ts 3 > 4 > export enum 5 > internalEnum { a, b, c } -1 >Emitted(91, 5) Source(26, 1) + SourceIndex(1) -2 >Emitted(91, 18) Source(26, 14) + SourceIndex(1) -3 >Emitted(91, 19) Source(26, 15) + SourceIndex(1) -4 >Emitted(91, 23) Source(26, 27) + SourceIndex(1) -5 >Emitted(91, 35) Source(26, 51) + SourceIndex(1) +1 >Emitted(92, 5) Source(26, 1) + SourceIndex(1) +2 >Emitted(92, 18) Source(26, 14) + SourceIndex(1) +3 >Emitted(92, 19) Source(26, 15) + SourceIndex(1) +4 >Emitted(92, 23) Source(26, 27) + SourceIndex(1) +5 >Emitted(92, 35) Source(26, 51) + SourceIndex(1) --- >>> (function (internalEnum) { 1 >^^^^ @@ -1798,9 +1800,9 @@ sourceFile:../lib/file1.ts 1 > 2 > export enum 3 > internalEnum -1 >Emitted(92, 5) Source(26, 15) + SourceIndex(1) -2 >Emitted(92, 16) Source(26, 27) + SourceIndex(1) -3 >Emitted(92, 28) Source(26, 39) + SourceIndex(1) +1 >Emitted(93, 5) Source(26, 15) + SourceIndex(1) +2 >Emitted(93, 16) Source(26, 27) + SourceIndex(1) +3 >Emitted(93, 28) Source(26, 39) + SourceIndex(1) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -1810,9 +1812,9 @@ sourceFile:../lib/file1.ts 1-> { 2 > a 3 > -1->Emitted(93, 9) Source(26, 42) + SourceIndex(1) -2 >Emitted(93, 50) Source(26, 43) + SourceIndex(1) -3 >Emitted(93, 51) Source(26, 43) + SourceIndex(1) +1->Emitted(94, 9) Source(26, 42) + SourceIndex(1) +2 >Emitted(94, 50) Source(26, 43) + SourceIndex(1) +3 >Emitted(94, 51) Source(26, 43) + SourceIndex(1) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -1822,9 +1824,9 @@ sourceFile:../lib/file1.ts 1->, 2 > b 3 > -1->Emitted(94, 9) Source(26, 45) + SourceIndex(1) -2 >Emitted(94, 50) Source(26, 46) + SourceIndex(1) -3 >Emitted(94, 51) Source(26, 46) + SourceIndex(1) +1->Emitted(95, 9) Source(26, 45) + SourceIndex(1) +2 >Emitted(95, 50) Source(26, 46) + SourceIndex(1) +3 >Emitted(95, 51) Source(26, 46) + SourceIndex(1) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -1834,9 +1836,9 @@ sourceFile:../lib/file1.ts 1->, 2 > c 3 > -1->Emitted(95, 9) Source(26, 48) + SourceIndex(1) -2 >Emitted(95, 50) Source(26, 49) + SourceIndex(1) -3 >Emitted(95, 51) Source(26, 49) + SourceIndex(1) +1->Emitted(96, 9) Source(26, 48) + SourceIndex(1) +2 >Emitted(96, 50) Source(26, 49) + SourceIndex(1) +3 >Emitted(96, 51) Source(26, 49) + SourceIndex(1) --- >>> })(internalEnum = exports.internalEnum || (exports.internalEnum = {})); 1->^^^^ @@ -1857,15 +1859,15 @@ sourceFile:../lib/file1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(96, 5) Source(26, 50) + SourceIndex(1) -2 >Emitted(96, 6) Source(26, 51) + SourceIndex(1) -3 >Emitted(96, 8) Source(26, 27) + SourceIndex(1) -4 >Emitted(96, 20) Source(26, 39) + SourceIndex(1) -5 >Emitted(96, 23) Source(26, 27) + SourceIndex(1) -6 >Emitted(96, 43) Source(26, 39) + SourceIndex(1) -7 >Emitted(96, 48) Source(26, 27) + SourceIndex(1) -8 >Emitted(96, 68) Source(26, 39) + SourceIndex(1) -9 >Emitted(96, 76) Source(26, 51) + SourceIndex(1) +1->Emitted(97, 5) Source(26, 50) + SourceIndex(1) +2 >Emitted(97, 6) Source(26, 51) + SourceIndex(1) +3 >Emitted(97, 8) Source(26, 27) + SourceIndex(1) +4 >Emitted(97, 20) Source(26, 39) + SourceIndex(1) +5 >Emitted(97, 23) Source(26, 27) + SourceIndex(1) +6 >Emitted(97, 43) Source(26, 39) + SourceIndex(1) +7 >Emitted(97, 48) Source(26, 27) + SourceIndex(1) +8 >Emitted(97, 68) Source(26, 39) + SourceIndex(1) +9 >Emitted(97, 76) Source(26, 51) + SourceIndex(1) --- ------------------------------------------------------------------- emittedFile:/src/app/module.js @@ -1889,12 +1891,12 @@ sourceFile:../lib/file2.ts 4 > = 5 > 20 6 > ; -1 >Emitted(102, 5) Source(1, 14) + SourceIndex(2) -2 >Emitted(102, 13) Source(1, 14) + SourceIndex(2) -3 >Emitted(102, 14) Source(1, 15) + SourceIndex(2) -4 >Emitted(102, 17) Source(1, 18) + SourceIndex(2) -5 >Emitted(102, 19) Source(1, 20) + SourceIndex(2) -6 >Emitted(102, 20) Source(1, 21) + SourceIndex(2) +1 >Emitted(103, 5) Source(1, 14) + SourceIndex(2) +2 >Emitted(103, 13) Source(1, 14) + SourceIndex(2) +3 >Emitted(103, 14) Source(1, 15) + SourceIndex(2) +4 >Emitted(103, 17) Source(1, 18) + SourceIndex(2) +5 >Emitted(103, 19) Source(1, 20) + SourceIndex(2) +6 >Emitted(103, 20) Source(1, 21) + SourceIndex(2) --- ------------------------------------------------------------------- emittedFile:/src/app/module.js @@ -1915,12 +1917,12 @@ sourceFile:../lib/global.ts 4 > = 5 > 10 6 > ; -1 >Emitted(104, 1) Source(1, 1) + SourceIndex(3) -2 >Emitted(104, 5) Source(1, 7) + SourceIndex(3) -3 >Emitted(104, 16) Source(1, 18) + SourceIndex(3) -4 >Emitted(104, 19) Source(1, 21) + SourceIndex(3) -5 >Emitted(104, 21) Source(1, 23) + SourceIndex(3) -6 >Emitted(104, 22) Source(1, 24) + SourceIndex(3) +1 >Emitted(105, 1) Source(1, 1) + SourceIndex(3) +2 >Emitted(105, 5) Source(1, 7) + SourceIndex(3) +3 >Emitted(105, 16) Source(1, 18) + SourceIndex(3) +4 >Emitted(105, 19) Source(1, 21) + SourceIndex(3) +5 >Emitted(105, 21) Source(1, 23) + SourceIndex(3) +6 >Emitted(105, 22) Source(1, 24) + SourceIndex(3) --- ------------------------------------------------------------------- emittedFile:/src/app/module.js @@ -1943,12 +1945,12 @@ sourceFile:file3.ts 4 > = 5 > 30 6 > ; -1->Emitted(109, 5) Source(1, 14) + SourceIndex(4) -2 >Emitted(109, 13) Source(1, 14) + SourceIndex(4) -3 >Emitted(109, 14) Source(1, 15) + SourceIndex(4) -4 >Emitted(109, 17) Source(1, 18) + SourceIndex(4) -5 >Emitted(109, 19) Source(1, 20) + SourceIndex(4) -6 >Emitted(109, 20) Source(1, 21) + SourceIndex(4) +1->Emitted(110, 5) Source(1, 14) + SourceIndex(4) +2 >Emitted(110, 13) Source(1, 14) + SourceIndex(4) +3 >Emitted(110, 14) Source(1, 15) + SourceIndex(4) +4 >Emitted(110, 17) Source(1, 18) + SourceIndex(4) +5 >Emitted(110, 19) Source(1, 20) + SourceIndex(4) +6 >Emitted(110, 20) Source(1, 21) + SourceIndex(4) --- ------------------------------------------------------------------- emittedFile:/src/app/module.js @@ -1969,12 +1971,12 @@ sourceFile:file4.ts 4 > = 5 > 30 6 > ; -1 >Emitted(111, 1) Source(1, 1) + SourceIndex(5) -2 >Emitted(111, 5) Source(1, 7) + SourceIndex(5) -3 >Emitted(111, 10) Source(1, 12) + SourceIndex(5) -4 >Emitted(111, 13) Source(1, 15) + SourceIndex(5) -5 >Emitted(111, 15) Source(1, 17) + SourceIndex(5) -6 >Emitted(111, 16) Source(1, 18) + SourceIndex(5) +1 >Emitted(112, 1) Source(1, 1) + SourceIndex(5) +2 >Emitted(112, 5) Source(1, 7) + SourceIndex(5) +3 >Emitted(112, 10) Source(1, 12) + SourceIndex(5) +4 >Emitted(112, 13) Source(1, 15) + SourceIndex(5) +5 >Emitted(112, 15) Source(1, 17) + SourceIndex(5) +6 >Emitted(112, 16) Source(1, 18) + SourceIndex(5) --- >>>//# sourceMappingURL=module.js.map @@ -1990,20 +1992,20 @@ sourceFile:file4.ts "sections": [ { "pos": 0, - "end": 4382, + "end": 4434, "kind": "prepend", "data": "../lib/module.js", "texts": [ { "pos": 0, - "end": 4382, + "end": 4434, "kind": "text" } ] }, { - "pos": 4382, - "end": 4608, + "pos": 4434, + "end": 4660, "kind": "text" } ] @@ -2038,9 +2040,9 @@ sourceFile:file4.ts ====================================================================== File:: /src/app/module.js ---------------------------------------------------------------------- -prepend: (0-4382):: ../lib/module.js texts:: 1 +prepend: (0-4434):: ../lib/module.js texts:: 1 >>-------------------------------------------------------------------- -text: (0-4382) +text: (0-4434) /*@internal*/ var myGlob = 20; define("file1", ["require", "exports"], function (require, exports) { "use strict"; @@ -2050,8 +2052,9 @@ define("file1", ["require", "exports"], function (require, exports) { var normalC = /** @class */ (function () { /*@internal*/ function normalC() { } - /*@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /*@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /*@internal*/ get: function () { return 10; }, /*@internal*/ set: function (val) { }, enumerable: false, @@ -2147,7 +2150,7 @@ define("file2", ["require", "exports"], function (require, exports) { var globalConst = 10; ---------------------------------------------------------------------- -text: (4382-4608) +text: (4434-4660) define("file3", ["require", "exports"], function (require, exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); @@ -2991,8 +2994,9 @@ define("file1", ["require", "exports"], function (require, exports) { var normalC = /** @class */ (function () { /*@internal*/ function normalC() { } - /*@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /*@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /*@internal*/ get: function () { return 10; }, /*@internal*/ set: function (val) { }, enumerable: false, @@ -3089,7 +3093,7 @@ var globalConst = 10; //# sourceMappingURL=module.js.map //// [/src/lib/module.js.map] -{"version":3,"file":"module.js","sourceRoot":"","sources":["file0.ts","file1.ts","file2.ts","global.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"module.js","sourceRoot":"","sources":["file0.ts","file1.ts","file2.ts","global.ts"],"names":[],"mappings":"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"} //// [/src/lib/module.js.map.baseline.txt] =================================================================== @@ -3180,13 +3184,14 @@ sourceFile:file1.ts >>> } 1 >^^^^^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 >constructor() { 2 > } 1 >Emitted(9, 9) Source(3, 35) + SourceIndex(1) 2 >Emitted(9, 10) Source(3, 36) + SourceIndex(1) --- ->>> /*@internal*/ normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> /*@internal*/ normalC_prototype.method = function () { }; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^ 3 > ^ @@ -3203,15 +3208,15 @@ sourceFile:file1.ts 5 > 6 > method() { 7 > } -1->Emitted(10, 9) Source(5, 5) + SourceIndex(1) -2 >Emitted(10, 22) Source(5, 18) + SourceIndex(1) -3 >Emitted(10, 23) Source(5, 19) + SourceIndex(1) -4 >Emitted(10, 47) Source(5, 25) + SourceIndex(1) -5 >Emitted(10, 50) Source(5, 19) + SourceIndex(1) -6 >Emitted(10, 64) Source(5, 30) + SourceIndex(1) -7 >Emitted(10, 65) Source(5, 31) + SourceIndex(1) ---- ->>> Object.defineProperty(normalC.prototype, "c", { +1->Emitted(11, 9) Source(5, 5) + SourceIndex(1) +2 >Emitted(11, 22) Source(5, 18) + SourceIndex(1) +3 >Emitted(11, 23) Source(5, 19) + SourceIndex(1) +4 >Emitted(11, 47) Source(5, 25) + SourceIndex(1) +5 >Emitted(11, 50) Source(5, 19) + SourceIndex(1) +6 >Emitted(11, 64) Source(5, 30) + SourceIndex(1) +7 >Emitted(11, 65) Source(5, 31) + SourceIndex(1) +--- +>>> Object.defineProperty(normalC_prototype, "c", { 1 >^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -3220,9 +3225,9 @@ sourceFile:file1.ts > /*@internal*/ 2 > get 3 > c -1 >Emitted(11, 9) Source(6, 19) + SourceIndex(1) -2 >Emitted(11, 31) Source(6, 23) + SourceIndex(1) -3 >Emitted(11, 53) Source(6, 24) + SourceIndex(1) +1 >Emitted(12, 9) Source(6, 19) + SourceIndex(1) +2 >Emitted(12, 31) Source(6, 23) + SourceIndex(1) +3 >Emitted(12, 53) Source(6, 24) + SourceIndex(1) --- >>> /*@internal*/ get: function () { return 10; }, 1->^^^^^^^^^^^^ @@ -3243,15 +3248,15 @@ sourceFile:file1.ts 7 > ; 8 > 9 > } -1->Emitted(12, 13) Source(6, 5) + SourceIndex(1) -2 >Emitted(12, 26) Source(6, 18) + SourceIndex(1) -3 >Emitted(12, 32) Source(6, 19) + SourceIndex(1) -4 >Emitted(12, 46) Source(6, 29) + SourceIndex(1) -5 >Emitted(12, 53) Source(6, 36) + SourceIndex(1) -6 >Emitted(12, 55) Source(6, 38) + SourceIndex(1) -7 >Emitted(12, 56) Source(6, 39) + SourceIndex(1) -8 >Emitted(12, 57) Source(6, 40) + SourceIndex(1) -9 >Emitted(12, 58) Source(6, 41) + SourceIndex(1) +1->Emitted(13, 13) Source(6, 5) + SourceIndex(1) +2 >Emitted(13, 26) Source(6, 18) + SourceIndex(1) +3 >Emitted(13, 32) Source(6, 19) + SourceIndex(1) +4 >Emitted(13, 46) Source(6, 29) + SourceIndex(1) +5 >Emitted(13, 53) Source(6, 36) + SourceIndex(1) +6 >Emitted(13, 55) Source(6, 38) + SourceIndex(1) +7 >Emitted(13, 56) Source(6, 39) + SourceIndex(1) +8 >Emitted(13, 57) Source(6, 40) + SourceIndex(1) +9 >Emitted(13, 58) Source(6, 41) + SourceIndex(1) --- >>> /*@internal*/ set: function (val) { }, 1 >^^^^^^^^^^^^ @@ -3269,13 +3274,13 @@ sourceFile:file1.ts 5 > val: number 6 > ) { 7 > } -1 >Emitted(13, 13) Source(7, 5) + SourceIndex(1) -2 >Emitted(13, 26) Source(7, 18) + SourceIndex(1) -3 >Emitted(13, 32) Source(7, 19) + SourceIndex(1) -4 >Emitted(13, 42) Source(7, 25) + SourceIndex(1) -5 >Emitted(13, 45) Source(7, 36) + SourceIndex(1) -6 >Emitted(13, 49) Source(7, 40) + SourceIndex(1) -7 >Emitted(13, 50) Source(7, 41) + SourceIndex(1) +1 >Emitted(14, 13) Source(7, 5) + SourceIndex(1) +2 >Emitted(14, 26) Source(7, 18) + SourceIndex(1) +3 >Emitted(14, 32) Source(7, 19) + SourceIndex(1) +4 >Emitted(14, 42) Source(7, 25) + SourceIndex(1) +5 >Emitted(14, 45) Source(7, 36) + SourceIndex(1) +6 >Emitted(14, 49) Source(7, 40) + SourceIndex(1) +7 >Emitted(14, 50) Source(7, 41) + SourceIndex(1) --- >>> enumerable: false, >>> configurable: true @@ -3283,7 +3288,7 @@ sourceFile:file1.ts 1 >^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(16, 12) Source(6, 41) + SourceIndex(1) +1 >Emitted(17, 12) Source(6, 41) + SourceIndex(1) --- >>> return normalC; 1->^^^^^^^^ @@ -3292,8 +3297,8 @@ sourceFile:file1.ts > /*@internal*/ set c(val: number) { } > 2 > } -1->Emitted(17, 9) Source(8, 1) + SourceIndex(1) -2 >Emitted(17, 23) Source(8, 2) + SourceIndex(1) +1->Emitted(18, 9) Source(8, 1) + SourceIndex(1) +2 >Emitted(18, 23) Source(8, 2) + SourceIndex(1) --- >>> }()); 1 >^^^^ @@ -3311,18 +3316,18 @@ sourceFile:file1.ts > /*@internal*/ get c() { return 10; } > /*@internal*/ set c(val: number) { } > } -1 >Emitted(18, 5) Source(8, 1) + SourceIndex(1) -2 >Emitted(18, 6) Source(8, 2) + SourceIndex(1) -3 >Emitted(18, 6) Source(2, 1) + SourceIndex(1) -4 >Emitted(18, 10) Source(8, 2) + SourceIndex(1) +1 >Emitted(19, 5) Source(8, 1) + SourceIndex(1) +2 >Emitted(19, 6) Source(8, 2) + SourceIndex(1) +3 >Emitted(19, 6) Source(2, 1) + SourceIndex(1) +4 >Emitted(19, 10) Source(8, 2) + SourceIndex(1) --- >>> exports.normalC = normalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> 2 > normalC -1->Emitted(19, 5) Source(2, 14) + SourceIndex(1) -2 >Emitted(19, 31) Source(2, 21) + SourceIndex(1) +1->Emitted(20, 5) Source(2, 14) + SourceIndex(1) +2 >Emitted(20, 31) Source(2, 21) + SourceIndex(1) --- >>> var normalN; 1 >^^^^ @@ -3350,10 +3355,10 @@ sourceFile:file1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(20, 5) Source(9, 1) + SourceIndex(1) -2 >Emitted(20, 9) Source(9, 18) + SourceIndex(1) -3 >Emitted(20, 16) Source(9, 25) + SourceIndex(1) -4 >Emitted(20, 17) Source(18, 2) + SourceIndex(1) +1 >Emitted(21, 5) Source(9, 1) + SourceIndex(1) +2 >Emitted(21, 9) Source(9, 18) + SourceIndex(1) +3 >Emitted(21, 16) Source(9, 25) + SourceIndex(1) +4 >Emitted(21, 17) Source(18, 2) + SourceIndex(1) --- >>> (function (normalN) { 1->^^^^ @@ -3363,9 +3368,9 @@ sourceFile:file1.ts 1-> 2 > export namespace 3 > normalN -1->Emitted(21, 5) Source(9, 1) + SourceIndex(1) -2 >Emitted(21, 16) Source(9, 18) + SourceIndex(1) -3 >Emitted(21, 23) Source(9, 25) + SourceIndex(1) +1->Emitted(22, 5) Source(9, 1) + SourceIndex(1) +2 >Emitted(22, 16) Source(9, 18) + SourceIndex(1) +3 >Emitted(22, 23) Source(9, 25) + SourceIndex(1) --- >>> /*@internal*/ var C = /** @class */ (function () { 1->^^^^^^^^ @@ -3376,15 +3381,15 @@ sourceFile:file1.ts > 2 > /*@internal*/ 3 > -1->Emitted(22, 9) Source(10, 5) + SourceIndex(1) -2 >Emitted(22, 22) Source(10, 18) + SourceIndex(1) -3 >Emitted(22, 23) Source(10, 19) + SourceIndex(1) +1->Emitted(23, 9) Source(10, 5) + SourceIndex(1) +2 >Emitted(23, 22) Source(10, 18) + SourceIndex(1) +3 >Emitted(23, 23) Source(10, 19) + SourceIndex(1) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(23, 13) Source(10, 19) + SourceIndex(1) +1->Emitted(24, 13) Source(10, 19) + SourceIndex(1) --- >>> } 1->^^^^^^^^^^^^ @@ -3392,16 +3397,16 @@ sourceFile:file1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(24, 13) Source(10, 36) + SourceIndex(1) -2 >Emitted(24, 14) Source(10, 37) + SourceIndex(1) +1->Emitted(25, 13) Source(10, 36) + SourceIndex(1) +2 >Emitted(25, 14) Source(10, 37) + SourceIndex(1) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(25, 13) Source(10, 36) + SourceIndex(1) -2 >Emitted(25, 21) Source(10, 37) + SourceIndex(1) +1->Emitted(26, 13) Source(10, 36) + SourceIndex(1) +2 >Emitted(26, 21) Source(10, 37) + SourceIndex(1) --- >>> }()); 1 >^^^^^^^^ @@ -3413,10 +3418,10 @@ sourceFile:file1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(26, 9) Source(10, 36) + SourceIndex(1) -2 >Emitted(26, 10) Source(10, 37) + SourceIndex(1) -3 >Emitted(26, 10) Source(10, 19) + SourceIndex(1) -4 >Emitted(26, 14) Source(10, 37) + SourceIndex(1) +1 >Emitted(27, 9) Source(10, 36) + SourceIndex(1) +2 >Emitted(27, 10) Source(10, 37) + SourceIndex(1) +3 >Emitted(27, 10) Source(10, 19) + SourceIndex(1) +4 >Emitted(27, 14) Source(10, 37) + SourceIndex(1) --- >>> normalN.C = C; 1->^^^^^^^^ @@ -3428,10 +3433,10 @@ sourceFile:file1.ts 2 > C 3 > { } 4 > -1->Emitted(27, 9) Source(10, 32) + SourceIndex(1) -2 >Emitted(27, 18) Source(10, 33) + SourceIndex(1) -3 >Emitted(27, 22) Source(10, 37) + SourceIndex(1) -4 >Emitted(27, 23) Source(10, 37) + SourceIndex(1) +1->Emitted(28, 9) Source(10, 32) + SourceIndex(1) +2 >Emitted(28, 18) Source(10, 33) + SourceIndex(1) +3 >Emitted(28, 22) Source(10, 37) + SourceIndex(1) +4 >Emitted(28, 23) Source(10, 37) + SourceIndex(1) --- >>> /*@internal*/ function foo() { } 1->^^^^^^^^ @@ -3449,13 +3454,13 @@ sourceFile:file1.ts 5 > foo 6 > () { 7 > } -1->Emitted(28, 9) Source(11, 5) + SourceIndex(1) -2 >Emitted(28, 22) Source(11, 18) + SourceIndex(1) -3 >Emitted(28, 23) Source(11, 19) + SourceIndex(1) -4 >Emitted(28, 32) Source(11, 35) + SourceIndex(1) -5 >Emitted(28, 35) Source(11, 38) + SourceIndex(1) -6 >Emitted(28, 40) Source(11, 42) + SourceIndex(1) -7 >Emitted(28, 41) Source(11, 43) + SourceIndex(1) +1->Emitted(29, 9) Source(11, 5) + SourceIndex(1) +2 >Emitted(29, 22) Source(11, 18) + SourceIndex(1) +3 >Emitted(29, 23) Source(11, 19) + SourceIndex(1) +4 >Emitted(29, 32) Source(11, 35) + SourceIndex(1) +5 >Emitted(29, 35) Source(11, 38) + SourceIndex(1) +6 >Emitted(29, 40) Source(11, 42) + SourceIndex(1) +7 >Emitted(29, 41) Source(11, 43) + SourceIndex(1) --- >>> normalN.foo = foo; 1 >^^^^^^^^ @@ -3467,10 +3472,10 @@ sourceFile:file1.ts 2 > foo 3 > () {} 4 > -1 >Emitted(29, 9) Source(11, 35) + SourceIndex(1) -2 >Emitted(29, 20) Source(11, 38) + SourceIndex(1) -3 >Emitted(29, 26) Source(11, 43) + SourceIndex(1) -4 >Emitted(29, 27) Source(11, 43) + SourceIndex(1) +1 >Emitted(30, 9) Source(11, 35) + SourceIndex(1) +2 >Emitted(30, 20) Source(11, 38) + SourceIndex(1) +3 >Emitted(30, 26) Source(11, 43) + SourceIndex(1) +4 >Emitted(30, 27) Source(11, 43) + SourceIndex(1) --- >>> /*@internal*/ var someNamespace; 1->^^^^^^^^ @@ -3486,12 +3491,12 @@ sourceFile:file1.ts 4 > export namespace 5 > someNamespace 6 > { export class C {} } -1->Emitted(30, 9) Source(12, 5) + SourceIndex(1) -2 >Emitted(30, 22) Source(12, 18) + SourceIndex(1) -3 >Emitted(30, 23) Source(12, 19) + SourceIndex(1) -4 >Emitted(30, 27) Source(12, 36) + SourceIndex(1) -5 >Emitted(30, 40) Source(12, 49) + SourceIndex(1) -6 >Emitted(30, 41) Source(12, 71) + SourceIndex(1) +1->Emitted(31, 9) Source(12, 5) + SourceIndex(1) +2 >Emitted(31, 22) Source(12, 18) + SourceIndex(1) +3 >Emitted(31, 23) Source(12, 19) + SourceIndex(1) +4 >Emitted(31, 27) Source(12, 36) + SourceIndex(1) +5 >Emitted(31, 40) Source(12, 49) + SourceIndex(1) +6 >Emitted(31, 41) Source(12, 71) + SourceIndex(1) --- >>> (function (someNamespace) { 1 >^^^^^^^^ @@ -3501,21 +3506,21 @@ sourceFile:file1.ts 1 > 2 > export namespace 3 > someNamespace -1 >Emitted(31, 9) Source(12, 19) + SourceIndex(1) -2 >Emitted(31, 20) Source(12, 36) + SourceIndex(1) -3 >Emitted(31, 33) Source(12, 49) + SourceIndex(1) +1 >Emitted(32, 9) Source(12, 19) + SourceIndex(1) +2 >Emitted(32, 20) Source(12, 36) + SourceIndex(1) +3 >Emitted(32, 33) Source(12, 49) + SourceIndex(1) --- >>> var C = /** @class */ (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(32, 13) Source(12, 52) + SourceIndex(1) +1->Emitted(33, 13) Source(12, 52) + SourceIndex(1) --- >>> function C() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(33, 17) Source(12, 52) + SourceIndex(1) +1->Emitted(34, 17) Source(12, 52) + SourceIndex(1) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -3523,16 +3528,16 @@ sourceFile:file1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(34, 17) Source(12, 68) + SourceIndex(1) -2 >Emitted(34, 18) Source(12, 69) + SourceIndex(1) +1->Emitted(35, 17) Source(12, 68) + SourceIndex(1) +2 >Emitted(35, 18) Source(12, 69) + SourceIndex(1) --- >>> return C; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(35, 17) Source(12, 68) + SourceIndex(1) -2 >Emitted(35, 25) Source(12, 69) + SourceIndex(1) +1->Emitted(36, 17) Source(12, 68) + SourceIndex(1) +2 >Emitted(36, 25) Source(12, 69) + SourceIndex(1) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -3544,10 +3549,10 @@ sourceFile:file1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(36, 13) Source(12, 68) + SourceIndex(1) -2 >Emitted(36, 14) Source(12, 69) + SourceIndex(1) -3 >Emitted(36, 14) Source(12, 52) + SourceIndex(1) -4 >Emitted(36, 18) Source(12, 69) + SourceIndex(1) +1 >Emitted(37, 13) Source(12, 68) + SourceIndex(1) +2 >Emitted(37, 14) Source(12, 69) + SourceIndex(1) +3 >Emitted(37, 14) Source(12, 52) + SourceIndex(1) +4 >Emitted(37, 18) Source(12, 69) + SourceIndex(1) --- >>> someNamespace.C = C; 1->^^^^^^^^^^^^ @@ -3559,10 +3564,10 @@ sourceFile:file1.ts 2 > C 3 > {} 4 > -1->Emitted(37, 13) Source(12, 65) + SourceIndex(1) -2 >Emitted(37, 28) Source(12, 66) + SourceIndex(1) -3 >Emitted(37, 32) Source(12, 69) + SourceIndex(1) -4 >Emitted(37, 33) Source(12, 69) + SourceIndex(1) +1->Emitted(38, 13) Source(12, 65) + SourceIndex(1) +2 >Emitted(38, 28) Source(12, 66) + SourceIndex(1) +3 >Emitted(38, 32) Source(12, 69) + SourceIndex(1) +4 >Emitted(38, 33) Source(12, 69) + SourceIndex(1) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^^^^^ @@ -3583,15 +3588,15 @@ sourceFile:file1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(38, 9) Source(12, 70) + SourceIndex(1) -2 >Emitted(38, 10) Source(12, 71) + SourceIndex(1) -3 >Emitted(38, 12) Source(12, 36) + SourceIndex(1) -4 >Emitted(38, 25) Source(12, 49) + SourceIndex(1) -5 >Emitted(38, 28) Source(12, 36) + SourceIndex(1) -6 >Emitted(38, 49) Source(12, 49) + SourceIndex(1) -7 >Emitted(38, 54) Source(12, 36) + SourceIndex(1) -8 >Emitted(38, 75) Source(12, 49) + SourceIndex(1) -9 >Emitted(38, 83) Source(12, 71) + SourceIndex(1) +1->Emitted(39, 9) Source(12, 70) + SourceIndex(1) +2 >Emitted(39, 10) Source(12, 71) + SourceIndex(1) +3 >Emitted(39, 12) Source(12, 36) + SourceIndex(1) +4 >Emitted(39, 25) Source(12, 49) + SourceIndex(1) +5 >Emitted(39, 28) Source(12, 36) + SourceIndex(1) +6 >Emitted(39, 49) Source(12, 49) + SourceIndex(1) +7 >Emitted(39, 54) Source(12, 36) + SourceIndex(1) +8 >Emitted(39, 75) Source(12, 49) + SourceIndex(1) +9 >Emitted(39, 83) Source(12, 71) + SourceIndex(1) --- >>> /*@internal*/ var someOther; 1 >^^^^^^^^ @@ -3607,12 +3612,12 @@ sourceFile:file1.ts 4 > export namespace 5 > someOther 6 > .something { export class someClass {} } -1 >Emitted(39, 9) Source(13, 5) + SourceIndex(1) -2 >Emitted(39, 22) Source(13, 18) + SourceIndex(1) -3 >Emitted(39, 23) Source(13, 19) + SourceIndex(1) -4 >Emitted(39, 27) Source(13, 36) + SourceIndex(1) -5 >Emitted(39, 36) Source(13, 45) + SourceIndex(1) -6 >Emitted(39, 37) Source(13, 85) + SourceIndex(1) +1 >Emitted(40, 9) Source(13, 5) + SourceIndex(1) +2 >Emitted(40, 22) Source(13, 18) + SourceIndex(1) +3 >Emitted(40, 23) Source(13, 19) + SourceIndex(1) +4 >Emitted(40, 27) Source(13, 36) + SourceIndex(1) +5 >Emitted(40, 36) Source(13, 45) + SourceIndex(1) +6 >Emitted(40, 37) Source(13, 85) + SourceIndex(1) --- >>> (function (someOther) { 1 >^^^^^^^^ @@ -3621,9 +3626,9 @@ sourceFile:file1.ts 1 > 2 > export namespace 3 > someOther -1 >Emitted(40, 9) Source(13, 19) + SourceIndex(1) -2 >Emitted(40, 20) Source(13, 36) + SourceIndex(1) -3 >Emitted(40, 29) Source(13, 45) + SourceIndex(1) +1 >Emitted(41, 9) Source(13, 19) + SourceIndex(1) +2 >Emitted(41, 20) Source(13, 36) + SourceIndex(1) +3 >Emitted(41, 29) Source(13, 45) + SourceIndex(1) --- >>> var something; 1 >^^^^^^^^^^^^ @@ -3635,10 +3640,10 @@ sourceFile:file1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(41, 13) Source(13, 46) + SourceIndex(1) -2 >Emitted(41, 17) Source(13, 46) + SourceIndex(1) -3 >Emitted(41, 26) Source(13, 55) + SourceIndex(1) -4 >Emitted(41, 27) Source(13, 85) + SourceIndex(1) +1 >Emitted(42, 13) Source(13, 46) + SourceIndex(1) +2 >Emitted(42, 17) Source(13, 46) + SourceIndex(1) +3 >Emitted(42, 26) Source(13, 55) + SourceIndex(1) +4 >Emitted(42, 27) Source(13, 85) + SourceIndex(1) --- >>> (function (something) { 1->^^^^^^^^^^^^ @@ -3648,21 +3653,21 @@ sourceFile:file1.ts 1-> 2 > 3 > something -1->Emitted(42, 13) Source(13, 46) + SourceIndex(1) -2 >Emitted(42, 24) Source(13, 46) + SourceIndex(1) -3 >Emitted(42, 33) Source(13, 55) + SourceIndex(1) +1->Emitted(43, 13) Source(13, 46) + SourceIndex(1) +2 >Emitted(43, 24) Source(13, 46) + SourceIndex(1) +3 >Emitted(43, 33) Source(13, 55) + SourceIndex(1) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(43, 17) Source(13, 58) + SourceIndex(1) +1->Emitted(44, 17) Source(13, 58) + SourceIndex(1) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(44, 21) Source(13, 58) + SourceIndex(1) +1->Emitted(45, 21) Source(13, 58) + SourceIndex(1) --- >>> } 1->^^^^^^^^^^^^^^^^^^^^ @@ -3670,16 +3675,16 @@ sourceFile:file1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(45, 21) Source(13, 82) + SourceIndex(1) -2 >Emitted(45, 22) Source(13, 83) + SourceIndex(1) +1->Emitted(46, 21) Source(13, 82) + SourceIndex(1) +2 >Emitted(46, 22) Source(13, 83) + SourceIndex(1) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(46, 21) Source(13, 82) + SourceIndex(1) -2 >Emitted(46, 37) Source(13, 83) + SourceIndex(1) +1->Emitted(47, 21) Source(13, 82) + SourceIndex(1) +2 >Emitted(47, 37) Source(13, 83) + SourceIndex(1) --- >>> }()); 1 >^^^^^^^^^^^^^^^^ @@ -3691,10 +3696,10 @@ sourceFile:file1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(47, 17) Source(13, 82) + SourceIndex(1) -2 >Emitted(47, 18) Source(13, 83) + SourceIndex(1) -3 >Emitted(47, 18) Source(13, 58) + SourceIndex(1) -4 >Emitted(47, 22) Source(13, 83) + SourceIndex(1) +1 >Emitted(48, 17) Source(13, 82) + SourceIndex(1) +2 >Emitted(48, 18) Source(13, 83) + SourceIndex(1) +3 >Emitted(48, 18) Source(13, 58) + SourceIndex(1) +4 >Emitted(48, 22) Source(13, 83) + SourceIndex(1) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^^^^^ @@ -3706,10 +3711,10 @@ sourceFile:file1.ts 2 > someClass 3 > {} 4 > -1->Emitted(48, 17) Source(13, 71) + SourceIndex(1) -2 >Emitted(48, 36) Source(13, 80) + SourceIndex(1) -3 >Emitted(48, 48) Source(13, 83) + SourceIndex(1) -4 >Emitted(48, 49) Source(13, 83) + SourceIndex(1) +1->Emitted(49, 17) Source(13, 71) + SourceIndex(1) +2 >Emitted(49, 36) Source(13, 80) + SourceIndex(1) +3 >Emitted(49, 48) Source(13, 83) + SourceIndex(1) +4 >Emitted(49, 49) Source(13, 83) + SourceIndex(1) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^^^^^ @@ -3730,15 +3735,15 @@ sourceFile:file1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(49, 13) Source(13, 84) + SourceIndex(1) -2 >Emitted(49, 14) Source(13, 85) + SourceIndex(1) -3 >Emitted(49, 16) Source(13, 46) + SourceIndex(1) -4 >Emitted(49, 25) Source(13, 55) + SourceIndex(1) -5 >Emitted(49, 28) Source(13, 46) + SourceIndex(1) -6 >Emitted(49, 47) Source(13, 55) + SourceIndex(1) -7 >Emitted(49, 52) Source(13, 46) + SourceIndex(1) -8 >Emitted(49, 71) Source(13, 55) + SourceIndex(1) -9 >Emitted(49, 79) Source(13, 85) + SourceIndex(1) +1->Emitted(50, 13) Source(13, 84) + SourceIndex(1) +2 >Emitted(50, 14) Source(13, 85) + SourceIndex(1) +3 >Emitted(50, 16) Source(13, 46) + SourceIndex(1) +4 >Emitted(50, 25) Source(13, 55) + SourceIndex(1) +5 >Emitted(50, 28) Source(13, 46) + SourceIndex(1) +6 >Emitted(50, 47) Source(13, 55) + SourceIndex(1) +7 >Emitted(50, 52) Source(13, 46) + SourceIndex(1) +8 >Emitted(50, 71) Source(13, 55) + SourceIndex(1) +9 >Emitted(50, 79) Source(13, 85) + SourceIndex(1) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^^^^^ @@ -3759,15 +3764,15 @@ sourceFile:file1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(50, 9) Source(13, 84) + SourceIndex(1) -2 >Emitted(50, 10) Source(13, 85) + SourceIndex(1) -3 >Emitted(50, 12) Source(13, 36) + SourceIndex(1) -4 >Emitted(50, 21) Source(13, 45) + SourceIndex(1) -5 >Emitted(50, 24) Source(13, 36) + SourceIndex(1) -6 >Emitted(50, 41) Source(13, 45) + SourceIndex(1) -7 >Emitted(50, 46) Source(13, 36) + SourceIndex(1) -8 >Emitted(50, 63) Source(13, 45) + SourceIndex(1) -9 >Emitted(50, 71) Source(13, 85) + SourceIndex(1) +1 >Emitted(51, 9) Source(13, 84) + SourceIndex(1) +2 >Emitted(51, 10) Source(13, 85) + SourceIndex(1) +3 >Emitted(51, 12) Source(13, 36) + SourceIndex(1) +4 >Emitted(51, 21) Source(13, 45) + SourceIndex(1) +5 >Emitted(51, 24) Source(13, 36) + SourceIndex(1) +6 >Emitted(51, 41) Source(13, 45) + SourceIndex(1) +7 >Emitted(51, 46) Source(13, 36) + SourceIndex(1) +8 >Emitted(51, 63) Source(13, 45) + SourceIndex(1) +9 >Emitted(51, 71) Source(13, 85) + SourceIndex(1) --- >>> /*@internal*/ normalN.someImport = someNamespace.C; 1 >^^^^^^^^ @@ -3789,15 +3794,15 @@ sourceFile:file1.ts 7 > . 8 > C 9 > ; -1 >Emitted(51, 9) Source(14, 5) + SourceIndex(1) -2 >Emitted(51, 22) Source(14, 18) + SourceIndex(1) -3 >Emitted(51, 23) Source(14, 33) + SourceIndex(1) -4 >Emitted(51, 41) Source(14, 43) + SourceIndex(1) -5 >Emitted(51, 44) Source(14, 46) + SourceIndex(1) -6 >Emitted(51, 57) Source(14, 59) + SourceIndex(1) -7 >Emitted(51, 58) Source(14, 60) + SourceIndex(1) -8 >Emitted(51, 59) Source(14, 61) + SourceIndex(1) -9 >Emitted(51, 60) Source(14, 62) + SourceIndex(1) +1 >Emitted(52, 9) Source(14, 5) + SourceIndex(1) +2 >Emitted(52, 22) Source(14, 18) + SourceIndex(1) +3 >Emitted(52, 23) Source(14, 33) + SourceIndex(1) +4 >Emitted(52, 41) Source(14, 43) + SourceIndex(1) +5 >Emitted(52, 44) Source(14, 46) + SourceIndex(1) +6 >Emitted(52, 57) Source(14, 59) + SourceIndex(1) +7 >Emitted(52, 58) Source(14, 60) + SourceIndex(1) +8 >Emitted(52, 59) Source(14, 61) + SourceIndex(1) +9 >Emitted(52, 60) Source(14, 62) + SourceIndex(1) --- >>> /*@internal*/ normalN.internalConst = 10; 1 >^^^^^^^^ @@ -3816,13 +3821,13 @@ sourceFile:file1.ts 5 > = 6 > 10 7 > ; -1 >Emitted(52, 9) Source(16, 5) + SourceIndex(1) -2 >Emitted(52, 22) Source(16, 18) + SourceIndex(1) -3 >Emitted(52, 23) Source(16, 32) + SourceIndex(1) -4 >Emitted(52, 44) Source(16, 45) + SourceIndex(1) -5 >Emitted(52, 47) Source(16, 48) + SourceIndex(1) -6 >Emitted(52, 49) Source(16, 50) + SourceIndex(1) -7 >Emitted(52, 50) Source(16, 51) + SourceIndex(1) +1 >Emitted(53, 9) Source(16, 5) + SourceIndex(1) +2 >Emitted(53, 22) Source(16, 18) + SourceIndex(1) +3 >Emitted(53, 23) Source(16, 32) + SourceIndex(1) +4 >Emitted(53, 44) Source(16, 45) + SourceIndex(1) +5 >Emitted(53, 47) Source(16, 48) + SourceIndex(1) +6 >Emitted(53, 49) Source(16, 50) + SourceIndex(1) +7 >Emitted(53, 50) Source(16, 51) + SourceIndex(1) --- >>> /*@internal*/ var internalEnum; 1 >^^^^^^^^ @@ -3836,11 +3841,11 @@ sourceFile:file1.ts 3 > 4 > export enum 5 > internalEnum { a, b, c } -1 >Emitted(53, 9) Source(17, 5) + SourceIndex(1) -2 >Emitted(53, 22) Source(17, 18) + SourceIndex(1) -3 >Emitted(53, 23) Source(17, 19) + SourceIndex(1) -4 >Emitted(53, 27) Source(17, 31) + SourceIndex(1) -5 >Emitted(53, 39) Source(17, 55) + SourceIndex(1) +1 >Emitted(54, 9) Source(17, 5) + SourceIndex(1) +2 >Emitted(54, 22) Source(17, 18) + SourceIndex(1) +3 >Emitted(54, 23) Source(17, 19) + SourceIndex(1) +4 >Emitted(54, 27) Source(17, 31) + SourceIndex(1) +5 >Emitted(54, 39) Source(17, 55) + SourceIndex(1) --- >>> (function (internalEnum) { 1 >^^^^^^^^ @@ -3850,9 +3855,9 @@ sourceFile:file1.ts 1 > 2 > export enum 3 > internalEnum -1 >Emitted(54, 9) Source(17, 19) + SourceIndex(1) -2 >Emitted(54, 20) Source(17, 31) + SourceIndex(1) -3 >Emitted(54, 32) Source(17, 43) + SourceIndex(1) +1 >Emitted(55, 9) Source(17, 19) + SourceIndex(1) +2 >Emitted(55, 20) Source(17, 31) + SourceIndex(1) +3 >Emitted(55, 32) Source(17, 43) + SourceIndex(1) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^^^^^ @@ -3862,9 +3867,9 @@ sourceFile:file1.ts 1-> { 2 > a 3 > -1->Emitted(55, 13) Source(17, 46) + SourceIndex(1) -2 >Emitted(55, 54) Source(17, 47) + SourceIndex(1) -3 >Emitted(55, 55) Source(17, 47) + SourceIndex(1) +1->Emitted(56, 13) Source(17, 46) + SourceIndex(1) +2 >Emitted(56, 54) Source(17, 47) + SourceIndex(1) +3 >Emitted(56, 55) Source(17, 47) + SourceIndex(1) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^^^^^ @@ -3874,9 +3879,9 @@ sourceFile:file1.ts 1->, 2 > b 3 > -1->Emitted(56, 13) Source(17, 49) + SourceIndex(1) -2 >Emitted(56, 54) Source(17, 50) + SourceIndex(1) -3 >Emitted(56, 55) Source(17, 50) + SourceIndex(1) +1->Emitted(57, 13) Source(17, 49) + SourceIndex(1) +2 >Emitted(57, 54) Source(17, 50) + SourceIndex(1) +3 >Emitted(57, 55) Source(17, 50) + SourceIndex(1) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^^^^^ @@ -3886,9 +3891,9 @@ sourceFile:file1.ts 1->, 2 > c 3 > -1->Emitted(57, 13) Source(17, 52) + SourceIndex(1) -2 >Emitted(57, 54) Source(17, 53) + SourceIndex(1) -3 >Emitted(57, 55) Source(17, 53) + SourceIndex(1) +1->Emitted(58, 13) Source(17, 52) + SourceIndex(1) +2 >Emitted(58, 54) Source(17, 53) + SourceIndex(1) +3 >Emitted(58, 55) Source(17, 53) + SourceIndex(1) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^^^^^ @@ -3909,15 +3914,15 @@ sourceFile:file1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(58, 9) Source(17, 54) + SourceIndex(1) -2 >Emitted(58, 10) Source(17, 55) + SourceIndex(1) -3 >Emitted(58, 12) Source(17, 31) + SourceIndex(1) -4 >Emitted(58, 24) Source(17, 43) + SourceIndex(1) -5 >Emitted(58, 27) Source(17, 31) + SourceIndex(1) -6 >Emitted(58, 47) Source(17, 43) + SourceIndex(1) -7 >Emitted(58, 52) Source(17, 31) + SourceIndex(1) -8 >Emitted(58, 72) Source(17, 43) + SourceIndex(1) -9 >Emitted(58, 80) Source(17, 55) + SourceIndex(1) +1->Emitted(59, 9) Source(17, 54) + SourceIndex(1) +2 >Emitted(59, 10) Source(17, 55) + SourceIndex(1) +3 >Emitted(59, 12) Source(17, 31) + SourceIndex(1) +4 >Emitted(59, 24) Source(17, 43) + SourceIndex(1) +5 >Emitted(59, 27) Source(17, 31) + SourceIndex(1) +6 >Emitted(59, 47) Source(17, 43) + SourceIndex(1) +7 >Emitted(59, 52) Source(17, 31) + SourceIndex(1) +8 >Emitted(59, 72) Source(17, 43) + SourceIndex(1) +9 >Emitted(59, 80) Source(17, 55) + SourceIndex(1) --- >>> })(normalN = exports.normalN || (exports.normalN = {})); 1 >^^^^ @@ -3949,15 +3954,15 @@ sourceFile:file1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(59, 5) Source(18, 1) + SourceIndex(1) -2 >Emitted(59, 6) Source(18, 2) + SourceIndex(1) -3 >Emitted(59, 8) Source(9, 18) + SourceIndex(1) -4 >Emitted(59, 15) Source(9, 25) + SourceIndex(1) -5 >Emitted(59, 18) Source(9, 18) + SourceIndex(1) -6 >Emitted(59, 33) Source(9, 25) + SourceIndex(1) -7 >Emitted(59, 38) Source(9, 18) + SourceIndex(1) -8 >Emitted(59, 53) Source(9, 25) + SourceIndex(1) -9 >Emitted(59, 61) Source(18, 2) + SourceIndex(1) +1 >Emitted(60, 5) Source(18, 1) + SourceIndex(1) +2 >Emitted(60, 6) Source(18, 2) + SourceIndex(1) +3 >Emitted(60, 8) Source(9, 18) + SourceIndex(1) +4 >Emitted(60, 15) Source(9, 25) + SourceIndex(1) +5 >Emitted(60, 18) Source(9, 18) + SourceIndex(1) +6 >Emitted(60, 33) Source(9, 25) + SourceIndex(1) +7 >Emitted(60, 38) Source(9, 18) + SourceIndex(1) +8 >Emitted(60, 53) Source(9, 25) + SourceIndex(1) +9 >Emitted(60, 61) Source(18, 2) + SourceIndex(1) --- >>> /*@internal*/ var internalC = /** @class */ (function () { 1->^^^^ @@ -3968,15 +3973,15 @@ sourceFile:file1.ts > 2 > /*@internal*/ 3 > -1->Emitted(60, 5) Source(19, 1) + SourceIndex(1) -2 >Emitted(60, 18) Source(19, 14) + SourceIndex(1) -3 >Emitted(60, 19) Source(19, 15) + SourceIndex(1) +1->Emitted(61, 5) Source(19, 1) + SourceIndex(1) +2 >Emitted(61, 18) Source(19, 14) + SourceIndex(1) +3 >Emitted(61, 19) Source(19, 15) + SourceIndex(1) --- >>> function internalC() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(61, 9) Source(19, 15) + SourceIndex(1) +1->Emitted(62, 9) Source(19, 15) + SourceIndex(1) --- >>> } 1->^^^^^^^^ @@ -3984,16 +3989,16 @@ sourceFile:file1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class internalC { 2 > } -1->Emitted(62, 9) Source(19, 39) + SourceIndex(1) -2 >Emitted(62, 10) Source(19, 40) + SourceIndex(1) +1->Emitted(63, 9) Source(19, 39) + SourceIndex(1) +2 >Emitted(63, 10) Source(19, 40) + SourceIndex(1) --- >>> return internalC; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(63, 9) Source(19, 39) + SourceIndex(1) -2 >Emitted(63, 25) Source(19, 40) + SourceIndex(1) +1->Emitted(64, 9) Source(19, 39) + SourceIndex(1) +2 >Emitted(64, 25) Source(19, 40) + SourceIndex(1) --- >>> }()); 1 >^^^^ @@ -4005,10 +4010,10 @@ sourceFile:file1.ts 2 > } 3 > 4 > export class internalC {} -1 >Emitted(64, 5) Source(19, 39) + SourceIndex(1) -2 >Emitted(64, 6) Source(19, 40) + SourceIndex(1) -3 >Emitted(64, 6) Source(19, 15) + SourceIndex(1) -4 >Emitted(64, 10) Source(19, 40) + SourceIndex(1) +1 >Emitted(65, 5) Source(19, 39) + SourceIndex(1) +2 >Emitted(65, 6) Source(19, 40) + SourceIndex(1) +3 >Emitted(65, 6) Source(19, 15) + SourceIndex(1) +4 >Emitted(65, 10) Source(19, 40) + SourceIndex(1) --- >>> exports.internalC = internalC; 1->^^^^ @@ -4016,8 +4021,8 @@ sourceFile:file1.ts 3 > ^^^^^^^^^^^-> 1-> 2 > internalC -1->Emitted(65, 5) Source(19, 28) + SourceIndex(1) -2 >Emitted(65, 35) Source(19, 37) + SourceIndex(1) +1->Emitted(66, 5) Source(19, 28) + SourceIndex(1) +2 >Emitted(66, 35) Source(19, 37) + SourceIndex(1) --- >>> /*@internal*/ function internalfoo() { } 1->^^^^ @@ -4035,13 +4040,13 @@ sourceFile:file1.ts 5 > internalfoo 6 > () { 7 > } -1->Emitted(66, 5) Source(20, 1) + SourceIndex(1) -2 >Emitted(66, 18) Source(20, 14) + SourceIndex(1) -3 >Emitted(66, 19) Source(20, 15) + SourceIndex(1) -4 >Emitted(66, 28) Source(20, 31) + SourceIndex(1) -5 >Emitted(66, 39) Source(20, 42) + SourceIndex(1) -6 >Emitted(66, 44) Source(20, 46) + SourceIndex(1) -7 >Emitted(66, 45) Source(20, 47) + SourceIndex(1) +1->Emitted(67, 5) Source(20, 1) + SourceIndex(1) +2 >Emitted(67, 18) Source(20, 14) + SourceIndex(1) +3 >Emitted(67, 19) Source(20, 15) + SourceIndex(1) +4 >Emitted(67, 28) Source(20, 31) + SourceIndex(1) +5 >Emitted(67, 39) Source(20, 42) + SourceIndex(1) +6 >Emitted(67, 44) Source(20, 46) + SourceIndex(1) +7 >Emitted(67, 45) Source(20, 47) + SourceIndex(1) --- >>> exports.internalfoo = internalfoo; 1 >^^^^ @@ -4049,8 +4054,8 @@ sourceFile:file1.ts 3 > ^^^-> 1 > 2 > export function internalfoo() {} -1 >Emitted(67, 5) Source(20, 15) + SourceIndex(1) -2 >Emitted(67, 39) Source(20, 47) + SourceIndex(1) +1 >Emitted(68, 5) Source(20, 15) + SourceIndex(1) +2 >Emitted(68, 39) Source(20, 47) + SourceIndex(1) --- >>> /*@internal*/ var internalNamespace; 1->^^^^ @@ -4066,12 +4071,12 @@ sourceFile:file1.ts 4 > export namespace 5 > internalNamespace 6 > { export class someClass {} } -1->Emitted(68, 5) Source(21, 1) + SourceIndex(1) -2 >Emitted(68, 18) Source(21, 14) + SourceIndex(1) -3 >Emitted(68, 19) Source(21, 15) + SourceIndex(1) -4 >Emitted(68, 23) Source(21, 32) + SourceIndex(1) -5 >Emitted(68, 40) Source(21, 49) + SourceIndex(1) -6 >Emitted(68, 41) Source(21, 79) + SourceIndex(1) +1->Emitted(69, 5) Source(21, 1) + SourceIndex(1) +2 >Emitted(69, 18) Source(21, 14) + SourceIndex(1) +3 >Emitted(69, 19) Source(21, 15) + SourceIndex(1) +4 >Emitted(69, 23) Source(21, 32) + SourceIndex(1) +5 >Emitted(69, 40) Source(21, 49) + SourceIndex(1) +6 >Emitted(69, 41) Source(21, 79) + SourceIndex(1) --- >>> (function (internalNamespace) { 1 >^^^^ @@ -4081,21 +4086,21 @@ sourceFile:file1.ts 1 > 2 > export namespace 3 > internalNamespace -1 >Emitted(69, 5) Source(21, 15) + SourceIndex(1) -2 >Emitted(69, 16) Source(21, 32) + SourceIndex(1) -3 >Emitted(69, 33) Source(21, 49) + SourceIndex(1) +1 >Emitted(70, 5) Source(21, 15) + SourceIndex(1) +2 >Emitted(70, 16) Source(21, 32) + SourceIndex(1) +3 >Emitted(70, 33) Source(21, 49) + SourceIndex(1) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(70, 9) Source(21, 52) + SourceIndex(1) +1->Emitted(71, 9) Source(21, 52) + SourceIndex(1) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(71, 13) Source(21, 52) + SourceIndex(1) +1->Emitted(72, 13) Source(21, 52) + SourceIndex(1) --- >>> } 1->^^^^^^^^^^^^ @@ -4103,16 +4108,16 @@ sourceFile:file1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(72, 13) Source(21, 76) + SourceIndex(1) -2 >Emitted(72, 14) Source(21, 77) + SourceIndex(1) +1->Emitted(73, 13) Source(21, 76) + SourceIndex(1) +2 >Emitted(73, 14) Source(21, 77) + SourceIndex(1) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(73, 13) Source(21, 76) + SourceIndex(1) -2 >Emitted(73, 29) Source(21, 77) + SourceIndex(1) +1->Emitted(74, 13) Source(21, 76) + SourceIndex(1) +2 >Emitted(74, 29) Source(21, 77) + SourceIndex(1) --- >>> }()); 1 >^^^^^^^^ @@ -4124,10 +4129,10 @@ sourceFile:file1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(74, 9) Source(21, 76) + SourceIndex(1) -2 >Emitted(74, 10) Source(21, 77) + SourceIndex(1) -3 >Emitted(74, 10) Source(21, 52) + SourceIndex(1) -4 >Emitted(74, 14) Source(21, 77) + SourceIndex(1) +1 >Emitted(75, 9) Source(21, 76) + SourceIndex(1) +2 >Emitted(75, 10) Source(21, 77) + SourceIndex(1) +3 >Emitted(75, 10) Source(21, 52) + SourceIndex(1) +4 >Emitted(75, 14) Source(21, 77) + SourceIndex(1) --- >>> internalNamespace.someClass = someClass; 1->^^^^^^^^ @@ -4139,10 +4144,10 @@ sourceFile:file1.ts 2 > someClass 3 > {} 4 > -1->Emitted(75, 9) Source(21, 65) + SourceIndex(1) -2 >Emitted(75, 36) Source(21, 74) + SourceIndex(1) -3 >Emitted(75, 48) Source(21, 77) + SourceIndex(1) -4 >Emitted(75, 49) Source(21, 77) + SourceIndex(1) +1->Emitted(76, 9) Source(21, 65) + SourceIndex(1) +2 >Emitted(76, 36) Source(21, 74) + SourceIndex(1) +3 >Emitted(76, 48) Source(21, 77) + SourceIndex(1) +4 >Emitted(76, 49) Source(21, 77) + SourceIndex(1) --- >>> })(internalNamespace = exports.internalNamespace || (exports.internalNamespace = {})); 1->^^^^ @@ -4163,15 +4168,15 @@ sourceFile:file1.ts 7 > 8 > internalNamespace 9 > { export class someClass {} } -1->Emitted(76, 5) Source(21, 78) + SourceIndex(1) -2 >Emitted(76, 6) Source(21, 79) + SourceIndex(1) -3 >Emitted(76, 8) Source(21, 32) + SourceIndex(1) -4 >Emitted(76, 25) Source(21, 49) + SourceIndex(1) -5 >Emitted(76, 28) Source(21, 32) + SourceIndex(1) -6 >Emitted(76, 53) Source(21, 49) + SourceIndex(1) -7 >Emitted(76, 58) Source(21, 32) + SourceIndex(1) -8 >Emitted(76, 83) Source(21, 49) + SourceIndex(1) -9 >Emitted(76, 91) Source(21, 79) + SourceIndex(1) +1->Emitted(77, 5) Source(21, 78) + SourceIndex(1) +2 >Emitted(77, 6) Source(21, 79) + SourceIndex(1) +3 >Emitted(77, 8) Source(21, 32) + SourceIndex(1) +4 >Emitted(77, 25) Source(21, 49) + SourceIndex(1) +5 >Emitted(77, 28) Source(21, 32) + SourceIndex(1) +6 >Emitted(77, 53) Source(21, 49) + SourceIndex(1) +7 >Emitted(77, 58) Source(21, 32) + SourceIndex(1) +8 >Emitted(77, 83) Source(21, 49) + SourceIndex(1) +9 >Emitted(77, 91) Source(21, 79) + SourceIndex(1) --- >>> /*@internal*/ var internalOther; 1 >^^^^ @@ -4187,12 +4192,12 @@ sourceFile:file1.ts 4 > export namespace 5 > internalOther 6 > .something { export class someClass {} } -1 >Emitted(77, 5) Source(22, 1) + SourceIndex(1) -2 >Emitted(77, 18) Source(22, 14) + SourceIndex(1) -3 >Emitted(77, 19) Source(22, 15) + SourceIndex(1) -4 >Emitted(77, 23) Source(22, 32) + SourceIndex(1) -5 >Emitted(77, 36) Source(22, 45) + SourceIndex(1) -6 >Emitted(77, 37) Source(22, 85) + SourceIndex(1) +1 >Emitted(78, 5) Source(22, 1) + SourceIndex(1) +2 >Emitted(78, 18) Source(22, 14) + SourceIndex(1) +3 >Emitted(78, 19) Source(22, 15) + SourceIndex(1) +4 >Emitted(78, 23) Source(22, 32) + SourceIndex(1) +5 >Emitted(78, 36) Source(22, 45) + SourceIndex(1) +6 >Emitted(78, 37) Source(22, 85) + SourceIndex(1) --- >>> (function (internalOther) { 1 >^^^^ @@ -4201,9 +4206,9 @@ sourceFile:file1.ts 1 > 2 > export namespace 3 > internalOther -1 >Emitted(78, 5) Source(22, 15) + SourceIndex(1) -2 >Emitted(78, 16) Source(22, 32) + SourceIndex(1) -3 >Emitted(78, 29) Source(22, 45) + SourceIndex(1) +1 >Emitted(79, 5) Source(22, 15) + SourceIndex(1) +2 >Emitted(79, 16) Source(22, 32) + SourceIndex(1) +3 >Emitted(79, 29) Source(22, 45) + SourceIndex(1) --- >>> var something; 1 >^^^^^^^^ @@ -4215,10 +4220,10 @@ sourceFile:file1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(79, 9) Source(22, 46) + SourceIndex(1) -2 >Emitted(79, 13) Source(22, 46) + SourceIndex(1) -3 >Emitted(79, 22) Source(22, 55) + SourceIndex(1) -4 >Emitted(79, 23) Source(22, 85) + SourceIndex(1) +1 >Emitted(80, 9) Source(22, 46) + SourceIndex(1) +2 >Emitted(80, 13) Source(22, 46) + SourceIndex(1) +3 >Emitted(80, 22) Source(22, 55) + SourceIndex(1) +4 >Emitted(80, 23) Source(22, 85) + SourceIndex(1) --- >>> (function (something) { 1->^^^^^^^^ @@ -4228,21 +4233,21 @@ sourceFile:file1.ts 1-> 2 > 3 > something -1->Emitted(80, 9) Source(22, 46) + SourceIndex(1) -2 >Emitted(80, 20) Source(22, 46) + SourceIndex(1) -3 >Emitted(80, 29) Source(22, 55) + SourceIndex(1) +1->Emitted(81, 9) Source(22, 46) + SourceIndex(1) +2 >Emitted(81, 20) Source(22, 46) + SourceIndex(1) +3 >Emitted(81, 29) Source(22, 55) + SourceIndex(1) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(81, 13) Source(22, 58) + SourceIndex(1) +1->Emitted(82, 13) Source(22, 58) + SourceIndex(1) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(82, 17) Source(22, 58) + SourceIndex(1) +1->Emitted(83, 17) Source(22, 58) + SourceIndex(1) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -4250,16 +4255,16 @@ sourceFile:file1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(83, 17) Source(22, 82) + SourceIndex(1) -2 >Emitted(83, 18) Source(22, 83) + SourceIndex(1) +1->Emitted(84, 17) Source(22, 82) + SourceIndex(1) +2 >Emitted(84, 18) Source(22, 83) + SourceIndex(1) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(84, 17) Source(22, 82) + SourceIndex(1) -2 >Emitted(84, 33) Source(22, 83) + SourceIndex(1) +1->Emitted(85, 17) Source(22, 82) + SourceIndex(1) +2 >Emitted(85, 33) Source(22, 83) + SourceIndex(1) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -4271,10 +4276,10 @@ sourceFile:file1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(85, 13) Source(22, 82) + SourceIndex(1) -2 >Emitted(85, 14) Source(22, 83) + SourceIndex(1) -3 >Emitted(85, 14) Source(22, 58) + SourceIndex(1) -4 >Emitted(85, 18) Source(22, 83) + SourceIndex(1) +1 >Emitted(86, 13) Source(22, 82) + SourceIndex(1) +2 >Emitted(86, 14) Source(22, 83) + SourceIndex(1) +3 >Emitted(86, 14) Source(22, 58) + SourceIndex(1) +4 >Emitted(86, 18) Source(22, 83) + SourceIndex(1) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -4286,10 +4291,10 @@ sourceFile:file1.ts 2 > someClass 3 > {} 4 > -1->Emitted(86, 13) Source(22, 71) + SourceIndex(1) -2 >Emitted(86, 32) Source(22, 80) + SourceIndex(1) -3 >Emitted(86, 44) Source(22, 83) + SourceIndex(1) -4 >Emitted(86, 45) Source(22, 83) + SourceIndex(1) +1->Emitted(87, 13) Source(22, 71) + SourceIndex(1) +2 >Emitted(87, 32) Source(22, 80) + SourceIndex(1) +3 >Emitted(87, 44) Source(22, 83) + SourceIndex(1) +4 >Emitted(87, 45) Source(22, 83) + SourceIndex(1) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^^^^^ @@ -4310,15 +4315,15 @@ sourceFile:file1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(87, 9) Source(22, 84) + SourceIndex(1) -2 >Emitted(87, 10) Source(22, 85) + SourceIndex(1) -3 >Emitted(87, 12) Source(22, 46) + SourceIndex(1) -4 >Emitted(87, 21) Source(22, 55) + SourceIndex(1) -5 >Emitted(87, 24) Source(22, 46) + SourceIndex(1) -6 >Emitted(87, 47) Source(22, 55) + SourceIndex(1) -7 >Emitted(87, 52) Source(22, 46) + SourceIndex(1) -8 >Emitted(87, 75) Source(22, 55) + SourceIndex(1) -9 >Emitted(87, 83) Source(22, 85) + SourceIndex(1) +1->Emitted(88, 9) Source(22, 84) + SourceIndex(1) +2 >Emitted(88, 10) Source(22, 85) + SourceIndex(1) +3 >Emitted(88, 12) Source(22, 46) + SourceIndex(1) +4 >Emitted(88, 21) Source(22, 55) + SourceIndex(1) +5 >Emitted(88, 24) Source(22, 46) + SourceIndex(1) +6 >Emitted(88, 47) Source(22, 55) + SourceIndex(1) +7 >Emitted(88, 52) Source(22, 46) + SourceIndex(1) +8 >Emitted(88, 75) Source(22, 55) + SourceIndex(1) +9 >Emitted(88, 83) Source(22, 85) + SourceIndex(1) --- >>> })(internalOther = exports.internalOther || (exports.internalOther = {})); 1 >^^^^ @@ -4339,15 +4344,15 @@ sourceFile:file1.ts 7 > 8 > internalOther 9 > .something { export class someClass {} } -1 >Emitted(88, 5) Source(22, 84) + SourceIndex(1) -2 >Emitted(88, 6) Source(22, 85) + SourceIndex(1) -3 >Emitted(88, 8) Source(22, 32) + SourceIndex(1) -4 >Emitted(88, 21) Source(22, 45) + SourceIndex(1) -5 >Emitted(88, 24) Source(22, 32) + SourceIndex(1) -6 >Emitted(88, 45) Source(22, 45) + SourceIndex(1) -7 >Emitted(88, 50) Source(22, 32) + SourceIndex(1) -8 >Emitted(88, 71) Source(22, 45) + SourceIndex(1) -9 >Emitted(88, 79) Source(22, 85) + SourceIndex(1) +1 >Emitted(89, 5) Source(22, 84) + SourceIndex(1) +2 >Emitted(89, 6) Source(22, 85) + SourceIndex(1) +3 >Emitted(89, 8) Source(22, 32) + SourceIndex(1) +4 >Emitted(89, 21) Source(22, 45) + SourceIndex(1) +5 >Emitted(89, 24) Source(22, 32) + SourceIndex(1) +6 >Emitted(89, 45) Source(22, 45) + SourceIndex(1) +7 >Emitted(89, 50) Source(22, 32) + SourceIndex(1) +8 >Emitted(89, 71) Source(22, 45) + SourceIndex(1) +9 >Emitted(89, 79) Source(22, 85) + SourceIndex(1) --- >>> /*@internal*/ exports.internalImport = internalNamespace.someClass; 1 >^^^^ @@ -4371,16 +4376,16 @@ sourceFile:file1.ts 8 > . 9 > someClass 10> ; -1 >Emitted(89, 5) Source(23, 1) + SourceIndex(1) -2 >Emitted(89, 18) Source(23, 14) + SourceIndex(1) -3 >Emitted(89, 19) Source(23, 29) + SourceIndex(1) -4 >Emitted(89, 27) Source(23, 29) + SourceIndex(1) -5 >Emitted(89, 41) Source(23, 43) + SourceIndex(1) -6 >Emitted(89, 44) Source(23, 46) + SourceIndex(1) -7 >Emitted(89, 61) Source(23, 63) + SourceIndex(1) -8 >Emitted(89, 62) Source(23, 64) + SourceIndex(1) -9 >Emitted(89, 71) Source(23, 73) + SourceIndex(1) -10>Emitted(89, 72) Source(23, 74) + SourceIndex(1) +1 >Emitted(90, 5) Source(23, 1) + SourceIndex(1) +2 >Emitted(90, 18) Source(23, 14) + SourceIndex(1) +3 >Emitted(90, 19) Source(23, 29) + SourceIndex(1) +4 >Emitted(90, 27) Source(23, 29) + SourceIndex(1) +5 >Emitted(90, 41) Source(23, 43) + SourceIndex(1) +6 >Emitted(90, 44) Source(23, 46) + SourceIndex(1) +7 >Emitted(90, 61) Source(23, 63) + SourceIndex(1) +8 >Emitted(90, 62) Source(23, 64) + SourceIndex(1) +9 >Emitted(90, 71) Source(23, 73) + SourceIndex(1) +10>Emitted(90, 72) Source(23, 74) + SourceIndex(1) --- >>> /*@internal*/ exports.internalConst = 10; 1 >^^^^ @@ -4401,14 +4406,14 @@ sourceFile:file1.ts 6 > = 7 > 10 8 > ; -1 >Emitted(90, 5) Source(25, 1) + SourceIndex(1) -2 >Emitted(90, 18) Source(25, 14) + SourceIndex(1) -3 >Emitted(90, 19) Source(25, 28) + SourceIndex(1) -4 >Emitted(90, 27) Source(25, 28) + SourceIndex(1) -5 >Emitted(90, 40) Source(25, 41) + SourceIndex(1) -6 >Emitted(90, 43) Source(25, 44) + SourceIndex(1) -7 >Emitted(90, 45) Source(25, 46) + SourceIndex(1) -8 >Emitted(90, 46) Source(25, 47) + SourceIndex(1) +1 >Emitted(91, 5) Source(25, 1) + SourceIndex(1) +2 >Emitted(91, 18) Source(25, 14) + SourceIndex(1) +3 >Emitted(91, 19) Source(25, 28) + SourceIndex(1) +4 >Emitted(91, 27) Source(25, 28) + SourceIndex(1) +5 >Emitted(91, 40) Source(25, 41) + SourceIndex(1) +6 >Emitted(91, 43) Source(25, 44) + SourceIndex(1) +7 >Emitted(91, 45) Source(25, 46) + SourceIndex(1) +8 >Emitted(91, 46) Source(25, 47) + SourceIndex(1) --- >>> /*@internal*/ var internalEnum; 1 >^^^^ @@ -4422,11 +4427,11 @@ sourceFile:file1.ts 3 > 4 > export enum 5 > internalEnum { a, b, c } -1 >Emitted(91, 5) Source(26, 1) + SourceIndex(1) -2 >Emitted(91, 18) Source(26, 14) + SourceIndex(1) -3 >Emitted(91, 19) Source(26, 15) + SourceIndex(1) -4 >Emitted(91, 23) Source(26, 27) + SourceIndex(1) -5 >Emitted(91, 35) Source(26, 51) + SourceIndex(1) +1 >Emitted(92, 5) Source(26, 1) + SourceIndex(1) +2 >Emitted(92, 18) Source(26, 14) + SourceIndex(1) +3 >Emitted(92, 19) Source(26, 15) + SourceIndex(1) +4 >Emitted(92, 23) Source(26, 27) + SourceIndex(1) +5 >Emitted(92, 35) Source(26, 51) + SourceIndex(1) --- >>> (function (internalEnum) { 1 >^^^^ @@ -4436,9 +4441,9 @@ sourceFile:file1.ts 1 > 2 > export enum 3 > internalEnum -1 >Emitted(92, 5) Source(26, 15) + SourceIndex(1) -2 >Emitted(92, 16) Source(26, 27) + SourceIndex(1) -3 >Emitted(92, 28) Source(26, 39) + SourceIndex(1) +1 >Emitted(93, 5) Source(26, 15) + SourceIndex(1) +2 >Emitted(93, 16) Source(26, 27) + SourceIndex(1) +3 >Emitted(93, 28) Source(26, 39) + SourceIndex(1) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -4448,9 +4453,9 @@ sourceFile:file1.ts 1-> { 2 > a 3 > -1->Emitted(93, 9) Source(26, 42) + SourceIndex(1) -2 >Emitted(93, 50) Source(26, 43) + SourceIndex(1) -3 >Emitted(93, 51) Source(26, 43) + SourceIndex(1) +1->Emitted(94, 9) Source(26, 42) + SourceIndex(1) +2 >Emitted(94, 50) Source(26, 43) + SourceIndex(1) +3 >Emitted(94, 51) Source(26, 43) + SourceIndex(1) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -4460,9 +4465,9 @@ sourceFile:file1.ts 1->, 2 > b 3 > -1->Emitted(94, 9) Source(26, 45) + SourceIndex(1) -2 >Emitted(94, 50) Source(26, 46) + SourceIndex(1) -3 >Emitted(94, 51) Source(26, 46) + SourceIndex(1) +1->Emitted(95, 9) Source(26, 45) + SourceIndex(1) +2 >Emitted(95, 50) Source(26, 46) + SourceIndex(1) +3 >Emitted(95, 51) Source(26, 46) + SourceIndex(1) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -4472,9 +4477,9 @@ sourceFile:file1.ts 1->, 2 > c 3 > -1->Emitted(95, 9) Source(26, 48) + SourceIndex(1) -2 >Emitted(95, 50) Source(26, 49) + SourceIndex(1) -3 >Emitted(95, 51) Source(26, 49) + SourceIndex(1) +1->Emitted(96, 9) Source(26, 48) + SourceIndex(1) +2 >Emitted(96, 50) Source(26, 49) + SourceIndex(1) +3 >Emitted(96, 51) Source(26, 49) + SourceIndex(1) --- >>> })(internalEnum = exports.internalEnum || (exports.internalEnum = {})); 1->^^^^ @@ -4495,15 +4500,15 @@ sourceFile:file1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(96, 5) Source(26, 50) + SourceIndex(1) -2 >Emitted(96, 6) Source(26, 51) + SourceIndex(1) -3 >Emitted(96, 8) Source(26, 27) + SourceIndex(1) -4 >Emitted(96, 20) Source(26, 39) + SourceIndex(1) -5 >Emitted(96, 23) Source(26, 27) + SourceIndex(1) -6 >Emitted(96, 43) Source(26, 39) + SourceIndex(1) -7 >Emitted(96, 48) Source(26, 27) + SourceIndex(1) -8 >Emitted(96, 68) Source(26, 39) + SourceIndex(1) -9 >Emitted(96, 76) Source(26, 51) + SourceIndex(1) +1->Emitted(97, 5) Source(26, 50) + SourceIndex(1) +2 >Emitted(97, 6) Source(26, 51) + SourceIndex(1) +3 >Emitted(97, 8) Source(26, 27) + SourceIndex(1) +4 >Emitted(97, 20) Source(26, 39) + SourceIndex(1) +5 >Emitted(97, 23) Source(26, 27) + SourceIndex(1) +6 >Emitted(97, 43) Source(26, 39) + SourceIndex(1) +7 >Emitted(97, 48) Source(26, 27) + SourceIndex(1) +8 >Emitted(97, 68) Source(26, 39) + SourceIndex(1) +9 >Emitted(97, 76) Source(26, 51) + SourceIndex(1) --- ------------------------------------------------------------------- emittedFile:/src/lib/module.js @@ -4527,12 +4532,12 @@ sourceFile:file2.ts 4 > = 5 > 20 6 > ; -1 >Emitted(102, 5) Source(1, 14) + SourceIndex(2) -2 >Emitted(102, 13) Source(1, 14) + SourceIndex(2) -3 >Emitted(102, 14) Source(1, 15) + SourceIndex(2) -4 >Emitted(102, 17) Source(1, 18) + SourceIndex(2) -5 >Emitted(102, 19) Source(1, 20) + SourceIndex(2) -6 >Emitted(102, 20) Source(1, 21) + SourceIndex(2) +1 >Emitted(103, 5) Source(1, 14) + SourceIndex(2) +2 >Emitted(103, 13) Source(1, 14) + SourceIndex(2) +3 >Emitted(103, 14) Source(1, 15) + SourceIndex(2) +4 >Emitted(103, 17) Source(1, 18) + SourceIndex(2) +5 >Emitted(103, 19) Source(1, 20) + SourceIndex(2) +6 >Emitted(103, 20) Source(1, 21) + SourceIndex(2) --- ------------------------------------------------------------------- emittedFile:/src/lib/module.js @@ -4553,12 +4558,12 @@ sourceFile:global.ts 4 > = 5 > 10 6 > ; -1 >Emitted(104, 1) Source(1, 1) + SourceIndex(3) -2 >Emitted(104, 5) Source(1, 7) + SourceIndex(3) -3 >Emitted(104, 16) Source(1, 18) + SourceIndex(3) -4 >Emitted(104, 19) Source(1, 21) + SourceIndex(3) -5 >Emitted(104, 21) Source(1, 23) + SourceIndex(3) -6 >Emitted(104, 22) Source(1, 24) + SourceIndex(3) +1 >Emitted(105, 1) Source(1, 1) + SourceIndex(3) +2 >Emitted(105, 5) Source(1, 7) + SourceIndex(3) +3 >Emitted(105, 16) Source(1, 18) + SourceIndex(3) +4 >Emitted(105, 19) Source(1, 21) + SourceIndex(3) +5 >Emitted(105, 21) Source(1, 23) + SourceIndex(3) +6 >Emitted(105, 22) Source(1, 24) + SourceIndex(3) --- >>>//# sourceMappingURL=module.js.map @@ -4576,7 +4581,7 @@ sourceFile:global.ts "sections": [ { "pos": 0, - "end": 4382, + "end": 4434, "kind": "text" } ] @@ -4633,7 +4638,7 @@ sourceFile:global.ts ====================================================================== File:: /src/lib/module.js ---------------------------------------------------------------------- -text: (0-4382) +text: (0-4434) /*@internal*/ var myGlob = 20; define("file1", ["require", "exports"], function (require, exports) { "use strict"; @@ -4643,8 +4648,9 @@ define("file1", ["require", "exports"], function (require, exports) { var normalC = /** @class */ (function () { /*@internal*/ function normalC() { } - /*@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /*@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /*@internal*/ get: function () { return 10; }, /*@internal*/ set: function (val) { }, enumerable: false, diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/stripInternal-when-one-two-three-are-prepended-in-order.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/stripInternal-when-one-two-three-are-prepended-in-order.js index 7fe09ee9e3445..f155016b01b3d 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/stripInternal-when-one-two-three-are-prepended-in-order.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/stripInternal-when-one-two-three-are-prepended-in-order.js @@ -951,8 +951,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -1046,7 +1047,7 @@ var C = (function () { //# sourceMappingURL=second-output.js.map //// [/src/2/second-output.js.map] -{"version":3,"file":"second-output.js","sourceRoot":"","sources":["../first/first_PART1.ts","../first/first_part2.ts","../first/first_part3.ts","../second/second_part1.ts","../second/second_part2.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"second-output.js","sourceRoot":"","sources":["../first/first_PART1.ts","../first/first_part2.ts","../first/first_part3.ts","../second/second_part1.ts","../second/second_part2.ts"],"names":[],"mappings":"AAIA,IAAM,CAAC,GAAG,aAAa,CAAC;AAMxB,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;ACVf,OAAO,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC;ACAjB,SAAS,CAAC;IACN,OAAO,gBAAgB,CAAC;AAC5B,CAAC;ACED,IAAU,CAAC,CAMV;AAND,WAAU,CAAC;IACP,SAAS,CAAC;QACN,OAAO,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;IAC3B,CAAC;IAED,CAAC,EAAE,CAAC;AACR,CAAC,EANS,CAAC,KAAD,CAAC,QAMV;AAED;IACkB;IAAgB,CAAC;;IAEjB,wBAAM,GAAN,cAAW,CAAC;IACZ,sBAAI,sBAAC;aAAL,cAAU,OAAO,EAAE,CAAC,CAAC,CAAC;aACtB,UAAM,GAAW,IAAI,CAAC;;;OADA;IAExC,cAAC;AAAD,CAAC,AAND,IAMC;AACD,IAAU,OAAO,CAShB;AATD,WAAU,OAAO;IACC;QAAA;QAAiB,CAAC;QAAD,QAAC;IAAD,CAAC,AAAlB,IAAkB;IAAL,SAAC,IAAI,CAAA;IAClB,SAAgB,GAAG,KAAI,CAAC;IAAR,WAAG,MAAK,CAAA;IACxB,IAAiB,aAAa,CAAsB;IAApD,WAAiB,aAAa;QAAG;YAAA;YAAgB,CAAC;YAAD,QAAC;QAAD,CAAC,AAAjB,IAAiB;QAAJ,eAAC,IAAG,CAAA;IAAC,CAAC,EAAnC,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAAsB;IACpD,IAAiB,SAAS,CAAwC;IAAlE,WAAiB,SAAS;QAAC,IAAA,SAAS,CAA8B;QAAvC,WAAA,SAAS;YAAG;gBAAA;gBAAwB,CAAC;gBAAD,gBAAC;YAAD,CAAC,AAAzB,IAAyB;YAAZ,mBAAS,YAAG,CAAA;QAAC,CAAC,EAAvC,SAAS,GAAT,mBAAS,KAAT,mBAAS,QAA8B;IAAD,CAAC,EAAjD,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAAwC;IACpD,kBAAU,GAAG,aAAa,CAAC,CAAC,CAAC;IAE9B,qBAAa,GAAG,EAAE,CAAC;IAChC,IAAY,YAAwB;IAApC,WAAY,YAAY;QAAG,yCAAC,CAAA;QAAE,yCAAC,CAAA;QAAE,yCAAC,CAAA;IAAC,CAAC,EAAxB,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAAY;AACtD,CAAC,EATS,OAAO,KAAP,OAAO,QAShB;AACa;IAAA;IAAiB,CAAC;IAAD,gBAAC;AAAD,CAAC,AAAlB,IAAkB;AAClB,SAAS,WAAW,KAAI,CAAC;AACzB,IAAU,iBAAiB,CAA8B;AAAzD,WAAU,iBAAiB;IAAG;QAAA;QAAwB,CAAC;QAAD,gBAAC;IAAD,CAAC,AAAzB,IAAyB;IAAZ,2BAAS,YAAG,CAAA;AAAC,CAAC,EAA/C,iBAAiB,KAAjB,iBAAiB,QAA8B;AACzD,IAAU,aAAa,CAAwC;AAA/D,WAAU,aAAa;IAAC,IAAA,SAAS,CAA8B;IAAvC,WAAA,SAAS;QAAG;YAAA;YAAwB,CAAC;YAAD,gBAAC;QAAD,CAAC,AAAzB,IAAyB;QAAZ,mBAAS,YAAG,CAAA;IAAC,CAAC,EAAvC,SAAS,GAAT,uBAAS,KAAT,uBAAS,QAA8B;AAAD,CAAC,EAArD,aAAa,KAAb,aAAa,QAAwC;AAC/D,IAAO,cAAc,GAAG,iBAAiB,CAAC,SAAS,CAAC;AAEpD,IAAM,aAAa,GAAG,EAAE,CAAC;AACzB,IAAK,YAAwB;AAA7B,WAAK,YAAY;IAAG,yCAAC,CAAA;IAAE,yCAAC,CAAA;IAAE,yCAAC,CAAA;AAAC,CAAC,EAAxB,YAAY,KAAZ,YAAY,QAAY;ACpC3C;IAAA;IAIA,CAAC;IAHG,uBAAW,GAAX;QACI,OAAO,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAC;IACtC,CAAC;IACL,QAAC;AAAD,CAAC,AAJD,IAIC"} //// [/src/2/second-output.js.map.baseline.txt] =================================================================== @@ -1347,13 +1348,14 @@ sourceFile:../second/second_part1.ts >>> } 1->^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1->constructor() { 2 > } 1->Emitted(16, 5) Source(14, 35) + SourceIndex(3) 2 >Emitted(16, 6) Source(14, 36) + SourceIndex(3) --- ->>> normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> normalC_prototype.method = function () { }; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^ @@ -1367,13 +1369,13 @@ sourceFile:../second/second_part1.ts 3 > 4 > method() { 5 > } -1->Emitted(17, 5) Source(16, 19) + SourceIndex(3) -2 >Emitted(17, 29) Source(16, 25) + SourceIndex(3) -3 >Emitted(17, 32) Source(16, 19) + SourceIndex(3) -4 >Emitted(17, 46) Source(16, 30) + SourceIndex(3) -5 >Emitted(17, 47) Source(16, 31) + SourceIndex(3) +1->Emitted(18, 5) Source(16, 19) + SourceIndex(3) +2 >Emitted(18, 29) Source(16, 25) + SourceIndex(3) +3 >Emitted(18, 32) Source(16, 19) + SourceIndex(3) +4 >Emitted(18, 46) Source(16, 30) + SourceIndex(3) +5 >Emitted(18, 47) Source(16, 31) + SourceIndex(3) --- ->>> Object.defineProperty(normalC.prototype, "c", { +>>> Object.defineProperty(normalC_prototype, "c", { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -1381,9 +1383,9 @@ sourceFile:../second/second_part1.ts > /*@internal*/ 2 > get 3 > c -1->Emitted(18, 5) Source(17, 19) + SourceIndex(3) -2 >Emitted(18, 27) Source(17, 23) + SourceIndex(3) -3 >Emitted(18, 49) Source(17, 24) + SourceIndex(3) +1->Emitted(19, 5) Source(17, 19) + SourceIndex(3) +2 >Emitted(19, 27) Source(17, 23) + SourceIndex(3) +3 >Emitted(19, 49) Source(17, 24) + SourceIndex(3) --- >>> get: function () { return 10; }, 1 >^^^^^^^^^^^^^ @@ -1400,13 +1402,13 @@ sourceFile:../second/second_part1.ts 5 > ; 6 > 7 > } -1 >Emitted(19, 14) Source(17, 19) + SourceIndex(3) -2 >Emitted(19, 28) Source(17, 29) + SourceIndex(3) -3 >Emitted(19, 35) Source(17, 36) + SourceIndex(3) -4 >Emitted(19, 37) Source(17, 38) + SourceIndex(3) -5 >Emitted(19, 38) Source(17, 39) + SourceIndex(3) -6 >Emitted(19, 39) Source(17, 40) + SourceIndex(3) -7 >Emitted(19, 40) Source(17, 41) + SourceIndex(3) +1 >Emitted(20, 14) Source(17, 19) + SourceIndex(3) +2 >Emitted(20, 28) Source(17, 29) + SourceIndex(3) +3 >Emitted(20, 35) Source(17, 36) + SourceIndex(3) +4 >Emitted(20, 37) Source(17, 38) + SourceIndex(3) +5 >Emitted(20, 38) Source(17, 39) + SourceIndex(3) +6 >Emitted(20, 39) Source(17, 40) + SourceIndex(3) +7 >Emitted(20, 40) Source(17, 41) + SourceIndex(3) --- >>> set: function (val) { }, 1 >^^^^^^^^^^^^^ @@ -1420,11 +1422,11 @@ sourceFile:../second/second_part1.ts 3 > val: number 4 > ) { 5 > } -1 >Emitted(20, 14) Source(18, 19) + SourceIndex(3) -2 >Emitted(20, 24) Source(18, 25) + SourceIndex(3) -3 >Emitted(20, 27) Source(18, 36) + SourceIndex(3) -4 >Emitted(20, 31) Source(18, 40) + SourceIndex(3) -5 >Emitted(20, 32) Source(18, 41) + SourceIndex(3) +1 >Emitted(21, 14) Source(18, 19) + SourceIndex(3) +2 >Emitted(21, 24) Source(18, 25) + SourceIndex(3) +3 >Emitted(21, 27) Source(18, 36) + SourceIndex(3) +4 >Emitted(21, 31) Source(18, 40) + SourceIndex(3) +5 >Emitted(21, 32) Source(18, 41) + SourceIndex(3) --- >>> enumerable: false, >>> configurable: true @@ -1432,7 +1434,7 @@ sourceFile:../second/second_part1.ts 1 >^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(23, 8) Source(17, 41) + SourceIndex(3) +1 >Emitted(24, 8) Source(17, 41) + SourceIndex(3) --- >>> return normalC; 1->^^^^ @@ -1441,8 +1443,8 @@ sourceFile:../second/second_part1.ts > /*@internal*/ set c(val: number) { } > 2 > } -1->Emitted(24, 5) Source(19, 1) + SourceIndex(3) -2 >Emitted(24, 19) Source(19, 2) + SourceIndex(3) +1->Emitted(25, 5) Source(19, 1) + SourceIndex(3) +2 >Emitted(25, 19) Source(19, 2) + SourceIndex(3) --- >>>}()); 1 > @@ -1460,10 +1462,10 @@ sourceFile:../second/second_part1.ts > /*@internal*/ get c() { return 10; } > /*@internal*/ set c(val: number) { } > } -1 >Emitted(25, 1) Source(19, 1) + SourceIndex(3) -2 >Emitted(25, 2) Source(19, 2) + SourceIndex(3) -3 >Emitted(25, 2) Source(13, 1) + SourceIndex(3) -4 >Emitted(25, 6) Source(19, 2) + SourceIndex(3) +1 >Emitted(26, 1) Source(19, 1) + SourceIndex(3) +2 >Emitted(26, 2) Source(19, 2) + SourceIndex(3) +3 >Emitted(26, 2) Source(13, 1) + SourceIndex(3) +4 >Emitted(26, 6) Source(19, 2) + SourceIndex(3) --- >>>var normalN; 1-> @@ -1485,10 +1487,10 @@ sourceFile:../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1->Emitted(26, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(26, 5) Source(20, 11) + SourceIndex(3) -3 >Emitted(26, 12) Source(20, 18) + SourceIndex(3) -4 >Emitted(26, 13) Source(29, 2) + SourceIndex(3) +1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(27, 5) Source(20, 11) + SourceIndex(3) +3 >Emitted(27, 12) Source(20, 18) + SourceIndex(3) +4 >Emitted(27, 13) Source(29, 2) + SourceIndex(3) --- >>>(function (normalN) { 1-> @@ -1498,22 +1500,22 @@ sourceFile:../second/second_part1.ts 1-> 2 >namespace 3 > normalN -1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(27, 12) Source(20, 11) + SourceIndex(3) -3 >Emitted(27, 19) Source(20, 18) + SourceIndex(3) +1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(28, 12) Source(20, 11) + SourceIndex(3) +3 >Emitted(28, 19) Source(20, 18) + SourceIndex(3) --- >>> var C = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { > /*@internal*/ -1->Emitted(28, 5) Source(21, 19) + SourceIndex(3) +1->Emitted(29, 5) Source(21, 19) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(29, 9) Source(21, 19) + SourceIndex(3) +1->Emitted(30, 9) Source(21, 19) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -1521,16 +1523,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(30, 9) Source(21, 36) + SourceIndex(3) -2 >Emitted(30, 10) Source(21, 37) + SourceIndex(3) +1->Emitted(31, 9) Source(21, 36) + SourceIndex(3) +2 >Emitted(31, 10) Source(21, 37) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(31, 9) Source(21, 36) + SourceIndex(3) -2 >Emitted(31, 17) Source(21, 37) + SourceIndex(3) +1->Emitted(32, 9) Source(21, 36) + SourceIndex(3) +2 >Emitted(32, 17) Source(21, 37) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -1542,10 +1544,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(32, 5) Source(21, 36) + SourceIndex(3) -2 >Emitted(32, 6) Source(21, 37) + SourceIndex(3) -3 >Emitted(32, 6) Source(21, 19) + SourceIndex(3) -4 >Emitted(32, 10) Source(21, 37) + SourceIndex(3) +1 >Emitted(33, 5) Source(21, 36) + SourceIndex(3) +2 >Emitted(33, 6) Source(21, 37) + SourceIndex(3) +3 >Emitted(33, 6) Source(21, 19) + SourceIndex(3) +4 >Emitted(33, 10) Source(21, 37) + SourceIndex(3) --- >>> normalN.C = C; 1->^^^^ @@ -1557,10 +1559,10 @@ sourceFile:../second/second_part1.ts 2 > C 3 > { } 4 > -1->Emitted(33, 5) Source(21, 32) + SourceIndex(3) -2 >Emitted(33, 14) Source(21, 33) + SourceIndex(3) -3 >Emitted(33, 18) Source(21, 37) + SourceIndex(3) -4 >Emitted(33, 19) Source(21, 37) + SourceIndex(3) +1->Emitted(34, 5) Source(21, 32) + SourceIndex(3) +2 >Emitted(34, 14) Source(21, 33) + SourceIndex(3) +3 >Emitted(34, 18) Source(21, 37) + SourceIndex(3) +4 >Emitted(34, 19) Source(21, 37) + SourceIndex(3) --- >>> function foo() { } 1->^^^^ @@ -1575,11 +1577,11 @@ sourceFile:../second/second_part1.ts 3 > foo 4 > () { 5 > } -1->Emitted(34, 5) Source(22, 19) + SourceIndex(3) -2 >Emitted(34, 14) Source(22, 35) + SourceIndex(3) -3 >Emitted(34, 17) Source(22, 38) + SourceIndex(3) -4 >Emitted(34, 22) Source(22, 42) + SourceIndex(3) -5 >Emitted(34, 23) Source(22, 43) + SourceIndex(3) +1->Emitted(35, 5) Source(22, 19) + SourceIndex(3) +2 >Emitted(35, 14) Source(22, 35) + SourceIndex(3) +3 >Emitted(35, 17) Source(22, 38) + SourceIndex(3) +4 >Emitted(35, 22) Source(22, 42) + SourceIndex(3) +5 >Emitted(35, 23) Source(22, 43) + SourceIndex(3) --- >>> normalN.foo = foo; 1->^^^^ @@ -1591,10 +1593,10 @@ sourceFile:../second/second_part1.ts 2 > foo 3 > () {} 4 > -1->Emitted(35, 5) Source(22, 35) + SourceIndex(3) -2 >Emitted(35, 16) Source(22, 38) + SourceIndex(3) -3 >Emitted(35, 22) Source(22, 43) + SourceIndex(3) -4 >Emitted(35, 23) Source(22, 43) + SourceIndex(3) +1->Emitted(36, 5) Source(22, 35) + SourceIndex(3) +2 >Emitted(36, 16) Source(22, 38) + SourceIndex(3) +3 >Emitted(36, 22) Source(22, 43) + SourceIndex(3) +4 >Emitted(36, 23) Source(22, 43) + SourceIndex(3) --- >>> var someNamespace; 1->^^^^ @@ -1607,10 +1609,10 @@ sourceFile:../second/second_part1.ts 2 > export namespace 3 > someNamespace 4 > { export class C {} } -1->Emitted(36, 5) Source(23, 19) + SourceIndex(3) -2 >Emitted(36, 9) Source(23, 36) + SourceIndex(3) -3 >Emitted(36, 22) Source(23, 49) + SourceIndex(3) -4 >Emitted(36, 23) Source(23, 71) + SourceIndex(3) +1->Emitted(37, 5) Source(23, 19) + SourceIndex(3) +2 >Emitted(37, 9) Source(23, 36) + SourceIndex(3) +3 >Emitted(37, 22) Source(23, 49) + SourceIndex(3) +4 >Emitted(37, 23) Source(23, 71) + SourceIndex(3) --- >>> (function (someNamespace) { 1->^^^^ @@ -1620,21 +1622,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > export namespace 3 > someNamespace -1->Emitted(37, 5) Source(23, 19) + SourceIndex(3) -2 >Emitted(37, 16) Source(23, 36) + SourceIndex(3) -3 >Emitted(37, 29) Source(23, 49) + SourceIndex(3) +1->Emitted(38, 5) Source(23, 19) + SourceIndex(3) +2 >Emitted(38, 16) Source(23, 36) + SourceIndex(3) +3 >Emitted(38, 29) Source(23, 49) + SourceIndex(3) --- >>> var C = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(38, 9) Source(23, 52) + SourceIndex(3) +1->Emitted(39, 9) Source(23, 52) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(39, 13) Source(23, 52) + SourceIndex(3) +1->Emitted(40, 13) Source(23, 52) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -1642,16 +1644,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(40, 13) Source(23, 68) + SourceIndex(3) -2 >Emitted(40, 14) Source(23, 69) + SourceIndex(3) +1->Emitted(41, 13) Source(23, 68) + SourceIndex(3) +2 >Emitted(41, 14) Source(23, 69) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(41, 13) Source(23, 68) + SourceIndex(3) -2 >Emitted(41, 21) Source(23, 69) + SourceIndex(3) +1->Emitted(42, 13) Source(23, 68) + SourceIndex(3) +2 >Emitted(42, 21) Source(23, 69) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -1663,10 +1665,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(42, 9) Source(23, 68) + SourceIndex(3) -2 >Emitted(42, 10) Source(23, 69) + SourceIndex(3) -3 >Emitted(42, 10) Source(23, 52) + SourceIndex(3) -4 >Emitted(42, 14) Source(23, 69) + SourceIndex(3) +1 >Emitted(43, 9) Source(23, 68) + SourceIndex(3) +2 >Emitted(43, 10) Source(23, 69) + SourceIndex(3) +3 >Emitted(43, 10) Source(23, 52) + SourceIndex(3) +4 >Emitted(43, 14) Source(23, 69) + SourceIndex(3) --- >>> someNamespace.C = C; 1->^^^^^^^^ @@ -1678,10 +1680,10 @@ sourceFile:../second/second_part1.ts 2 > C 3 > {} 4 > -1->Emitted(43, 9) Source(23, 65) + SourceIndex(3) -2 >Emitted(43, 24) Source(23, 66) + SourceIndex(3) -3 >Emitted(43, 28) Source(23, 69) + SourceIndex(3) -4 >Emitted(43, 29) Source(23, 69) + SourceIndex(3) +1->Emitted(44, 9) Source(23, 65) + SourceIndex(3) +2 >Emitted(44, 24) Source(23, 66) + SourceIndex(3) +3 >Emitted(44, 28) Source(23, 69) + SourceIndex(3) +4 >Emitted(44, 29) Source(23, 69) + SourceIndex(3) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^ @@ -1702,15 +1704,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(44, 5) Source(23, 70) + SourceIndex(3) -2 >Emitted(44, 6) Source(23, 71) + SourceIndex(3) -3 >Emitted(44, 8) Source(23, 36) + SourceIndex(3) -4 >Emitted(44, 21) Source(23, 49) + SourceIndex(3) -5 >Emitted(44, 24) Source(23, 36) + SourceIndex(3) -6 >Emitted(44, 45) Source(23, 49) + SourceIndex(3) -7 >Emitted(44, 50) Source(23, 36) + SourceIndex(3) -8 >Emitted(44, 71) Source(23, 49) + SourceIndex(3) -9 >Emitted(44, 79) Source(23, 71) + SourceIndex(3) +1->Emitted(45, 5) Source(23, 70) + SourceIndex(3) +2 >Emitted(45, 6) Source(23, 71) + SourceIndex(3) +3 >Emitted(45, 8) Source(23, 36) + SourceIndex(3) +4 >Emitted(45, 21) Source(23, 49) + SourceIndex(3) +5 >Emitted(45, 24) Source(23, 36) + SourceIndex(3) +6 >Emitted(45, 45) Source(23, 49) + SourceIndex(3) +7 >Emitted(45, 50) Source(23, 36) + SourceIndex(3) +8 >Emitted(45, 71) Source(23, 49) + SourceIndex(3) +9 >Emitted(45, 79) Source(23, 71) + SourceIndex(3) --- >>> var someOther; 1 >^^^^ @@ -1723,10 +1725,10 @@ sourceFile:../second/second_part1.ts 2 > export namespace 3 > someOther 4 > .something { export class someClass {} } -1 >Emitted(45, 5) Source(24, 19) + SourceIndex(3) -2 >Emitted(45, 9) Source(24, 36) + SourceIndex(3) -3 >Emitted(45, 18) Source(24, 45) + SourceIndex(3) -4 >Emitted(45, 19) Source(24, 85) + SourceIndex(3) +1 >Emitted(46, 5) Source(24, 19) + SourceIndex(3) +2 >Emitted(46, 9) Source(24, 36) + SourceIndex(3) +3 >Emitted(46, 18) Source(24, 45) + SourceIndex(3) +4 >Emitted(46, 19) Source(24, 85) + SourceIndex(3) --- >>> (function (someOther) { 1->^^^^ @@ -1735,9 +1737,9 @@ sourceFile:../second/second_part1.ts 1-> 2 > export namespace 3 > someOther -1->Emitted(46, 5) Source(24, 19) + SourceIndex(3) -2 >Emitted(46, 16) Source(24, 36) + SourceIndex(3) -3 >Emitted(46, 25) Source(24, 45) + SourceIndex(3) +1->Emitted(47, 5) Source(24, 19) + SourceIndex(3) +2 >Emitted(47, 16) Source(24, 36) + SourceIndex(3) +3 >Emitted(47, 25) Source(24, 45) + SourceIndex(3) --- >>> var something; 1 >^^^^^^^^ @@ -1749,10 +1751,10 @@ sourceFile:../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(47, 9) Source(24, 46) + SourceIndex(3) -2 >Emitted(47, 13) Source(24, 46) + SourceIndex(3) -3 >Emitted(47, 22) Source(24, 55) + SourceIndex(3) -4 >Emitted(47, 23) Source(24, 85) + SourceIndex(3) +1 >Emitted(48, 9) Source(24, 46) + SourceIndex(3) +2 >Emitted(48, 13) Source(24, 46) + SourceIndex(3) +3 >Emitted(48, 22) Source(24, 55) + SourceIndex(3) +4 >Emitted(48, 23) Source(24, 85) + SourceIndex(3) --- >>> (function (something) { 1->^^^^^^^^ @@ -1762,21 +1764,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(48, 9) Source(24, 46) + SourceIndex(3) -2 >Emitted(48, 20) Source(24, 46) + SourceIndex(3) -3 >Emitted(48, 29) Source(24, 55) + SourceIndex(3) +1->Emitted(49, 9) Source(24, 46) + SourceIndex(3) +2 >Emitted(49, 20) Source(24, 46) + SourceIndex(3) +3 >Emitted(49, 29) Source(24, 55) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(49, 13) Source(24, 58) + SourceIndex(3) +1->Emitted(50, 13) Source(24, 58) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(50, 17) Source(24, 58) + SourceIndex(3) +1->Emitted(51, 17) Source(24, 58) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -1784,16 +1786,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(51, 17) Source(24, 82) + SourceIndex(3) -2 >Emitted(51, 18) Source(24, 83) + SourceIndex(3) +1->Emitted(52, 17) Source(24, 82) + SourceIndex(3) +2 >Emitted(52, 18) Source(24, 83) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(52, 17) Source(24, 82) + SourceIndex(3) -2 >Emitted(52, 33) Source(24, 83) + SourceIndex(3) +1->Emitted(53, 17) Source(24, 82) + SourceIndex(3) +2 >Emitted(53, 33) Source(24, 83) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -1805,10 +1807,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(53, 13) Source(24, 82) + SourceIndex(3) -2 >Emitted(53, 14) Source(24, 83) + SourceIndex(3) -3 >Emitted(53, 14) Source(24, 58) + SourceIndex(3) -4 >Emitted(53, 18) Source(24, 83) + SourceIndex(3) +1 >Emitted(54, 13) Source(24, 82) + SourceIndex(3) +2 >Emitted(54, 14) Source(24, 83) + SourceIndex(3) +3 >Emitted(54, 14) Source(24, 58) + SourceIndex(3) +4 >Emitted(54, 18) Source(24, 83) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -1820,10 +1822,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(54, 13) Source(24, 71) + SourceIndex(3) -2 >Emitted(54, 32) Source(24, 80) + SourceIndex(3) -3 >Emitted(54, 44) Source(24, 83) + SourceIndex(3) -4 >Emitted(54, 45) Source(24, 83) + SourceIndex(3) +1->Emitted(55, 13) Source(24, 71) + SourceIndex(3) +2 >Emitted(55, 32) Source(24, 80) + SourceIndex(3) +3 >Emitted(55, 44) Source(24, 83) + SourceIndex(3) +4 >Emitted(55, 45) Source(24, 83) + SourceIndex(3) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^ @@ -1844,15 +1846,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(55, 9) Source(24, 84) + SourceIndex(3) -2 >Emitted(55, 10) Source(24, 85) + SourceIndex(3) -3 >Emitted(55, 12) Source(24, 46) + SourceIndex(3) -4 >Emitted(55, 21) Source(24, 55) + SourceIndex(3) -5 >Emitted(55, 24) Source(24, 46) + SourceIndex(3) -6 >Emitted(55, 43) Source(24, 55) + SourceIndex(3) -7 >Emitted(55, 48) Source(24, 46) + SourceIndex(3) -8 >Emitted(55, 67) Source(24, 55) + SourceIndex(3) -9 >Emitted(55, 75) Source(24, 85) + SourceIndex(3) +1->Emitted(56, 9) Source(24, 84) + SourceIndex(3) +2 >Emitted(56, 10) Source(24, 85) + SourceIndex(3) +3 >Emitted(56, 12) Source(24, 46) + SourceIndex(3) +4 >Emitted(56, 21) Source(24, 55) + SourceIndex(3) +5 >Emitted(56, 24) Source(24, 46) + SourceIndex(3) +6 >Emitted(56, 43) Source(24, 55) + SourceIndex(3) +7 >Emitted(56, 48) Source(24, 46) + SourceIndex(3) +8 >Emitted(56, 67) Source(24, 55) + SourceIndex(3) +9 >Emitted(56, 75) Source(24, 85) + SourceIndex(3) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^ @@ -1873,15 +1875,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(56, 5) Source(24, 84) + SourceIndex(3) -2 >Emitted(56, 6) Source(24, 85) + SourceIndex(3) -3 >Emitted(56, 8) Source(24, 36) + SourceIndex(3) -4 >Emitted(56, 17) Source(24, 45) + SourceIndex(3) -5 >Emitted(56, 20) Source(24, 36) + SourceIndex(3) -6 >Emitted(56, 37) Source(24, 45) + SourceIndex(3) -7 >Emitted(56, 42) Source(24, 36) + SourceIndex(3) -8 >Emitted(56, 59) Source(24, 45) + SourceIndex(3) -9 >Emitted(56, 67) Source(24, 85) + SourceIndex(3) +1 >Emitted(57, 5) Source(24, 84) + SourceIndex(3) +2 >Emitted(57, 6) Source(24, 85) + SourceIndex(3) +3 >Emitted(57, 8) Source(24, 36) + SourceIndex(3) +4 >Emitted(57, 17) Source(24, 45) + SourceIndex(3) +5 >Emitted(57, 20) Source(24, 36) + SourceIndex(3) +6 >Emitted(57, 37) Source(24, 45) + SourceIndex(3) +7 >Emitted(57, 42) Source(24, 36) + SourceIndex(3) +8 >Emitted(57, 59) Source(24, 45) + SourceIndex(3) +9 >Emitted(57, 67) Source(24, 85) + SourceIndex(3) --- >>> normalN.someImport = someNamespace.C; 1 >^^^^ @@ -1899,13 +1901,13 @@ sourceFile:../second/second_part1.ts 5 > . 6 > C 7 > ; -1 >Emitted(57, 5) Source(25, 33) + SourceIndex(3) -2 >Emitted(57, 23) Source(25, 43) + SourceIndex(3) -3 >Emitted(57, 26) Source(25, 46) + SourceIndex(3) -4 >Emitted(57, 39) Source(25, 59) + SourceIndex(3) -5 >Emitted(57, 40) Source(25, 60) + SourceIndex(3) -6 >Emitted(57, 41) Source(25, 61) + SourceIndex(3) -7 >Emitted(57, 42) Source(25, 62) + SourceIndex(3) +1 >Emitted(58, 5) Source(25, 33) + SourceIndex(3) +2 >Emitted(58, 23) Source(25, 43) + SourceIndex(3) +3 >Emitted(58, 26) Source(25, 46) + SourceIndex(3) +4 >Emitted(58, 39) Source(25, 59) + SourceIndex(3) +5 >Emitted(58, 40) Source(25, 60) + SourceIndex(3) +6 >Emitted(58, 41) Source(25, 61) + SourceIndex(3) +7 >Emitted(58, 42) Source(25, 62) + SourceIndex(3) --- >>> normalN.internalConst = 10; 1 >^^^^ @@ -1920,11 +1922,11 @@ sourceFile:../second/second_part1.ts 3 > = 4 > 10 5 > ; -1 >Emitted(58, 5) Source(27, 32) + SourceIndex(3) -2 >Emitted(58, 26) Source(27, 45) + SourceIndex(3) -3 >Emitted(58, 29) Source(27, 48) + SourceIndex(3) -4 >Emitted(58, 31) Source(27, 50) + SourceIndex(3) -5 >Emitted(58, 32) Source(27, 51) + SourceIndex(3) +1 >Emitted(59, 5) Source(27, 32) + SourceIndex(3) +2 >Emitted(59, 26) Source(27, 45) + SourceIndex(3) +3 >Emitted(59, 29) Source(27, 48) + SourceIndex(3) +4 >Emitted(59, 31) Source(27, 50) + SourceIndex(3) +5 >Emitted(59, 32) Source(27, 51) + SourceIndex(3) --- >>> var internalEnum; 1 >^^^^ @@ -1935,9 +1937,9 @@ sourceFile:../second/second_part1.ts > /*@internal*/ 2 > export enum 3 > internalEnum { a, b, c } -1 >Emitted(59, 5) Source(28, 19) + SourceIndex(3) -2 >Emitted(59, 9) Source(28, 31) + SourceIndex(3) -3 >Emitted(59, 21) Source(28, 55) + SourceIndex(3) +1 >Emitted(60, 5) Source(28, 19) + SourceIndex(3) +2 >Emitted(60, 9) Source(28, 31) + SourceIndex(3) +3 >Emitted(60, 21) Source(28, 55) + SourceIndex(3) --- >>> (function (internalEnum) { 1->^^^^ @@ -1947,9 +1949,9 @@ sourceFile:../second/second_part1.ts 1-> 2 > export enum 3 > internalEnum -1->Emitted(60, 5) Source(28, 19) + SourceIndex(3) -2 >Emitted(60, 16) Source(28, 31) + SourceIndex(3) -3 >Emitted(60, 28) Source(28, 43) + SourceIndex(3) +1->Emitted(61, 5) Source(28, 19) + SourceIndex(3) +2 >Emitted(61, 16) Source(28, 31) + SourceIndex(3) +3 >Emitted(61, 28) Source(28, 43) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -1959,9 +1961,9 @@ sourceFile:../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(61, 9) Source(28, 46) + SourceIndex(3) -2 >Emitted(61, 50) Source(28, 47) + SourceIndex(3) -3 >Emitted(61, 51) Source(28, 47) + SourceIndex(3) +1->Emitted(62, 9) Source(28, 46) + SourceIndex(3) +2 >Emitted(62, 50) Source(28, 47) + SourceIndex(3) +3 >Emitted(62, 51) Source(28, 47) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -1971,9 +1973,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(62, 9) Source(28, 49) + SourceIndex(3) -2 >Emitted(62, 50) Source(28, 50) + SourceIndex(3) -3 >Emitted(62, 51) Source(28, 50) + SourceIndex(3) +1->Emitted(63, 9) Source(28, 49) + SourceIndex(3) +2 >Emitted(63, 50) Source(28, 50) + SourceIndex(3) +3 >Emitted(63, 51) Source(28, 50) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -1983,9 +1985,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(63, 9) Source(28, 52) + SourceIndex(3) -2 >Emitted(63, 50) Source(28, 53) + SourceIndex(3) -3 >Emitted(63, 51) Source(28, 53) + SourceIndex(3) +1->Emitted(64, 9) Source(28, 52) + SourceIndex(3) +2 >Emitted(64, 50) Source(28, 53) + SourceIndex(3) +3 >Emitted(64, 51) Source(28, 53) + SourceIndex(3) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^ @@ -2006,15 +2008,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(64, 5) Source(28, 54) + SourceIndex(3) -2 >Emitted(64, 6) Source(28, 55) + SourceIndex(3) -3 >Emitted(64, 8) Source(28, 31) + SourceIndex(3) -4 >Emitted(64, 20) Source(28, 43) + SourceIndex(3) -5 >Emitted(64, 23) Source(28, 31) + SourceIndex(3) -6 >Emitted(64, 43) Source(28, 43) + SourceIndex(3) -7 >Emitted(64, 48) Source(28, 31) + SourceIndex(3) -8 >Emitted(64, 68) Source(28, 43) + SourceIndex(3) -9 >Emitted(64, 76) Source(28, 55) + SourceIndex(3) +1->Emitted(65, 5) Source(28, 54) + SourceIndex(3) +2 >Emitted(65, 6) Source(28, 55) + SourceIndex(3) +3 >Emitted(65, 8) Source(28, 31) + SourceIndex(3) +4 >Emitted(65, 20) Source(28, 43) + SourceIndex(3) +5 >Emitted(65, 23) Source(28, 31) + SourceIndex(3) +6 >Emitted(65, 43) Source(28, 43) + SourceIndex(3) +7 >Emitted(65, 48) Source(28, 31) + SourceIndex(3) +8 >Emitted(65, 68) Source(28, 43) + SourceIndex(3) +9 >Emitted(65, 76) Source(28, 55) + SourceIndex(3) --- >>>})(normalN || (normalN = {})); 1 > @@ -2042,26 +2044,26 @@ sourceFile:../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(65, 1) Source(29, 1) + SourceIndex(3) -2 >Emitted(65, 2) Source(29, 2) + SourceIndex(3) -3 >Emitted(65, 4) Source(20, 11) + SourceIndex(3) -4 >Emitted(65, 11) Source(20, 18) + SourceIndex(3) -5 >Emitted(65, 16) Source(20, 11) + SourceIndex(3) -6 >Emitted(65, 23) Source(20, 18) + SourceIndex(3) -7 >Emitted(65, 31) Source(29, 2) + SourceIndex(3) +1 >Emitted(66, 1) Source(29, 1) + SourceIndex(3) +2 >Emitted(66, 2) Source(29, 2) + SourceIndex(3) +3 >Emitted(66, 4) Source(20, 11) + SourceIndex(3) +4 >Emitted(66, 11) Source(20, 18) + SourceIndex(3) +5 >Emitted(66, 16) Source(20, 11) + SourceIndex(3) +6 >Emitted(66, 23) Source(20, 18) + SourceIndex(3) +7 >Emitted(66, 31) Source(29, 2) + SourceIndex(3) --- >>>var internalC = (function () { 1-> 2 >^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> >/*@internal*/ -1->Emitted(66, 1) Source(30, 15) + SourceIndex(3) +1->Emitted(67, 1) Source(30, 15) + SourceIndex(3) --- >>> function internalC() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(67, 5) Source(30, 15) + SourceIndex(3) +1->Emitted(68, 5) Source(30, 15) + SourceIndex(3) --- >>> } 1->^^^^ @@ -2069,16 +2071,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->class internalC { 2 > } -1->Emitted(68, 5) Source(30, 32) + SourceIndex(3) -2 >Emitted(68, 6) Source(30, 33) + SourceIndex(3) +1->Emitted(69, 5) Source(30, 32) + SourceIndex(3) +2 >Emitted(69, 6) Source(30, 33) + SourceIndex(3) --- >>> return internalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(69, 5) Source(30, 32) + SourceIndex(3) -2 >Emitted(69, 21) Source(30, 33) + SourceIndex(3) +1->Emitted(70, 5) Source(30, 32) + SourceIndex(3) +2 >Emitted(70, 21) Source(30, 33) + SourceIndex(3) --- >>>}()); 1 > @@ -2090,10 +2092,10 @@ sourceFile:../second/second_part1.ts 2 >} 3 > 4 > class internalC {} -1 >Emitted(70, 1) Source(30, 32) + SourceIndex(3) -2 >Emitted(70, 2) Source(30, 33) + SourceIndex(3) -3 >Emitted(70, 2) Source(30, 15) + SourceIndex(3) -4 >Emitted(70, 6) Source(30, 33) + SourceIndex(3) +1 >Emitted(71, 1) Source(30, 32) + SourceIndex(3) +2 >Emitted(71, 2) Source(30, 33) + SourceIndex(3) +3 >Emitted(71, 2) Source(30, 15) + SourceIndex(3) +4 >Emitted(71, 6) Source(30, 33) + SourceIndex(3) --- >>>function internalfoo() { } 1-> @@ -2107,11 +2109,11 @@ sourceFile:../second/second_part1.ts 3 > internalfoo 4 > () { 5 > } -1->Emitted(71, 1) Source(31, 15) + SourceIndex(3) -2 >Emitted(71, 10) Source(31, 24) + SourceIndex(3) -3 >Emitted(71, 21) Source(31, 35) + SourceIndex(3) -4 >Emitted(71, 26) Source(31, 39) + SourceIndex(3) -5 >Emitted(71, 27) Source(31, 40) + SourceIndex(3) +1->Emitted(72, 1) Source(31, 15) + SourceIndex(3) +2 >Emitted(72, 10) Source(31, 24) + SourceIndex(3) +3 >Emitted(72, 21) Source(31, 35) + SourceIndex(3) +4 >Emitted(72, 26) Source(31, 39) + SourceIndex(3) +5 >Emitted(72, 27) Source(31, 40) + SourceIndex(3) --- >>>var internalNamespace; 1 > @@ -2124,10 +2126,10 @@ sourceFile:../second/second_part1.ts 2 >namespace 3 > internalNamespace 4 > { export class someClass {} } -1 >Emitted(72, 1) Source(32, 15) + SourceIndex(3) -2 >Emitted(72, 5) Source(32, 25) + SourceIndex(3) -3 >Emitted(72, 22) Source(32, 42) + SourceIndex(3) -4 >Emitted(72, 23) Source(32, 72) + SourceIndex(3) +1 >Emitted(73, 1) Source(32, 15) + SourceIndex(3) +2 >Emitted(73, 5) Source(32, 25) + SourceIndex(3) +3 >Emitted(73, 22) Source(32, 42) + SourceIndex(3) +4 >Emitted(73, 23) Source(32, 72) + SourceIndex(3) --- >>>(function (internalNamespace) { 1-> @@ -2137,21 +2139,21 @@ sourceFile:../second/second_part1.ts 1-> 2 >namespace 3 > internalNamespace -1->Emitted(73, 1) Source(32, 15) + SourceIndex(3) -2 >Emitted(73, 12) Source(32, 25) + SourceIndex(3) -3 >Emitted(73, 29) Source(32, 42) + SourceIndex(3) +1->Emitted(74, 1) Source(32, 15) + SourceIndex(3) +2 >Emitted(74, 12) Source(32, 25) + SourceIndex(3) +3 >Emitted(74, 29) Source(32, 42) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(74, 5) Source(32, 45) + SourceIndex(3) +1->Emitted(75, 5) Source(32, 45) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(75, 9) Source(32, 45) + SourceIndex(3) +1->Emitted(76, 9) Source(32, 45) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -2159,16 +2161,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(76, 9) Source(32, 69) + SourceIndex(3) -2 >Emitted(76, 10) Source(32, 70) + SourceIndex(3) +1->Emitted(77, 9) Source(32, 69) + SourceIndex(3) +2 >Emitted(77, 10) Source(32, 70) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(77, 9) Source(32, 69) + SourceIndex(3) -2 >Emitted(77, 25) Source(32, 70) + SourceIndex(3) +1->Emitted(78, 9) Source(32, 69) + SourceIndex(3) +2 >Emitted(78, 25) Source(32, 70) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -2180,10 +2182,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(78, 5) Source(32, 69) + SourceIndex(3) -2 >Emitted(78, 6) Source(32, 70) + SourceIndex(3) -3 >Emitted(78, 6) Source(32, 45) + SourceIndex(3) -4 >Emitted(78, 10) Source(32, 70) + SourceIndex(3) +1 >Emitted(79, 5) Source(32, 69) + SourceIndex(3) +2 >Emitted(79, 6) Source(32, 70) + SourceIndex(3) +3 >Emitted(79, 6) Source(32, 45) + SourceIndex(3) +4 >Emitted(79, 10) Source(32, 70) + SourceIndex(3) --- >>> internalNamespace.someClass = someClass; 1->^^^^ @@ -2195,10 +2197,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(79, 5) Source(32, 58) + SourceIndex(3) -2 >Emitted(79, 32) Source(32, 67) + SourceIndex(3) -3 >Emitted(79, 44) Source(32, 70) + SourceIndex(3) -4 >Emitted(79, 45) Source(32, 70) + SourceIndex(3) +1->Emitted(80, 5) Source(32, 58) + SourceIndex(3) +2 >Emitted(80, 32) Source(32, 67) + SourceIndex(3) +3 >Emitted(80, 44) Source(32, 70) + SourceIndex(3) +4 >Emitted(80, 45) Source(32, 70) + SourceIndex(3) --- >>>})(internalNamespace || (internalNamespace = {})); 1-> @@ -2215,13 +2217,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalNamespace 7 > { export class someClass {} } -1->Emitted(80, 1) Source(32, 71) + SourceIndex(3) -2 >Emitted(80, 2) Source(32, 72) + SourceIndex(3) -3 >Emitted(80, 4) Source(32, 25) + SourceIndex(3) -4 >Emitted(80, 21) Source(32, 42) + SourceIndex(3) -5 >Emitted(80, 26) Source(32, 25) + SourceIndex(3) -6 >Emitted(80, 43) Source(32, 42) + SourceIndex(3) -7 >Emitted(80, 51) Source(32, 72) + SourceIndex(3) +1->Emitted(81, 1) Source(32, 71) + SourceIndex(3) +2 >Emitted(81, 2) Source(32, 72) + SourceIndex(3) +3 >Emitted(81, 4) Source(32, 25) + SourceIndex(3) +4 >Emitted(81, 21) Source(32, 42) + SourceIndex(3) +5 >Emitted(81, 26) Source(32, 25) + SourceIndex(3) +6 >Emitted(81, 43) Source(32, 42) + SourceIndex(3) +7 >Emitted(81, 51) Source(32, 72) + SourceIndex(3) --- >>>var internalOther; 1 > @@ -2234,10 +2236,10 @@ sourceFile:../second/second_part1.ts 2 >namespace 3 > internalOther 4 > .something { export class someClass {} } -1 >Emitted(81, 1) Source(33, 15) + SourceIndex(3) -2 >Emitted(81, 5) Source(33, 25) + SourceIndex(3) -3 >Emitted(81, 18) Source(33, 38) + SourceIndex(3) -4 >Emitted(81, 19) Source(33, 78) + SourceIndex(3) +1 >Emitted(82, 1) Source(33, 15) + SourceIndex(3) +2 >Emitted(82, 5) Source(33, 25) + SourceIndex(3) +3 >Emitted(82, 18) Source(33, 38) + SourceIndex(3) +4 >Emitted(82, 19) Source(33, 78) + SourceIndex(3) --- >>>(function (internalOther) { 1-> @@ -2246,9 +2248,9 @@ sourceFile:../second/second_part1.ts 1-> 2 >namespace 3 > internalOther -1->Emitted(82, 1) Source(33, 15) + SourceIndex(3) -2 >Emitted(82, 12) Source(33, 25) + SourceIndex(3) -3 >Emitted(82, 25) Source(33, 38) + SourceIndex(3) +1->Emitted(83, 1) Source(33, 15) + SourceIndex(3) +2 >Emitted(83, 12) Source(33, 25) + SourceIndex(3) +3 >Emitted(83, 25) Source(33, 38) + SourceIndex(3) --- >>> var something; 1 >^^^^ @@ -2260,10 +2262,10 @@ sourceFile:../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(83, 5) Source(33, 39) + SourceIndex(3) -2 >Emitted(83, 9) Source(33, 39) + SourceIndex(3) -3 >Emitted(83, 18) Source(33, 48) + SourceIndex(3) -4 >Emitted(83, 19) Source(33, 78) + SourceIndex(3) +1 >Emitted(84, 5) Source(33, 39) + SourceIndex(3) +2 >Emitted(84, 9) Source(33, 39) + SourceIndex(3) +3 >Emitted(84, 18) Source(33, 48) + SourceIndex(3) +4 >Emitted(84, 19) Source(33, 78) + SourceIndex(3) --- >>> (function (something) { 1->^^^^ @@ -2273,21 +2275,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(84, 5) Source(33, 39) + SourceIndex(3) -2 >Emitted(84, 16) Source(33, 39) + SourceIndex(3) -3 >Emitted(84, 25) Source(33, 48) + SourceIndex(3) +1->Emitted(85, 5) Source(33, 39) + SourceIndex(3) +2 >Emitted(85, 16) Source(33, 39) + SourceIndex(3) +3 >Emitted(85, 25) Source(33, 48) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(85, 9) Source(33, 51) + SourceIndex(3) +1->Emitted(86, 9) Source(33, 51) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(86, 13) Source(33, 51) + SourceIndex(3) +1->Emitted(87, 13) Source(33, 51) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -2295,16 +2297,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(87, 13) Source(33, 75) + SourceIndex(3) -2 >Emitted(87, 14) Source(33, 76) + SourceIndex(3) +1->Emitted(88, 13) Source(33, 75) + SourceIndex(3) +2 >Emitted(88, 14) Source(33, 76) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(88, 13) Source(33, 75) + SourceIndex(3) -2 >Emitted(88, 29) Source(33, 76) + SourceIndex(3) +1->Emitted(89, 13) Source(33, 75) + SourceIndex(3) +2 >Emitted(89, 29) Source(33, 76) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -2316,10 +2318,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(89, 9) Source(33, 75) + SourceIndex(3) -2 >Emitted(89, 10) Source(33, 76) + SourceIndex(3) -3 >Emitted(89, 10) Source(33, 51) + SourceIndex(3) -4 >Emitted(89, 14) Source(33, 76) + SourceIndex(3) +1 >Emitted(90, 9) Source(33, 75) + SourceIndex(3) +2 >Emitted(90, 10) Source(33, 76) + SourceIndex(3) +3 >Emitted(90, 10) Source(33, 51) + SourceIndex(3) +4 >Emitted(90, 14) Source(33, 76) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^ @@ -2331,10 +2333,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(90, 9) Source(33, 64) + SourceIndex(3) -2 >Emitted(90, 28) Source(33, 73) + SourceIndex(3) -3 >Emitted(90, 40) Source(33, 76) + SourceIndex(3) -4 >Emitted(90, 41) Source(33, 76) + SourceIndex(3) +1->Emitted(91, 9) Source(33, 64) + SourceIndex(3) +2 >Emitted(91, 28) Source(33, 73) + SourceIndex(3) +3 >Emitted(91, 40) Source(33, 76) + SourceIndex(3) +4 >Emitted(91, 41) Source(33, 76) + SourceIndex(3) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^ @@ -2355,15 +2357,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(91, 5) Source(33, 77) + SourceIndex(3) -2 >Emitted(91, 6) Source(33, 78) + SourceIndex(3) -3 >Emitted(91, 8) Source(33, 39) + SourceIndex(3) -4 >Emitted(91, 17) Source(33, 48) + SourceIndex(3) -5 >Emitted(91, 20) Source(33, 39) + SourceIndex(3) -6 >Emitted(91, 43) Source(33, 48) + SourceIndex(3) -7 >Emitted(91, 48) Source(33, 39) + SourceIndex(3) -8 >Emitted(91, 71) Source(33, 48) + SourceIndex(3) -9 >Emitted(91, 79) Source(33, 78) + SourceIndex(3) +1->Emitted(92, 5) Source(33, 77) + SourceIndex(3) +2 >Emitted(92, 6) Source(33, 78) + SourceIndex(3) +3 >Emitted(92, 8) Source(33, 39) + SourceIndex(3) +4 >Emitted(92, 17) Source(33, 48) + SourceIndex(3) +5 >Emitted(92, 20) Source(33, 39) + SourceIndex(3) +6 >Emitted(92, 43) Source(33, 48) + SourceIndex(3) +7 >Emitted(92, 48) Source(33, 39) + SourceIndex(3) +8 >Emitted(92, 71) Source(33, 48) + SourceIndex(3) +9 >Emitted(92, 79) Source(33, 78) + SourceIndex(3) --- >>>})(internalOther || (internalOther = {})); 1 > @@ -2381,13 +2383,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalOther 7 > .something { export class someClass {} } -1 >Emitted(92, 1) Source(33, 77) + SourceIndex(3) -2 >Emitted(92, 2) Source(33, 78) + SourceIndex(3) -3 >Emitted(92, 4) Source(33, 25) + SourceIndex(3) -4 >Emitted(92, 17) Source(33, 38) + SourceIndex(3) -5 >Emitted(92, 22) Source(33, 25) + SourceIndex(3) -6 >Emitted(92, 35) Source(33, 38) + SourceIndex(3) -7 >Emitted(92, 43) Source(33, 78) + SourceIndex(3) +1 >Emitted(93, 1) Source(33, 77) + SourceIndex(3) +2 >Emitted(93, 2) Source(33, 78) + SourceIndex(3) +3 >Emitted(93, 4) Source(33, 25) + SourceIndex(3) +4 >Emitted(93, 17) Source(33, 38) + SourceIndex(3) +5 >Emitted(93, 22) Source(33, 25) + SourceIndex(3) +6 >Emitted(93, 35) Source(33, 38) + SourceIndex(3) +7 >Emitted(93, 43) Source(33, 78) + SourceIndex(3) --- >>>var internalImport = internalNamespace.someClass; 1-> @@ -2407,14 +2409,14 @@ sourceFile:../second/second_part1.ts 6 > . 7 > someClass 8 > ; -1->Emitted(93, 1) Source(34, 15) + SourceIndex(3) -2 >Emitted(93, 5) Source(34, 22) + SourceIndex(3) -3 >Emitted(93, 19) Source(34, 36) + SourceIndex(3) -4 >Emitted(93, 22) Source(34, 39) + SourceIndex(3) -5 >Emitted(93, 39) Source(34, 56) + SourceIndex(3) -6 >Emitted(93, 40) Source(34, 57) + SourceIndex(3) -7 >Emitted(93, 49) Source(34, 66) + SourceIndex(3) -8 >Emitted(93, 50) Source(34, 67) + SourceIndex(3) +1->Emitted(94, 1) Source(34, 15) + SourceIndex(3) +2 >Emitted(94, 5) Source(34, 22) + SourceIndex(3) +3 >Emitted(94, 19) Source(34, 36) + SourceIndex(3) +4 >Emitted(94, 22) Source(34, 39) + SourceIndex(3) +5 >Emitted(94, 39) Source(34, 56) + SourceIndex(3) +6 >Emitted(94, 40) Source(34, 57) + SourceIndex(3) +7 >Emitted(94, 49) Source(34, 66) + SourceIndex(3) +8 >Emitted(94, 50) Source(34, 67) + SourceIndex(3) --- >>>var internalConst = 10; 1 > @@ -2431,12 +2433,12 @@ sourceFile:../second/second_part1.ts 4 > = 5 > 10 6 > ; -1 >Emitted(94, 1) Source(36, 15) + SourceIndex(3) -2 >Emitted(94, 5) Source(36, 21) + SourceIndex(3) -3 >Emitted(94, 18) Source(36, 34) + SourceIndex(3) -4 >Emitted(94, 21) Source(36, 37) + SourceIndex(3) -5 >Emitted(94, 23) Source(36, 39) + SourceIndex(3) -6 >Emitted(94, 24) Source(36, 40) + SourceIndex(3) +1 >Emitted(95, 1) Source(36, 15) + SourceIndex(3) +2 >Emitted(95, 5) Source(36, 21) + SourceIndex(3) +3 >Emitted(95, 18) Source(36, 34) + SourceIndex(3) +4 >Emitted(95, 21) Source(36, 37) + SourceIndex(3) +5 >Emitted(95, 23) Source(36, 39) + SourceIndex(3) +6 >Emitted(95, 24) Source(36, 40) + SourceIndex(3) --- >>>var internalEnum; 1 > @@ -2447,9 +2449,9 @@ sourceFile:../second/second_part1.ts >/*@internal*/ 2 >enum 3 > internalEnum { a, b, c } -1 >Emitted(95, 1) Source(37, 15) + SourceIndex(3) -2 >Emitted(95, 5) Source(37, 20) + SourceIndex(3) -3 >Emitted(95, 17) Source(37, 44) + SourceIndex(3) +1 >Emitted(96, 1) Source(37, 15) + SourceIndex(3) +2 >Emitted(96, 5) Source(37, 20) + SourceIndex(3) +3 >Emitted(96, 17) Source(37, 44) + SourceIndex(3) --- >>>(function (internalEnum) { 1-> @@ -2459,9 +2461,9 @@ sourceFile:../second/second_part1.ts 1-> 2 >enum 3 > internalEnum -1->Emitted(96, 1) Source(37, 15) + SourceIndex(3) -2 >Emitted(96, 12) Source(37, 20) + SourceIndex(3) -3 >Emitted(96, 24) Source(37, 32) + SourceIndex(3) +1->Emitted(97, 1) Source(37, 15) + SourceIndex(3) +2 >Emitted(97, 12) Source(37, 20) + SourceIndex(3) +3 >Emitted(97, 24) Source(37, 32) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^ @@ -2471,9 +2473,9 @@ sourceFile:../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(97, 5) Source(37, 35) + SourceIndex(3) -2 >Emitted(97, 46) Source(37, 36) + SourceIndex(3) -3 >Emitted(97, 47) Source(37, 36) + SourceIndex(3) +1->Emitted(98, 5) Source(37, 35) + SourceIndex(3) +2 >Emitted(98, 46) Source(37, 36) + SourceIndex(3) +3 >Emitted(98, 47) Source(37, 36) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^ @@ -2483,9 +2485,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(98, 5) Source(37, 38) + SourceIndex(3) -2 >Emitted(98, 46) Source(37, 39) + SourceIndex(3) -3 >Emitted(98, 47) Source(37, 39) + SourceIndex(3) +1->Emitted(99, 5) Source(37, 38) + SourceIndex(3) +2 >Emitted(99, 46) Source(37, 39) + SourceIndex(3) +3 >Emitted(99, 47) Source(37, 39) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^ @@ -2494,9 +2496,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(99, 5) Source(37, 41) + SourceIndex(3) -2 >Emitted(99, 46) Source(37, 42) + SourceIndex(3) -3 >Emitted(99, 47) Source(37, 42) + SourceIndex(3) +1->Emitted(100, 5) Source(37, 41) + SourceIndex(3) +2 >Emitted(100, 46) Source(37, 42) + SourceIndex(3) +3 >Emitted(100, 47) Source(37, 42) + SourceIndex(3) --- >>>})(internalEnum || (internalEnum = {})); 1 > @@ -2513,13 +2515,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalEnum 7 > { a, b, c } -1 >Emitted(100, 1) Source(37, 43) + SourceIndex(3) -2 >Emitted(100, 2) Source(37, 44) + SourceIndex(3) -3 >Emitted(100, 4) Source(37, 20) + SourceIndex(3) -4 >Emitted(100, 16) Source(37, 32) + SourceIndex(3) -5 >Emitted(100, 21) Source(37, 20) + SourceIndex(3) -6 >Emitted(100, 33) Source(37, 32) + SourceIndex(3) -7 >Emitted(100, 41) Source(37, 44) + SourceIndex(3) +1 >Emitted(101, 1) Source(37, 43) + SourceIndex(3) +2 >Emitted(101, 2) Source(37, 44) + SourceIndex(3) +3 >Emitted(101, 4) Source(37, 20) + SourceIndex(3) +4 >Emitted(101, 16) Source(37, 32) + SourceIndex(3) +5 >Emitted(101, 21) Source(37, 20) + SourceIndex(3) +6 >Emitted(101, 33) Source(37, 32) + SourceIndex(3) +7 >Emitted(101, 41) Source(37, 44) + SourceIndex(3) --- ------------------------------------------------------------------- emittedFile:/src/2/second-output.js @@ -2529,13 +2531,13 @@ sourceFile:../second/second_part2.ts 1 > 2 >^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(101, 1) Source(1, 1) + SourceIndex(4) +1 >Emitted(102, 1) Source(1, 1) + SourceIndex(4) --- >>> function C() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(102, 5) Source(1, 1) + SourceIndex(4) +1->Emitted(103, 5) Source(1, 1) + SourceIndex(4) --- >>> } 1->^^^^ @@ -2547,8 +2549,8 @@ sourceFile:../second/second_part2.ts > } > 2 > } -1->Emitted(103, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(103, 6) Source(5, 2) + SourceIndex(4) +1->Emitted(104, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(104, 6) Source(5, 2) + SourceIndex(4) --- >>> C.prototype.doSomething = function () { 1->^^^^ @@ -2558,9 +2560,9 @@ sourceFile:../second/second_part2.ts 1-> 2 > doSomething 3 > -1->Emitted(104, 5) Source(2, 5) + SourceIndex(4) -2 >Emitted(104, 28) Source(2, 16) + SourceIndex(4) -3 >Emitted(104, 31) Source(2, 5) + SourceIndex(4) +1->Emitted(105, 5) Source(2, 5) + SourceIndex(4) +2 >Emitted(105, 28) Source(2, 16) + SourceIndex(4) +3 >Emitted(105, 31) Source(2, 5) + SourceIndex(4) --- >>> console.log("something got done"); 1->^^^^^^^^ @@ -2580,14 +2582,14 @@ sourceFile:../second/second_part2.ts 6 > "something got done" 7 > ) 8 > ; -1->Emitted(105, 9) Source(3, 9) + SourceIndex(4) -2 >Emitted(105, 16) Source(3, 16) + SourceIndex(4) -3 >Emitted(105, 17) Source(3, 17) + SourceIndex(4) -4 >Emitted(105, 20) Source(3, 20) + SourceIndex(4) -5 >Emitted(105, 21) Source(3, 21) + SourceIndex(4) -6 >Emitted(105, 41) Source(3, 41) + SourceIndex(4) -7 >Emitted(105, 42) Source(3, 42) + SourceIndex(4) -8 >Emitted(105, 43) Source(3, 43) + SourceIndex(4) +1->Emitted(106, 9) Source(3, 9) + SourceIndex(4) +2 >Emitted(106, 16) Source(3, 16) + SourceIndex(4) +3 >Emitted(106, 17) Source(3, 17) + SourceIndex(4) +4 >Emitted(106, 20) Source(3, 20) + SourceIndex(4) +5 >Emitted(106, 21) Source(3, 21) + SourceIndex(4) +6 >Emitted(106, 41) Source(3, 41) + SourceIndex(4) +7 >Emitted(106, 42) Source(3, 42) + SourceIndex(4) +8 >Emitted(106, 43) Source(3, 43) + SourceIndex(4) --- >>> }; 1 >^^^^ @@ -2596,8 +2598,8 @@ sourceFile:../second/second_part2.ts 1 > > 2 > } -1 >Emitted(106, 5) Source(4, 5) + SourceIndex(4) -2 >Emitted(106, 6) Source(4, 6) + SourceIndex(4) +1 >Emitted(107, 5) Source(4, 5) + SourceIndex(4) +2 >Emitted(107, 6) Source(4, 6) + SourceIndex(4) --- >>> return C; 1->^^^^ @@ -2605,8 +2607,8 @@ sourceFile:../second/second_part2.ts 1-> > 2 > } -1->Emitted(107, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(107, 13) Source(5, 2) + SourceIndex(4) +1->Emitted(108, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(108, 13) Source(5, 2) + SourceIndex(4) --- >>>}()); 1 > @@ -2622,10 +2624,10 @@ sourceFile:../second/second_part2.ts > console.log("something got done"); > } > } -1 >Emitted(108, 1) Source(5, 1) + SourceIndex(4) -2 >Emitted(108, 2) Source(5, 2) + SourceIndex(4) -3 >Emitted(108, 2) Source(1, 1) + SourceIndex(4) -4 >Emitted(108, 6) Source(5, 2) + SourceIndex(4) +1 >Emitted(109, 1) Source(5, 1) + SourceIndex(4) +2 >Emitted(109, 2) Source(5, 2) + SourceIndex(4) +3 >Emitted(109, 2) Source(1, 1) + SourceIndex(4) +4 >Emitted(109, 6) Source(5, 2) + SourceIndex(4) --- >>>//# sourceMappingURL=second-output.js.map @@ -2654,7 +2656,7 @@ sourceFile:../second/second_part2.ts }, { "pos": 109, - "end": 3162, + "end": 3210, "kind": "text" } ] @@ -2735,7 +2737,7 @@ function f() { } ---------------------------------------------------------------------- -text: (109-3162) +text: (109-3210) var N; (function (N) { function f() { @@ -2746,8 +2748,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -3600,8 +3603,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -3697,7 +3701,7 @@ c.doSomething(); //# sourceMappingURL=third-output.js.map //// [/src/third/thirdjs/output/third-output.js.map] -{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} //// [/src/third/thirdjs/output/third-output.js.map.baseline.txt] =================================================================== @@ -3998,13 +4002,14 @@ sourceFile:../../../second/second_part1.ts >>> } 1->^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1->constructor() { 2 > } 1->Emitted(16, 5) Source(14, 35) + SourceIndex(3) 2 >Emitted(16, 6) Source(14, 36) + SourceIndex(3) --- ->>> normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> normalC_prototype.method = function () { }; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^ @@ -4018,13 +4023,13 @@ sourceFile:../../../second/second_part1.ts 3 > 4 > method() { 5 > } -1->Emitted(17, 5) Source(16, 19) + SourceIndex(3) -2 >Emitted(17, 29) Source(16, 25) + SourceIndex(3) -3 >Emitted(17, 32) Source(16, 19) + SourceIndex(3) -4 >Emitted(17, 46) Source(16, 30) + SourceIndex(3) -5 >Emitted(17, 47) Source(16, 31) + SourceIndex(3) +1->Emitted(18, 5) Source(16, 19) + SourceIndex(3) +2 >Emitted(18, 29) Source(16, 25) + SourceIndex(3) +3 >Emitted(18, 32) Source(16, 19) + SourceIndex(3) +4 >Emitted(18, 46) Source(16, 30) + SourceIndex(3) +5 >Emitted(18, 47) Source(16, 31) + SourceIndex(3) --- ->>> Object.defineProperty(normalC.prototype, "c", { +>>> Object.defineProperty(normalC_prototype, "c", { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -4032,9 +4037,9 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ 2 > get 3 > c -1->Emitted(18, 5) Source(17, 19) + SourceIndex(3) -2 >Emitted(18, 27) Source(17, 23) + SourceIndex(3) -3 >Emitted(18, 49) Source(17, 24) + SourceIndex(3) +1->Emitted(19, 5) Source(17, 19) + SourceIndex(3) +2 >Emitted(19, 27) Source(17, 23) + SourceIndex(3) +3 >Emitted(19, 49) Source(17, 24) + SourceIndex(3) --- >>> get: function () { return 10; }, 1 >^^^^^^^^^^^^^ @@ -4051,13 +4056,13 @@ sourceFile:../../../second/second_part1.ts 5 > ; 6 > 7 > } -1 >Emitted(19, 14) Source(17, 19) + SourceIndex(3) -2 >Emitted(19, 28) Source(17, 29) + SourceIndex(3) -3 >Emitted(19, 35) Source(17, 36) + SourceIndex(3) -4 >Emitted(19, 37) Source(17, 38) + SourceIndex(3) -5 >Emitted(19, 38) Source(17, 39) + SourceIndex(3) -6 >Emitted(19, 39) Source(17, 40) + SourceIndex(3) -7 >Emitted(19, 40) Source(17, 41) + SourceIndex(3) +1 >Emitted(20, 14) Source(17, 19) + SourceIndex(3) +2 >Emitted(20, 28) Source(17, 29) + SourceIndex(3) +3 >Emitted(20, 35) Source(17, 36) + SourceIndex(3) +4 >Emitted(20, 37) Source(17, 38) + SourceIndex(3) +5 >Emitted(20, 38) Source(17, 39) + SourceIndex(3) +6 >Emitted(20, 39) Source(17, 40) + SourceIndex(3) +7 >Emitted(20, 40) Source(17, 41) + SourceIndex(3) --- >>> set: function (val) { }, 1 >^^^^^^^^^^^^^ @@ -4071,11 +4076,11 @@ sourceFile:../../../second/second_part1.ts 3 > val: number 4 > ) { 5 > } -1 >Emitted(20, 14) Source(18, 19) + SourceIndex(3) -2 >Emitted(20, 24) Source(18, 25) + SourceIndex(3) -3 >Emitted(20, 27) Source(18, 36) + SourceIndex(3) -4 >Emitted(20, 31) Source(18, 40) + SourceIndex(3) -5 >Emitted(20, 32) Source(18, 41) + SourceIndex(3) +1 >Emitted(21, 14) Source(18, 19) + SourceIndex(3) +2 >Emitted(21, 24) Source(18, 25) + SourceIndex(3) +3 >Emitted(21, 27) Source(18, 36) + SourceIndex(3) +4 >Emitted(21, 31) Source(18, 40) + SourceIndex(3) +5 >Emitted(21, 32) Source(18, 41) + SourceIndex(3) --- >>> enumerable: false, >>> configurable: true @@ -4083,7 +4088,7 @@ sourceFile:../../../second/second_part1.ts 1 >^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(23, 8) Source(17, 41) + SourceIndex(3) +1 >Emitted(24, 8) Source(17, 41) + SourceIndex(3) --- >>> return normalC; 1->^^^^ @@ -4092,8 +4097,8 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ set c(val: number) { } > 2 > } -1->Emitted(24, 5) Source(19, 1) + SourceIndex(3) -2 >Emitted(24, 19) Source(19, 2) + SourceIndex(3) +1->Emitted(25, 5) Source(19, 1) + SourceIndex(3) +2 >Emitted(25, 19) Source(19, 2) + SourceIndex(3) --- >>>}()); 1 > @@ -4111,10 +4116,10 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ get c() { return 10; } > /*@internal*/ set c(val: number) { } > } -1 >Emitted(25, 1) Source(19, 1) + SourceIndex(3) -2 >Emitted(25, 2) Source(19, 2) + SourceIndex(3) -3 >Emitted(25, 2) Source(13, 1) + SourceIndex(3) -4 >Emitted(25, 6) Source(19, 2) + SourceIndex(3) +1 >Emitted(26, 1) Source(19, 1) + SourceIndex(3) +2 >Emitted(26, 2) Source(19, 2) + SourceIndex(3) +3 >Emitted(26, 2) Source(13, 1) + SourceIndex(3) +4 >Emitted(26, 6) Source(19, 2) + SourceIndex(3) --- >>>var normalN; 1-> @@ -4136,10 +4141,10 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1->Emitted(26, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(26, 5) Source(20, 11) + SourceIndex(3) -3 >Emitted(26, 12) Source(20, 18) + SourceIndex(3) -4 >Emitted(26, 13) Source(29, 2) + SourceIndex(3) +1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(27, 5) Source(20, 11) + SourceIndex(3) +3 >Emitted(27, 12) Source(20, 18) + SourceIndex(3) +4 >Emitted(27, 13) Source(29, 2) + SourceIndex(3) --- >>>(function (normalN) { 1-> @@ -4149,22 +4154,22 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > normalN -1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(27, 12) Source(20, 11) + SourceIndex(3) -3 >Emitted(27, 19) Source(20, 18) + SourceIndex(3) +1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(28, 12) Source(20, 11) + SourceIndex(3) +3 >Emitted(28, 19) Source(20, 18) + SourceIndex(3) --- >>> var C = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { > /*@internal*/ -1->Emitted(28, 5) Source(21, 19) + SourceIndex(3) +1->Emitted(29, 5) Source(21, 19) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(29, 9) Source(21, 19) + SourceIndex(3) +1->Emitted(30, 9) Source(21, 19) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -4172,16 +4177,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(30, 9) Source(21, 36) + SourceIndex(3) -2 >Emitted(30, 10) Source(21, 37) + SourceIndex(3) +1->Emitted(31, 9) Source(21, 36) + SourceIndex(3) +2 >Emitted(31, 10) Source(21, 37) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(31, 9) Source(21, 36) + SourceIndex(3) -2 >Emitted(31, 17) Source(21, 37) + SourceIndex(3) +1->Emitted(32, 9) Source(21, 36) + SourceIndex(3) +2 >Emitted(32, 17) Source(21, 37) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -4193,10 +4198,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(32, 5) Source(21, 36) + SourceIndex(3) -2 >Emitted(32, 6) Source(21, 37) + SourceIndex(3) -3 >Emitted(32, 6) Source(21, 19) + SourceIndex(3) -4 >Emitted(32, 10) Source(21, 37) + SourceIndex(3) +1 >Emitted(33, 5) Source(21, 36) + SourceIndex(3) +2 >Emitted(33, 6) Source(21, 37) + SourceIndex(3) +3 >Emitted(33, 6) Source(21, 19) + SourceIndex(3) +4 >Emitted(33, 10) Source(21, 37) + SourceIndex(3) --- >>> normalN.C = C; 1->^^^^ @@ -4208,10 +4213,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > { } 4 > -1->Emitted(33, 5) Source(21, 32) + SourceIndex(3) -2 >Emitted(33, 14) Source(21, 33) + SourceIndex(3) -3 >Emitted(33, 18) Source(21, 37) + SourceIndex(3) -4 >Emitted(33, 19) Source(21, 37) + SourceIndex(3) +1->Emitted(34, 5) Source(21, 32) + SourceIndex(3) +2 >Emitted(34, 14) Source(21, 33) + SourceIndex(3) +3 >Emitted(34, 18) Source(21, 37) + SourceIndex(3) +4 >Emitted(34, 19) Source(21, 37) + SourceIndex(3) --- >>> function foo() { } 1->^^^^ @@ -4226,11 +4231,11 @@ sourceFile:../../../second/second_part1.ts 3 > foo 4 > () { 5 > } -1->Emitted(34, 5) Source(22, 19) + SourceIndex(3) -2 >Emitted(34, 14) Source(22, 35) + SourceIndex(3) -3 >Emitted(34, 17) Source(22, 38) + SourceIndex(3) -4 >Emitted(34, 22) Source(22, 42) + SourceIndex(3) -5 >Emitted(34, 23) Source(22, 43) + SourceIndex(3) +1->Emitted(35, 5) Source(22, 19) + SourceIndex(3) +2 >Emitted(35, 14) Source(22, 35) + SourceIndex(3) +3 >Emitted(35, 17) Source(22, 38) + SourceIndex(3) +4 >Emitted(35, 22) Source(22, 42) + SourceIndex(3) +5 >Emitted(35, 23) Source(22, 43) + SourceIndex(3) --- >>> normalN.foo = foo; 1->^^^^ @@ -4242,10 +4247,10 @@ sourceFile:../../../second/second_part1.ts 2 > foo 3 > () {} 4 > -1->Emitted(35, 5) Source(22, 35) + SourceIndex(3) -2 >Emitted(35, 16) Source(22, 38) + SourceIndex(3) -3 >Emitted(35, 22) Source(22, 43) + SourceIndex(3) -4 >Emitted(35, 23) Source(22, 43) + SourceIndex(3) +1->Emitted(36, 5) Source(22, 35) + SourceIndex(3) +2 >Emitted(36, 16) Source(22, 38) + SourceIndex(3) +3 >Emitted(36, 22) Source(22, 43) + SourceIndex(3) +4 >Emitted(36, 23) Source(22, 43) + SourceIndex(3) --- >>> var someNamespace; 1->^^^^ @@ -4258,10 +4263,10 @@ sourceFile:../../../second/second_part1.ts 2 > export namespace 3 > someNamespace 4 > { export class C {} } -1->Emitted(36, 5) Source(23, 19) + SourceIndex(3) -2 >Emitted(36, 9) Source(23, 36) + SourceIndex(3) -3 >Emitted(36, 22) Source(23, 49) + SourceIndex(3) -4 >Emitted(36, 23) Source(23, 71) + SourceIndex(3) +1->Emitted(37, 5) Source(23, 19) + SourceIndex(3) +2 >Emitted(37, 9) Source(23, 36) + SourceIndex(3) +3 >Emitted(37, 22) Source(23, 49) + SourceIndex(3) +4 >Emitted(37, 23) Source(23, 71) + SourceIndex(3) --- >>> (function (someNamespace) { 1->^^^^ @@ -4271,21 +4276,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > export namespace 3 > someNamespace -1->Emitted(37, 5) Source(23, 19) + SourceIndex(3) -2 >Emitted(37, 16) Source(23, 36) + SourceIndex(3) -3 >Emitted(37, 29) Source(23, 49) + SourceIndex(3) +1->Emitted(38, 5) Source(23, 19) + SourceIndex(3) +2 >Emitted(38, 16) Source(23, 36) + SourceIndex(3) +3 >Emitted(38, 29) Source(23, 49) + SourceIndex(3) --- >>> var C = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(38, 9) Source(23, 52) + SourceIndex(3) +1->Emitted(39, 9) Source(23, 52) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(39, 13) Source(23, 52) + SourceIndex(3) +1->Emitted(40, 13) Source(23, 52) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -4293,16 +4298,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(40, 13) Source(23, 68) + SourceIndex(3) -2 >Emitted(40, 14) Source(23, 69) + SourceIndex(3) +1->Emitted(41, 13) Source(23, 68) + SourceIndex(3) +2 >Emitted(41, 14) Source(23, 69) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(41, 13) Source(23, 68) + SourceIndex(3) -2 >Emitted(41, 21) Source(23, 69) + SourceIndex(3) +1->Emitted(42, 13) Source(23, 68) + SourceIndex(3) +2 >Emitted(42, 21) Source(23, 69) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -4314,10 +4319,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(42, 9) Source(23, 68) + SourceIndex(3) -2 >Emitted(42, 10) Source(23, 69) + SourceIndex(3) -3 >Emitted(42, 10) Source(23, 52) + SourceIndex(3) -4 >Emitted(42, 14) Source(23, 69) + SourceIndex(3) +1 >Emitted(43, 9) Source(23, 68) + SourceIndex(3) +2 >Emitted(43, 10) Source(23, 69) + SourceIndex(3) +3 >Emitted(43, 10) Source(23, 52) + SourceIndex(3) +4 >Emitted(43, 14) Source(23, 69) + SourceIndex(3) --- >>> someNamespace.C = C; 1->^^^^^^^^ @@ -4329,10 +4334,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > {} 4 > -1->Emitted(43, 9) Source(23, 65) + SourceIndex(3) -2 >Emitted(43, 24) Source(23, 66) + SourceIndex(3) -3 >Emitted(43, 28) Source(23, 69) + SourceIndex(3) -4 >Emitted(43, 29) Source(23, 69) + SourceIndex(3) +1->Emitted(44, 9) Source(23, 65) + SourceIndex(3) +2 >Emitted(44, 24) Source(23, 66) + SourceIndex(3) +3 >Emitted(44, 28) Source(23, 69) + SourceIndex(3) +4 >Emitted(44, 29) Source(23, 69) + SourceIndex(3) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^ @@ -4353,15 +4358,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(44, 5) Source(23, 70) + SourceIndex(3) -2 >Emitted(44, 6) Source(23, 71) + SourceIndex(3) -3 >Emitted(44, 8) Source(23, 36) + SourceIndex(3) -4 >Emitted(44, 21) Source(23, 49) + SourceIndex(3) -5 >Emitted(44, 24) Source(23, 36) + SourceIndex(3) -6 >Emitted(44, 45) Source(23, 49) + SourceIndex(3) -7 >Emitted(44, 50) Source(23, 36) + SourceIndex(3) -8 >Emitted(44, 71) Source(23, 49) + SourceIndex(3) -9 >Emitted(44, 79) Source(23, 71) + SourceIndex(3) +1->Emitted(45, 5) Source(23, 70) + SourceIndex(3) +2 >Emitted(45, 6) Source(23, 71) + SourceIndex(3) +3 >Emitted(45, 8) Source(23, 36) + SourceIndex(3) +4 >Emitted(45, 21) Source(23, 49) + SourceIndex(3) +5 >Emitted(45, 24) Source(23, 36) + SourceIndex(3) +6 >Emitted(45, 45) Source(23, 49) + SourceIndex(3) +7 >Emitted(45, 50) Source(23, 36) + SourceIndex(3) +8 >Emitted(45, 71) Source(23, 49) + SourceIndex(3) +9 >Emitted(45, 79) Source(23, 71) + SourceIndex(3) --- >>> var someOther; 1 >^^^^ @@ -4374,10 +4379,10 @@ sourceFile:../../../second/second_part1.ts 2 > export namespace 3 > someOther 4 > .something { export class someClass {} } -1 >Emitted(45, 5) Source(24, 19) + SourceIndex(3) -2 >Emitted(45, 9) Source(24, 36) + SourceIndex(3) -3 >Emitted(45, 18) Source(24, 45) + SourceIndex(3) -4 >Emitted(45, 19) Source(24, 85) + SourceIndex(3) +1 >Emitted(46, 5) Source(24, 19) + SourceIndex(3) +2 >Emitted(46, 9) Source(24, 36) + SourceIndex(3) +3 >Emitted(46, 18) Source(24, 45) + SourceIndex(3) +4 >Emitted(46, 19) Source(24, 85) + SourceIndex(3) --- >>> (function (someOther) { 1->^^^^ @@ -4386,9 +4391,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > export namespace 3 > someOther -1->Emitted(46, 5) Source(24, 19) + SourceIndex(3) -2 >Emitted(46, 16) Source(24, 36) + SourceIndex(3) -3 >Emitted(46, 25) Source(24, 45) + SourceIndex(3) +1->Emitted(47, 5) Source(24, 19) + SourceIndex(3) +2 >Emitted(47, 16) Source(24, 36) + SourceIndex(3) +3 >Emitted(47, 25) Source(24, 45) + SourceIndex(3) --- >>> var something; 1 >^^^^^^^^ @@ -4400,10 +4405,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(47, 9) Source(24, 46) + SourceIndex(3) -2 >Emitted(47, 13) Source(24, 46) + SourceIndex(3) -3 >Emitted(47, 22) Source(24, 55) + SourceIndex(3) -4 >Emitted(47, 23) Source(24, 85) + SourceIndex(3) +1 >Emitted(48, 9) Source(24, 46) + SourceIndex(3) +2 >Emitted(48, 13) Source(24, 46) + SourceIndex(3) +3 >Emitted(48, 22) Source(24, 55) + SourceIndex(3) +4 >Emitted(48, 23) Source(24, 85) + SourceIndex(3) --- >>> (function (something) { 1->^^^^^^^^ @@ -4413,21 +4418,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(48, 9) Source(24, 46) + SourceIndex(3) -2 >Emitted(48, 20) Source(24, 46) + SourceIndex(3) -3 >Emitted(48, 29) Source(24, 55) + SourceIndex(3) +1->Emitted(49, 9) Source(24, 46) + SourceIndex(3) +2 >Emitted(49, 20) Source(24, 46) + SourceIndex(3) +3 >Emitted(49, 29) Source(24, 55) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(49, 13) Source(24, 58) + SourceIndex(3) +1->Emitted(50, 13) Source(24, 58) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(50, 17) Source(24, 58) + SourceIndex(3) +1->Emitted(51, 17) Source(24, 58) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -4435,16 +4440,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(51, 17) Source(24, 82) + SourceIndex(3) -2 >Emitted(51, 18) Source(24, 83) + SourceIndex(3) +1->Emitted(52, 17) Source(24, 82) + SourceIndex(3) +2 >Emitted(52, 18) Source(24, 83) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(52, 17) Source(24, 82) + SourceIndex(3) -2 >Emitted(52, 33) Source(24, 83) + SourceIndex(3) +1->Emitted(53, 17) Source(24, 82) + SourceIndex(3) +2 >Emitted(53, 33) Source(24, 83) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -4456,10 +4461,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(53, 13) Source(24, 82) + SourceIndex(3) -2 >Emitted(53, 14) Source(24, 83) + SourceIndex(3) -3 >Emitted(53, 14) Source(24, 58) + SourceIndex(3) -4 >Emitted(53, 18) Source(24, 83) + SourceIndex(3) +1 >Emitted(54, 13) Source(24, 82) + SourceIndex(3) +2 >Emitted(54, 14) Source(24, 83) + SourceIndex(3) +3 >Emitted(54, 14) Source(24, 58) + SourceIndex(3) +4 >Emitted(54, 18) Source(24, 83) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -4471,10 +4476,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(54, 13) Source(24, 71) + SourceIndex(3) -2 >Emitted(54, 32) Source(24, 80) + SourceIndex(3) -3 >Emitted(54, 44) Source(24, 83) + SourceIndex(3) -4 >Emitted(54, 45) Source(24, 83) + SourceIndex(3) +1->Emitted(55, 13) Source(24, 71) + SourceIndex(3) +2 >Emitted(55, 32) Source(24, 80) + SourceIndex(3) +3 >Emitted(55, 44) Source(24, 83) + SourceIndex(3) +4 >Emitted(55, 45) Source(24, 83) + SourceIndex(3) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^ @@ -4495,15 +4500,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(55, 9) Source(24, 84) + SourceIndex(3) -2 >Emitted(55, 10) Source(24, 85) + SourceIndex(3) -3 >Emitted(55, 12) Source(24, 46) + SourceIndex(3) -4 >Emitted(55, 21) Source(24, 55) + SourceIndex(3) -5 >Emitted(55, 24) Source(24, 46) + SourceIndex(3) -6 >Emitted(55, 43) Source(24, 55) + SourceIndex(3) -7 >Emitted(55, 48) Source(24, 46) + SourceIndex(3) -8 >Emitted(55, 67) Source(24, 55) + SourceIndex(3) -9 >Emitted(55, 75) Source(24, 85) + SourceIndex(3) +1->Emitted(56, 9) Source(24, 84) + SourceIndex(3) +2 >Emitted(56, 10) Source(24, 85) + SourceIndex(3) +3 >Emitted(56, 12) Source(24, 46) + SourceIndex(3) +4 >Emitted(56, 21) Source(24, 55) + SourceIndex(3) +5 >Emitted(56, 24) Source(24, 46) + SourceIndex(3) +6 >Emitted(56, 43) Source(24, 55) + SourceIndex(3) +7 >Emitted(56, 48) Source(24, 46) + SourceIndex(3) +8 >Emitted(56, 67) Source(24, 55) + SourceIndex(3) +9 >Emitted(56, 75) Source(24, 85) + SourceIndex(3) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^ @@ -4524,15 +4529,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(56, 5) Source(24, 84) + SourceIndex(3) -2 >Emitted(56, 6) Source(24, 85) + SourceIndex(3) -3 >Emitted(56, 8) Source(24, 36) + SourceIndex(3) -4 >Emitted(56, 17) Source(24, 45) + SourceIndex(3) -5 >Emitted(56, 20) Source(24, 36) + SourceIndex(3) -6 >Emitted(56, 37) Source(24, 45) + SourceIndex(3) -7 >Emitted(56, 42) Source(24, 36) + SourceIndex(3) -8 >Emitted(56, 59) Source(24, 45) + SourceIndex(3) -9 >Emitted(56, 67) Source(24, 85) + SourceIndex(3) +1 >Emitted(57, 5) Source(24, 84) + SourceIndex(3) +2 >Emitted(57, 6) Source(24, 85) + SourceIndex(3) +3 >Emitted(57, 8) Source(24, 36) + SourceIndex(3) +4 >Emitted(57, 17) Source(24, 45) + SourceIndex(3) +5 >Emitted(57, 20) Source(24, 36) + SourceIndex(3) +6 >Emitted(57, 37) Source(24, 45) + SourceIndex(3) +7 >Emitted(57, 42) Source(24, 36) + SourceIndex(3) +8 >Emitted(57, 59) Source(24, 45) + SourceIndex(3) +9 >Emitted(57, 67) Source(24, 85) + SourceIndex(3) --- >>> normalN.someImport = someNamespace.C; 1 >^^^^ @@ -4550,13 +4555,13 @@ sourceFile:../../../second/second_part1.ts 5 > . 6 > C 7 > ; -1 >Emitted(57, 5) Source(25, 33) + SourceIndex(3) -2 >Emitted(57, 23) Source(25, 43) + SourceIndex(3) -3 >Emitted(57, 26) Source(25, 46) + SourceIndex(3) -4 >Emitted(57, 39) Source(25, 59) + SourceIndex(3) -5 >Emitted(57, 40) Source(25, 60) + SourceIndex(3) -6 >Emitted(57, 41) Source(25, 61) + SourceIndex(3) -7 >Emitted(57, 42) Source(25, 62) + SourceIndex(3) +1 >Emitted(58, 5) Source(25, 33) + SourceIndex(3) +2 >Emitted(58, 23) Source(25, 43) + SourceIndex(3) +3 >Emitted(58, 26) Source(25, 46) + SourceIndex(3) +4 >Emitted(58, 39) Source(25, 59) + SourceIndex(3) +5 >Emitted(58, 40) Source(25, 60) + SourceIndex(3) +6 >Emitted(58, 41) Source(25, 61) + SourceIndex(3) +7 >Emitted(58, 42) Source(25, 62) + SourceIndex(3) --- >>> normalN.internalConst = 10; 1 >^^^^ @@ -4571,11 +4576,11 @@ sourceFile:../../../second/second_part1.ts 3 > = 4 > 10 5 > ; -1 >Emitted(58, 5) Source(27, 32) + SourceIndex(3) -2 >Emitted(58, 26) Source(27, 45) + SourceIndex(3) -3 >Emitted(58, 29) Source(27, 48) + SourceIndex(3) -4 >Emitted(58, 31) Source(27, 50) + SourceIndex(3) -5 >Emitted(58, 32) Source(27, 51) + SourceIndex(3) +1 >Emitted(59, 5) Source(27, 32) + SourceIndex(3) +2 >Emitted(59, 26) Source(27, 45) + SourceIndex(3) +3 >Emitted(59, 29) Source(27, 48) + SourceIndex(3) +4 >Emitted(59, 31) Source(27, 50) + SourceIndex(3) +5 >Emitted(59, 32) Source(27, 51) + SourceIndex(3) --- >>> var internalEnum; 1 >^^^^ @@ -4586,9 +4591,9 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ 2 > export enum 3 > internalEnum { a, b, c } -1 >Emitted(59, 5) Source(28, 19) + SourceIndex(3) -2 >Emitted(59, 9) Source(28, 31) + SourceIndex(3) -3 >Emitted(59, 21) Source(28, 55) + SourceIndex(3) +1 >Emitted(60, 5) Source(28, 19) + SourceIndex(3) +2 >Emitted(60, 9) Source(28, 31) + SourceIndex(3) +3 >Emitted(60, 21) Source(28, 55) + SourceIndex(3) --- >>> (function (internalEnum) { 1->^^^^ @@ -4598,9 +4603,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > export enum 3 > internalEnum -1->Emitted(60, 5) Source(28, 19) + SourceIndex(3) -2 >Emitted(60, 16) Source(28, 31) + SourceIndex(3) -3 >Emitted(60, 28) Source(28, 43) + SourceIndex(3) +1->Emitted(61, 5) Source(28, 19) + SourceIndex(3) +2 >Emitted(61, 16) Source(28, 31) + SourceIndex(3) +3 >Emitted(61, 28) Source(28, 43) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -4610,9 +4615,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(61, 9) Source(28, 46) + SourceIndex(3) -2 >Emitted(61, 50) Source(28, 47) + SourceIndex(3) -3 >Emitted(61, 51) Source(28, 47) + SourceIndex(3) +1->Emitted(62, 9) Source(28, 46) + SourceIndex(3) +2 >Emitted(62, 50) Source(28, 47) + SourceIndex(3) +3 >Emitted(62, 51) Source(28, 47) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -4622,9 +4627,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(62, 9) Source(28, 49) + SourceIndex(3) -2 >Emitted(62, 50) Source(28, 50) + SourceIndex(3) -3 >Emitted(62, 51) Source(28, 50) + SourceIndex(3) +1->Emitted(63, 9) Source(28, 49) + SourceIndex(3) +2 >Emitted(63, 50) Source(28, 50) + SourceIndex(3) +3 >Emitted(63, 51) Source(28, 50) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -4634,9 +4639,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(63, 9) Source(28, 52) + SourceIndex(3) -2 >Emitted(63, 50) Source(28, 53) + SourceIndex(3) -3 >Emitted(63, 51) Source(28, 53) + SourceIndex(3) +1->Emitted(64, 9) Source(28, 52) + SourceIndex(3) +2 >Emitted(64, 50) Source(28, 53) + SourceIndex(3) +3 >Emitted(64, 51) Source(28, 53) + SourceIndex(3) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^ @@ -4657,15 +4662,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(64, 5) Source(28, 54) + SourceIndex(3) -2 >Emitted(64, 6) Source(28, 55) + SourceIndex(3) -3 >Emitted(64, 8) Source(28, 31) + SourceIndex(3) -4 >Emitted(64, 20) Source(28, 43) + SourceIndex(3) -5 >Emitted(64, 23) Source(28, 31) + SourceIndex(3) -6 >Emitted(64, 43) Source(28, 43) + SourceIndex(3) -7 >Emitted(64, 48) Source(28, 31) + SourceIndex(3) -8 >Emitted(64, 68) Source(28, 43) + SourceIndex(3) -9 >Emitted(64, 76) Source(28, 55) + SourceIndex(3) +1->Emitted(65, 5) Source(28, 54) + SourceIndex(3) +2 >Emitted(65, 6) Source(28, 55) + SourceIndex(3) +3 >Emitted(65, 8) Source(28, 31) + SourceIndex(3) +4 >Emitted(65, 20) Source(28, 43) + SourceIndex(3) +5 >Emitted(65, 23) Source(28, 31) + SourceIndex(3) +6 >Emitted(65, 43) Source(28, 43) + SourceIndex(3) +7 >Emitted(65, 48) Source(28, 31) + SourceIndex(3) +8 >Emitted(65, 68) Source(28, 43) + SourceIndex(3) +9 >Emitted(65, 76) Source(28, 55) + SourceIndex(3) --- >>>})(normalN || (normalN = {})); 1 > @@ -4693,26 +4698,26 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(65, 1) Source(29, 1) + SourceIndex(3) -2 >Emitted(65, 2) Source(29, 2) + SourceIndex(3) -3 >Emitted(65, 4) Source(20, 11) + SourceIndex(3) -4 >Emitted(65, 11) Source(20, 18) + SourceIndex(3) -5 >Emitted(65, 16) Source(20, 11) + SourceIndex(3) -6 >Emitted(65, 23) Source(20, 18) + SourceIndex(3) -7 >Emitted(65, 31) Source(29, 2) + SourceIndex(3) +1 >Emitted(66, 1) Source(29, 1) + SourceIndex(3) +2 >Emitted(66, 2) Source(29, 2) + SourceIndex(3) +3 >Emitted(66, 4) Source(20, 11) + SourceIndex(3) +4 >Emitted(66, 11) Source(20, 18) + SourceIndex(3) +5 >Emitted(66, 16) Source(20, 11) + SourceIndex(3) +6 >Emitted(66, 23) Source(20, 18) + SourceIndex(3) +7 >Emitted(66, 31) Source(29, 2) + SourceIndex(3) --- >>>var internalC = (function () { 1-> 2 >^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> >/*@internal*/ -1->Emitted(66, 1) Source(30, 15) + SourceIndex(3) +1->Emitted(67, 1) Source(30, 15) + SourceIndex(3) --- >>> function internalC() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(67, 5) Source(30, 15) + SourceIndex(3) +1->Emitted(68, 5) Source(30, 15) + SourceIndex(3) --- >>> } 1->^^^^ @@ -4720,16 +4725,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->class internalC { 2 > } -1->Emitted(68, 5) Source(30, 32) + SourceIndex(3) -2 >Emitted(68, 6) Source(30, 33) + SourceIndex(3) +1->Emitted(69, 5) Source(30, 32) + SourceIndex(3) +2 >Emitted(69, 6) Source(30, 33) + SourceIndex(3) --- >>> return internalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(69, 5) Source(30, 32) + SourceIndex(3) -2 >Emitted(69, 21) Source(30, 33) + SourceIndex(3) +1->Emitted(70, 5) Source(30, 32) + SourceIndex(3) +2 >Emitted(70, 21) Source(30, 33) + SourceIndex(3) --- >>>}()); 1 > @@ -4741,10 +4746,10 @@ sourceFile:../../../second/second_part1.ts 2 >} 3 > 4 > class internalC {} -1 >Emitted(70, 1) Source(30, 32) + SourceIndex(3) -2 >Emitted(70, 2) Source(30, 33) + SourceIndex(3) -3 >Emitted(70, 2) Source(30, 15) + SourceIndex(3) -4 >Emitted(70, 6) Source(30, 33) + SourceIndex(3) +1 >Emitted(71, 1) Source(30, 32) + SourceIndex(3) +2 >Emitted(71, 2) Source(30, 33) + SourceIndex(3) +3 >Emitted(71, 2) Source(30, 15) + SourceIndex(3) +4 >Emitted(71, 6) Source(30, 33) + SourceIndex(3) --- >>>function internalfoo() { } 1-> @@ -4758,11 +4763,11 @@ sourceFile:../../../second/second_part1.ts 3 > internalfoo 4 > () { 5 > } -1->Emitted(71, 1) Source(31, 15) + SourceIndex(3) -2 >Emitted(71, 10) Source(31, 24) + SourceIndex(3) -3 >Emitted(71, 21) Source(31, 35) + SourceIndex(3) -4 >Emitted(71, 26) Source(31, 39) + SourceIndex(3) -5 >Emitted(71, 27) Source(31, 40) + SourceIndex(3) +1->Emitted(72, 1) Source(31, 15) + SourceIndex(3) +2 >Emitted(72, 10) Source(31, 24) + SourceIndex(3) +3 >Emitted(72, 21) Source(31, 35) + SourceIndex(3) +4 >Emitted(72, 26) Source(31, 39) + SourceIndex(3) +5 >Emitted(72, 27) Source(31, 40) + SourceIndex(3) --- >>>var internalNamespace; 1 > @@ -4775,10 +4780,10 @@ sourceFile:../../../second/second_part1.ts 2 >namespace 3 > internalNamespace 4 > { export class someClass {} } -1 >Emitted(72, 1) Source(32, 15) + SourceIndex(3) -2 >Emitted(72, 5) Source(32, 25) + SourceIndex(3) -3 >Emitted(72, 22) Source(32, 42) + SourceIndex(3) -4 >Emitted(72, 23) Source(32, 72) + SourceIndex(3) +1 >Emitted(73, 1) Source(32, 15) + SourceIndex(3) +2 >Emitted(73, 5) Source(32, 25) + SourceIndex(3) +3 >Emitted(73, 22) Source(32, 42) + SourceIndex(3) +4 >Emitted(73, 23) Source(32, 72) + SourceIndex(3) --- >>>(function (internalNamespace) { 1-> @@ -4788,21 +4793,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > internalNamespace -1->Emitted(73, 1) Source(32, 15) + SourceIndex(3) -2 >Emitted(73, 12) Source(32, 25) + SourceIndex(3) -3 >Emitted(73, 29) Source(32, 42) + SourceIndex(3) +1->Emitted(74, 1) Source(32, 15) + SourceIndex(3) +2 >Emitted(74, 12) Source(32, 25) + SourceIndex(3) +3 >Emitted(74, 29) Source(32, 42) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(74, 5) Source(32, 45) + SourceIndex(3) +1->Emitted(75, 5) Source(32, 45) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(75, 9) Source(32, 45) + SourceIndex(3) +1->Emitted(76, 9) Source(32, 45) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -4810,16 +4815,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(76, 9) Source(32, 69) + SourceIndex(3) -2 >Emitted(76, 10) Source(32, 70) + SourceIndex(3) +1->Emitted(77, 9) Source(32, 69) + SourceIndex(3) +2 >Emitted(77, 10) Source(32, 70) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(77, 9) Source(32, 69) + SourceIndex(3) -2 >Emitted(77, 25) Source(32, 70) + SourceIndex(3) +1->Emitted(78, 9) Source(32, 69) + SourceIndex(3) +2 >Emitted(78, 25) Source(32, 70) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -4831,10 +4836,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(78, 5) Source(32, 69) + SourceIndex(3) -2 >Emitted(78, 6) Source(32, 70) + SourceIndex(3) -3 >Emitted(78, 6) Source(32, 45) + SourceIndex(3) -4 >Emitted(78, 10) Source(32, 70) + SourceIndex(3) +1 >Emitted(79, 5) Source(32, 69) + SourceIndex(3) +2 >Emitted(79, 6) Source(32, 70) + SourceIndex(3) +3 >Emitted(79, 6) Source(32, 45) + SourceIndex(3) +4 >Emitted(79, 10) Source(32, 70) + SourceIndex(3) --- >>> internalNamespace.someClass = someClass; 1->^^^^ @@ -4846,10 +4851,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(79, 5) Source(32, 58) + SourceIndex(3) -2 >Emitted(79, 32) Source(32, 67) + SourceIndex(3) -3 >Emitted(79, 44) Source(32, 70) + SourceIndex(3) -4 >Emitted(79, 45) Source(32, 70) + SourceIndex(3) +1->Emitted(80, 5) Source(32, 58) + SourceIndex(3) +2 >Emitted(80, 32) Source(32, 67) + SourceIndex(3) +3 >Emitted(80, 44) Source(32, 70) + SourceIndex(3) +4 >Emitted(80, 45) Source(32, 70) + SourceIndex(3) --- >>>})(internalNamespace || (internalNamespace = {})); 1-> @@ -4866,13 +4871,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalNamespace 7 > { export class someClass {} } -1->Emitted(80, 1) Source(32, 71) + SourceIndex(3) -2 >Emitted(80, 2) Source(32, 72) + SourceIndex(3) -3 >Emitted(80, 4) Source(32, 25) + SourceIndex(3) -4 >Emitted(80, 21) Source(32, 42) + SourceIndex(3) -5 >Emitted(80, 26) Source(32, 25) + SourceIndex(3) -6 >Emitted(80, 43) Source(32, 42) + SourceIndex(3) -7 >Emitted(80, 51) Source(32, 72) + SourceIndex(3) +1->Emitted(81, 1) Source(32, 71) + SourceIndex(3) +2 >Emitted(81, 2) Source(32, 72) + SourceIndex(3) +3 >Emitted(81, 4) Source(32, 25) + SourceIndex(3) +4 >Emitted(81, 21) Source(32, 42) + SourceIndex(3) +5 >Emitted(81, 26) Source(32, 25) + SourceIndex(3) +6 >Emitted(81, 43) Source(32, 42) + SourceIndex(3) +7 >Emitted(81, 51) Source(32, 72) + SourceIndex(3) --- >>>var internalOther; 1 > @@ -4885,10 +4890,10 @@ sourceFile:../../../second/second_part1.ts 2 >namespace 3 > internalOther 4 > .something { export class someClass {} } -1 >Emitted(81, 1) Source(33, 15) + SourceIndex(3) -2 >Emitted(81, 5) Source(33, 25) + SourceIndex(3) -3 >Emitted(81, 18) Source(33, 38) + SourceIndex(3) -4 >Emitted(81, 19) Source(33, 78) + SourceIndex(3) +1 >Emitted(82, 1) Source(33, 15) + SourceIndex(3) +2 >Emitted(82, 5) Source(33, 25) + SourceIndex(3) +3 >Emitted(82, 18) Source(33, 38) + SourceIndex(3) +4 >Emitted(82, 19) Source(33, 78) + SourceIndex(3) --- >>>(function (internalOther) { 1-> @@ -4897,9 +4902,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > internalOther -1->Emitted(82, 1) Source(33, 15) + SourceIndex(3) -2 >Emitted(82, 12) Source(33, 25) + SourceIndex(3) -3 >Emitted(82, 25) Source(33, 38) + SourceIndex(3) +1->Emitted(83, 1) Source(33, 15) + SourceIndex(3) +2 >Emitted(83, 12) Source(33, 25) + SourceIndex(3) +3 >Emitted(83, 25) Source(33, 38) + SourceIndex(3) --- >>> var something; 1 >^^^^ @@ -4911,10 +4916,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(83, 5) Source(33, 39) + SourceIndex(3) -2 >Emitted(83, 9) Source(33, 39) + SourceIndex(3) -3 >Emitted(83, 18) Source(33, 48) + SourceIndex(3) -4 >Emitted(83, 19) Source(33, 78) + SourceIndex(3) +1 >Emitted(84, 5) Source(33, 39) + SourceIndex(3) +2 >Emitted(84, 9) Source(33, 39) + SourceIndex(3) +3 >Emitted(84, 18) Source(33, 48) + SourceIndex(3) +4 >Emitted(84, 19) Source(33, 78) + SourceIndex(3) --- >>> (function (something) { 1->^^^^ @@ -4924,21 +4929,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(84, 5) Source(33, 39) + SourceIndex(3) -2 >Emitted(84, 16) Source(33, 39) + SourceIndex(3) -3 >Emitted(84, 25) Source(33, 48) + SourceIndex(3) +1->Emitted(85, 5) Source(33, 39) + SourceIndex(3) +2 >Emitted(85, 16) Source(33, 39) + SourceIndex(3) +3 >Emitted(85, 25) Source(33, 48) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(85, 9) Source(33, 51) + SourceIndex(3) +1->Emitted(86, 9) Source(33, 51) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(86, 13) Source(33, 51) + SourceIndex(3) +1->Emitted(87, 13) Source(33, 51) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -4946,16 +4951,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(87, 13) Source(33, 75) + SourceIndex(3) -2 >Emitted(87, 14) Source(33, 76) + SourceIndex(3) +1->Emitted(88, 13) Source(33, 75) + SourceIndex(3) +2 >Emitted(88, 14) Source(33, 76) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(88, 13) Source(33, 75) + SourceIndex(3) -2 >Emitted(88, 29) Source(33, 76) + SourceIndex(3) +1->Emitted(89, 13) Source(33, 75) + SourceIndex(3) +2 >Emitted(89, 29) Source(33, 76) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -4967,10 +4972,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(89, 9) Source(33, 75) + SourceIndex(3) -2 >Emitted(89, 10) Source(33, 76) + SourceIndex(3) -3 >Emitted(89, 10) Source(33, 51) + SourceIndex(3) -4 >Emitted(89, 14) Source(33, 76) + SourceIndex(3) +1 >Emitted(90, 9) Source(33, 75) + SourceIndex(3) +2 >Emitted(90, 10) Source(33, 76) + SourceIndex(3) +3 >Emitted(90, 10) Source(33, 51) + SourceIndex(3) +4 >Emitted(90, 14) Source(33, 76) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^ @@ -4982,10 +4987,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(90, 9) Source(33, 64) + SourceIndex(3) -2 >Emitted(90, 28) Source(33, 73) + SourceIndex(3) -3 >Emitted(90, 40) Source(33, 76) + SourceIndex(3) -4 >Emitted(90, 41) Source(33, 76) + SourceIndex(3) +1->Emitted(91, 9) Source(33, 64) + SourceIndex(3) +2 >Emitted(91, 28) Source(33, 73) + SourceIndex(3) +3 >Emitted(91, 40) Source(33, 76) + SourceIndex(3) +4 >Emitted(91, 41) Source(33, 76) + SourceIndex(3) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^ @@ -5006,15 +5011,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(91, 5) Source(33, 77) + SourceIndex(3) -2 >Emitted(91, 6) Source(33, 78) + SourceIndex(3) -3 >Emitted(91, 8) Source(33, 39) + SourceIndex(3) -4 >Emitted(91, 17) Source(33, 48) + SourceIndex(3) -5 >Emitted(91, 20) Source(33, 39) + SourceIndex(3) -6 >Emitted(91, 43) Source(33, 48) + SourceIndex(3) -7 >Emitted(91, 48) Source(33, 39) + SourceIndex(3) -8 >Emitted(91, 71) Source(33, 48) + SourceIndex(3) -9 >Emitted(91, 79) Source(33, 78) + SourceIndex(3) +1->Emitted(92, 5) Source(33, 77) + SourceIndex(3) +2 >Emitted(92, 6) Source(33, 78) + SourceIndex(3) +3 >Emitted(92, 8) Source(33, 39) + SourceIndex(3) +4 >Emitted(92, 17) Source(33, 48) + SourceIndex(3) +5 >Emitted(92, 20) Source(33, 39) + SourceIndex(3) +6 >Emitted(92, 43) Source(33, 48) + SourceIndex(3) +7 >Emitted(92, 48) Source(33, 39) + SourceIndex(3) +8 >Emitted(92, 71) Source(33, 48) + SourceIndex(3) +9 >Emitted(92, 79) Source(33, 78) + SourceIndex(3) --- >>>})(internalOther || (internalOther = {})); 1 > @@ -5032,13 +5037,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalOther 7 > .something { export class someClass {} } -1 >Emitted(92, 1) Source(33, 77) + SourceIndex(3) -2 >Emitted(92, 2) Source(33, 78) + SourceIndex(3) -3 >Emitted(92, 4) Source(33, 25) + SourceIndex(3) -4 >Emitted(92, 17) Source(33, 38) + SourceIndex(3) -5 >Emitted(92, 22) Source(33, 25) + SourceIndex(3) -6 >Emitted(92, 35) Source(33, 38) + SourceIndex(3) -7 >Emitted(92, 43) Source(33, 78) + SourceIndex(3) +1 >Emitted(93, 1) Source(33, 77) + SourceIndex(3) +2 >Emitted(93, 2) Source(33, 78) + SourceIndex(3) +3 >Emitted(93, 4) Source(33, 25) + SourceIndex(3) +4 >Emitted(93, 17) Source(33, 38) + SourceIndex(3) +5 >Emitted(93, 22) Source(33, 25) + SourceIndex(3) +6 >Emitted(93, 35) Source(33, 38) + SourceIndex(3) +7 >Emitted(93, 43) Source(33, 78) + SourceIndex(3) --- >>>var internalImport = internalNamespace.someClass; 1-> @@ -5058,14 +5063,14 @@ sourceFile:../../../second/second_part1.ts 6 > . 7 > someClass 8 > ; -1->Emitted(93, 1) Source(34, 15) + SourceIndex(3) -2 >Emitted(93, 5) Source(34, 22) + SourceIndex(3) -3 >Emitted(93, 19) Source(34, 36) + SourceIndex(3) -4 >Emitted(93, 22) Source(34, 39) + SourceIndex(3) -5 >Emitted(93, 39) Source(34, 56) + SourceIndex(3) -6 >Emitted(93, 40) Source(34, 57) + SourceIndex(3) -7 >Emitted(93, 49) Source(34, 66) + SourceIndex(3) -8 >Emitted(93, 50) Source(34, 67) + SourceIndex(3) +1->Emitted(94, 1) Source(34, 15) + SourceIndex(3) +2 >Emitted(94, 5) Source(34, 22) + SourceIndex(3) +3 >Emitted(94, 19) Source(34, 36) + SourceIndex(3) +4 >Emitted(94, 22) Source(34, 39) + SourceIndex(3) +5 >Emitted(94, 39) Source(34, 56) + SourceIndex(3) +6 >Emitted(94, 40) Source(34, 57) + SourceIndex(3) +7 >Emitted(94, 49) Source(34, 66) + SourceIndex(3) +8 >Emitted(94, 50) Source(34, 67) + SourceIndex(3) --- >>>var internalConst = 10; 1 > @@ -5082,12 +5087,12 @@ sourceFile:../../../second/second_part1.ts 4 > = 5 > 10 6 > ; -1 >Emitted(94, 1) Source(36, 15) + SourceIndex(3) -2 >Emitted(94, 5) Source(36, 21) + SourceIndex(3) -3 >Emitted(94, 18) Source(36, 34) + SourceIndex(3) -4 >Emitted(94, 21) Source(36, 37) + SourceIndex(3) -5 >Emitted(94, 23) Source(36, 39) + SourceIndex(3) -6 >Emitted(94, 24) Source(36, 40) + SourceIndex(3) +1 >Emitted(95, 1) Source(36, 15) + SourceIndex(3) +2 >Emitted(95, 5) Source(36, 21) + SourceIndex(3) +3 >Emitted(95, 18) Source(36, 34) + SourceIndex(3) +4 >Emitted(95, 21) Source(36, 37) + SourceIndex(3) +5 >Emitted(95, 23) Source(36, 39) + SourceIndex(3) +6 >Emitted(95, 24) Source(36, 40) + SourceIndex(3) --- >>>var internalEnum; 1 > @@ -5098,9 +5103,9 @@ sourceFile:../../../second/second_part1.ts >/*@internal*/ 2 >enum 3 > internalEnum { a, b, c } -1 >Emitted(95, 1) Source(37, 15) + SourceIndex(3) -2 >Emitted(95, 5) Source(37, 20) + SourceIndex(3) -3 >Emitted(95, 17) Source(37, 44) + SourceIndex(3) +1 >Emitted(96, 1) Source(37, 15) + SourceIndex(3) +2 >Emitted(96, 5) Source(37, 20) + SourceIndex(3) +3 >Emitted(96, 17) Source(37, 44) + SourceIndex(3) --- >>>(function (internalEnum) { 1-> @@ -5110,9 +5115,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >enum 3 > internalEnum -1->Emitted(96, 1) Source(37, 15) + SourceIndex(3) -2 >Emitted(96, 12) Source(37, 20) + SourceIndex(3) -3 >Emitted(96, 24) Source(37, 32) + SourceIndex(3) +1->Emitted(97, 1) Source(37, 15) + SourceIndex(3) +2 >Emitted(97, 12) Source(37, 20) + SourceIndex(3) +3 >Emitted(97, 24) Source(37, 32) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^ @@ -5122,9 +5127,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(97, 5) Source(37, 35) + SourceIndex(3) -2 >Emitted(97, 46) Source(37, 36) + SourceIndex(3) -3 >Emitted(97, 47) Source(37, 36) + SourceIndex(3) +1->Emitted(98, 5) Source(37, 35) + SourceIndex(3) +2 >Emitted(98, 46) Source(37, 36) + SourceIndex(3) +3 >Emitted(98, 47) Source(37, 36) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^ @@ -5134,9 +5139,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(98, 5) Source(37, 38) + SourceIndex(3) -2 >Emitted(98, 46) Source(37, 39) + SourceIndex(3) -3 >Emitted(98, 47) Source(37, 39) + SourceIndex(3) +1->Emitted(99, 5) Source(37, 38) + SourceIndex(3) +2 >Emitted(99, 46) Source(37, 39) + SourceIndex(3) +3 >Emitted(99, 47) Source(37, 39) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^ @@ -5145,9 +5150,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(99, 5) Source(37, 41) + SourceIndex(3) -2 >Emitted(99, 46) Source(37, 42) + SourceIndex(3) -3 >Emitted(99, 47) Source(37, 42) + SourceIndex(3) +1->Emitted(100, 5) Source(37, 41) + SourceIndex(3) +2 >Emitted(100, 46) Source(37, 42) + SourceIndex(3) +3 >Emitted(100, 47) Source(37, 42) + SourceIndex(3) --- >>>})(internalEnum || (internalEnum = {})); 1 > @@ -5164,13 +5169,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalEnum 7 > { a, b, c } -1 >Emitted(100, 1) Source(37, 43) + SourceIndex(3) -2 >Emitted(100, 2) Source(37, 44) + SourceIndex(3) -3 >Emitted(100, 4) Source(37, 20) + SourceIndex(3) -4 >Emitted(100, 16) Source(37, 32) + SourceIndex(3) -5 >Emitted(100, 21) Source(37, 20) + SourceIndex(3) -6 >Emitted(100, 33) Source(37, 32) + SourceIndex(3) -7 >Emitted(100, 41) Source(37, 44) + SourceIndex(3) +1 >Emitted(101, 1) Source(37, 43) + SourceIndex(3) +2 >Emitted(101, 2) Source(37, 44) + SourceIndex(3) +3 >Emitted(101, 4) Source(37, 20) + SourceIndex(3) +4 >Emitted(101, 16) Source(37, 32) + SourceIndex(3) +5 >Emitted(101, 21) Source(37, 20) + SourceIndex(3) +6 >Emitted(101, 33) Source(37, 32) + SourceIndex(3) +7 >Emitted(101, 41) Source(37, 44) + SourceIndex(3) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -5180,13 +5185,13 @@ sourceFile:../../../second/second_part2.ts 1 > 2 >^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(101, 1) Source(1, 1) + SourceIndex(4) +1 >Emitted(102, 1) Source(1, 1) + SourceIndex(4) --- >>> function C() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(102, 5) Source(1, 1) + SourceIndex(4) +1->Emitted(103, 5) Source(1, 1) + SourceIndex(4) --- >>> } 1->^^^^ @@ -5198,8 +5203,8 @@ sourceFile:../../../second/second_part2.ts > } > 2 > } -1->Emitted(103, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(103, 6) Source(5, 2) + SourceIndex(4) +1->Emitted(104, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(104, 6) Source(5, 2) + SourceIndex(4) --- >>> C.prototype.doSomething = function () { 1->^^^^ @@ -5209,9 +5214,9 @@ sourceFile:../../../second/second_part2.ts 1-> 2 > doSomething 3 > -1->Emitted(104, 5) Source(2, 5) + SourceIndex(4) -2 >Emitted(104, 28) Source(2, 16) + SourceIndex(4) -3 >Emitted(104, 31) Source(2, 5) + SourceIndex(4) +1->Emitted(105, 5) Source(2, 5) + SourceIndex(4) +2 >Emitted(105, 28) Source(2, 16) + SourceIndex(4) +3 >Emitted(105, 31) Source(2, 5) + SourceIndex(4) --- >>> console.log("something got done"); 1->^^^^^^^^ @@ -5231,14 +5236,14 @@ sourceFile:../../../second/second_part2.ts 6 > "something got done" 7 > ) 8 > ; -1->Emitted(105, 9) Source(3, 9) + SourceIndex(4) -2 >Emitted(105, 16) Source(3, 16) + SourceIndex(4) -3 >Emitted(105, 17) Source(3, 17) + SourceIndex(4) -4 >Emitted(105, 20) Source(3, 20) + SourceIndex(4) -5 >Emitted(105, 21) Source(3, 21) + SourceIndex(4) -6 >Emitted(105, 41) Source(3, 41) + SourceIndex(4) -7 >Emitted(105, 42) Source(3, 42) + SourceIndex(4) -8 >Emitted(105, 43) Source(3, 43) + SourceIndex(4) +1->Emitted(106, 9) Source(3, 9) + SourceIndex(4) +2 >Emitted(106, 16) Source(3, 16) + SourceIndex(4) +3 >Emitted(106, 17) Source(3, 17) + SourceIndex(4) +4 >Emitted(106, 20) Source(3, 20) + SourceIndex(4) +5 >Emitted(106, 21) Source(3, 21) + SourceIndex(4) +6 >Emitted(106, 41) Source(3, 41) + SourceIndex(4) +7 >Emitted(106, 42) Source(3, 42) + SourceIndex(4) +8 >Emitted(106, 43) Source(3, 43) + SourceIndex(4) --- >>> }; 1 >^^^^ @@ -5247,8 +5252,8 @@ sourceFile:../../../second/second_part2.ts 1 > > 2 > } -1 >Emitted(106, 5) Source(4, 5) + SourceIndex(4) -2 >Emitted(106, 6) Source(4, 6) + SourceIndex(4) +1 >Emitted(107, 5) Source(4, 5) + SourceIndex(4) +2 >Emitted(107, 6) Source(4, 6) + SourceIndex(4) --- >>> return C; 1->^^^^ @@ -5256,8 +5261,8 @@ sourceFile:../../../second/second_part2.ts 1-> > 2 > } -1->Emitted(107, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(107, 13) Source(5, 2) + SourceIndex(4) +1->Emitted(108, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(108, 13) Source(5, 2) + SourceIndex(4) --- >>>}()); 1 > @@ -5273,10 +5278,10 @@ sourceFile:../../../second/second_part2.ts > console.log("something got done"); > } > } -1 >Emitted(108, 1) Source(5, 1) + SourceIndex(4) -2 >Emitted(108, 2) Source(5, 2) + SourceIndex(4) -3 >Emitted(108, 2) Source(1, 1) + SourceIndex(4) -4 >Emitted(108, 6) Source(5, 2) + SourceIndex(4) +1 >Emitted(109, 1) Source(5, 1) + SourceIndex(4) +2 >Emitted(109, 2) Source(5, 2) + SourceIndex(4) +3 >Emitted(109, 2) Source(1, 1) + SourceIndex(4) +4 >Emitted(109, 6) Source(5, 2) + SourceIndex(4) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -5300,14 +5305,14 @@ sourceFile:../../third_part1.ts 6 > C 7 > () 8 > ; -1->Emitted(109, 1) Source(1, 1) + SourceIndex(5) -2 >Emitted(109, 5) Source(1, 5) + SourceIndex(5) -3 >Emitted(109, 6) Source(1, 6) + SourceIndex(5) -4 >Emitted(109, 9) Source(1, 9) + SourceIndex(5) -5 >Emitted(109, 13) Source(1, 13) + SourceIndex(5) -6 >Emitted(109, 14) Source(1, 14) + SourceIndex(5) -7 >Emitted(109, 16) Source(1, 16) + SourceIndex(5) -8 >Emitted(109, 17) Source(1, 17) + SourceIndex(5) +1->Emitted(110, 1) Source(1, 1) + SourceIndex(5) +2 >Emitted(110, 5) Source(1, 5) + SourceIndex(5) +3 >Emitted(110, 6) Source(1, 6) + SourceIndex(5) +4 >Emitted(110, 9) Source(1, 9) + SourceIndex(5) +5 >Emitted(110, 13) Source(1, 13) + SourceIndex(5) +6 >Emitted(110, 14) Source(1, 14) + SourceIndex(5) +7 >Emitted(110, 16) Source(1, 16) + SourceIndex(5) +8 >Emitted(110, 17) Source(1, 17) + SourceIndex(5) --- >>>c.doSomething(); 1-> @@ -5324,12 +5329,12 @@ sourceFile:../../third_part1.ts 4 > doSomething 5 > () 6 > ; -1->Emitted(110, 1) Source(2, 1) + SourceIndex(5) -2 >Emitted(110, 2) Source(2, 2) + SourceIndex(5) -3 >Emitted(110, 3) Source(2, 3) + SourceIndex(5) -4 >Emitted(110, 14) Source(2, 14) + SourceIndex(5) -5 >Emitted(110, 16) Source(2, 16) + SourceIndex(5) -6 >Emitted(110, 17) Source(2, 17) + SourceIndex(5) +1->Emitted(111, 1) Source(2, 1) + SourceIndex(5) +2 >Emitted(111, 2) Source(2, 2) + SourceIndex(5) +3 >Emitted(111, 3) Source(2, 3) + SourceIndex(5) +4 >Emitted(111, 14) Source(2, 14) + SourceIndex(5) +5 >Emitted(111, 16) Source(2, 16) + SourceIndex(5) +6 >Emitted(111, 17) Source(2, 17) + SourceIndex(5) --- >>>//# sourceMappingURL=third-output.js.map @@ -5344,20 +5349,20 @@ sourceFile:../../third_part1.ts "sections": [ { "pos": 0, - "end": 3162, + "end": 3210, "kind": "prepend", "data": "../../../2/second-output.js", "texts": [ { "pos": 0, - "end": 3162, + "end": 3210, "kind": "text" } ] }, { - "pos": 3162, - "end": 3198, + "pos": 3210, + "end": 3246, "kind": "text" } ] @@ -5392,9 +5397,9 @@ sourceFile:../../third_part1.ts ====================================================================== File:: /src/third/thirdjs/output/third-output.js ---------------------------------------------------------------------- -prepend: (0-3162):: ../../../2/second-output.js texts:: 1 +prepend: (0-3210):: ../../../2/second-output.js texts:: 1 >>-------------------------------------------------------------------- -text: (0-3162) +text: (0-3210) var s = "Hola, world"; console.log(s); console.log(f()); @@ -5411,8 +5416,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -5505,7 +5511,7 @@ var C = (function () { }()); ---------------------------------------------------------------------- -text: (3162-3198) +text: (3210-3246) var c = new C(); c.doSomething(); diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/stripInternal.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/stripInternal.js index 3e7036f487431..658311937a324 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/stripInternal.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-changes/stripInternal.js @@ -723,8 +723,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -820,7 +821,7 @@ c.doSomething(); //# sourceMappingURL=third-output.js.map //// [/src/third/thirdjs/output/third-output.js.map] -{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"AAIA,IAAM,CAAC,GAAG,aAAa,CAAC;AAMxB,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;ACVf,OAAO,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC;ACAjB,SAAS,CAAC;IACN,OAAO,gBAAgB,CAAC;AAC5B,CAAC;ACED,IAAU,CAAC,CAMV;AAND,WAAU,CAAC;IACP,SAAS,CAAC;QACN,OAAO,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;IAC3B,CAAC;IAED,CAAC,EAAE,CAAC;AACR,CAAC,EANS,CAAC,KAAD,CAAC,QAMV;AAED;IACkB;IAAgB,CAAC;;IAEjB,wBAAM,GAAN,cAAW,CAAC;IACZ,sBAAI,sBAAC;aAAL,cAAU,OAAO,EAAE,CAAC,CAAC,CAAC;aACtB,UAAM,GAAW,IAAI,CAAC;;;OADA;IAExC,cAAC;AAAD,CAAC,AAND,IAMC;AACD,IAAU,OAAO,CAShB;AATD,WAAU,OAAO;IACC;QAAA;QAAiB,CAAC;QAAD,QAAC;IAAD,CAAC,AAAlB,IAAkB;IAAL,SAAC,IAAI,CAAA;IAClB,SAAgB,GAAG,KAAI,CAAC;IAAR,WAAG,MAAK,CAAA;IACxB,IAAiB,aAAa,CAAsB;IAApD,WAAiB,aAAa;QAAG;YAAA;YAAgB,CAAC;YAAD,QAAC;QAAD,CAAC,AAAjB,IAAiB;QAAJ,eAAC,IAAG,CAAA;IAAC,CAAC,EAAnC,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAAsB;IACpD,IAAiB,SAAS,CAAwC;IAAlE,WAAiB,SAAS;QAAC,IAAA,SAAS,CAA8B;QAAvC,WAAA,SAAS;YAAG;gBAAA;gBAAwB,CAAC;gBAAD,gBAAC;YAAD,CAAC,AAAzB,IAAyB;YAAZ,mBAAS,YAAG,CAAA;QAAC,CAAC,EAAvC,SAAS,GAAT,mBAAS,KAAT,mBAAS,QAA8B;IAAD,CAAC,EAAjD,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAAwC;IACpD,kBAAU,GAAG,aAAa,CAAC,CAAC,CAAC;IAE9B,qBAAa,GAAG,EAAE,CAAC;IAChC,IAAY,YAAwB;IAApC,WAAY,YAAY;QAAG,yCAAC,CAAA;QAAE,yCAAC,CAAA;QAAE,yCAAC,CAAA;IAAC,CAAC,EAAxB,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAAY;AACtD,CAAC,EATS,OAAO,KAAP,OAAO,QAShB;AACa;IAAA;IAAiB,CAAC;IAAD,gBAAC;AAAD,CAAC,AAAlB,IAAkB;AAClB,SAAS,WAAW,KAAI,CAAC;AACzB,IAAU,iBAAiB,CAA8B;AAAzD,WAAU,iBAAiB;IAAG;QAAA;QAAwB,CAAC;QAAD,gBAAC;IAAD,CAAC,AAAzB,IAAyB;IAAZ,2BAAS,YAAG,CAAA;AAAC,CAAC,EAA/C,iBAAiB,KAAjB,iBAAiB,QAA8B;AACzD,IAAU,aAAa,CAAwC;AAA/D,WAAU,aAAa;IAAC,IAAA,SAAS,CAA8B;IAAvC,WAAA,SAAS;QAAG;YAAA;YAAwB,CAAC;YAAD,gBAAC;QAAD,CAAC,AAAzB,IAAyB;QAAZ,mBAAS,YAAG,CAAA;IAAC,CAAC,EAAvC,SAAS,GAAT,uBAAS,KAAT,uBAAS,QAA8B;AAAD,CAAC,EAArD,aAAa,KAAb,aAAa,QAAwC;AAC/D,IAAO,cAAc,GAAG,iBAAiB,CAAC,SAAS,CAAC;AAEpD,IAAM,aAAa,GAAG,EAAE,CAAC;AACzB,IAAK,YAAwB;AAA7B,WAAK,YAAY;IAAG,yCAAC,CAAA;IAAE,yCAAC,CAAA;IAAE,yCAAC,CAAA;AAAC,CAAC,EAAxB,YAAY,KAAZ,YAAY,QAAY;ACpC3C;IAAA;IAIA,CAAC;IAHG,uBAAW,GAAX;QACI,OAAO,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAC;IACtC,CAAC;IACL,QAAC;AAAD,CAAC,AAJD,IAIC;ACJD,IAAI,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;AAChB,CAAC,CAAC,WAAW,EAAE,CAAC"} //// [/src/third/thirdjs/output/third-output.js.map.baseline.txt] =================================================================== @@ -1121,13 +1122,14 @@ sourceFile:../../../second/second_part1.ts >>> } 1->^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1->constructor() { 2 > } 1->Emitted(16, 5) Source(14, 35) + SourceIndex(3) 2 >Emitted(16, 6) Source(14, 36) + SourceIndex(3) --- ->>> normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> normalC_prototype.method = function () { }; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^ @@ -1141,13 +1143,13 @@ sourceFile:../../../second/second_part1.ts 3 > 4 > method() { 5 > } -1->Emitted(17, 5) Source(16, 19) + SourceIndex(3) -2 >Emitted(17, 29) Source(16, 25) + SourceIndex(3) -3 >Emitted(17, 32) Source(16, 19) + SourceIndex(3) -4 >Emitted(17, 46) Source(16, 30) + SourceIndex(3) -5 >Emitted(17, 47) Source(16, 31) + SourceIndex(3) +1->Emitted(18, 5) Source(16, 19) + SourceIndex(3) +2 >Emitted(18, 29) Source(16, 25) + SourceIndex(3) +3 >Emitted(18, 32) Source(16, 19) + SourceIndex(3) +4 >Emitted(18, 46) Source(16, 30) + SourceIndex(3) +5 >Emitted(18, 47) Source(16, 31) + SourceIndex(3) --- ->>> Object.defineProperty(normalC.prototype, "c", { +>>> Object.defineProperty(normalC_prototype, "c", { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -1155,9 +1157,9 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ 2 > get 3 > c -1->Emitted(18, 5) Source(17, 19) + SourceIndex(3) -2 >Emitted(18, 27) Source(17, 23) + SourceIndex(3) -3 >Emitted(18, 49) Source(17, 24) + SourceIndex(3) +1->Emitted(19, 5) Source(17, 19) + SourceIndex(3) +2 >Emitted(19, 27) Source(17, 23) + SourceIndex(3) +3 >Emitted(19, 49) Source(17, 24) + SourceIndex(3) --- >>> get: function () { return 10; }, 1 >^^^^^^^^^^^^^ @@ -1174,13 +1176,13 @@ sourceFile:../../../second/second_part1.ts 5 > ; 6 > 7 > } -1 >Emitted(19, 14) Source(17, 19) + SourceIndex(3) -2 >Emitted(19, 28) Source(17, 29) + SourceIndex(3) -3 >Emitted(19, 35) Source(17, 36) + SourceIndex(3) -4 >Emitted(19, 37) Source(17, 38) + SourceIndex(3) -5 >Emitted(19, 38) Source(17, 39) + SourceIndex(3) -6 >Emitted(19, 39) Source(17, 40) + SourceIndex(3) -7 >Emitted(19, 40) Source(17, 41) + SourceIndex(3) +1 >Emitted(20, 14) Source(17, 19) + SourceIndex(3) +2 >Emitted(20, 28) Source(17, 29) + SourceIndex(3) +3 >Emitted(20, 35) Source(17, 36) + SourceIndex(3) +4 >Emitted(20, 37) Source(17, 38) + SourceIndex(3) +5 >Emitted(20, 38) Source(17, 39) + SourceIndex(3) +6 >Emitted(20, 39) Source(17, 40) + SourceIndex(3) +7 >Emitted(20, 40) Source(17, 41) + SourceIndex(3) --- >>> set: function (val) { }, 1 >^^^^^^^^^^^^^ @@ -1194,11 +1196,11 @@ sourceFile:../../../second/second_part1.ts 3 > val: number 4 > ) { 5 > } -1 >Emitted(20, 14) Source(18, 19) + SourceIndex(3) -2 >Emitted(20, 24) Source(18, 25) + SourceIndex(3) -3 >Emitted(20, 27) Source(18, 36) + SourceIndex(3) -4 >Emitted(20, 31) Source(18, 40) + SourceIndex(3) -5 >Emitted(20, 32) Source(18, 41) + SourceIndex(3) +1 >Emitted(21, 14) Source(18, 19) + SourceIndex(3) +2 >Emitted(21, 24) Source(18, 25) + SourceIndex(3) +3 >Emitted(21, 27) Source(18, 36) + SourceIndex(3) +4 >Emitted(21, 31) Source(18, 40) + SourceIndex(3) +5 >Emitted(21, 32) Source(18, 41) + SourceIndex(3) --- >>> enumerable: false, >>> configurable: true @@ -1206,7 +1208,7 @@ sourceFile:../../../second/second_part1.ts 1 >^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(23, 8) Source(17, 41) + SourceIndex(3) +1 >Emitted(24, 8) Source(17, 41) + SourceIndex(3) --- >>> return normalC; 1->^^^^ @@ -1215,8 +1217,8 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ set c(val: number) { } > 2 > } -1->Emitted(24, 5) Source(19, 1) + SourceIndex(3) -2 >Emitted(24, 19) Source(19, 2) + SourceIndex(3) +1->Emitted(25, 5) Source(19, 1) + SourceIndex(3) +2 >Emitted(25, 19) Source(19, 2) + SourceIndex(3) --- >>>}()); 1 > @@ -1234,10 +1236,10 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ get c() { return 10; } > /*@internal*/ set c(val: number) { } > } -1 >Emitted(25, 1) Source(19, 1) + SourceIndex(3) -2 >Emitted(25, 2) Source(19, 2) + SourceIndex(3) -3 >Emitted(25, 2) Source(13, 1) + SourceIndex(3) -4 >Emitted(25, 6) Source(19, 2) + SourceIndex(3) +1 >Emitted(26, 1) Source(19, 1) + SourceIndex(3) +2 >Emitted(26, 2) Source(19, 2) + SourceIndex(3) +3 >Emitted(26, 2) Source(13, 1) + SourceIndex(3) +4 >Emitted(26, 6) Source(19, 2) + SourceIndex(3) --- >>>var normalN; 1-> @@ -1259,10 +1261,10 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1->Emitted(26, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(26, 5) Source(20, 11) + SourceIndex(3) -3 >Emitted(26, 12) Source(20, 18) + SourceIndex(3) -4 >Emitted(26, 13) Source(29, 2) + SourceIndex(3) +1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(27, 5) Source(20, 11) + SourceIndex(3) +3 >Emitted(27, 12) Source(20, 18) + SourceIndex(3) +4 >Emitted(27, 13) Source(29, 2) + SourceIndex(3) --- >>>(function (normalN) { 1-> @@ -1272,22 +1274,22 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > normalN -1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(27, 12) Source(20, 11) + SourceIndex(3) -3 >Emitted(27, 19) Source(20, 18) + SourceIndex(3) +1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(28, 12) Source(20, 11) + SourceIndex(3) +3 >Emitted(28, 19) Source(20, 18) + SourceIndex(3) --- >>> var C = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { > /*@internal*/ -1->Emitted(28, 5) Source(21, 19) + SourceIndex(3) +1->Emitted(29, 5) Source(21, 19) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(29, 9) Source(21, 19) + SourceIndex(3) +1->Emitted(30, 9) Source(21, 19) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -1295,16 +1297,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(30, 9) Source(21, 36) + SourceIndex(3) -2 >Emitted(30, 10) Source(21, 37) + SourceIndex(3) +1->Emitted(31, 9) Source(21, 36) + SourceIndex(3) +2 >Emitted(31, 10) Source(21, 37) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(31, 9) Source(21, 36) + SourceIndex(3) -2 >Emitted(31, 17) Source(21, 37) + SourceIndex(3) +1->Emitted(32, 9) Source(21, 36) + SourceIndex(3) +2 >Emitted(32, 17) Source(21, 37) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -1316,10 +1318,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(32, 5) Source(21, 36) + SourceIndex(3) -2 >Emitted(32, 6) Source(21, 37) + SourceIndex(3) -3 >Emitted(32, 6) Source(21, 19) + SourceIndex(3) -4 >Emitted(32, 10) Source(21, 37) + SourceIndex(3) +1 >Emitted(33, 5) Source(21, 36) + SourceIndex(3) +2 >Emitted(33, 6) Source(21, 37) + SourceIndex(3) +3 >Emitted(33, 6) Source(21, 19) + SourceIndex(3) +4 >Emitted(33, 10) Source(21, 37) + SourceIndex(3) --- >>> normalN.C = C; 1->^^^^ @@ -1331,10 +1333,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > { } 4 > -1->Emitted(33, 5) Source(21, 32) + SourceIndex(3) -2 >Emitted(33, 14) Source(21, 33) + SourceIndex(3) -3 >Emitted(33, 18) Source(21, 37) + SourceIndex(3) -4 >Emitted(33, 19) Source(21, 37) + SourceIndex(3) +1->Emitted(34, 5) Source(21, 32) + SourceIndex(3) +2 >Emitted(34, 14) Source(21, 33) + SourceIndex(3) +3 >Emitted(34, 18) Source(21, 37) + SourceIndex(3) +4 >Emitted(34, 19) Source(21, 37) + SourceIndex(3) --- >>> function foo() { } 1->^^^^ @@ -1349,11 +1351,11 @@ sourceFile:../../../second/second_part1.ts 3 > foo 4 > () { 5 > } -1->Emitted(34, 5) Source(22, 19) + SourceIndex(3) -2 >Emitted(34, 14) Source(22, 35) + SourceIndex(3) -3 >Emitted(34, 17) Source(22, 38) + SourceIndex(3) -4 >Emitted(34, 22) Source(22, 42) + SourceIndex(3) -5 >Emitted(34, 23) Source(22, 43) + SourceIndex(3) +1->Emitted(35, 5) Source(22, 19) + SourceIndex(3) +2 >Emitted(35, 14) Source(22, 35) + SourceIndex(3) +3 >Emitted(35, 17) Source(22, 38) + SourceIndex(3) +4 >Emitted(35, 22) Source(22, 42) + SourceIndex(3) +5 >Emitted(35, 23) Source(22, 43) + SourceIndex(3) --- >>> normalN.foo = foo; 1->^^^^ @@ -1365,10 +1367,10 @@ sourceFile:../../../second/second_part1.ts 2 > foo 3 > () {} 4 > -1->Emitted(35, 5) Source(22, 35) + SourceIndex(3) -2 >Emitted(35, 16) Source(22, 38) + SourceIndex(3) -3 >Emitted(35, 22) Source(22, 43) + SourceIndex(3) -4 >Emitted(35, 23) Source(22, 43) + SourceIndex(3) +1->Emitted(36, 5) Source(22, 35) + SourceIndex(3) +2 >Emitted(36, 16) Source(22, 38) + SourceIndex(3) +3 >Emitted(36, 22) Source(22, 43) + SourceIndex(3) +4 >Emitted(36, 23) Source(22, 43) + SourceIndex(3) --- >>> var someNamespace; 1->^^^^ @@ -1381,10 +1383,10 @@ sourceFile:../../../second/second_part1.ts 2 > export namespace 3 > someNamespace 4 > { export class C {} } -1->Emitted(36, 5) Source(23, 19) + SourceIndex(3) -2 >Emitted(36, 9) Source(23, 36) + SourceIndex(3) -3 >Emitted(36, 22) Source(23, 49) + SourceIndex(3) -4 >Emitted(36, 23) Source(23, 71) + SourceIndex(3) +1->Emitted(37, 5) Source(23, 19) + SourceIndex(3) +2 >Emitted(37, 9) Source(23, 36) + SourceIndex(3) +3 >Emitted(37, 22) Source(23, 49) + SourceIndex(3) +4 >Emitted(37, 23) Source(23, 71) + SourceIndex(3) --- >>> (function (someNamespace) { 1->^^^^ @@ -1394,21 +1396,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > export namespace 3 > someNamespace -1->Emitted(37, 5) Source(23, 19) + SourceIndex(3) -2 >Emitted(37, 16) Source(23, 36) + SourceIndex(3) -3 >Emitted(37, 29) Source(23, 49) + SourceIndex(3) +1->Emitted(38, 5) Source(23, 19) + SourceIndex(3) +2 >Emitted(38, 16) Source(23, 36) + SourceIndex(3) +3 >Emitted(38, 29) Source(23, 49) + SourceIndex(3) --- >>> var C = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(38, 9) Source(23, 52) + SourceIndex(3) +1->Emitted(39, 9) Source(23, 52) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(39, 13) Source(23, 52) + SourceIndex(3) +1->Emitted(40, 13) Source(23, 52) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -1416,16 +1418,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(40, 13) Source(23, 68) + SourceIndex(3) -2 >Emitted(40, 14) Source(23, 69) + SourceIndex(3) +1->Emitted(41, 13) Source(23, 68) + SourceIndex(3) +2 >Emitted(41, 14) Source(23, 69) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(41, 13) Source(23, 68) + SourceIndex(3) -2 >Emitted(41, 21) Source(23, 69) + SourceIndex(3) +1->Emitted(42, 13) Source(23, 68) + SourceIndex(3) +2 >Emitted(42, 21) Source(23, 69) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -1437,10 +1439,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(42, 9) Source(23, 68) + SourceIndex(3) -2 >Emitted(42, 10) Source(23, 69) + SourceIndex(3) -3 >Emitted(42, 10) Source(23, 52) + SourceIndex(3) -4 >Emitted(42, 14) Source(23, 69) + SourceIndex(3) +1 >Emitted(43, 9) Source(23, 68) + SourceIndex(3) +2 >Emitted(43, 10) Source(23, 69) + SourceIndex(3) +3 >Emitted(43, 10) Source(23, 52) + SourceIndex(3) +4 >Emitted(43, 14) Source(23, 69) + SourceIndex(3) --- >>> someNamespace.C = C; 1->^^^^^^^^ @@ -1452,10 +1454,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > {} 4 > -1->Emitted(43, 9) Source(23, 65) + SourceIndex(3) -2 >Emitted(43, 24) Source(23, 66) + SourceIndex(3) -3 >Emitted(43, 28) Source(23, 69) + SourceIndex(3) -4 >Emitted(43, 29) Source(23, 69) + SourceIndex(3) +1->Emitted(44, 9) Source(23, 65) + SourceIndex(3) +2 >Emitted(44, 24) Source(23, 66) + SourceIndex(3) +3 >Emitted(44, 28) Source(23, 69) + SourceIndex(3) +4 >Emitted(44, 29) Source(23, 69) + SourceIndex(3) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^ @@ -1476,15 +1478,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(44, 5) Source(23, 70) + SourceIndex(3) -2 >Emitted(44, 6) Source(23, 71) + SourceIndex(3) -3 >Emitted(44, 8) Source(23, 36) + SourceIndex(3) -4 >Emitted(44, 21) Source(23, 49) + SourceIndex(3) -5 >Emitted(44, 24) Source(23, 36) + SourceIndex(3) -6 >Emitted(44, 45) Source(23, 49) + SourceIndex(3) -7 >Emitted(44, 50) Source(23, 36) + SourceIndex(3) -8 >Emitted(44, 71) Source(23, 49) + SourceIndex(3) -9 >Emitted(44, 79) Source(23, 71) + SourceIndex(3) +1->Emitted(45, 5) Source(23, 70) + SourceIndex(3) +2 >Emitted(45, 6) Source(23, 71) + SourceIndex(3) +3 >Emitted(45, 8) Source(23, 36) + SourceIndex(3) +4 >Emitted(45, 21) Source(23, 49) + SourceIndex(3) +5 >Emitted(45, 24) Source(23, 36) + SourceIndex(3) +6 >Emitted(45, 45) Source(23, 49) + SourceIndex(3) +7 >Emitted(45, 50) Source(23, 36) + SourceIndex(3) +8 >Emitted(45, 71) Source(23, 49) + SourceIndex(3) +9 >Emitted(45, 79) Source(23, 71) + SourceIndex(3) --- >>> var someOther; 1 >^^^^ @@ -1497,10 +1499,10 @@ sourceFile:../../../second/second_part1.ts 2 > export namespace 3 > someOther 4 > .something { export class someClass {} } -1 >Emitted(45, 5) Source(24, 19) + SourceIndex(3) -2 >Emitted(45, 9) Source(24, 36) + SourceIndex(3) -3 >Emitted(45, 18) Source(24, 45) + SourceIndex(3) -4 >Emitted(45, 19) Source(24, 85) + SourceIndex(3) +1 >Emitted(46, 5) Source(24, 19) + SourceIndex(3) +2 >Emitted(46, 9) Source(24, 36) + SourceIndex(3) +3 >Emitted(46, 18) Source(24, 45) + SourceIndex(3) +4 >Emitted(46, 19) Source(24, 85) + SourceIndex(3) --- >>> (function (someOther) { 1->^^^^ @@ -1509,9 +1511,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > export namespace 3 > someOther -1->Emitted(46, 5) Source(24, 19) + SourceIndex(3) -2 >Emitted(46, 16) Source(24, 36) + SourceIndex(3) -3 >Emitted(46, 25) Source(24, 45) + SourceIndex(3) +1->Emitted(47, 5) Source(24, 19) + SourceIndex(3) +2 >Emitted(47, 16) Source(24, 36) + SourceIndex(3) +3 >Emitted(47, 25) Source(24, 45) + SourceIndex(3) --- >>> var something; 1 >^^^^^^^^ @@ -1523,10 +1525,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(47, 9) Source(24, 46) + SourceIndex(3) -2 >Emitted(47, 13) Source(24, 46) + SourceIndex(3) -3 >Emitted(47, 22) Source(24, 55) + SourceIndex(3) -4 >Emitted(47, 23) Source(24, 85) + SourceIndex(3) +1 >Emitted(48, 9) Source(24, 46) + SourceIndex(3) +2 >Emitted(48, 13) Source(24, 46) + SourceIndex(3) +3 >Emitted(48, 22) Source(24, 55) + SourceIndex(3) +4 >Emitted(48, 23) Source(24, 85) + SourceIndex(3) --- >>> (function (something) { 1->^^^^^^^^ @@ -1536,21 +1538,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(48, 9) Source(24, 46) + SourceIndex(3) -2 >Emitted(48, 20) Source(24, 46) + SourceIndex(3) -3 >Emitted(48, 29) Source(24, 55) + SourceIndex(3) +1->Emitted(49, 9) Source(24, 46) + SourceIndex(3) +2 >Emitted(49, 20) Source(24, 46) + SourceIndex(3) +3 >Emitted(49, 29) Source(24, 55) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(49, 13) Source(24, 58) + SourceIndex(3) +1->Emitted(50, 13) Source(24, 58) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(50, 17) Source(24, 58) + SourceIndex(3) +1->Emitted(51, 17) Source(24, 58) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -1558,16 +1560,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(51, 17) Source(24, 82) + SourceIndex(3) -2 >Emitted(51, 18) Source(24, 83) + SourceIndex(3) +1->Emitted(52, 17) Source(24, 82) + SourceIndex(3) +2 >Emitted(52, 18) Source(24, 83) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(52, 17) Source(24, 82) + SourceIndex(3) -2 >Emitted(52, 33) Source(24, 83) + SourceIndex(3) +1->Emitted(53, 17) Source(24, 82) + SourceIndex(3) +2 >Emitted(53, 33) Source(24, 83) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -1579,10 +1581,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(53, 13) Source(24, 82) + SourceIndex(3) -2 >Emitted(53, 14) Source(24, 83) + SourceIndex(3) -3 >Emitted(53, 14) Source(24, 58) + SourceIndex(3) -4 >Emitted(53, 18) Source(24, 83) + SourceIndex(3) +1 >Emitted(54, 13) Source(24, 82) + SourceIndex(3) +2 >Emitted(54, 14) Source(24, 83) + SourceIndex(3) +3 >Emitted(54, 14) Source(24, 58) + SourceIndex(3) +4 >Emitted(54, 18) Source(24, 83) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -1594,10 +1596,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(54, 13) Source(24, 71) + SourceIndex(3) -2 >Emitted(54, 32) Source(24, 80) + SourceIndex(3) -3 >Emitted(54, 44) Source(24, 83) + SourceIndex(3) -4 >Emitted(54, 45) Source(24, 83) + SourceIndex(3) +1->Emitted(55, 13) Source(24, 71) + SourceIndex(3) +2 >Emitted(55, 32) Source(24, 80) + SourceIndex(3) +3 >Emitted(55, 44) Source(24, 83) + SourceIndex(3) +4 >Emitted(55, 45) Source(24, 83) + SourceIndex(3) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^ @@ -1618,15 +1620,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(55, 9) Source(24, 84) + SourceIndex(3) -2 >Emitted(55, 10) Source(24, 85) + SourceIndex(3) -3 >Emitted(55, 12) Source(24, 46) + SourceIndex(3) -4 >Emitted(55, 21) Source(24, 55) + SourceIndex(3) -5 >Emitted(55, 24) Source(24, 46) + SourceIndex(3) -6 >Emitted(55, 43) Source(24, 55) + SourceIndex(3) -7 >Emitted(55, 48) Source(24, 46) + SourceIndex(3) -8 >Emitted(55, 67) Source(24, 55) + SourceIndex(3) -9 >Emitted(55, 75) Source(24, 85) + SourceIndex(3) +1->Emitted(56, 9) Source(24, 84) + SourceIndex(3) +2 >Emitted(56, 10) Source(24, 85) + SourceIndex(3) +3 >Emitted(56, 12) Source(24, 46) + SourceIndex(3) +4 >Emitted(56, 21) Source(24, 55) + SourceIndex(3) +5 >Emitted(56, 24) Source(24, 46) + SourceIndex(3) +6 >Emitted(56, 43) Source(24, 55) + SourceIndex(3) +7 >Emitted(56, 48) Source(24, 46) + SourceIndex(3) +8 >Emitted(56, 67) Source(24, 55) + SourceIndex(3) +9 >Emitted(56, 75) Source(24, 85) + SourceIndex(3) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^ @@ -1647,15 +1649,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(56, 5) Source(24, 84) + SourceIndex(3) -2 >Emitted(56, 6) Source(24, 85) + SourceIndex(3) -3 >Emitted(56, 8) Source(24, 36) + SourceIndex(3) -4 >Emitted(56, 17) Source(24, 45) + SourceIndex(3) -5 >Emitted(56, 20) Source(24, 36) + SourceIndex(3) -6 >Emitted(56, 37) Source(24, 45) + SourceIndex(3) -7 >Emitted(56, 42) Source(24, 36) + SourceIndex(3) -8 >Emitted(56, 59) Source(24, 45) + SourceIndex(3) -9 >Emitted(56, 67) Source(24, 85) + SourceIndex(3) +1 >Emitted(57, 5) Source(24, 84) + SourceIndex(3) +2 >Emitted(57, 6) Source(24, 85) + SourceIndex(3) +3 >Emitted(57, 8) Source(24, 36) + SourceIndex(3) +4 >Emitted(57, 17) Source(24, 45) + SourceIndex(3) +5 >Emitted(57, 20) Source(24, 36) + SourceIndex(3) +6 >Emitted(57, 37) Source(24, 45) + SourceIndex(3) +7 >Emitted(57, 42) Source(24, 36) + SourceIndex(3) +8 >Emitted(57, 59) Source(24, 45) + SourceIndex(3) +9 >Emitted(57, 67) Source(24, 85) + SourceIndex(3) --- >>> normalN.someImport = someNamespace.C; 1 >^^^^ @@ -1673,13 +1675,13 @@ sourceFile:../../../second/second_part1.ts 5 > . 6 > C 7 > ; -1 >Emitted(57, 5) Source(25, 33) + SourceIndex(3) -2 >Emitted(57, 23) Source(25, 43) + SourceIndex(3) -3 >Emitted(57, 26) Source(25, 46) + SourceIndex(3) -4 >Emitted(57, 39) Source(25, 59) + SourceIndex(3) -5 >Emitted(57, 40) Source(25, 60) + SourceIndex(3) -6 >Emitted(57, 41) Source(25, 61) + SourceIndex(3) -7 >Emitted(57, 42) Source(25, 62) + SourceIndex(3) +1 >Emitted(58, 5) Source(25, 33) + SourceIndex(3) +2 >Emitted(58, 23) Source(25, 43) + SourceIndex(3) +3 >Emitted(58, 26) Source(25, 46) + SourceIndex(3) +4 >Emitted(58, 39) Source(25, 59) + SourceIndex(3) +5 >Emitted(58, 40) Source(25, 60) + SourceIndex(3) +6 >Emitted(58, 41) Source(25, 61) + SourceIndex(3) +7 >Emitted(58, 42) Source(25, 62) + SourceIndex(3) --- >>> normalN.internalConst = 10; 1 >^^^^ @@ -1694,11 +1696,11 @@ sourceFile:../../../second/second_part1.ts 3 > = 4 > 10 5 > ; -1 >Emitted(58, 5) Source(27, 32) + SourceIndex(3) -2 >Emitted(58, 26) Source(27, 45) + SourceIndex(3) -3 >Emitted(58, 29) Source(27, 48) + SourceIndex(3) -4 >Emitted(58, 31) Source(27, 50) + SourceIndex(3) -5 >Emitted(58, 32) Source(27, 51) + SourceIndex(3) +1 >Emitted(59, 5) Source(27, 32) + SourceIndex(3) +2 >Emitted(59, 26) Source(27, 45) + SourceIndex(3) +3 >Emitted(59, 29) Source(27, 48) + SourceIndex(3) +4 >Emitted(59, 31) Source(27, 50) + SourceIndex(3) +5 >Emitted(59, 32) Source(27, 51) + SourceIndex(3) --- >>> var internalEnum; 1 >^^^^ @@ -1709,9 +1711,9 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ 2 > export enum 3 > internalEnum { a, b, c } -1 >Emitted(59, 5) Source(28, 19) + SourceIndex(3) -2 >Emitted(59, 9) Source(28, 31) + SourceIndex(3) -3 >Emitted(59, 21) Source(28, 55) + SourceIndex(3) +1 >Emitted(60, 5) Source(28, 19) + SourceIndex(3) +2 >Emitted(60, 9) Source(28, 31) + SourceIndex(3) +3 >Emitted(60, 21) Source(28, 55) + SourceIndex(3) --- >>> (function (internalEnum) { 1->^^^^ @@ -1721,9 +1723,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > export enum 3 > internalEnum -1->Emitted(60, 5) Source(28, 19) + SourceIndex(3) -2 >Emitted(60, 16) Source(28, 31) + SourceIndex(3) -3 >Emitted(60, 28) Source(28, 43) + SourceIndex(3) +1->Emitted(61, 5) Source(28, 19) + SourceIndex(3) +2 >Emitted(61, 16) Source(28, 31) + SourceIndex(3) +3 >Emitted(61, 28) Source(28, 43) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -1733,9 +1735,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(61, 9) Source(28, 46) + SourceIndex(3) -2 >Emitted(61, 50) Source(28, 47) + SourceIndex(3) -3 >Emitted(61, 51) Source(28, 47) + SourceIndex(3) +1->Emitted(62, 9) Source(28, 46) + SourceIndex(3) +2 >Emitted(62, 50) Source(28, 47) + SourceIndex(3) +3 >Emitted(62, 51) Source(28, 47) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -1745,9 +1747,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(62, 9) Source(28, 49) + SourceIndex(3) -2 >Emitted(62, 50) Source(28, 50) + SourceIndex(3) -3 >Emitted(62, 51) Source(28, 50) + SourceIndex(3) +1->Emitted(63, 9) Source(28, 49) + SourceIndex(3) +2 >Emitted(63, 50) Source(28, 50) + SourceIndex(3) +3 >Emitted(63, 51) Source(28, 50) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -1757,9 +1759,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(63, 9) Source(28, 52) + SourceIndex(3) -2 >Emitted(63, 50) Source(28, 53) + SourceIndex(3) -3 >Emitted(63, 51) Source(28, 53) + SourceIndex(3) +1->Emitted(64, 9) Source(28, 52) + SourceIndex(3) +2 >Emitted(64, 50) Source(28, 53) + SourceIndex(3) +3 >Emitted(64, 51) Source(28, 53) + SourceIndex(3) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^ @@ -1780,15 +1782,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(64, 5) Source(28, 54) + SourceIndex(3) -2 >Emitted(64, 6) Source(28, 55) + SourceIndex(3) -3 >Emitted(64, 8) Source(28, 31) + SourceIndex(3) -4 >Emitted(64, 20) Source(28, 43) + SourceIndex(3) -5 >Emitted(64, 23) Source(28, 31) + SourceIndex(3) -6 >Emitted(64, 43) Source(28, 43) + SourceIndex(3) -7 >Emitted(64, 48) Source(28, 31) + SourceIndex(3) -8 >Emitted(64, 68) Source(28, 43) + SourceIndex(3) -9 >Emitted(64, 76) Source(28, 55) + SourceIndex(3) +1->Emitted(65, 5) Source(28, 54) + SourceIndex(3) +2 >Emitted(65, 6) Source(28, 55) + SourceIndex(3) +3 >Emitted(65, 8) Source(28, 31) + SourceIndex(3) +4 >Emitted(65, 20) Source(28, 43) + SourceIndex(3) +5 >Emitted(65, 23) Source(28, 31) + SourceIndex(3) +6 >Emitted(65, 43) Source(28, 43) + SourceIndex(3) +7 >Emitted(65, 48) Source(28, 31) + SourceIndex(3) +8 >Emitted(65, 68) Source(28, 43) + SourceIndex(3) +9 >Emitted(65, 76) Source(28, 55) + SourceIndex(3) --- >>>})(normalN || (normalN = {})); 1 > @@ -1816,26 +1818,26 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(65, 1) Source(29, 1) + SourceIndex(3) -2 >Emitted(65, 2) Source(29, 2) + SourceIndex(3) -3 >Emitted(65, 4) Source(20, 11) + SourceIndex(3) -4 >Emitted(65, 11) Source(20, 18) + SourceIndex(3) -5 >Emitted(65, 16) Source(20, 11) + SourceIndex(3) -6 >Emitted(65, 23) Source(20, 18) + SourceIndex(3) -7 >Emitted(65, 31) Source(29, 2) + SourceIndex(3) +1 >Emitted(66, 1) Source(29, 1) + SourceIndex(3) +2 >Emitted(66, 2) Source(29, 2) + SourceIndex(3) +3 >Emitted(66, 4) Source(20, 11) + SourceIndex(3) +4 >Emitted(66, 11) Source(20, 18) + SourceIndex(3) +5 >Emitted(66, 16) Source(20, 11) + SourceIndex(3) +6 >Emitted(66, 23) Source(20, 18) + SourceIndex(3) +7 >Emitted(66, 31) Source(29, 2) + SourceIndex(3) --- >>>var internalC = (function () { 1-> 2 >^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> >/*@internal*/ -1->Emitted(66, 1) Source(30, 15) + SourceIndex(3) +1->Emitted(67, 1) Source(30, 15) + SourceIndex(3) --- >>> function internalC() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(67, 5) Source(30, 15) + SourceIndex(3) +1->Emitted(68, 5) Source(30, 15) + SourceIndex(3) --- >>> } 1->^^^^ @@ -1843,16 +1845,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->class internalC { 2 > } -1->Emitted(68, 5) Source(30, 32) + SourceIndex(3) -2 >Emitted(68, 6) Source(30, 33) + SourceIndex(3) +1->Emitted(69, 5) Source(30, 32) + SourceIndex(3) +2 >Emitted(69, 6) Source(30, 33) + SourceIndex(3) --- >>> return internalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(69, 5) Source(30, 32) + SourceIndex(3) -2 >Emitted(69, 21) Source(30, 33) + SourceIndex(3) +1->Emitted(70, 5) Source(30, 32) + SourceIndex(3) +2 >Emitted(70, 21) Source(30, 33) + SourceIndex(3) --- >>>}()); 1 > @@ -1864,10 +1866,10 @@ sourceFile:../../../second/second_part1.ts 2 >} 3 > 4 > class internalC {} -1 >Emitted(70, 1) Source(30, 32) + SourceIndex(3) -2 >Emitted(70, 2) Source(30, 33) + SourceIndex(3) -3 >Emitted(70, 2) Source(30, 15) + SourceIndex(3) -4 >Emitted(70, 6) Source(30, 33) + SourceIndex(3) +1 >Emitted(71, 1) Source(30, 32) + SourceIndex(3) +2 >Emitted(71, 2) Source(30, 33) + SourceIndex(3) +3 >Emitted(71, 2) Source(30, 15) + SourceIndex(3) +4 >Emitted(71, 6) Source(30, 33) + SourceIndex(3) --- >>>function internalfoo() { } 1-> @@ -1881,11 +1883,11 @@ sourceFile:../../../second/second_part1.ts 3 > internalfoo 4 > () { 5 > } -1->Emitted(71, 1) Source(31, 15) + SourceIndex(3) -2 >Emitted(71, 10) Source(31, 24) + SourceIndex(3) -3 >Emitted(71, 21) Source(31, 35) + SourceIndex(3) -4 >Emitted(71, 26) Source(31, 39) + SourceIndex(3) -5 >Emitted(71, 27) Source(31, 40) + SourceIndex(3) +1->Emitted(72, 1) Source(31, 15) + SourceIndex(3) +2 >Emitted(72, 10) Source(31, 24) + SourceIndex(3) +3 >Emitted(72, 21) Source(31, 35) + SourceIndex(3) +4 >Emitted(72, 26) Source(31, 39) + SourceIndex(3) +5 >Emitted(72, 27) Source(31, 40) + SourceIndex(3) --- >>>var internalNamespace; 1 > @@ -1898,10 +1900,10 @@ sourceFile:../../../second/second_part1.ts 2 >namespace 3 > internalNamespace 4 > { export class someClass {} } -1 >Emitted(72, 1) Source(32, 15) + SourceIndex(3) -2 >Emitted(72, 5) Source(32, 25) + SourceIndex(3) -3 >Emitted(72, 22) Source(32, 42) + SourceIndex(3) -4 >Emitted(72, 23) Source(32, 72) + SourceIndex(3) +1 >Emitted(73, 1) Source(32, 15) + SourceIndex(3) +2 >Emitted(73, 5) Source(32, 25) + SourceIndex(3) +3 >Emitted(73, 22) Source(32, 42) + SourceIndex(3) +4 >Emitted(73, 23) Source(32, 72) + SourceIndex(3) --- >>>(function (internalNamespace) { 1-> @@ -1911,21 +1913,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > internalNamespace -1->Emitted(73, 1) Source(32, 15) + SourceIndex(3) -2 >Emitted(73, 12) Source(32, 25) + SourceIndex(3) -3 >Emitted(73, 29) Source(32, 42) + SourceIndex(3) +1->Emitted(74, 1) Source(32, 15) + SourceIndex(3) +2 >Emitted(74, 12) Source(32, 25) + SourceIndex(3) +3 >Emitted(74, 29) Source(32, 42) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(74, 5) Source(32, 45) + SourceIndex(3) +1->Emitted(75, 5) Source(32, 45) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(75, 9) Source(32, 45) + SourceIndex(3) +1->Emitted(76, 9) Source(32, 45) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -1933,16 +1935,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(76, 9) Source(32, 69) + SourceIndex(3) -2 >Emitted(76, 10) Source(32, 70) + SourceIndex(3) +1->Emitted(77, 9) Source(32, 69) + SourceIndex(3) +2 >Emitted(77, 10) Source(32, 70) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(77, 9) Source(32, 69) + SourceIndex(3) -2 >Emitted(77, 25) Source(32, 70) + SourceIndex(3) +1->Emitted(78, 9) Source(32, 69) + SourceIndex(3) +2 >Emitted(78, 25) Source(32, 70) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -1954,10 +1956,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(78, 5) Source(32, 69) + SourceIndex(3) -2 >Emitted(78, 6) Source(32, 70) + SourceIndex(3) -3 >Emitted(78, 6) Source(32, 45) + SourceIndex(3) -4 >Emitted(78, 10) Source(32, 70) + SourceIndex(3) +1 >Emitted(79, 5) Source(32, 69) + SourceIndex(3) +2 >Emitted(79, 6) Source(32, 70) + SourceIndex(3) +3 >Emitted(79, 6) Source(32, 45) + SourceIndex(3) +4 >Emitted(79, 10) Source(32, 70) + SourceIndex(3) --- >>> internalNamespace.someClass = someClass; 1->^^^^ @@ -1969,10 +1971,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(79, 5) Source(32, 58) + SourceIndex(3) -2 >Emitted(79, 32) Source(32, 67) + SourceIndex(3) -3 >Emitted(79, 44) Source(32, 70) + SourceIndex(3) -4 >Emitted(79, 45) Source(32, 70) + SourceIndex(3) +1->Emitted(80, 5) Source(32, 58) + SourceIndex(3) +2 >Emitted(80, 32) Source(32, 67) + SourceIndex(3) +3 >Emitted(80, 44) Source(32, 70) + SourceIndex(3) +4 >Emitted(80, 45) Source(32, 70) + SourceIndex(3) --- >>>})(internalNamespace || (internalNamespace = {})); 1-> @@ -1989,13 +1991,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalNamespace 7 > { export class someClass {} } -1->Emitted(80, 1) Source(32, 71) + SourceIndex(3) -2 >Emitted(80, 2) Source(32, 72) + SourceIndex(3) -3 >Emitted(80, 4) Source(32, 25) + SourceIndex(3) -4 >Emitted(80, 21) Source(32, 42) + SourceIndex(3) -5 >Emitted(80, 26) Source(32, 25) + SourceIndex(3) -6 >Emitted(80, 43) Source(32, 42) + SourceIndex(3) -7 >Emitted(80, 51) Source(32, 72) + SourceIndex(3) +1->Emitted(81, 1) Source(32, 71) + SourceIndex(3) +2 >Emitted(81, 2) Source(32, 72) + SourceIndex(3) +3 >Emitted(81, 4) Source(32, 25) + SourceIndex(3) +4 >Emitted(81, 21) Source(32, 42) + SourceIndex(3) +5 >Emitted(81, 26) Source(32, 25) + SourceIndex(3) +6 >Emitted(81, 43) Source(32, 42) + SourceIndex(3) +7 >Emitted(81, 51) Source(32, 72) + SourceIndex(3) --- >>>var internalOther; 1 > @@ -2008,10 +2010,10 @@ sourceFile:../../../second/second_part1.ts 2 >namespace 3 > internalOther 4 > .something { export class someClass {} } -1 >Emitted(81, 1) Source(33, 15) + SourceIndex(3) -2 >Emitted(81, 5) Source(33, 25) + SourceIndex(3) -3 >Emitted(81, 18) Source(33, 38) + SourceIndex(3) -4 >Emitted(81, 19) Source(33, 78) + SourceIndex(3) +1 >Emitted(82, 1) Source(33, 15) + SourceIndex(3) +2 >Emitted(82, 5) Source(33, 25) + SourceIndex(3) +3 >Emitted(82, 18) Source(33, 38) + SourceIndex(3) +4 >Emitted(82, 19) Source(33, 78) + SourceIndex(3) --- >>>(function (internalOther) { 1-> @@ -2020,9 +2022,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > internalOther -1->Emitted(82, 1) Source(33, 15) + SourceIndex(3) -2 >Emitted(82, 12) Source(33, 25) + SourceIndex(3) -3 >Emitted(82, 25) Source(33, 38) + SourceIndex(3) +1->Emitted(83, 1) Source(33, 15) + SourceIndex(3) +2 >Emitted(83, 12) Source(33, 25) + SourceIndex(3) +3 >Emitted(83, 25) Source(33, 38) + SourceIndex(3) --- >>> var something; 1 >^^^^ @@ -2034,10 +2036,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(83, 5) Source(33, 39) + SourceIndex(3) -2 >Emitted(83, 9) Source(33, 39) + SourceIndex(3) -3 >Emitted(83, 18) Source(33, 48) + SourceIndex(3) -4 >Emitted(83, 19) Source(33, 78) + SourceIndex(3) +1 >Emitted(84, 5) Source(33, 39) + SourceIndex(3) +2 >Emitted(84, 9) Source(33, 39) + SourceIndex(3) +3 >Emitted(84, 18) Source(33, 48) + SourceIndex(3) +4 >Emitted(84, 19) Source(33, 78) + SourceIndex(3) --- >>> (function (something) { 1->^^^^ @@ -2047,21 +2049,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(84, 5) Source(33, 39) + SourceIndex(3) -2 >Emitted(84, 16) Source(33, 39) + SourceIndex(3) -3 >Emitted(84, 25) Source(33, 48) + SourceIndex(3) +1->Emitted(85, 5) Source(33, 39) + SourceIndex(3) +2 >Emitted(85, 16) Source(33, 39) + SourceIndex(3) +3 >Emitted(85, 25) Source(33, 48) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(85, 9) Source(33, 51) + SourceIndex(3) +1->Emitted(86, 9) Source(33, 51) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(86, 13) Source(33, 51) + SourceIndex(3) +1->Emitted(87, 13) Source(33, 51) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -2069,16 +2071,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(87, 13) Source(33, 75) + SourceIndex(3) -2 >Emitted(87, 14) Source(33, 76) + SourceIndex(3) +1->Emitted(88, 13) Source(33, 75) + SourceIndex(3) +2 >Emitted(88, 14) Source(33, 76) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(88, 13) Source(33, 75) + SourceIndex(3) -2 >Emitted(88, 29) Source(33, 76) + SourceIndex(3) +1->Emitted(89, 13) Source(33, 75) + SourceIndex(3) +2 >Emitted(89, 29) Source(33, 76) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -2090,10 +2092,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(89, 9) Source(33, 75) + SourceIndex(3) -2 >Emitted(89, 10) Source(33, 76) + SourceIndex(3) -3 >Emitted(89, 10) Source(33, 51) + SourceIndex(3) -4 >Emitted(89, 14) Source(33, 76) + SourceIndex(3) +1 >Emitted(90, 9) Source(33, 75) + SourceIndex(3) +2 >Emitted(90, 10) Source(33, 76) + SourceIndex(3) +3 >Emitted(90, 10) Source(33, 51) + SourceIndex(3) +4 >Emitted(90, 14) Source(33, 76) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^ @@ -2105,10 +2107,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(90, 9) Source(33, 64) + SourceIndex(3) -2 >Emitted(90, 28) Source(33, 73) + SourceIndex(3) -3 >Emitted(90, 40) Source(33, 76) + SourceIndex(3) -4 >Emitted(90, 41) Source(33, 76) + SourceIndex(3) +1->Emitted(91, 9) Source(33, 64) + SourceIndex(3) +2 >Emitted(91, 28) Source(33, 73) + SourceIndex(3) +3 >Emitted(91, 40) Source(33, 76) + SourceIndex(3) +4 >Emitted(91, 41) Source(33, 76) + SourceIndex(3) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^ @@ -2129,15 +2131,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(91, 5) Source(33, 77) + SourceIndex(3) -2 >Emitted(91, 6) Source(33, 78) + SourceIndex(3) -3 >Emitted(91, 8) Source(33, 39) + SourceIndex(3) -4 >Emitted(91, 17) Source(33, 48) + SourceIndex(3) -5 >Emitted(91, 20) Source(33, 39) + SourceIndex(3) -6 >Emitted(91, 43) Source(33, 48) + SourceIndex(3) -7 >Emitted(91, 48) Source(33, 39) + SourceIndex(3) -8 >Emitted(91, 71) Source(33, 48) + SourceIndex(3) -9 >Emitted(91, 79) Source(33, 78) + SourceIndex(3) +1->Emitted(92, 5) Source(33, 77) + SourceIndex(3) +2 >Emitted(92, 6) Source(33, 78) + SourceIndex(3) +3 >Emitted(92, 8) Source(33, 39) + SourceIndex(3) +4 >Emitted(92, 17) Source(33, 48) + SourceIndex(3) +5 >Emitted(92, 20) Source(33, 39) + SourceIndex(3) +6 >Emitted(92, 43) Source(33, 48) + SourceIndex(3) +7 >Emitted(92, 48) Source(33, 39) + SourceIndex(3) +8 >Emitted(92, 71) Source(33, 48) + SourceIndex(3) +9 >Emitted(92, 79) Source(33, 78) + SourceIndex(3) --- >>>})(internalOther || (internalOther = {})); 1 > @@ -2155,13 +2157,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalOther 7 > .something { export class someClass {} } -1 >Emitted(92, 1) Source(33, 77) + SourceIndex(3) -2 >Emitted(92, 2) Source(33, 78) + SourceIndex(3) -3 >Emitted(92, 4) Source(33, 25) + SourceIndex(3) -4 >Emitted(92, 17) Source(33, 38) + SourceIndex(3) -5 >Emitted(92, 22) Source(33, 25) + SourceIndex(3) -6 >Emitted(92, 35) Source(33, 38) + SourceIndex(3) -7 >Emitted(92, 43) Source(33, 78) + SourceIndex(3) +1 >Emitted(93, 1) Source(33, 77) + SourceIndex(3) +2 >Emitted(93, 2) Source(33, 78) + SourceIndex(3) +3 >Emitted(93, 4) Source(33, 25) + SourceIndex(3) +4 >Emitted(93, 17) Source(33, 38) + SourceIndex(3) +5 >Emitted(93, 22) Source(33, 25) + SourceIndex(3) +6 >Emitted(93, 35) Source(33, 38) + SourceIndex(3) +7 >Emitted(93, 43) Source(33, 78) + SourceIndex(3) --- >>>var internalImport = internalNamespace.someClass; 1-> @@ -2181,14 +2183,14 @@ sourceFile:../../../second/second_part1.ts 6 > . 7 > someClass 8 > ; -1->Emitted(93, 1) Source(34, 15) + SourceIndex(3) -2 >Emitted(93, 5) Source(34, 22) + SourceIndex(3) -3 >Emitted(93, 19) Source(34, 36) + SourceIndex(3) -4 >Emitted(93, 22) Source(34, 39) + SourceIndex(3) -5 >Emitted(93, 39) Source(34, 56) + SourceIndex(3) -6 >Emitted(93, 40) Source(34, 57) + SourceIndex(3) -7 >Emitted(93, 49) Source(34, 66) + SourceIndex(3) -8 >Emitted(93, 50) Source(34, 67) + SourceIndex(3) +1->Emitted(94, 1) Source(34, 15) + SourceIndex(3) +2 >Emitted(94, 5) Source(34, 22) + SourceIndex(3) +3 >Emitted(94, 19) Source(34, 36) + SourceIndex(3) +4 >Emitted(94, 22) Source(34, 39) + SourceIndex(3) +5 >Emitted(94, 39) Source(34, 56) + SourceIndex(3) +6 >Emitted(94, 40) Source(34, 57) + SourceIndex(3) +7 >Emitted(94, 49) Source(34, 66) + SourceIndex(3) +8 >Emitted(94, 50) Source(34, 67) + SourceIndex(3) --- >>>var internalConst = 10; 1 > @@ -2205,12 +2207,12 @@ sourceFile:../../../second/second_part1.ts 4 > = 5 > 10 6 > ; -1 >Emitted(94, 1) Source(36, 15) + SourceIndex(3) -2 >Emitted(94, 5) Source(36, 21) + SourceIndex(3) -3 >Emitted(94, 18) Source(36, 34) + SourceIndex(3) -4 >Emitted(94, 21) Source(36, 37) + SourceIndex(3) -5 >Emitted(94, 23) Source(36, 39) + SourceIndex(3) -6 >Emitted(94, 24) Source(36, 40) + SourceIndex(3) +1 >Emitted(95, 1) Source(36, 15) + SourceIndex(3) +2 >Emitted(95, 5) Source(36, 21) + SourceIndex(3) +3 >Emitted(95, 18) Source(36, 34) + SourceIndex(3) +4 >Emitted(95, 21) Source(36, 37) + SourceIndex(3) +5 >Emitted(95, 23) Source(36, 39) + SourceIndex(3) +6 >Emitted(95, 24) Source(36, 40) + SourceIndex(3) --- >>>var internalEnum; 1 > @@ -2221,9 +2223,9 @@ sourceFile:../../../second/second_part1.ts >/*@internal*/ 2 >enum 3 > internalEnum { a, b, c } -1 >Emitted(95, 1) Source(37, 15) + SourceIndex(3) -2 >Emitted(95, 5) Source(37, 20) + SourceIndex(3) -3 >Emitted(95, 17) Source(37, 44) + SourceIndex(3) +1 >Emitted(96, 1) Source(37, 15) + SourceIndex(3) +2 >Emitted(96, 5) Source(37, 20) + SourceIndex(3) +3 >Emitted(96, 17) Source(37, 44) + SourceIndex(3) --- >>>(function (internalEnum) { 1-> @@ -2233,9 +2235,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >enum 3 > internalEnum -1->Emitted(96, 1) Source(37, 15) + SourceIndex(3) -2 >Emitted(96, 12) Source(37, 20) + SourceIndex(3) -3 >Emitted(96, 24) Source(37, 32) + SourceIndex(3) +1->Emitted(97, 1) Source(37, 15) + SourceIndex(3) +2 >Emitted(97, 12) Source(37, 20) + SourceIndex(3) +3 >Emitted(97, 24) Source(37, 32) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^ @@ -2245,9 +2247,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(97, 5) Source(37, 35) + SourceIndex(3) -2 >Emitted(97, 46) Source(37, 36) + SourceIndex(3) -3 >Emitted(97, 47) Source(37, 36) + SourceIndex(3) +1->Emitted(98, 5) Source(37, 35) + SourceIndex(3) +2 >Emitted(98, 46) Source(37, 36) + SourceIndex(3) +3 >Emitted(98, 47) Source(37, 36) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^ @@ -2257,9 +2259,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(98, 5) Source(37, 38) + SourceIndex(3) -2 >Emitted(98, 46) Source(37, 39) + SourceIndex(3) -3 >Emitted(98, 47) Source(37, 39) + SourceIndex(3) +1->Emitted(99, 5) Source(37, 38) + SourceIndex(3) +2 >Emitted(99, 46) Source(37, 39) + SourceIndex(3) +3 >Emitted(99, 47) Source(37, 39) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^ @@ -2268,9 +2270,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(99, 5) Source(37, 41) + SourceIndex(3) -2 >Emitted(99, 46) Source(37, 42) + SourceIndex(3) -3 >Emitted(99, 47) Source(37, 42) + SourceIndex(3) +1->Emitted(100, 5) Source(37, 41) + SourceIndex(3) +2 >Emitted(100, 46) Source(37, 42) + SourceIndex(3) +3 >Emitted(100, 47) Source(37, 42) + SourceIndex(3) --- >>>})(internalEnum || (internalEnum = {})); 1 > @@ -2287,13 +2289,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalEnum 7 > { a, b, c } -1 >Emitted(100, 1) Source(37, 43) + SourceIndex(3) -2 >Emitted(100, 2) Source(37, 44) + SourceIndex(3) -3 >Emitted(100, 4) Source(37, 20) + SourceIndex(3) -4 >Emitted(100, 16) Source(37, 32) + SourceIndex(3) -5 >Emitted(100, 21) Source(37, 20) + SourceIndex(3) -6 >Emitted(100, 33) Source(37, 32) + SourceIndex(3) -7 >Emitted(100, 41) Source(37, 44) + SourceIndex(3) +1 >Emitted(101, 1) Source(37, 43) + SourceIndex(3) +2 >Emitted(101, 2) Source(37, 44) + SourceIndex(3) +3 >Emitted(101, 4) Source(37, 20) + SourceIndex(3) +4 >Emitted(101, 16) Source(37, 32) + SourceIndex(3) +5 >Emitted(101, 21) Source(37, 20) + SourceIndex(3) +6 >Emitted(101, 33) Source(37, 32) + SourceIndex(3) +7 >Emitted(101, 41) Source(37, 44) + SourceIndex(3) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -2303,13 +2305,13 @@ sourceFile:../../../second/second_part2.ts 1 > 2 >^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(101, 1) Source(1, 1) + SourceIndex(4) +1 >Emitted(102, 1) Source(1, 1) + SourceIndex(4) --- >>> function C() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(102, 5) Source(1, 1) + SourceIndex(4) +1->Emitted(103, 5) Source(1, 1) + SourceIndex(4) --- >>> } 1->^^^^ @@ -2321,8 +2323,8 @@ sourceFile:../../../second/second_part2.ts > } > 2 > } -1->Emitted(103, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(103, 6) Source(5, 2) + SourceIndex(4) +1->Emitted(104, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(104, 6) Source(5, 2) + SourceIndex(4) --- >>> C.prototype.doSomething = function () { 1->^^^^ @@ -2332,9 +2334,9 @@ sourceFile:../../../second/second_part2.ts 1-> 2 > doSomething 3 > -1->Emitted(104, 5) Source(2, 5) + SourceIndex(4) -2 >Emitted(104, 28) Source(2, 16) + SourceIndex(4) -3 >Emitted(104, 31) Source(2, 5) + SourceIndex(4) +1->Emitted(105, 5) Source(2, 5) + SourceIndex(4) +2 >Emitted(105, 28) Source(2, 16) + SourceIndex(4) +3 >Emitted(105, 31) Source(2, 5) + SourceIndex(4) --- >>> console.log("something got done"); 1->^^^^^^^^ @@ -2354,14 +2356,14 @@ sourceFile:../../../second/second_part2.ts 6 > "something got done" 7 > ) 8 > ; -1->Emitted(105, 9) Source(3, 9) + SourceIndex(4) -2 >Emitted(105, 16) Source(3, 16) + SourceIndex(4) -3 >Emitted(105, 17) Source(3, 17) + SourceIndex(4) -4 >Emitted(105, 20) Source(3, 20) + SourceIndex(4) -5 >Emitted(105, 21) Source(3, 21) + SourceIndex(4) -6 >Emitted(105, 41) Source(3, 41) + SourceIndex(4) -7 >Emitted(105, 42) Source(3, 42) + SourceIndex(4) -8 >Emitted(105, 43) Source(3, 43) + SourceIndex(4) +1->Emitted(106, 9) Source(3, 9) + SourceIndex(4) +2 >Emitted(106, 16) Source(3, 16) + SourceIndex(4) +3 >Emitted(106, 17) Source(3, 17) + SourceIndex(4) +4 >Emitted(106, 20) Source(3, 20) + SourceIndex(4) +5 >Emitted(106, 21) Source(3, 21) + SourceIndex(4) +6 >Emitted(106, 41) Source(3, 41) + SourceIndex(4) +7 >Emitted(106, 42) Source(3, 42) + SourceIndex(4) +8 >Emitted(106, 43) Source(3, 43) + SourceIndex(4) --- >>> }; 1 >^^^^ @@ -2370,8 +2372,8 @@ sourceFile:../../../second/second_part2.ts 1 > > 2 > } -1 >Emitted(106, 5) Source(4, 5) + SourceIndex(4) -2 >Emitted(106, 6) Source(4, 6) + SourceIndex(4) +1 >Emitted(107, 5) Source(4, 5) + SourceIndex(4) +2 >Emitted(107, 6) Source(4, 6) + SourceIndex(4) --- >>> return C; 1->^^^^ @@ -2379,8 +2381,8 @@ sourceFile:../../../second/second_part2.ts 1-> > 2 > } -1->Emitted(107, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(107, 13) Source(5, 2) + SourceIndex(4) +1->Emitted(108, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(108, 13) Source(5, 2) + SourceIndex(4) --- >>>}()); 1 > @@ -2396,10 +2398,10 @@ sourceFile:../../../second/second_part2.ts > console.log("something got done"); > } > } -1 >Emitted(108, 1) Source(5, 1) + SourceIndex(4) -2 >Emitted(108, 2) Source(5, 2) + SourceIndex(4) -3 >Emitted(108, 2) Source(1, 1) + SourceIndex(4) -4 >Emitted(108, 6) Source(5, 2) + SourceIndex(4) +1 >Emitted(109, 1) Source(5, 1) + SourceIndex(4) +2 >Emitted(109, 2) Source(5, 2) + SourceIndex(4) +3 >Emitted(109, 2) Source(1, 1) + SourceIndex(4) +4 >Emitted(109, 6) Source(5, 2) + SourceIndex(4) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -2423,14 +2425,14 @@ sourceFile:../../third_part1.ts 6 > C 7 > () 8 > ; -1->Emitted(109, 1) Source(1, 1) + SourceIndex(5) -2 >Emitted(109, 5) Source(1, 5) + SourceIndex(5) -3 >Emitted(109, 6) Source(1, 6) + SourceIndex(5) -4 >Emitted(109, 9) Source(1, 9) + SourceIndex(5) -5 >Emitted(109, 13) Source(1, 13) + SourceIndex(5) -6 >Emitted(109, 14) Source(1, 14) + SourceIndex(5) -7 >Emitted(109, 16) Source(1, 16) + SourceIndex(5) -8 >Emitted(109, 17) Source(1, 17) + SourceIndex(5) +1->Emitted(110, 1) Source(1, 1) + SourceIndex(5) +2 >Emitted(110, 5) Source(1, 5) + SourceIndex(5) +3 >Emitted(110, 6) Source(1, 6) + SourceIndex(5) +4 >Emitted(110, 9) Source(1, 9) + SourceIndex(5) +5 >Emitted(110, 13) Source(1, 13) + SourceIndex(5) +6 >Emitted(110, 14) Source(1, 14) + SourceIndex(5) +7 >Emitted(110, 16) Source(1, 16) + SourceIndex(5) +8 >Emitted(110, 17) Source(1, 17) + SourceIndex(5) --- >>>c.doSomething(); 1-> @@ -2447,12 +2449,12 @@ sourceFile:../../third_part1.ts 4 > doSomething 5 > () 6 > ; -1->Emitted(110, 1) Source(2, 1) + SourceIndex(5) -2 >Emitted(110, 2) Source(2, 2) + SourceIndex(5) -3 >Emitted(110, 3) Source(2, 3) + SourceIndex(5) -4 >Emitted(110, 14) Source(2, 14) + SourceIndex(5) -5 >Emitted(110, 16) Source(2, 16) + SourceIndex(5) -6 >Emitted(110, 17) Source(2, 17) + SourceIndex(5) +1->Emitted(111, 1) Source(2, 1) + SourceIndex(5) +2 >Emitted(111, 2) Source(2, 2) + SourceIndex(5) +3 >Emitted(111, 3) Source(2, 3) + SourceIndex(5) +4 >Emitted(111, 14) Source(2, 14) + SourceIndex(5) +5 >Emitted(111, 16) Source(2, 16) + SourceIndex(5) +6 >Emitted(111, 17) Source(2, 17) + SourceIndex(5) --- >>>//# sourceMappingURL=third-output.js.map @@ -2480,20 +2482,20 @@ sourceFile:../../third_part1.ts }, { "pos": 109, - "end": 3162, + "end": 3210, "kind": "prepend", "data": "../../../2/second-output.js", "texts": [ { "pos": 109, - "end": 3162, + "end": 3210, "kind": "text" } ] }, { - "pos": 3162, - "end": 3198, + "pos": 3210, + "end": 3246, "kind": "text" } ] @@ -2552,9 +2554,9 @@ function f() { } ---------------------------------------------------------------------- -prepend: (109-3162):: ../../../2/second-output.js texts:: 1 +prepend: (109-3210):: ../../../2/second-output.js texts:: 1 >>-------------------------------------------------------------------- -text: (109-3162) +text: (109-3210) var N; (function (N) { function f() { @@ -2565,8 +2567,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -2659,7 +2662,7 @@ var C = (function () { }()); ---------------------------------------------------------------------- -text: (3162-3198) +text: (3210-3246) var c = new C(); c.doSomething(); diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-comment-when-one-two-three-are-prepended-in-order.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-comment-when-one-two-three-are-prepended-in-order.js index 92e1b523086d0..3a0e992075398 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-comment-when-one-two-three-are-prepended-in-order.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-comment-when-one-two-three-are-prepended-in-order.js @@ -59,8 +59,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -154,7 +155,7 @@ var C = (function () { //# sourceMappingURL=second-output.js.map //// [/src/2/second-output.js.map] -{"version":3,"file":"second-output.js","sourceRoot":"","sources":["../first/first_PART1.ts","../first/first_part2.ts","../first/first_part3.ts","../second/second_part1.ts","../second/second_part2.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"second-output.js","sourceRoot":"","sources":["../first/first_PART1.ts","../first/first_part2.ts","../first/first_part3.ts","../second/second_part1.ts","../second/second_part2.ts"],"names":[],"mappings":"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"} //// [/src/2/second-output.js.map.baseline.txt] =================================================================== @@ -483,13 +484,14 @@ sourceFile:../second/second_part1.ts >>> } 1->^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1->constructor() { 2 > } 1->Emitted(17, 5) Source(14, 36) + SourceIndex(3) 2 >Emitted(17, 6) Source(14, 37) + SourceIndex(3) --- ->>> normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> normalC_prototype.method = function () { }; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^ @@ -503,13 +505,13 @@ sourceFile:../second/second_part1.ts 3 > 4 > method() { 5 > } -1->Emitted(18, 5) Source(16, 20) + SourceIndex(3) -2 >Emitted(18, 29) Source(16, 26) + SourceIndex(3) -3 >Emitted(18, 32) Source(16, 20) + SourceIndex(3) -4 >Emitted(18, 46) Source(16, 31) + SourceIndex(3) -5 >Emitted(18, 47) Source(16, 32) + SourceIndex(3) +1->Emitted(19, 5) Source(16, 20) + SourceIndex(3) +2 >Emitted(19, 29) Source(16, 26) + SourceIndex(3) +3 >Emitted(19, 32) Source(16, 20) + SourceIndex(3) +4 >Emitted(19, 46) Source(16, 31) + SourceIndex(3) +5 >Emitted(19, 47) Source(16, 32) + SourceIndex(3) --- ->>> Object.defineProperty(normalC.prototype, "c", { +>>> Object.defineProperty(normalC_prototype, "c", { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -517,9 +519,9 @@ sourceFile:../second/second_part1.ts > /**@internal*/ 2 > get 3 > c -1->Emitted(19, 5) Source(17, 20) + SourceIndex(3) -2 >Emitted(19, 27) Source(17, 24) + SourceIndex(3) -3 >Emitted(19, 49) Source(17, 25) + SourceIndex(3) +1->Emitted(20, 5) Source(17, 20) + SourceIndex(3) +2 >Emitted(20, 27) Source(17, 24) + SourceIndex(3) +3 >Emitted(20, 49) Source(17, 25) + SourceIndex(3) --- >>> get: function () { return 10; }, 1 >^^^^^^^^^^^^^ @@ -536,13 +538,13 @@ sourceFile:../second/second_part1.ts 5 > ; 6 > 7 > } -1 >Emitted(20, 14) Source(17, 20) + SourceIndex(3) -2 >Emitted(20, 28) Source(17, 30) + SourceIndex(3) -3 >Emitted(20, 35) Source(17, 37) + SourceIndex(3) -4 >Emitted(20, 37) Source(17, 39) + SourceIndex(3) -5 >Emitted(20, 38) Source(17, 40) + SourceIndex(3) -6 >Emitted(20, 39) Source(17, 41) + SourceIndex(3) -7 >Emitted(20, 40) Source(17, 42) + SourceIndex(3) +1 >Emitted(21, 14) Source(17, 20) + SourceIndex(3) +2 >Emitted(21, 28) Source(17, 30) + SourceIndex(3) +3 >Emitted(21, 35) Source(17, 37) + SourceIndex(3) +4 >Emitted(21, 37) Source(17, 39) + SourceIndex(3) +5 >Emitted(21, 38) Source(17, 40) + SourceIndex(3) +6 >Emitted(21, 39) Source(17, 41) + SourceIndex(3) +7 >Emitted(21, 40) Source(17, 42) + SourceIndex(3) --- >>> set: function (val) { }, 1 >^^^^^^^^^^^^^ @@ -556,11 +558,11 @@ sourceFile:../second/second_part1.ts 3 > val: number 4 > ) { 5 > } -1 >Emitted(21, 14) Source(18, 20) + SourceIndex(3) -2 >Emitted(21, 24) Source(18, 26) + SourceIndex(3) -3 >Emitted(21, 27) Source(18, 37) + SourceIndex(3) -4 >Emitted(21, 31) Source(18, 41) + SourceIndex(3) -5 >Emitted(21, 32) Source(18, 42) + SourceIndex(3) +1 >Emitted(22, 14) Source(18, 20) + SourceIndex(3) +2 >Emitted(22, 24) Source(18, 26) + SourceIndex(3) +3 >Emitted(22, 27) Source(18, 37) + SourceIndex(3) +4 >Emitted(22, 31) Source(18, 41) + SourceIndex(3) +5 >Emitted(22, 32) Source(18, 42) + SourceIndex(3) --- >>> enumerable: false, >>> configurable: true @@ -568,7 +570,7 @@ sourceFile:../second/second_part1.ts 1 >^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(24, 8) Source(17, 42) + SourceIndex(3) +1 >Emitted(25, 8) Source(17, 42) + SourceIndex(3) --- >>> return normalC; 1->^^^^ @@ -577,8 +579,8 @@ sourceFile:../second/second_part1.ts > /**@internal*/ set c(val: number) { } > 2 > } -1->Emitted(25, 5) Source(19, 1) + SourceIndex(3) -2 >Emitted(25, 19) Source(19, 2) + SourceIndex(3) +1->Emitted(26, 5) Source(19, 1) + SourceIndex(3) +2 >Emitted(26, 19) Source(19, 2) + SourceIndex(3) --- >>>}()); 1 > @@ -596,10 +598,10 @@ sourceFile:../second/second_part1.ts > /**@internal*/ get c() { return 10; } > /**@internal*/ set c(val: number) { } > } -1 >Emitted(26, 1) Source(19, 1) + SourceIndex(3) -2 >Emitted(26, 2) Source(19, 2) + SourceIndex(3) -3 >Emitted(26, 2) Source(13, 1) + SourceIndex(3) -4 >Emitted(26, 6) Source(19, 2) + SourceIndex(3) +1 >Emitted(27, 1) Source(19, 1) + SourceIndex(3) +2 >Emitted(27, 2) Source(19, 2) + SourceIndex(3) +3 >Emitted(27, 2) Source(13, 1) + SourceIndex(3) +4 >Emitted(27, 6) Source(19, 2) + SourceIndex(3) --- >>>var normalN; 1-> @@ -621,10 +623,10 @@ sourceFile:../second/second_part1.ts > /**@internal*/ export const internalConst = 10; > /**@internal*/ export enum internalEnum { a, b, c } > } -1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(27, 5) Source(20, 11) + SourceIndex(3) -3 >Emitted(27, 12) Source(20, 18) + SourceIndex(3) -4 >Emitted(27, 13) Source(29, 2) + SourceIndex(3) +1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(28, 5) Source(20, 11) + SourceIndex(3) +3 >Emitted(28, 12) Source(20, 18) + SourceIndex(3) +4 >Emitted(28, 13) Source(29, 2) + SourceIndex(3) --- >>>(function (normalN) { 1-> @@ -634,22 +636,22 @@ sourceFile:../second/second_part1.ts 1-> 2 >namespace 3 > normalN -1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(28, 12) Source(20, 11) + SourceIndex(3) -3 >Emitted(28, 19) Source(20, 18) + SourceIndex(3) +1->Emitted(29, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(29, 12) Source(20, 11) + SourceIndex(3) +3 >Emitted(29, 19) Source(20, 18) + SourceIndex(3) --- >>> var C = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { > /**@internal*/ -1->Emitted(29, 5) Source(21, 20) + SourceIndex(3) +1->Emitted(30, 5) Source(21, 20) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(30, 9) Source(21, 20) + SourceIndex(3) +1->Emitted(31, 9) Source(21, 20) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -657,16 +659,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(31, 9) Source(21, 37) + SourceIndex(3) -2 >Emitted(31, 10) Source(21, 38) + SourceIndex(3) +1->Emitted(32, 9) Source(21, 37) + SourceIndex(3) +2 >Emitted(32, 10) Source(21, 38) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(32, 9) Source(21, 37) + SourceIndex(3) -2 >Emitted(32, 17) Source(21, 38) + SourceIndex(3) +1->Emitted(33, 9) Source(21, 37) + SourceIndex(3) +2 >Emitted(33, 17) Source(21, 38) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -678,10 +680,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(33, 5) Source(21, 37) + SourceIndex(3) -2 >Emitted(33, 6) Source(21, 38) + SourceIndex(3) -3 >Emitted(33, 6) Source(21, 20) + SourceIndex(3) -4 >Emitted(33, 10) Source(21, 38) + SourceIndex(3) +1 >Emitted(34, 5) Source(21, 37) + SourceIndex(3) +2 >Emitted(34, 6) Source(21, 38) + SourceIndex(3) +3 >Emitted(34, 6) Source(21, 20) + SourceIndex(3) +4 >Emitted(34, 10) Source(21, 38) + SourceIndex(3) --- >>> normalN.C = C; 1->^^^^ @@ -693,10 +695,10 @@ sourceFile:../second/second_part1.ts 2 > C 3 > { } 4 > -1->Emitted(34, 5) Source(21, 33) + SourceIndex(3) -2 >Emitted(34, 14) Source(21, 34) + SourceIndex(3) -3 >Emitted(34, 18) Source(21, 38) + SourceIndex(3) -4 >Emitted(34, 19) Source(21, 38) + SourceIndex(3) +1->Emitted(35, 5) Source(21, 33) + SourceIndex(3) +2 >Emitted(35, 14) Source(21, 34) + SourceIndex(3) +3 >Emitted(35, 18) Source(21, 38) + SourceIndex(3) +4 >Emitted(35, 19) Source(21, 38) + SourceIndex(3) --- >>> function foo() { } 1->^^^^ @@ -711,11 +713,11 @@ sourceFile:../second/second_part1.ts 3 > foo 4 > () { 5 > } -1->Emitted(35, 5) Source(22, 20) + SourceIndex(3) -2 >Emitted(35, 14) Source(22, 36) + SourceIndex(3) -3 >Emitted(35, 17) Source(22, 39) + SourceIndex(3) -4 >Emitted(35, 22) Source(22, 43) + SourceIndex(3) -5 >Emitted(35, 23) Source(22, 44) + SourceIndex(3) +1->Emitted(36, 5) Source(22, 20) + SourceIndex(3) +2 >Emitted(36, 14) Source(22, 36) + SourceIndex(3) +3 >Emitted(36, 17) Source(22, 39) + SourceIndex(3) +4 >Emitted(36, 22) Source(22, 43) + SourceIndex(3) +5 >Emitted(36, 23) Source(22, 44) + SourceIndex(3) --- >>> normalN.foo = foo; 1->^^^^ @@ -727,10 +729,10 @@ sourceFile:../second/second_part1.ts 2 > foo 3 > () {} 4 > -1->Emitted(36, 5) Source(22, 36) + SourceIndex(3) -2 >Emitted(36, 16) Source(22, 39) + SourceIndex(3) -3 >Emitted(36, 22) Source(22, 44) + SourceIndex(3) -4 >Emitted(36, 23) Source(22, 44) + SourceIndex(3) +1->Emitted(37, 5) Source(22, 36) + SourceIndex(3) +2 >Emitted(37, 16) Source(22, 39) + SourceIndex(3) +3 >Emitted(37, 22) Source(22, 44) + SourceIndex(3) +4 >Emitted(37, 23) Source(22, 44) + SourceIndex(3) --- >>> var someNamespace; 1->^^^^ @@ -743,10 +745,10 @@ sourceFile:../second/second_part1.ts 2 > export namespace 3 > someNamespace 4 > { export class C {} } -1->Emitted(37, 5) Source(23, 20) + SourceIndex(3) -2 >Emitted(37, 9) Source(23, 37) + SourceIndex(3) -3 >Emitted(37, 22) Source(23, 50) + SourceIndex(3) -4 >Emitted(37, 23) Source(23, 72) + SourceIndex(3) +1->Emitted(38, 5) Source(23, 20) + SourceIndex(3) +2 >Emitted(38, 9) Source(23, 37) + SourceIndex(3) +3 >Emitted(38, 22) Source(23, 50) + SourceIndex(3) +4 >Emitted(38, 23) Source(23, 72) + SourceIndex(3) --- >>> (function (someNamespace) { 1->^^^^ @@ -756,21 +758,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > export namespace 3 > someNamespace -1->Emitted(38, 5) Source(23, 20) + SourceIndex(3) -2 >Emitted(38, 16) Source(23, 37) + SourceIndex(3) -3 >Emitted(38, 29) Source(23, 50) + SourceIndex(3) +1->Emitted(39, 5) Source(23, 20) + SourceIndex(3) +2 >Emitted(39, 16) Source(23, 37) + SourceIndex(3) +3 >Emitted(39, 29) Source(23, 50) + SourceIndex(3) --- >>> var C = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(39, 9) Source(23, 53) + SourceIndex(3) +1->Emitted(40, 9) Source(23, 53) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(40, 13) Source(23, 53) + SourceIndex(3) +1->Emitted(41, 13) Source(23, 53) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -778,16 +780,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(41, 13) Source(23, 69) + SourceIndex(3) -2 >Emitted(41, 14) Source(23, 70) + SourceIndex(3) +1->Emitted(42, 13) Source(23, 69) + SourceIndex(3) +2 >Emitted(42, 14) Source(23, 70) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(42, 13) Source(23, 69) + SourceIndex(3) -2 >Emitted(42, 21) Source(23, 70) + SourceIndex(3) +1->Emitted(43, 13) Source(23, 69) + SourceIndex(3) +2 >Emitted(43, 21) Source(23, 70) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -799,10 +801,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(43, 9) Source(23, 69) + SourceIndex(3) -2 >Emitted(43, 10) Source(23, 70) + SourceIndex(3) -3 >Emitted(43, 10) Source(23, 53) + SourceIndex(3) -4 >Emitted(43, 14) Source(23, 70) + SourceIndex(3) +1 >Emitted(44, 9) Source(23, 69) + SourceIndex(3) +2 >Emitted(44, 10) Source(23, 70) + SourceIndex(3) +3 >Emitted(44, 10) Source(23, 53) + SourceIndex(3) +4 >Emitted(44, 14) Source(23, 70) + SourceIndex(3) --- >>> someNamespace.C = C; 1->^^^^^^^^ @@ -814,10 +816,10 @@ sourceFile:../second/second_part1.ts 2 > C 3 > {} 4 > -1->Emitted(44, 9) Source(23, 66) + SourceIndex(3) -2 >Emitted(44, 24) Source(23, 67) + SourceIndex(3) -3 >Emitted(44, 28) Source(23, 70) + SourceIndex(3) -4 >Emitted(44, 29) Source(23, 70) + SourceIndex(3) +1->Emitted(45, 9) Source(23, 66) + SourceIndex(3) +2 >Emitted(45, 24) Source(23, 67) + SourceIndex(3) +3 >Emitted(45, 28) Source(23, 70) + SourceIndex(3) +4 >Emitted(45, 29) Source(23, 70) + SourceIndex(3) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^ @@ -838,15 +840,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(45, 5) Source(23, 71) + SourceIndex(3) -2 >Emitted(45, 6) Source(23, 72) + SourceIndex(3) -3 >Emitted(45, 8) Source(23, 37) + SourceIndex(3) -4 >Emitted(45, 21) Source(23, 50) + SourceIndex(3) -5 >Emitted(45, 24) Source(23, 37) + SourceIndex(3) -6 >Emitted(45, 45) Source(23, 50) + SourceIndex(3) -7 >Emitted(45, 50) Source(23, 37) + SourceIndex(3) -8 >Emitted(45, 71) Source(23, 50) + SourceIndex(3) -9 >Emitted(45, 79) Source(23, 72) + SourceIndex(3) +1->Emitted(46, 5) Source(23, 71) + SourceIndex(3) +2 >Emitted(46, 6) Source(23, 72) + SourceIndex(3) +3 >Emitted(46, 8) Source(23, 37) + SourceIndex(3) +4 >Emitted(46, 21) Source(23, 50) + SourceIndex(3) +5 >Emitted(46, 24) Source(23, 37) + SourceIndex(3) +6 >Emitted(46, 45) Source(23, 50) + SourceIndex(3) +7 >Emitted(46, 50) Source(23, 37) + SourceIndex(3) +8 >Emitted(46, 71) Source(23, 50) + SourceIndex(3) +9 >Emitted(46, 79) Source(23, 72) + SourceIndex(3) --- >>> var someOther; 1 >^^^^ @@ -859,10 +861,10 @@ sourceFile:../second/second_part1.ts 2 > export namespace 3 > someOther 4 > .something { export class someClass {} } -1 >Emitted(46, 5) Source(24, 20) + SourceIndex(3) -2 >Emitted(46, 9) Source(24, 37) + SourceIndex(3) -3 >Emitted(46, 18) Source(24, 46) + SourceIndex(3) -4 >Emitted(46, 19) Source(24, 86) + SourceIndex(3) +1 >Emitted(47, 5) Source(24, 20) + SourceIndex(3) +2 >Emitted(47, 9) Source(24, 37) + SourceIndex(3) +3 >Emitted(47, 18) Source(24, 46) + SourceIndex(3) +4 >Emitted(47, 19) Source(24, 86) + SourceIndex(3) --- >>> (function (someOther) { 1->^^^^ @@ -871,9 +873,9 @@ sourceFile:../second/second_part1.ts 1-> 2 > export namespace 3 > someOther -1->Emitted(47, 5) Source(24, 20) + SourceIndex(3) -2 >Emitted(47, 16) Source(24, 37) + SourceIndex(3) -3 >Emitted(47, 25) Source(24, 46) + SourceIndex(3) +1->Emitted(48, 5) Source(24, 20) + SourceIndex(3) +2 >Emitted(48, 16) Source(24, 37) + SourceIndex(3) +3 >Emitted(48, 25) Source(24, 46) + SourceIndex(3) --- >>> var something; 1 >^^^^^^^^ @@ -885,10 +887,10 @@ sourceFile:../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(48, 9) Source(24, 47) + SourceIndex(3) -2 >Emitted(48, 13) Source(24, 47) + SourceIndex(3) -3 >Emitted(48, 22) Source(24, 56) + SourceIndex(3) -4 >Emitted(48, 23) Source(24, 86) + SourceIndex(3) +1 >Emitted(49, 9) Source(24, 47) + SourceIndex(3) +2 >Emitted(49, 13) Source(24, 47) + SourceIndex(3) +3 >Emitted(49, 22) Source(24, 56) + SourceIndex(3) +4 >Emitted(49, 23) Source(24, 86) + SourceIndex(3) --- >>> (function (something) { 1->^^^^^^^^ @@ -898,21 +900,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(49, 9) Source(24, 47) + SourceIndex(3) -2 >Emitted(49, 20) Source(24, 47) + SourceIndex(3) -3 >Emitted(49, 29) Source(24, 56) + SourceIndex(3) +1->Emitted(50, 9) Source(24, 47) + SourceIndex(3) +2 >Emitted(50, 20) Source(24, 47) + SourceIndex(3) +3 >Emitted(50, 29) Source(24, 56) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(50, 13) Source(24, 59) + SourceIndex(3) +1->Emitted(51, 13) Source(24, 59) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(51, 17) Source(24, 59) + SourceIndex(3) +1->Emitted(52, 17) Source(24, 59) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -920,16 +922,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(52, 17) Source(24, 83) + SourceIndex(3) -2 >Emitted(52, 18) Source(24, 84) + SourceIndex(3) +1->Emitted(53, 17) Source(24, 83) + SourceIndex(3) +2 >Emitted(53, 18) Source(24, 84) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(53, 17) Source(24, 83) + SourceIndex(3) -2 >Emitted(53, 33) Source(24, 84) + SourceIndex(3) +1->Emitted(54, 17) Source(24, 83) + SourceIndex(3) +2 >Emitted(54, 33) Source(24, 84) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -941,10 +943,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(54, 13) Source(24, 83) + SourceIndex(3) -2 >Emitted(54, 14) Source(24, 84) + SourceIndex(3) -3 >Emitted(54, 14) Source(24, 59) + SourceIndex(3) -4 >Emitted(54, 18) Source(24, 84) + SourceIndex(3) +1 >Emitted(55, 13) Source(24, 83) + SourceIndex(3) +2 >Emitted(55, 14) Source(24, 84) + SourceIndex(3) +3 >Emitted(55, 14) Source(24, 59) + SourceIndex(3) +4 >Emitted(55, 18) Source(24, 84) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -956,10 +958,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(55, 13) Source(24, 72) + SourceIndex(3) -2 >Emitted(55, 32) Source(24, 81) + SourceIndex(3) -3 >Emitted(55, 44) Source(24, 84) + SourceIndex(3) -4 >Emitted(55, 45) Source(24, 84) + SourceIndex(3) +1->Emitted(56, 13) Source(24, 72) + SourceIndex(3) +2 >Emitted(56, 32) Source(24, 81) + SourceIndex(3) +3 >Emitted(56, 44) Source(24, 84) + SourceIndex(3) +4 >Emitted(56, 45) Source(24, 84) + SourceIndex(3) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^ @@ -980,15 +982,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(56, 9) Source(24, 85) + SourceIndex(3) -2 >Emitted(56, 10) Source(24, 86) + SourceIndex(3) -3 >Emitted(56, 12) Source(24, 47) + SourceIndex(3) -4 >Emitted(56, 21) Source(24, 56) + SourceIndex(3) -5 >Emitted(56, 24) Source(24, 47) + SourceIndex(3) -6 >Emitted(56, 43) Source(24, 56) + SourceIndex(3) -7 >Emitted(56, 48) Source(24, 47) + SourceIndex(3) -8 >Emitted(56, 67) Source(24, 56) + SourceIndex(3) -9 >Emitted(56, 75) Source(24, 86) + SourceIndex(3) +1->Emitted(57, 9) Source(24, 85) + SourceIndex(3) +2 >Emitted(57, 10) Source(24, 86) + SourceIndex(3) +3 >Emitted(57, 12) Source(24, 47) + SourceIndex(3) +4 >Emitted(57, 21) Source(24, 56) + SourceIndex(3) +5 >Emitted(57, 24) Source(24, 47) + SourceIndex(3) +6 >Emitted(57, 43) Source(24, 56) + SourceIndex(3) +7 >Emitted(57, 48) Source(24, 47) + SourceIndex(3) +8 >Emitted(57, 67) Source(24, 56) + SourceIndex(3) +9 >Emitted(57, 75) Source(24, 86) + SourceIndex(3) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^ @@ -1009,15 +1011,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(57, 5) Source(24, 85) + SourceIndex(3) -2 >Emitted(57, 6) Source(24, 86) + SourceIndex(3) -3 >Emitted(57, 8) Source(24, 37) + SourceIndex(3) -4 >Emitted(57, 17) Source(24, 46) + SourceIndex(3) -5 >Emitted(57, 20) Source(24, 37) + SourceIndex(3) -6 >Emitted(57, 37) Source(24, 46) + SourceIndex(3) -7 >Emitted(57, 42) Source(24, 37) + SourceIndex(3) -8 >Emitted(57, 59) Source(24, 46) + SourceIndex(3) -9 >Emitted(57, 67) Source(24, 86) + SourceIndex(3) +1 >Emitted(58, 5) Source(24, 85) + SourceIndex(3) +2 >Emitted(58, 6) Source(24, 86) + SourceIndex(3) +3 >Emitted(58, 8) Source(24, 37) + SourceIndex(3) +4 >Emitted(58, 17) Source(24, 46) + SourceIndex(3) +5 >Emitted(58, 20) Source(24, 37) + SourceIndex(3) +6 >Emitted(58, 37) Source(24, 46) + SourceIndex(3) +7 >Emitted(58, 42) Source(24, 37) + SourceIndex(3) +8 >Emitted(58, 59) Source(24, 46) + SourceIndex(3) +9 >Emitted(58, 67) Source(24, 86) + SourceIndex(3) --- >>> normalN.someImport = someNamespace.C; 1 >^^^^ @@ -1035,13 +1037,13 @@ sourceFile:../second/second_part1.ts 5 > . 6 > C 7 > ; -1 >Emitted(58, 5) Source(25, 34) + SourceIndex(3) -2 >Emitted(58, 23) Source(25, 44) + SourceIndex(3) -3 >Emitted(58, 26) Source(25, 47) + SourceIndex(3) -4 >Emitted(58, 39) Source(25, 60) + SourceIndex(3) -5 >Emitted(58, 40) Source(25, 61) + SourceIndex(3) -6 >Emitted(58, 41) Source(25, 62) + SourceIndex(3) -7 >Emitted(58, 42) Source(25, 63) + SourceIndex(3) +1 >Emitted(59, 5) Source(25, 34) + SourceIndex(3) +2 >Emitted(59, 23) Source(25, 44) + SourceIndex(3) +3 >Emitted(59, 26) Source(25, 47) + SourceIndex(3) +4 >Emitted(59, 39) Source(25, 60) + SourceIndex(3) +5 >Emitted(59, 40) Source(25, 61) + SourceIndex(3) +6 >Emitted(59, 41) Source(25, 62) + SourceIndex(3) +7 >Emitted(59, 42) Source(25, 63) + SourceIndex(3) --- >>> normalN.internalConst = 10; 1 >^^^^ @@ -1056,11 +1058,11 @@ sourceFile:../second/second_part1.ts 3 > = 4 > 10 5 > ; -1 >Emitted(59, 5) Source(27, 33) + SourceIndex(3) -2 >Emitted(59, 26) Source(27, 46) + SourceIndex(3) -3 >Emitted(59, 29) Source(27, 49) + SourceIndex(3) -4 >Emitted(59, 31) Source(27, 51) + SourceIndex(3) -5 >Emitted(59, 32) Source(27, 52) + SourceIndex(3) +1 >Emitted(60, 5) Source(27, 33) + SourceIndex(3) +2 >Emitted(60, 26) Source(27, 46) + SourceIndex(3) +3 >Emitted(60, 29) Source(27, 49) + SourceIndex(3) +4 >Emitted(60, 31) Source(27, 51) + SourceIndex(3) +5 >Emitted(60, 32) Source(27, 52) + SourceIndex(3) --- >>> var internalEnum; 1 >^^^^ @@ -1071,9 +1073,9 @@ sourceFile:../second/second_part1.ts > /**@internal*/ 2 > export enum 3 > internalEnum { a, b, c } -1 >Emitted(60, 5) Source(28, 20) + SourceIndex(3) -2 >Emitted(60, 9) Source(28, 32) + SourceIndex(3) -3 >Emitted(60, 21) Source(28, 56) + SourceIndex(3) +1 >Emitted(61, 5) Source(28, 20) + SourceIndex(3) +2 >Emitted(61, 9) Source(28, 32) + SourceIndex(3) +3 >Emitted(61, 21) Source(28, 56) + SourceIndex(3) --- >>> (function (internalEnum) { 1->^^^^ @@ -1083,9 +1085,9 @@ sourceFile:../second/second_part1.ts 1-> 2 > export enum 3 > internalEnum -1->Emitted(61, 5) Source(28, 20) + SourceIndex(3) -2 >Emitted(61, 16) Source(28, 32) + SourceIndex(3) -3 >Emitted(61, 28) Source(28, 44) + SourceIndex(3) +1->Emitted(62, 5) Source(28, 20) + SourceIndex(3) +2 >Emitted(62, 16) Source(28, 32) + SourceIndex(3) +3 >Emitted(62, 28) Source(28, 44) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -1095,9 +1097,9 @@ sourceFile:../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(62, 9) Source(28, 47) + SourceIndex(3) -2 >Emitted(62, 50) Source(28, 48) + SourceIndex(3) -3 >Emitted(62, 51) Source(28, 48) + SourceIndex(3) +1->Emitted(63, 9) Source(28, 47) + SourceIndex(3) +2 >Emitted(63, 50) Source(28, 48) + SourceIndex(3) +3 >Emitted(63, 51) Source(28, 48) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -1107,9 +1109,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(63, 9) Source(28, 50) + SourceIndex(3) -2 >Emitted(63, 50) Source(28, 51) + SourceIndex(3) -3 >Emitted(63, 51) Source(28, 51) + SourceIndex(3) +1->Emitted(64, 9) Source(28, 50) + SourceIndex(3) +2 >Emitted(64, 50) Source(28, 51) + SourceIndex(3) +3 >Emitted(64, 51) Source(28, 51) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -1119,9 +1121,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(64, 9) Source(28, 53) + SourceIndex(3) -2 >Emitted(64, 50) Source(28, 54) + SourceIndex(3) -3 >Emitted(64, 51) Source(28, 54) + SourceIndex(3) +1->Emitted(65, 9) Source(28, 53) + SourceIndex(3) +2 >Emitted(65, 50) Source(28, 54) + SourceIndex(3) +3 >Emitted(65, 51) Source(28, 54) + SourceIndex(3) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^ @@ -1142,15 +1144,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(65, 5) Source(28, 55) + SourceIndex(3) -2 >Emitted(65, 6) Source(28, 56) + SourceIndex(3) -3 >Emitted(65, 8) Source(28, 32) + SourceIndex(3) -4 >Emitted(65, 20) Source(28, 44) + SourceIndex(3) -5 >Emitted(65, 23) Source(28, 32) + SourceIndex(3) -6 >Emitted(65, 43) Source(28, 44) + SourceIndex(3) -7 >Emitted(65, 48) Source(28, 32) + SourceIndex(3) -8 >Emitted(65, 68) Source(28, 44) + SourceIndex(3) -9 >Emitted(65, 76) Source(28, 56) + SourceIndex(3) +1->Emitted(66, 5) Source(28, 55) + SourceIndex(3) +2 >Emitted(66, 6) Source(28, 56) + SourceIndex(3) +3 >Emitted(66, 8) Source(28, 32) + SourceIndex(3) +4 >Emitted(66, 20) Source(28, 44) + SourceIndex(3) +5 >Emitted(66, 23) Source(28, 32) + SourceIndex(3) +6 >Emitted(66, 43) Source(28, 44) + SourceIndex(3) +7 >Emitted(66, 48) Source(28, 32) + SourceIndex(3) +8 >Emitted(66, 68) Source(28, 44) + SourceIndex(3) +9 >Emitted(66, 76) Source(28, 56) + SourceIndex(3) --- >>>})(normalN || (normalN = {})); 1 > @@ -1178,26 +1180,26 @@ sourceFile:../second/second_part1.ts > /**@internal*/ export const internalConst = 10; > /**@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(66, 1) Source(29, 1) + SourceIndex(3) -2 >Emitted(66, 2) Source(29, 2) + SourceIndex(3) -3 >Emitted(66, 4) Source(20, 11) + SourceIndex(3) -4 >Emitted(66, 11) Source(20, 18) + SourceIndex(3) -5 >Emitted(66, 16) Source(20, 11) + SourceIndex(3) -6 >Emitted(66, 23) Source(20, 18) + SourceIndex(3) -7 >Emitted(66, 31) Source(29, 2) + SourceIndex(3) +1 >Emitted(67, 1) Source(29, 1) + SourceIndex(3) +2 >Emitted(67, 2) Source(29, 2) + SourceIndex(3) +3 >Emitted(67, 4) Source(20, 11) + SourceIndex(3) +4 >Emitted(67, 11) Source(20, 18) + SourceIndex(3) +5 >Emitted(67, 16) Source(20, 11) + SourceIndex(3) +6 >Emitted(67, 23) Source(20, 18) + SourceIndex(3) +7 >Emitted(67, 31) Source(29, 2) + SourceIndex(3) --- >>>var internalC = (function () { 1-> 2 >^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> >/**@internal*/ -1->Emitted(67, 1) Source(30, 16) + SourceIndex(3) +1->Emitted(68, 1) Source(30, 16) + SourceIndex(3) --- >>> function internalC() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(68, 5) Source(30, 16) + SourceIndex(3) +1->Emitted(69, 5) Source(30, 16) + SourceIndex(3) --- >>> } 1->^^^^ @@ -1205,16 +1207,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->class internalC { 2 > } -1->Emitted(69, 5) Source(30, 33) + SourceIndex(3) -2 >Emitted(69, 6) Source(30, 34) + SourceIndex(3) +1->Emitted(70, 5) Source(30, 33) + SourceIndex(3) +2 >Emitted(70, 6) Source(30, 34) + SourceIndex(3) --- >>> return internalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(70, 5) Source(30, 33) + SourceIndex(3) -2 >Emitted(70, 21) Source(30, 34) + SourceIndex(3) +1->Emitted(71, 5) Source(30, 33) + SourceIndex(3) +2 >Emitted(71, 21) Source(30, 34) + SourceIndex(3) --- >>>}()); 1 > @@ -1226,10 +1228,10 @@ sourceFile:../second/second_part1.ts 2 >} 3 > 4 > class internalC {} -1 >Emitted(71, 1) Source(30, 33) + SourceIndex(3) -2 >Emitted(71, 2) Source(30, 34) + SourceIndex(3) -3 >Emitted(71, 2) Source(30, 16) + SourceIndex(3) -4 >Emitted(71, 6) Source(30, 34) + SourceIndex(3) +1 >Emitted(72, 1) Source(30, 33) + SourceIndex(3) +2 >Emitted(72, 2) Source(30, 34) + SourceIndex(3) +3 >Emitted(72, 2) Source(30, 16) + SourceIndex(3) +4 >Emitted(72, 6) Source(30, 34) + SourceIndex(3) --- >>>function internalfoo() { } 1-> @@ -1243,11 +1245,11 @@ sourceFile:../second/second_part1.ts 3 > internalfoo 4 > () { 5 > } -1->Emitted(72, 1) Source(31, 16) + SourceIndex(3) -2 >Emitted(72, 10) Source(31, 25) + SourceIndex(3) -3 >Emitted(72, 21) Source(31, 36) + SourceIndex(3) -4 >Emitted(72, 26) Source(31, 40) + SourceIndex(3) -5 >Emitted(72, 27) Source(31, 41) + SourceIndex(3) +1->Emitted(73, 1) Source(31, 16) + SourceIndex(3) +2 >Emitted(73, 10) Source(31, 25) + SourceIndex(3) +3 >Emitted(73, 21) Source(31, 36) + SourceIndex(3) +4 >Emitted(73, 26) Source(31, 40) + SourceIndex(3) +5 >Emitted(73, 27) Source(31, 41) + SourceIndex(3) --- >>>var internalNamespace; 1 > @@ -1260,10 +1262,10 @@ sourceFile:../second/second_part1.ts 2 >namespace 3 > internalNamespace 4 > { export class someClass {} } -1 >Emitted(73, 1) Source(32, 16) + SourceIndex(3) -2 >Emitted(73, 5) Source(32, 26) + SourceIndex(3) -3 >Emitted(73, 22) Source(32, 43) + SourceIndex(3) -4 >Emitted(73, 23) Source(32, 73) + SourceIndex(3) +1 >Emitted(74, 1) Source(32, 16) + SourceIndex(3) +2 >Emitted(74, 5) Source(32, 26) + SourceIndex(3) +3 >Emitted(74, 22) Source(32, 43) + SourceIndex(3) +4 >Emitted(74, 23) Source(32, 73) + SourceIndex(3) --- >>>(function (internalNamespace) { 1-> @@ -1273,21 +1275,21 @@ sourceFile:../second/second_part1.ts 1-> 2 >namespace 3 > internalNamespace -1->Emitted(74, 1) Source(32, 16) + SourceIndex(3) -2 >Emitted(74, 12) Source(32, 26) + SourceIndex(3) -3 >Emitted(74, 29) Source(32, 43) + SourceIndex(3) +1->Emitted(75, 1) Source(32, 16) + SourceIndex(3) +2 >Emitted(75, 12) Source(32, 26) + SourceIndex(3) +3 >Emitted(75, 29) Source(32, 43) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(75, 5) Source(32, 46) + SourceIndex(3) +1->Emitted(76, 5) Source(32, 46) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(76, 9) Source(32, 46) + SourceIndex(3) +1->Emitted(77, 9) Source(32, 46) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -1295,16 +1297,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(77, 9) Source(32, 70) + SourceIndex(3) -2 >Emitted(77, 10) Source(32, 71) + SourceIndex(3) +1->Emitted(78, 9) Source(32, 70) + SourceIndex(3) +2 >Emitted(78, 10) Source(32, 71) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(78, 9) Source(32, 70) + SourceIndex(3) -2 >Emitted(78, 25) Source(32, 71) + SourceIndex(3) +1->Emitted(79, 9) Source(32, 70) + SourceIndex(3) +2 >Emitted(79, 25) Source(32, 71) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -1316,10 +1318,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(79, 5) Source(32, 70) + SourceIndex(3) -2 >Emitted(79, 6) Source(32, 71) + SourceIndex(3) -3 >Emitted(79, 6) Source(32, 46) + SourceIndex(3) -4 >Emitted(79, 10) Source(32, 71) + SourceIndex(3) +1 >Emitted(80, 5) Source(32, 70) + SourceIndex(3) +2 >Emitted(80, 6) Source(32, 71) + SourceIndex(3) +3 >Emitted(80, 6) Source(32, 46) + SourceIndex(3) +4 >Emitted(80, 10) Source(32, 71) + SourceIndex(3) --- >>> internalNamespace.someClass = someClass; 1->^^^^ @@ -1331,10 +1333,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(80, 5) Source(32, 59) + SourceIndex(3) -2 >Emitted(80, 32) Source(32, 68) + SourceIndex(3) -3 >Emitted(80, 44) Source(32, 71) + SourceIndex(3) -4 >Emitted(80, 45) Source(32, 71) + SourceIndex(3) +1->Emitted(81, 5) Source(32, 59) + SourceIndex(3) +2 >Emitted(81, 32) Source(32, 68) + SourceIndex(3) +3 >Emitted(81, 44) Source(32, 71) + SourceIndex(3) +4 >Emitted(81, 45) Source(32, 71) + SourceIndex(3) --- >>>})(internalNamespace || (internalNamespace = {})); 1-> @@ -1351,13 +1353,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalNamespace 7 > { export class someClass {} } -1->Emitted(81, 1) Source(32, 72) + SourceIndex(3) -2 >Emitted(81, 2) Source(32, 73) + SourceIndex(3) -3 >Emitted(81, 4) Source(32, 26) + SourceIndex(3) -4 >Emitted(81, 21) Source(32, 43) + SourceIndex(3) -5 >Emitted(81, 26) Source(32, 26) + SourceIndex(3) -6 >Emitted(81, 43) Source(32, 43) + SourceIndex(3) -7 >Emitted(81, 51) Source(32, 73) + SourceIndex(3) +1->Emitted(82, 1) Source(32, 72) + SourceIndex(3) +2 >Emitted(82, 2) Source(32, 73) + SourceIndex(3) +3 >Emitted(82, 4) Source(32, 26) + SourceIndex(3) +4 >Emitted(82, 21) Source(32, 43) + SourceIndex(3) +5 >Emitted(82, 26) Source(32, 26) + SourceIndex(3) +6 >Emitted(82, 43) Source(32, 43) + SourceIndex(3) +7 >Emitted(82, 51) Source(32, 73) + SourceIndex(3) --- >>>var internalOther; 1 > @@ -1370,10 +1372,10 @@ sourceFile:../second/second_part1.ts 2 >namespace 3 > internalOther 4 > .something { export class someClass {} } -1 >Emitted(82, 1) Source(33, 16) + SourceIndex(3) -2 >Emitted(82, 5) Source(33, 26) + SourceIndex(3) -3 >Emitted(82, 18) Source(33, 39) + SourceIndex(3) -4 >Emitted(82, 19) Source(33, 79) + SourceIndex(3) +1 >Emitted(83, 1) Source(33, 16) + SourceIndex(3) +2 >Emitted(83, 5) Source(33, 26) + SourceIndex(3) +3 >Emitted(83, 18) Source(33, 39) + SourceIndex(3) +4 >Emitted(83, 19) Source(33, 79) + SourceIndex(3) --- >>>(function (internalOther) { 1-> @@ -1382,9 +1384,9 @@ sourceFile:../second/second_part1.ts 1-> 2 >namespace 3 > internalOther -1->Emitted(83, 1) Source(33, 16) + SourceIndex(3) -2 >Emitted(83, 12) Source(33, 26) + SourceIndex(3) -3 >Emitted(83, 25) Source(33, 39) + SourceIndex(3) +1->Emitted(84, 1) Source(33, 16) + SourceIndex(3) +2 >Emitted(84, 12) Source(33, 26) + SourceIndex(3) +3 >Emitted(84, 25) Source(33, 39) + SourceIndex(3) --- >>> var something; 1 >^^^^ @@ -1396,10 +1398,10 @@ sourceFile:../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(84, 5) Source(33, 40) + SourceIndex(3) -2 >Emitted(84, 9) Source(33, 40) + SourceIndex(3) -3 >Emitted(84, 18) Source(33, 49) + SourceIndex(3) -4 >Emitted(84, 19) Source(33, 79) + SourceIndex(3) +1 >Emitted(85, 5) Source(33, 40) + SourceIndex(3) +2 >Emitted(85, 9) Source(33, 40) + SourceIndex(3) +3 >Emitted(85, 18) Source(33, 49) + SourceIndex(3) +4 >Emitted(85, 19) Source(33, 79) + SourceIndex(3) --- >>> (function (something) { 1->^^^^ @@ -1409,21 +1411,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(85, 5) Source(33, 40) + SourceIndex(3) -2 >Emitted(85, 16) Source(33, 40) + SourceIndex(3) -3 >Emitted(85, 25) Source(33, 49) + SourceIndex(3) +1->Emitted(86, 5) Source(33, 40) + SourceIndex(3) +2 >Emitted(86, 16) Source(33, 40) + SourceIndex(3) +3 >Emitted(86, 25) Source(33, 49) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(86, 9) Source(33, 52) + SourceIndex(3) +1->Emitted(87, 9) Source(33, 52) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(87, 13) Source(33, 52) + SourceIndex(3) +1->Emitted(88, 13) Source(33, 52) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -1431,16 +1433,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(88, 13) Source(33, 76) + SourceIndex(3) -2 >Emitted(88, 14) Source(33, 77) + SourceIndex(3) +1->Emitted(89, 13) Source(33, 76) + SourceIndex(3) +2 >Emitted(89, 14) Source(33, 77) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(89, 13) Source(33, 76) + SourceIndex(3) -2 >Emitted(89, 29) Source(33, 77) + SourceIndex(3) +1->Emitted(90, 13) Source(33, 76) + SourceIndex(3) +2 >Emitted(90, 29) Source(33, 77) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -1452,10 +1454,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(90, 9) Source(33, 76) + SourceIndex(3) -2 >Emitted(90, 10) Source(33, 77) + SourceIndex(3) -3 >Emitted(90, 10) Source(33, 52) + SourceIndex(3) -4 >Emitted(90, 14) Source(33, 77) + SourceIndex(3) +1 >Emitted(91, 9) Source(33, 76) + SourceIndex(3) +2 >Emitted(91, 10) Source(33, 77) + SourceIndex(3) +3 >Emitted(91, 10) Source(33, 52) + SourceIndex(3) +4 >Emitted(91, 14) Source(33, 77) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^ @@ -1467,10 +1469,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(91, 9) Source(33, 65) + SourceIndex(3) -2 >Emitted(91, 28) Source(33, 74) + SourceIndex(3) -3 >Emitted(91, 40) Source(33, 77) + SourceIndex(3) -4 >Emitted(91, 41) Source(33, 77) + SourceIndex(3) +1->Emitted(92, 9) Source(33, 65) + SourceIndex(3) +2 >Emitted(92, 28) Source(33, 74) + SourceIndex(3) +3 >Emitted(92, 40) Source(33, 77) + SourceIndex(3) +4 >Emitted(92, 41) Source(33, 77) + SourceIndex(3) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^ @@ -1491,15 +1493,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(92, 5) Source(33, 78) + SourceIndex(3) -2 >Emitted(92, 6) Source(33, 79) + SourceIndex(3) -3 >Emitted(92, 8) Source(33, 40) + SourceIndex(3) -4 >Emitted(92, 17) Source(33, 49) + SourceIndex(3) -5 >Emitted(92, 20) Source(33, 40) + SourceIndex(3) -6 >Emitted(92, 43) Source(33, 49) + SourceIndex(3) -7 >Emitted(92, 48) Source(33, 40) + SourceIndex(3) -8 >Emitted(92, 71) Source(33, 49) + SourceIndex(3) -9 >Emitted(92, 79) Source(33, 79) + SourceIndex(3) +1->Emitted(93, 5) Source(33, 78) + SourceIndex(3) +2 >Emitted(93, 6) Source(33, 79) + SourceIndex(3) +3 >Emitted(93, 8) Source(33, 40) + SourceIndex(3) +4 >Emitted(93, 17) Source(33, 49) + SourceIndex(3) +5 >Emitted(93, 20) Source(33, 40) + SourceIndex(3) +6 >Emitted(93, 43) Source(33, 49) + SourceIndex(3) +7 >Emitted(93, 48) Source(33, 40) + SourceIndex(3) +8 >Emitted(93, 71) Source(33, 49) + SourceIndex(3) +9 >Emitted(93, 79) Source(33, 79) + SourceIndex(3) --- >>>})(internalOther || (internalOther = {})); 1 > @@ -1517,13 +1519,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalOther 7 > .something { export class someClass {} } -1 >Emitted(93, 1) Source(33, 78) + SourceIndex(3) -2 >Emitted(93, 2) Source(33, 79) + SourceIndex(3) -3 >Emitted(93, 4) Source(33, 26) + SourceIndex(3) -4 >Emitted(93, 17) Source(33, 39) + SourceIndex(3) -5 >Emitted(93, 22) Source(33, 26) + SourceIndex(3) -6 >Emitted(93, 35) Source(33, 39) + SourceIndex(3) -7 >Emitted(93, 43) Source(33, 79) + SourceIndex(3) +1 >Emitted(94, 1) Source(33, 78) + SourceIndex(3) +2 >Emitted(94, 2) Source(33, 79) + SourceIndex(3) +3 >Emitted(94, 4) Source(33, 26) + SourceIndex(3) +4 >Emitted(94, 17) Source(33, 39) + SourceIndex(3) +5 >Emitted(94, 22) Source(33, 26) + SourceIndex(3) +6 >Emitted(94, 35) Source(33, 39) + SourceIndex(3) +7 >Emitted(94, 43) Source(33, 79) + SourceIndex(3) --- >>>var internalImport = internalNamespace.someClass; 1-> @@ -1543,14 +1545,14 @@ sourceFile:../second/second_part1.ts 6 > . 7 > someClass 8 > ; -1->Emitted(94, 1) Source(34, 16) + SourceIndex(3) -2 >Emitted(94, 5) Source(34, 23) + SourceIndex(3) -3 >Emitted(94, 19) Source(34, 37) + SourceIndex(3) -4 >Emitted(94, 22) Source(34, 40) + SourceIndex(3) -5 >Emitted(94, 39) Source(34, 57) + SourceIndex(3) -6 >Emitted(94, 40) Source(34, 58) + SourceIndex(3) -7 >Emitted(94, 49) Source(34, 67) + SourceIndex(3) -8 >Emitted(94, 50) Source(34, 68) + SourceIndex(3) +1->Emitted(95, 1) Source(34, 16) + SourceIndex(3) +2 >Emitted(95, 5) Source(34, 23) + SourceIndex(3) +3 >Emitted(95, 19) Source(34, 37) + SourceIndex(3) +4 >Emitted(95, 22) Source(34, 40) + SourceIndex(3) +5 >Emitted(95, 39) Source(34, 57) + SourceIndex(3) +6 >Emitted(95, 40) Source(34, 58) + SourceIndex(3) +7 >Emitted(95, 49) Source(34, 67) + SourceIndex(3) +8 >Emitted(95, 50) Source(34, 68) + SourceIndex(3) --- >>>var internalConst = 10; 1 > @@ -1567,12 +1569,12 @@ sourceFile:../second/second_part1.ts 4 > = 5 > 10 6 > ; -1 >Emitted(95, 1) Source(36, 16) + SourceIndex(3) -2 >Emitted(95, 5) Source(36, 22) + SourceIndex(3) -3 >Emitted(95, 18) Source(36, 35) + SourceIndex(3) -4 >Emitted(95, 21) Source(36, 38) + SourceIndex(3) -5 >Emitted(95, 23) Source(36, 40) + SourceIndex(3) -6 >Emitted(95, 24) Source(36, 41) + SourceIndex(3) +1 >Emitted(96, 1) Source(36, 16) + SourceIndex(3) +2 >Emitted(96, 5) Source(36, 22) + SourceIndex(3) +3 >Emitted(96, 18) Source(36, 35) + SourceIndex(3) +4 >Emitted(96, 21) Source(36, 38) + SourceIndex(3) +5 >Emitted(96, 23) Source(36, 40) + SourceIndex(3) +6 >Emitted(96, 24) Source(36, 41) + SourceIndex(3) --- >>>var internalEnum; 1 > @@ -1583,9 +1585,9 @@ sourceFile:../second/second_part1.ts >/**@internal*/ 2 >enum 3 > internalEnum { a, b, c } -1 >Emitted(96, 1) Source(37, 16) + SourceIndex(3) -2 >Emitted(96, 5) Source(37, 21) + SourceIndex(3) -3 >Emitted(96, 17) Source(37, 45) + SourceIndex(3) +1 >Emitted(97, 1) Source(37, 16) + SourceIndex(3) +2 >Emitted(97, 5) Source(37, 21) + SourceIndex(3) +3 >Emitted(97, 17) Source(37, 45) + SourceIndex(3) --- >>>(function (internalEnum) { 1-> @@ -1595,9 +1597,9 @@ sourceFile:../second/second_part1.ts 1-> 2 >enum 3 > internalEnum -1->Emitted(97, 1) Source(37, 16) + SourceIndex(3) -2 >Emitted(97, 12) Source(37, 21) + SourceIndex(3) -3 >Emitted(97, 24) Source(37, 33) + SourceIndex(3) +1->Emitted(98, 1) Source(37, 16) + SourceIndex(3) +2 >Emitted(98, 12) Source(37, 21) + SourceIndex(3) +3 >Emitted(98, 24) Source(37, 33) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^ @@ -1607,9 +1609,9 @@ sourceFile:../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(98, 5) Source(37, 36) + SourceIndex(3) -2 >Emitted(98, 46) Source(37, 37) + SourceIndex(3) -3 >Emitted(98, 47) Source(37, 37) + SourceIndex(3) +1->Emitted(99, 5) Source(37, 36) + SourceIndex(3) +2 >Emitted(99, 46) Source(37, 37) + SourceIndex(3) +3 >Emitted(99, 47) Source(37, 37) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^ @@ -1619,9 +1621,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(99, 5) Source(37, 39) + SourceIndex(3) -2 >Emitted(99, 46) Source(37, 40) + SourceIndex(3) -3 >Emitted(99, 47) Source(37, 40) + SourceIndex(3) +1->Emitted(100, 5) Source(37, 39) + SourceIndex(3) +2 >Emitted(100, 46) Source(37, 40) + SourceIndex(3) +3 >Emitted(100, 47) Source(37, 40) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^ @@ -1630,9 +1632,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(100, 5) Source(37, 42) + SourceIndex(3) -2 >Emitted(100, 46) Source(37, 43) + SourceIndex(3) -3 >Emitted(100, 47) Source(37, 43) + SourceIndex(3) +1->Emitted(101, 5) Source(37, 42) + SourceIndex(3) +2 >Emitted(101, 46) Source(37, 43) + SourceIndex(3) +3 >Emitted(101, 47) Source(37, 43) + SourceIndex(3) --- >>>})(internalEnum || (internalEnum = {})); 1 > @@ -1649,13 +1651,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalEnum 7 > { a, b, c } -1 >Emitted(101, 1) Source(37, 44) + SourceIndex(3) -2 >Emitted(101, 2) Source(37, 45) + SourceIndex(3) -3 >Emitted(101, 4) Source(37, 21) + SourceIndex(3) -4 >Emitted(101, 16) Source(37, 33) + SourceIndex(3) -5 >Emitted(101, 21) Source(37, 21) + SourceIndex(3) -6 >Emitted(101, 33) Source(37, 33) + SourceIndex(3) -7 >Emitted(101, 41) Source(37, 45) + SourceIndex(3) +1 >Emitted(102, 1) Source(37, 44) + SourceIndex(3) +2 >Emitted(102, 2) Source(37, 45) + SourceIndex(3) +3 >Emitted(102, 4) Source(37, 21) + SourceIndex(3) +4 >Emitted(102, 16) Source(37, 33) + SourceIndex(3) +5 >Emitted(102, 21) Source(37, 21) + SourceIndex(3) +6 >Emitted(102, 33) Source(37, 33) + SourceIndex(3) +7 >Emitted(102, 41) Source(37, 45) + SourceIndex(3) --- ------------------------------------------------------------------- emittedFile:/src/2/second-output.js @@ -1665,13 +1667,13 @@ sourceFile:../second/second_part2.ts 1 > 2 >^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(102, 1) Source(1, 1) + SourceIndex(4) +1 >Emitted(103, 1) Source(1, 1) + SourceIndex(4) --- >>> function C() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(103, 5) Source(1, 1) + SourceIndex(4) +1->Emitted(104, 5) Source(1, 1) + SourceIndex(4) --- >>> } 1->^^^^ @@ -1683,8 +1685,8 @@ sourceFile:../second/second_part2.ts > } > 2 > } -1->Emitted(104, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(104, 6) Source(5, 2) + SourceIndex(4) +1->Emitted(105, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(105, 6) Source(5, 2) + SourceIndex(4) --- >>> C.prototype.doSomething = function () { 1->^^^^ @@ -1694,9 +1696,9 @@ sourceFile:../second/second_part2.ts 1-> 2 > doSomething 3 > -1->Emitted(105, 5) Source(2, 5) + SourceIndex(4) -2 >Emitted(105, 28) Source(2, 16) + SourceIndex(4) -3 >Emitted(105, 31) Source(2, 5) + SourceIndex(4) +1->Emitted(106, 5) Source(2, 5) + SourceIndex(4) +2 >Emitted(106, 28) Source(2, 16) + SourceIndex(4) +3 >Emitted(106, 31) Source(2, 5) + SourceIndex(4) --- >>> console.log("something got done"); 1->^^^^^^^^ @@ -1716,14 +1718,14 @@ sourceFile:../second/second_part2.ts 6 > "something got done" 7 > ) 8 > ; -1->Emitted(106, 9) Source(3, 9) + SourceIndex(4) -2 >Emitted(106, 16) Source(3, 16) + SourceIndex(4) -3 >Emitted(106, 17) Source(3, 17) + SourceIndex(4) -4 >Emitted(106, 20) Source(3, 20) + SourceIndex(4) -5 >Emitted(106, 21) Source(3, 21) + SourceIndex(4) -6 >Emitted(106, 41) Source(3, 41) + SourceIndex(4) -7 >Emitted(106, 42) Source(3, 42) + SourceIndex(4) -8 >Emitted(106, 43) Source(3, 43) + SourceIndex(4) +1->Emitted(107, 9) Source(3, 9) + SourceIndex(4) +2 >Emitted(107, 16) Source(3, 16) + SourceIndex(4) +3 >Emitted(107, 17) Source(3, 17) + SourceIndex(4) +4 >Emitted(107, 20) Source(3, 20) + SourceIndex(4) +5 >Emitted(107, 21) Source(3, 21) + SourceIndex(4) +6 >Emitted(107, 41) Source(3, 41) + SourceIndex(4) +7 >Emitted(107, 42) Source(3, 42) + SourceIndex(4) +8 >Emitted(107, 43) Source(3, 43) + SourceIndex(4) --- >>> }; 1 >^^^^ @@ -1732,8 +1734,8 @@ sourceFile:../second/second_part2.ts 1 > > 2 > } -1 >Emitted(107, 5) Source(4, 5) + SourceIndex(4) -2 >Emitted(107, 6) Source(4, 6) + SourceIndex(4) +1 >Emitted(108, 5) Source(4, 5) + SourceIndex(4) +2 >Emitted(108, 6) Source(4, 6) + SourceIndex(4) --- >>> return C; 1->^^^^ @@ -1741,8 +1743,8 @@ sourceFile:../second/second_part2.ts 1-> > 2 > } -1->Emitted(108, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(108, 13) Source(5, 2) + SourceIndex(4) +1->Emitted(109, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(109, 13) Source(5, 2) + SourceIndex(4) --- >>>}()); 1 > @@ -1758,10 +1760,10 @@ sourceFile:../second/second_part2.ts > console.log("something got done"); > } > } -1 >Emitted(109, 1) Source(5, 1) + SourceIndex(4) -2 >Emitted(109, 2) Source(5, 2) + SourceIndex(4) -3 >Emitted(109, 2) Source(1, 1) + SourceIndex(4) -4 >Emitted(109, 6) Source(5, 2) + SourceIndex(4) +1 >Emitted(110, 1) Source(5, 1) + SourceIndex(4) +2 >Emitted(110, 2) Source(5, 2) + SourceIndex(4) +3 >Emitted(110, 2) Source(1, 1) + SourceIndex(4) +4 >Emitted(110, 6) Source(5, 2) + SourceIndex(4) --- >>>//# sourceMappingURL=second-output.js.map @@ -1790,7 +1792,7 @@ sourceFile:../second/second_part2.ts }, { "pos": 127, - "end": 3180, + "end": 3228, "kind": "text" } ] @@ -1872,7 +1874,7 @@ function f() { } ---------------------------------------------------------------------- -text: (127-3180) +text: (127-3228) var N; (function (N) { function f() { @@ -1883,8 +1885,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -2341,8 +2344,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -2438,7 +2442,7 @@ c.doSomething(); //# sourceMappingURL=third-output.js.map //// [/src/third/thirdjs/output/third-output.js.map] -{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} //// [/src/third/thirdjs/output/third-output.js.map.baseline.txt] =================================================================== @@ -2767,13 +2771,14 @@ sourceFile:../../../second/second_part1.ts >>> } 1->^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1->constructor() { 2 > } 1->Emitted(17, 5) Source(14, 36) + SourceIndex(3) 2 >Emitted(17, 6) Source(14, 37) + SourceIndex(3) --- ->>> normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> normalC_prototype.method = function () { }; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^ @@ -2787,13 +2792,13 @@ sourceFile:../../../second/second_part1.ts 3 > 4 > method() { 5 > } -1->Emitted(18, 5) Source(16, 20) + SourceIndex(3) -2 >Emitted(18, 29) Source(16, 26) + SourceIndex(3) -3 >Emitted(18, 32) Source(16, 20) + SourceIndex(3) -4 >Emitted(18, 46) Source(16, 31) + SourceIndex(3) -5 >Emitted(18, 47) Source(16, 32) + SourceIndex(3) +1->Emitted(19, 5) Source(16, 20) + SourceIndex(3) +2 >Emitted(19, 29) Source(16, 26) + SourceIndex(3) +3 >Emitted(19, 32) Source(16, 20) + SourceIndex(3) +4 >Emitted(19, 46) Source(16, 31) + SourceIndex(3) +5 >Emitted(19, 47) Source(16, 32) + SourceIndex(3) --- ->>> Object.defineProperty(normalC.prototype, "c", { +>>> Object.defineProperty(normalC_prototype, "c", { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -2801,9 +2806,9 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ 2 > get 3 > c -1->Emitted(19, 5) Source(17, 20) + SourceIndex(3) -2 >Emitted(19, 27) Source(17, 24) + SourceIndex(3) -3 >Emitted(19, 49) Source(17, 25) + SourceIndex(3) +1->Emitted(20, 5) Source(17, 20) + SourceIndex(3) +2 >Emitted(20, 27) Source(17, 24) + SourceIndex(3) +3 >Emitted(20, 49) Source(17, 25) + SourceIndex(3) --- >>> get: function () { return 10; }, 1 >^^^^^^^^^^^^^ @@ -2820,13 +2825,13 @@ sourceFile:../../../second/second_part1.ts 5 > ; 6 > 7 > } -1 >Emitted(20, 14) Source(17, 20) + SourceIndex(3) -2 >Emitted(20, 28) Source(17, 30) + SourceIndex(3) -3 >Emitted(20, 35) Source(17, 37) + SourceIndex(3) -4 >Emitted(20, 37) Source(17, 39) + SourceIndex(3) -5 >Emitted(20, 38) Source(17, 40) + SourceIndex(3) -6 >Emitted(20, 39) Source(17, 41) + SourceIndex(3) -7 >Emitted(20, 40) Source(17, 42) + SourceIndex(3) +1 >Emitted(21, 14) Source(17, 20) + SourceIndex(3) +2 >Emitted(21, 28) Source(17, 30) + SourceIndex(3) +3 >Emitted(21, 35) Source(17, 37) + SourceIndex(3) +4 >Emitted(21, 37) Source(17, 39) + SourceIndex(3) +5 >Emitted(21, 38) Source(17, 40) + SourceIndex(3) +6 >Emitted(21, 39) Source(17, 41) + SourceIndex(3) +7 >Emitted(21, 40) Source(17, 42) + SourceIndex(3) --- >>> set: function (val) { }, 1 >^^^^^^^^^^^^^ @@ -2840,11 +2845,11 @@ sourceFile:../../../second/second_part1.ts 3 > val: number 4 > ) { 5 > } -1 >Emitted(21, 14) Source(18, 20) + SourceIndex(3) -2 >Emitted(21, 24) Source(18, 26) + SourceIndex(3) -3 >Emitted(21, 27) Source(18, 37) + SourceIndex(3) -4 >Emitted(21, 31) Source(18, 41) + SourceIndex(3) -5 >Emitted(21, 32) Source(18, 42) + SourceIndex(3) +1 >Emitted(22, 14) Source(18, 20) + SourceIndex(3) +2 >Emitted(22, 24) Source(18, 26) + SourceIndex(3) +3 >Emitted(22, 27) Source(18, 37) + SourceIndex(3) +4 >Emitted(22, 31) Source(18, 41) + SourceIndex(3) +5 >Emitted(22, 32) Source(18, 42) + SourceIndex(3) --- >>> enumerable: false, >>> configurable: true @@ -2852,7 +2857,7 @@ sourceFile:../../../second/second_part1.ts 1 >^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(24, 8) Source(17, 42) + SourceIndex(3) +1 >Emitted(25, 8) Source(17, 42) + SourceIndex(3) --- >>> return normalC; 1->^^^^ @@ -2861,8 +2866,8 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ set c(val: number) { } > 2 > } -1->Emitted(25, 5) Source(19, 1) + SourceIndex(3) -2 >Emitted(25, 19) Source(19, 2) + SourceIndex(3) +1->Emitted(26, 5) Source(19, 1) + SourceIndex(3) +2 >Emitted(26, 19) Source(19, 2) + SourceIndex(3) --- >>>}()); 1 > @@ -2880,10 +2885,10 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ get c() { return 10; } > /**@internal*/ set c(val: number) { } > } -1 >Emitted(26, 1) Source(19, 1) + SourceIndex(3) -2 >Emitted(26, 2) Source(19, 2) + SourceIndex(3) -3 >Emitted(26, 2) Source(13, 1) + SourceIndex(3) -4 >Emitted(26, 6) Source(19, 2) + SourceIndex(3) +1 >Emitted(27, 1) Source(19, 1) + SourceIndex(3) +2 >Emitted(27, 2) Source(19, 2) + SourceIndex(3) +3 >Emitted(27, 2) Source(13, 1) + SourceIndex(3) +4 >Emitted(27, 6) Source(19, 2) + SourceIndex(3) --- >>>var normalN; 1-> @@ -2905,10 +2910,10 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ export const internalConst = 10; > /**@internal*/ export enum internalEnum { a, b, c } > } -1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(27, 5) Source(20, 11) + SourceIndex(3) -3 >Emitted(27, 12) Source(20, 18) + SourceIndex(3) -4 >Emitted(27, 13) Source(29, 2) + SourceIndex(3) +1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(28, 5) Source(20, 11) + SourceIndex(3) +3 >Emitted(28, 12) Source(20, 18) + SourceIndex(3) +4 >Emitted(28, 13) Source(29, 2) + SourceIndex(3) --- >>>(function (normalN) { 1-> @@ -2918,22 +2923,22 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > normalN -1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(28, 12) Source(20, 11) + SourceIndex(3) -3 >Emitted(28, 19) Source(20, 18) + SourceIndex(3) +1->Emitted(29, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(29, 12) Source(20, 11) + SourceIndex(3) +3 >Emitted(29, 19) Source(20, 18) + SourceIndex(3) --- >>> var C = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { > /**@internal*/ -1->Emitted(29, 5) Source(21, 20) + SourceIndex(3) +1->Emitted(30, 5) Source(21, 20) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(30, 9) Source(21, 20) + SourceIndex(3) +1->Emitted(31, 9) Source(21, 20) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -2941,16 +2946,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(31, 9) Source(21, 37) + SourceIndex(3) -2 >Emitted(31, 10) Source(21, 38) + SourceIndex(3) +1->Emitted(32, 9) Source(21, 37) + SourceIndex(3) +2 >Emitted(32, 10) Source(21, 38) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(32, 9) Source(21, 37) + SourceIndex(3) -2 >Emitted(32, 17) Source(21, 38) + SourceIndex(3) +1->Emitted(33, 9) Source(21, 37) + SourceIndex(3) +2 >Emitted(33, 17) Source(21, 38) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -2962,10 +2967,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(33, 5) Source(21, 37) + SourceIndex(3) -2 >Emitted(33, 6) Source(21, 38) + SourceIndex(3) -3 >Emitted(33, 6) Source(21, 20) + SourceIndex(3) -4 >Emitted(33, 10) Source(21, 38) + SourceIndex(3) +1 >Emitted(34, 5) Source(21, 37) + SourceIndex(3) +2 >Emitted(34, 6) Source(21, 38) + SourceIndex(3) +3 >Emitted(34, 6) Source(21, 20) + SourceIndex(3) +4 >Emitted(34, 10) Source(21, 38) + SourceIndex(3) --- >>> normalN.C = C; 1->^^^^ @@ -2977,10 +2982,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > { } 4 > -1->Emitted(34, 5) Source(21, 33) + SourceIndex(3) -2 >Emitted(34, 14) Source(21, 34) + SourceIndex(3) -3 >Emitted(34, 18) Source(21, 38) + SourceIndex(3) -4 >Emitted(34, 19) Source(21, 38) + SourceIndex(3) +1->Emitted(35, 5) Source(21, 33) + SourceIndex(3) +2 >Emitted(35, 14) Source(21, 34) + SourceIndex(3) +3 >Emitted(35, 18) Source(21, 38) + SourceIndex(3) +4 >Emitted(35, 19) Source(21, 38) + SourceIndex(3) --- >>> function foo() { } 1->^^^^ @@ -2995,11 +3000,11 @@ sourceFile:../../../second/second_part1.ts 3 > foo 4 > () { 5 > } -1->Emitted(35, 5) Source(22, 20) + SourceIndex(3) -2 >Emitted(35, 14) Source(22, 36) + SourceIndex(3) -3 >Emitted(35, 17) Source(22, 39) + SourceIndex(3) -4 >Emitted(35, 22) Source(22, 43) + SourceIndex(3) -5 >Emitted(35, 23) Source(22, 44) + SourceIndex(3) +1->Emitted(36, 5) Source(22, 20) + SourceIndex(3) +2 >Emitted(36, 14) Source(22, 36) + SourceIndex(3) +3 >Emitted(36, 17) Source(22, 39) + SourceIndex(3) +4 >Emitted(36, 22) Source(22, 43) + SourceIndex(3) +5 >Emitted(36, 23) Source(22, 44) + SourceIndex(3) --- >>> normalN.foo = foo; 1->^^^^ @@ -3011,10 +3016,10 @@ sourceFile:../../../second/second_part1.ts 2 > foo 3 > () {} 4 > -1->Emitted(36, 5) Source(22, 36) + SourceIndex(3) -2 >Emitted(36, 16) Source(22, 39) + SourceIndex(3) -3 >Emitted(36, 22) Source(22, 44) + SourceIndex(3) -4 >Emitted(36, 23) Source(22, 44) + SourceIndex(3) +1->Emitted(37, 5) Source(22, 36) + SourceIndex(3) +2 >Emitted(37, 16) Source(22, 39) + SourceIndex(3) +3 >Emitted(37, 22) Source(22, 44) + SourceIndex(3) +4 >Emitted(37, 23) Source(22, 44) + SourceIndex(3) --- >>> var someNamespace; 1->^^^^ @@ -3027,10 +3032,10 @@ sourceFile:../../../second/second_part1.ts 2 > export namespace 3 > someNamespace 4 > { export class C {} } -1->Emitted(37, 5) Source(23, 20) + SourceIndex(3) -2 >Emitted(37, 9) Source(23, 37) + SourceIndex(3) -3 >Emitted(37, 22) Source(23, 50) + SourceIndex(3) -4 >Emitted(37, 23) Source(23, 72) + SourceIndex(3) +1->Emitted(38, 5) Source(23, 20) + SourceIndex(3) +2 >Emitted(38, 9) Source(23, 37) + SourceIndex(3) +3 >Emitted(38, 22) Source(23, 50) + SourceIndex(3) +4 >Emitted(38, 23) Source(23, 72) + SourceIndex(3) --- >>> (function (someNamespace) { 1->^^^^ @@ -3040,21 +3045,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > export namespace 3 > someNamespace -1->Emitted(38, 5) Source(23, 20) + SourceIndex(3) -2 >Emitted(38, 16) Source(23, 37) + SourceIndex(3) -3 >Emitted(38, 29) Source(23, 50) + SourceIndex(3) +1->Emitted(39, 5) Source(23, 20) + SourceIndex(3) +2 >Emitted(39, 16) Source(23, 37) + SourceIndex(3) +3 >Emitted(39, 29) Source(23, 50) + SourceIndex(3) --- >>> var C = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(39, 9) Source(23, 53) + SourceIndex(3) +1->Emitted(40, 9) Source(23, 53) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(40, 13) Source(23, 53) + SourceIndex(3) +1->Emitted(41, 13) Source(23, 53) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -3062,16 +3067,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(41, 13) Source(23, 69) + SourceIndex(3) -2 >Emitted(41, 14) Source(23, 70) + SourceIndex(3) +1->Emitted(42, 13) Source(23, 69) + SourceIndex(3) +2 >Emitted(42, 14) Source(23, 70) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(42, 13) Source(23, 69) + SourceIndex(3) -2 >Emitted(42, 21) Source(23, 70) + SourceIndex(3) +1->Emitted(43, 13) Source(23, 69) + SourceIndex(3) +2 >Emitted(43, 21) Source(23, 70) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -3083,10 +3088,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(43, 9) Source(23, 69) + SourceIndex(3) -2 >Emitted(43, 10) Source(23, 70) + SourceIndex(3) -3 >Emitted(43, 10) Source(23, 53) + SourceIndex(3) -4 >Emitted(43, 14) Source(23, 70) + SourceIndex(3) +1 >Emitted(44, 9) Source(23, 69) + SourceIndex(3) +2 >Emitted(44, 10) Source(23, 70) + SourceIndex(3) +3 >Emitted(44, 10) Source(23, 53) + SourceIndex(3) +4 >Emitted(44, 14) Source(23, 70) + SourceIndex(3) --- >>> someNamespace.C = C; 1->^^^^^^^^ @@ -3098,10 +3103,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > {} 4 > -1->Emitted(44, 9) Source(23, 66) + SourceIndex(3) -2 >Emitted(44, 24) Source(23, 67) + SourceIndex(3) -3 >Emitted(44, 28) Source(23, 70) + SourceIndex(3) -4 >Emitted(44, 29) Source(23, 70) + SourceIndex(3) +1->Emitted(45, 9) Source(23, 66) + SourceIndex(3) +2 >Emitted(45, 24) Source(23, 67) + SourceIndex(3) +3 >Emitted(45, 28) Source(23, 70) + SourceIndex(3) +4 >Emitted(45, 29) Source(23, 70) + SourceIndex(3) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^ @@ -3122,15 +3127,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(45, 5) Source(23, 71) + SourceIndex(3) -2 >Emitted(45, 6) Source(23, 72) + SourceIndex(3) -3 >Emitted(45, 8) Source(23, 37) + SourceIndex(3) -4 >Emitted(45, 21) Source(23, 50) + SourceIndex(3) -5 >Emitted(45, 24) Source(23, 37) + SourceIndex(3) -6 >Emitted(45, 45) Source(23, 50) + SourceIndex(3) -7 >Emitted(45, 50) Source(23, 37) + SourceIndex(3) -8 >Emitted(45, 71) Source(23, 50) + SourceIndex(3) -9 >Emitted(45, 79) Source(23, 72) + SourceIndex(3) +1->Emitted(46, 5) Source(23, 71) + SourceIndex(3) +2 >Emitted(46, 6) Source(23, 72) + SourceIndex(3) +3 >Emitted(46, 8) Source(23, 37) + SourceIndex(3) +4 >Emitted(46, 21) Source(23, 50) + SourceIndex(3) +5 >Emitted(46, 24) Source(23, 37) + SourceIndex(3) +6 >Emitted(46, 45) Source(23, 50) + SourceIndex(3) +7 >Emitted(46, 50) Source(23, 37) + SourceIndex(3) +8 >Emitted(46, 71) Source(23, 50) + SourceIndex(3) +9 >Emitted(46, 79) Source(23, 72) + SourceIndex(3) --- >>> var someOther; 1 >^^^^ @@ -3143,10 +3148,10 @@ sourceFile:../../../second/second_part1.ts 2 > export namespace 3 > someOther 4 > .something { export class someClass {} } -1 >Emitted(46, 5) Source(24, 20) + SourceIndex(3) -2 >Emitted(46, 9) Source(24, 37) + SourceIndex(3) -3 >Emitted(46, 18) Source(24, 46) + SourceIndex(3) -4 >Emitted(46, 19) Source(24, 86) + SourceIndex(3) +1 >Emitted(47, 5) Source(24, 20) + SourceIndex(3) +2 >Emitted(47, 9) Source(24, 37) + SourceIndex(3) +3 >Emitted(47, 18) Source(24, 46) + SourceIndex(3) +4 >Emitted(47, 19) Source(24, 86) + SourceIndex(3) --- >>> (function (someOther) { 1->^^^^ @@ -3155,9 +3160,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > export namespace 3 > someOther -1->Emitted(47, 5) Source(24, 20) + SourceIndex(3) -2 >Emitted(47, 16) Source(24, 37) + SourceIndex(3) -3 >Emitted(47, 25) Source(24, 46) + SourceIndex(3) +1->Emitted(48, 5) Source(24, 20) + SourceIndex(3) +2 >Emitted(48, 16) Source(24, 37) + SourceIndex(3) +3 >Emitted(48, 25) Source(24, 46) + SourceIndex(3) --- >>> var something; 1 >^^^^^^^^ @@ -3169,10 +3174,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(48, 9) Source(24, 47) + SourceIndex(3) -2 >Emitted(48, 13) Source(24, 47) + SourceIndex(3) -3 >Emitted(48, 22) Source(24, 56) + SourceIndex(3) -4 >Emitted(48, 23) Source(24, 86) + SourceIndex(3) +1 >Emitted(49, 9) Source(24, 47) + SourceIndex(3) +2 >Emitted(49, 13) Source(24, 47) + SourceIndex(3) +3 >Emitted(49, 22) Source(24, 56) + SourceIndex(3) +4 >Emitted(49, 23) Source(24, 86) + SourceIndex(3) --- >>> (function (something) { 1->^^^^^^^^ @@ -3182,21 +3187,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(49, 9) Source(24, 47) + SourceIndex(3) -2 >Emitted(49, 20) Source(24, 47) + SourceIndex(3) -3 >Emitted(49, 29) Source(24, 56) + SourceIndex(3) +1->Emitted(50, 9) Source(24, 47) + SourceIndex(3) +2 >Emitted(50, 20) Source(24, 47) + SourceIndex(3) +3 >Emitted(50, 29) Source(24, 56) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(50, 13) Source(24, 59) + SourceIndex(3) +1->Emitted(51, 13) Source(24, 59) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(51, 17) Source(24, 59) + SourceIndex(3) +1->Emitted(52, 17) Source(24, 59) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -3204,16 +3209,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(52, 17) Source(24, 83) + SourceIndex(3) -2 >Emitted(52, 18) Source(24, 84) + SourceIndex(3) +1->Emitted(53, 17) Source(24, 83) + SourceIndex(3) +2 >Emitted(53, 18) Source(24, 84) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(53, 17) Source(24, 83) + SourceIndex(3) -2 >Emitted(53, 33) Source(24, 84) + SourceIndex(3) +1->Emitted(54, 17) Source(24, 83) + SourceIndex(3) +2 >Emitted(54, 33) Source(24, 84) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -3225,10 +3230,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(54, 13) Source(24, 83) + SourceIndex(3) -2 >Emitted(54, 14) Source(24, 84) + SourceIndex(3) -3 >Emitted(54, 14) Source(24, 59) + SourceIndex(3) -4 >Emitted(54, 18) Source(24, 84) + SourceIndex(3) +1 >Emitted(55, 13) Source(24, 83) + SourceIndex(3) +2 >Emitted(55, 14) Source(24, 84) + SourceIndex(3) +3 >Emitted(55, 14) Source(24, 59) + SourceIndex(3) +4 >Emitted(55, 18) Source(24, 84) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -3240,10 +3245,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(55, 13) Source(24, 72) + SourceIndex(3) -2 >Emitted(55, 32) Source(24, 81) + SourceIndex(3) -3 >Emitted(55, 44) Source(24, 84) + SourceIndex(3) -4 >Emitted(55, 45) Source(24, 84) + SourceIndex(3) +1->Emitted(56, 13) Source(24, 72) + SourceIndex(3) +2 >Emitted(56, 32) Source(24, 81) + SourceIndex(3) +3 >Emitted(56, 44) Source(24, 84) + SourceIndex(3) +4 >Emitted(56, 45) Source(24, 84) + SourceIndex(3) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^ @@ -3264,15 +3269,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(56, 9) Source(24, 85) + SourceIndex(3) -2 >Emitted(56, 10) Source(24, 86) + SourceIndex(3) -3 >Emitted(56, 12) Source(24, 47) + SourceIndex(3) -4 >Emitted(56, 21) Source(24, 56) + SourceIndex(3) -5 >Emitted(56, 24) Source(24, 47) + SourceIndex(3) -6 >Emitted(56, 43) Source(24, 56) + SourceIndex(3) -7 >Emitted(56, 48) Source(24, 47) + SourceIndex(3) -8 >Emitted(56, 67) Source(24, 56) + SourceIndex(3) -9 >Emitted(56, 75) Source(24, 86) + SourceIndex(3) +1->Emitted(57, 9) Source(24, 85) + SourceIndex(3) +2 >Emitted(57, 10) Source(24, 86) + SourceIndex(3) +3 >Emitted(57, 12) Source(24, 47) + SourceIndex(3) +4 >Emitted(57, 21) Source(24, 56) + SourceIndex(3) +5 >Emitted(57, 24) Source(24, 47) + SourceIndex(3) +6 >Emitted(57, 43) Source(24, 56) + SourceIndex(3) +7 >Emitted(57, 48) Source(24, 47) + SourceIndex(3) +8 >Emitted(57, 67) Source(24, 56) + SourceIndex(3) +9 >Emitted(57, 75) Source(24, 86) + SourceIndex(3) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^ @@ -3293,15 +3298,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(57, 5) Source(24, 85) + SourceIndex(3) -2 >Emitted(57, 6) Source(24, 86) + SourceIndex(3) -3 >Emitted(57, 8) Source(24, 37) + SourceIndex(3) -4 >Emitted(57, 17) Source(24, 46) + SourceIndex(3) -5 >Emitted(57, 20) Source(24, 37) + SourceIndex(3) -6 >Emitted(57, 37) Source(24, 46) + SourceIndex(3) -7 >Emitted(57, 42) Source(24, 37) + SourceIndex(3) -8 >Emitted(57, 59) Source(24, 46) + SourceIndex(3) -9 >Emitted(57, 67) Source(24, 86) + SourceIndex(3) +1 >Emitted(58, 5) Source(24, 85) + SourceIndex(3) +2 >Emitted(58, 6) Source(24, 86) + SourceIndex(3) +3 >Emitted(58, 8) Source(24, 37) + SourceIndex(3) +4 >Emitted(58, 17) Source(24, 46) + SourceIndex(3) +5 >Emitted(58, 20) Source(24, 37) + SourceIndex(3) +6 >Emitted(58, 37) Source(24, 46) + SourceIndex(3) +7 >Emitted(58, 42) Source(24, 37) + SourceIndex(3) +8 >Emitted(58, 59) Source(24, 46) + SourceIndex(3) +9 >Emitted(58, 67) Source(24, 86) + SourceIndex(3) --- >>> normalN.someImport = someNamespace.C; 1 >^^^^ @@ -3319,13 +3324,13 @@ sourceFile:../../../second/second_part1.ts 5 > . 6 > C 7 > ; -1 >Emitted(58, 5) Source(25, 34) + SourceIndex(3) -2 >Emitted(58, 23) Source(25, 44) + SourceIndex(3) -3 >Emitted(58, 26) Source(25, 47) + SourceIndex(3) -4 >Emitted(58, 39) Source(25, 60) + SourceIndex(3) -5 >Emitted(58, 40) Source(25, 61) + SourceIndex(3) -6 >Emitted(58, 41) Source(25, 62) + SourceIndex(3) -7 >Emitted(58, 42) Source(25, 63) + SourceIndex(3) +1 >Emitted(59, 5) Source(25, 34) + SourceIndex(3) +2 >Emitted(59, 23) Source(25, 44) + SourceIndex(3) +3 >Emitted(59, 26) Source(25, 47) + SourceIndex(3) +4 >Emitted(59, 39) Source(25, 60) + SourceIndex(3) +5 >Emitted(59, 40) Source(25, 61) + SourceIndex(3) +6 >Emitted(59, 41) Source(25, 62) + SourceIndex(3) +7 >Emitted(59, 42) Source(25, 63) + SourceIndex(3) --- >>> normalN.internalConst = 10; 1 >^^^^ @@ -3340,11 +3345,11 @@ sourceFile:../../../second/second_part1.ts 3 > = 4 > 10 5 > ; -1 >Emitted(59, 5) Source(27, 33) + SourceIndex(3) -2 >Emitted(59, 26) Source(27, 46) + SourceIndex(3) -3 >Emitted(59, 29) Source(27, 49) + SourceIndex(3) -4 >Emitted(59, 31) Source(27, 51) + SourceIndex(3) -5 >Emitted(59, 32) Source(27, 52) + SourceIndex(3) +1 >Emitted(60, 5) Source(27, 33) + SourceIndex(3) +2 >Emitted(60, 26) Source(27, 46) + SourceIndex(3) +3 >Emitted(60, 29) Source(27, 49) + SourceIndex(3) +4 >Emitted(60, 31) Source(27, 51) + SourceIndex(3) +5 >Emitted(60, 32) Source(27, 52) + SourceIndex(3) --- >>> var internalEnum; 1 >^^^^ @@ -3355,9 +3360,9 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ 2 > export enum 3 > internalEnum { a, b, c } -1 >Emitted(60, 5) Source(28, 20) + SourceIndex(3) -2 >Emitted(60, 9) Source(28, 32) + SourceIndex(3) -3 >Emitted(60, 21) Source(28, 56) + SourceIndex(3) +1 >Emitted(61, 5) Source(28, 20) + SourceIndex(3) +2 >Emitted(61, 9) Source(28, 32) + SourceIndex(3) +3 >Emitted(61, 21) Source(28, 56) + SourceIndex(3) --- >>> (function (internalEnum) { 1->^^^^ @@ -3367,9 +3372,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > export enum 3 > internalEnum -1->Emitted(61, 5) Source(28, 20) + SourceIndex(3) -2 >Emitted(61, 16) Source(28, 32) + SourceIndex(3) -3 >Emitted(61, 28) Source(28, 44) + SourceIndex(3) +1->Emitted(62, 5) Source(28, 20) + SourceIndex(3) +2 >Emitted(62, 16) Source(28, 32) + SourceIndex(3) +3 >Emitted(62, 28) Source(28, 44) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -3379,9 +3384,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(62, 9) Source(28, 47) + SourceIndex(3) -2 >Emitted(62, 50) Source(28, 48) + SourceIndex(3) -3 >Emitted(62, 51) Source(28, 48) + SourceIndex(3) +1->Emitted(63, 9) Source(28, 47) + SourceIndex(3) +2 >Emitted(63, 50) Source(28, 48) + SourceIndex(3) +3 >Emitted(63, 51) Source(28, 48) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -3391,9 +3396,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(63, 9) Source(28, 50) + SourceIndex(3) -2 >Emitted(63, 50) Source(28, 51) + SourceIndex(3) -3 >Emitted(63, 51) Source(28, 51) + SourceIndex(3) +1->Emitted(64, 9) Source(28, 50) + SourceIndex(3) +2 >Emitted(64, 50) Source(28, 51) + SourceIndex(3) +3 >Emitted(64, 51) Source(28, 51) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -3403,9 +3408,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(64, 9) Source(28, 53) + SourceIndex(3) -2 >Emitted(64, 50) Source(28, 54) + SourceIndex(3) -3 >Emitted(64, 51) Source(28, 54) + SourceIndex(3) +1->Emitted(65, 9) Source(28, 53) + SourceIndex(3) +2 >Emitted(65, 50) Source(28, 54) + SourceIndex(3) +3 >Emitted(65, 51) Source(28, 54) + SourceIndex(3) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^ @@ -3426,15 +3431,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(65, 5) Source(28, 55) + SourceIndex(3) -2 >Emitted(65, 6) Source(28, 56) + SourceIndex(3) -3 >Emitted(65, 8) Source(28, 32) + SourceIndex(3) -4 >Emitted(65, 20) Source(28, 44) + SourceIndex(3) -5 >Emitted(65, 23) Source(28, 32) + SourceIndex(3) -6 >Emitted(65, 43) Source(28, 44) + SourceIndex(3) -7 >Emitted(65, 48) Source(28, 32) + SourceIndex(3) -8 >Emitted(65, 68) Source(28, 44) + SourceIndex(3) -9 >Emitted(65, 76) Source(28, 56) + SourceIndex(3) +1->Emitted(66, 5) Source(28, 55) + SourceIndex(3) +2 >Emitted(66, 6) Source(28, 56) + SourceIndex(3) +3 >Emitted(66, 8) Source(28, 32) + SourceIndex(3) +4 >Emitted(66, 20) Source(28, 44) + SourceIndex(3) +5 >Emitted(66, 23) Source(28, 32) + SourceIndex(3) +6 >Emitted(66, 43) Source(28, 44) + SourceIndex(3) +7 >Emitted(66, 48) Source(28, 32) + SourceIndex(3) +8 >Emitted(66, 68) Source(28, 44) + SourceIndex(3) +9 >Emitted(66, 76) Source(28, 56) + SourceIndex(3) --- >>>})(normalN || (normalN = {})); 1 > @@ -3462,26 +3467,26 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ export const internalConst = 10; > /**@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(66, 1) Source(29, 1) + SourceIndex(3) -2 >Emitted(66, 2) Source(29, 2) + SourceIndex(3) -3 >Emitted(66, 4) Source(20, 11) + SourceIndex(3) -4 >Emitted(66, 11) Source(20, 18) + SourceIndex(3) -5 >Emitted(66, 16) Source(20, 11) + SourceIndex(3) -6 >Emitted(66, 23) Source(20, 18) + SourceIndex(3) -7 >Emitted(66, 31) Source(29, 2) + SourceIndex(3) +1 >Emitted(67, 1) Source(29, 1) + SourceIndex(3) +2 >Emitted(67, 2) Source(29, 2) + SourceIndex(3) +3 >Emitted(67, 4) Source(20, 11) + SourceIndex(3) +4 >Emitted(67, 11) Source(20, 18) + SourceIndex(3) +5 >Emitted(67, 16) Source(20, 11) + SourceIndex(3) +6 >Emitted(67, 23) Source(20, 18) + SourceIndex(3) +7 >Emitted(67, 31) Source(29, 2) + SourceIndex(3) --- >>>var internalC = (function () { 1-> 2 >^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> >/**@internal*/ -1->Emitted(67, 1) Source(30, 16) + SourceIndex(3) +1->Emitted(68, 1) Source(30, 16) + SourceIndex(3) --- >>> function internalC() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(68, 5) Source(30, 16) + SourceIndex(3) +1->Emitted(69, 5) Source(30, 16) + SourceIndex(3) --- >>> } 1->^^^^ @@ -3489,16 +3494,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->class internalC { 2 > } -1->Emitted(69, 5) Source(30, 33) + SourceIndex(3) -2 >Emitted(69, 6) Source(30, 34) + SourceIndex(3) +1->Emitted(70, 5) Source(30, 33) + SourceIndex(3) +2 >Emitted(70, 6) Source(30, 34) + SourceIndex(3) --- >>> return internalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(70, 5) Source(30, 33) + SourceIndex(3) -2 >Emitted(70, 21) Source(30, 34) + SourceIndex(3) +1->Emitted(71, 5) Source(30, 33) + SourceIndex(3) +2 >Emitted(71, 21) Source(30, 34) + SourceIndex(3) --- >>>}()); 1 > @@ -3510,10 +3515,10 @@ sourceFile:../../../second/second_part1.ts 2 >} 3 > 4 > class internalC {} -1 >Emitted(71, 1) Source(30, 33) + SourceIndex(3) -2 >Emitted(71, 2) Source(30, 34) + SourceIndex(3) -3 >Emitted(71, 2) Source(30, 16) + SourceIndex(3) -4 >Emitted(71, 6) Source(30, 34) + SourceIndex(3) +1 >Emitted(72, 1) Source(30, 33) + SourceIndex(3) +2 >Emitted(72, 2) Source(30, 34) + SourceIndex(3) +3 >Emitted(72, 2) Source(30, 16) + SourceIndex(3) +4 >Emitted(72, 6) Source(30, 34) + SourceIndex(3) --- >>>function internalfoo() { } 1-> @@ -3527,11 +3532,11 @@ sourceFile:../../../second/second_part1.ts 3 > internalfoo 4 > () { 5 > } -1->Emitted(72, 1) Source(31, 16) + SourceIndex(3) -2 >Emitted(72, 10) Source(31, 25) + SourceIndex(3) -3 >Emitted(72, 21) Source(31, 36) + SourceIndex(3) -4 >Emitted(72, 26) Source(31, 40) + SourceIndex(3) -5 >Emitted(72, 27) Source(31, 41) + SourceIndex(3) +1->Emitted(73, 1) Source(31, 16) + SourceIndex(3) +2 >Emitted(73, 10) Source(31, 25) + SourceIndex(3) +3 >Emitted(73, 21) Source(31, 36) + SourceIndex(3) +4 >Emitted(73, 26) Source(31, 40) + SourceIndex(3) +5 >Emitted(73, 27) Source(31, 41) + SourceIndex(3) --- >>>var internalNamespace; 1 > @@ -3544,10 +3549,10 @@ sourceFile:../../../second/second_part1.ts 2 >namespace 3 > internalNamespace 4 > { export class someClass {} } -1 >Emitted(73, 1) Source(32, 16) + SourceIndex(3) -2 >Emitted(73, 5) Source(32, 26) + SourceIndex(3) -3 >Emitted(73, 22) Source(32, 43) + SourceIndex(3) -4 >Emitted(73, 23) Source(32, 73) + SourceIndex(3) +1 >Emitted(74, 1) Source(32, 16) + SourceIndex(3) +2 >Emitted(74, 5) Source(32, 26) + SourceIndex(3) +3 >Emitted(74, 22) Source(32, 43) + SourceIndex(3) +4 >Emitted(74, 23) Source(32, 73) + SourceIndex(3) --- >>>(function (internalNamespace) { 1-> @@ -3557,21 +3562,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > internalNamespace -1->Emitted(74, 1) Source(32, 16) + SourceIndex(3) -2 >Emitted(74, 12) Source(32, 26) + SourceIndex(3) -3 >Emitted(74, 29) Source(32, 43) + SourceIndex(3) +1->Emitted(75, 1) Source(32, 16) + SourceIndex(3) +2 >Emitted(75, 12) Source(32, 26) + SourceIndex(3) +3 >Emitted(75, 29) Source(32, 43) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(75, 5) Source(32, 46) + SourceIndex(3) +1->Emitted(76, 5) Source(32, 46) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(76, 9) Source(32, 46) + SourceIndex(3) +1->Emitted(77, 9) Source(32, 46) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -3579,16 +3584,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(77, 9) Source(32, 70) + SourceIndex(3) -2 >Emitted(77, 10) Source(32, 71) + SourceIndex(3) +1->Emitted(78, 9) Source(32, 70) + SourceIndex(3) +2 >Emitted(78, 10) Source(32, 71) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(78, 9) Source(32, 70) + SourceIndex(3) -2 >Emitted(78, 25) Source(32, 71) + SourceIndex(3) +1->Emitted(79, 9) Source(32, 70) + SourceIndex(3) +2 >Emitted(79, 25) Source(32, 71) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -3600,10 +3605,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(79, 5) Source(32, 70) + SourceIndex(3) -2 >Emitted(79, 6) Source(32, 71) + SourceIndex(3) -3 >Emitted(79, 6) Source(32, 46) + SourceIndex(3) -4 >Emitted(79, 10) Source(32, 71) + SourceIndex(3) +1 >Emitted(80, 5) Source(32, 70) + SourceIndex(3) +2 >Emitted(80, 6) Source(32, 71) + SourceIndex(3) +3 >Emitted(80, 6) Source(32, 46) + SourceIndex(3) +4 >Emitted(80, 10) Source(32, 71) + SourceIndex(3) --- >>> internalNamespace.someClass = someClass; 1->^^^^ @@ -3615,10 +3620,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(80, 5) Source(32, 59) + SourceIndex(3) -2 >Emitted(80, 32) Source(32, 68) + SourceIndex(3) -3 >Emitted(80, 44) Source(32, 71) + SourceIndex(3) -4 >Emitted(80, 45) Source(32, 71) + SourceIndex(3) +1->Emitted(81, 5) Source(32, 59) + SourceIndex(3) +2 >Emitted(81, 32) Source(32, 68) + SourceIndex(3) +3 >Emitted(81, 44) Source(32, 71) + SourceIndex(3) +4 >Emitted(81, 45) Source(32, 71) + SourceIndex(3) --- >>>})(internalNamespace || (internalNamespace = {})); 1-> @@ -3635,13 +3640,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalNamespace 7 > { export class someClass {} } -1->Emitted(81, 1) Source(32, 72) + SourceIndex(3) -2 >Emitted(81, 2) Source(32, 73) + SourceIndex(3) -3 >Emitted(81, 4) Source(32, 26) + SourceIndex(3) -4 >Emitted(81, 21) Source(32, 43) + SourceIndex(3) -5 >Emitted(81, 26) Source(32, 26) + SourceIndex(3) -6 >Emitted(81, 43) Source(32, 43) + SourceIndex(3) -7 >Emitted(81, 51) Source(32, 73) + SourceIndex(3) +1->Emitted(82, 1) Source(32, 72) + SourceIndex(3) +2 >Emitted(82, 2) Source(32, 73) + SourceIndex(3) +3 >Emitted(82, 4) Source(32, 26) + SourceIndex(3) +4 >Emitted(82, 21) Source(32, 43) + SourceIndex(3) +5 >Emitted(82, 26) Source(32, 26) + SourceIndex(3) +6 >Emitted(82, 43) Source(32, 43) + SourceIndex(3) +7 >Emitted(82, 51) Source(32, 73) + SourceIndex(3) --- >>>var internalOther; 1 > @@ -3654,10 +3659,10 @@ sourceFile:../../../second/second_part1.ts 2 >namespace 3 > internalOther 4 > .something { export class someClass {} } -1 >Emitted(82, 1) Source(33, 16) + SourceIndex(3) -2 >Emitted(82, 5) Source(33, 26) + SourceIndex(3) -3 >Emitted(82, 18) Source(33, 39) + SourceIndex(3) -4 >Emitted(82, 19) Source(33, 79) + SourceIndex(3) +1 >Emitted(83, 1) Source(33, 16) + SourceIndex(3) +2 >Emitted(83, 5) Source(33, 26) + SourceIndex(3) +3 >Emitted(83, 18) Source(33, 39) + SourceIndex(3) +4 >Emitted(83, 19) Source(33, 79) + SourceIndex(3) --- >>>(function (internalOther) { 1-> @@ -3666,9 +3671,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > internalOther -1->Emitted(83, 1) Source(33, 16) + SourceIndex(3) -2 >Emitted(83, 12) Source(33, 26) + SourceIndex(3) -3 >Emitted(83, 25) Source(33, 39) + SourceIndex(3) +1->Emitted(84, 1) Source(33, 16) + SourceIndex(3) +2 >Emitted(84, 12) Source(33, 26) + SourceIndex(3) +3 >Emitted(84, 25) Source(33, 39) + SourceIndex(3) --- >>> var something; 1 >^^^^ @@ -3680,10 +3685,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(84, 5) Source(33, 40) + SourceIndex(3) -2 >Emitted(84, 9) Source(33, 40) + SourceIndex(3) -3 >Emitted(84, 18) Source(33, 49) + SourceIndex(3) -4 >Emitted(84, 19) Source(33, 79) + SourceIndex(3) +1 >Emitted(85, 5) Source(33, 40) + SourceIndex(3) +2 >Emitted(85, 9) Source(33, 40) + SourceIndex(3) +3 >Emitted(85, 18) Source(33, 49) + SourceIndex(3) +4 >Emitted(85, 19) Source(33, 79) + SourceIndex(3) --- >>> (function (something) { 1->^^^^ @@ -3693,21 +3698,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(85, 5) Source(33, 40) + SourceIndex(3) -2 >Emitted(85, 16) Source(33, 40) + SourceIndex(3) -3 >Emitted(85, 25) Source(33, 49) + SourceIndex(3) +1->Emitted(86, 5) Source(33, 40) + SourceIndex(3) +2 >Emitted(86, 16) Source(33, 40) + SourceIndex(3) +3 >Emitted(86, 25) Source(33, 49) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(86, 9) Source(33, 52) + SourceIndex(3) +1->Emitted(87, 9) Source(33, 52) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(87, 13) Source(33, 52) + SourceIndex(3) +1->Emitted(88, 13) Source(33, 52) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -3715,16 +3720,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(88, 13) Source(33, 76) + SourceIndex(3) -2 >Emitted(88, 14) Source(33, 77) + SourceIndex(3) +1->Emitted(89, 13) Source(33, 76) + SourceIndex(3) +2 >Emitted(89, 14) Source(33, 77) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(89, 13) Source(33, 76) + SourceIndex(3) -2 >Emitted(89, 29) Source(33, 77) + SourceIndex(3) +1->Emitted(90, 13) Source(33, 76) + SourceIndex(3) +2 >Emitted(90, 29) Source(33, 77) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -3736,10 +3741,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(90, 9) Source(33, 76) + SourceIndex(3) -2 >Emitted(90, 10) Source(33, 77) + SourceIndex(3) -3 >Emitted(90, 10) Source(33, 52) + SourceIndex(3) -4 >Emitted(90, 14) Source(33, 77) + SourceIndex(3) +1 >Emitted(91, 9) Source(33, 76) + SourceIndex(3) +2 >Emitted(91, 10) Source(33, 77) + SourceIndex(3) +3 >Emitted(91, 10) Source(33, 52) + SourceIndex(3) +4 >Emitted(91, 14) Source(33, 77) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^ @@ -3751,10 +3756,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(91, 9) Source(33, 65) + SourceIndex(3) -2 >Emitted(91, 28) Source(33, 74) + SourceIndex(3) -3 >Emitted(91, 40) Source(33, 77) + SourceIndex(3) -4 >Emitted(91, 41) Source(33, 77) + SourceIndex(3) +1->Emitted(92, 9) Source(33, 65) + SourceIndex(3) +2 >Emitted(92, 28) Source(33, 74) + SourceIndex(3) +3 >Emitted(92, 40) Source(33, 77) + SourceIndex(3) +4 >Emitted(92, 41) Source(33, 77) + SourceIndex(3) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^ @@ -3775,15 +3780,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(92, 5) Source(33, 78) + SourceIndex(3) -2 >Emitted(92, 6) Source(33, 79) + SourceIndex(3) -3 >Emitted(92, 8) Source(33, 40) + SourceIndex(3) -4 >Emitted(92, 17) Source(33, 49) + SourceIndex(3) -5 >Emitted(92, 20) Source(33, 40) + SourceIndex(3) -6 >Emitted(92, 43) Source(33, 49) + SourceIndex(3) -7 >Emitted(92, 48) Source(33, 40) + SourceIndex(3) -8 >Emitted(92, 71) Source(33, 49) + SourceIndex(3) -9 >Emitted(92, 79) Source(33, 79) + SourceIndex(3) +1->Emitted(93, 5) Source(33, 78) + SourceIndex(3) +2 >Emitted(93, 6) Source(33, 79) + SourceIndex(3) +3 >Emitted(93, 8) Source(33, 40) + SourceIndex(3) +4 >Emitted(93, 17) Source(33, 49) + SourceIndex(3) +5 >Emitted(93, 20) Source(33, 40) + SourceIndex(3) +6 >Emitted(93, 43) Source(33, 49) + SourceIndex(3) +7 >Emitted(93, 48) Source(33, 40) + SourceIndex(3) +8 >Emitted(93, 71) Source(33, 49) + SourceIndex(3) +9 >Emitted(93, 79) Source(33, 79) + SourceIndex(3) --- >>>})(internalOther || (internalOther = {})); 1 > @@ -3801,13 +3806,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalOther 7 > .something { export class someClass {} } -1 >Emitted(93, 1) Source(33, 78) + SourceIndex(3) -2 >Emitted(93, 2) Source(33, 79) + SourceIndex(3) -3 >Emitted(93, 4) Source(33, 26) + SourceIndex(3) -4 >Emitted(93, 17) Source(33, 39) + SourceIndex(3) -5 >Emitted(93, 22) Source(33, 26) + SourceIndex(3) -6 >Emitted(93, 35) Source(33, 39) + SourceIndex(3) -7 >Emitted(93, 43) Source(33, 79) + SourceIndex(3) +1 >Emitted(94, 1) Source(33, 78) + SourceIndex(3) +2 >Emitted(94, 2) Source(33, 79) + SourceIndex(3) +3 >Emitted(94, 4) Source(33, 26) + SourceIndex(3) +4 >Emitted(94, 17) Source(33, 39) + SourceIndex(3) +5 >Emitted(94, 22) Source(33, 26) + SourceIndex(3) +6 >Emitted(94, 35) Source(33, 39) + SourceIndex(3) +7 >Emitted(94, 43) Source(33, 79) + SourceIndex(3) --- >>>var internalImport = internalNamespace.someClass; 1-> @@ -3827,14 +3832,14 @@ sourceFile:../../../second/second_part1.ts 6 > . 7 > someClass 8 > ; -1->Emitted(94, 1) Source(34, 16) + SourceIndex(3) -2 >Emitted(94, 5) Source(34, 23) + SourceIndex(3) -3 >Emitted(94, 19) Source(34, 37) + SourceIndex(3) -4 >Emitted(94, 22) Source(34, 40) + SourceIndex(3) -5 >Emitted(94, 39) Source(34, 57) + SourceIndex(3) -6 >Emitted(94, 40) Source(34, 58) + SourceIndex(3) -7 >Emitted(94, 49) Source(34, 67) + SourceIndex(3) -8 >Emitted(94, 50) Source(34, 68) + SourceIndex(3) +1->Emitted(95, 1) Source(34, 16) + SourceIndex(3) +2 >Emitted(95, 5) Source(34, 23) + SourceIndex(3) +3 >Emitted(95, 19) Source(34, 37) + SourceIndex(3) +4 >Emitted(95, 22) Source(34, 40) + SourceIndex(3) +5 >Emitted(95, 39) Source(34, 57) + SourceIndex(3) +6 >Emitted(95, 40) Source(34, 58) + SourceIndex(3) +7 >Emitted(95, 49) Source(34, 67) + SourceIndex(3) +8 >Emitted(95, 50) Source(34, 68) + SourceIndex(3) --- >>>var internalConst = 10; 1 > @@ -3851,12 +3856,12 @@ sourceFile:../../../second/second_part1.ts 4 > = 5 > 10 6 > ; -1 >Emitted(95, 1) Source(36, 16) + SourceIndex(3) -2 >Emitted(95, 5) Source(36, 22) + SourceIndex(3) -3 >Emitted(95, 18) Source(36, 35) + SourceIndex(3) -4 >Emitted(95, 21) Source(36, 38) + SourceIndex(3) -5 >Emitted(95, 23) Source(36, 40) + SourceIndex(3) -6 >Emitted(95, 24) Source(36, 41) + SourceIndex(3) +1 >Emitted(96, 1) Source(36, 16) + SourceIndex(3) +2 >Emitted(96, 5) Source(36, 22) + SourceIndex(3) +3 >Emitted(96, 18) Source(36, 35) + SourceIndex(3) +4 >Emitted(96, 21) Source(36, 38) + SourceIndex(3) +5 >Emitted(96, 23) Source(36, 40) + SourceIndex(3) +6 >Emitted(96, 24) Source(36, 41) + SourceIndex(3) --- >>>var internalEnum; 1 > @@ -3867,9 +3872,9 @@ sourceFile:../../../second/second_part1.ts >/**@internal*/ 2 >enum 3 > internalEnum { a, b, c } -1 >Emitted(96, 1) Source(37, 16) + SourceIndex(3) -2 >Emitted(96, 5) Source(37, 21) + SourceIndex(3) -3 >Emitted(96, 17) Source(37, 45) + SourceIndex(3) +1 >Emitted(97, 1) Source(37, 16) + SourceIndex(3) +2 >Emitted(97, 5) Source(37, 21) + SourceIndex(3) +3 >Emitted(97, 17) Source(37, 45) + SourceIndex(3) --- >>>(function (internalEnum) { 1-> @@ -3879,9 +3884,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >enum 3 > internalEnum -1->Emitted(97, 1) Source(37, 16) + SourceIndex(3) -2 >Emitted(97, 12) Source(37, 21) + SourceIndex(3) -3 >Emitted(97, 24) Source(37, 33) + SourceIndex(3) +1->Emitted(98, 1) Source(37, 16) + SourceIndex(3) +2 >Emitted(98, 12) Source(37, 21) + SourceIndex(3) +3 >Emitted(98, 24) Source(37, 33) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^ @@ -3891,9 +3896,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(98, 5) Source(37, 36) + SourceIndex(3) -2 >Emitted(98, 46) Source(37, 37) + SourceIndex(3) -3 >Emitted(98, 47) Source(37, 37) + SourceIndex(3) +1->Emitted(99, 5) Source(37, 36) + SourceIndex(3) +2 >Emitted(99, 46) Source(37, 37) + SourceIndex(3) +3 >Emitted(99, 47) Source(37, 37) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^ @@ -3903,9 +3908,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(99, 5) Source(37, 39) + SourceIndex(3) -2 >Emitted(99, 46) Source(37, 40) + SourceIndex(3) -3 >Emitted(99, 47) Source(37, 40) + SourceIndex(3) +1->Emitted(100, 5) Source(37, 39) + SourceIndex(3) +2 >Emitted(100, 46) Source(37, 40) + SourceIndex(3) +3 >Emitted(100, 47) Source(37, 40) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^ @@ -3914,9 +3919,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(100, 5) Source(37, 42) + SourceIndex(3) -2 >Emitted(100, 46) Source(37, 43) + SourceIndex(3) -3 >Emitted(100, 47) Source(37, 43) + SourceIndex(3) +1->Emitted(101, 5) Source(37, 42) + SourceIndex(3) +2 >Emitted(101, 46) Source(37, 43) + SourceIndex(3) +3 >Emitted(101, 47) Source(37, 43) + SourceIndex(3) --- >>>})(internalEnum || (internalEnum = {})); 1 > @@ -3933,13 +3938,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalEnum 7 > { a, b, c } -1 >Emitted(101, 1) Source(37, 44) + SourceIndex(3) -2 >Emitted(101, 2) Source(37, 45) + SourceIndex(3) -3 >Emitted(101, 4) Source(37, 21) + SourceIndex(3) -4 >Emitted(101, 16) Source(37, 33) + SourceIndex(3) -5 >Emitted(101, 21) Source(37, 21) + SourceIndex(3) -6 >Emitted(101, 33) Source(37, 33) + SourceIndex(3) -7 >Emitted(101, 41) Source(37, 45) + SourceIndex(3) +1 >Emitted(102, 1) Source(37, 44) + SourceIndex(3) +2 >Emitted(102, 2) Source(37, 45) + SourceIndex(3) +3 >Emitted(102, 4) Source(37, 21) + SourceIndex(3) +4 >Emitted(102, 16) Source(37, 33) + SourceIndex(3) +5 >Emitted(102, 21) Source(37, 21) + SourceIndex(3) +6 >Emitted(102, 33) Source(37, 33) + SourceIndex(3) +7 >Emitted(102, 41) Source(37, 45) + SourceIndex(3) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -3949,13 +3954,13 @@ sourceFile:../../../second/second_part2.ts 1 > 2 >^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(102, 1) Source(1, 1) + SourceIndex(4) +1 >Emitted(103, 1) Source(1, 1) + SourceIndex(4) --- >>> function C() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(103, 5) Source(1, 1) + SourceIndex(4) +1->Emitted(104, 5) Source(1, 1) + SourceIndex(4) --- >>> } 1->^^^^ @@ -3967,8 +3972,8 @@ sourceFile:../../../second/second_part2.ts > } > 2 > } -1->Emitted(104, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(104, 6) Source(5, 2) + SourceIndex(4) +1->Emitted(105, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(105, 6) Source(5, 2) + SourceIndex(4) --- >>> C.prototype.doSomething = function () { 1->^^^^ @@ -3978,9 +3983,9 @@ sourceFile:../../../second/second_part2.ts 1-> 2 > doSomething 3 > -1->Emitted(105, 5) Source(2, 5) + SourceIndex(4) -2 >Emitted(105, 28) Source(2, 16) + SourceIndex(4) -3 >Emitted(105, 31) Source(2, 5) + SourceIndex(4) +1->Emitted(106, 5) Source(2, 5) + SourceIndex(4) +2 >Emitted(106, 28) Source(2, 16) + SourceIndex(4) +3 >Emitted(106, 31) Source(2, 5) + SourceIndex(4) --- >>> console.log("something got done"); 1->^^^^^^^^ @@ -4000,14 +4005,14 @@ sourceFile:../../../second/second_part2.ts 6 > "something got done" 7 > ) 8 > ; -1->Emitted(106, 9) Source(3, 9) + SourceIndex(4) -2 >Emitted(106, 16) Source(3, 16) + SourceIndex(4) -3 >Emitted(106, 17) Source(3, 17) + SourceIndex(4) -4 >Emitted(106, 20) Source(3, 20) + SourceIndex(4) -5 >Emitted(106, 21) Source(3, 21) + SourceIndex(4) -6 >Emitted(106, 41) Source(3, 41) + SourceIndex(4) -7 >Emitted(106, 42) Source(3, 42) + SourceIndex(4) -8 >Emitted(106, 43) Source(3, 43) + SourceIndex(4) +1->Emitted(107, 9) Source(3, 9) + SourceIndex(4) +2 >Emitted(107, 16) Source(3, 16) + SourceIndex(4) +3 >Emitted(107, 17) Source(3, 17) + SourceIndex(4) +4 >Emitted(107, 20) Source(3, 20) + SourceIndex(4) +5 >Emitted(107, 21) Source(3, 21) + SourceIndex(4) +6 >Emitted(107, 41) Source(3, 41) + SourceIndex(4) +7 >Emitted(107, 42) Source(3, 42) + SourceIndex(4) +8 >Emitted(107, 43) Source(3, 43) + SourceIndex(4) --- >>> }; 1 >^^^^ @@ -4016,8 +4021,8 @@ sourceFile:../../../second/second_part2.ts 1 > > 2 > } -1 >Emitted(107, 5) Source(4, 5) + SourceIndex(4) -2 >Emitted(107, 6) Source(4, 6) + SourceIndex(4) +1 >Emitted(108, 5) Source(4, 5) + SourceIndex(4) +2 >Emitted(108, 6) Source(4, 6) + SourceIndex(4) --- >>> return C; 1->^^^^ @@ -4025,8 +4030,8 @@ sourceFile:../../../second/second_part2.ts 1-> > 2 > } -1->Emitted(108, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(108, 13) Source(5, 2) + SourceIndex(4) +1->Emitted(109, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(109, 13) Source(5, 2) + SourceIndex(4) --- >>>}()); 1 > @@ -4042,10 +4047,10 @@ sourceFile:../../../second/second_part2.ts > console.log("something got done"); > } > } -1 >Emitted(109, 1) Source(5, 1) + SourceIndex(4) -2 >Emitted(109, 2) Source(5, 2) + SourceIndex(4) -3 >Emitted(109, 2) Source(1, 1) + SourceIndex(4) -4 >Emitted(109, 6) Source(5, 2) + SourceIndex(4) +1 >Emitted(110, 1) Source(5, 1) + SourceIndex(4) +2 >Emitted(110, 2) Source(5, 2) + SourceIndex(4) +3 >Emitted(110, 2) Source(1, 1) + SourceIndex(4) +4 >Emitted(110, 6) Source(5, 2) + SourceIndex(4) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -4069,14 +4074,14 @@ sourceFile:../../third_part1.ts 6 > C 7 > () 8 > ; -1->Emitted(110, 1) Source(1, 1) + SourceIndex(5) -2 >Emitted(110, 5) Source(1, 5) + SourceIndex(5) -3 >Emitted(110, 6) Source(1, 6) + SourceIndex(5) -4 >Emitted(110, 9) Source(1, 9) + SourceIndex(5) -5 >Emitted(110, 13) Source(1, 13) + SourceIndex(5) -6 >Emitted(110, 14) Source(1, 14) + SourceIndex(5) -7 >Emitted(110, 16) Source(1, 16) + SourceIndex(5) -8 >Emitted(110, 17) Source(1, 17) + SourceIndex(5) +1->Emitted(111, 1) Source(1, 1) + SourceIndex(5) +2 >Emitted(111, 5) Source(1, 5) + SourceIndex(5) +3 >Emitted(111, 6) Source(1, 6) + SourceIndex(5) +4 >Emitted(111, 9) Source(1, 9) + SourceIndex(5) +5 >Emitted(111, 13) Source(1, 13) + SourceIndex(5) +6 >Emitted(111, 14) Source(1, 14) + SourceIndex(5) +7 >Emitted(111, 16) Source(1, 16) + SourceIndex(5) +8 >Emitted(111, 17) Source(1, 17) + SourceIndex(5) --- >>>c.doSomething(); 1-> @@ -4093,12 +4098,12 @@ sourceFile:../../third_part1.ts 4 > doSomething 5 > () 6 > ; -1->Emitted(111, 1) Source(2, 1) + SourceIndex(5) -2 >Emitted(111, 2) Source(2, 2) + SourceIndex(5) -3 >Emitted(111, 3) Source(2, 3) + SourceIndex(5) -4 >Emitted(111, 14) Source(2, 14) + SourceIndex(5) -5 >Emitted(111, 16) Source(2, 16) + SourceIndex(5) -6 >Emitted(111, 17) Source(2, 17) + SourceIndex(5) +1->Emitted(112, 1) Source(2, 1) + SourceIndex(5) +2 >Emitted(112, 2) Source(2, 2) + SourceIndex(5) +3 >Emitted(112, 3) Source(2, 3) + SourceIndex(5) +4 >Emitted(112, 14) Source(2, 14) + SourceIndex(5) +5 >Emitted(112, 16) Source(2, 16) + SourceIndex(5) +6 >Emitted(112, 17) Source(2, 17) + SourceIndex(5) --- >>>//# sourceMappingURL=third-output.js.map @@ -4113,20 +4118,20 @@ sourceFile:../../third_part1.ts "sections": [ { "pos": 0, - "end": 3180, + "end": 3228, "kind": "prepend", "data": "../../../2/second-output.js", "texts": [ { "pos": 0, - "end": 3180, + "end": 3228, "kind": "text" } ] }, { - "pos": 3180, - "end": 3216, + "pos": 3228, + "end": 3264, "kind": "text" } ] @@ -4161,9 +4166,9 @@ sourceFile:../../third_part1.ts ====================================================================== File:: /src/third/thirdjs/output/third-output.js ---------------------------------------------------------------------- -prepend: (0-3180):: ../../../2/second-output.js texts:: 1 +prepend: (0-3228):: ../../../2/second-output.js texts:: 1 >>-------------------------------------------------------------------- -text: (0-3180) +text: (0-3228) var s = "Hello, world"; console.log(s); console.log(s); @@ -4181,8 +4186,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -4275,7 +4281,7 @@ var C = (function () { }()); ---------------------------------------------------------------------- -text: (3180-3216) +text: (3228-3264) var c = new C(); c.doSomething(); diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-comment.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-comment.js index 0767c3a71b080..2a0d9b0f4f29f 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-comment.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-comment.js @@ -310,8 +310,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -407,7 +408,7 @@ c.doSomething(); //# sourceMappingURL=third-output.js.map //// [/src/third/thirdjs/output/third-output.js.map] -{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} //// [/src/third/thirdjs/output/third-output.js.map.baseline.txt] =================================================================== @@ -736,13 +737,14 @@ sourceFile:../../../second/second_part1.ts >>> } 1->^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1->constructor() { 2 > } 1->Emitted(17, 5) Source(14, 36) + SourceIndex(3) 2 >Emitted(17, 6) Source(14, 37) + SourceIndex(3) --- ->>> normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> normalC_prototype.method = function () { }; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^ @@ -756,13 +758,13 @@ sourceFile:../../../second/second_part1.ts 3 > 4 > method() { 5 > } -1->Emitted(18, 5) Source(16, 20) + SourceIndex(3) -2 >Emitted(18, 29) Source(16, 26) + SourceIndex(3) -3 >Emitted(18, 32) Source(16, 20) + SourceIndex(3) -4 >Emitted(18, 46) Source(16, 31) + SourceIndex(3) -5 >Emitted(18, 47) Source(16, 32) + SourceIndex(3) +1->Emitted(19, 5) Source(16, 20) + SourceIndex(3) +2 >Emitted(19, 29) Source(16, 26) + SourceIndex(3) +3 >Emitted(19, 32) Source(16, 20) + SourceIndex(3) +4 >Emitted(19, 46) Source(16, 31) + SourceIndex(3) +5 >Emitted(19, 47) Source(16, 32) + SourceIndex(3) --- ->>> Object.defineProperty(normalC.prototype, "c", { +>>> Object.defineProperty(normalC_prototype, "c", { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -770,9 +772,9 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ 2 > get 3 > c -1->Emitted(19, 5) Source(17, 20) + SourceIndex(3) -2 >Emitted(19, 27) Source(17, 24) + SourceIndex(3) -3 >Emitted(19, 49) Source(17, 25) + SourceIndex(3) +1->Emitted(20, 5) Source(17, 20) + SourceIndex(3) +2 >Emitted(20, 27) Source(17, 24) + SourceIndex(3) +3 >Emitted(20, 49) Source(17, 25) + SourceIndex(3) --- >>> get: function () { return 10; }, 1 >^^^^^^^^^^^^^ @@ -789,13 +791,13 @@ sourceFile:../../../second/second_part1.ts 5 > ; 6 > 7 > } -1 >Emitted(20, 14) Source(17, 20) + SourceIndex(3) -2 >Emitted(20, 28) Source(17, 30) + SourceIndex(3) -3 >Emitted(20, 35) Source(17, 37) + SourceIndex(3) -4 >Emitted(20, 37) Source(17, 39) + SourceIndex(3) -5 >Emitted(20, 38) Source(17, 40) + SourceIndex(3) -6 >Emitted(20, 39) Source(17, 41) + SourceIndex(3) -7 >Emitted(20, 40) Source(17, 42) + SourceIndex(3) +1 >Emitted(21, 14) Source(17, 20) + SourceIndex(3) +2 >Emitted(21, 28) Source(17, 30) + SourceIndex(3) +3 >Emitted(21, 35) Source(17, 37) + SourceIndex(3) +4 >Emitted(21, 37) Source(17, 39) + SourceIndex(3) +5 >Emitted(21, 38) Source(17, 40) + SourceIndex(3) +6 >Emitted(21, 39) Source(17, 41) + SourceIndex(3) +7 >Emitted(21, 40) Source(17, 42) + SourceIndex(3) --- >>> set: function (val) { }, 1 >^^^^^^^^^^^^^ @@ -809,11 +811,11 @@ sourceFile:../../../second/second_part1.ts 3 > val: number 4 > ) { 5 > } -1 >Emitted(21, 14) Source(18, 20) + SourceIndex(3) -2 >Emitted(21, 24) Source(18, 26) + SourceIndex(3) -3 >Emitted(21, 27) Source(18, 37) + SourceIndex(3) -4 >Emitted(21, 31) Source(18, 41) + SourceIndex(3) -5 >Emitted(21, 32) Source(18, 42) + SourceIndex(3) +1 >Emitted(22, 14) Source(18, 20) + SourceIndex(3) +2 >Emitted(22, 24) Source(18, 26) + SourceIndex(3) +3 >Emitted(22, 27) Source(18, 37) + SourceIndex(3) +4 >Emitted(22, 31) Source(18, 41) + SourceIndex(3) +5 >Emitted(22, 32) Source(18, 42) + SourceIndex(3) --- >>> enumerable: false, >>> configurable: true @@ -821,7 +823,7 @@ sourceFile:../../../second/second_part1.ts 1 >^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(24, 8) Source(17, 42) + SourceIndex(3) +1 >Emitted(25, 8) Source(17, 42) + SourceIndex(3) --- >>> return normalC; 1->^^^^ @@ -830,8 +832,8 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ set c(val: number) { } > 2 > } -1->Emitted(25, 5) Source(19, 1) + SourceIndex(3) -2 >Emitted(25, 19) Source(19, 2) + SourceIndex(3) +1->Emitted(26, 5) Source(19, 1) + SourceIndex(3) +2 >Emitted(26, 19) Source(19, 2) + SourceIndex(3) --- >>>}()); 1 > @@ -849,10 +851,10 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ get c() { return 10; } > /**@internal*/ set c(val: number) { } > } -1 >Emitted(26, 1) Source(19, 1) + SourceIndex(3) -2 >Emitted(26, 2) Source(19, 2) + SourceIndex(3) -3 >Emitted(26, 2) Source(13, 1) + SourceIndex(3) -4 >Emitted(26, 6) Source(19, 2) + SourceIndex(3) +1 >Emitted(27, 1) Source(19, 1) + SourceIndex(3) +2 >Emitted(27, 2) Source(19, 2) + SourceIndex(3) +3 >Emitted(27, 2) Source(13, 1) + SourceIndex(3) +4 >Emitted(27, 6) Source(19, 2) + SourceIndex(3) --- >>>var normalN; 1-> @@ -874,10 +876,10 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ export const internalConst = 10; > /**@internal*/ export enum internalEnum { a, b, c } > } -1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(27, 5) Source(20, 11) + SourceIndex(3) -3 >Emitted(27, 12) Source(20, 18) + SourceIndex(3) -4 >Emitted(27, 13) Source(29, 2) + SourceIndex(3) +1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(28, 5) Source(20, 11) + SourceIndex(3) +3 >Emitted(28, 12) Source(20, 18) + SourceIndex(3) +4 >Emitted(28, 13) Source(29, 2) + SourceIndex(3) --- >>>(function (normalN) { 1-> @@ -887,22 +889,22 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > normalN -1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(28, 12) Source(20, 11) + SourceIndex(3) -3 >Emitted(28, 19) Source(20, 18) + SourceIndex(3) +1->Emitted(29, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(29, 12) Source(20, 11) + SourceIndex(3) +3 >Emitted(29, 19) Source(20, 18) + SourceIndex(3) --- >>> var C = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { > /**@internal*/ -1->Emitted(29, 5) Source(21, 20) + SourceIndex(3) +1->Emitted(30, 5) Source(21, 20) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(30, 9) Source(21, 20) + SourceIndex(3) +1->Emitted(31, 9) Source(21, 20) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -910,16 +912,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(31, 9) Source(21, 37) + SourceIndex(3) -2 >Emitted(31, 10) Source(21, 38) + SourceIndex(3) +1->Emitted(32, 9) Source(21, 37) + SourceIndex(3) +2 >Emitted(32, 10) Source(21, 38) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(32, 9) Source(21, 37) + SourceIndex(3) -2 >Emitted(32, 17) Source(21, 38) + SourceIndex(3) +1->Emitted(33, 9) Source(21, 37) + SourceIndex(3) +2 >Emitted(33, 17) Source(21, 38) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -931,10 +933,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(33, 5) Source(21, 37) + SourceIndex(3) -2 >Emitted(33, 6) Source(21, 38) + SourceIndex(3) -3 >Emitted(33, 6) Source(21, 20) + SourceIndex(3) -4 >Emitted(33, 10) Source(21, 38) + SourceIndex(3) +1 >Emitted(34, 5) Source(21, 37) + SourceIndex(3) +2 >Emitted(34, 6) Source(21, 38) + SourceIndex(3) +3 >Emitted(34, 6) Source(21, 20) + SourceIndex(3) +4 >Emitted(34, 10) Source(21, 38) + SourceIndex(3) --- >>> normalN.C = C; 1->^^^^ @@ -946,10 +948,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > { } 4 > -1->Emitted(34, 5) Source(21, 33) + SourceIndex(3) -2 >Emitted(34, 14) Source(21, 34) + SourceIndex(3) -3 >Emitted(34, 18) Source(21, 38) + SourceIndex(3) -4 >Emitted(34, 19) Source(21, 38) + SourceIndex(3) +1->Emitted(35, 5) Source(21, 33) + SourceIndex(3) +2 >Emitted(35, 14) Source(21, 34) + SourceIndex(3) +3 >Emitted(35, 18) Source(21, 38) + SourceIndex(3) +4 >Emitted(35, 19) Source(21, 38) + SourceIndex(3) --- >>> function foo() { } 1->^^^^ @@ -964,11 +966,11 @@ sourceFile:../../../second/second_part1.ts 3 > foo 4 > () { 5 > } -1->Emitted(35, 5) Source(22, 20) + SourceIndex(3) -2 >Emitted(35, 14) Source(22, 36) + SourceIndex(3) -3 >Emitted(35, 17) Source(22, 39) + SourceIndex(3) -4 >Emitted(35, 22) Source(22, 43) + SourceIndex(3) -5 >Emitted(35, 23) Source(22, 44) + SourceIndex(3) +1->Emitted(36, 5) Source(22, 20) + SourceIndex(3) +2 >Emitted(36, 14) Source(22, 36) + SourceIndex(3) +3 >Emitted(36, 17) Source(22, 39) + SourceIndex(3) +4 >Emitted(36, 22) Source(22, 43) + SourceIndex(3) +5 >Emitted(36, 23) Source(22, 44) + SourceIndex(3) --- >>> normalN.foo = foo; 1->^^^^ @@ -980,10 +982,10 @@ sourceFile:../../../second/second_part1.ts 2 > foo 3 > () {} 4 > -1->Emitted(36, 5) Source(22, 36) + SourceIndex(3) -2 >Emitted(36, 16) Source(22, 39) + SourceIndex(3) -3 >Emitted(36, 22) Source(22, 44) + SourceIndex(3) -4 >Emitted(36, 23) Source(22, 44) + SourceIndex(3) +1->Emitted(37, 5) Source(22, 36) + SourceIndex(3) +2 >Emitted(37, 16) Source(22, 39) + SourceIndex(3) +3 >Emitted(37, 22) Source(22, 44) + SourceIndex(3) +4 >Emitted(37, 23) Source(22, 44) + SourceIndex(3) --- >>> var someNamespace; 1->^^^^ @@ -996,10 +998,10 @@ sourceFile:../../../second/second_part1.ts 2 > export namespace 3 > someNamespace 4 > { export class C {} } -1->Emitted(37, 5) Source(23, 20) + SourceIndex(3) -2 >Emitted(37, 9) Source(23, 37) + SourceIndex(3) -3 >Emitted(37, 22) Source(23, 50) + SourceIndex(3) -4 >Emitted(37, 23) Source(23, 72) + SourceIndex(3) +1->Emitted(38, 5) Source(23, 20) + SourceIndex(3) +2 >Emitted(38, 9) Source(23, 37) + SourceIndex(3) +3 >Emitted(38, 22) Source(23, 50) + SourceIndex(3) +4 >Emitted(38, 23) Source(23, 72) + SourceIndex(3) --- >>> (function (someNamespace) { 1->^^^^ @@ -1009,21 +1011,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > export namespace 3 > someNamespace -1->Emitted(38, 5) Source(23, 20) + SourceIndex(3) -2 >Emitted(38, 16) Source(23, 37) + SourceIndex(3) -3 >Emitted(38, 29) Source(23, 50) + SourceIndex(3) +1->Emitted(39, 5) Source(23, 20) + SourceIndex(3) +2 >Emitted(39, 16) Source(23, 37) + SourceIndex(3) +3 >Emitted(39, 29) Source(23, 50) + SourceIndex(3) --- >>> var C = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(39, 9) Source(23, 53) + SourceIndex(3) +1->Emitted(40, 9) Source(23, 53) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(40, 13) Source(23, 53) + SourceIndex(3) +1->Emitted(41, 13) Source(23, 53) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -1031,16 +1033,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(41, 13) Source(23, 69) + SourceIndex(3) -2 >Emitted(41, 14) Source(23, 70) + SourceIndex(3) +1->Emitted(42, 13) Source(23, 69) + SourceIndex(3) +2 >Emitted(42, 14) Source(23, 70) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(42, 13) Source(23, 69) + SourceIndex(3) -2 >Emitted(42, 21) Source(23, 70) + SourceIndex(3) +1->Emitted(43, 13) Source(23, 69) + SourceIndex(3) +2 >Emitted(43, 21) Source(23, 70) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -1052,10 +1054,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(43, 9) Source(23, 69) + SourceIndex(3) -2 >Emitted(43, 10) Source(23, 70) + SourceIndex(3) -3 >Emitted(43, 10) Source(23, 53) + SourceIndex(3) -4 >Emitted(43, 14) Source(23, 70) + SourceIndex(3) +1 >Emitted(44, 9) Source(23, 69) + SourceIndex(3) +2 >Emitted(44, 10) Source(23, 70) + SourceIndex(3) +3 >Emitted(44, 10) Source(23, 53) + SourceIndex(3) +4 >Emitted(44, 14) Source(23, 70) + SourceIndex(3) --- >>> someNamespace.C = C; 1->^^^^^^^^ @@ -1067,10 +1069,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > {} 4 > -1->Emitted(44, 9) Source(23, 66) + SourceIndex(3) -2 >Emitted(44, 24) Source(23, 67) + SourceIndex(3) -3 >Emitted(44, 28) Source(23, 70) + SourceIndex(3) -4 >Emitted(44, 29) Source(23, 70) + SourceIndex(3) +1->Emitted(45, 9) Source(23, 66) + SourceIndex(3) +2 >Emitted(45, 24) Source(23, 67) + SourceIndex(3) +3 >Emitted(45, 28) Source(23, 70) + SourceIndex(3) +4 >Emitted(45, 29) Source(23, 70) + SourceIndex(3) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^ @@ -1091,15 +1093,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(45, 5) Source(23, 71) + SourceIndex(3) -2 >Emitted(45, 6) Source(23, 72) + SourceIndex(3) -3 >Emitted(45, 8) Source(23, 37) + SourceIndex(3) -4 >Emitted(45, 21) Source(23, 50) + SourceIndex(3) -5 >Emitted(45, 24) Source(23, 37) + SourceIndex(3) -6 >Emitted(45, 45) Source(23, 50) + SourceIndex(3) -7 >Emitted(45, 50) Source(23, 37) + SourceIndex(3) -8 >Emitted(45, 71) Source(23, 50) + SourceIndex(3) -9 >Emitted(45, 79) Source(23, 72) + SourceIndex(3) +1->Emitted(46, 5) Source(23, 71) + SourceIndex(3) +2 >Emitted(46, 6) Source(23, 72) + SourceIndex(3) +3 >Emitted(46, 8) Source(23, 37) + SourceIndex(3) +4 >Emitted(46, 21) Source(23, 50) + SourceIndex(3) +5 >Emitted(46, 24) Source(23, 37) + SourceIndex(3) +6 >Emitted(46, 45) Source(23, 50) + SourceIndex(3) +7 >Emitted(46, 50) Source(23, 37) + SourceIndex(3) +8 >Emitted(46, 71) Source(23, 50) + SourceIndex(3) +9 >Emitted(46, 79) Source(23, 72) + SourceIndex(3) --- >>> var someOther; 1 >^^^^ @@ -1112,10 +1114,10 @@ sourceFile:../../../second/second_part1.ts 2 > export namespace 3 > someOther 4 > .something { export class someClass {} } -1 >Emitted(46, 5) Source(24, 20) + SourceIndex(3) -2 >Emitted(46, 9) Source(24, 37) + SourceIndex(3) -3 >Emitted(46, 18) Source(24, 46) + SourceIndex(3) -4 >Emitted(46, 19) Source(24, 86) + SourceIndex(3) +1 >Emitted(47, 5) Source(24, 20) + SourceIndex(3) +2 >Emitted(47, 9) Source(24, 37) + SourceIndex(3) +3 >Emitted(47, 18) Source(24, 46) + SourceIndex(3) +4 >Emitted(47, 19) Source(24, 86) + SourceIndex(3) --- >>> (function (someOther) { 1->^^^^ @@ -1124,9 +1126,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > export namespace 3 > someOther -1->Emitted(47, 5) Source(24, 20) + SourceIndex(3) -2 >Emitted(47, 16) Source(24, 37) + SourceIndex(3) -3 >Emitted(47, 25) Source(24, 46) + SourceIndex(3) +1->Emitted(48, 5) Source(24, 20) + SourceIndex(3) +2 >Emitted(48, 16) Source(24, 37) + SourceIndex(3) +3 >Emitted(48, 25) Source(24, 46) + SourceIndex(3) --- >>> var something; 1 >^^^^^^^^ @@ -1138,10 +1140,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(48, 9) Source(24, 47) + SourceIndex(3) -2 >Emitted(48, 13) Source(24, 47) + SourceIndex(3) -3 >Emitted(48, 22) Source(24, 56) + SourceIndex(3) -4 >Emitted(48, 23) Source(24, 86) + SourceIndex(3) +1 >Emitted(49, 9) Source(24, 47) + SourceIndex(3) +2 >Emitted(49, 13) Source(24, 47) + SourceIndex(3) +3 >Emitted(49, 22) Source(24, 56) + SourceIndex(3) +4 >Emitted(49, 23) Source(24, 86) + SourceIndex(3) --- >>> (function (something) { 1->^^^^^^^^ @@ -1151,21 +1153,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(49, 9) Source(24, 47) + SourceIndex(3) -2 >Emitted(49, 20) Source(24, 47) + SourceIndex(3) -3 >Emitted(49, 29) Source(24, 56) + SourceIndex(3) +1->Emitted(50, 9) Source(24, 47) + SourceIndex(3) +2 >Emitted(50, 20) Source(24, 47) + SourceIndex(3) +3 >Emitted(50, 29) Source(24, 56) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(50, 13) Source(24, 59) + SourceIndex(3) +1->Emitted(51, 13) Source(24, 59) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(51, 17) Source(24, 59) + SourceIndex(3) +1->Emitted(52, 17) Source(24, 59) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -1173,16 +1175,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(52, 17) Source(24, 83) + SourceIndex(3) -2 >Emitted(52, 18) Source(24, 84) + SourceIndex(3) +1->Emitted(53, 17) Source(24, 83) + SourceIndex(3) +2 >Emitted(53, 18) Source(24, 84) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(53, 17) Source(24, 83) + SourceIndex(3) -2 >Emitted(53, 33) Source(24, 84) + SourceIndex(3) +1->Emitted(54, 17) Source(24, 83) + SourceIndex(3) +2 >Emitted(54, 33) Source(24, 84) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -1194,10 +1196,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(54, 13) Source(24, 83) + SourceIndex(3) -2 >Emitted(54, 14) Source(24, 84) + SourceIndex(3) -3 >Emitted(54, 14) Source(24, 59) + SourceIndex(3) -4 >Emitted(54, 18) Source(24, 84) + SourceIndex(3) +1 >Emitted(55, 13) Source(24, 83) + SourceIndex(3) +2 >Emitted(55, 14) Source(24, 84) + SourceIndex(3) +3 >Emitted(55, 14) Source(24, 59) + SourceIndex(3) +4 >Emitted(55, 18) Source(24, 84) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -1209,10 +1211,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(55, 13) Source(24, 72) + SourceIndex(3) -2 >Emitted(55, 32) Source(24, 81) + SourceIndex(3) -3 >Emitted(55, 44) Source(24, 84) + SourceIndex(3) -4 >Emitted(55, 45) Source(24, 84) + SourceIndex(3) +1->Emitted(56, 13) Source(24, 72) + SourceIndex(3) +2 >Emitted(56, 32) Source(24, 81) + SourceIndex(3) +3 >Emitted(56, 44) Source(24, 84) + SourceIndex(3) +4 >Emitted(56, 45) Source(24, 84) + SourceIndex(3) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^ @@ -1233,15 +1235,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(56, 9) Source(24, 85) + SourceIndex(3) -2 >Emitted(56, 10) Source(24, 86) + SourceIndex(3) -3 >Emitted(56, 12) Source(24, 47) + SourceIndex(3) -4 >Emitted(56, 21) Source(24, 56) + SourceIndex(3) -5 >Emitted(56, 24) Source(24, 47) + SourceIndex(3) -6 >Emitted(56, 43) Source(24, 56) + SourceIndex(3) -7 >Emitted(56, 48) Source(24, 47) + SourceIndex(3) -8 >Emitted(56, 67) Source(24, 56) + SourceIndex(3) -9 >Emitted(56, 75) Source(24, 86) + SourceIndex(3) +1->Emitted(57, 9) Source(24, 85) + SourceIndex(3) +2 >Emitted(57, 10) Source(24, 86) + SourceIndex(3) +3 >Emitted(57, 12) Source(24, 47) + SourceIndex(3) +4 >Emitted(57, 21) Source(24, 56) + SourceIndex(3) +5 >Emitted(57, 24) Source(24, 47) + SourceIndex(3) +6 >Emitted(57, 43) Source(24, 56) + SourceIndex(3) +7 >Emitted(57, 48) Source(24, 47) + SourceIndex(3) +8 >Emitted(57, 67) Source(24, 56) + SourceIndex(3) +9 >Emitted(57, 75) Source(24, 86) + SourceIndex(3) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^ @@ -1262,15 +1264,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(57, 5) Source(24, 85) + SourceIndex(3) -2 >Emitted(57, 6) Source(24, 86) + SourceIndex(3) -3 >Emitted(57, 8) Source(24, 37) + SourceIndex(3) -4 >Emitted(57, 17) Source(24, 46) + SourceIndex(3) -5 >Emitted(57, 20) Source(24, 37) + SourceIndex(3) -6 >Emitted(57, 37) Source(24, 46) + SourceIndex(3) -7 >Emitted(57, 42) Source(24, 37) + SourceIndex(3) -8 >Emitted(57, 59) Source(24, 46) + SourceIndex(3) -9 >Emitted(57, 67) Source(24, 86) + SourceIndex(3) +1 >Emitted(58, 5) Source(24, 85) + SourceIndex(3) +2 >Emitted(58, 6) Source(24, 86) + SourceIndex(3) +3 >Emitted(58, 8) Source(24, 37) + SourceIndex(3) +4 >Emitted(58, 17) Source(24, 46) + SourceIndex(3) +5 >Emitted(58, 20) Source(24, 37) + SourceIndex(3) +6 >Emitted(58, 37) Source(24, 46) + SourceIndex(3) +7 >Emitted(58, 42) Source(24, 37) + SourceIndex(3) +8 >Emitted(58, 59) Source(24, 46) + SourceIndex(3) +9 >Emitted(58, 67) Source(24, 86) + SourceIndex(3) --- >>> normalN.someImport = someNamespace.C; 1 >^^^^ @@ -1288,13 +1290,13 @@ sourceFile:../../../second/second_part1.ts 5 > . 6 > C 7 > ; -1 >Emitted(58, 5) Source(25, 34) + SourceIndex(3) -2 >Emitted(58, 23) Source(25, 44) + SourceIndex(3) -3 >Emitted(58, 26) Source(25, 47) + SourceIndex(3) -4 >Emitted(58, 39) Source(25, 60) + SourceIndex(3) -5 >Emitted(58, 40) Source(25, 61) + SourceIndex(3) -6 >Emitted(58, 41) Source(25, 62) + SourceIndex(3) -7 >Emitted(58, 42) Source(25, 63) + SourceIndex(3) +1 >Emitted(59, 5) Source(25, 34) + SourceIndex(3) +2 >Emitted(59, 23) Source(25, 44) + SourceIndex(3) +3 >Emitted(59, 26) Source(25, 47) + SourceIndex(3) +4 >Emitted(59, 39) Source(25, 60) + SourceIndex(3) +5 >Emitted(59, 40) Source(25, 61) + SourceIndex(3) +6 >Emitted(59, 41) Source(25, 62) + SourceIndex(3) +7 >Emitted(59, 42) Source(25, 63) + SourceIndex(3) --- >>> normalN.internalConst = 10; 1 >^^^^ @@ -1309,11 +1311,11 @@ sourceFile:../../../second/second_part1.ts 3 > = 4 > 10 5 > ; -1 >Emitted(59, 5) Source(27, 33) + SourceIndex(3) -2 >Emitted(59, 26) Source(27, 46) + SourceIndex(3) -3 >Emitted(59, 29) Source(27, 49) + SourceIndex(3) -4 >Emitted(59, 31) Source(27, 51) + SourceIndex(3) -5 >Emitted(59, 32) Source(27, 52) + SourceIndex(3) +1 >Emitted(60, 5) Source(27, 33) + SourceIndex(3) +2 >Emitted(60, 26) Source(27, 46) + SourceIndex(3) +3 >Emitted(60, 29) Source(27, 49) + SourceIndex(3) +4 >Emitted(60, 31) Source(27, 51) + SourceIndex(3) +5 >Emitted(60, 32) Source(27, 52) + SourceIndex(3) --- >>> var internalEnum; 1 >^^^^ @@ -1324,9 +1326,9 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ 2 > export enum 3 > internalEnum { a, b, c } -1 >Emitted(60, 5) Source(28, 20) + SourceIndex(3) -2 >Emitted(60, 9) Source(28, 32) + SourceIndex(3) -3 >Emitted(60, 21) Source(28, 56) + SourceIndex(3) +1 >Emitted(61, 5) Source(28, 20) + SourceIndex(3) +2 >Emitted(61, 9) Source(28, 32) + SourceIndex(3) +3 >Emitted(61, 21) Source(28, 56) + SourceIndex(3) --- >>> (function (internalEnum) { 1->^^^^ @@ -1336,9 +1338,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > export enum 3 > internalEnum -1->Emitted(61, 5) Source(28, 20) + SourceIndex(3) -2 >Emitted(61, 16) Source(28, 32) + SourceIndex(3) -3 >Emitted(61, 28) Source(28, 44) + SourceIndex(3) +1->Emitted(62, 5) Source(28, 20) + SourceIndex(3) +2 >Emitted(62, 16) Source(28, 32) + SourceIndex(3) +3 >Emitted(62, 28) Source(28, 44) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -1348,9 +1350,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(62, 9) Source(28, 47) + SourceIndex(3) -2 >Emitted(62, 50) Source(28, 48) + SourceIndex(3) -3 >Emitted(62, 51) Source(28, 48) + SourceIndex(3) +1->Emitted(63, 9) Source(28, 47) + SourceIndex(3) +2 >Emitted(63, 50) Source(28, 48) + SourceIndex(3) +3 >Emitted(63, 51) Source(28, 48) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -1360,9 +1362,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(63, 9) Source(28, 50) + SourceIndex(3) -2 >Emitted(63, 50) Source(28, 51) + SourceIndex(3) -3 >Emitted(63, 51) Source(28, 51) + SourceIndex(3) +1->Emitted(64, 9) Source(28, 50) + SourceIndex(3) +2 >Emitted(64, 50) Source(28, 51) + SourceIndex(3) +3 >Emitted(64, 51) Source(28, 51) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -1372,9 +1374,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(64, 9) Source(28, 53) + SourceIndex(3) -2 >Emitted(64, 50) Source(28, 54) + SourceIndex(3) -3 >Emitted(64, 51) Source(28, 54) + SourceIndex(3) +1->Emitted(65, 9) Source(28, 53) + SourceIndex(3) +2 >Emitted(65, 50) Source(28, 54) + SourceIndex(3) +3 >Emitted(65, 51) Source(28, 54) + SourceIndex(3) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^ @@ -1395,15 +1397,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(65, 5) Source(28, 55) + SourceIndex(3) -2 >Emitted(65, 6) Source(28, 56) + SourceIndex(3) -3 >Emitted(65, 8) Source(28, 32) + SourceIndex(3) -4 >Emitted(65, 20) Source(28, 44) + SourceIndex(3) -5 >Emitted(65, 23) Source(28, 32) + SourceIndex(3) -6 >Emitted(65, 43) Source(28, 44) + SourceIndex(3) -7 >Emitted(65, 48) Source(28, 32) + SourceIndex(3) -8 >Emitted(65, 68) Source(28, 44) + SourceIndex(3) -9 >Emitted(65, 76) Source(28, 56) + SourceIndex(3) +1->Emitted(66, 5) Source(28, 55) + SourceIndex(3) +2 >Emitted(66, 6) Source(28, 56) + SourceIndex(3) +3 >Emitted(66, 8) Source(28, 32) + SourceIndex(3) +4 >Emitted(66, 20) Source(28, 44) + SourceIndex(3) +5 >Emitted(66, 23) Source(28, 32) + SourceIndex(3) +6 >Emitted(66, 43) Source(28, 44) + SourceIndex(3) +7 >Emitted(66, 48) Source(28, 32) + SourceIndex(3) +8 >Emitted(66, 68) Source(28, 44) + SourceIndex(3) +9 >Emitted(66, 76) Source(28, 56) + SourceIndex(3) --- >>>})(normalN || (normalN = {})); 1 > @@ -1431,26 +1433,26 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ export const internalConst = 10; > /**@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(66, 1) Source(29, 1) + SourceIndex(3) -2 >Emitted(66, 2) Source(29, 2) + SourceIndex(3) -3 >Emitted(66, 4) Source(20, 11) + SourceIndex(3) -4 >Emitted(66, 11) Source(20, 18) + SourceIndex(3) -5 >Emitted(66, 16) Source(20, 11) + SourceIndex(3) -6 >Emitted(66, 23) Source(20, 18) + SourceIndex(3) -7 >Emitted(66, 31) Source(29, 2) + SourceIndex(3) +1 >Emitted(67, 1) Source(29, 1) + SourceIndex(3) +2 >Emitted(67, 2) Source(29, 2) + SourceIndex(3) +3 >Emitted(67, 4) Source(20, 11) + SourceIndex(3) +4 >Emitted(67, 11) Source(20, 18) + SourceIndex(3) +5 >Emitted(67, 16) Source(20, 11) + SourceIndex(3) +6 >Emitted(67, 23) Source(20, 18) + SourceIndex(3) +7 >Emitted(67, 31) Source(29, 2) + SourceIndex(3) --- >>>var internalC = (function () { 1-> 2 >^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> >/**@internal*/ -1->Emitted(67, 1) Source(30, 16) + SourceIndex(3) +1->Emitted(68, 1) Source(30, 16) + SourceIndex(3) --- >>> function internalC() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(68, 5) Source(30, 16) + SourceIndex(3) +1->Emitted(69, 5) Source(30, 16) + SourceIndex(3) --- >>> } 1->^^^^ @@ -1458,16 +1460,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->class internalC { 2 > } -1->Emitted(69, 5) Source(30, 33) + SourceIndex(3) -2 >Emitted(69, 6) Source(30, 34) + SourceIndex(3) +1->Emitted(70, 5) Source(30, 33) + SourceIndex(3) +2 >Emitted(70, 6) Source(30, 34) + SourceIndex(3) --- >>> return internalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(70, 5) Source(30, 33) + SourceIndex(3) -2 >Emitted(70, 21) Source(30, 34) + SourceIndex(3) +1->Emitted(71, 5) Source(30, 33) + SourceIndex(3) +2 >Emitted(71, 21) Source(30, 34) + SourceIndex(3) --- >>>}()); 1 > @@ -1479,10 +1481,10 @@ sourceFile:../../../second/second_part1.ts 2 >} 3 > 4 > class internalC {} -1 >Emitted(71, 1) Source(30, 33) + SourceIndex(3) -2 >Emitted(71, 2) Source(30, 34) + SourceIndex(3) -3 >Emitted(71, 2) Source(30, 16) + SourceIndex(3) -4 >Emitted(71, 6) Source(30, 34) + SourceIndex(3) +1 >Emitted(72, 1) Source(30, 33) + SourceIndex(3) +2 >Emitted(72, 2) Source(30, 34) + SourceIndex(3) +3 >Emitted(72, 2) Source(30, 16) + SourceIndex(3) +4 >Emitted(72, 6) Source(30, 34) + SourceIndex(3) --- >>>function internalfoo() { } 1-> @@ -1496,11 +1498,11 @@ sourceFile:../../../second/second_part1.ts 3 > internalfoo 4 > () { 5 > } -1->Emitted(72, 1) Source(31, 16) + SourceIndex(3) -2 >Emitted(72, 10) Source(31, 25) + SourceIndex(3) -3 >Emitted(72, 21) Source(31, 36) + SourceIndex(3) -4 >Emitted(72, 26) Source(31, 40) + SourceIndex(3) -5 >Emitted(72, 27) Source(31, 41) + SourceIndex(3) +1->Emitted(73, 1) Source(31, 16) + SourceIndex(3) +2 >Emitted(73, 10) Source(31, 25) + SourceIndex(3) +3 >Emitted(73, 21) Source(31, 36) + SourceIndex(3) +4 >Emitted(73, 26) Source(31, 40) + SourceIndex(3) +5 >Emitted(73, 27) Source(31, 41) + SourceIndex(3) --- >>>var internalNamespace; 1 > @@ -1513,10 +1515,10 @@ sourceFile:../../../second/second_part1.ts 2 >namespace 3 > internalNamespace 4 > { export class someClass {} } -1 >Emitted(73, 1) Source(32, 16) + SourceIndex(3) -2 >Emitted(73, 5) Source(32, 26) + SourceIndex(3) -3 >Emitted(73, 22) Source(32, 43) + SourceIndex(3) -4 >Emitted(73, 23) Source(32, 73) + SourceIndex(3) +1 >Emitted(74, 1) Source(32, 16) + SourceIndex(3) +2 >Emitted(74, 5) Source(32, 26) + SourceIndex(3) +3 >Emitted(74, 22) Source(32, 43) + SourceIndex(3) +4 >Emitted(74, 23) Source(32, 73) + SourceIndex(3) --- >>>(function (internalNamespace) { 1-> @@ -1526,21 +1528,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > internalNamespace -1->Emitted(74, 1) Source(32, 16) + SourceIndex(3) -2 >Emitted(74, 12) Source(32, 26) + SourceIndex(3) -3 >Emitted(74, 29) Source(32, 43) + SourceIndex(3) +1->Emitted(75, 1) Source(32, 16) + SourceIndex(3) +2 >Emitted(75, 12) Source(32, 26) + SourceIndex(3) +3 >Emitted(75, 29) Source(32, 43) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(75, 5) Source(32, 46) + SourceIndex(3) +1->Emitted(76, 5) Source(32, 46) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(76, 9) Source(32, 46) + SourceIndex(3) +1->Emitted(77, 9) Source(32, 46) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -1548,16 +1550,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(77, 9) Source(32, 70) + SourceIndex(3) -2 >Emitted(77, 10) Source(32, 71) + SourceIndex(3) +1->Emitted(78, 9) Source(32, 70) + SourceIndex(3) +2 >Emitted(78, 10) Source(32, 71) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(78, 9) Source(32, 70) + SourceIndex(3) -2 >Emitted(78, 25) Source(32, 71) + SourceIndex(3) +1->Emitted(79, 9) Source(32, 70) + SourceIndex(3) +2 >Emitted(79, 25) Source(32, 71) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -1569,10 +1571,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(79, 5) Source(32, 70) + SourceIndex(3) -2 >Emitted(79, 6) Source(32, 71) + SourceIndex(3) -3 >Emitted(79, 6) Source(32, 46) + SourceIndex(3) -4 >Emitted(79, 10) Source(32, 71) + SourceIndex(3) +1 >Emitted(80, 5) Source(32, 70) + SourceIndex(3) +2 >Emitted(80, 6) Source(32, 71) + SourceIndex(3) +3 >Emitted(80, 6) Source(32, 46) + SourceIndex(3) +4 >Emitted(80, 10) Source(32, 71) + SourceIndex(3) --- >>> internalNamespace.someClass = someClass; 1->^^^^ @@ -1584,10 +1586,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(80, 5) Source(32, 59) + SourceIndex(3) -2 >Emitted(80, 32) Source(32, 68) + SourceIndex(3) -3 >Emitted(80, 44) Source(32, 71) + SourceIndex(3) -4 >Emitted(80, 45) Source(32, 71) + SourceIndex(3) +1->Emitted(81, 5) Source(32, 59) + SourceIndex(3) +2 >Emitted(81, 32) Source(32, 68) + SourceIndex(3) +3 >Emitted(81, 44) Source(32, 71) + SourceIndex(3) +4 >Emitted(81, 45) Source(32, 71) + SourceIndex(3) --- >>>})(internalNamespace || (internalNamespace = {})); 1-> @@ -1604,13 +1606,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalNamespace 7 > { export class someClass {} } -1->Emitted(81, 1) Source(32, 72) + SourceIndex(3) -2 >Emitted(81, 2) Source(32, 73) + SourceIndex(3) -3 >Emitted(81, 4) Source(32, 26) + SourceIndex(3) -4 >Emitted(81, 21) Source(32, 43) + SourceIndex(3) -5 >Emitted(81, 26) Source(32, 26) + SourceIndex(3) -6 >Emitted(81, 43) Source(32, 43) + SourceIndex(3) -7 >Emitted(81, 51) Source(32, 73) + SourceIndex(3) +1->Emitted(82, 1) Source(32, 72) + SourceIndex(3) +2 >Emitted(82, 2) Source(32, 73) + SourceIndex(3) +3 >Emitted(82, 4) Source(32, 26) + SourceIndex(3) +4 >Emitted(82, 21) Source(32, 43) + SourceIndex(3) +5 >Emitted(82, 26) Source(32, 26) + SourceIndex(3) +6 >Emitted(82, 43) Source(32, 43) + SourceIndex(3) +7 >Emitted(82, 51) Source(32, 73) + SourceIndex(3) --- >>>var internalOther; 1 > @@ -1623,10 +1625,10 @@ sourceFile:../../../second/second_part1.ts 2 >namespace 3 > internalOther 4 > .something { export class someClass {} } -1 >Emitted(82, 1) Source(33, 16) + SourceIndex(3) -2 >Emitted(82, 5) Source(33, 26) + SourceIndex(3) -3 >Emitted(82, 18) Source(33, 39) + SourceIndex(3) -4 >Emitted(82, 19) Source(33, 79) + SourceIndex(3) +1 >Emitted(83, 1) Source(33, 16) + SourceIndex(3) +2 >Emitted(83, 5) Source(33, 26) + SourceIndex(3) +3 >Emitted(83, 18) Source(33, 39) + SourceIndex(3) +4 >Emitted(83, 19) Source(33, 79) + SourceIndex(3) --- >>>(function (internalOther) { 1-> @@ -1635,9 +1637,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > internalOther -1->Emitted(83, 1) Source(33, 16) + SourceIndex(3) -2 >Emitted(83, 12) Source(33, 26) + SourceIndex(3) -3 >Emitted(83, 25) Source(33, 39) + SourceIndex(3) +1->Emitted(84, 1) Source(33, 16) + SourceIndex(3) +2 >Emitted(84, 12) Source(33, 26) + SourceIndex(3) +3 >Emitted(84, 25) Source(33, 39) + SourceIndex(3) --- >>> var something; 1 >^^^^ @@ -1649,10 +1651,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(84, 5) Source(33, 40) + SourceIndex(3) -2 >Emitted(84, 9) Source(33, 40) + SourceIndex(3) -3 >Emitted(84, 18) Source(33, 49) + SourceIndex(3) -4 >Emitted(84, 19) Source(33, 79) + SourceIndex(3) +1 >Emitted(85, 5) Source(33, 40) + SourceIndex(3) +2 >Emitted(85, 9) Source(33, 40) + SourceIndex(3) +3 >Emitted(85, 18) Source(33, 49) + SourceIndex(3) +4 >Emitted(85, 19) Source(33, 79) + SourceIndex(3) --- >>> (function (something) { 1->^^^^ @@ -1662,21 +1664,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(85, 5) Source(33, 40) + SourceIndex(3) -2 >Emitted(85, 16) Source(33, 40) + SourceIndex(3) -3 >Emitted(85, 25) Source(33, 49) + SourceIndex(3) +1->Emitted(86, 5) Source(33, 40) + SourceIndex(3) +2 >Emitted(86, 16) Source(33, 40) + SourceIndex(3) +3 >Emitted(86, 25) Source(33, 49) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(86, 9) Source(33, 52) + SourceIndex(3) +1->Emitted(87, 9) Source(33, 52) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(87, 13) Source(33, 52) + SourceIndex(3) +1->Emitted(88, 13) Source(33, 52) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -1684,16 +1686,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(88, 13) Source(33, 76) + SourceIndex(3) -2 >Emitted(88, 14) Source(33, 77) + SourceIndex(3) +1->Emitted(89, 13) Source(33, 76) + SourceIndex(3) +2 >Emitted(89, 14) Source(33, 77) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(89, 13) Source(33, 76) + SourceIndex(3) -2 >Emitted(89, 29) Source(33, 77) + SourceIndex(3) +1->Emitted(90, 13) Source(33, 76) + SourceIndex(3) +2 >Emitted(90, 29) Source(33, 77) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -1705,10 +1707,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(90, 9) Source(33, 76) + SourceIndex(3) -2 >Emitted(90, 10) Source(33, 77) + SourceIndex(3) -3 >Emitted(90, 10) Source(33, 52) + SourceIndex(3) -4 >Emitted(90, 14) Source(33, 77) + SourceIndex(3) +1 >Emitted(91, 9) Source(33, 76) + SourceIndex(3) +2 >Emitted(91, 10) Source(33, 77) + SourceIndex(3) +3 >Emitted(91, 10) Source(33, 52) + SourceIndex(3) +4 >Emitted(91, 14) Source(33, 77) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^ @@ -1720,10 +1722,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(91, 9) Source(33, 65) + SourceIndex(3) -2 >Emitted(91, 28) Source(33, 74) + SourceIndex(3) -3 >Emitted(91, 40) Source(33, 77) + SourceIndex(3) -4 >Emitted(91, 41) Source(33, 77) + SourceIndex(3) +1->Emitted(92, 9) Source(33, 65) + SourceIndex(3) +2 >Emitted(92, 28) Source(33, 74) + SourceIndex(3) +3 >Emitted(92, 40) Source(33, 77) + SourceIndex(3) +4 >Emitted(92, 41) Source(33, 77) + SourceIndex(3) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^ @@ -1744,15 +1746,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(92, 5) Source(33, 78) + SourceIndex(3) -2 >Emitted(92, 6) Source(33, 79) + SourceIndex(3) -3 >Emitted(92, 8) Source(33, 40) + SourceIndex(3) -4 >Emitted(92, 17) Source(33, 49) + SourceIndex(3) -5 >Emitted(92, 20) Source(33, 40) + SourceIndex(3) -6 >Emitted(92, 43) Source(33, 49) + SourceIndex(3) -7 >Emitted(92, 48) Source(33, 40) + SourceIndex(3) -8 >Emitted(92, 71) Source(33, 49) + SourceIndex(3) -9 >Emitted(92, 79) Source(33, 79) + SourceIndex(3) +1->Emitted(93, 5) Source(33, 78) + SourceIndex(3) +2 >Emitted(93, 6) Source(33, 79) + SourceIndex(3) +3 >Emitted(93, 8) Source(33, 40) + SourceIndex(3) +4 >Emitted(93, 17) Source(33, 49) + SourceIndex(3) +5 >Emitted(93, 20) Source(33, 40) + SourceIndex(3) +6 >Emitted(93, 43) Source(33, 49) + SourceIndex(3) +7 >Emitted(93, 48) Source(33, 40) + SourceIndex(3) +8 >Emitted(93, 71) Source(33, 49) + SourceIndex(3) +9 >Emitted(93, 79) Source(33, 79) + SourceIndex(3) --- >>>})(internalOther || (internalOther = {})); 1 > @@ -1770,13 +1772,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalOther 7 > .something { export class someClass {} } -1 >Emitted(93, 1) Source(33, 78) + SourceIndex(3) -2 >Emitted(93, 2) Source(33, 79) + SourceIndex(3) -3 >Emitted(93, 4) Source(33, 26) + SourceIndex(3) -4 >Emitted(93, 17) Source(33, 39) + SourceIndex(3) -5 >Emitted(93, 22) Source(33, 26) + SourceIndex(3) -6 >Emitted(93, 35) Source(33, 39) + SourceIndex(3) -7 >Emitted(93, 43) Source(33, 79) + SourceIndex(3) +1 >Emitted(94, 1) Source(33, 78) + SourceIndex(3) +2 >Emitted(94, 2) Source(33, 79) + SourceIndex(3) +3 >Emitted(94, 4) Source(33, 26) + SourceIndex(3) +4 >Emitted(94, 17) Source(33, 39) + SourceIndex(3) +5 >Emitted(94, 22) Source(33, 26) + SourceIndex(3) +6 >Emitted(94, 35) Source(33, 39) + SourceIndex(3) +7 >Emitted(94, 43) Source(33, 79) + SourceIndex(3) --- >>>var internalImport = internalNamespace.someClass; 1-> @@ -1796,14 +1798,14 @@ sourceFile:../../../second/second_part1.ts 6 > . 7 > someClass 8 > ; -1->Emitted(94, 1) Source(34, 16) + SourceIndex(3) -2 >Emitted(94, 5) Source(34, 23) + SourceIndex(3) -3 >Emitted(94, 19) Source(34, 37) + SourceIndex(3) -4 >Emitted(94, 22) Source(34, 40) + SourceIndex(3) -5 >Emitted(94, 39) Source(34, 57) + SourceIndex(3) -6 >Emitted(94, 40) Source(34, 58) + SourceIndex(3) -7 >Emitted(94, 49) Source(34, 67) + SourceIndex(3) -8 >Emitted(94, 50) Source(34, 68) + SourceIndex(3) +1->Emitted(95, 1) Source(34, 16) + SourceIndex(3) +2 >Emitted(95, 5) Source(34, 23) + SourceIndex(3) +3 >Emitted(95, 19) Source(34, 37) + SourceIndex(3) +4 >Emitted(95, 22) Source(34, 40) + SourceIndex(3) +5 >Emitted(95, 39) Source(34, 57) + SourceIndex(3) +6 >Emitted(95, 40) Source(34, 58) + SourceIndex(3) +7 >Emitted(95, 49) Source(34, 67) + SourceIndex(3) +8 >Emitted(95, 50) Source(34, 68) + SourceIndex(3) --- >>>var internalConst = 10; 1 > @@ -1820,12 +1822,12 @@ sourceFile:../../../second/second_part1.ts 4 > = 5 > 10 6 > ; -1 >Emitted(95, 1) Source(36, 16) + SourceIndex(3) -2 >Emitted(95, 5) Source(36, 22) + SourceIndex(3) -3 >Emitted(95, 18) Source(36, 35) + SourceIndex(3) -4 >Emitted(95, 21) Source(36, 38) + SourceIndex(3) -5 >Emitted(95, 23) Source(36, 40) + SourceIndex(3) -6 >Emitted(95, 24) Source(36, 41) + SourceIndex(3) +1 >Emitted(96, 1) Source(36, 16) + SourceIndex(3) +2 >Emitted(96, 5) Source(36, 22) + SourceIndex(3) +3 >Emitted(96, 18) Source(36, 35) + SourceIndex(3) +4 >Emitted(96, 21) Source(36, 38) + SourceIndex(3) +5 >Emitted(96, 23) Source(36, 40) + SourceIndex(3) +6 >Emitted(96, 24) Source(36, 41) + SourceIndex(3) --- >>>var internalEnum; 1 > @@ -1836,9 +1838,9 @@ sourceFile:../../../second/second_part1.ts >/**@internal*/ 2 >enum 3 > internalEnum { a, b, c } -1 >Emitted(96, 1) Source(37, 16) + SourceIndex(3) -2 >Emitted(96, 5) Source(37, 21) + SourceIndex(3) -3 >Emitted(96, 17) Source(37, 45) + SourceIndex(3) +1 >Emitted(97, 1) Source(37, 16) + SourceIndex(3) +2 >Emitted(97, 5) Source(37, 21) + SourceIndex(3) +3 >Emitted(97, 17) Source(37, 45) + SourceIndex(3) --- >>>(function (internalEnum) { 1-> @@ -1848,9 +1850,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >enum 3 > internalEnum -1->Emitted(97, 1) Source(37, 16) + SourceIndex(3) -2 >Emitted(97, 12) Source(37, 21) + SourceIndex(3) -3 >Emitted(97, 24) Source(37, 33) + SourceIndex(3) +1->Emitted(98, 1) Source(37, 16) + SourceIndex(3) +2 >Emitted(98, 12) Source(37, 21) + SourceIndex(3) +3 >Emitted(98, 24) Source(37, 33) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^ @@ -1860,9 +1862,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(98, 5) Source(37, 36) + SourceIndex(3) -2 >Emitted(98, 46) Source(37, 37) + SourceIndex(3) -3 >Emitted(98, 47) Source(37, 37) + SourceIndex(3) +1->Emitted(99, 5) Source(37, 36) + SourceIndex(3) +2 >Emitted(99, 46) Source(37, 37) + SourceIndex(3) +3 >Emitted(99, 47) Source(37, 37) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^ @@ -1872,9 +1874,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(99, 5) Source(37, 39) + SourceIndex(3) -2 >Emitted(99, 46) Source(37, 40) + SourceIndex(3) -3 >Emitted(99, 47) Source(37, 40) + SourceIndex(3) +1->Emitted(100, 5) Source(37, 39) + SourceIndex(3) +2 >Emitted(100, 46) Source(37, 40) + SourceIndex(3) +3 >Emitted(100, 47) Source(37, 40) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^ @@ -1883,9 +1885,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(100, 5) Source(37, 42) + SourceIndex(3) -2 >Emitted(100, 46) Source(37, 43) + SourceIndex(3) -3 >Emitted(100, 47) Source(37, 43) + SourceIndex(3) +1->Emitted(101, 5) Source(37, 42) + SourceIndex(3) +2 >Emitted(101, 46) Source(37, 43) + SourceIndex(3) +3 >Emitted(101, 47) Source(37, 43) + SourceIndex(3) --- >>>})(internalEnum || (internalEnum = {})); 1 > @@ -1902,13 +1904,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalEnum 7 > { a, b, c } -1 >Emitted(101, 1) Source(37, 44) + SourceIndex(3) -2 >Emitted(101, 2) Source(37, 45) + SourceIndex(3) -3 >Emitted(101, 4) Source(37, 21) + SourceIndex(3) -4 >Emitted(101, 16) Source(37, 33) + SourceIndex(3) -5 >Emitted(101, 21) Source(37, 21) + SourceIndex(3) -6 >Emitted(101, 33) Source(37, 33) + SourceIndex(3) -7 >Emitted(101, 41) Source(37, 45) + SourceIndex(3) +1 >Emitted(102, 1) Source(37, 44) + SourceIndex(3) +2 >Emitted(102, 2) Source(37, 45) + SourceIndex(3) +3 >Emitted(102, 4) Source(37, 21) + SourceIndex(3) +4 >Emitted(102, 16) Source(37, 33) + SourceIndex(3) +5 >Emitted(102, 21) Source(37, 21) + SourceIndex(3) +6 >Emitted(102, 33) Source(37, 33) + SourceIndex(3) +7 >Emitted(102, 41) Source(37, 45) + SourceIndex(3) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -1918,13 +1920,13 @@ sourceFile:../../../second/second_part2.ts 1 > 2 >^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(102, 1) Source(1, 1) + SourceIndex(4) +1 >Emitted(103, 1) Source(1, 1) + SourceIndex(4) --- >>> function C() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(103, 5) Source(1, 1) + SourceIndex(4) +1->Emitted(104, 5) Source(1, 1) + SourceIndex(4) --- >>> } 1->^^^^ @@ -1936,8 +1938,8 @@ sourceFile:../../../second/second_part2.ts > } > 2 > } -1->Emitted(104, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(104, 6) Source(5, 2) + SourceIndex(4) +1->Emitted(105, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(105, 6) Source(5, 2) + SourceIndex(4) --- >>> C.prototype.doSomething = function () { 1->^^^^ @@ -1947,9 +1949,9 @@ sourceFile:../../../second/second_part2.ts 1-> 2 > doSomething 3 > -1->Emitted(105, 5) Source(2, 5) + SourceIndex(4) -2 >Emitted(105, 28) Source(2, 16) + SourceIndex(4) -3 >Emitted(105, 31) Source(2, 5) + SourceIndex(4) +1->Emitted(106, 5) Source(2, 5) + SourceIndex(4) +2 >Emitted(106, 28) Source(2, 16) + SourceIndex(4) +3 >Emitted(106, 31) Source(2, 5) + SourceIndex(4) --- >>> console.log("something got done"); 1->^^^^^^^^ @@ -1969,14 +1971,14 @@ sourceFile:../../../second/second_part2.ts 6 > "something got done" 7 > ) 8 > ; -1->Emitted(106, 9) Source(3, 9) + SourceIndex(4) -2 >Emitted(106, 16) Source(3, 16) + SourceIndex(4) -3 >Emitted(106, 17) Source(3, 17) + SourceIndex(4) -4 >Emitted(106, 20) Source(3, 20) + SourceIndex(4) -5 >Emitted(106, 21) Source(3, 21) + SourceIndex(4) -6 >Emitted(106, 41) Source(3, 41) + SourceIndex(4) -7 >Emitted(106, 42) Source(3, 42) + SourceIndex(4) -8 >Emitted(106, 43) Source(3, 43) + SourceIndex(4) +1->Emitted(107, 9) Source(3, 9) + SourceIndex(4) +2 >Emitted(107, 16) Source(3, 16) + SourceIndex(4) +3 >Emitted(107, 17) Source(3, 17) + SourceIndex(4) +4 >Emitted(107, 20) Source(3, 20) + SourceIndex(4) +5 >Emitted(107, 21) Source(3, 21) + SourceIndex(4) +6 >Emitted(107, 41) Source(3, 41) + SourceIndex(4) +7 >Emitted(107, 42) Source(3, 42) + SourceIndex(4) +8 >Emitted(107, 43) Source(3, 43) + SourceIndex(4) --- >>> }; 1 >^^^^ @@ -1985,8 +1987,8 @@ sourceFile:../../../second/second_part2.ts 1 > > 2 > } -1 >Emitted(107, 5) Source(4, 5) + SourceIndex(4) -2 >Emitted(107, 6) Source(4, 6) + SourceIndex(4) +1 >Emitted(108, 5) Source(4, 5) + SourceIndex(4) +2 >Emitted(108, 6) Source(4, 6) + SourceIndex(4) --- >>> return C; 1->^^^^ @@ -1994,8 +1996,8 @@ sourceFile:../../../second/second_part2.ts 1-> > 2 > } -1->Emitted(108, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(108, 13) Source(5, 2) + SourceIndex(4) +1->Emitted(109, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(109, 13) Source(5, 2) + SourceIndex(4) --- >>>}()); 1 > @@ -2011,10 +2013,10 @@ sourceFile:../../../second/second_part2.ts > console.log("something got done"); > } > } -1 >Emitted(109, 1) Source(5, 1) + SourceIndex(4) -2 >Emitted(109, 2) Source(5, 2) + SourceIndex(4) -3 >Emitted(109, 2) Source(1, 1) + SourceIndex(4) -4 >Emitted(109, 6) Source(5, 2) + SourceIndex(4) +1 >Emitted(110, 1) Source(5, 1) + SourceIndex(4) +2 >Emitted(110, 2) Source(5, 2) + SourceIndex(4) +3 >Emitted(110, 2) Source(1, 1) + SourceIndex(4) +4 >Emitted(110, 6) Source(5, 2) + SourceIndex(4) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -2038,14 +2040,14 @@ sourceFile:../../third_part1.ts 6 > C 7 > () 8 > ; -1->Emitted(110, 1) Source(1, 1) + SourceIndex(5) -2 >Emitted(110, 5) Source(1, 5) + SourceIndex(5) -3 >Emitted(110, 6) Source(1, 6) + SourceIndex(5) -4 >Emitted(110, 9) Source(1, 9) + SourceIndex(5) -5 >Emitted(110, 13) Source(1, 13) + SourceIndex(5) -6 >Emitted(110, 14) Source(1, 14) + SourceIndex(5) -7 >Emitted(110, 16) Source(1, 16) + SourceIndex(5) -8 >Emitted(110, 17) Source(1, 17) + SourceIndex(5) +1->Emitted(111, 1) Source(1, 1) + SourceIndex(5) +2 >Emitted(111, 5) Source(1, 5) + SourceIndex(5) +3 >Emitted(111, 6) Source(1, 6) + SourceIndex(5) +4 >Emitted(111, 9) Source(1, 9) + SourceIndex(5) +5 >Emitted(111, 13) Source(1, 13) + SourceIndex(5) +6 >Emitted(111, 14) Source(1, 14) + SourceIndex(5) +7 >Emitted(111, 16) Source(1, 16) + SourceIndex(5) +8 >Emitted(111, 17) Source(1, 17) + SourceIndex(5) --- >>>c.doSomething(); 1-> @@ -2062,12 +2064,12 @@ sourceFile:../../third_part1.ts 4 > doSomething 5 > () 6 > ; -1->Emitted(111, 1) Source(2, 1) + SourceIndex(5) -2 >Emitted(111, 2) Source(2, 2) + SourceIndex(5) -3 >Emitted(111, 3) Source(2, 3) + SourceIndex(5) -4 >Emitted(111, 14) Source(2, 14) + SourceIndex(5) -5 >Emitted(111, 16) Source(2, 16) + SourceIndex(5) -6 >Emitted(111, 17) Source(2, 17) + SourceIndex(5) +1->Emitted(112, 1) Source(2, 1) + SourceIndex(5) +2 >Emitted(112, 2) Source(2, 2) + SourceIndex(5) +3 >Emitted(112, 3) Source(2, 3) + SourceIndex(5) +4 >Emitted(112, 14) Source(2, 14) + SourceIndex(5) +5 >Emitted(112, 16) Source(2, 16) + SourceIndex(5) +6 >Emitted(112, 17) Source(2, 17) + SourceIndex(5) --- >>>//# sourceMappingURL=third-output.js.map @@ -2095,20 +2097,20 @@ sourceFile:../../third_part1.ts }, { "pos": 127, - "end": 3180, + "end": 3228, "kind": "prepend", "data": "../../../2/second-output.js", "texts": [ { "pos": 127, - "end": 3180, + "end": 3228, "kind": "text" } ] }, { - "pos": 3180, - "end": 3216, + "pos": 3228, + "end": 3264, "kind": "text" } ] @@ -2168,9 +2170,9 @@ function f() { } ---------------------------------------------------------------------- -prepend: (127-3180):: ../../../2/second-output.js texts:: 1 +prepend: (127-3228):: ../../../2/second-output.js texts:: 1 >>-------------------------------------------------------------------- -text: (127-3180) +text: (127-3228) var N; (function (N) { function f() { @@ -2181,8 +2183,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -2275,7 +2278,7 @@ var C = (function () { }()); ---------------------------------------------------------------------- -text: (3180-3216) +text: (3228-3264) var c = new C(); c.doSomething(); diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js index 57e56038845c2..5873dd4664092 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js @@ -59,8 +59,9 @@ var N; var normalC = /** @class */ (function () { /**@internal*/ function normalC() { } - /**@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /**@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /**@internal*/ get: function () { return 10; }, /**@internal*/ set: function (val) { }, enumerable: false, @@ -154,7 +155,7 @@ var C = /** @class */ (function () { //# sourceMappingURL=second-output.js.map //// [/src/2/second-output.js.map] -{"version":3,"file":"second-output.js","sourceRoot":"","sources":["../first/first_PART1.ts","../first/first_part2.ts","../first/first_part3.ts","../second/second_part1.ts","../second/second_part2.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"second-output.js","sourceRoot":"","sources":["../first/first_PART1.ts","../first/first_part2.ts","../first/first_part3.ts","../second/second_part1.ts","../second/second_part2.ts"],"names":[],"mappings":"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"} //// [/src/2/second-output.js.map.baseline.txt] =================================================================== @@ -488,13 +489,14 @@ sourceFile:../second/second_part1.ts >>> } 1 >^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 >constructor() { 2 > } 1 >Emitted(17, 5) Source(14, 36) + SourceIndex(3) 2 >Emitted(17, 6) Source(14, 37) + SourceIndex(3) --- ->>> /**@internal*/ normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> /**@internal*/ normalC_prototype.method = function () { }; 1->^^^^ 2 > ^^^^^^^^^^^^^^ 3 > ^ @@ -511,15 +513,15 @@ sourceFile:../second/second_part1.ts 5 > 6 > method() { 7 > } -1->Emitted(18, 5) Source(16, 5) + SourceIndex(3) -2 >Emitted(18, 19) Source(16, 19) + SourceIndex(3) -3 >Emitted(18, 20) Source(16, 20) + SourceIndex(3) -4 >Emitted(18, 44) Source(16, 26) + SourceIndex(3) -5 >Emitted(18, 47) Source(16, 20) + SourceIndex(3) -6 >Emitted(18, 61) Source(16, 31) + SourceIndex(3) -7 >Emitted(18, 62) Source(16, 32) + SourceIndex(3) ---- ->>> Object.defineProperty(normalC.prototype, "c", { +1->Emitted(19, 5) Source(16, 5) + SourceIndex(3) +2 >Emitted(19, 19) Source(16, 19) + SourceIndex(3) +3 >Emitted(19, 20) Source(16, 20) + SourceIndex(3) +4 >Emitted(19, 44) Source(16, 26) + SourceIndex(3) +5 >Emitted(19, 47) Source(16, 20) + SourceIndex(3) +6 >Emitted(19, 61) Source(16, 31) + SourceIndex(3) +7 >Emitted(19, 62) Source(16, 32) + SourceIndex(3) +--- +>>> Object.defineProperty(normalC_prototype, "c", { 1 >^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -528,9 +530,9 @@ sourceFile:../second/second_part1.ts > /**@internal*/ 2 > get 3 > c -1 >Emitted(19, 5) Source(17, 20) + SourceIndex(3) -2 >Emitted(19, 27) Source(17, 24) + SourceIndex(3) -3 >Emitted(19, 49) Source(17, 25) + SourceIndex(3) +1 >Emitted(20, 5) Source(17, 20) + SourceIndex(3) +2 >Emitted(20, 27) Source(17, 24) + SourceIndex(3) +3 >Emitted(20, 49) Source(17, 25) + SourceIndex(3) --- >>> /**@internal*/ get: function () { return 10; }, 1->^^^^^^^^ @@ -551,15 +553,15 @@ sourceFile:../second/second_part1.ts 7 > ; 8 > 9 > } -1->Emitted(20, 9) Source(17, 5) + SourceIndex(3) -2 >Emitted(20, 23) Source(17, 19) + SourceIndex(3) -3 >Emitted(20, 29) Source(17, 20) + SourceIndex(3) -4 >Emitted(20, 43) Source(17, 30) + SourceIndex(3) -5 >Emitted(20, 50) Source(17, 37) + SourceIndex(3) -6 >Emitted(20, 52) Source(17, 39) + SourceIndex(3) -7 >Emitted(20, 53) Source(17, 40) + SourceIndex(3) -8 >Emitted(20, 54) Source(17, 41) + SourceIndex(3) -9 >Emitted(20, 55) Source(17, 42) + SourceIndex(3) +1->Emitted(21, 9) Source(17, 5) + SourceIndex(3) +2 >Emitted(21, 23) Source(17, 19) + SourceIndex(3) +3 >Emitted(21, 29) Source(17, 20) + SourceIndex(3) +4 >Emitted(21, 43) Source(17, 30) + SourceIndex(3) +5 >Emitted(21, 50) Source(17, 37) + SourceIndex(3) +6 >Emitted(21, 52) Source(17, 39) + SourceIndex(3) +7 >Emitted(21, 53) Source(17, 40) + SourceIndex(3) +8 >Emitted(21, 54) Source(17, 41) + SourceIndex(3) +9 >Emitted(21, 55) Source(17, 42) + SourceIndex(3) --- >>> /**@internal*/ set: function (val) { }, 1 >^^^^^^^^ @@ -577,13 +579,13 @@ sourceFile:../second/second_part1.ts 5 > val: number 6 > ) { 7 > } -1 >Emitted(21, 9) Source(18, 5) + SourceIndex(3) -2 >Emitted(21, 23) Source(18, 19) + SourceIndex(3) -3 >Emitted(21, 29) Source(18, 20) + SourceIndex(3) -4 >Emitted(21, 39) Source(18, 26) + SourceIndex(3) -5 >Emitted(21, 42) Source(18, 37) + SourceIndex(3) -6 >Emitted(21, 46) Source(18, 41) + SourceIndex(3) -7 >Emitted(21, 47) Source(18, 42) + SourceIndex(3) +1 >Emitted(22, 9) Source(18, 5) + SourceIndex(3) +2 >Emitted(22, 23) Source(18, 19) + SourceIndex(3) +3 >Emitted(22, 29) Source(18, 20) + SourceIndex(3) +4 >Emitted(22, 39) Source(18, 26) + SourceIndex(3) +5 >Emitted(22, 42) Source(18, 37) + SourceIndex(3) +6 >Emitted(22, 46) Source(18, 41) + SourceIndex(3) +7 >Emitted(22, 47) Source(18, 42) + SourceIndex(3) --- >>> enumerable: false, >>> configurable: true @@ -591,7 +593,7 @@ sourceFile:../second/second_part1.ts 1 >^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(24, 8) Source(17, 42) + SourceIndex(3) +1 >Emitted(25, 8) Source(17, 42) + SourceIndex(3) --- >>> return normalC; 1->^^^^ @@ -600,8 +602,8 @@ sourceFile:../second/second_part1.ts > /**@internal*/ set c(val: number) { } > 2 > } -1->Emitted(25, 5) Source(19, 1) + SourceIndex(3) -2 >Emitted(25, 19) Source(19, 2) + SourceIndex(3) +1->Emitted(26, 5) Source(19, 1) + SourceIndex(3) +2 >Emitted(26, 19) Source(19, 2) + SourceIndex(3) --- >>>}()); 1 > @@ -619,10 +621,10 @@ sourceFile:../second/second_part1.ts > /**@internal*/ get c() { return 10; } > /**@internal*/ set c(val: number) { } > } -1 >Emitted(26, 1) Source(19, 1) + SourceIndex(3) -2 >Emitted(26, 2) Source(19, 2) + SourceIndex(3) -3 >Emitted(26, 2) Source(13, 1) + SourceIndex(3) -4 >Emitted(26, 6) Source(19, 2) + SourceIndex(3) +1 >Emitted(27, 1) Source(19, 1) + SourceIndex(3) +2 >Emitted(27, 2) Source(19, 2) + SourceIndex(3) +3 >Emitted(27, 2) Source(13, 1) + SourceIndex(3) +4 >Emitted(27, 6) Source(19, 2) + SourceIndex(3) --- >>>var normalN; 1-> @@ -644,10 +646,10 @@ sourceFile:../second/second_part1.ts > /**@internal*/ export const internalConst = 10; > /**@internal*/ export enum internalEnum { a, b, c } > } -1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(27, 5) Source(20, 11) + SourceIndex(3) -3 >Emitted(27, 12) Source(20, 18) + SourceIndex(3) -4 >Emitted(27, 13) Source(29, 2) + SourceIndex(3) +1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(28, 5) Source(20, 11) + SourceIndex(3) +3 >Emitted(28, 12) Source(20, 18) + SourceIndex(3) +4 >Emitted(28, 13) Source(29, 2) + SourceIndex(3) --- >>>(function (normalN) { 1-> @@ -657,9 +659,9 @@ sourceFile:../second/second_part1.ts 1-> 2 >namespace 3 > normalN -1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(28, 12) Source(20, 11) + SourceIndex(3) -3 >Emitted(28, 19) Source(20, 18) + SourceIndex(3) +1->Emitted(29, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(29, 12) Source(20, 11) + SourceIndex(3) +3 >Emitted(29, 19) Source(20, 18) + SourceIndex(3) --- >>> /**@internal*/ var C = /** @class */ (function () { 1->^^^^ @@ -670,15 +672,15 @@ sourceFile:../second/second_part1.ts > 2 > /**@internal*/ 3 > -1->Emitted(29, 5) Source(21, 5) + SourceIndex(3) -2 >Emitted(29, 19) Source(21, 19) + SourceIndex(3) -3 >Emitted(29, 20) Source(21, 20) + SourceIndex(3) +1->Emitted(30, 5) Source(21, 5) + SourceIndex(3) +2 >Emitted(30, 19) Source(21, 19) + SourceIndex(3) +3 >Emitted(30, 20) Source(21, 20) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(30, 9) Source(21, 20) + SourceIndex(3) +1->Emitted(31, 9) Source(21, 20) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -686,16 +688,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(31, 9) Source(21, 37) + SourceIndex(3) -2 >Emitted(31, 10) Source(21, 38) + SourceIndex(3) +1->Emitted(32, 9) Source(21, 37) + SourceIndex(3) +2 >Emitted(32, 10) Source(21, 38) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(32, 9) Source(21, 37) + SourceIndex(3) -2 >Emitted(32, 17) Source(21, 38) + SourceIndex(3) +1->Emitted(33, 9) Source(21, 37) + SourceIndex(3) +2 >Emitted(33, 17) Source(21, 38) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -707,10 +709,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(33, 5) Source(21, 37) + SourceIndex(3) -2 >Emitted(33, 6) Source(21, 38) + SourceIndex(3) -3 >Emitted(33, 6) Source(21, 20) + SourceIndex(3) -4 >Emitted(33, 10) Source(21, 38) + SourceIndex(3) +1 >Emitted(34, 5) Source(21, 37) + SourceIndex(3) +2 >Emitted(34, 6) Source(21, 38) + SourceIndex(3) +3 >Emitted(34, 6) Source(21, 20) + SourceIndex(3) +4 >Emitted(34, 10) Source(21, 38) + SourceIndex(3) --- >>> normalN.C = C; 1->^^^^ @@ -722,10 +724,10 @@ sourceFile:../second/second_part1.ts 2 > C 3 > { } 4 > -1->Emitted(34, 5) Source(21, 33) + SourceIndex(3) -2 >Emitted(34, 14) Source(21, 34) + SourceIndex(3) -3 >Emitted(34, 18) Source(21, 38) + SourceIndex(3) -4 >Emitted(34, 19) Source(21, 38) + SourceIndex(3) +1->Emitted(35, 5) Source(21, 33) + SourceIndex(3) +2 >Emitted(35, 14) Source(21, 34) + SourceIndex(3) +3 >Emitted(35, 18) Source(21, 38) + SourceIndex(3) +4 >Emitted(35, 19) Source(21, 38) + SourceIndex(3) --- >>> /**@internal*/ function foo() { } 1->^^^^ @@ -743,13 +745,13 @@ sourceFile:../second/second_part1.ts 5 > foo 6 > () { 7 > } -1->Emitted(35, 5) Source(22, 5) + SourceIndex(3) -2 >Emitted(35, 19) Source(22, 19) + SourceIndex(3) -3 >Emitted(35, 20) Source(22, 20) + SourceIndex(3) -4 >Emitted(35, 29) Source(22, 36) + SourceIndex(3) -5 >Emitted(35, 32) Source(22, 39) + SourceIndex(3) -6 >Emitted(35, 37) Source(22, 43) + SourceIndex(3) -7 >Emitted(35, 38) Source(22, 44) + SourceIndex(3) +1->Emitted(36, 5) Source(22, 5) + SourceIndex(3) +2 >Emitted(36, 19) Source(22, 19) + SourceIndex(3) +3 >Emitted(36, 20) Source(22, 20) + SourceIndex(3) +4 >Emitted(36, 29) Source(22, 36) + SourceIndex(3) +5 >Emitted(36, 32) Source(22, 39) + SourceIndex(3) +6 >Emitted(36, 37) Source(22, 43) + SourceIndex(3) +7 >Emitted(36, 38) Source(22, 44) + SourceIndex(3) --- >>> normalN.foo = foo; 1 >^^^^ @@ -761,10 +763,10 @@ sourceFile:../second/second_part1.ts 2 > foo 3 > () {} 4 > -1 >Emitted(36, 5) Source(22, 36) + SourceIndex(3) -2 >Emitted(36, 16) Source(22, 39) + SourceIndex(3) -3 >Emitted(36, 22) Source(22, 44) + SourceIndex(3) -4 >Emitted(36, 23) Source(22, 44) + SourceIndex(3) +1 >Emitted(37, 5) Source(22, 36) + SourceIndex(3) +2 >Emitted(37, 16) Source(22, 39) + SourceIndex(3) +3 >Emitted(37, 22) Source(22, 44) + SourceIndex(3) +4 >Emitted(37, 23) Source(22, 44) + SourceIndex(3) --- >>> /**@internal*/ var someNamespace; 1->^^^^ @@ -780,12 +782,12 @@ sourceFile:../second/second_part1.ts 4 > export namespace 5 > someNamespace 6 > { export class C {} } -1->Emitted(37, 5) Source(23, 5) + SourceIndex(3) -2 >Emitted(37, 19) Source(23, 19) + SourceIndex(3) -3 >Emitted(37, 20) Source(23, 20) + SourceIndex(3) -4 >Emitted(37, 24) Source(23, 37) + SourceIndex(3) -5 >Emitted(37, 37) Source(23, 50) + SourceIndex(3) -6 >Emitted(37, 38) Source(23, 72) + SourceIndex(3) +1->Emitted(38, 5) Source(23, 5) + SourceIndex(3) +2 >Emitted(38, 19) Source(23, 19) + SourceIndex(3) +3 >Emitted(38, 20) Source(23, 20) + SourceIndex(3) +4 >Emitted(38, 24) Source(23, 37) + SourceIndex(3) +5 >Emitted(38, 37) Source(23, 50) + SourceIndex(3) +6 >Emitted(38, 38) Source(23, 72) + SourceIndex(3) --- >>> (function (someNamespace) { 1 >^^^^ @@ -795,21 +797,21 @@ sourceFile:../second/second_part1.ts 1 > 2 > export namespace 3 > someNamespace -1 >Emitted(38, 5) Source(23, 20) + SourceIndex(3) -2 >Emitted(38, 16) Source(23, 37) + SourceIndex(3) -3 >Emitted(38, 29) Source(23, 50) + SourceIndex(3) +1 >Emitted(39, 5) Source(23, 20) + SourceIndex(3) +2 >Emitted(39, 16) Source(23, 37) + SourceIndex(3) +3 >Emitted(39, 29) Source(23, 50) + SourceIndex(3) --- >>> var C = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(39, 9) Source(23, 53) + SourceIndex(3) +1->Emitted(40, 9) Source(23, 53) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(40, 13) Source(23, 53) + SourceIndex(3) +1->Emitted(41, 13) Source(23, 53) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -817,16 +819,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(41, 13) Source(23, 69) + SourceIndex(3) -2 >Emitted(41, 14) Source(23, 70) + SourceIndex(3) +1->Emitted(42, 13) Source(23, 69) + SourceIndex(3) +2 >Emitted(42, 14) Source(23, 70) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(42, 13) Source(23, 69) + SourceIndex(3) -2 >Emitted(42, 21) Source(23, 70) + SourceIndex(3) +1->Emitted(43, 13) Source(23, 69) + SourceIndex(3) +2 >Emitted(43, 21) Source(23, 70) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -838,10 +840,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(43, 9) Source(23, 69) + SourceIndex(3) -2 >Emitted(43, 10) Source(23, 70) + SourceIndex(3) -3 >Emitted(43, 10) Source(23, 53) + SourceIndex(3) -4 >Emitted(43, 14) Source(23, 70) + SourceIndex(3) +1 >Emitted(44, 9) Source(23, 69) + SourceIndex(3) +2 >Emitted(44, 10) Source(23, 70) + SourceIndex(3) +3 >Emitted(44, 10) Source(23, 53) + SourceIndex(3) +4 >Emitted(44, 14) Source(23, 70) + SourceIndex(3) --- >>> someNamespace.C = C; 1->^^^^^^^^ @@ -853,10 +855,10 @@ sourceFile:../second/second_part1.ts 2 > C 3 > {} 4 > -1->Emitted(44, 9) Source(23, 66) + SourceIndex(3) -2 >Emitted(44, 24) Source(23, 67) + SourceIndex(3) -3 >Emitted(44, 28) Source(23, 70) + SourceIndex(3) -4 >Emitted(44, 29) Source(23, 70) + SourceIndex(3) +1->Emitted(45, 9) Source(23, 66) + SourceIndex(3) +2 >Emitted(45, 24) Source(23, 67) + SourceIndex(3) +3 >Emitted(45, 28) Source(23, 70) + SourceIndex(3) +4 >Emitted(45, 29) Source(23, 70) + SourceIndex(3) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^ @@ -877,15 +879,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(45, 5) Source(23, 71) + SourceIndex(3) -2 >Emitted(45, 6) Source(23, 72) + SourceIndex(3) -3 >Emitted(45, 8) Source(23, 37) + SourceIndex(3) -4 >Emitted(45, 21) Source(23, 50) + SourceIndex(3) -5 >Emitted(45, 24) Source(23, 37) + SourceIndex(3) -6 >Emitted(45, 45) Source(23, 50) + SourceIndex(3) -7 >Emitted(45, 50) Source(23, 37) + SourceIndex(3) -8 >Emitted(45, 71) Source(23, 50) + SourceIndex(3) -9 >Emitted(45, 79) Source(23, 72) + SourceIndex(3) +1->Emitted(46, 5) Source(23, 71) + SourceIndex(3) +2 >Emitted(46, 6) Source(23, 72) + SourceIndex(3) +3 >Emitted(46, 8) Source(23, 37) + SourceIndex(3) +4 >Emitted(46, 21) Source(23, 50) + SourceIndex(3) +5 >Emitted(46, 24) Source(23, 37) + SourceIndex(3) +6 >Emitted(46, 45) Source(23, 50) + SourceIndex(3) +7 >Emitted(46, 50) Source(23, 37) + SourceIndex(3) +8 >Emitted(46, 71) Source(23, 50) + SourceIndex(3) +9 >Emitted(46, 79) Source(23, 72) + SourceIndex(3) --- >>> /**@internal*/ var someOther; 1 >^^^^ @@ -901,12 +903,12 @@ sourceFile:../second/second_part1.ts 4 > export namespace 5 > someOther 6 > .something { export class someClass {} } -1 >Emitted(46, 5) Source(24, 5) + SourceIndex(3) -2 >Emitted(46, 19) Source(24, 19) + SourceIndex(3) -3 >Emitted(46, 20) Source(24, 20) + SourceIndex(3) -4 >Emitted(46, 24) Source(24, 37) + SourceIndex(3) -5 >Emitted(46, 33) Source(24, 46) + SourceIndex(3) -6 >Emitted(46, 34) Source(24, 86) + SourceIndex(3) +1 >Emitted(47, 5) Source(24, 5) + SourceIndex(3) +2 >Emitted(47, 19) Source(24, 19) + SourceIndex(3) +3 >Emitted(47, 20) Source(24, 20) + SourceIndex(3) +4 >Emitted(47, 24) Source(24, 37) + SourceIndex(3) +5 >Emitted(47, 33) Source(24, 46) + SourceIndex(3) +6 >Emitted(47, 34) Source(24, 86) + SourceIndex(3) --- >>> (function (someOther) { 1 >^^^^ @@ -915,9 +917,9 @@ sourceFile:../second/second_part1.ts 1 > 2 > export namespace 3 > someOther -1 >Emitted(47, 5) Source(24, 20) + SourceIndex(3) -2 >Emitted(47, 16) Source(24, 37) + SourceIndex(3) -3 >Emitted(47, 25) Source(24, 46) + SourceIndex(3) +1 >Emitted(48, 5) Source(24, 20) + SourceIndex(3) +2 >Emitted(48, 16) Source(24, 37) + SourceIndex(3) +3 >Emitted(48, 25) Source(24, 46) + SourceIndex(3) --- >>> var something; 1 >^^^^^^^^ @@ -929,10 +931,10 @@ sourceFile:../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(48, 9) Source(24, 47) + SourceIndex(3) -2 >Emitted(48, 13) Source(24, 47) + SourceIndex(3) -3 >Emitted(48, 22) Source(24, 56) + SourceIndex(3) -4 >Emitted(48, 23) Source(24, 86) + SourceIndex(3) +1 >Emitted(49, 9) Source(24, 47) + SourceIndex(3) +2 >Emitted(49, 13) Source(24, 47) + SourceIndex(3) +3 >Emitted(49, 22) Source(24, 56) + SourceIndex(3) +4 >Emitted(49, 23) Source(24, 86) + SourceIndex(3) --- >>> (function (something) { 1->^^^^^^^^ @@ -942,21 +944,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(49, 9) Source(24, 47) + SourceIndex(3) -2 >Emitted(49, 20) Source(24, 47) + SourceIndex(3) -3 >Emitted(49, 29) Source(24, 56) + SourceIndex(3) +1->Emitted(50, 9) Source(24, 47) + SourceIndex(3) +2 >Emitted(50, 20) Source(24, 47) + SourceIndex(3) +3 >Emitted(50, 29) Source(24, 56) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(50, 13) Source(24, 59) + SourceIndex(3) +1->Emitted(51, 13) Source(24, 59) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(51, 17) Source(24, 59) + SourceIndex(3) +1->Emitted(52, 17) Source(24, 59) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -964,16 +966,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(52, 17) Source(24, 83) + SourceIndex(3) -2 >Emitted(52, 18) Source(24, 84) + SourceIndex(3) +1->Emitted(53, 17) Source(24, 83) + SourceIndex(3) +2 >Emitted(53, 18) Source(24, 84) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(53, 17) Source(24, 83) + SourceIndex(3) -2 >Emitted(53, 33) Source(24, 84) + SourceIndex(3) +1->Emitted(54, 17) Source(24, 83) + SourceIndex(3) +2 >Emitted(54, 33) Source(24, 84) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -985,10 +987,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(54, 13) Source(24, 83) + SourceIndex(3) -2 >Emitted(54, 14) Source(24, 84) + SourceIndex(3) -3 >Emitted(54, 14) Source(24, 59) + SourceIndex(3) -4 >Emitted(54, 18) Source(24, 84) + SourceIndex(3) +1 >Emitted(55, 13) Source(24, 83) + SourceIndex(3) +2 >Emitted(55, 14) Source(24, 84) + SourceIndex(3) +3 >Emitted(55, 14) Source(24, 59) + SourceIndex(3) +4 >Emitted(55, 18) Source(24, 84) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -1000,10 +1002,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(55, 13) Source(24, 72) + SourceIndex(3) -2 >Emitted(55, 32) Source(24, 81) + SourceIndex(3) -3 >Emitted(55, 44) Source(24, 84) + SourceIndex(3) -4 >Emitted(55, 45) Source(24, 84) + SourceIndex(3) +1->Emitted(56, 13) Source(24, 72) + SourceIndex(3) +2 >Emitted(56, 32) Source(24, 81) + SourceIndex(3) +3 >Emitted(56, 44) Source(24, 84) + SourceIndex(3) +4 >Emitted(56, 45) Source(24, 84) + SourceIndex(3) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^ @@ -1024,15 +1026,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(56, 9) Source(24, 85) + SourceIndex(3) -2 >Emitted(56, 10) Source(24, 86) + SourceIndex(3) -3 >Emitted(56, 12) Source(24, 47) + SourceIndex(3) -4 >Emitted(56, 21) Source(24, 56) + SourceIndex(3) -5 >Emitted(56, 24) Source(24, 47) + SourceIndex(3) -6 >Emitted(56, 43) Source(24, 56) + SourceIndex(3) -7 >Emitted(56, 48) Source(24, 47) + SourceIndex(3) -8 >Emitted(56, 67) Source(24, 56) + SourceIndex(3) -9 >Emitted(56, 75) Source(24, 86) + SourceIndex(3) +1->Emitted(57, 9) Source(24, 85) + SourceIndex(3) +2 >Emitted(57, 10) Source(24, 86) + SourceIndex(3) +3 >Emitted(57, 12) Source(24, 47) + SourceIndex(3) +4 >Emitted(57, 21) Source(24, 56) + SourceIndex(3) +5 >Emitted(57, 24) Source(24, 47) + SourceIndex(3) +6 >Emitted(57, 43) Source(24, 56) + SourceIndex(3) +7 >Emitted(57, 48) Source(24, 47) + SourceIndex(3) +8 >Emitted(57, 67) Source(24, 56) + SourceIndex(3) +9 >Emitted(57, 75) Source(24, 86) + SourceIndex(3) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^ @@ -1053,15 +1055,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(57, 5) Source(24, 85) + SourceIndex(3) -2 >Emitted(57, 6) Source(24, 86) + SourceIndex(3) -3 >Emitted(57, 8) Source(24, 37) + SourceIndex(3) -4 >Emitted(57, 17) Source(24, 46) + SourceIndex(3) -5 >Emitted(57, 20) Source(24, 37) + SourceIndex(3) -6 >Emitted(57, 37) Source(24, 46) + SourceIndex(3) -7 >Emitted(57, 42) Source(24, 37) + SourceIndex(3) -8 >Emitted(57, 59) Source(24, 46) + SourceIndex(3) -9 >Emitted(57, 67) Source(24, 86) + SourceIndex(3) +1 >Emitted(58, 5) Source(24, 85) + SourceIndex(3) +2 >Emitted(58, 6) Source(24, 86) + SourceIndex(3) +3 >Emitted(58, 8) Source(24, 37) + SourceIndex(3) +4 >Emitted(58, 17) Source(24, 46) + SourceIndex(3) +5 >Emitted(58, 20) Source(24, 37) + SourceIndex(3) +6 >Emitted(58, 37) Source(24, 46) + SourceIndex(3) +7 >Emitted(58, 42) Source(24, 37) + SourceIndex(3) +8 >Emitted(58, 59) Source(24, 46) + SourceIndex(3) +9 >Emitted(58, 67) Source(24, 86) + SourceIndex(3) --- >>> /**@internal*/ normalN.someImport = someNamespace.C; 1 >^^^^ @@ -1083,15 +1085,15 @@ sourceFile:../second/second_part1.ts 7 > . 8 > C 9 > ; -1 >Emitted(58, 5) Source(25, 5) + SourceIndex(3) -2 >Emitted(58, 19) Source(25, 19) + SourceIndex(3) -3 >Emitted(58, 20) Source(25, 34) + SourceIndex(3) -4 >Emitted(58, 38) Source(25, 44) + SourceIndex(3) -5 >Emitted(58, 41) Source(25, 47) + SourceIndex(3) -6 >Emitted(58, 54) Source(25, 60) + SourceIndex(3) -7 >Emitted(58, 55) Source(25, 61) + SourceIndex(3) -8 >Emitted(58, 56) Source(25, 62) + SourceIndex(3) -9 >Emitted(58, 57) Source(25, 63) + SourceIndex(3) +1 >Emitted(59, 5) Source(25, 5) + SourceIndex(3) +2 >Emitted(59, 19) Source(25, 19) + SourceIndex(3) +3 >Emitted(59, 20) Source(25, 34) + SourceIndex(3) +4 >Emitted(59, 38) Source(25, 44) + SourceIndex(3) +5 >Emitted(59, 41) Source(25, 47) + SourceIndex(3) +6 >Emitted(59, 54) Source(25, 60) + SourceIndex(3) +7 >Emitted(59, 55) Source(25, 61) + SourceIndex(3) +8 >Emitted(59, 56) Source(25, 62) + SourceIndex(3) +9 >Emitted(59, 57) Source(25, 63) + SourceIndex(3) --- >>> /**@internal*/ normalN.internalConst = 10; 1 >^^^^ @@ -1110,13 +1112,13 @@ sourceFile:../second/second_part1.ts 5 > = 6 > 10 7 > ; -1 >Emitted(59, 5) Source(27, 5) + SourceIndex(3) -2 >Emitted(59, 19) Source(27, 19) + SourceIndex(3) -3 >Emitted(59, 20) Source(27, 33) + SourceIndex(3) -4 >Emitted(59, 41) Source(27, 46) + SourceIndex(3) -5 >Emitted(59, 44) Source(27, 49) + SourceIndex(3) -6 >Emitted(59, 46) Source(27, 51) + SourceIndex(3) -7 >Emitted(59, 47) Source(27, 52) + SourceIndex(3) +1 >Emitted(60, 5) Source(27, 5) + SourceIndex(3) +2 >Emitted(60, 19) Source(27, 19) + SourceIndex(3) +3 >Emitted(60, 20) Source(27, 33) + SourceIndex(3) +4 >Emitted(60, 41) Source(27, 46) + SourceIndex(3) +5 >Emitted(60, 44) Source(27, 49) + SourceIndex(3) +6 >Emitted(60, 46) Source(27, 51) + SourceIndex(3) +7 >Emitted(60, 47) Source(27, 52) + SourceIndex(3) --- >>> /**@internal*/ var internalEnum; 1 >^^^^ @@ -1130,11 +1132,11 @@ sourceFile:../second/second_part1.ts 3 > 4 > export enum 5 > internalEnum { a, b, c } -1 >Emitted(60, 5) Source(28, 5) + SourceIndex(3) -2 >Emitted(60, 19) Source(28, 19) + SourceIndex(3) -3 >Emitted(60, 20) Source(28, 20) + SourceIndex(3) -4 >Emitted(60, 24) Source(28, 32) + SourceIndex(3) -5 >Emitted(60, 36) Source(28, 56) + SourceIndex(3) +1 >Emitted(61, 5) Source(28, 5) + SourceIndex(3) +2 >Emitted(61, 19) Source(28, 19) + SourceIndex(3) +3 >Emitted(61, 20) Source(28, 20) + SourceIndex(3) +4 >Emitted(61, 24) Source(28, 32) + SourceIndex(3) +5 >Emitted(61, 36) Source(28, 56) + SourceIndex(3) --- >>> (function (internalEnum) { 1 >^^^^ @@ -1144,9 +1146,9 @@ sourceFile:../second/second_part1.ts 1 > 2 > export enum 3 > internalEnum -1 >Emitted(61, 5) Source(28, 20) + SourceIndex(3) -2 >Emitted(61, 16) Source(28, 32) + SourceIndex(3) -3 >Emitted(61, 28) Source(28, 44) + SourceIndex(3) +1 >Emitted(62, 5) Source(28, 20) + SourceIndex(3) +2 >Emitted(62, 16) Source(28, 32) + SourceIndex(3) +3 >Emitted(62, 28) Source(28, 44) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -1156,9 +1158,9 @@ sourceFile:../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(62, 9) Source(28, 47) + SourceIndex(3) -2 >Emitted(62, 50) Source(28, 48) + SourceIndex(3) -3 >Emitted(62, 51) Source(28, 48) + SourceIndex(3) +1->Emitted(63, 9) Source(28, 47) + SourceIndex(3) +2 >Emitted(63, 50) Source(28, 48) + SourceIndex(3) +3 >Emitted(63, 51) Source(28, 48) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -1168,9 +1170,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(63, 9) Source(28, 50) + SourceIndex(3) -2 >Emitted(63, 50) Source(28, 51) + SourceIndex(3) -3 >Emitted(63, 51) Source(28, 51) + SourceIndex(3) +1->Emitted(64, 9) Source(28, 50) + SourceIndex(3) +2 >Emitted(64, 50) Source(28, 51) + SourceIndex(3) +3 >Emitted(64, 51) Source(28, 51) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -1180,9 +1182,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(64, 9) Source(28, 53) + SourceIndex(3) -2 >Emitted(64, 50) Source(28, 54) + SourceIndex(3) -3 >Emitted(64, 51) Source(28, 54) + SourceIndex(3) +1->Emitted(65, 9) Source(28, 53) + SourceIndex(3) +2 >Emitted(65, 50) Source(28, 54) + SourceIndex(3) +3 >Emitted(65, 51) Source(28, 54) + SourceIndex(3) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^ @@ -1203,15 +1205,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(65, 5) Source(28, 55) + SourceIndex(3) -2 >Emitted(65, 6) Source(28, 56) + SourceIndex(3) -3 >Emitted(65, 8) Source(28, 32) + SourceIndex(3) -4 >Emitted(65, 20) Source(28, 44) + SourceIndex(3) -5 >Emitted(65, 23) Source(28, 32) + SourceIndex(3) -6 >Emitted(65, 43) Source(28, 44) + SourceIndex(3) -7 >Emitted(65, 48) Source(28, 32) + SourceIndex(3) -8 >Emitted(65, 68) Source(28, 44) + SourceIndex(3) -9 >Emitted(65, 76) Source(28, 56) + SourceIndex(3) +1->Emitted(66, 5) Source(28, 55) + SourceIndex(3) +2 >Emitted(66, 6) Source(28, 56) + SourceIndex(3) +3 >Emitted(66, 8) Source(28, 32) + SourceIndex(3) +4 >Emitted(66, 20) Source(28, 44) + SourceIndex(3) +5 >Emitted(66, 23) Source(28, 32) + SourceIndex(3) +6 >Emitted(66, 43) Source(28, 44) + SourceIndex(3) +7 >Emitted(66, 48) Source(28, 32) + SourceIndex(3) +8 >Emitted(66, 68) Source(28, 44) + SourceIndex(3) +9 >Emitted(66, 76) Source(28, 56) + SourceIndex(3) --- >>>})(normalN || (normalN = {})); 1 > @@ -1239,13 +1241,13 @@ sourceFile:../second/second_part1.ts > /**@internal*/ export const internalConst = 10; > /**@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(66, 1) Source(29, 1) + SourceIndex(3) -2 >Emitted(66, 2) Source(29, 2) + SourceIndex(3) -3 >Emitted(66, 4) Source(20, 11) + SourceIndex(3) -4 >Emitted(66, 11) Source(20, 18) + SourceIndex(3) -5 >Emitted(66, 16) Source(20, 11) + SourceIndex(3) -6 >Emitted(66, 23) Source(20, 18) + SourceIndex(3) -7 >Emitted(66, 31) Source(29, 2) + SourceIndex(3) +1 >Emitted(67, 1) Source(29, 1) + SourceIndex(3) +2 >Emitted(67, 2) Source(29, 2) + SourceIndex(3) +3 >Emitted(67, 4) Source(20, 11) + SourceIndex(3) +4 >Emitted(67, 11) Source(20, 18) + SourceIndex(3) +5 >Emitted(67, 16) Source(20, 11) + SourceIndex(3) +6 >Emitted(67, 23) Source(20, 18) + SourceIndex(3) +7 >Emitted(67, 31) Source(29, 2) + SourceIndex(3) --- >>>/**@internal*/ var internalC = /** @class */ (function () { 1-> @@ -1256,15 +1258,15 @@ sourceFile:../second/second_part1.ts > 2 >/**@internal*/ 3 > -1->Emitted(67, 1) Source(30, 1) + SourceIndex(3) -2 >Emitted(67, 15) Source(30, 15) + SourceIndex(3) -3 >Emitted(67, 16) Source(30, 16) + SourceIndex(3) +1->Emitted(68, 1) Source(30, 1) + SourceIndex(3) +2 >Emitted(68, 15) Source(30, 15) + SourceIndex(3) +3 >Emitted(68, 16) Source(30, 16) + SourceIndex(3) --- >>> function internalC() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(68, 5) Source(30, 16) + SourceIndex(3) +1->Emitted(69, 5) Source(30, 16) + SourceIndex(3) --- >>> } 1->^^^^ @@ -1272,16 +1274,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->class internalC { 2 > } -1->Emitted(69, 5) Source(30, 33) + SourceIndex(3) -2 >Emitted(69, 6) Source(30, 34) + SourceIndex(3) +1->Emitted(70, 5) Source(30, 33) + SourceIndex(3) +2 >Emitted(70, 6) Source(30, 34) + SourceIndex(3) --- >>> return internalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(70, 5) Source(30, 33) + SourceIndex(3) -2 >Emitted(70, 21) Source(30, 34) + SourceIndex(3) +1->Emitted(71, 5) Source(30, 33) + SourceIndex(3) +2 >Emitted(71, 21) Source(30, 34) + SourceIndex(3) --- >>>}()); 1 > @@ -1293,10 +1295,10 @@ sourceFile:../second/second_part1.ts 2 >} 3 > 4 > class internalC {} -1 >Emitted(71, 1) Source(30, 33) + SourceIndex(3) -2 >Emitted(71, 2) Source(30, 34) + SourceIndex(3) -3 >Emitted(71, 2) Source(30, 16) + SourceIndex(3) -4 >Emitted(71, 6) Source(30, 34) + SourceIndex(3) +1 >Emitted(72, 1) Source(30, 33) + SourceIndex(3) +2 >Emitted(72, 2) Source(30, 34) + SourceIndex(3) +3 >Emitted(72, 2) Source(30, 16) + SourceIndex(3) +4 >Emitted(72, 6) Source(30, 34) + SourceIndex(3) --- >>>/**@internal*/ function internalfoo() { } 1-> @@ -1314,13 +1316,13 @@ sourceFile:../second/second_part1.ts 5 > internalfoo 6 > () { 7 > } -1->Emitted(72, 1) Source(31, 1) + SourceIndex(3) -2 >Emitted(72, 15) Source(31, 15) + SourceIndex(3) -3 >Emitted(72, 16) Source(31, 16) + SourceIndex(3) -4 >Emitted(72, 25) Source(31, 25) + SourceIndex(3) -5 >Emitted(72, 36) Source(31, 36) + SourceIndex(3) -6 >Emitted(72, 41) Source(31, 40) + SourceIndex(3) -7 >Emitted(72, 42) Source(31, 41) + SourceIndex(3) +1->Emitted(73, 1) Source(31, 1) + SourceIndex(3) +2 >Emitted(73, 15) Source(31, 15) + SourceIndex(3) +3 >Emitted(73, 16) Source(31, 16) + SourceIndex(3) +4 >Emitted(73, 25) Source(31, 25) + SourceIndex(3) +5 >Emitted(73, 36) Source(31, 36) + SourceIndex(3) +6 >Emitted(73, 41) Source(31, 40) + SourceIndex(3) +7 >Emitted(73, 42) Source(31, 41) + SourceIndex(3) --- >>>/**@internal*/ var internalNamespace; 1 > @@ -1336,12 +1338,12 @@ sourceFile:../second/second_part1.ts 4 > namespace 5 > internalNamespace 6 > { export class someClass {} } -1 >Emitted(73, 1) Source(32, 1) + SourceIndex(3) -2 >Emitted(73, 15) Source(32, 15) + SourceIndex(3) -3 >Emitted(73, 16) Source(32, 16) + SourceIndex(3) -4 >Emitted(73, 20) Source(32, 26) + SourceIndex(3) -5 >Emitted(73, 37) Source(32, 43) + SourceIndex(3) -6 >Emitted(73, 38) Source(32, 73) + SourceIndex(3) +1 >Emitted(74, 1) Source(32, 1) + SourceIndex(3) +2 >Emitted(74, 15) Source(32, 15) + SourceIndex(3) +3 >Emitted(74, 16) Source(32, 16) + SourceIndex(3) +4 >Emitted(74, 20) Source(32, 26) + SourceIndex(3) +5 >Emitted(74, 37) Source(32, 43) + SourceIndex(3) +6 >Emitted(74, 38) Source(32, 73) + SourceIndex(3) --- >>>(function (internalNamespace) { 1 > @@ -1351,21 +1353,21 @@ sourceFile:../second/second_part1.ts 1 > 2 >namespace 3 > internalNamespace -1 >Emitted(74, 1) Source(32, 16) + SourceIndex(3) -2 >Emitted(74, 12) Source(32, 26) + SourceIndex(3) -3 >Emitted(74, 29) Source(32, 43) + SourceIndex(3) +1 >Emitted(75, 1) Source(32, 16) + SourceIndex(3) +2 >Emitted(75, 12) Source(32, 26) + SourceIndex(3) +3 >Emitted(75, 29) Source(32, 43) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(75, 5) Source(32, 46) + SourceIndex(3) +1->Emitted(76, 5) Source(32, 46) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(76, 9) Source(32, 46) + SourceIndex(3) +1->Emitted(77, 9) Source(32, 46) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -1373,16 +1375,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(77, 9) Source(32, 70) + SourceIndex(3) -2 >Emitted(77, 10) Source(32, 71) + SourceIndex(3) +1->Emitted(78, 9) Source(32, 70) + SourceIndex(3) +2 >Emitted(78, 10) Source(32, 71) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(78, 9) Source(32, 70) + SourceIndex(3) -2 >Emitted(78, 25) Source(32, 71) + SourceIndex(3) +1->Emitted(79, 9) Source(32, 70) + SourceIndex(3) +2 >Emitted(79, 25) Source(32, 71) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -1394,10 +1396,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(79, 5) Source(32, 70) + SourceIndex(3) -2 >Emitted(79, 6) Source(32, 71) + SourceIndex(3) -3 >Emitted(79, 6) Source(32, 46) + SourceIndex(3) -4 >Emitted(79, 10) Source(32, 71) + SourceIndex(3) +1 >Emitted(80, 5) Source(32, 70) + SourceIndex(3) +2 >Emitted(80, 6) Source(32, 71) + SourceIndex(3) +3 >Emitted(80, 6) Source(32, 46) + SourceIndex(3) +4 >Emitted(80, 10) Source(32, 71) + SourceIndex(3) --- >>> internalNamespace.someClass = someClass; 1->^^^^ @@ -1409,10 +1411,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(80, 5) Source(32, 59) + SourceIndex(3) -2 >Emitted(80, 32) Source(32, 68) + SourceIndex(3) -3 >Emitted(80, 44) Source(32, 71) + SourceIndex(3) -4 >Emitted(80, 45) Source(32, 71) + SourceIndex(3) +1->Emitted(81, 5) Source(32, 59) + SourceIndex(3) +2 >Emitted(81, 32) Source(32, 68) + SourceIndex(3) +3 >Emitted(81, 44) Source(32, 71) + SourceIndex(3) +4 >Emitted(81, 45) Source(32, 71) + SourceIndex(3) --- >>>})(internalNamespace || (internalNamespace = {})); 1-> @@ -1429,13 +1431,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalNamespace 7 > { export class someClass {} } -1->Emitted(81, 1) Source(32, 72) + SourceIndex(3) -2 >Emitted(81, 2) Source(32, 73) + SourceIndex(3) -3 >Emitted(81, 4) Source(32, 26) + SourceIndex(3) -4 >Emitted(81, 21) Source(32, 43) + SourceIndex(3) -5 >Emitted(81, 26) Source(32, 26) + SourceIndex(3) -6 >Emitted(81, 43) Source(32, 43) + SourceIndex(3) -7 >Emitted(81, 51) Source(32, 73) + SourceIndex(3) +1->Emitted(82, 1) Source(32, 72) + SourceIndex(3) +2 >Emitted(82, 2) Source(32, 73) + SourceIndex(3) +3 >Emitted(82, 4) Source(32, 26) + SourceIndex(3) +4 >Emitted(82, 21) Source(32, 43) + SourceIndex(3) +5 >Emitted(82, 26) Source(32, 26) + SourceIndex(3) +6 >Emitted(82, 43) Source(32, 43) + SourceIndex(3) +7 >Emitted(82, 51) Source(32, 73) + SourceIndex(3) --- >>>/**@internal*/ var internalOther; 1 > @@ -1451,12 +1453,12 @@ sourceFile:../second/second_part1.ts 4 > namespace 5 > internalOther 6 > .something { export class someClass {} } -1 >Emitted(82, 1) Source(33, 1) + SourceIndex(3) -2 >Emitted(82, 15) Source(33, 15) + SourceIndex(3) -3 >Emitted(82, 16) Source(33, 16) + SourceIndex(3) -4 >Emitted(82, 20) Source(33, 26) + SourceIndex(3) -5 >Emitted(82, 33) Source(33, 39) + SourceIndex(3) -6 >Emitted(82, 34) Source(33, 79) + SourceIndex(3) +1 >Emitted(83, 1) Source(33, 1) + SourceIndex(3) +2 >Emitted(83, 15) Source(33, 15) + SourceIndex(3) +3 >Emitted(83, 16) Source(33, 16) + SourceIndex(3) +4 >Emitted(83, 20) Source(33, 26) + SourceIndex(3) +5 >Emitted(83, 33) Source(33, 39) + SourceIndex(3) +6 >Emitted(83, 34) Source(33, 79) + SourceIndex(3) --- >>>(function (internalOther) { 1 > @@ -1465,9 +1467,9 @@ sourceFile:../second/second_part1.ts 1 > 2 >namespace 3 > internalOther -1 >Emitted(83, 1) Source(33, 16) + SourceIndex(3) -2 >Emitted(83, 12) Source(33, 26) + SourceIndex(3) -3 >Emitted(83, 25) Source(33, 39) + SourceIndex(3) +1 >Emitted(84, 1) Source(33, 16) + SourceIndex(3) +2 >Emitted(84, 12) Source(33, 26) + SourceIndex(3) +3 >Emitted(84, 25) Source(33, 39) + SourceIndex(3) --- >>> var something; 1 >^^^^ @@ -1479,10 +1481,10 @@ sourceFile:../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(84, 5) Source(33, 40) + SourceIndex(3) -2 >Emitted(84, 9) Source(33, 40) + SourceIndex(3) -3 >Emitted(84, 18) Source(33, 49) + SourceIndex(3) -4 >Emitted(84, 19) Source(33, 79) + SourceIndex(3) +1 >Emitted(85, 5) Source(33, 40) + SourceIndex(3) +2 >Emitted(85, 9) Source(33, 40) + SourceIndex(3) +3 >Emitted(85, 18) Source(33, 49) + SourceIndex(3) +4 >Emitted(85, 19) Source(33, 79) + SourceIndex(3) --- >>> (function (something) { 1->^^^^ @@ -1492,21 +1494,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(85, 5) Source(33, 40) + SourceIndex(3) -2 >Emitted(85, 16) Source(33, 40) + SourceIndex(3) -3 >Emitted(85, 25) Source(33, 49) + SourceIndex(3) +1->Emitted(86, 5) Source(33, 40) + SourceIndex(3) +2 >Emitted(86, 16) Source(33, 40) + SourceIndex(3) +3 >Emitted(86, 25) Source(33, 49) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(86, 9) Source(33, 52) + SourceIndex(3) +1->Emitted(87, 9) Source(33, 52) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(87, 13) Source(33, 52) + SourceIndex(3) +1->Emitted(88, 13) Source(33, 52) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -1514,16 +1516,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(88, 13) Source(33, 76) + SourceIndex(3) -2 >Emitted(88, 14) Source(33, 77) + SourceIndex(3) +1->Emitted(89, 13) Source(33, 76) + SourceIndex(3) +2 >Emitted(89, 14) Source(33, 77) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(89, 13) Source(33, 76) + SourceIndex(3) -2 >Emitted(89, 29) Source(33, 77) + SourceIndex(3) +1->Emitted(90, 13) Source(33, 76) + SourceIndex(3) +2 >Emitted(90, 29) Source(33, 77) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -1535,10 +1537,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(90, 9) Source(33, 76) + SourceIndex(3) -2 >Emitted(90, 10) Source(33, 77) + SourceIndex(3) -3 >Emitted(90, 10) Source(33, 52) + SourceIndex(3) -4 >Emitted(90, 14) Source(33, 77) + SourceIndex(3) +1 >Emitted(91, 9) Source(33, 76) + SourceIndex(3) +2 >Emitted(91, 10) Source(33, 77) + SourceIndex(3) +3 >Emitted(91, 10) Source(33, 52) + SourceIndex(3) +4 >Emitted(91, 14) Source(33, 77) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^ @@ -1550,10 +1552,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(91, 9) Source(33, 65) + SourceIndex(3) -2 >Emitted(91, 28) Source(33, 74) + SourceIndex(3) -3 >Emitted(91, 40) Source(33, 77) + SourceIndex(3) -4 >Emitted(91, 41) Source(33, 77) + SourceIndex(3) +1->Emitted(92, 9) Source(33, 65) + SourceIndex(3) +2 >Emitted(92, 28) Source(33, 74) + SourceIndex(3) +3 >Emitted(92, 40) Source(33, 77) + SourceIndex(3) +4 >Emitted(92, 41) Source(33, 77) + SourceIndex(3) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^ @@ -1574,15 +1576,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(92, 5) Source(33, 78) + SourceIndex(3) -2 >Emitted(92, 6) Source(33, 79) + SourceIndex(3) -3 >Emitted(92, 8) Source(33, 40) + SourceIndex(3) -4 >Emitted(92, 17) Source(33, 49) + SourceIndex(3) -5 >Emitted(92, 20) Source(33, 40) + SourceIndex(3) -6 >Emitted(92, 43) Source(33, 49) + SourceIndex(3) -7 >Emitted(92, 48) Source(33, 40) + SourceIndex(3) -8 >Emitted(92, 71) Source(33, 49) + SourceIndex(3) -9 >Emitted(92, 79) Source(33, 79) + SourceIndex(3) +1->Emitted(93, 5) Source(33, 78) + SourceIndex(3) +2 >Emitted(93, 6) Source(33, 79) + SourceIndex(3) +3 >Emitted(93, 8) Source(33, 40) + SourceIndex(3) +4 >Emitted(93, 17) Source(33, 49) + SourceIndex(3) +5 >Emitted(93, 20) Source(33, 40) + SourceIndex(3) +6 >Emitted(93, 43) Source(33, 49) + SourceIndex(3) +7 >Emitted(93, 48) Source(33, 40) + SourceIndex(3) +8 >Emitted(93, 71) Source(33, 49) + SourceIndex(3) +9 >Emitted(93, 79) Source(33, 79) + SourceIndex(3) --- >>>})(internalOther || (internalOther = {})); 1 > @@ -1600,13 +1602,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalOther 7 > .something { export class someClass {} } -1 >Emitted(93, 1) Source(33, 78) + SourceIndex(3) -2 >Emitted(93, 2) Source(33, 79) + SourceIndex(3) -3 >Emitted(93, 4) Source(33, 26) + SourceIndex(3) -4 >Emitted(93, 17) Source(33, 39) + SourceIndex(3) -5 >Emitted(93, 22) Source(33, 26) + SourceIndex(3) -6 >Emitted(93, 35) Source(33, 39) + SourceIndex(3) -7 >Emitted(93, 43) Source(33, 79) + SourceIndex(3) +1 >Emitted(94, 1) Source(33, 78) + SourceIndex(3) +2 >Emitted(94, 2) Source(33, 79) + SourceIndex(3) +3 >Emitted(94, 4) Source(33, 26) + SourceIndex(3) +4 >Emitted(94, 17) Source(33, 39) + SourceIndex(3) +5 >Emitted(94, 22) Source(33, 26) + SourceIndex(3) +6 >Emitted(94, 35) Source(33, 39) + SourceIndex(3) +7 >Emitted(94, 43) Source(33, 79) + SourceIndex(3) --- >>>/**@internal*/ var internalImport = internalNamespace.someClass; 1-> @@ -1630,16 +1632,16 @@ sourceFile:../second/second_part1.ts 8 > . 9 > someClass 10> ; -1->Emitted(94, 1) Source(34, 1) + SourceIndex(3) -2 >Emitted(94, 15) Source(34, 15) + SourceIndex(3) -3 >Emitted(94, 16) Source(34, 16) + SourceIndex(3) -4 >Emitted(94, 20) Source(34, 23) + SourceIndex(3) -5 >Emitted(94, 34) Source(34, 37) + SourceIndex(3) -6 >Emitted(94, 37) Source(34, 40) + SourceIndex(3) -7 >Emitted(94, 54) Source(34, 57) + SourceIndex(3) -8 >Emitted(94, 55) Source(34, 58) + SourceIndex(3) -9 >Emitted(94, 64) Source(34, 67) + SourceIndex(3) -10>Emitted(94, 65) Source(34, 68) + SourceIndex(3) +1->Emitted(95, 1) Source(34, 1) + SourceIndex(3) +2 >Emitted(95, 15) Source(34, 15) + SourceIndex(3) +3 >Emitted(95, 16) Source(34, 16) + SourceIndex(3) +4 >Emitted(95, 20) Source(34, 23) + SourceIndex(3) +5 >Emitted(95, 34) Source(34, 37) + SourceIndex(3) +6 >Emitted(95, 37) Source(34, 40) + SourceIndex(3) +7 >Emitted(95, 54) Source(34, 57) + SourceIndex(3) +8 >Emitted(95, 55) Source(34, 58) + SourceIndex(3) +9 >Emitted(95, 64) Source(34, 67) + SourceIndex(3) +10>Emitted(95, 65) Source(34, 68) + SourceIndex(3) --- >>>/**@internal*/ var internalConst = 10; 1 > @@ -1660,14 +1662,14 @@ sourceFile:../second/second_part1.ts 6 > = 7 > 10 8 > ; -1 >Emitted(95, 1) Source(36, 1) + SourceIndex(3) -2 >Emitted(95, 15) Source(36, 15) + SourceIndex(3) -3 >Emitted(95, 16) Source(36, 16) + SourceIndex(3) -4 >Emitted(95, 20) Source(36, 22) + SourceIndex(3) -5 >Emitted(95, 33) Source(36, 35) + SourceIndex(3) -6 >Emitted(95, 36) Source(36, 38) + SourceIndex(3) -7 >Emitted(95, 38) Source(36, 40) + SourceIndex(3) -8 >Emitted(95, 39) Source(36, 41) + SourceIndex(3) +1 >Emitted(96, 1) Source(36, 1) + SourceIndex(3) +2 >Emitted(96, 15) Source(36, 15) + SourceIndex(3) +3 >Emitted(96, 16) Source(36, 16) + SourceIndex(3) +4 >Emitted(96, 20) Source(36, 22) + SourceIndex(3) +5 >Emitted(96, 33) Source(36, 35) + SourceIndex(3) +6 >Emitted(96, 36) Source(36, 38) + SourceIndex(3) +7 >Emitted(96, 38) Source(36, 40) + SourceIndex(3) +8 >Emitted(96, 39) Source(36, 41) + SourceIndex(3) --- >>>/**@internal*/ var internalEnum; 1 > @@ -1681,11 +1683,11 @@ sourceFile:../second/second_part1.ts 3 > 4 > enum 5 > internalEnum { a, b, c } -1 >Emitted(96, 1) Source(37, 1) + SourceIndex(3) -2 >Emitted(96, 15) Source(37, 15) + SourceIndex(3) -3 >Emitted(96, 16) Source(37, 16) + SourceIndex(3) -4 >Emitted(96, 20) Source(37, 21) + SourceIndex(3) -5 >Emitted(96, 32) Source(37, 45) + SourceIndex(3) +1 >Emitted(97, 1) Source(37, 1) + SourceIndex(3) +2 >Emitted(97, 15) Source(37, 15) + SourceIndex(3) +3 >Emitted(97, 16) Source(37, 16) + SourceIndex(3) +4 >Emitted(97, 20) Source(37, 21) + SourceIndex(3) +5 >Emitted(97, 32) Source(37, 45) + SourceIndex(3) --- >>>(function (internalEnum) { 1 > @@ -1695,9 +1697,9 @@ sourceFile:../second/second_part1.ts 1 > 2 >enum 3 > internalEnum -1 >Emitted(97, 1) Source(37, 16) + SourceIndex(3) -2 >Emitted(97, 12) Source(37, 21) + SourceIndex(3) -3 >Emitted(97, 24) Source(37, 33) + SourceIndex(3) +1 >Emitted(98, 1) Source(37, 16) + SourceIndex(3) +2 >Emitted(98, 12) Source(37, 21) + SourceIndex(3) +3 >Emitted(98, 24) Source(37, 33) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^ @@ -1707,9 +1709,9 @@ sourceFile:../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(98, 5) Source(37, 36) + SourceIndex(3) -2 >Emitted(98, 46) Source(37, 37) + SourceIndex(3) -3 >Emitted(98, 47) Source(37, 37) + SourceIndex(3) +1->Emitted(99, 5) Source(37, 36) + SourceIndex(3) +2 >Emitted(99, 46) Source(37, 37) + SourceIndex(3) +3 >Emitted(99, 47) Source(37, 37) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^ @@ -1719,9 +1721,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(99, 5) Source(37, 39) + SourceIndex(3) -2 >Emitted(99, 46) Source(37, 40) + SourceIndex(3) -3 >Emitted(99, 47) Source(37, 40) + SourceIndex(3) +1->Emitted(100, 5) Source(37, 39) + SourceIndex(3) +2 >Emitted(100, 46) Source(37, 40) + SourceIndex(3) +3 >Emitted(100, 47) Source(37, 40) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^ @@ -1730,9 +1732,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(100, 5) Source(37, 42) + SourceIndex(3) -2 >Emitted(100, 46) Source(37, 43) + SourceIndex(3) -3 >Emitted(100, 47) Source(37, 43) + SourceIndex(3) +1->Emitted(101, 5) Source(37, 42) + SourceIndex(3) +2 >Emitted(101, 46) Source(37, 43) + SourceIndex(3) +3 >Emitted(101, 47) Source(37, 43) + SourceIndex(3) --- >>>})(internalEnum || (internalEnum = {})); 1 > @@ -1749,13 +1751,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalEnum 7 > { a, b, c } -1 >Emitted(101, 1) Source(37, 44) + SourceIndex(3) -2 >Emitted(101, 2) Source(37, 45) + SourceIndex(3) -3 >Emitted(101, 4) Source(37, 21) + SourceIndex(3) -4 >Emitted(101, 16) Source(37, 33) + SourceIndex(3) -5 >Emitted(101, 21) Source(37, 21) + SourceIndex(3) -6 >Emitted(101, 33) Source(37, 33) + SourceIndex(3) -7 >Emitted(101, 41) Source(37, 45) + SourceIndex(3) +1 >Emitted(102, 1) Source(37, 44) + SourceIndex(3) +2 >Emitted(102, 2) Source(37, 45) + SourceIndex(3) +3 >Emitted(102, 4) Source(37, 21) + SourceIndex(3) +4 >Emitted(102, 16) Source(37, 33) + SourceIndex(3) +5 >Emitted(102, 21) Source(37, 21) + SourceIndex(3) +6 >Emitted(102, 33) Source(37, 33) + SourceIndex(3) +7 >Emitted(102, 41) Source(37, 45) + SourceIndex(3) --- ------------------------------------------------------------------- emittedFile:/src/2/second-output.js @@ -1765,13 +1767,13 @@ sourceFile:../second/second_part2.ts 1 > 2 >^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(102, 1) Source(1, 1) + SourceIndex(4) +1 >Emitted(103, 1) Source(1, 1) + SourceIndex(4) --- >>> function C() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(103, 5) Source(1, 1) + SourceIndex(4) +1->Emitted(104, 5) Source(1, 1) + SourceIndex(4) --- >>> } 1->^^^^ @@ -1783,8 +1785,8 @@ sourceFile:../second/second_part2.ts > } > 2 > } -1->Emitted(104, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(104, 6) Source(5, 2) + SourceIndex(4) +1->Emitted(105, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(105, 6) Source(5, 2) + SourceIndex(4) --- >>> C.prototype.doSomething = function () { 1->^^^^ @@ -1794,9 +1796,9 @@ sourceFile:../second/second_part2.ts 1-> 2 > doSomething 3 > -1->Emitted(105, 5) Source(2, 5) + SourceIndex(4) -2 >Emitted(105, 28) Source(2, 16) + SourceIndex(4) -3 >Emitted(105, 31) Source(2, 5) + SourceIndex(4) +1->Emitted(106, 5) Source(2, 5) + SourceIndex(4) +2 >Emitted(106, 28) Source(2, 16) + SourceIndex(4) +3 >Emitted(106, 31) Source(2, 5) + SourceIndex(4) --- >>> console.log("something got done"); 1->^^^^^^^^ @@ -1816,14 +1818,14 @@ sourceFile:../second/second_part2.ts 6 > "something got done" 7 > ) 8 > ; -1->Emitted(106, 9) Source(3, 9) + SourceIndex(4) -2 >Emitted(106, 16) Source(3, 16) + SourceIndex(4) -3 >Emitted(106, 17) Source(3, 17) + SourceIndex(4) -4 >Emitted(106, 20) Source(3, 20) + SourceIndex(4) -5 >Emitted(106, 21) Source(3, 21) + SourceIndex(4) -6 >Emitted(106, 41) Source(3, 41) + SourceIndex(4) -7 >Emitted(106, 42) Source(3, 42) + SourceIndex(4) -8 >Emitted(106, 43) Source(3, 43) + SourceIndex(4) +1->Emitted(107, 9) Source(3, 9) + SourceIndex(4) +2 >Emitted(107, 16) Source(3, 16) + SourceIndex(4) +3 >Emitted(107, 17) Source(3, 17) + SourceIndex(4) +4 >Emitted(107, 20) Source(3, 20) + SourceIndex(4) +5 >Emitted(107, 21) Source(3, 21) + SourceIndex(4) +6 >Emitted(107, 41) Source(3, 41) + SourceIndex(4) +7 >Emitted(107, 42) Source(3, 42) + SourceIndex(4) +8 >Emitted(107, 43) Source(3, 43) + SourceIndex(4) --- >>> }; 1 >^^^^ @@ -1832,8 +1834,8 @@ sourceFile:../second/second_part2.ts 1 > > 2 > } -1 >Emitted(107, 5) Source(4, 5) + SourceIndex(4) -2 >Emitted(107, 6) Source(4, 6) + SourceIndex(4) +1 >Emitted(108, 5) Source(4, 5) + SourceIndex(4) +2 >Emitted(108, 6) Source(4, 6) + SourceIndex(4) --- >>> return C; 1->^^^^ @@ -1841,8 +1843,8 @@ sourceFile:../second/second_part2.ts 1-> > 2 > } -1->Emitted(108, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(108, 13) Source(5, 2) + SourceIndex(4) +1->Emitted(109, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(109, 13) Source(5, 2) + SourceIndex(4) --- >>>}()); 1 > @@ -1858,10 +1860,10 @@ sourceFile:../second/second_part2.ts > console.log("something got done"); > } > } -1 >Emitted(109, 1) Source(5, 1) + SourceIndex(4) -2 >Emitted(109, 2) Source(5, 2) + SourceIndex(4) -3 >Emitted(109, 2) Source(1, 1) + SourceIndex(4) -4 >Emitted(109, 6) Source(5, 2) + SourceIndex(4) +1 >Emitted(110, 1) Source(5, 1) + SourceIndex(4) +2 >Emitted(110, 2) Source(5, 2) + SourceIndex(4) +3 >Emitted(110, 2) Source(1, 1) + SourceIndex(4) +4 >Emitted(110, 6) Source(5, 2) + SourceIndex(4) --- >>>//# sourceMappingURL=second-output.js.map @@ -1890,7 +1892,7 @@ sourceFile:../second/second_part2.ts }, { "pos": 127, - "end": 3562, + "end": 3610, "kind": "text" } ] @@ -1972,7 +1974,7 @@ function f() { } ---------------------------------------------------------------------- -text: (127-3562) +text: (127-3610) var N; (function (N) { function f() { @@ -1983,8 +1985,9 @@ var N; var normalC = /** @class */ (function () { /**@internal*/ function normalC() { } - /**@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /**@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /**@internal*/ get: function () { return 10; }, /**@internal*/ set: function (val) { }, enumerable: false, @@ -2441,8 +2444,9 @@ var N; var normalC = /** @class */ (function () { /**@internal*/ function normalC() { } - /**@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /**@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /**@internal*/ get: function () { return 10; }, /**@internal*/ set: function (val) { }, enumerable: false, @@ -2538,7 +2542,7 @@ c.doSomething(); //# sourceMappingURL=third-output.js.map //// [/src/third/thirdjs/output/third-output.js.map] -{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} //// [/src/third/thirdjs/output/third-output.js.map.baseline.txt] =================================================================== @@ -2872,13 +2876,14 @@ sourceFile:../../../second/second_part1.ts >>> } 1 >^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 >constructor() { 2 > } 1 >Emitted(17, 5) Source(14, 36) + SourceIndex(3) 2 >Emitted(17, 6) Source(14, 37) + SourceIndex(3) --- ->>> /**@internal*/ normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> /**@internal*/ normalC_prototype.method = function () { }; 1->^^^^ 2 > ^^^^^^^^^^^^^^ 3 > ^ @@ -2895,15 +2900,15 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > method() { 7 > } -1->Emitted(18, 5) Source(16, 5) + SourceIndex(3) -2 >Emitted(18, 19) Source(16, 19) + SourceIndex(3) -3 >Emitted(18, 20) Source(16, 20) + SourceIndex(3) -4 >Emitted(18, 44) Source(16, 26) + SourceIndex(3) -5 >Emitted(18, 47) Source(16, 20) + SourceIndex(3) -6 >Emitted(18, 61) Source(16, 31) + SourceIndex(3) -7 >Emitted(18, 62) Source(16, 32) + SourceIndex(3) ---- ->>> Object.defineProperty(normalC.prototype, "c", { +1->Emitted(19, 5) Source(16, 5) + SourceIndex(3) +2 >Emitted(19, 19) Source(16, 19) + SourceIndex(3) +3 >Emitted(19, 20) Source(16, 20) + SourceIndex(3) +4 >Emitted(19, 44) Source(16, 26) + SourceIndex(3) +5 >Emitted(19, 47) Source(16, 20) + SourceIndex(3) +6 >Emitted(19, 61) Source(16, 31) + SourceIndex(3) +7 >Emitted(19, 62) Source(16, 32) + SourceIndex(3) +--- +>>> Object.defineProperty(normalC_prototype, "c", { 1 >^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -2912,9 +2917,9 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ 2 > get 3 > c -1 >Emitted(19, 5) Source(17, 20) + SourceIndex(3) -2 >Emitted(19, 27) Source(17, 24) + SourceIndex(3) -3 >Emitted(19, 49) Source(17, 25) + SourceIndex(3) +1 >Emitted(20, 5) Source(17, 20) + SourceIndex(3) +2 >Emitted(20, 27) Source(17, 24) + SourceIndex(3) +3 >Emitted(20, 49) Source(17, 25) + SourceIndex(3) --- >>> /**@internal*/ get: function () { return 10; }, 1->^^^^^^^^ @@ -2935,15 +2940,15 @@ sourceFile:../../../second/second_part1.ts 7 > ; 8 > 9 > } -1->Emitted(20, 9) Source(17, 5) + SourceIndex(3) -2 >Emitted(20, 23) Source(17, 19) + SourceIndex(3) -3 >Emitted(20, 29) Source(17, 20) + SourceIndex(3) -4 >Emitted(20, 43) Source(17, 30) + SourceIndex(3) -5 >Emitted(20, 50) Source(17, 37) + SourceIndex(3) -6 >Emitted(20, 52) Source(17, 39) + SourceIndex(3) -7 >Emitted(20, 53) Source(17, 40) + SourceIndex(3) -8 >Emitted(20, 54) Source(17, 41) + SourceIndex(3) -9 >Emitted(20, 55) Source(17, 42) + SourceIndex(3) +1->Emitted(21, 9) Source(17, 5) + SourceIndex(3) +2 >Emitted(21, 23) Source(17, 19) + SourceIndex(3) +3 >Emitted(21, 29) Source(17, 20) + SourceIndex(3) +4 >Emitted(21, 43) Source(17, 30) + SourceIndex(3) +5 >Emitted(21, 50) Source(17, 37) + SourceIndex(3) +6 >Emitted(21, 52) Source(17, 39) + SourceIndex(3) +7 >Emitted(21, 53) Source(17, 40) + SourceIndex(3) +8 >Emitted(21, 54) Source(17, 41) + SourceIndex(3) +9 >Emitted(21, 55) Source(17, 42) + SourceIndex(3) --- >>> /**@internal*/ set: function (val) { }, 1 >^^^^^^^^ @@ -2961,13 +2966,13 @@ sourceFile:../../../second/second_part1.ts 5 > val: number 6 > ) { 7 > } -1 >Emitted(21, 9) Source(18, 5) + SourceIndex(3) -2 >Emitted(21, 23) Source(18, 19) + SourceIndex(3) -3 >Emitted(21, 29) Source(18, 20) + SourceIndex(3) -4 >Emitted(21, 39) Source(18, 26) + SourceIndex(3) -5 >Emitted(21, 42) Source(18, 37) + SourceIndex(3) -6 >Emitted(21, 46) Source(18, 41) + SourceIndex(3) -7 >Emitted(21, 47) Source(18, 42) + SourceIndex(3) +1 >Emitted(22, 9) Source(18, 5) + SourceIndex(3) +2 >Emitted(22, 23) Source(18, 19) + SourceIndex(3) +3 >Emitted(22, 29) Source(18, 20) + SourceIndex(3) +4 >Emitted(22, 39) Source(18, 26) + SourceIndex(3) +5 >Emitted(22, 42) Source(18, 37) + SourceIndex(3) +6 >Emitted(22, 46) Source(18, 41) + SourceIndex(3) +7 >Emitted(22, 47) Source(18, 42) + SourceIndex(3) --- >>> enumerable: false, >>> configurable: true @@ -2975,7 +2980,7 @@ sourceFile:../../../second/second_part1.ts 1 >^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(24, 8) Source(17, 42) + SourceIndex(3) +1 >Emitted(25, 8) Source(17, 42) + SourceIndex(3) --- >>> return normalC; 1->^^^^ @@ -2984,8 +2989,8 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ set c(val: number) { } > 2 > } -1->Emitted(25, 5) Source(19, 1) + SourceIndex(3) -2 >Emitted(25, 19) Source(19, 2) + SourceIndex(3) +1->Emitted(26, 5) Source(19, 1) + SourceIndex(3) +2 >Emitted(26, 19) Source(19, 2) + SourceIndex(3) --- >>>}()); 1 > @@ -3003,10 +3008,10 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ get c() { return 10; } > /**@internal*/ set c(val: number) { } > } -1 >Emitted(26, 1) Source(19, 1) + SourceIndex(3) -2 >Emitted(26, 2) Source(19, 2) + SourceIndex(3) -3 >Emitted(26, 2) Source(13, 1) + SourceIndex(3) -4 >Emitted(26, 6) Source(19, 2) + SourceIndex(3) +1 >Emitted(27, 1) Source(19, 1) + SourceIndex(3) +2 >Emitted(27, 2) Source(19, 2) + SourceIndex(3) +3 >Emitted(27, 2) Source(13, 1) + SourceIndex(3) +4 >Emitted(27, 6) Source(19, 2) + SourceIndex(3) --- >>>var normalN; 1-> @@ -3028,10 +3033,10 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ export const internalConst = 10; > /**@internal*/ export enum internalEnum { a, b, c } > } -1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(27, 5) Source(20, 11) + SourceIndex(3) -3 >Emitted(27, 12) Source(20, 18) + SourceIndex(3) -4 >Emitted(27, 13) Source(29, 2) + SourceIndex(3) +1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(28, 5) Source(20, 11) + SourceIndex(3) +3 >Emitted(28, 12) Source(20, 18) + SourceIndex(3) +4 >Emitted(28, 13) Source(29, 2) + SourceIndex(3) --- >>>(function (normalN) { 1-> @@ -3041,9 +3046,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > normalN -1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(28, 12) Source(20, 11) + SourceIndex(3) -3 >Emitted(28, 19) Source(20, 18) + SourceIndex(3) +1->Emitted(29, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(29, 12) Source(20, 11) + SourceIndex(3) +3 >Emitted(29, 19) Source(20, 18) + SourceIndex(3) --- >>> /**@internal*/ var C = /** @class */ (function () { 1->^^^^ @@ -3054,15 +3059,15 @@ sourceFile:../../../second/second_part1.ts > 2 > /**@internal*/ 3 > -1->Emitted(29, 5) Source(21, 5) + SourceIndex(3) -2 >Emitted(29, 19) Source(21, 19) + SourceIndex(3) -3 >Emitted(29, 20) Source(21, 20) + SourceIndex(3) +1->Emitted(30, 5) Source(21, 5) + SourceIndex(3) +2 >Emitted(30, 19) Source(21, 19) + SourceIndex(3) +3 >Emitted(30, 20) Source(21, 20) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(30, 9) Source(21, 20) + SourceIndex(3) +1->Emitted(31, 9) Source(21, 20) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -3070,16 +3075,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(31, 9) Source(21, 37) + SourceIndex(3) -2 >Emitted(31, 10) Source(21, 38) + SourceIndex(3) +1->Emitted(32, 9) Source(21, 37) + SourceIndex(3) +2 >Emitted(32, 10) Source(21, 38) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(32, 9) Source(21, 37) + SourceIndex(3) -2 >Emitted(32, 17) Source(21, 38) + SourceIndex(3) +1->Emitted(33, 9) Source(21, 37) + SourceIndex(3) +2 >Emitted(33, 17) Source(21, 38) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -3091,10 +3096,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(33, 5) Source(21, 37) + SourceIndex(3) -2 >Emitted(33, 6) Source(21, 38) + SourceIndex(3) -3 >Emitted(33, 6) Source(21, 20) + SourceIndex(3) -4 >Emitted(33, 10) Source(21, 38) + SourceIndex(3) +1 >Emitted(34, 5) Source(21, 37) + SourceIndex(3) +2 >Emitted(34, 6) Source(21, 38) + SourceIndex(3) +3 >Emitted(34, 6) Source(21, 20) + SourceIndex(3) +4 >Emitted(34, 10) Source(21, 38) + SourceIndex(3) --- >>> normalN.C = C; 1->^^^^ @@ -3106,10 +3111,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > { } 4 > -1->Emitted(34, 5) Source(21, 33) + SourceIndex(3) -2 >Emitted(34, 14) Source(21, 34) + SourceIndex(3) -3 >Emitted(34, 18) Source(21, 38) + SourceIndex(3) -4 >Emitted(34, 19) Source(21, 38) + SourceIndex(3) +1->Emitted(35, 5) Source(21, 33) + SourceIndex(3) +2 >Emitted(35, 14) Source(21, 34) + SourceIndex(3) +3 >Emitted(35, 18) Source(21, 38) + SourceIndex(3) +4 >Emitted(35, 19) Source(21, 38) + SourceIndex(3) --- >>> /**@internal*/ function foo() { } 1->^^^^ @@ -3127,13 +3132,13 @@ sourceFile:../../../second/second_part1.ts 5 > foo 6 > () { 7 > } -1->Emitted(35, 5) Source(22, 5) + SourceIndex(3) -2 >Emitted(35, 19) Source(22, 19) + SourceIndex(3) -3 >Emitted(35, 20) Source(22, 20) + SourceIndex(3) -4 >Emitted(35, 29) Source(22, 36) + SourceIndex(3) -5 >Emitted(35, 32) Source(22, 39) + SourceIndex(3) -6 >Emitted(35, 37) Source(22, 43) + SourceIndex(3) -7 >Emitted(35, 38) Source(22, 44) + SourceIndex(3) +1->Emitted(36, 5) Source(22, 5) + SourceIndex(3) +2 >Emitted(36, 19) Source(22, 19) + SourceIndex(3) +3 >Emitted(36, 20) Source(22, 20) + SourceIndex(3) +4 >Emitted(36, 29) Source(22, 36) + SourceIndex(3) +5 >Emitted(36, 32) Source(22, 39) + SourceIndex(3) +6 >Emitted(36, 37) Source(22, 43) + SourceIndex(3) +7 >Emitted(36, 38) Source(22, 44) + SourceIndex(3) --- >>> normalN.foo = foo; 1 >^^^^ @@ -3145,10 +3150,10 @@ sourceFile:../../../second/second_part1.ts 2 > foo 3 > () {} 4 > -1 >Emitted(36, 5) Source(22, 36) + SourceIndex(3) -2 >Emitted(36, 16) Source(22, 39) + SourceIndex(3) -3 >Emitted(36, 22) Source(22, 44) + SourceIndex(3) -4 >Emitted(36, 23) Source(22, 44) + SourceIndex(3) +1 >Emitted(37, 5) Source(22, 36) + SourceIndex(3) +2 >Emitted(37, 16) Source(22, 39) + SourceIndex(3) +3 >Emitted(37, 22) Source(22, 44) + SourceIndex(3) +4 >Emitted(37, 23) Source(22, 44) + SourceIndex(3) --- >>> /**@internal*/ var someNamespace; 1->^^^^ @@ -3164,12 +3169,12 @@ sourceFile:../../../second/second_part1.ts 4 > export namespace 5 > someNamespace 6 > { export class C {} } -1->Emitted(37, 5) Source(23, 5) + SourceIndex(3) -2 >Emitted(37, 19) Source(23, 19) + SourceIndex(3) -3 >Emitted(37, 20) Source(23, 20) + SourceIndex(3) -4 >Emitted(37, 24) Source(23, 37) + SourceIndex(3) -5 >Emitted(37, 37) Source(23, 50) + SourceIndex(3) -6 >Emitted(37, 38) Source(23, 72) + SourceIndex(3) +1->Emitted(38, 5) Source(23, 5) + SourceIndex(3) +2 >Emitted(38, 19) Source(23, 19) + SourceIndex(3) +3 >Emitted(38, 20) Source(23, 20) + SourceIndex(3) +4 >Emitted(38, 24) Source(23, 37) + SourceIndex(3) +5 >Emitted(38, 37) Source(23, 50) + SourceIndex(3) +6 >Emitted(38, 38) Source(23, 72) + SourceIndex(3) --- >>> (function (someNamespace) { 1 >^^^^ @@ -3179,21 +3184,21 @@ sourceFile:../../../second/second_part1.ts 1 > 2 > export namespace 3 > someNamespace -1 >Emitted(38, 5) Source(23, 20) + SourceIndex(3) -2 >Emitted(38, 16) Source(23, 37) + SourceIndex(3) -3 >Emitted(38, 29) Source(23, 50) + SourceIndex(3) +1 >Emitted(39, 5) Source(23, 20) + SourceIndex(3) +2 >Emitted(39, 16) Source(23, 37) + SourceIndex(3) +3 >Emitted(39, 29) Source(23, 50) + SourceIndex(3) --- >>> var C = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(39, 9) Source(23, 53) + SourceIndex(3) +1->Emitted(40, 9) Source(23, 53) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(40, 13) Source(23, 53) + SourceIndex(3) +1->Emitted(41, 13) Source(23, 53) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -3201,16 +3206,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(41, 13) Source(23, 69) + SourceIndex(3) -2 >Emitted(41, 14) Source(23, 70) + SourceIndex(3) +1->Emitted(42, 13) Source(23, 69) + SourceIndex(3) +2 >Emitted(42, 14) Source(23, 70) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(42, 13) Source(23, 69) + SourceIndex(3) -2 >Emitted(42, 21) Source(23, 70) + SourceIndex(3) +1->Emitted(43, 13) Source(23, 69) + SourceIndex(3) +2 >Emitted(43, 21) Source(23, 70) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -3222,10 +3227,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(43, 9) Source(23, 69) + SourceIndex(3) -2 >Emitted(43, 10) Source(23, 70) + SourceIndex(3) -3 >Emitted(43, 10) Source(23, 53) + SourceIndex(3) -4 >Emitted(43, 14) Source(23, 70) + SourceIndex(3) +1 >Emitted(44, 9) Source(23, 69) + SourceIndex(3) +2 >Emitted(44, 10) Source(23, 70) + SourceIndex(3) +3 >Emitted(44, 10) Source(23, 53) + SourceIndex(3) +4 >Emitted(44, 14) Source(23, 70) + SourceIndex(3) --- >>> someNamespace.C = C; 1->^^^^^^^^ @@ -3237,10 +3242,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > {} 4 > -1->Emitted(44, 9) Source(23, 66) + SourceIndex(3) -2 >Emitted(44, 24) Source(23, 67) + SourceIndex(3) -3 >Emitted(44, 28) Source(23, 70) + SourceIndex(3) -4 >Emitted(44, 29) Source(23, 70) + SourceIndex(3) +1->Emitted(45, 9) Source(23, 66) + SourceIndex(3) +2 >Emitted(45, 24) Source(23, 67) + SourceIndex(3) +3 >Emitted(45, 28) Source(23, 70) + SourceIndex(3) +4 >Emitted(45, 29) Source(23, 70) + SourceIndex(3) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^ @@ -3261,15 +3266,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(45, 5) Source(23, 71) + SourceIndex(3) -2 >Emitted(45, 6) Source(23, 72) + SourceIndex(3) -3 >Emitted(45, 8) Source(23, 37) + SourceIndex(3) -4 >Emitted(45, 21) Source(23, 50) + SourceIndex(3) -5 >Emitted(45, 24) Source(23, 37) + SourceIndex(3) -6 >Emitted(45, 45) Source(23, 50) + SourceIndex(3) -7 >Emitted(45, 50) Source(23, 37) + SourceIndex(3) -8 >Emitted(45, 71) Source(23, 50) + SourceIndex(3) -9 >Emitted(45, 79) Source(23, 72) + SourceIndex(3) +1->Emitted(46, 5) Source(23, 71) + SourceIndex(3) +2 >Emitted(46, 6) Source(23, 72) + SourceIndex(3) +3 >Emitted(46, 8) Source(23, 37) + SourceIndex(3) +4 >Emitted(46, 21) Source(23, 50) + SourceIndex(3) +5 >Emitted(46, 24) Source(23, 37) + SourceIndex(3) +6 >Emitted(46, 45) Source(23, 50) + SourceIndex(3) +7 >Emitted(46, 50) Source(23, 37) + SourceIndex(3) +8 >Emitted(46, 71) Source(23, 50) + SourceIndex(3) +9 >Emitted(46, 79) Source(23, 72) + SourceIndex(3) --- >>> /**@internal*/ var someOther; 1 >^^^^ @@ -3285,12 +3290,12 @@ sourceFile:../../../second/second_part1.ts 4 > export namespace 5 > someOther 6 > .something { export class someClass {} } -1 >Emitted(46, 5) Source(24, 5) + SourceIndex(3) -2 >Emitted(46, 19) Source(24, 19) + SourceIndex(3) -3 >Emitted(46, 20) Source(24, 20) + SourceIndex(3) -4 >Emitted(46, 24) Source(24, 37) + SourceIndex(3) -5 >Emitted(46, 33) Source(24, 46) + SourceIndex(3) -6 >Emitted(46, 34) Source(24, 86) + SourceIndex(3) +1 >Emitted(47, 5) Source(24, 5) + SourceIndex(3) +2 >Emitted(47, 19) Source(24, 19) + SourceIndex(3) +3 >Emitted(47, 20) Source(24, 20) + SourceIndex(3) +4 >Emitted(47, 24) Source(24, 37) + SourceIndex(3) +5 >Emitted(47, 33) Source(24, 46) + SourceIndex(3) +6 >Emitted(47, 34) Source(24, 86) + SourceIndex(3) --- >>> (function (someOther) { 1 >^^^^ @@ -3299,9 +3304,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 > export namespace 3 > someOther -1 >Emitted(47, 5) Source(24, 20) + SourceIndex(3) -2 >Emitted(47, 16) Source(24, 37) + SourceIndex(3) -3 >Emitted(47, 25) Source(24, 46) + SourceIndex(3) +1 >Emitted(48, 5) Source(24, 20) + SourceIndex(3) +2 >Emitted(48, 16) Source(24, 37) + SourceIndex(3) +3 >Emitted(48, 25) Source(24, 46) + SourceIndex(3) --- >>> var something; 1 >^^^^^^^^ @@ -3313,10 +3318,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(48, 9) Source(24, 47) + SourceIndex(3) -2 >Emitted(48, 13) Source(24, 47) + SourceIndex(3) -3 >Emitted(48, 22) Source(24, 56) + SourceIndex(3) -4 >Emitted(48, 23) Source(24, 86) + SourceIndex(3) +1 >Emitted(49, 9) Source(24, 47) + SourceIndex(3) +2 >Emitted(49, 13) Source(24, 47) + SourceIndex(3) +3 >Emitted(49, 22) Source(24, 56) + SourceIndex(3) +4 >Emitted(49, 23) Source(24, 86) + SourceIndex(3) --- >>> (function (something) { 1->^^^^^^^^ @@ -3326,21 +3331,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(49, 9) Source(24, 47) + SourceIndex(3) -2 >Emitted(49, 20) Source(24, 47) + SourceIndex(3) -3 >Emitted(49, 29) Source(24, 56) + SourceIndex(3) +1->Emitted(50, 9) Source(24, 47) + SourceIndex(3) +2 >Emitted(50, 20) Source(24, 47) + SourceIndex(3) +3 >Emitted(50, 29) Source(24, 56) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(50, 13) Source(24, 59) + SourceIndex(3) +1->Emitted(51, 13) Source(24, 59) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(51, 17) Source(24, 59) + SourceIndex(3) +1->Emitted(52, 17) Source(24, 59) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -3348,16 +3353,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(52, 17) Source(24, 83) + SourceIndex(3) -2 >Emitted(52, 18) Source(24, 84) + SourceIndex(3) +1->Emitted(53, 17) Source(24, 83) + SourceIndex(3) +2 >Emitted(53, 18) Source(24, 84) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(53, 17) Source(24, 83) + SourceIndex(3) -2 >Emitted(53, 33) Source(24, 84) + SourceIndex(3) +1->Emitted(54, 17) Source(24, 83) + SourceIndex(3) +2 >Emitted(54, 33) Source(24, 84) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -3369,10 +3374,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(54, 13) Source(24, 83) + SourceIndex(3) -2 >Emitted(54, 14) Source(24, 84) + SourceIndex(3) -3 >Emitted(54, 14) Source(24, 59) + SourceIndex(3) -4 >Emitted(54, 18) Source(24, 84) + SourceIndex(3) +1 >Emitted(55, 13) Source(24, 83) + SourceIndex(3) +2 >Emitted(55, 14) Source(24, 84) + SourceIndex(3) +3 >Emitted(55, 14) Source(24, 59) + SourceIndex(3) +4 >Emitted(55, 18) Source(24, 84) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -3384,10 +3389,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(55, 13) Source(24, 72) + SourceIndex(3) -2 >Emitted(55, 32) Source(24, 81) + SourceIndex(3) -3 >Emitted(55, 44) Source(24, 84) + SourceIndex(3) -4 >Emitted(55, 45) Source(24, 84) + SourceIndex(3) +1->Emitted(56, 13) Source(24, 72) + SourceIndex(3) +2 >Emitted(56, 32) Source(24, 81) + SourceIndex(3) +3 >Emitted(56, 44) Source(24, 84) + SourceIndex(3) +4 >Emitted(56, 45) Source(24, 84) + SourceIndex(3) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^ @@ -3408,15 +3413,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(56, 9) Source(24, 85) + SourceIndex(3) -2 >Emitted(56, 10) Source(24, 86) + SourceIndex(3) -3 >Emitted(56, 12) Source(24, 47) + SourceIndex(3) -4 >Emitted(56, 21) Source(24, 56) + SourceIndex(3) -5 >Emitted(56, 24) Source(24, 47) + SourceIndex(3) -6 >Emitted(56, 43) Source(24, 56) + SourceIndex(3) -7 >Emitted(56, 48) Source(24, 47) + SourceIndex(3) -8 >Emitted(56, 67) Source(24, 56) + SourceIndex(3) -9 >Emitted(56, 75) Source(24, 86) + SourceIndex(3) +1->Emitted(57, 9) Source(24, 85) + SourceIndex(3) +2 >Emitted(57, 10) Source(24, 86) + SourceIndex(3) +3 >Emitted(57, 12) Source(24, 47) + SourceIndex(3) +4 >Emitted(57, 21) Source(24, 56) + SourceIndex(3) +5 >Emitted(57, 24) Source(24, 47) + SourceIndex(3) +6 >Emitted(57, 43) Source(24, 56) + SourceIndex(3) +7 >Emitted(57, 48) Source(24, 47) + SourceIndex(3) +8 >Emitted(57, 67) Source(24, 56) + SourceIndex(3) +9 >Emitted(57, 75) Source(24, 86) + SourceIndex(3) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^ @@ -3437,15 +3442,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(57, 5) Source(24, 85) + SourceIndex(3) -2 >Emitted(57, 6) Source(24, 86) + SourceIndex(3) -3 >Emitted(57, 8) Source(24, 37) + SourceIndex(3) -4 >Emitted(57, 17) Source(24, 46) + SourceIndex(3) -5 >Emitted(57, 20) Source(24, 37) + SourceIndex(3) -6 >Emitted(57, 37) Source(24, 46) + SourceIndex(3) -7 >Emitted(57, 42) Source(24, 37) + SourceIndex(3) -8 >Emitted(57, 59) Source(24, 46) + SourceIndex(3) -9 >Emitted(57, 67) Source(24, 86) + SourceIndex(3) +1 >Emitted(58, 5) Source(24, 85) + SourceIndex(3) +2 >Emitted(58, 6) Source(24, 86) + SourceIndex(3) +3 >Emitted(58, 8) Source(24, 37) + SourceIndex(3) +4 >Emitted(58, 17) Source(24, 46) + SourceIndex(3) +5 >Emitted(58, 20) Source(24, 37) + SourceIndex(3) +6 >Emitted(58, 37) Source(24, 46) + SourceIndex(3) +7 >Emitted(58, 42) Source(24, 37) + SourceIndex(3) +8 >Emitted(58, 59) Source(24, 46) + SourceIndex(3) +9 >Emitted(58, 67) Source(24, 86) + SourceIndex(3) --- >>> /**@internal*/ normalN.someImport = someNamespace.C; 1 >^^^^ @@ -3467,15 +3472,15 @@ sourceFile:../../../second/second_part1.ts 7 > . 8 > C 9 > ; -1 >Emitted(58, 5) Source(25, 5) + SourceIndex(3) -2 >Emitted(58, 19) Source(25, 19) + SourceIndex(3) -3 >Emitted(58, 20) Source(25, 34) + SourceIndex(3) -4 >Emitted(58, 38) Source(25, 44) + SourceIndex(3) -5 >Emitted(58, 41) Source(25, 47) + SourceIndex(3) -6 >Emitted(58, 54) Source(25, 60) + SourceIndex(3) -7 >Emitted(58, 55) Source(25, 61) + SourceIndex(3) -8 >Emitted(58, 56) Source(25, 62) + SourceIndex(3) -9 >Emitted(58, 57) Source(25, 63) + SourceIndex(3) +1 >Emitted(59, 5) Source(25, 5) + SourceIndex(3) +2 >Emitted(59, 19) Source(25, 19) + SourceIndex(3) +3 >Emitted(59, 20) Source(25, 34) + SourceIndex(3) +4 >Emitted(59, 38) Source(25, 44) + SourceIndex(3) +5 >Emitted(59, 41) Source(25, 47) + SourceIndex(3) +6 >Emitted(59, 54) Source(25, 60) + SourceIndex(3) +7 >Emitted(59, 55) Source(25, 61) + SourceIndex(3) +8 >Emitted(59, 56) Source(25, 62) + SourceIndex(3) +9 >Emitted(59, 57) Source(25, 63) + SourceIndex(3) --- >>> /**@internal*/ normalN.internalConst = 10; 1 >^^^^ @@ -3494,13 +3499,13 @@ sourceFile:../../../second/second_part1.ts 5 > = 6 > 10 7 > ; -1 >Emitted(59, 5) Source(27, 5) + SourceIndex(3) -2 >Emitted(59, 19) Source(27, 19) + SourceIndex(3) -3 >Emitted(59, 20) Source(27, 33) + SourceIndex(3) -4 >Emitted(59, 41) Source(27, 46) + SourceIndex(3) -5 >Emitted(59, 44) Source(27, 49) + SourceIndex(3) -6 >Emitted(59, 46) Source(27, 51) + SourceIndex(3) -7 >Emitted(59, 47) Source(27, 52) + SourceIndex(3) +1 >Emitted(60, 5) Source(27, 5) + SourceIndex(3) +2 >Emitted(60, 19) Source(27, 19) + SourceIndex(3) +3 >Emitted(60, 20) Source(27, 33) + SourceIndex(3) +4 >Emitted(60, 41) Source(27, 46) + SourceIndex(3) +5 >Emitted(60, 44) Source(27, 49) + SourceIndex(3) +6 >Emitted(60, 46) Source(27, 51) + SourceIndex(3) +7 >Emitted(60, 47) Source(27, 52) + SourceIndex(3) --- >>> /**@internal*/ var internalEnum; 1 >^^^^ @@ -3514,11 +3519,11 @@ sourceFile:../../../second/second_part1.ts 3 > 4 > export enum 5 > internalEnum { a, b, c } -1 >Emitted(60, 5) Source(28, 5) + SourceIndex(3) -2 >Emitted(60, 19) Source(28, 19) + SourceIndex(3) -3 >Emitted(60, 20) Source(28, 20) + SourceIndex(3) -4 >Emitted(60, 24) Source(28, 32) + SourceIndex(3) -5 >Emitted(60, 36) Source(28, 56) + SourceIndex(3) +1 >Emitted(61, 5) Source(28, 5) + SourceIndex(3) +2 >Emitted(61, 19) Source(28, 19) + SourceIndex(3) +3 >Emitted(61, 20) Source(28, 20) + SourceIndex(3) +4 >Emitted(61, 24) Source(28, 32) + SourceIndex(3) +5 >Emitted(61, 36) Source(28, 56) + SourceIndex(3) --- >>> (function (internalEnum) { 1 >^^^^ @@ -3528,9 +3533,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 > export enum 3 > internalEnum -1 >Emitted(61, 5) Source(28, 20) + SourceIndex(3) -2 >Emitted(61, 16) Source(28, 32) + SourceIndex(3) -3 >Emitted(61, 28) Source(28, 44) + SourceIndex(3) +1 >Emitted(62, 5) Source(28, 20) + SourceIndex(3) +2 >Emitted(62, 16) Source(28, 32) + SourceIndex(3) +3 >Emitted(62, 28) Source(28, 44) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -3540,9 +3545,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(62, 9) Source(28, 47) + SourceIndex(3) -2 >Emitted(62, 50) Source(28, 48) + SourceIndex(3) -3 >Emitted(62, 51) Source(28, 48) + SourceIndex(3) +1->Emitted(63, 9) Source(28, 47) + SourceIndex(3) +2 >Emitted(63, 50) Source(28, 48) + SourceIndex(3) +3 >Emitted(63, 51) Source(28, 48) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -3552,9 +3557,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(63, 9) Source(28, 50) + SourceIndex(3) -2 >Emitted(63, 50) Source(28, 51) + SourceIndex(3) -3 >Emitted(63, 51) Source(28, 51) + SourceIndex(3) +1->Emitted(64, 9) Source(28, 50) + SourceIndex(3) +2 >Emitted(64, 50) Source(28, 51) + SourceIndex(3) +3 >Emitted(64, 51) Source(28, 51) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -3564,9 +3569,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(64, 9) Source(28, 53) + SourceIndex(3) -2 >Emitted(64, 50) Source(28, 54) + SourceIndex(3) -3 >Emitted(64, 51) Source(28, 54) + SourceIndex(3) +1->Emitted(65, 9) Source(28, 53) + SourceIndex(3) +2 >Emitted(65, 50) Source(28, 54) + SourceIndex(3) +3 >Emitted(65, 51) Source(28, 54) + SourceIndex(3) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^ @@ -3587,15 +3592,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(65, 5) Source(28, 55) + SourceIndex(3) -2 >Emitted(65, 6) Source(28, 56) + SourceIndex(3) -3 >Emitted(65, 8) Source(28, 32) + SourceIndex(3) -4 >Emitted(65, 20) Source(28, 44) + SourceIndex(3) -5 >Emitted(65, 23) Source(28, 32) + SourceIndex(3) -6 >Emitted(65, 43) Source(28, 44) + SourceIndex(3) -7 >Emitted(65, 48) Source(28, 32) + SourceIndex(3) -8 >Emitted(65, 68) Source(28, 44) + SourceIndex(3) -9 >Emitted(65, 76) Source(28, 56) + SourceIndex(3) +1->Emitted(66, 5) Source(28, 55) + SourceIndex(3) +2 >Emitted(66, 6) Source(28, 56) + SourceIndex(3) +3 >Emitted(66, 8) Source(28, 32) + SourceIndex(3) +4 >Emitted(66, 20) Source(28, 44) + SourceIndex(3) +5 >Emitted(66, 23) Source(28, 32) + SourceIndex(3) +6 >Emitted(66, 43) Source(28, 44) + SourceIndex(3) +7 >Emitted(66, 48) Source(28, 32) + SourceIndex(3) +8 >Emitted(66, 68) Source(28, 44) + SourceIndex(3) +9 >Emitted(66, 76) Source(28, 56) + SourceIndex(3) --- >>>})(normalN || (normalN = {})); 1 > @@ -3623,13 +3628,13 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ export const internalConst = 10; > /**@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(66, 1) Source(29, 1) + SourceIndex(3) -2 >Emitted(66, 2) Source(29, 2) + SourceIndex(3) -3 >Emitted(66, 4) Source(20, 11) + SourceIndex(3) -4 >Emitted(66, 11) Source(20, 18) + SourceIndex(3) -5 >Emitted(66, 16) Source(20, 11) + SourceIndex(3) -6 >Emitted(66, 23) Source(20, 18) + SourceIndex(3) -7 >Emitted(66, 31) Source(29, 2) + SourceIndex(3) +1 >Emitted(67, 1) Source(29, 1) + SourceIndex(3) +2 >Emitted(67, 2) Source(29, 2) + SourceIndex(3) +3 >Emitted(67, 4) Source(20, 11) + SourceIndex(3) +4 >Emitted(67, 11) Source(20, 18) + SourceIndex(3) +5 >Emitted(67, 16) Source(20, 11) + SourceIndex(3) +6 >Emitted(67, 23) Source(20, 18) + SourceIndex(3) +7 >Emitted(67, 31) Source(29, 2) + SourceIndex(3) --- >>>/**@internal*/ var internalC = /** @class */ (function () { 1-> @@ -3640,15 +3645,15 @@ sourceFile:../../../second/second_part1.ts > 2 >/**@internal*/ 3 > -1->Emitted(67, 1) Source(30, 1) + SourceIndex(3) -2 >Emitted(67, 15) Source(30, 15) + SourceIndex(3) -3 >Emitted(67, 16) Source(30, 16) + SourceIndex(3) +1->Emitted(68, 1) Source(30, 1) + SourceIndex(3) +2 >Emitted(68, 15) Source(30, 15) + SourceIndex(3) +3 >Emitted(68, 16) Source(30, 16) + SourceIndex(3) --- >>> function internalC() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(68, 5) Source(30, 16) + SourceIndex(3) +1->Emitted(69, 5) Source(30, 16) + SourceIndex(3) --- >>> } 1->^^^^ @@ -3656,16 +3661,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->class internalC { 2 > } -1->Emitted(69, 5) Source(30, 33) + SourceIndex(3) -2 >Emitted(69, 6) Source(30, 34) + SourceIndex(3) +1->Emitted(70, 5) Source(30, 33) + SourceIndex(3) +2 >Emitted(70, 6) Source(30, 34) + SourceIndex(3) --- >>> return internalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(70, 5) Source(30, 33) + SourceIndex(3) -2 >Emitted(70, 21) Source(30, 34) + SourceIndex(3) +1->Emitted(71, 5) Source(30, 33) + SourceIndex(3) +2 >Emitted(71, 21) Source(30, 34) + SourceIndex(3) --- >>>}()); 1 > @@ -3677,10 +3682,10 @@ sourceFile:../../../second/second_part1.ts 2 >} 3 > 4 > class internalC {} -1 >Emitted(71, 1) Source(30, 33) + SourceIndex(3) -2 >Emitted(71, 2) Source(30, 34) + SourceIndex(3) -3 >Emitted(71, 2) Source(30, 16) + SourceIndex(3) -4 >Emitted(71, 6) Source(30, 34) + SourceIndex(3) +1 >Emitted(72, 1) Source(30, 33) + SourceIndex(3) +2 >Emitted(72, 2) Source(30, 34) + SourceIndex(3) +3 >Emitted(72, 2) Source(30, 16) + SourceIndex(3) +4 >Emitted(72, 6) Source(30, 34) + SourceIndex(3) --- >>>/**@internal*/ function internalfoo() { } 1-> @@ -3698,13 +3703,13 @@ sourceFile:../../../second/second_part1.ts 5 > internalfoo 6 > () { 7 > } -1->Emitted(72, 1) Source(31, 1) + SourceIndex(3) -2 >Emitted(72, 15) Source(31, 15) + SourceIndex(3) -3 >Emitted(72, 16) Source(31, 16) + SourceIndex(3) -4 >Emitted(72, 25) Source(31, 25) + SourceIndex(3) -5 >Emitted(72, 36) Source(31, 36) + SourceIndex(3) -6 >Emitted(72, 41) Source(31, 40) + SourceIndex(3) -7 >Emitted(72, 42) Source(31, 41) + SourceIndex(3) +1->Emitted(73, 1) Source(31, 1) + SourceIndex(3) +2 >Emitted(73, 15) Source(31, 15) + SourceIndex(3) +3 >Emitted(73, 16) Source(31, 16) + SourceIndex(3) +4 >Emitted(73, 25) Source(31, 25) + SourceIndex(3) +5 >Emitted(73, 36) Source(31, 36) + SourceIndex(3) +6 >Emitted(73, 41) Source(31, 40) + SourceIndex(3) +7 >Emitted(73, 42) Source(31, 41) + SourceIndex(3) --- >>>/**@internal*/ var internalNamespace; 1 > @@ -3720,12 +3725,12 @@ sourceFile:../../../second/second_part1.ts 4 > namespace 5 > internalNamespace 6 > { export class someClass {} } -1 >Emitted(73, 1) Source(32, 1) + SourceIndex(3) -2 >Emitted(73, 15) Source(32, 15) + SourceIndex(3) -3 >Emitted(73, 16) Source(32, 16) + SourceIndex(3) -4 >Emitted(73, 20) Source(32, 26) + SourceIndex(3) -5 >Emitted(73, 37) Source(32, 43) + SourceIndex(3) -6 >Emitted(73, 38) Source(32, 73) + SourceIndex(3) +1 >Emitted(74, 1) Source(32, 1) + SourceIndex(3) +2 >Emitted(74, 15) Source(32, 15) + SourceIndex(3) +3 >Emitted(74, 16) Source(32, 16) + SourceIndex(3) +4 >Emitted(74, 20) Source(32, 26) + SourceIndex(3) +5 >Emitted(74, 37) Source(32, 43) + SourceIndex(3) +6 >Emitted(74, 38) Source(32, 73) + SourceIndex(3) --- >>>(function (internalNamespace) { 1 > @@ -3735,21 +3740,21 @@ sourceFile:../../../second/second_part1.ts 1 > 2 >namespace 3 > internalNamespace -1 >Emitted(74, 1) Source(32, 16) + SourceIndex(3) -2 >Emitted(74, 12) Source(32, 26) + SourceIndex(3) -3 >Emitted(74, 29) Source(32, 43) + SourceIndex(3) +1 >Emitted(75, 1) Source(32, 16) + SourceIndex(3) +2 >Emitted(75, 12) Source(32, 26) + SourceIndex(3) +3 >Emitted(75, 29) Source(32, 43) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(75, 5) Source(32, 46) + SourceIndex(3) +1->Emitted(76, 5) Source(32, 46) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(76, 9) Source(32, 46) + SourceIndex(3) +1->Emitted(77, 9) Source(32, 46) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -3757,16 +3762,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(77, 9) Source(32, 70) + SourceIndex(3) -2 >Emitted(77, 10) Source(32, 71) + SourceIndex(3) +1->Emitted(78, 9) Source(32, 70) + SourceIndex(3) +2 >Emitted(78, 10) Source(32, 71) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(78, 9) Source(32, 70) + SourceIndex(3) -2 >Emitted(78, 25) Source(32, 71) + SourceIndex(3) +1->Emitted(79, 9) Source(32, 70) + SourceIndex(3) +2 >Emitted(79, 25) Source(32, 71) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -3778,10 +3783,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(79, 5) Source(32, 70) + SourceIndex(3) -2 >Emitted(79, 6) Source(32, 71) + SourceIndex(3) -3 >Emitted(79, 6) Source(32, 46) + SourceIndex(3) -4 >Emitted(79, 10) Source(32, 71) + SourceIndex(3) +1 >Emitted(80, 5) Source(32, 70) + SourceIndex(3) +2 >Emitted(80, 6) Source(32, 71) + SourceIndex(3) +3 >Emitted(80, 6) Source(32, 46) + SourceIndex(3) +4 >Emitted(80, 10) Source(32, 71) + SourceIndex(3) --- >>> internalNamespace.someClass = someClass; 1->^^^^ @@ -3793,10 +3798,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(80, 5) Source(32, 59) + SourceIndex(3) -2 >Emitted(80, 32) Source(32, 68) + SourceIndex(3) -3 >Emitted(80, 44) Source(32, 71) + SourceIndex(3) -4 >Emitted(80, 45) Source(32, 71) + SourceIndex(3) +1->Emitted(81, 5) Source(32, 59) + SourceIndex(3) +2 >Emitted(81, 32) Source(32, 68) + SourceIndex(3) +3 >Emitted(81, 44) Source(32, 71) + SourceIndex(3) +4 >Emitted(81, 45) Source(32, 71) + SourceIndex(3) --- >>>})(internalNamespace || (internalNamespace = {})); 1-> @@ -3813,13 +3818,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalNamespace 7 > { export class someClass {} } -1->Emitted(81, 1) Source(32, 72) + SourceIndex(3) -2 >Emitted(81, 2) Source(32, 73) + SourceIndex(3) -3 >Emitted(81, 4) Source(32, 26) + SourceIndex(3) -4 >Emitted(81, 21) Source(32, 43) + SourceIndex(3) -5 >Emitted(81, 26) Source(32, 26) + SourceIndex(3) -6 >Emitted(81, 43) Source(32, 43) + SourceIndex(3) -7 >Emitted(81, 51) Source(32, 73) + SourceIndex(3) +1->Emitted(82, 1) Source(32, 72) + SourceIndex(3) +2 >Emitted(82, 2) Source(32, 73) + SourceIndex(3) +3 >Emitted(82, 4) Source(32, 26) + SourceIndex(3) +4 >Emitted(82, 21) Source(32, 43) + SourceIndex(3) +5 >Emitted(82, 26) Source(32, 26) + SourceIndex(3) +6 >Emitted(82, 43) Source(32, 43) + SourceIndex(3) +7 >Emitted(82, 51) Source(32, 73) + SourceIndex(3) --- >>>/**@internal*/ var internalOther; 1 > @@ -3835,12 +3840,12 @@ sourceFile:../../../second/second_part1.ts 4 > namespace 5 > internalOther 6 > .something { export class someClass {} } -1 >Emitted(82, 1) Source(33, 1) + SourceIndex(3) -2 >Emitted(82, 15) Source(33, 15) + SourceIndex(3) -3 >Emitted(82, 16) Source(33, 16) + SourceIndex(3) -4 >Emitted(82, 20) Source(33, 26) + SourceIndex(3) -5 >Emitted(82, 33) Source(33, 39) + SourceIndex(3) -6 >Emitted(82, 34) Source(33, 79) + SourceIndex(3) +1 >Emitted(83, 1) Source(33, 1) + SourceIndex(3) +2 >Emitted(83, 15) Source(33, 15) + SourceIndex(3) +3 >Emitted(83, 16) Source(33, 16) + SourceIndex(3) +4 >Emitted(83, 20) Source(33, 26) + SourceIndex(3) +5 >Emitted(83, 33) Source(33, 39) + SourceIndex(3) +6 >Emitted(83, 34) Source(33, 79) + SourceIndex(3) --- >>>(function (internalOther) { 1 > @@ -3849,9 +3854,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 >namespace 3 > internalOther -1 >Emitted(83, 1) Source(33, 16) + SourceIndex(3) -2 >Emitted(83, 12) Source(33, 26) + SourceIndex(3) -3 >Emitted(83, 25) Source(33, 39) + SourceIndex(3) +1 >Emitted(84, 1) Source(33, 16) + SourceIndex(3) +2 >Emitted(84, 12) Source(33, 26) + SourceIndex(3) +3 >Emitted(84, 25) Source(33, 39) + SourceIndex(3) --- >>> var something; 1 >^^^^ @@ -3863,10 +3868,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(84, 5) Source(33, 40) + SourceIndex(3) -2 >Emitted(84, 9) Source(33, 40) + SourceIndex(3) -3 >Emitted(84, 18) Source(33, 49) + SourceIndex(3) -4 >Emitted(84, 19) Source(33, 79) + SourceIndex(3) +1 >Emitted(85, 5) Source(33, 40) + SourceIndex(3) +2 >Emitted(85, 9) Source(33, 40) + SourceIndex(3) +3 >Emitted(85, 18) Source(33, 49) + SourceIndex(3) +4 >Emitted(85, 19) Source(33, 79) + SourceIndex(3) --- >>> (function (something) { 1->^^^^ @@ -3876,21 +3881,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(85, 5) Source(33, 40) + SourceIndex(3) -2 >Emitted(85, 16) Source(33, 40) + SourceIndex(3) -3 >Emitted(85, 25) Source(33, 49) + SourceIndex(3) +1->Emitted(86, 5) Source(33, 40) + SourceIndex(3) +2 >Emitted(86, 16) Source(33, 40) + SourceIndex(3) +3 >Emitted(86, 25) Source(33, 49) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(86, 9) Source(33, 52) + SourceIndex(3) +1->Emitted(87, 9) Source(33, 52) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(87, 13) Source(33, 52) + SourceIndex(3) +1->Emitted(88, 13) Source(33, 52) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -3898,16 +3903,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(88, 13) Source(33, 76) + SourceIndex(3) -2 >Emitted(88, 14) Source(33, 77) + SourceIndex(3) +1->Emitted(89, 13) Source(33, 76) + SourceIndex(3) +2 >Emitted(89, 14) Source(33, 77) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(89, 13) Source(33, 76) + SourceIndex(3) -2 >Emitted(89, 29) Source(33, 77) + SourceIndex(3) +1->Emitted(90, 13) Source(33, 76) + SourceIndex(3) +2 >Emitted(90, 29) Source(33, 77) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -3919,10 +3924,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(90, 9) Source(33, 76) + SourceIndex(3) -2 >Emitted(90, 10) Source(33, 77) + SourceIndex(3) -3 >Emitted(90, 10) Source(33, 52) + SourceIndex(3) -4 >Emitted(90, 14) Source(33, 77) + SourceIndex(3) +1 >Emitted(91, 9) Source(33, 76) + SourceIndex(3) +2 >Emitted(91, 10) Source(33, 77) + SourceIndex(3) +3 >Emitted(91, 10) Source(33, 52) + SourceIndex(3) +4 >Emitted(91, 14) Source(33, 77) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^ @@ -3934,10 +3939,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(91, 9) Source(33, 65) + SourceIndex(3) -2 >Emitted(91, 28) Source(33, 74) + SourceIndex(3) -3 >Emitted(91, 40) Source(33, 77) + SourceIndex(3) -4 >Emitted(91, 41) Source(33, 77) + SourceIndex(3) +1->Emitted(92, 9) Source(33, 65) + SourceIndex(3) +2 >Emitted(92, 28) Source(33, 74) + SourceIndex(3) +3 >Emitted(92, 40) Source(33, 77) + SourceIndex(3) +4 >Emitted(92, 41) Source(33, 77) + SourceIndex(3) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^ @@ -3958,15 +3963,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(92, 5) Source(33, 78) + SourceIndex(3) -2 >Emitted(92, 6) Source(33, 79) + SourceIndex(3) -3 >Emitted(92, 8) Source(33, 40) + SourceIndex(3) -4 >Emitted(92, 17) Source(33, 49) + SourceIndex(3) -5 >Emitted(92, 20) Source(33, 40) + SourceIndex(3) -6 >Emitted(92, 43) Source(33, 49) + SourceIndex(3) -7 >Emitted(92, 48) Source(33, 40) + SourceIndex(3) -8 >Emitted(92, 71) Source(33, 49) + SourceIndex(3) -9 >Emitted(92, 79) Source(33, 79) + SourceIndex(3) +1->Emitted(93, 5) Source(33, 78) + SourceIndex(3) +2 >Emitted(93, 6) Source(33, 79) + SourceIndex(3) +3 >Emitted(93, 8) Source(33, 40) + SourceIndex(3) +4 >Emitted(93, 17) Source(33, 49) + SourceIndex(3) +5 >Emitted(93, 20) Source(33, 40) + SourceIndex(3) +6 >Emitted(93, 43) Source(33, 49) + SourceIndex(3) +7 >Emitted(93, 48) Source(33, 40) + SourceIndex(3) +8 >Emitted(93, 71) Source(33, 49) + SourceIndex(3) +9 >Emitted(93, 79) Source(33, 79) + SourceIndex(3) --- >>>})(internalOther || (internalOther = {})); 1 > @@ -3984,13 +3989,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalOther 7 > .something { export class someClass {} } -1 >Emitted(93, 1) Source(33, 78) + SourceIndex(3) -2 >Emitted(93, 2) Source(33, 79) + SourceIndex(3) -3 >Emitted(93, 4) Source(33, 26) + SourceIndex(3) -4 >Emitted(93, 17) Source(33, 39) + SourceIndex(3) -5 >Emitted(93, 22) Source(33, 26) + SourceIndex(3) -6 >Emitted(93, 35) Source(33, 39) + SourceIndex(3) -7 >Emitted(93, 43) Source(33, 79) + SourceIndex(3) +1 >Emitted(94, 1) Source(33, 78) + SourceIndex(3) +2 >Emitted(94, 2) Source(33, 79) + SourceIndex(3) +3 >Emitted(94, 4) Source(33, 26) + SourceIndex(3) +4 >Emitted(94, 17) Source(33, 39) + SourceIndex(3) +5 >Emitted(94, 22) Source(33, 26) + SourceIndex(3) +6 >Emitted(94, 35) Source(33, 39) + SourceIndex(3) +7 >Emitted(94, 43) Source(33, 79) + SourceIndex(3) --- >>>/**@internal*/ var internalImport = internalNamespace.someClass; 1-> @@ -4014,16 +4019,16 @@ sourceFile:../../../second/second_part1.ts 8 > . 9 > someClass 10> ; -1->Emitted(94, 1) Source(34, 1) + SourceIndex(3) -2 >Emitted(94, 15) Source(34, 15) + SourceIndex(3) -3 >Emitted(94, 16) Source(34, 16) + SourceIndex(3) -4 >Emitted(94, 20) Source(34, 23) + SourceIndex(3) -5 >Emitted(94, 34) Source(34, 37) + SourceIndex(3) -6 >Emitted(94, 37) Source(34, 40) + SourceIndex(3) -7 >Emitted(94, 54) Source(34, 57) + SourceIndex(3) -8 >Emitted(94, 55) Source(34, 58) + SourceIndex(3) -9 >Emitted(94, 64) Source(34, 67) + SourceIndex(3) -10>Emitted(94, 65) Source(34, 68) + SourceIndex(3) +1->Emitted(95, 1) Source(34, 1) + SourceIndex(3) +2 >Emitted(95, 15) Source(34, 15) + SourceIndex(3) +3 >Emitted(95, 16) Source(34, 16) + SourceIndex(3) +4 >Emitted(95, 20) Source(34, 23) + SourceIndex(3) +5 >Emitted(95, 34) Source(34, 37) + SourceIndex(3) +6 >Emitted(95, 37) Source(34, 40) + SourceIndex(3) +7 >Emitted(95, 54) Source(34, 57) + SourceIndex(3) +8 >Emitted(95, 55) Source(34, 58) + SourceIndex(3) +9 >Emitted(95, 64) Source(34, 67) + SourceIndex(3) +10>Emitted(95, 65) Source(34, 68) + SourceIndex(3) --- >>>/**@internal*/ var internalConst = 10; 1 > @@ -4044,14 +4049,14 @@ sourceFile:../../../second/second_part1.ts 6 > = 7 > 10 8 > ; -1 >Emitted(95, 1) Source(36, 1) + SourceIndex(3) -2 >Emitted(95, 15) Source(36, 15) + SourceIndex(3) -3 >Emitted(95, 16) Source(36, 16) + SourceIndex(3) -4 >Emitted(95, 20) Source(36, 22) + SourceIndex(3) -5 >Emitted(95, 33) Source(36, 35) + SourceIndex(3) -6 >Emitted(95, 36) Source(36, 38) + SourceIndex(3) -7 >Emitted(95, 38) Source(36, 40) + SourceIndex(3) -8 >Emitted(95, 39) Source(36, 41) + SourceIndex(3) +1 >Emitted(96, 1) Source(36, 1) + SourceIndex(3) +2 >Emitted(96, 15) Source(36, 15) + SourceIndex(3) +3 >Emitted(96, 16) Source(36, 16) + SourceIndex(3) +4 >Emitted(96, 20) Source(36, 22) + SourceIndex(3) +5 >Emitted(96, 33) Source(36, 35) + SourceIndex(3) +6 >Emitted(96, 36) Source(36, 38) + SourceIndex(3) +7 >Emitted(96, 38) Source(36, 40) + SourceIndex(3) +8 >Emitted(96, 39) Source(36, 41) + SourceIndex(3) --- >>>/**@internal*/ var internalEnum; 1 > @@ -4065,11 +4070,11 @@ sourceFile:../../../second/second_part1.ts 3 > 4 > enum 5 > internalEnum { a, b, c } -1 >Emitted(96, 1) Source(37, 1) + SourceIndex(3) -2 >Emitted(96, 15) Source(37, 15) + SourceIndex(3) -3 >Emitted(96, 16) Source(37, 16) + SourceIndex(3) -4 >Emitted(96, 20) Source(37, 21) + SourceIndex(3) -5 >Emitted(96, 32) Source(37, 45) + SourceIndex(3) +1 >Emitted(97, 1) Source(37, 1) + SourceIndex(3) +2 >Emitted(97, 15) Source(37, 15) + SourceIndex(3) +3 >Emitted(97, 16) Source(37, 16) + SourceIndex(3) +4 >Emitted(97, 20) Source(37, 21) + SourceIndex(3) +5 >Emitted(97, 32) Source(37, 45) + SourceIndex(3) --- >>>(function (internalEnum) { 1 > @@ -4079,9 +4084,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 >enum 3 > internalEnum -1 >Emitted(97, 1) Source(37, 16) + SourceIndex(3) -2 >Emitted(97, 12) Source(37, 21) + SourceIndex(3) -3 >Emitted(97, 24) Source(37, 33) + SourceIndex(3) +1 >Emitted(98, 1) Source(37, 16) + SourceIndex(3) +2 >Emitted(98, 12) Source(37, 21) + SourceIndex(3) +3 >Emitted(98, 24) Source(37, 33) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^ @@ -4091,9 +4096,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(98, 5) Source(37, 36) + SourceIndex(3) -2 >Emitted(98, 46) Source(37, 37) + SourceIndex(3) -3 >Emitted(98, 47) Source(37, 37) + SourceIndex(3) +1->Emitted(99, 5) Source(37, 36) + SourceIndex(3) +2 >Emitted(99, 46) Source(37, 37) + SourceIndex(3) +3 >Emitted(99, 47) Source(37, 37) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^ @@ -4103,9 +4108,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(99, 5) Source(37, 39) + SourceIndex(3) -2 >Emitted(99, 46) Source(37, 40) + SourceIndex(3) -3 >Emitted(99, 47) Source(37, 40) + SourceIndex(3) +1->Emitted(100, 5) Source(37, 39) + SourceIndex(3) +2 >Emitted(100, 46) Source(37, 40) + SourceIndex(3) +3 >Emitted(100, 47) Source(37, 40) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^ @@ -4114,9 +4119,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(100, 5) Source(37, 42) + SourceIndex(3) -2 >Emitted(100, 46) Source(37, 43) + SourceIndex(3) -3 >Emitted(100, 47) Source(37, 43) + SourceIndex(3) +1->Emitted(101, 5) Source(37, 42) + SourceIndex(3) +2 >Emitted(101, 46) Source(37, 43) + SourceIndex(3) +3 >Emitted(101, 47) Source(37, 43) + SourceIndex(3) --- >>>})(internalEnum || (internalEnum = {})); 1 > @@ -4133,13 +4138,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalEnum 7 > { a, b, c } -1 >Emitted(101, 1) Source(37, 44) + SourceIndex(3) -2 >Emitted(101, 2) Source(37, 45) + SourceIndex(3) -3 >Emitted(101, 4) Source(37, 21) + SourceIndex(3) -4 >Emitted(101, 16) Source(37, 33) + SourceIndex(3) -5 >Emitted(101, 21) Source(37, 21) + SourceIndex(3) -6 >Emitted(101, 33) Source(37, 33) + SourceIndex(3) -7 >Emitted(101, 41) Source(37, 45) + SourceIndex(3) +1 >Emitted(102, 1) Source(37, 44) + SourceIndex(3) +2 >Emitted(102, 2) Source(37, 45) + SourceIndex(3) +3 >Emitted(102, 4) Source(37, 21) + SourceIndex(3) +4 >Emitted(102, 16) Source(37, 33) + SourceIndex(3) +5 >Emitted(102, 21) Source(37, 21) + SourceIndex(3) +6 >Emitted(102, 33) Source(37, 33) + SourceIndex(3) +7 >Emitted(102, 41) Source(37, 45) + SourceIndex(3) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -4149,13 +4154,13 @@ sourceFile:../../../second/second_part2.ts 1 > 2 >^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(102, 1) Source(1, 1) + SourceIndex(4) +1 >Emitted(103, 1) Source(1, 1) + SourceIndex(4) --- >>> function C() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(103, 5) Source(1, 1) + SourceIndex(4) +1->Emitted(104, 5) Source(1, 1) + SourceIndex(4) --- >>> } 1->^^^^ @@ -4167,8 +4172,8 @@ sourceFile:../../../second/second_part2.ts > } > 2 > } -1->Emitted(104, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(104, 6) Source(5, 2) + SourceIndex(4) +1->Emitted(105, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(105, 6) Source(5, 2) + SourceIndex(4) --- >>> C.prototype.doSomething = function () { 1->^^^^ @@ -4178,9 +4183,9 @@ sourceFile:../../../second/second_part2.ts 1-> 2 > doSomething 3 > -1->Emitted(105, 5) Source(2, 5) + SourceIndex(4) -2 >Emitted(105, 28) Source(2, 16) + SourceIndex(4) -3 >Emitted(105, 31) Source(2, 5) + SourceIndex(4) +1->Emitted(106, 5) Source(2, 5) + SourceIndex(4) +2 >Emitted(106, 28) Source(2, 16) + SourceIndex(4) +3 >Emitted(106, 31) Source(2, 5) + SourceIndex(4) --- >>> console.log("something got done"); 1->^^^^^^^^ @@ -4200,14 +4205,14 @@ sourceFile:../../../second/second_part2.ts 6 > "something got done" 7 > ) 8 > ; -1->Emitted(106, 9) Source(3, 9) + SourceIndex(4) -2 >Emitted(106, 16) Source(3, 16) + SourceIndex(4) -3 >Emitted(106, 17) Source(3, 17) + SourceIndex(4) -4 >Emitted(106, 20) Source(3, 20) + SourceIndex(4) -5 >Emitted(106, 21) Source(3, 21) + SourceIndex(4) -6 >Emitted(106, 41) Source(3, 41) + SourceIndex(4) -7 >Emitted(106, 42) Source(3, 42) + SourceIndex(4) -8 >Emitted(106, 43) Source(3, 43) + SourceIndex(4) +1->Emitted(107, 9) Source(3, 9) + SourceIndex(4) +2 >Emitted(107, 16) Source(3, 16) + SourceIndex(4) +3 >Emitted(107, 17) Source(3, 17) + SourceIndex(4) +4 >Emitted(107, 20) Source(3, 20) + SourceIndex(4) +5 >Emitted(107, 21) Source(3, 21) + SourceIndex(4) +6 >Emitted(107, 41) Source(3, 41) + SourceIndex(4) +7 >Emitted(107, 42) Source(3, 42) + SourceIndex(4) +8 >Emitted(107, 43) Source(3, 43) + SourceIndex(4) --- >>> }; 1 >^^^^ @@ -4216,8 +4221,8 @@ sourceFile:../../../second/second_part2.ts 1 > > 2 > } -1 >Emitted(107, 5) Source(4, 5) + SourceIndex(4) -2 >Emitted(107, 6) Source(4, 6) + SourceIndex(4) +1 >Emitted(108, 5) Source(4, 5) + SourceIndex(4) +2 >Emitted(108, 6) Source(4, 6) + SourceIndex(4) --- >>> return C; 1->^^^^ @@ -4225,8 +4230,8 @@ sourceFile:../../../second/second_part2.ts 1-> > 2 > } -1->Emitted(108, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(108, 13) Source(5, 2) + SourceIndex(4) +1->Emitted(109, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(109, 13) Source(5, 2) + SourceIndex(4) --- >>>}()); 1 > @@ -4242,10 +4247,10 @@ sourceFile:../../../second/second_part2.ts > console.log("something got done"); > } > } -1 >Emitted(109, 1) Source(5, 1) + SourceIndex(4) -2 >Emitted(109, 2) Source(5, 2) + SourceIndex(4) -3 >Emitted(109, 2) Source(1, 1) + SourceIndex(4) -4 >Emitted(109, 6) Source(5, 2) + SourceIndex(4) +1 >Emitted(110, 1) Source(5, 1) + SourceIndex(4) +2 >Emitted(110, 2) Source(5, 2) + SourceIndex(4) +3 >Emitted(110, 2) Source(1, 1) + SourceIndex(4) +4 >Emitted(110, 6) Source(5, 2) + SourceIndex(4) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -4269,14 +4274,14 @@ sourceFile:../../third_part1.ts 6 > C 7 > () 8 > ; -1->Emitted(110, 1) Source(1, 1) + SourceIndex(5) -2 >Emitted(110, 5) Source(1, 5) + SourceIndex(5) -3 >Emitted(110, 6) Source(1, 6) + SourceIndex(5) -4 >Emitted(110, 9) Source(1, 9) + SourceIndex(5) -5 >Emitted(110, 13) Source(1, 13) + SourceIndex(5) -6 >Emitted(110, 14) Source(1, 14) + SourceIndex(5) -7 >Emitted(110, 16) Source(1, 16) + SourceIndex(5) -8 >Emitted(110, 17) Source(1, 17) + SourceIndex(5) +1->Emitted(111, 1) Source(1, 1) + SourceIndex(5) +2 >Emitted(111, 5) Source(1, 5) + SourceIndex(5) +3 >Emitted(111, 6) Source(1, 6) + SourceIndex(5) +4 >Emitted(111, 9) Source(1, 9) + SourceIndex(5) +5 >Emitted(111, 13) Source(1, 13) + SourceIndex(5) +6 >Emitted(111, 14) Source(1, 14) + SourceIndex(5) +7 >Emitted(111, 16) Source(1, 16) + SourceIndex(5) +8 >Emitted(111, 17) Source(1, 17) + SourceIndex(5) --- >>>c.doSomething(); 1-> @@ -4293,12 +4298,12 @@ sourceFile:../../third_part1.ts 4 > doSomething 5 > () 6 > ; -1->Emitted(111, 1) Source(2, 1) + SourceIndex(5) -2 >Emitted(111, 2) Source(2, 2) + SourceIndex(5) -3 >Emitted(111, 3) Source(2, 3) + SourceIndex(5) -4 >Emitted(111, 14) Source(2, 14) + SourceIndex(5) -5 >Emitted(111, 16) Source(2, 16) + SourceIndex(5) -6 >Emitted(111, 17) Source(2, 17) + SourceIndex(5) +1->Emitted(112, 1) Source(2, 1) + SourceIndex(5) +2 >Emitted(112, 2) Source(2, 2) + SourceIndex(5) +3 >Emitted(112, 3) Source(2, 3) + SourceIndex(5) +4 >Emitted(112, 14) Source(2, 14) + SourceIndex(5) +5 >Emitted(112, 16) Source(2, 16) + SourceIndex(5) +6 >Emitted(112, 17) Source(2, 17) + SourceIndex(5) --- >>>//# sourceMappingURL=third-output.js.map @@ -4313,20 +4318,20 @@ sourceFile:../../third_part1.ts "sections": [ { "pos": 0, - "end": 3562, + "end": 3610, "kind": "prepend", "data": "../../../2/second-output.js", "texts": [ { "pos": 0, - "end": 3562, + "end": 3610, "kind": "text" } ] }, { - "pos": 3562, - "end": 3598, + "pos": 3610, + "end": 3646, "kind": "text" } ] @@ -4361,9 +4366,9 @@ sourceFile:../../third_part1.ts ====================================================================== File:: /src/third/thirdjs/output/third-output.js ---------------------------------------------------------------------- -prepend: (0-3562):: ../../../2/second-output.js texts:: 1 +prepend: (0-3610):: ../../../2/second-output.js texts:: 1 >>-------------------------------------------------------------------- -text: (0-3562) +text: (0-3610) var s = "Hello, world"; console.log(s); console.log(s); @@ -4381,8 +4386,9 @@ var N; var normalC = /** @class */ (function () { /**@internal*/ function normalC() { } - /**@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /**@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /**@internal*/ get: function () { return 10; }, /**@internal*/ set: function (val) { }, enumerable: false, @@ -4475,7 +4481,7 @@ var C = /** @class */ (function () { }()); ---------------------------------------------------------------------- -text: (3562-3598) +text: (3610-3646) var c = new C(); c.doSomething(); diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-with-comments-emit-enabled.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-with-comments-emit-enabled.js index 134c1ad2a1599..79c1b3413ff89 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-with-comments-emit-enabled.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-jsdoc-style-with-comments-emit-enabled.js @@ -310,8 +310,9 @@ var N; var normalC = /** @class */ (function () { /**@internal*/ function normalC() { } - /**@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /**@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /**@internal*/ get: function () { return 10; }, /**@internal*/ set: function (val) { }, enumerable: false, @@ -407,7 +408,7 @@ c.doSomething(); //# sourceMappingURL=third-output.js.map //// [/src/third/thirdjs/output/third-output.js.map] -{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} //// [/src/third/thirdjs/output/third-output.js.map.baseline.txt] =================================================================== @@ -741,13 +742,14 @@ sourceFile:../../../second/second_part1.ts >>> } 1 >^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 >constructor() { 2 > } 1 >Emitted(17, 5) Source(14, 36) + SourceIndex(3) 2 >Emitted(17, 6) Source(14, 37) + SourceIndex(3) --- ->>> /**@internal*/ normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> /**@internal*/ normalC_prototype.method = function () { }; 1->^^^^ 2 > ^^^^^^^^^^^^^^ 3 > ^ @@ -764,15 +766,15 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > method() { 7 > } -1->Emitted(18, 5) Source(16, 5) + SourceIndex(3) -2 >Emitted(18, 19) Source(16, 19) + SourceIndex(3) -3 >Emitted(18, 20) Source(16, 20) + SourceIndex(3) -4 >Emitted(18, 44) Source(16, 26) + SourceIndex(3) -5 >Emitted(18, 47) Source(16, 20) + SourceIndex(3) -6 >Emitted(18, 61) Source(16, 31) + SourceIndex(3) -7 >Emitted(18, 62) Source(16, 32) + SourceIndex(3) ---- ->>> Object.defineProperty(normalC.prototype, "c", { +1->Emitted(19, 5) Source(16, 5) + SourceIndex(3) +2 >Emitted(19, 19) Source(16, 19) + SourceIndex(3) +3 >Emitted(19, 20) Source(16, 20) + SourceIndex(3) +4 >Emitted(19, 44) Source(16, 26) + SourceIndex(3) +5 >Emitted(19, 47) Source(16, 20) + SourceIndex(3) +6 >Emitted(19, 61) Source(16, 31) + SourceIndex(3) +7 >Emitted(19, 62) Source(16, 32) + SourceIndex(3) +--- +>>> Object.defineProperty(normalC_prototype, "c", { 1 >^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -781,9 +783,9 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ 2 > get 3 > c -1 >Emitted(19, 5) Source(17, 20) + SourceIndex(3) -2 >Emitted(19, 27) Source(17, 24) + SourceIndex(3) -3 >Emitted(19, 49) Source(17, 25) + SourceIndex(3) +1 >Emitted(20, 5) Source(17, 20) + SourceIndex(3) +2 >Emitted(20, 27) Source(17, 24) + SourceIndex(3) +3 >Emitted(20, 49) Source(17, 25) + SourceIndex(3) --- >>> /**@internal*/ get: function () { return 10; }, 1->^^^^^^^^ @@ -804,15 +806,15 @@ sourceFile:../../../second/second_part1.ts 7 > ; 8 > 9 > } -1->Emitted(20, 9) Source(17, 5) + SourceIndex(3) -2 >Emitted(20, 23) Source(17, 19) + SourceIndex(3) -3 >Emitted(20, 29) Source(17, 20) + SourceIndex(3) -4 >Emitted(20, 43) Source(17, 30) + SourceIndex(3) -5 >Emitted(20, 50) Source(17, 37) + SourceIndex(3) -6 >Emitted(20, 52) Source(17, 39) + SourceIndex(3) -7 >Emitted(20, 53) Source(17, 40) + SourceIndex(3) -8 >Emitted(20, 54) Source(17, 41) + SourceIndex(3) -9 >Emitted(20, 55) Source(17, 42) + SourceIndex(3) +1->Emitted(21, 9) Source(17, 5) + SourceIndex(3) +2 >Emitted(21, 23) Source(17, 19) + SourceIndex(3) +3 >Emitted(21, 29) Source(17, 20) + SourceIndex(3) +4 >Emitted(21, 43) Source(17, 30) + SourceIndex(3) +5 >Emitted(21, 50) Source(17, 37) + SourceIndex(3) +6 >Emitted(21, 52) Source(17, 39) + SourceIndex(3) +7 >Emitted(21, 53) Source(17, 40) + SourceIndex(3) +8 >Emitted(21, 54) Source(17, 41) + SourceIndex(3) +9 >Emitted(21, 55) Source(17, 42) + SourceIndex(3) --- >>> /**@internal*/ set: function (val) { }, 1 >^^^^^^^^ @@ -830,13 +832,13 @@ sourceFile:../../../second/second_part1.ts 5 > val: number 6 > ) { 7 > } -1 >Emitted(21, 9) Source(18, 5) + SourceIndex(3) -2 >Emitted(21, 23) Source(18, 19) + SourceIndex(3) -3 >Emitted(21, 29) Source(18, 20) + SourceIndex(3) -4 >Emitted(21, 39) Source(18, 26) + SourceIndex(3) -5 >Emitted(21, 42) Source(18, 37) + SourceIndex(3) -6 >Emitted(21, 46) Source(18, 41) + SourceIndex(3) -7 >Emitted(21, 47) Source(18, 42) + SourceIndex(3) +1 >Emitted(22, 9) Source(18, 5) + SourceIndex(3) +2 >Emitted(22, 23) Source(18, 19) + SourceIndex(3) +3 >Emitted(22, 29) Source(18, 20) + SourceIndex(3) +4 >Emitted(22, 39) Source(18, 26) + SourceIndex(3) +5 >Emitted(22, 42) Source(18, 37) + SourceIndex(3) +6 >Emitted(22, 46) Source(18, 41) + SourceIndex(3) +7 >Emitted(22, 47) Source(18, 42) + SourceIndex(3) --- >>> enumerable: false, >>> configurable: true @@ -844,7 +846,7 @@ sourceFile:../../../second/second_part1.ts 1 >^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(24, 8) Source(17, 42) + SourceIndex(3) +1 >Emitted(25, 8) Source(17, 42) + SourceIndex(3) --- >>> return normalC; 1->^^^^ @@ -853,8 +855,8 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ set c(val: number) { } > 2 > } -1->Emitted(25, 5) Source(19, 1) + SourceIndex(3) -2 >Emitted(25, 19) Source(19, 2) + SourceIndex(3) +1->Emitted(26, 5) Source(19, 1) + SourceIndex(3) +2 >Emitted(26, 19) Source(19, 2) + SourceIndex(3) --- >>>}()); 1 > @@ -872,10 +874,10 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ get c() { return 10; } > /**@internal*/ set c(val: number) { } > } -1 >Emitted(26, 1) Source(19, 1) + SourceIndex(3) -2 >Emitted(26, 2) Source(19, 2) + SourceIndex(3) -3 >Emitted(26, 2) Source(13, 1) + SourceIndex(3) -4 >Emitted(26, 6) Source(19, 2) + SourceIndex(3) +1 >Emitted(27, 1) Source(19, 1) + SourceIndex(3) +2 >Emitted(27, 2) Source(19, 2) + SourceIndex(3) +3 >Emitted(27, 2) Source(13, 1) + SourceIndex(3) +4 >Emitted(27, 6) Source(19, 2) + SourceIndex(3) --- >>>var normalN; 1-> @@ -897,10 +899,10 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ export const internalConst = 10; > /**@internal*/ export enum internalEnum { a, b, c } > } -1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(27, 5) Source(20, 11) + SourceIndex(3) -3 >Emitted(27, 12) Source(20, 18) + SourceIndex(3) -4 >Emitted(27, 13) Source(29, 2) + SourceIndex(3) +1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(28, 5) Source(20, 11) + SourceIndex(3) +3 >Emitted(28, 12) Source(20, 18) + SourceIndex(3) +4 >Emitted(28, 13) Source(29, 2) + SourceIndex(3) --- >>>(function (normalN) { 1-> @@ -910,9 +912,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > normalN -1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(28, 12) Source(20, 11) + SourceIndex(3) -3 >Emitted(28, 19) Source(20, 18) + SourceIndex(3) +1->Emitted(29, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(29, 12) Source(20, 11) + SourceIndex(3) +3 >Emitted(29, 19) Source(20, 18) + SourceIndex(3) --- >>> /**@internal*/ var C = /** @class */ (function () { 1->^^^^ @@ -923,15 +925,15 @@ sourceFile:../../../second/second_part1.ts > 2 > /**@internal*/ 3 > -1->Emitted(29, 5) Source(21, 5) + SourceIndex(3) -2 >Emitted(29, 19) Source(21, 19) + SourceIndex(3) -3 >Emitted(29, 20) Source(21, 20) + SourceIndex(3) +1->Emitted(30, 5) Source(21, 5) + SourceIndex(3) +2 >Emitted(30, 19) Source(21, 19) + SourceIndex(3) +3 >Emitted(30, 20) Source(21, 20) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(30, 9) Source(21, 20) + SourceIndex(3) +1->Emitted(31, 9) Source(21, 20) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -939,16 +941,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(31, 9) Source(21, 37) + SourceIndex(3) -2 >Emitted(31, 10) Source(21, 38) + SourceIndex(3) +1->Emitted(32, 9) Source(21, 37) + SourceIndex(3) +2 >Emitted(32, 10) Source(21, 38) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(32, 9) Source(21, 37) + SourceIndex(3) -2 >Emitted(32, 17) Source(21, 38) + SourceIndex(3) +1->Emitted(33, 9) Source(21, 37) + SourceIndex(3) +2 >Emitted(33, 17) Source(21, 38) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -960,10 +962,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(33, 5) Source(21, 37) + SourceIndex(3) -2 >Emitted(33, 6) Source(21, 38) + SourceIndex(3) -3 >Emitted(33, 6) Source(21, 20) + SourceIndex(3) -4 >Emitted(33, 10) Source(21, 38) + SourceIndex(3) +1 >Emitted(34, 5) Source(21, 37) + SourceIndex(3) +2 >Emitted(34, 6) Source(21, 38) + SourceIndex(3) +3 >Emitted(34, 6) Source(21, 20) + SourceIndex(3) +4 >Emitted(34, 10) Source(21, 38) + SourceIndex(3) --- >>> normalN.C = C; 1->^^^^ @@ -975,10 +977,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > { } 4 > -1->Emitted(34, 5) Source(21, 33) + SourceIndex(3) -2 >Emitted(34, 14) Source(21, 34) + SourceIndex(3) -3 >Emitted(34, 18) Source(21, 38) + SourceIndex(3) -4 >Emitted(34, 19) Source(21, 38) + SourceIndex(3) +1->Emitted(35, 5) Source(21, 33) + SourceIndex(3) +2 >Emitted(35, 14) Source(21, 34) + SourceIndex(3) +3 >Emitted(35, 18) Source(21, 38) + SourceIndex(3) +4 >Emitted(35, 19) Source(21, 38) + SourceIndex(3) --- >>> /**@internal*/ function foo() { } 1->^^^^ @@ -996,13 +998,13 @@ sourceFile:../../../second/second_part1.ts 5 > foo 6 > () { 7 > } -1->Emitted(35, 5) Source(22, 5) + SourceIndex(3) -2 >Emitted(35, 19) Source(22, 19) + SourceIndex(3) -3 >Emitted(35, 20) Source(22, 20) + SourceIndex(3) -4 >Emitted(35, 29) Source(22, 36) + SourceIndex(3) -5 >Emitted(35, 32) Source(22, 39) + SourceIndex(3) -6 >Emitted(35, 37) Source(22, 43) + SourceIndex(3) -7 >Emitted(35, 38) Source(22, 44) + SourceIndex(3) +1->Emitted(36, 5) Source(22, 5) + SourceIndex(3) +2 >Emitted(36, 19) Source(22, 19) + SourceIndex(3) +3 >Emitted(36, 20) Source(22, 20) + SourceIndex(3) +4 >Emitted(36, 29) Source(22, 36) + SourceIndex(3) +5 >Emitted(36, 32) Source(22, 39) + SourceIndex(3) +6 >Emitted(36, 37) Source(22, 43) + SourceIndex(3) +7 >Emitted(36, 38) Source(22, 44) + SourceIndex(3) --- >>> normalN.foo = foo; 1 >^^^^ @@ -1014,10 +1016,10 @@ sourceFile:../../../second/second_part1.ts 2 > foo 3 > () {} 4 > -1 >Emitted(36, 5) Source(22, 36) + SourceIndex(3) -2 >Emitted(36, 16) Source(22, 39) + SourceIndex(3) -3 >Emitted(36, 22) Source(22, 44) + SourceIndex(3) -4 >Emitted(36, 23) Source(22, 44) + SourceIndex(3) +1 >Emitted(37, 5) Source(22, 36) + SourceIndex(3) +2 >Emitted(37, 16) Source(22, 39) + SourceIndex(3) +3 >Emitted(37, 22) Source(22, 44) + SourceIndex(3) +4 >Emitted(37, 23) Source(22, 44) + SourceIndex(3) --- >>> /**@internal*/ var someNamespace; 1->^^^^ @@ -1033,12 +1035,12 @@ sourceFile:../../../second/second_part1.ts 4 > export namespace 5 > someNamespace 6 > { export class C {} } -1->Emitted(37, 5) Source(23, 5) + SourceIndex(3) -2 >Emitted(37, 19) Source(23, 19) + SourceIndex(3) -3 >Emitted(37, 20) Source(23, 20) + SourceIndex(3) -4 >Emitted(37, 24) Source(23, 37) + SourceIndex(3) -5 >Emitted(37, 37) Source(23, 50) + SourceIndex(3) -6 >Emitted(37, 38) Source(23, 72) + SourceIndex(3) +1->Emitted(38, 5) Source(23, 5) + SourceIndex(3) +2 >Emitted(38, 19) Source(23, 19) + SourceIndex(3) +3 >Emitted(38, 20) Source(23, 20) + SourceIndex(3) +4 >Emitted(38, 24) Source(23, 37) + SourceIndex(3) +5 >Emitted(38, 37) Source(23, 50) + SourceIndex(3) +6 >Emitted(38, 38) Source(23, 72) + SourceIndex(3) --- >>> (function (someNamespace) { 1 >^^^^ @@ -1048,21 +1050,21 @@ sourceFile:../../../second/second_part1.ts 1 > 2 > export namespace 3 > someNamespace -1 >Emitted(38, 5) Source(23, 20) + SourceIndex(3) -2 >Emitted(38, 16) Source(23, 37) + SourceIndex(3) -3 >Emitted(38, 29) Source(23, 50) + SourceIndex(3) +1 >Emitted(39, 5) Source(23, 20) + SourceIndex(3) +2 >Emitted(39, 16) Source(23, 37) + SourceIndex(3) +3 >Emitted(39, 29) Source(23, 50) + SourceIndex(3) --- >>> var C = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(39, 9) Source(23, 53) + SourceIndex(3) +1->Emitted(40, 9) Source(23, 53) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(40, 13) Source(23, 53) + SourceIndex(3) +1->Emitted(41, 13) Source(23, 53) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -1070,16 +1072,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(41, 13) Source(23, 69) + SourceIndex(3) -2 >Emitted(41, 14) Source(23, 70) + SourceIndex(3) +1->Emitted(42, 13) Source(23, 69) + SourceIndex(3) +2 >Emitted(42, 14) Source(23, 70) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(42, 13) Source(23, 69) + SourceIndex(3) -2 >Emitted(42, 21) Source(23, 70) + SourceIndex(3) +1->Emitted(43, 13) Source(23, 69) + SourceIndex(3) +2 >Emitted(43, 21) Source(23, 70) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -1091,10 +1093,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(43, 9) Source(23, 69) + SourceIndex(3) -2 >Emitted(43, 10) Source(23, 70) + SourceIndex(3) -3 >Emitted(43, 10) Source(23, 53) + SourceIndex(3) -4 >Emitted(43, 14) Source(23, 70) + SourceIndex(3) +1 >Emitted(44, 9) Source(23, 69) + SourceIndex(3) +2 >Emitted(44, 10) Source(23, 70) + SourceIndex(3) +3 >Emitted(44, 10) Source(23, 53) + SourceIndex(3) +4 >Emitted(44, 14) Source(23, 70) + SourceIndex(3) --- >>> someNamespace.C = C; 1->^^^^^^^^ @@ -1106,10 +1108,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > {} 4 > -1->Emitted(44, 9) Source(23, 66) + SourceIndex(3) -2 >Emitted(44, 24) Source(23, 67) + SourceIndex(3) -3 >Emitted(44, 28) Source(23, 70) + SourceIndex(3) -4 >Emitted(44, 29) Source(23, 70) + SourceIndex(3) +1->Emitted(45, 9) Source(23, 66) + SourceIndex(3) +2 >Emitted(45, 24) Source(23, 67) + SourceIndex(3) +3 >Emitted(45, 28) Source(23, 70) + SourceIndex(3) +4 >Emitted(45, 29) Source(23, 70) + SourceIndex(3) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^ @@ -1130,15 +1132,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(45, 5) Source(23, 71) + SourceIndex(3) -2 >Emitted(45, 6) Source(23, 72) + SourceIndex(3) -3 >Emitted(45, 8) Source(23, 37) + SourceIndex(3) -4 >Emitted(45, 21) Source(23, 50) + SourceIndex(3) -5 >Emitted(45, 24) Source(23, 37) + SourceIndex(3) -6 >Emitted(45, 45) Source(23, 50) + SourceIndex(3) -7 >Emitted(45, 50) Source(23, 37) + SourceIndex(3) -8 >Emitted(45, 71) Source(23, 50) + SourceIndex(3) -9 >Emitted(45, 79) Source(23, 72) + SourceIndex(3) +1->Emitted(46, 5) Source(23, 71) + SourceIndex(3) +2 >Emitted(46, 6) Source(23, 72) + SourceIndex(3) +3 >Emitted(46, 8) Source(23, 37) + SourceIndex(3) +4 >Emitted(46, 21) Source(23, 50) + SourceIndex(3) +5 >Emitted(46, 24) Source(23, 37) + SourceIndex(3) +6 >Emitted(46, 45) Source(23, 50) + SourceIndex(3) +7 >Emitted(46, 50) Source(23, 37) + SourceIndex(3) +8 >Emitted(46, 71) Source(23, 50) + SourceIndex(3) +9 >Emitted(46, 79) Source(23, 72) + SourceIndex(3) --- >>> /**@internal*/ var someOther; 1 >^^^^ @@ -1154,12 +1156,12 @@ sourceFile:../../../second/second_part1.ts 4 > export namespace 5 > someOther 6 > .something { export class someClass {} } -1 >Emitted(46, 5) Source(24, 5) + SourceIndex(3) -2 >Emitted(46, 19) Source(24, 19) + SourceIndex(3) -3 >Emitted(46, 20) Source(24, 20) + SourceIndex(3) -4 >Emitted(46, 24) Source(24, 37) + SourceIndex(3) -5 >Emitted(46, 33) Source(24, 46) + SourceIndex(3) -6 >Emitted(46, 34) Source(24, 86) + SourceIndex(3) +1 >Emitted(47, 5) Source(24, 5) + SourceIndex(3) +2 >Emitted(47, 19) Source(24, 19) + SourceIndex(3) +3 >Emitted(47, 20) Source(24, 20) + SourceIndex(3) +4 >Emitted(47, 24) Source(24, 37) + SourceIndex(3) +5 >Emitted(47, 33) Source(24, 46) + SourceIndex(3) +6 >Emitted(47, 34) Source(24, 86) + SourceIndex(3) --- >>> (function (someOther) { 1 >^^^^ @@ -1168,9 +1170,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 > export namespace 3 > someOther -1 >Emitted(47, 5) Source(24, 20) + SourceIndex(3) -2 >Emitted(47, 16) Source(24, 37) + SourceIndex(3) -3 >Emitted(47, 25) Source(24, 46) + SourceIndex(3) +1 >Emitted(48, 5) Source(24, 20) + SourceIndex(3) +2 >Emitted(48, 16) Source(24, 37) + SourceIndex(3) +3 >Emitted(48, 25) Source(24, 46) + SourceIndex(3) --- >>> var something; 1 >^^^^^^^^ @@ -1182,10 +1184,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(48, 9) Source(24, 47) + SourceIndex(3) -2 >Emitted(48, 13) Source(24, 47) + SourceIndex(3) -3 >Emitted(48, 22) Source(24, 56) + SourceIndex(3) -4 >Emitted(48, 23) Source(24, 86) + SourceIndex(3) +1 >Emitted(49, 9) Source(24, 47) + SourceIndex(3) +2 >Emitted(49, 13) Source(24, 47) + SourceIndex(3) +3 >Emitted(49, 22) Source(24, 56) + SourceIndex(3) +4 >Emitted(49, 23) Source(24, 86) + SourceIndex(3) --- >>> (function (something) { 1->^^^^^^^^ @@ -1195,21 +1197,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(49, 9) Source(24, 47) + SourceIndex(3) -2 >Emitted(49, 20) Source(24, 47) + SourceIndex(3) -3 >Emitted(49, 29) Source(24, 56) + SourceIndex(3) +1->Emitted(50, 9) Source(24, 47) + SourceIndex(3) +2 >Emitted(50, 20) Source(24, 47) + SourceIndex(3) +3 >Emitted(50, 29) Source(24, 56) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(50, 13) Source(24, 59) + SourceIndex(3) +1->Emitted(51, 13) Source(24, 59) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(51, 17) Source(24, 59) + SourceIndex(3) +1->Emitted(52, 17) Source(24, 59) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -1217,16 +1219,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(52, 17) Source(24, 83) + SourceIndex(3) -2 >Emitted(52, 18) Source(24, 84) + SourceIndex(3) +1->Emitted(53, 17) Source(24, 83) + SourceIndex(3) +2 >Emitted(53, 18) Source(24, 84) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(53, 17) Source(24, 83) + SourceIndex(3) -2 >Emitted(53, 33) Source(24, 84) + SourceIndex(3) +1->Emitted(54, 17) Source(24, 83) + SourceIndex(3) +2 >Emitted(54, 33) Source(24, 84) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -1238,10 +1240,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(54, 13) Source(24, 83) + SourceIndex(3) -2 >Emitted(54, 14) Source(24, 84) + SourceIndex(3) -3 >Emitted(54, 14) Source(24, 59) + SourceIndex(3) -4 >Emitted(54, 18) Source(24, 84) + SourceIndex(3) +1 >Emitted(55, 13) Source(24, 83) + SourceIndex(3) +2 >Emitted(55, 14) Source(24, 84) + SourceIndex(3) +3 >Emitted(55, 14) Source(24, 59) + SourceIndex(3) +4 >Emitted(55, 18) Source(24, 84) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -1253,10 +1255,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(55, 13) Source(24, 72) + SourceIndex(3) -2 >Emitted(55, 32) Source(24, 81) + SourceIndex(3) -3 >Emitted(55, 44) Source(24, 84) + SourceIndex(3) -4 >Emitted(55, 45) Source(24, 84) + SourceIndex(3) +1->Emitted(56, 13) Source(24, 72) + SourceIndex(3) +2 >Emitted(56, 32) Source(24, 81) + SourceIndex(3) +3 >Emitted(56, 44) Source(24, 84) + SourceIndex(3) +4 >Emitted(56, 45) Source(24, 84) + SourceIndex(3) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^ @@ -1277,15 +1279,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(56, 9) Source(24, 85) + SourceIndex(3) -2 >Emitted(56, 10) Source(24, 86) + SourceIndex(3) -3 >Emitted(56, 12) Source(24, 47) + SourceIndex(3) -4 >Emitted(56, 21) Source(24, 56) + SourceIndex(3) -5 >Emitted(56, 24) Source(24, 47) + SourceIndex(3) -6 >Emitted(56, 43) Source(24, 56) + SourceIndex(3) -7 >Emitted(56, 48) Source(24, 47) + SourceIndex(3) -8 >Emitted(56, 67) Source(24, 56) + SourceIndex(3) -9 >Emitted(56, 75) Source(24, 86) + SourceIndex(3) +1->Emitted(57, 9) Source(24, 85) + SourceIndex(3) +2 >Emitted(57, 10) Source(24, 86) + SourceIndex(3) +3 >Emitted(57, 12) Source(24, 47) + SourceIndex(3) +4 >Emitted(57, 21) Source(24, 56) + SourceIndex(3) +5 >Emitted(57, 24) Source(24, 47) + SourceIndex(3) +6 >Emitted(57, 43) Source(24, 56) + SourceIndex(3) +7 >Emitted(57, 48) Source(24, 47) + SourceIndex(3) +8 >Emitted(57, 67) Source(24, 56) + SourceIndex(3) +9 >Emitted(57, 75) Source(24, 86) + SourceIndex(3) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^ @@ -1306,15 +1308,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(57, 5) Source(24, 85) + SourceIndex(3) -2 >Emitted(57, 6) Source(24, 86) + SourceIndex(3) -3 >Emitted(57, 8) Source(24, 37) + SourceIndex(3) -4 >Emitted(57, 17) Source(24, 46) + SourceIndex(3) -5 >Emitted(57, 20) Source(24, 37) + SourceIndex(3) -6 >Emitted(57, 37) Source(24, 46) + SourceIndex(3) -7 >Emitted(57, 42) Source(24, 37) + SourceIndex(3) -8 >Emitted(57, 59) Source(24, 46) + SourceIndex(3) -9 >Emitted(57, 67) Source(24, 86) + SourceIndex(3) +1 >Emitted(58, 5) Source(24, 85) + SourceIndex(3) +2 >Emitted(58, 6) Source(24, 86) + SourceIndex(3) +3 >Emitted(58, 8) Source(24, 37) + SourceIndex(3) +4 >Emitted(58, 17) Source(24, 46) + SourceIndex(3) +5 >Emitted(58, 20) Source(24, 37) + SourceIndex(3) +6 >Emitted(58, 37) Source(24, 46) + SourceIndex(3) +7 >Emitted(58, 42) Source(24, 37) + SourceIndex(3) +8 >Emitted(58, 59) Source(24, 46) + SourceIndex(3) +9 >Emitted(58, 67) Source(24, 86) + SourceIndex(3) --- >>> /**@internal*/ normalN.someImport = someNamespace.C; 1 >^^^^ @@ -1336,15 +1338,15 @@ sourceFile:../../../second/second_part1.ts 7 > . 8 > C 9 > ; -1 >Emitted(58, 5) Source(25, 5) + SourceIndex(3) -2 >Emitted(58, 19) Source(25, 19) + SourceIndex(3) -3 >Emitted(58, 20) Source(25, 34) + SourceIndex(3) -4 >Emitted(58, 38) Source(25, 44) + SourceIndex(3) -5 >Emitted(58, 41) Source(25, 47) + SourceIndex(3) -6 >Emitted(58, 54) Source(25, 60) + SourceIndex(3) -7 >Emitted(58, 55) Source(25, 61) + SourceIndex(3) -8 >Emitted(58, 56) Source(25, 62) + SourceIndex(3) -9 >Emitted(58, 57) Source(25, 63) + SourceIndex(3) +1 >Emitted(59, 5) Source(25, 5) + SourceIndex(3) +2 >Emitted(59, 19) Source(25, 19) + SourceIndex(3) +3 >Emitted(59, 20) Source(25, 34) + SourceIndex(3) +4 >Emitted(59, 38) Source(25, 44) + SourceIndex(3) +5 >Emitted(59, 41) Source(25, 47) + SourceIndex(3) +6 >Emitted(59, 54) Source(25, 60) + SourceIndex(3) +7 >Emitted(59, 55) Source(25, 61) + SourceIndex(3) +8 >Emitted(59, 56) Source(25, 62) + SourceIndex(3) +9 >Emitted(59, 57) Source(25, 63) + SourceIndex(3) --- >>> /**@internal*/ normalN.internalConst = 10; 1 >^^^^ @@ -1363,13 +1365,13 @@ sourceFile:../../../second/second_part1.ts 5 > = 6 > 10 7 > ; -1 >Emitted(59, 5) Source(27, 5) + SourceIndex(3) -2 >Emitted(59, 19) Source(27, 19) + SourceIndex(3) -3 >Emitted(59, 20) Source(27, 33) + SourceIndex(3) -4 >Emitted(59, 41) Source(27, 46) + SourceIndex(3) -5 >Emitted(59, 44) Source(27, 49) + SourceIndex(3) -6 >Emitted(59, 46) Source(27, 51) + SourceIndex(3) -7 >Emitted(59, 47) Source(27, 52) + SourceIndex(3) +1 >Emitted(60, 5) Source(27, 5) + SourceIndex(3) +2 >Emitted(60, 19) Source(27, 19) + SourceIndex(3) +3 >Emitted(60, 20) Source(27, 33) + SourceIndex(3) +4 >Emitted(60, 41) Source(27, 46) + SourceIndex(3) +5 >Emitted(60, 44) Source(27, 49) + SourceIndex(3) +6 >Emitted(60, 46) Source(27, 51) + SourceIndex(3) +7 >Emitted(60, 47) Source(27, 52) + SourceIndex(3) --- >>> /**@internal*/ var internalEnum; 1 >^^^^ @@ -1383,11 +1385,11 @@ sourceFile:../../../second/second_part1.ts 3 > 4 > export enum 5 > internalEnum { a, b, c } -1 >Emitted(60, 5) Source(28, 5) + SourceIndex(3) -2 >Emitted(60, 19) Source(28, 19) + SourceIndex(3) -3 >Emitted(60, 20) Source(28, 20) + SourceIndex(3) -4 >Emitted(60, 24) Source(28, 32) + SourceIndex(3) -5 >Emitted(60, 36) Source(28, 56) + SourceIndex(3) +1 >Emitted(61, 5) Source(28, 5) + SourceIndex(3) +2 >Emitted(61, 19) Source(28, 19) + SourceIndex(3) +3 >Emitted(61, 20) Source(28, 20) + SourceIndex(3) +4 >Emitted(61, 24) Source(28, 32) + SourceIndex(3) +5 >Emitted(61, 36) Source(28, 56) + SourceIndex(3) --- >>> (function (internalEnum) { 1 >^^^^ @@ -1397,9 +1399,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 > export enum 3 > internalEnum -1 >Emitted(61, 5) Source(28, 20) + SourceIndex(3) -2 >Emitted(61, 16) Source(28, 32) + SourceIndex(3) -3 >Emitted(61, 28) Source(28, 44) + SourceIndex(3) +1 >Emitted(62, 5) Source(28, 20) + SourceIndex(3) +2 >Emitted(62, 16) Source(28, 32) + SourceIndex(3) +3 >Emitted(62, 28) Source(28, 44) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -1409,9 +1411,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(62, 9) Source(28, 47) + SourceIndex(3) -2 >Emitted(62, 50) Source(28, 48) + SourceIndex(3) -3 >Emitted(62, 51) Source(28, 48) + SourceIndex(3) +1->Emitted(63, 9) Source(28, 47) + SourceIndex(3) +2 >Emitted(63, 50) Source(28, 48) + SourceIndex(3) +3 >Emitted(63, 51) Source(28, 48) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -1421,9 +1423,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(63, 9) Source(28, 50) + SourceIndex(3) -2 >Emitted(63, 50) Source(28, 51) + SourceIndex(3) -3 >Emitted(63, 51) Source(28, 51) + SourceIndex(3) +1->Emitted(64, 9) Source(28, 50) + SourceIndex(3) +2 >Emitted(64, 50) Source(28, 51) + SourceIndex(3) +3 >Emitted(64, 51) Source(28, 51) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -1433,9 +1435,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(64, 9) Source(28, 53) + SourceIndex(3) -2 >Emitted(64, 50) Source(28, 54) + SourceIndex(3) -3 >Emitted(64, 51) Source(28, 54) + SourceIndex(3) +1->Emitted(65, 9) Source(28, 53) + SourceIndex(3) +2 >Emitted(65, 50) Source(28, 54) + SourceIndex(3) +3 >Emitted(65, 51) Source(28, 54) + SourceIndex(3) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^ @@ -1456,15 +1458,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(65, 5) Source(28, 55) + SourceIndex(3) -2 >Emitted(65, 6) Source(28, 56) + SourceIndex(3) -3 >Emitted(65, 8) Source(28, 32) + SourceIndex(3) -4 >Emitted(65, 20) Source(28, 44) + SourceIndex(3) -5 >Emitted(65, 23) Source(28, 32) + SourceIndex(3) -6 >Emitted(65, 43) Source(28, 44) + SourceIndex(3) -7 >Emitted(65, 48) Source(28, 32) + SourceIndex(3) -8 >Emitted(65, 68) Source(28, 44) + SourceIndex(3) -9 >Emitted(65, 76) Source(28, 56) + SourceIndex(3) +1->Emitted(66, 5) Source(28, 55) + SourceIndex(3) +2 >Emitted(66, 6) Source(28, 56) + SourceIndex(3) +3 >Emitted(66, 8) Source(28, 32) + SourceIndex(3) +4 >Emitted(66, 20) Source(28, 44) + SourceIndex(3) +5 >Emitted(66, 23) Source(28, 32) + SourceIndex(3) +6 >Emitted(66, 43) Source(28, 44) + SourceIndex(3) +7 >Emitted(66, 48) Source(28, 32) + SourceIndex(3) +8 >Emitted(66, 68) Source(28, 44) + SourceIndex(3) +9 >Emitted(66, 76) Source(28, 56) + SourceIndex(3) --- >>>})(normalN || (normalN = {})); 1 > @@ -1492,13 +1494,13 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ export const internalConst = 10; > /**@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(66, 1) Source(29, 1) + SourceIndex(3) -2 >Emitted(66, 2) Source(29, 2) + SourceIndex(3) -3 >Emitted(66, 4) Source(20, 11) + SourceIndex(3) -4 >Emitted(66, 11) Source(20, 18) + SourceIndex(3) -5 >Emitted(66, 16) Source(20, 11) + SourceIndex(3) -6 >Emitted(66, 23) Source(20, 18) + SourceIndex(3) -7 >Emitted(66, 31) Source(29, 2) + SourceIndex(3) +1 >Emitted(67, 1) Source(29, 1) + SourceIndex(3) +2 >Emitted(67, 2) Source(29, 2) + SourceIndex(3) +3 >Emitted(67, 4) Source(20, 11) + SourceIndex(3) +4 >Emitted(67, 11) Source(20, 18) + SourceIndex(3) +5 >Emitted(67, 16) Source(20, 11) + SourceIndex(3) +6 >Emitted(67, 23) Source(20, 18) + SourceIndex(3) +7 >Emitted(67, 31) Source(29, 2) + SourceIndex(3) --- >>>/**@internal*/ var internalC = /** @class */ (function () { 1-> @@ -1509,15 +1511,15 @@ sourceFile:../../../second/second_part1.ts > 2 >/**@internal*/ 3 > -1->Emitted(67, 1) Source(30, 1) + SourceIndex(3) -2 >Emitted(67, 15) Source(30, 15) + SourceIndex(3) -3 >Emitted(67, 16) Source(30, 16) + SourceIndex(3) +1->Emitted(68, 1) Source(30, 1) + SourceIndex(3) +2 >Emitted(68, 15) Source(30, 15) + SourceIndex(3) +3 >Emitted(68, 16) Source(30, 16) + SourceIndex(3) --- >>> function internalC() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(68, 5) Source(30, 16) + SourceIndex(3) +1->Emitted(69, 5) Source(30, 16) + SourceIndex(3) --- >>> } 1->^^^^ @@ -1525,16 +1527,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->class internalC { 2 > } -1->Emitted(69, 5) Source(30, 33) + SourceIndex(3) -2 >Emitted(69, 6) Source(30, 34) + SourceIndex(3) +1->Emitted(70, 5) Source(30, 33) + SourceIndex(3) +2 >Emitted(70, 6) Source(30, 34) + SourceIndex(3) --- >>> return internalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(70, 5) Source(30, 33) + SourceIndex(3) -2 >Emitted(70, 21) Source(30, 34) + SourceIndex(3) +1->Emitted(71, 5) Source(30, 33) + SourceIndex(3) +2 >Emitted(71, 21) Source(30, 34) + SourceIndex(3) --- >>>}()); 1 > @@ -1546,10 +1548,10 @@ sourceFile:../../../second/second_part1.ts 2 >} 3 > 4 > class internalC {} -1 >Emitted(71, 1) Source(30, 33) + SourceIndex(3) -2 >Emitted(71, 2) Source(30, 34) + SourceIndex(3) -3 >Emitted(71, 2) Source(30, 16) + SourceIndex(3) -4 >Emitted(71, 6) Source(30, 34) + SourceIndex(3) +1 >Emitted(72, 1) Source(30, 33) + SourceIndex(3) +2 >Emitted(72, 2) Source(30, 34) + SourceIndex(3) +3 >Emitted(72, 2) Source(30, 16) + SourceIndex(3) +4 >Emitted(72, 6) Source(30, 34) + SourceIndex(3) --- >>>/**@internal*/ function internalfoo() { } 1-> @@ -1567,13 +1569,13 @@ sourceFile:../../../second/second_part1.ts 5 > internalfoo 6 > () { 7 > } -1->Emitted(72, 1) Source(31, 1) + SourceIndex(3) -2 >Emitted(72, 15) Source(31, 15) + SourceIndex(3) -3 >Emitted(72, 16) Source(31, 16) + SourceIndex(3) -4 >Emitted(72, 25) Source(31, 25) + SourceIndex(3) -5 >Emitted(72, 36) Source(31, 36) + SourceIndex(3) -6 >Emitted(72, 41) Source(31, 40) + SourceIndex(3) -7 >Emitted(72, 42) Source(31, 41) + SourceIndex(3) +1->Emitted(73, 1) Source(31, 1) + SourceIndex(3) +2 >Emitted(73, 15) Source(31, 15) + SourceIndex(3) +3 >Emitted(73, 16) Source(31, 16) + SourceIndex(3) +4 >Emitted(73, 25) Source(31, 25) + SourceIndex(3) +5 >Emitted(73, 36) Source(31, 36) + SourceIndex(3) +6 >Emitted(73, 41) Source(31, 40) + SourceIndex(3) +7 >Emitted(73, 42) Source(31, 41) + SourceIndex(3) --- >>>/**@internal*/ var internalNamespace; 1 > @@ -1589,12 +1591,12 @@ sourceFile:../../../second/second_part1.ts 4 > namespace 5 > internalNamespace 6 > { export class someClass {} } -1 >Emitted(73, 1) Source(32, 1) + SourceIndex(3) -2 >Emitted(73, 15) Source(32, 15) + SourceIndex(3) -3 >Emitted(73, 16) Source(32, 16) + SourceIndex(3) -4 >Emitted(73, 20) Source(32, 26) + SourceIndex(3) -5 >Emitted(73, 37) Source(32, 43) + SourceIndex(3) -6 >Emitted(73, 38) Source(32, 73) + SourceIndex(3) +1 >Emitted(74, 1) Source(32, 1) + SourceIndex(3) +2 >Emitted(74, 15) Source(32, 15) + SourceIndex(3) +3 >Emitted(74, 16) Source(32, 16) + SourceIndex(3) +4 >Emitted(74, 20) Source(32, 26) + SourceIndex(3) +5 >Emitted(74, 37) Source(32, 43) + SourceIndex(3) +6 >Emitted(74, 38) Source(32, 73) + SourceIndex(3) --- >>>(function (internalNamespace) { 1 > @@ -1604,21 +1606,21 @@ sourceFile:../../../second/second_part1.ts 1 > 2 >namespace 3 > internalNamespace -1 >Emitted(74, 1) Source(32, 16) + SourceIndex(3) -2 >Emitted(74, 12) Source(32, 26) + SourceIndex(3) -3 >Emitted(74, 29) Source(32, 43) + SourceIndex(3) +1 >Emitted(75, 1) Source(32, 16) + SourceIndex(3) +2 >Emitted(75, 12) Source(32, 26) + SourceIndex(3) +3 >Emitted(75, 29) Source(32, 43) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(75, 5) Source(32, 46) + SourceIndex(3) +1->Emitted(76, 5) Source(32, 46) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(76, 9) Source(32, 46) + SourceIndex(3) +1->Emitted(77, 9) Source(32, 46) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -1626,16 +1628,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(77, 9) Source(32, 70) + SourceIndex(3) -2 >Emitted(77, 10) Source(32, 71) + SourceIndex(3) +1->Emitted(78, 9) Source(32, 70) + SourceIndex(3) +2 >Emitted(78, 10) Source(32, 71) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(78, 9) Source(32, 70) + SourceIndex(3) -2 >Emitted(78, 25) Source(32, 71) + SourceIndex(3) +1->Emitted(79, 9) Source(32, 70) + SourceIndex(3) +2 >Emitted(79, 25) Source(32, 71) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -1647,10 +1649,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(79, 5) Source(32, 70) + SourceIndex(3) -2 >Emitted(79, 6) Source(32, 71) + SourceIndex(3) -3 >Emitted(79, 6) Source(32, 46) + SourceIndex(3) -4 >Emitted(79, 10) Source(32, 71) + SourceIndex(3) +1 >Emitted(80, 5) Source(32, 70) + SourceIndex(3) +2 >Emitted(80, 6) Source(32, 71) + SourceIndex(3) +3 >Emitted(80, 6) Source(32, 46) + SourceIndex(3) +4 >Emitted(80, 10) Source(32, 71) + SourceIndex(3) --- >>> internalNamespace.someClass = someClass; 1->^^^^ @@ -1662,10 +1664,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(80, 5) Source(32, 59) + SourceIndex(3) -2 >Emitted(80, 32) Source(32, 68) + SourceIndex(3) -3 >Emitted(80, 44) Source(32, 71) + SourceIndex(3) -4 >Emitted(80, 45) Source(32, 71) + SourceIndex(3) +1->Emitted(81, 5) Source(32, 59) + SourceIndex(3) +2 >Emitted(81, 32) Source(32, 68) + SourceIndex(3) +3 >Emitted(81, 44) Source(32, 71) + SourceIndex(3) +4 >Emitted(81, 45) Source(32, 71) + SourceIndex(3) --- >>>})(internalNamespace || (internalNamespace = {})); 1-> @@ -1682,13 +1684,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalNamespace 7 > { export class someClass {} } -1->Emitted(81, 1) Source(32, 72) + SourceIndex(3) -2 >Emitted(81, 2) Source(32, 73) + SourceIndex(3) -3 >Emitted(81, 4) Source(32, 26) + SourceIndex(3) -4 >Emitted(81, 21) Source(32, 43) + SourceIndex(3) -5 >Emitted(81, 26) Source(32, 26) + SourceIndex(3) -6 >Emitted(81, 43) Source(32, 43) + SourceIndex(3) -7 >Emitted(81, 51) Source(32, 73) + SourceIndex(3) +1->Emitted(82, 1) Source(32, 72) + SourceIndex(3) +2 >Emitted(82, 2) Source(32, 73) + SourceIndex(3) +3 >Emitted(82, 4) Source(32, 26) + SourceIndex(3) +4 >Emitted(82, 21) Source(32, 43) + SourceIndex(3) +5 >Emitted(82, 26) Source(32, 26) + SourceIndex(3) +6 >Emitted(82, 43) Source(32, 43) + SourceIndex(3) +7 >Emitted(82, 51) Source(32, 73) + SourceIndex(3) --- >>>/**@internal*/ var internalOther; 1 > @@ -1704,12 +1706,12 @@ sourceFile:../../../second/second_part1.ts 4 > namespace 5 > internalOther 6 > .something { export class someClass {} } -1 >Emitted(82, 1) Source(33, 1) + SourceIndex(3) -2 >Emitted(82, 15) Source(33, 15) + SourceIndex(3) -3 >Emitted(82, 16) Source(33, 16) + SourceIndex(3) -4 >Emitted(82, 20) Source(33, 26) + SourceIndex(3) -5 >Emitted(82, 33) Source(33, 39) + SourceIndex(3) -6 >Emitted(82, 34) Source(33, 79) + SourceIndex(3) +1 >Emitted(83, 1) Source(33, 1) + SourceIndex(3) +2 >Emitted(83, 15) Source(33, 15) + SourceIndex(3) +3 >Emitted(83, 16) Source(33, 16) + SourceIndex(3) +4 >Emitted(83, 20) Source(33, 26) + SourceIndex(3) +5 >Emitted(83, 33) Source(33, 39) + SourceIndex(3) +6 >Emitted(83, 34) Source(33, 79) + SourceIndex(3) --- >>>(function (internalOther) { 1 > @@ -1718,9 +1720,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 >namespace 3 > internalOther -1 >Emitted(83, 1) Source(33, 16) + SourceIndex(3) -2 >Emitted(83, 12) Source(33, 26) + SourceIndex(3) -3 >Emitted(83, 25) Source(33, 39) + SourceIndex(3) +1 >Emitted(84, 1) Source(33, 16) + SourceIndex(3) +2 >Emitted(84, 12) Source(33, 26) + SourceIndex(3) +3 >Emitted(84, 25) Source(33, 39) + SourceIndex(3) --- >>> var something; 1 >^^^^ @@ -1732,10 +1734,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(84, 5) Source(33, 40) + SourceIndex(3) -2 >Emitted(84, 9) Source(33, 40) + SourceIndex(3) -3 >Emitted(84, 18) Source(33, 49) + SourceIndex(3) -4 >Emitted(84, 19) Source(33, 79) + SourceIndex(3) +1 >Emitted(85, 5) Source(33, 40) + SourceIndex(3) +2 >Emitted(85, 9) Source(33, 40) + SourceIndex(3) +3 >Emitted(85, 18) Source(33, 49) + SourceIndex(3) +4 >Emitted(85, 19) Source(33, 79) + SourceIndex(3) --- >>> (function (something) { 1->^^^^ @@ -1745,21 +1747,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(85, 5) Source(33, 40) + SourceIndex(3) -2 >Emitted(85, 16) Source(33, 40) + SourceIndex(3) -3 >Emitted(85, 25) Source(33, 49) + SourceIndex(3) +1->Emitted(86, 5) Source(33, 40) + SourceIndex(3) +2 >Emitted(86, 16) Source(33, 40) + SourceIndex(3) +3 >Emitted(86, 25) Source(33, 49) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(86, 9) Source(33, 52) + SourceIndex(3) +1->Emitted(87, 9) Source(33, 52) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(87, 13) Source(33, 52) + SourceIndex(3) +1->Emitted(88, 13) Source(33, 52) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -1767,16 +1769,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(88, 13) Source(33, 76) + SourceIndex(3) -2 >Emitted(88, 14) Source(33, 77) + SourceIndex(3) +1->Emitted(89, 13) Source(33, 76) + SourceIndex(3) +2 >Emitted(89, 14) Source(33, 77) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(89, 13) Source(33, 76) + SourceIndex(3) -2 >Emitted(89, 29) Source(33, 77) + SourceIndex(3) +1->Emitted(90, 13) Source(33, 76) + SourceIndex(3) +2 >Emitted(90, 29) Source(33, 77) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -1788,10 +1790,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(90, 9) Source(33, 76) + SourceIndex(3) -2 >Emitted(90, 10) Source(33, 77) + SourceIndex(3) -3 >Emitted(90, 10) Source(33, 52) + SourceIndex(3) -4 >Emitted(90, 14) Source(33, 77) + SourceIndex(3) +1 >Emitted(91, 9) Source(33, 76) + SourceIndex(3) +2 >Emitted(91, 10) Source(33, 77) + SourceIndex(3) +3 >Emitted(91, 10) Source(33, 52) + SourceIndex(3) +4 >Emitted(91, 14) Source(33, 77) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^ @@ -1803,10 +1805,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(91, 9) Source(33, 65) + SourceIndex(3) -2 >Emitted(91, 28) Source(33, 74) + SourceIndex(3) -3 >Emitted(91, 40) Source(33, 77) + SourceIndex(3) -4 >Emitted(91, 41) Source(33, 77) + SourceIndex(3) +1->Emitted(92, 9) Source(33, 65) + SourceIndex(3) +2 >Emitted(92, 28) Source(33, 74) + SourceIndex(3) +3 >Emitted(92, 40) Source(33, 77) + SourceIndex(3) +4 >Emitted(92, 41) Source(33, 77) + SourceIndex(3) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^ @@ -1827,15 +1829,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(92, 5) Source(33, 78) + SourceIndex(3) -2 >Emitted(92, 6) Source(33, 79) + SourceIndex(3) -3 >Emitted(92, 8) Source(33, 40) + SourceIndex(3) -4 >Emitted(92, 17) Source(33, 49) + SourceIndex(3) -5 >Emitted(92, 20) Source(33, 40) + SourceIndex(3) -6 >Emitted(92, 43) Source(33, 49) + SourceIndex(3) -7 >Emitted(92, 48) Source(33, 40) + SourceIndex(3) -8 >Emitted(92, 71) Source(33, 49) + SourceIndex(3) -9 >Emitted(92, 79) Source(33, 79) + SourceIndex(3) +1->Emitted(93, 5) Source(33, 78) + SourceIndex(3) +2 >Emitted(93, 6) Source(33, 79) + SourceIndex(3) +3 >Emitted(93, 8) Source(33, 40) + SourceIndex(3) +4 >Emitted(93, 17) Source(33, 49) + SourceIndex(3) +5 >Emitted(93, 20) Source(33, 40) + SourceIndex(3) +6 >Emitted(93, 43) Source(33, 49) + SourceIndex(3) +7 >Emitted(93, 48) Source(33, 40) + SourceIndex(3) +8 >Emitted(93, 71) Source(33, 49) + SourceIndex(3) +9 >Emitted(93, 79) Source(33, 79) + SourceIndex(3) --- >>>})(internalOther || (internalOther = {})); 1 > @@ -1853,13 +1855,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalOther 7 > .something { export class someClass {} } -1 >Emitted(93, 1) Source(33, 78) + SourceIndex(3) -2 >Emitted(93, 2) Source(33, 79) + SourceIndex(3) -3 >Emitted(93, 4) Source(33, 26) + SourceIndex(3) -4 >Emitted(93, 17) Source(33, 39) + SourceIndex(3) -5 >Emitted(93, 22) Source(33, 26) + SourceIndex(3) -6 >Emitted(93, 35) Source(33, 39) + SourceIndex(3) -7 >Emitted(93, 43) Source(33, 79) + SourceIndex(3) +1 >Emitted(94, 1) Source(33, 78) + SourceIndex(3) +2 >Emitted(94, 2) Source(33, 79) + SourceIndex(3) +3 >Emitted(94, 4) Source(33, 26) + SourceIndex(3) +4 >Emitted(94, 17) Source(33, 39) + SourceIndex(3) +5 >Emitted(94, 22) Source(33, 26) + SourceIndex(3) +6 >Emitted(94, 35) Source(33, 39) + SourceIndex(3) +7 >Emitted(94, 43) Source(33, 79) + SourceIndex(3) --- >>>/**@internal*/ var internalImport = internalNamespace.someClass; 1-> @@ -1883,16 +1885,16 @@ sourceFile:../../../second/second_part1.ts 8 > . 9 > someClass 10> ; -1->Emitted(94, 1) Source(34, 1) + SourceIndex(3) -2 >Emitted(94, 15) Source(34, 15) + SourceIndex(3) -3 >Emitted(94, 16) Source(34, 16) + SourceIndex(3) -4 >Emitted(94, 20) Source(34, 23) + SourceIndex(3) -5 >Emitted(94, 34) Source(34, 37) + SourceIndex(3) -6 >Emitted(94, 37) Source(34, 40) + SourceIndex(3) -7 >Emitted(94, 54) Source(34, 57) + SourceIndex(3) -8 >Emitted(94, 55) Source(34, 58) + SourceIndex(3) -9 >Emitted(94, 64) Source(34, 67) + SourceIndex(3) -10>Emitted(94, 65) Source(34, 68) + SourceIndex(3) +1->Emitted(95, 1) Source(34, 1) + SourceIndex(3) +2 >Emitted(95, 15) Source(34, 15) + SourceIndex(3) +3 >Emitted(95, 16) Source(34, 16) + SourceIndex(3) +4 >Emitted(95, 20) Source(34, 23) + SourceIndex(3) +5 >Emitted(95, 34) Source(34, 37) + SourceIndex(3) +6 >Emitted(95, 37) Source(34, 40) + SourceIndex(3) +7 >Emitted(95, 54) Source(34, 57) + SourceIndex(3) +8 >Emitted(95, 55) Source(34, 58) + SourceIndex(3) +9 >Emitted(95, 64) Source(34, 67) + SourceIndex(3) +10>Emitted(95, 65) Source(34, 68) + SourceIndex(3) --- >>>/**@internal*/ var internalConst = 10; 1 > @@ -1913,14 +1915,14 @@ sourceFile:../../../second/second_part1.ts 6 > = 7 > 10 8 > ; -1 >Emitted(95, 1) Source(36, 1) + SourceIndex(3) -2 >Emitted(95, 15) Source(36, 15) + SourceIndex(3) -3 >Emitted(95, 16) Source(36, 16) + SourceIndex(3) -4 >Emitted(95, 20) Source(36, 22) + SourceIndex(3) -5 >Emitted(95, 33) Source(36, 35) + SourceIndex(3) -6 >Emitted(95, 36) Source(36, 38) + SourceIndex(3) -7 >Emitted(95, 38) Source(36, 40) + SourceIndex(3) -8 >Emitted(95, 39) Source(36, 41) + SourceIndex(3) +1 >Emitted(96, 1) Source(36, 1) + SourceIndex(3) +2 >Emitted(96, 15) Source(36, 15) + SourceIndex(3) +3 >Emitted(96, 16) Source(36, 16) + SourceIndex(3) +4 >Emitted(96, 20) Source(36, 22) + SourceIndex(3) +5 >Emitted(96, 33) Source(36, 35) + SourceIndex(3) +6 >Emitted(96, 36) Source(36, 38) + SourceIndex(3) +7 >Emitted(96, 38) Source(36, 40) + SourceIndex(3) +8 >Emitted(96, 39) Source(36, 41) + SourceIndex(3) --- >>>/**@internal*/ var internalEnum; 1 > @@ -1934,11 +1936,11 @@ sourceFile:../../../second/second_part1.ts 3 > 4 > enum 5 > internalEnum { a, b, c } -1 >Emitted(96, 1) Source(37, 1) + SourceIndex(3) -2 >Emitted(96, 15) Source(37, 15) + SourceIndex(3) -3 >Emitted(96, 16) Source(37, 16) + SourceIndex(3) -4 >Emitted(96, 20) Source(37, 21) + SourceIndex(3) -5 >Emitted(96, 32) Source(37, 45) + SourceIndex(3) +1 >Emitted(97, 1) Source(37, 1) + SourceIndex(3) +2 >Emitted(97, 15) Source(37, 15) + SourceIndex(3) +3 >Emitted(97, 16) Source(37, 16) + SourceIndex(3) +4 >Emitted(97, 20) Source(37, 21) + SourceIndex(3) +5 >Emitted(97, 32) Source(37, 45) + SourceIndex(3) --- >>>(function (internalEnum) { 1 > @@ -1948,9 +1950,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 >enum 3 > internalEnum -1 >Emitted(97, 1) Source(37, 16) + SourceIndex(3) -2 >Emitted(97, 12) Source(37, 21) + SourceIndex(3) -3 >Emitted(97, 24) Source(37, 33) + SourceIndex(3) +1 >Emitted(98, 1) Source(37, 16) + SourceIndex(3) +2 >Emitted(98, 12) Source(37, 21) + SourceIndex(3) +3 >Emitted(98, 24) Source(37, 33) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^ @@ -1960,9 +1962,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(98, 5) Source(37, 36) + SourceIndex(3) -2 >Emitted(98, 46) Source(37, 37) + SourceIndex(3) -3 >Emitted(98, 47) Source(37, 37) + SourceIndex(3) +1->Emitted(99, 5) Source(37, 36) + SourceIndex(3) +2 >Emitted(99, 46) Source(37, 37) + SourceIndex(3) +3 >Emitted(99, 47) Source(37, 37) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^ @@ -1972,9 +1974,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(99, 5) Source(37, 39) + SourceIndex(3) -2 >Emitted(99, 46) Source(37, 40) + SourceIndex(3) -3 >Emitted(99, 47) Source(37, 40) + SourceIndex(3) +1->Emitted(100, 5) Source(37, 39) + SourceIndex(3) +2 >Emitted(100, 46) Source(37, 40) + SourceIndex(3) +3 >Emitted(100, 47) Source(37, 40) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^ @@ -1983,9 +1985,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(100, 5) Source(37, 42) + SourceIndex(3) -2 >Emitted(100, 46) Source(37, 43) + SourceIndex(3) -3 >Emitted(100, 47) Source(37, 43) + SourceIndex(3) +1->Emitted(101, 5) Source(37, 42) + SourceIndex(3) +2 >Emitted(101, 46) Source(37, 43) + SourceIndex(3) +3 >Emitted(101, 47) Source(37, 43) + SourceIndex(3) --- >>>})(internalEnum || (internalEnum = {})); 1 > @@ -2002,13 +2004,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalEnum 7 > { a, b, c } -1 >Emitted(101, 1) Source(37, 44) + SourceIndex(3) -2 >Emitted(101, 2) Source(37, 45) + SourceIndex(3) -3 >Emitted(101, 4) Source(37, 21) + SourceIndex(3) -4 >Emitted(101, 16) Source(37, 33) + SourceIndex(3) -5 >Emitted(101, 21) Source(37, 21) + SourceIndex(3) -6 >Emitted(101, 33) Source(37, 33) + SourceIndex(3) -7 >Emitted(101, 41) Source(37, 45) + SourceIndex(3) +1 >Emitted(102, 1) Source(37, 44) + SourceIndex(3) +2 >Emitted(102, 2) Source(37, 45) + SourceIndex(3) +3 >Emitted(102, 4) Source(37, 21) + SourceIndex(3) +4 >Emitted(102, 16) Source(37, 33) + SourceIndex(3) +5 >Emitted(102, 21) Source(37, 21) + SourceIndex(3) +6 >Emitted(102, 33) Source(37, 33) + SourceIndex(3) +7 >Emitted(102, 41) Source(37, 45) + SourceIndex(3) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -2018,13 +2020,13 @@ sourceFile:../../../second/second_part2.ts 1 > 2 >^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(102, 1) Source(1, 1) + SourceIndex(4) +1 >Emitted(103, 1) Source(1, 1) + SourceIndex(4) --- >>> function C() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(103, 5) Source(1, 1) + SourceIndex(4) +1->Emitted(104, 5) Source(1, 1) + SourceIndex(4) --- >>> } 1->^^^^ @@ -2036,8 +2038,8 @@ sourceFile:../../../second/second_part2.ts > } > 2 > } -1->Emitted(104, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(104, 6) Source(5, 2) + SourceIndex(4) +1->Emitted(105, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(105, 6) Source(5, 2) + SourceIndex(4) --- >>> C.prototype.doSomething = function () { 1->^^^^ @@ -2047,9 +2049,9 @@ sourceFile:../../../second/second_part2.ts 1-> 2 > doSomething 3 > -1->Emitted(105, 5) Source(2, 5) + SourceIndex(4) -2 >Emitted(105, 28) Source(2, 16) + SourceIndex(4) -3 >Emitted(105, 31) Source(2, 5) + SourceIndex(4) +1->Emitted(106, 5) Source(2, 5) + SourceIndex(4) +2 >Emitted(106, 28) Source(2, 16) + SourceIndex(4) +3 >Emitted(106, 31) Source(2, 5) + SourceIndex(4) --- >>> console.log("something got done"); 1->^^^^^^^^ @@ -2069,14 +2071,14 @@ sourceFile:../../../second/second_part2.ts 6 > "something got done" 7 > ) 8 > ; -1->Emitted(106, 9) Source(3, 9) + SourceIndex(4) -2 >Emitted(106, 16) Source(3, 16) + SourceIndex(4) -3 >Emitted(106, 17) Source(3, 17) + SourceIndex(4) -4 >Emitted(106, 20) Source(3, 20) + SourceIndex(4) -5 >Emitted(106, 21) Source(3, 21) + SourceIndex(4) -6 >Emitted(106, 41) Source(3, 41) + SourceIndex(4) -7 >Emitted(106, 42) Source(3, 42) + SourceIndex(4) -8 >Emitted(106, 43) Source(3, 43) + SourceIndex(4) +1->Emitted(107, 9) Source(3, 9) + SourceIndex(4) +2 >Emitted(107, 16) Source(3, 16) + SourceIndex(4) +3 >Emitted(107, 17) Source(3, 17) + SourceIndex(4) +4 >Emitted(107, 20) Source(3, 20) + SourceIndex(4) +5 >Emitted(107, 21) Source(3, 21) + SourceIndex(4) +6 >Emitted(107, 41) Source(3, 41) + SourceIndex(4) +7 >Emitted(107, 42) Source(3, 42) + SourceIndex(4) +8 >Emitted(107, 43) Source(3, 43) + SourceIndex(4) --- >>> }; 1 >^^^^ @@ -2085,8 +2087,8 @@ sourceFile:../../../second/second_part2.ts 1 > > 2 > } -1 >Emitted(107, 5) Source(4, 5) + SourceIndex(4) -2 >Emitted(107, 6) Source(4, 6) + SourceIndex(4) +1 >Emitted(108, 5) Source(4, 5) + SourceIndex(4) +2 >Emitted(108, 6) Source(4, 6) + SourceIndex(4) --- >>> return C; 1->^^^^ @@ -2094,8 +2096,8 @@ sourceFile:../../../second/second_part2.ts 1-> > 2 > } -1->Emitted(108, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(108, 13) Source(5, 2) + SourceIndex(4) +1->Emitted(109, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(109, 13) Source(5, 2) + SourceIndex(4) --- >>>}()); 1 > @@ -2111,10 +2113,10 @@ sourceFile:../../../second/second_part2.ts > console.log("something got done"); > } > } -1 >Emitted(109, 1) Source(5, 1) + SourceIndex(4) -2 >Emitted(109, 2) Source(5, 2) + SourceIndex(4) -3 >Emitted(109, 2) Source(1, 1) + SourceIndex(4) -4 >Emitted(109, 6) Source(5, 2) + SourceIndex(4) +1 >Emitted(110, 1) Source(5, 1) + SourceIndex(4) +2 >Emitted(110, 2) Source(5, 2) + SourceIndex(4) +3 >Emitted(110, 2) Source(1, 1) + SourceIndex(4) +4 >Emitted(110, 6) Source(5, 2) + SourceIndex(4) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -2138,14 +2140,14 @@ sourceFile:../../third_part1.ts 6 > C 7 > () 8 > ; -1->Emitted(110, 1) Source(1, 1) + SourceIndex(5) -2 >Emitted(110, 5) Source(1, 5) + SourceIndex(5) -3 >Emitted(110, 6) Source(1, 6) + SourceIndex(5) -4 >Emitted(110, 9) Source(1, 9) + SourceIndex(5) -5 >Emitted(110, 13) Source(1, 13) + SourceIndex(5) -6 >Emitted(110, 14) Source(1, 14) + SourceIndex(5) -7 >Emitted(110, 16) Source(1, 16) + SourceIndex(5) -8 >Emitted(110, 17) Source(1, 17) + SourceIndex(5) +1->Emitted(111, 1) Source(1, 1) + SourceIndex(5) +2 >Emitted(111, 5) Source(1, 5) + SourceIndex(5) +3 >Emitted(111, 6) Source(1, 6) + SourceIndex(5) +4 >Emitted(111, 9) Source(1, 9) + SourceIndex(5) +5 >Emitted(111, 13) Source(1, 13) + SourceIndex(5) +6 >Emitted(111, 14) Source(1, 14) + SourceIndex(5) +7 >Emitted(111, 16) Source(1, 16) + SourceIndex(5) +8 >Emitted(111, 17) Source(1, 17) + SourceIndex(5) --- >>>c.doSomething(); 1-> @@ -2162,12 +2164,12 @@ sourceFile:../../third_part1.ts 4 > doSomething 5 > () 6 > ; -1->Emitted(111, 1) Source(2, 1) + SourceIndex(5) -2 >Emitted(111, 2) Source(2, 2) + SourceIndex(5) -3 >Emitted(111, 3) Source(2, 3) + SourceIndex(5) -4 >Emitted(111, 14) Source(2, 14) + SourceIndex(5) -5 >Emitted(111, 16) Source(2, 16) + SourceIndex(5) -6 >Emitted(111, 17) Source(2, 17) + SourceIndex(5) +1->Emitted(112, 1) Source(2, 1) + SourceIndex(5) +2 >Emitted(112, 2) Source(2, 2) + SourceIndex(5) +3 >Emitted(112, 3) Source(2, 3) + SourceIndex(5) +4 >Emitted(112, 14) Source(2, 14) + SourceIndex(5) +5 >Emitted(112, 16) Source(2, 16) + SourceIndex(5) +6 >Emitted(112, 17) Source(2, 17) + SourceIndex(5) --- >>>//# sourceMappingURL=third-output.js.map @@ -2195,20 +2197,20 @@ sourceFile:../../third_part1.ts }, { "pos": 127, - "end": 3562, + "end": 3610, "kind": "prepend", "data": "../../../2/second-output.js", "texts": [ { "pos": 127, - "end": 3562, + "end": 3610, "kind": "text" } ] }, { - "pos": 3562, - "end": 3598, + "pos": 3610, + "end": 3646, "kind": "text" } ] @@ -2268,9 +2270,9 @@ function f() { } ---------------------------------------------------------------------- -prepend: (127-3562):: ../../../2/second-output.js texts:: 1 +prepend: (127-3610):: ../../../2/second-output.js texts:: 1 >>-------------------------------------------------------------------- -text: (127-3562) +text: (127-3610) var N; (function (N) { function f() { @@ -2281,8 +2283,9 @@ var N; var normalC = /** @class */ (function () { /**@internal*/ function normalC() { } - /**@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /**@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /**@internal*/ get: function () { return 10; }, /**@internal*/ set: function (val) { }, enumerable: false, @@ -2375,7 +2378,7 @@ var C = /** @class */ (function () { }()); ---------------------------------------------------------------------- -text: (3562-3598) +text: (3610-3646) var c = new C(); c.doSomething(); diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-when-one-two-three-are-prepended-in-order.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-when-one-two-three-are-prepended-in-order.js index 3a3f6c7438345..d532b647643b7 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-when-one-two-three-are-prepended-in-order.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-when-one-two-three-are-prepended-in-order.js @@ -81,8 +81,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -176,7 +177,7 @@ var C = (function () { //# sourceMappingURL=second-output.js.map //// [/src/2/second-output.js.map] -{"version":3,"file":"second-output.js","sourceRoot":"","sources":["../first/first_PART1.ts","../first/first_part2.ts","../first/first_part3.ts","../second/second_part1.ts","../second/second_part2.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"second-output.js","sourceRoot":"","sources":["../first/first_PART1.ts","../first/first_part2.ts","../first/first_part3.ts","../second/second_part1.ts","../second/second_part2.ts"],"names":[],"mappings":"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"} //// [/src/2/second-output.js.map.baseline.txt] =================================================================== @@ -505,13 +506,14 @@ sourceFile:../second/second_part1.ts >>> } 1->^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1->constructor() { 2 > } 1->Emitted(17, 5) Source(14, 35) + SourceIndex(3) 2 >Emitted(17, 6) Source(14, 36) + SourceIndex(3) --- ->>> normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> normalC_prototype.method = function () { }; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^ @@ -525,13 +527,13 @@ sourceFile:../second/second_part1.ts 3 > 4 > method() { 5 > } -1->Emitted(18, 5) Source(16, 19) + SourceIndex(3) -2 >Emitted(18, 29) Source(16, 25) + SourceIndex(3) -3 >Emitted(18, 32) Source(16, 19) + SourceIndex(3) -4 >Emitted(18, 46) Source(16, 30) + SourceIndex(3) -5 >Emitted(18, 47) Source(16, 31) + SourceIndex(3) +1->Emitted(19, 5) Source(16, 19) + SourceIndex(3) +2 >Emitted(19, 29) Source(16, 25) + SourceIndex(3) +3 >Emitted(19, 32) Source(16, 19) + SourceIndex(3) +4 >Emitted(19, 46) Source(16, 30) + SourceIndex(3) +5 >Emitted(19, 47) Source(16, 31) + SourceIndex(3) --- ->>> Object.defineProperty(normalC.prototype, "c", { +>>> Object.defineProperty(normalC_prototype, "c", { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -539,9 +541,9 @@ sourceFile:../second/second_part1.ts > /*@internal*/ 2 > get 3 > c -1->Emitted(19, 5) Source(17, 19) + SourceIndex(3) -2 >Emitted(19, 27) Source(17, 23) + SourceIndex(3) -3 >Emitted(19, 49) Source(17, 24) + SourceIndex(3) +1->Emitted(20, 5) Source(17, 19) + SourceIndex(3) +2 >Emitted(20, 27) Source(17, 23) + SourceIndex(3) +3 >Emitted(20, 49) Source(17, 24) + SourceIndex(3) --- >>> get: function () { return 10; }, 1 >^^^^^^^^^^^^^ @@ -558,13 +560,13 @@ sourceFile:../second/second_part1.ts 5 > ; 6 > 7 > } -1 >Emitted(20, 14) Source(17, 19) + SourceIndex(3) -2 >Emitted(20, 28) Source(17, 29) + SourceIndex(3) -3 >Emitted(20, 35) Source(17, 36) + SourceIndex(3) -4 >Emitted(20, 37) Source(17, 38) + SourceIndex(3) -5 >Emitted(20, 38) Source(17, 39) + SourceIndex(3) -6 >Emitted(20, 39) Source(17, 40) + SourceIndex(3) -7 >Emitted(20, 40) Source(17, 41) + SourceIndex(3) +1 >Emitted(21, 14) Source(17, 19) + SourceIndex(3) +2 >Emitted(21, 28) Source(17, 29) + SourceIndex(3) +3 >Emitted(21, 35) Source(17, 36) + SourceIndex(3) +4 >Emitted(21, 37) Source(17, 38) + SourceIndex(3) +5 >Emitted(21, 38) Source(17, 39) + SourceIndex(3) +6 >Emitted(21, 39) Source(17, 40) + SourceIndex(3) +7 >Emitted(21, 40) Source(17, 41) + SourceIndex(3) --- >>> set: function (val) { }, 1 >^^^^^^^^^^^^^ @@ -578,11 +580,11 @@ sourceFile:../second/second_part1.ts 3 > val: number 4 > ) { 5 > } -1 >Emitted(21, 14) Source(18, 19) + SourceIndex(3) -2 >Emitted(21, 24) Source(18, 25) + SourceIndex(3) -3 >Emitted(21, 27) Source(18, 36) + SourceIndex(3) -4 >Emitted(21, 31) Source(18, 40) + SourceIndex(3) -5 >Emitted(21, 32) Source(18, 41) + SourceIndex(3) +1 >Emitted(22, 14) Source(18, 19) + SourceIndex(3) +2 >Emitted(22, 24) Source(18, 25) + SourceIndex(3) +3 >Emitted(22, 27) Source(18, 36) + SourceIndex(3) +4 >Emitted(22, 31) Source(18, 40) + SourceIndex(3) +5 >Emitted(22, 32) Source(18, 41) + SourceIndex(3) --- >>> enumerable: false, >>> configurable: true @@ -590,7 +592,7 @@ sourceFile:../second/second_part1.ts 1 >^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(24, 8) Source(17, 41) + SourceIndex(3) +1 >Emitted(25, 8) Source(17, 41) + SourceIndex(3) --- >>> return normalC; 1->^^^^ @@ -599,8 +601,8 @@ sourceFile:../second/second_part1.ts > /*@internal*/ set c(val: number) { } > 2 > } -1->Emitted(25, 5) Source(19, 1) + SourceIndex(3) -2 >Emitted(25, 19) Source(19, 2) + SourceIndex(3) +1->Emitted(26, 5) Source(19, 1) + SourceIndex(3) +2 >Emitted(26, 19) Source(19, 2) + SourceIndex(3) --- >>>}()); 1 > @@ -618,10 +620,10 @@ sourceFile:../second/second_part1.ts > /*@internal*/ get c() { return 10; } > /*@internal*/ set c(val: number) { } > } -1 >Emitted(26, 1) Source(19, 1) + SourceIndex(3) -2 >Emitted(26, 2) Source(19, 2) + SourceIndex(3) -3 >Emitted(26, 2) Source(13, 1) + SourceIndex(3) -4 >Emitted(26, 6) Source(19, 2) + SourceIndex(3) +1 >Emitted(27, 1) Source(19, 1) + SourceIndex(3) +2 >Emitted(27, 2) Source(19, 2) + SourceIndex(3) +3 >Emitted(27, 2) Source(13, 1) + SourceIndex(3) +4 >Emitted(27, 6) Source(19, 2) + SourceIndex(3) --- >>>var normalN; 1-> @@ -643,10 +645,10 @@ sourceFile:../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(27, 5) Source(20, 11) + SourceIndex(3) -3 >Emitted(27, 12) Source(20, 18) + SourceIndex(3) -4 >Emitted(27, 13) Source(29, 2) + SourceIndex(3) +1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(28, 5) Source(20, 11) + SourceIndex(3) +3 >Emitted(28, 12) Source(20, 18) + SourceIndex(3) +4 >Emitted(28, 13) Source(29, 2) + SourceIndex(3) --- >>>(function (normalN) { 1-> @@ -656,22 +658,22 @@ sourceFile:../second/second_part1.ts 1-> 2 >namespace 3 > normalN -1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(28, 12) Source(20, 11) + SourceIndex(3) -3 >Emitted(28, 19) Source(20, 18) + SourceIndex(3) +1->Emitted(29, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(29, 12) Source(20, 11) + SourceIndex(3) +3 >Emitted(29, 19) Source(20, 18) + SourceIndex(3) --- >>> var C = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { > /*@internal*/ -1->Emitted(29, 5) Source(21, 19) + SourceIndex(3) +1->Emitted(30, 5) Source(21, 19) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(30, 9) Source(21, 19) + SourceIndex(3) +1->Emitted(31, 9) Source(21, 19) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -679,16 +681,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(31, 9) Source(21, 36) + SourceIndex(3) -2 >Emitted(31, 10) Source(21, 37) + SourceIndex(3) +1->Emitted(32, 9) Source(21, 36) + SourceIndex(3) +2 >Emitted(32, 10) Source(21, 37) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(32, 9) Source(21, 36) + SourceIndex(3) -2 >Emitted(32, 17) Source(21, 37) + SourceIndex(3) +1->Emitted(33, 9) Source(21, 36) + SourceIndex(3) +2 >Emitted(33, 17) Source(21, 37) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -700,10 +702,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(33, 5) Source(21, 36) + SourceIndex(3) -2 >Emitted(33, 6) Source(21, 37) + SourceIndex(3) -3 >Emitted(33, 6) Source(21, 19) + SourceIndex(3) -4 >Emitted(33, 10) Source(21, 37) + SourceIndex(3) +1 >Emitted(34, 5) Source(21, 36) + SourceIndex(3) +2 >Emitted(34, 6) Source(21, 37) + SourceIndex(3) +3 >Emitted(34, 6) Source(21, 19) + SourceIndex(3) +4 >Emitted(34, 10) Source(21, 37) + SourceIndex(3) --- >>> normalN.C = C; 1->^^^^ @@ -715,10 +717,10 @@ sourceFile:../second/second_part1.ts 2 > C 3 > { } 4 > -1->Emitted(34, 5) Source(21, 32) + SourceIndex(3) -2 >Emitted(34, 14) Source(21, 33) + SourceIndex(3) -3 >Emitted(34, 18) Source(21, 37) + SourceIndex(3) -4 >Emitted(34, 19) Source(21, 37) + SourceIndex(3) +1->Emitted(35, 5) Source(21, 32) + SourceIndex(3) +2 >Emitted(35, 14) Source(21, 33) + SourceIndex(3) +3 >Emitted(35, 18) Source(21, 37) + SourceIndex(3) +4 >Emitted(35, 19) Source(21, 37) + SourceIndex(3) --- >>> function foo() { } 1->^^^^ @@ -733,11 +735,11 @@ sourceFile:../second/second_part1.ts 3 > foo 4 > () { 5 > } -1->Emitted(35, 5) Source(22, 19) + SourceIndex(3) -2 >Emitted(35, 14) Source(22, 35) + SourceIndex(3) -3 >Emitted(35, 17) Source(22, 38) + SourceIndex(3) -4 >Emitted(35, 22) Source(22, 42) + SourceIndex(3) -5 >Emitted(35, 23) Source(22, 43) + SourceIndex(3) +1->Emitted(36, 5) Source(22, 19) + SourceIndex(3) +2 >Emitted(36, 14) Source(22, 35) + SourceIndex(3) +3 >Emitted(36, 17) Source(22, 38) + SourceIndex(3) +4 >Emitted(36, 22) Source(22, 42) + SourceIndex(3) +5 >Emitted(36, 23) Source(22, 43) + SourceIndex(3) --- >>> normalN.foo = foo; 1->^^^^ @@ -749,10 +751,10 @@ sourceFile:../second/second_part1.ts 2 > foo 3 > () {} 4 > -1->Emitted(36, 5) Source(22, 35) + SourceIndex(3) -2 >Emitted(36, 16) Source(22, 38) + SourceIndex(3) -3 >Emitted(36, 22) Source(22, 43) + SourceIndex(3) -4 >Emitted(36, 23) Source(22, 43) + SourceIndex(3) +1->Emitted(37, 5) Source(22, 35) + SourceIndex(3) +2 >Emitted(37, 16) Source(22, 38) + SourceIndex(3) +3 >Emitted(37, 22) Source(22, 43) + SourceIndex(3) +4 >Emitted(37, 23) Source(22, 43) + SourceIndex(3) --- >>> var someNamespace; 1->^^^^ @@ -765,10 +767,10 @@ sourceFile:../second/second_part1.ts 2 > export namespace 3 > someNamespace 4 > { export class C {} } -1->Emitted(37, 5) Source(23, 19) + SourceIndex(3) -2 >Emitted(37, 9) Source(23, 36) + SourceIndex(3) -3 >Emitted(37, 22) Source(23, 49) + SourceIndex(3) -4 >Emitted(37, 23) Source(23, 71) + SourceIndex(3) +1->Emitted(38, 5) Source(23, 19) + SourceIndex(3) +2 >Emitted(38, 9) Source(23, 36) + SourceIndex(3) +3 >Emitted(38, 22) Source(23, 49) + SourceIndex(3) +4 >Emitted(38, 23) Source(23, 71) + SourceIndex(3) --- >>> (function (someNamespace) { 1->^^^^ @@ -778,21 +780,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > export namespace 3 > someNamespace -1->Emitted(38, 5) Source(23, 19) + SourceIndex(3) -2 >Emitted(38, 16) Source(23, 36) + SourceIndex(3) -3 >Emitted(38, 29) Source(23, 49) + SourceIndex(3) +1->Emitted(39, 5) Source(23, 19) + SourceIndex(3) +2 >Emitted(39, 16) Source(23, 36) + SourceIndex(3) +3 >Emitted(39, 29) Source(23, 49) + SourceIndex(3) --- >>> var C = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(39, 9) Source(23, 52) + SourceIndex(3) +1->Emitted(40, 9) Source(23, 52) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(40, 13) Source(23, 52) + SourceIndex(3) +1->Emitted(41, 13) Source(23, 52) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -800,16 +802,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(41, 13) Source(23, 68) + SourceIndex(3) -2 >Emitted(41, 14) Source(23, 69) + SourceIndex(3) +1->Emitted(42, 13) Source(23, 68) + SourceIndex(3) +2 >Emitted(42, 14) Source(23, 69) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(42, 13) Source(23, 68) + SourceIndex(3) -2 >Emitted(42, 21) Source(23, 69) + SourceIndex(3) +1->Emitted(43, 13) Source(23, 68) + SourceIndex(3) +2 >Emitted(43, 21) Source(23, 69) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -821,10 +823,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(43, 9) Source(23, 68) + SourceIndex(3) -2 >Emitted(43, 10) Source(23, 69) + SourceIndex(3) -3 >Emitted(43, 10) Source(23, 52) + SourceIndex(3) -4 >Emitted(43, 14) Source(23, 69) + SourceIndex(3) +1 >Emitted(44, 9) Source(23, 68) + SourceIndex(3) +2 >Emitted(44, 10) Source(23, 69) + SourceIndex(3) +3 >Emitted(44, 10) Source(23, 52) + SourceIndex(3) +4 >Emitted(44, 14) Source(23, 69) + SourceIndex(3) --- >>> someNamespace.C = C; 1->^^^^^^^^ @@ -836,10 +838,10 @@ sourceFile:../second/second_part1.ts 2 > C 3 > {} 4 > -1->Emitted(44, 9) Source(23, 65) + SourceIndex(3) -2 >Emitted(44, 24) Source(23, 66) + SourceIndex(3) -3 >Emitted(44, 28) Source(23, 69) + SourceIndex(3) -4 >Emitted(44, 29) Source(23, 69) + SourceIndex(3) +1->Emitted(45, 9) Source(23, 65) + SourceIndex(3) +2 >Emitted(45, 24) Source(23, 66) + SourceIndex(3) +3 >Emitted(45, 28) Source(23, 69) + SourceIndex(3) +4 >Emitted(45, 29) Source(23, 69) + SourceIndex(3) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^ @@ -860,15 +862,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(45, 5) Source(23, 70) + SourceIndex(3) -2 >Emitted(45, 6) Source(23, 71) + SourceIndex(3) -3 >Emitted(45, 8) Source(23, 36) + SourceIndex(3) -4 >Emitted(45, 21) Source(23, 49) + SourceIndex(3) -5 >Emitted(45, 24) Source(23, 36) + SourceIndex(3) -6 >Emitted(45, 45) Source(23, 49) + SourceIndex(3) -7 >Emitted(45, 50) Source(23, 36) + SourceIndex(3) -8 >Emitted(45, 71) Source(23, 49) + SourceIndex(3) -9 >Emitted(45, 79) Source(23, 71) + SourceIndex(3) +1->Emitted(46, 5) Source(23, 70) + SourceIndex(3) +2 >Emitted(46, 6) Source(23, 71) + SourceIndex(3) +3 >Emitted(46, 8) Source(23, 36) + SourceIndex(3) +4 >Emitted(46, 21) Source(23, 49) + SourceIndex(3) +5 >Emitted(46, 24) Source(23, 36) + SourceIndex(3) +6 >Emitted(46, 45) Source(23, 49) + SourceIndex(3) +7 >Emitted(46, 50) Source(23, 36) + SourceIndex(3) +8 >Emitted(46, 71) Source(23, 49) + SourceIndex(3) +9 >Emitted(46, 79) Source(23, 71) + SourceIndex(3) --- >>> var someOther; 1 >^^^^ @@ -881,10 +883,10 @@ sourceFile:../second/second_part1.ts 2 > export namespace 3 > someOther 4 > .something { export class someClass {} } -1 >Emitted(46, 5) Source(24, 19) + SourceIndex(3) -2 >Emitted(46, 9) Source(24, 36) + SourceIndex(3) -3 >Emitted(46, 18) Source(24, 45) + SourceIndex(3) -4 >Emitted(46, 19) Source(24, 85) + SourceIndex(3) +1 >Emitted(47, 5) Source(24, 19) + SourceIndex(3) +2 >Emitted(47, 9) Source(24, 36) + SourceIndex(3) +3 >Emitted(47, 18) Source(24, 45) + SourceIndex(3) +4 >Emitted(47, 19) Source(24, 85) + SourceIndex(3) --- >>> (function (someOther) { 1->^^^^ @@ -893,9 +895,9 @@ sourceFile:../second/second_part1.ts 1-> 2 > export namespace 3 > someOther -1->Emitted(47, 5) Source(24, 19) + SourceIndex(3) -2 >Emitted(47, 16) Source(24, 36) + SourceIndex(3) -3 >Emitted(47, 25) Source(24, 45) + SourceIndex(3) +1->Emitted(48, 5) Source(24, 19) + SourceIndex(3) +2 >Emitted(48, 16) Source(24, 36) + SourceIndex(3) +3 >Emitted(48, 25) Source(24, 45) + SourceIndex(3) --- >>> var something; 1 >^^^^^^^^ @@ -907,10 +909,10 @@ sourceFile:../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(48, 9) Source(24, 46) + SourceIndex(3) -2 >Emitted(48, 13) Source(24, 46) + SourceIndex(3) -3 >Emitted(48, 22) Source(24, 55) + SourceIndex(3) -4 >Emitted(48, 23) Source(24, 85) + SourceIndex(3) +1 >Emitted(49, 9) Source(24, 46) + SourceIndex(3) +2 >Emitted(49, 13) Source(24, 46) + SourceIndex(3) +3 >Emitted(49, 22) Source(24, 55) + SourceIndex(3) +4 >Emitted(49, 23) Source(24, 85) + SourceIndex(3) --- >>> (function (something) { 1->^^^^^^^^ @@ -920,21 +922,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(49, 9) Source(24, 46) + SourceIndex(3) -2 >Emitted(49, 20) Source(24, 46) + SourceIndex(3) -3 >Emitted(49, 29) Source(24, 55) + SourceIndex(3) +1->Emitted(50, 9) Source(24, 46) + SourceIndex(3) +2 >Emitted(50, 20) Source(24, 46) + SourceIndex(3) +3 >Emitted(50, 29) Source(24, 55) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(50, 13) Source(24, 58) + SourceIndex(3) +1->Emitted(51, 13) Source(24, 58) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(51, 17) Source(24, 58) + SourceIndex(3) +1->Emitted(52, 17) Source(24, 58) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -942,16 +944,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(52, 17) Source(24, 82) + SourceIndex(3) -2 >Emitted(52, 18) Source(24, 83) + SourceIndex(3) +1->Emitted(53, 17) Source(24, 82) + SourceIndex(3) +2 >Emitted(53, 18) Source(24, 83) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(53, 17) Source(24, 82) + SourceIndex(3) -2 >Emitted(53, 33) Source(24, 83) + SourceIndex(3) +1->Emitted(54, 17) Source(24, 82) + SourceIndex(3) +2 >Emitted(54, 33) Source(24, 83) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -963,10 +965,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(54, 13) Source(24, 82) + SourceIndex(3) -2 >Emitted(54, 14) Source(24, 83) + SourceIndex(3) -3 >Emitted(54, 14) Source(24, 58) + SourceIndex(3) -4 >Emitted(54, 18) Source(24, 83) + SourceIndex(3) +1 >Emitted(55, 13) Source(24, 82) + SourceIndex(3) +2 >Emitted(55, 14) Source(24, 83) + SourceIndex(3) +3 >Emitted(55, 14) Source(24, 58) + SourceIndex(3) +4 >Emitted(55, 18) Source(24, 83) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -978,10 +980,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(55, 13) Source(24, 71) + SourceIndex(3) -2 >Emitted(55, 32) Source(24, 80) + SourceIndex(3) -3 >Emitted(55, 44) Source(24, 83) + SourceIndex(3) -4 >Emitted(55, 45) Source(24, 83) + SourceIndex(3) +1->Emitted(56, 13) Source(24, 71) + SourceIndex(3) +2 >Emitted(56, 32) Source(24, 80) + SourceIndex(3) +3 >Emitted(56, 44) Source(24, 83) + SourceIndex(3) +4 >Emitted(56, 45) Source(24, 83) + SourceIndex(3) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^ @@ -1002,15 +1004,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(56, 9) Source(24, 84) + SourceIndex(3) -2 >Emitted(56, 10) Source(24, 85) + SourceIndex(3) -3 >Emitted(56, 12) Source(24, 46) + SourceIndex(3) -4 >Emitted(56, 21) Source(24, 55) + SourceIndex(3) -5 >Emitted(56, 24) Source(24, 46) + SourceIndex(3) -6 >Emitted(56, 43) Source(24, 55) + SourceIndex(3) -7 >Emitted(56, 48) Source(24, 46) + SourceIndex(3) -8 >Emitted(56, 67) Source(24, 55) + SourceIndex(3) -9 >Emitted(56, 75) Source(24, 85) + SourceIndex(3) +1->Emitted(57, 9) Source(24, 84) + SourceIndex(3) +2 >Emitted(57, 10) Source(24, 85) + SourceIndex(3) +3 >Emitted(57, 12) Source(24, 46) + SourceIndex(3) +4 >Emitted(57, 21) Source(24, 55) + SourceIndex(3) +5 >Emitted(57, 24) Source(24, 46) + SourceIndex(3) +6 >Emitted(57, 43) Source(24, 55) + SourceIndex(3) +7 >Emitted(57, 48) Source(24, 46) + SourceIndex(3) +8 >Emitted(57, 67) Source(24, 55) + SourceIndex(3) +9 >Emitted(57, 75) Source(24, 85) + SourceIndex(3) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^ @@ -1031,15 +1033,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(57, 5) Source(24, 84) + SourceIndex(3) -2 >Emitted(57, 6) Source(24, 85) + SourceIndex(3) -3 >Emitted(57, 8) Source(24, 36) + SourceIndex(3) -4 >Emitted(57, 17) Source(24, 45) + SourceIndex(3) -5 >Emitted(57, 20) Source(24, 36) + SourceIndex(3) -6 >Emitted(57, 37) Source(24, 45) + SourceIndex(3) -7 >Emitted(57, 42) Source(24, 36) + SourceIndex(3) -8 >Emitted(57, 59) Source(24, 45) + SourceIndex(3) -9 >Emitted(57, 67) Source(24, 85) + SourceIndex(3) +1 >Emitted(58, 5) Source(24, 84) + SourceIndex(3) +2 >Emitted(58, 6) Source(24, 85) + SourceIndex(3) +3 >Emitted(58, 8) Source(24, 36) + SourceIndex(3) +4 >Emitted(58, 17) Source(24, 45) + SourceIndex(3) +5 >Emitted(58, 20) Source(24, 36) + SourceIndex(3) +6 >Emitted(58, 37) Source(24, 45) + SourceIndex(3) +7 >Emitted(58, 42) Source(24, 36) + SourceIndex(3) +8 >Emitted(58, 59) Source(24, 45) + SourceIndex(3) +9 >Emitted(58, 67) Source(24, 85) + SourceIndex(3) --- >>> normalN.someImport = someNamespace.C; 1 >^^^^ @@ -1057,13 +1059,13 @@ sourceFile:../second/second_part1.ts 5 > . 6 > C 7 > ; -1 >Emitted(58, 5) Source(25, 33) + SourceIndex(3) -2 >Emitted(58, 23) Source(25, 43) + SourceIndex(3) -3 >Emitted(58, 26) Source(25, 46) + SourceIndex(3) -4 >Emitted(58, 39) Source(25, 59) + SourceIndex(3) -5 >Emitted(58, 40) Source(25, 60) + SourceIndex(3) -6 >Emitted(58, 41) Source(25, 61) + SourceIndex(3) -7 >Emitted(58, 42) Source(25, 62) + SourceIndex(3) +1 >Emitted(59, 5) Source(25, 33) + SourceIndex(3) +2 >Emitted(59, 23) Source(25, 43) + SourceIndex(3) +3 >Emitted(59, 26) Source(25, 46) + SourceIndex(3) +4 >Emitted(59, 39) Source(25, 59) + SourceIndex(3) +5 >Emitted(59, 40) Source(25, 60) + SourceIndex(3) +6 >Emitted(59, 41) Source(25, 61) + SourceIndex(3) +7 >Emitted(59, 42) Source(25, 62) + SourceIndex(3) --- >>> normalN.internalConst = 10; 1 >^^^^ @@ -1078,11 +1080,11 @@ sourceFile:../second/second_part1.ts 3 > = 4 > 10 5 > ; -1 >Emitted(59, 5) Source(27, 32) + SourceIndex(3) -2 >Emitted(59, 26) Source(27, 45) + SourceIndex(3) -3 >Emitted(59, 29) Source(27, 48) + SourceIndex(3) -4 >Emitted(59, 31) Source(27, 50) + SourceIndex(3) -5 >Emitted(59, 32) Source(27, 51) + SourceIndex(3) +1 >Emitted(60, 5) Source(27, 32) + SourceIndex(3) +2 >Emitted(60, 26) Source(27, 45) + SourceIndex(3) +3 >Emitted(60, 29) Source(27, 48) + SourceIndex(3) +4 >Emitted(60, 31) Source(27, 50) + SourceIndex(3) +5 >Emitted(60, 32) Source(27, 51) + SourceIndex(3) --- >>> var internalEnum; 1 >^^^^ @@ -1093,9 +1095,9 @@ sourceFile:../second/second_part1.ts > /*@internal*/ 2 > export enum 3 > internalEnum { a, b, c } -1 >Emitted(60, 5) Source(28, 19) + SourceIndex(3) -2 >Emitted(60, 9) Source(28, 31) + SourceIndex(3) -3 >Emitted(60, 21) Source(28, 55) + SourceIndex(3) +1 >Emitted(61, 5) Source(28, 19) + SourceIndex(3) +2 >Emitted(61, 9) Source(28, 31) + SourceIndex(3) +3 >Emitted(61, 21) Source(28, 55) + SourceIndex(3) --- >>> (function (internalEnum) { 1->^^^^ @@ -1105,9 +1107,9 @@ sourceFile:../second/second_part1.ts 1-> 2 > export enum 3 > internalEnum -1->Emitted(61, 5) Source(28, 19) + SourceIndex(3) -2 >Emitted(61, 16) Source(28, 31) + SourceIndex(3) -3 >Emitted(61, 28) Source(28, 43) + SourceIndex(3) +1->Emitted(62, 5) Source(28, 19) + SourceIndex(3) +2 >Emitted(62, 16) Source(28, 31) + SourceIndex(3) +3 >Emitted(62, 28) Source(28, 43) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -1117,9 +1119,9 @@ sourceFile:../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(62, 9) Source(28, 46) + SourceIndex(3) -2 >Emitted(62, 50) Source(28, 47) + SourceIndex(3) -3 >Emitted(62, 51) Source(28, 47) + SourceIndex(3) +1->Emitted(63, 9) Source(28, 46) + SourceIndex(3) +2 >Emitted(63, 50) Source(28, 47) + SourceIndex(3) +3 >Emitted(63, 51) Source(28, 47) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -1129,9 +1131,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(63, 9) Source(28, 49) + SourceIndex(3) -2 >Emitted(63, 50) Source(28, 50) + SourceIndex(3) -3 >Emitted(63, 51) Source(28, 50) + SourceIndex(3) +1->Emitted(64, 9) Source(28, 49) + SourceIndex(3) +2 >Emitted(64, 50) Source(28, 50) + SourceIndex(3) +3 >Emitted(64, 51) Source(28, 50) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -1141,9 +1143,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(64, 9) Source(28, 52) + SourceIndex(3) -2 >Emitted(64, 50) Source(28, 53) + SourceIndex(3) -3 >Emitted(64, 51) Source(28, 53) + SourceIndex(3) +1->Emitted(65, 9) Source(28, 52) + SourceIndex(3) +2 >Emitted(65, 50) Source(28, 53) + SourceIndex(3) +3 >Emitted(65, 51) Source(28, 53) + SourceIndex(3) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^ @@ -1164,15 +1166,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(65, 5) Source(28, 54) + SourceIndex(3) -2 >Emitted(65, 6) Source(28, 55) + SourceIndex(3) -3 >Emitted(65, 8) Source(28, 31) + SourceIndex(3) -4 >Emitted(65, 20) Source(28, 43) + SourceIndex(3) -5 >Emitted(65, 23) Source(28, 31) + SourceIndex(3) -6 >Emitted(65, 43) Source(28, 43) + SourceIndex(3) -7 >Emitted(65, 48) Source(28, 31) + SourceIndex(3) -8 >Emitted(65, 68) Source(28, 43) + SourceIndex(3) -9 >Emitted(65, 76) Source(28, 55) + SourceIndex(3) +1->Emitted(66, 5) Source(28, 54) + SourceIndex(3) +2 >Emitted(66, 6) Source(28, 55) + SourceIndex(3) +3 >Emitted(66, 8) Source(28, 31) + SourceIndex(3) +4 >Emitted(66, 20) Source(28, 43) + SourceIndex(3) +5 >Emitted(66, 23) Source(28, 31) + SourceIndex(3) +6 >Emitted(66, 43) Source(28, 43) + SourceIndex(3) +7 >Emitted(66, 48) Source(28, 31) + SourceIndex(3) +8 >Emitted(66, 68) Source(28, 43) + SourceIndex(3) +9 >Emitted(66, 76) Source(28, 55) + SourceIndex(3) --- >>>})(normalN || (normalN = {})); 1 > @@ -1200,26 +1202,26 @@ sourceFile:../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(66, 1) Source(29, 1) + SourceIndex(3) -2 >Emitted(66, 2) Source(29, 2) + SourceIndex(3) -3 >Emitted(66, 4) Source(20, 11) + SourceIndex(3) -4 >Emitted(66, 11) Source(20, 18) + SourceIndex(3) -5 >Emitted(66, 16) Source(20, 11) + SourceIndex(3) -6 >Emitted(66, 23) Source(20, 18) + SourceIndex(3) -7 >Emitted(66, 31) Source(29, 2) + SourceIndex(3) +1 >Emitted(67, 1) Source(29, 1) + SourceIndex(3) +2 >Emitted(67, 2) Source(29, 2) + SourceIndex(3) +3 >Emitted(67, 4) Source(20, 11) + SourceIndex(3) +4 >Emitted(67, 11) Source(20, 18) + SourceIndex(3) +5 >Emitted(67, 16) Source(20, 11) + SourceIndex(3) +6 >Emitted(67, 23) Source(20, 18) + SourceIndex(3) +7 >Emitted(67, 31) Source(29, 2) + SourceIndex(3) --- >>>var internalC = (function () { 1-> 2 >^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> >/*@internal*/ -1->Emitted(67, 1) Source(30, 15) + SourceIndex(3) +1->Emitted(68, 1) Source(30, 15) + SourceIndex(3) --- >>> function internalC() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(68, 5) Source(30, 15) + SourceIndex(3) +1->Emitted(69, 5) Source(30, 15) + SourceIndex(3) --- >>> } 1->^^^^ @@ -1227,16 +1229,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->class internalC { 2 > } -1->Emitted(69, 5) Source(30, 32) + SourceIndex(3) -2 >Emitted(69, 6) Source(30, 33) + SourceIndex(3) +1->Emitted(70, 5) Source(30, 32) + SourceIndex(3) +2 >Emitted(70, 6) Source(30, 33) + SourceIndex(3) --- >>> return internalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(70, 5) Source(30, 32) + SourceIndex(3) -2 >Emitted(70, 21) Source(30, 33) + SourceIndex(3) +1->Emitted(71, 5) Source(30, 32) + SourceIndex(3) +2 >Emitted(71, 21) Source(30, 33) + SourceIndex(3) --- >>>}()); 1 > @@ -1248,10 +1250,10 @@ sourceFile:../second/second_part1.ts 2 >} 3 > 4 > class internalC {} -1 >Emitted(71, 1) Source(30, 32) + SourceIndex(3) -2 >Emitted(71, 2) Source(30, 33) + SourceIndex(3) -3 >Emitted(71, 2) Source(30, 15) + SourceIndex(3) -4 >Emitted(71, 6) Source(30, 33) + SourceIndex(3) +1 >Emitted(72, 1) Source(30, 32) + SourceIndex(3) +2 >Emitted(72, 2) Source(30, 33) + SourceIndex(3) +3 >Emitted(72, 2) Source(30, 15) + SourceIndex(3) +4 >Emitted(72, 6) Source(30, 33) + SourceIndex(3) --- >>>function internalfoo() { } 1-> @@ -1265,11 +1267,11 @@ sourceFile:../second/second_part1.ts 3 > internalfoo 4 > () { 5 > } -1->Emitted(72, 1) Source(31, 15) + SourceIndex(3) -2 >Emitted(72, 10) Source(31, 24) + SourceIndex(3) -3 >Emitted(72, 21) Source(31, 35) + SourceIndex(3) -4 >Emitted(72, 26) Source(31, 39) + SourceIndex(3) -5 >Emitted(72, 27) Source(31, 40) + SourceIndex(3) +1->Emitted(73, 1) Source(31, 15) + SourceIndex(3) +2 >Emitted(73, 10) Source(31, 24) + SourceIndex(3) +3 >Emitted(73, 21) Source(31, 35) + SourceIndex(3) +4 >Emitted(73, 26) Source(31, 39) + SourceIndex(3) +5 >Emitted(73, 27) Source(31, 40) + SourceIndex(3) --- >>>var internalNamespace; 1 > @@ -1282,10 +1284,10 @@ sourceFile:../second/second_part1.ts 2 >namespace 3 > internalNamespace 4 > { export class someClass {} } -1 >Emitted(73, 1) Source(32, 15) + SourceIndex(3) -2 >Emitted(73, 5) Source(32, 25) + SourceIndex(3) -3 >Emitted(73, 22) Source(32, 42) + SourceIndex(3) -4 >Emitted(73, 23) Source(32, 72) + SourceIndex(3) +1 >Emitted(74, 1) Source(32, 15) + SourceIndex(3) +2 >Emitted(74, 5) Source(32, 25) + SourceIndex(3) +3 >Emitted(74, 22) Source(32, 42) + SourceIndex(3) +4 >Emitted(74, 23) Source(32, 72) + SourceIndex(3) --- >>>(function (internalNamespace) { 1-> @@ -1295,21 +1297,21 @@ sourceFile:../second/second_part1.ts 1-> 2 >namespace 3 > internalNamespace -1->Emitted(74, 1) Source(32, 15) + SourceIndex(3) -2 >Emitted(74, 12) Source(32, 25) + SourceIndex(3) -3 >Emitted(74, 29) Source(32, 42) + SourceIndex(3) +1->Emitted(75, 1) Source(32, 15) + SourceIndex(3) +2 >Emitted(75, 12) Source(32, 25) + SourceIndex(3) +3 >Emitted(75, 29) Source(32, 42) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(75, 5) Source(32, 45) + SourceIndex(3) +1->Emitted(76, 5) Source(32, 45) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(76, 9) Source(32, 45) + SourceIndex(3) +1->Emitted(77, 9) Source(32, 45) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -1317,16 +1319,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(77, 9) Source(32, 69) + SourceIndex(3) -2 >Emitted(77, 10) Source(32, 70) + SourceIndex(3) +1->Emitted(78, 9) Source(32, 69) + SourceIndex(3) +2 >Emitted(78, 10) Source(32, 70) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(78, 9) Source(32, 69) + SourceIndex(3) -2 >Emitted(78, 25) Source(32, 70) + SourceIndex(3) +1->Emitted(79, 9) Source(32, 69) + SourceIndex(3) +2 >Emitted(79, 25) Source(32, 70) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -1338,10 +1340,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(79, 5) Source(32, 69) + SourceIndex(3) -2 >Emitted(79, 6) Source(32, 70) + SourceIndex(3) -3 >Emitted(79, 6) Source(32, 45) + SourceIndex(3) -4 >Emitted(79, 10) Source(32, 70) + SourceIndex(3) +1 >Emitted(80, 5) Source(32, 69) + SourceIndex(3) +2 >Emitted(80, 6) Source(32, 70) + SourceIndex(3) +3 >Emitted(80, 6) Source(32, 45) + SourceIndex(3) +4 >Emitted(80, 10) Source(32, 70) + SourceIndex(3) --- >>> internalNamespace.someClass = someClass; 1->^^^^ @@ -1353,10 +1355,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(80, 5) Source(32, 58) + SourceIndex(3) -2 >Emitted(80, 32) Source(32, 67) + SourceIndex(3) -3 >Emitted(80, 44) Source(32, 70) + SourceIndex(3) -4 >Emitted(80, 45) Source(32, 70) + SourceIndex(3) +1->Emitted(81, 5) Source(32, 58) + SourceIndex(3) +2 >Emitted(81, 32) Source(32, 67) + SourceIndex(3) +3 >Emitted(81, 44) Source(32, 70) + SourceIndex(3) +4 >Emitted(81, 45) Source(32, 70) + SourceIndex(3) --- >>>})(internalNamespace || (internalNamespace = {})); 1-> @@ -1373,13 +1375,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalNamespace 7 > { export class someClass {} } -1->Emitted(81, 1) Source(32, 71) + SourceIndex(3) -2 >Emitted(81, 2) Source(32, 72) + SourceIndex(3) -3 >Emitted(81, 4) Source(32, 25) + SourceIndex(3) -4 >Emitted(81, 21) Source(32, 42) + SourceIndex(3) -5 >Emitted(81, 26) Source(32, 25) + SourceIndex(3) -6 >Emitted(81, 43) Source(32, 42) + SourceIndex(3) -7 >Emitted(81, 51) Source(32, 72) + SourceIndex(3) +1->Emitted(82, 1) Source(32, 71) + SourceIndex(3) +2 >Emitted(82, 2) Source(32, 72) + SourceIndex(3) +3 >Emitted(82, 4) Source(32, 25) + SourceIndex(3) +4 >Emitted(82, 21) Source(32, 42) + SourceIndex(3) +5 >Emitted(82, 26) Source(32, 25) + SourceIndex(3) +6 >Emitted(82, 43) Source(32, 42) + SourceIndex(3) +7 >Emitted(82, 51) Source(32, 72) + SourceIndex(3) --- >>>var internalOther; 1 > @@ -1392,10 +1394,10 @@ sourceFile:../second/second_part1.ts 2 >namespace 3 > internalOther 4 > .something { export class someClass {} } -1 >Emitted(82, 1) Source(33, 15) + SourceIndex(3) -2 >Emitted(82, 5) Source(33, 25) + SourceIndex(3) -3 >Emitted(82, 18) Source(33, 38) + SourceIndex(3) -4 >Emitted(82, 19) Source(33, 78) + SourceIndex(3) +1 >Emitted(83, 1) Source(33, 15) + SourceIndex(3) +2 >Emitted(83, 5) Source(33, 25) + SourceIndex(3) +3 >Emitted(83, 18) Source(33, 38) + SourceIndex(3) +4 >Emitted(83, 19) Source(33, 78) + SourceIndex(3) --- >>>(function (internalOther) { 1-> @@ -1404,9 +1406,9 @@ sourceFile:../second/second_part1.ts 1-> 2 >namespace 3 > internalOther -1->Emitted(83, 1) Source(33, 15) + SourceIndex(3) -2 >Emitted(83, 12) Source(33, 25) + SourceIndex(3) -3 >Emitted(83, 25) Source(33, 38) + SourceIndex(3) +1->Emitted(84, 1) Source(33, 15) + SourceIndex(3) +2 >Emitted(84, 12) Source(33, 25) + SourceIndex(3) +3 >Emitted(84, 25) Source(33, 38) + SourceIndex(3) --- >>> var something; 1 >^^^^ @@ -1418,10 +1420,10 @@ sourceFile:../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(84, 5) Source(33, 39) + SourceIndex(3) -2 >Emitted(84, 9) Source(33, 39) + SourceIndex(3) -3 >Emitted(84, 18) Source(33, 48) + SourceIndex(3) -4 >Emitted(84, 19) Source(33, 78) + SourceIndex(3) +1 >Emitted(85, 5) Source(33, 39) + SourceIndex(3) +2 >Emitted(85, 9) Source(33, 39) + SourceIndex(3) +3 >Emitted(85, 18) Source(33, 48) + SourceIndex(3) +4 >Emitted(85, 19) Source(33, 78) + SourceIndex(3) --- >>> (function (something) { 1->^^^^ @@ -1431,21 +1433,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(85, 5) Source(33, 39) + SourceIndex(3) -2 >Emitted(85, 16) Source(33, 39) + SourceIndex(3) -3 >Emitted(85, 25) Source(33, 48) + SourceIndex(3) +1->Emitted(86, 5) Source(33, 39) + SourceIndex(3) +2 >Emitted(86, 16) Source(33, 39) + SourceIndex(3) +3 >Emitted(86, 25) Source(33, 48) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(86, 9) Source(33, 51) + SourceIndex(3) +1->Emitted(87, 9) Source(33, 51) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(87, 13) Source(33, 51) + SourceIndex(3) +1->Emitted(88, 13) Source(33, 51) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -1453,16 +1455,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(88, 13) Source(33, 75) + SourceIndex(3) -2 >Emitted(88, 14) Source(33, 76) + SourceIndex(3) +1->Emitted(89, 13) Source(33, 75) + SourceIndex(3) +2 >Emitted(89, 14) Source(33, 76) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(89, 13) Source(33, 75) + SourceIndex(3) -2 >Emitted(89, 29) Source(33, 76) + SourceIndex(3) +1->Emitted(90, 13) Source(33, 75) + SourceIndex(3) +2 >Emitted(90, 29) Source(33, 76) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -1474,10 +1476,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(90, 9) Source(33, 75) + SourceIndex(3) -2 >Emitted(90, 10) Source(33, 76) + SourceIndex(3) -3 >Emitted(90, 10) Source(33, 51) + SourceIndex(3) -4 >Emitted(90, 14) Source(33, 76) + SourceIndex(3) +1 >Emitted(91, 9) Source(33, 75) + SourceIndex(3) +2 >Emitted(91, 10) Source(33, 76) + SourceIndex(3) +3 >Emitted(91, 10) Source(33, 51) + SourceIndex(3) +4 >Emitted(91, 14) Source(33, 76) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^ @@ -1489,10 +1491,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(91, 9) Source(33, 64) + SourceIndex(3) -2 >Emitted(91, 28) Source(33, 73) + SourceIndex(3) -3 >Emitted(91, 40) Source(33, 76) + SourceIndex(3) -4 >Emitted(91, 41) Source(33, 76) + SourceIndex(3) +1->Emitted(92, 9) Source(33, 64) + SourceIndex(3) +2 >Emitted(92, 28) Source(33, 73) + SourceIndex(3) +3 >Emitted(92, 40) Source(33, 76) + SourceIndex(3) +4 >Emitted(92, 41) Source(33, 76) + SourceIndex(3) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^ @@ -1513,15 +1515,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(92, 5) Source(33, 77) + SourceIndex(3) -2 >Emitted(92, 6) Source(33, 78) + SourceIndex(3) -3 >Emitted(92, 8) Source(33, 39) + SourceIndex(3) -4 >Emitted(92, 17) Source(33, 48) + SourceIndex(3) -5 >Emitted(92, 20) Source(33, 39) + SourceIndex(3) -6 >Emitted(92, 43) Source(33, 48) + SourceIndex(3) -7 >Emitted(92, 48) Source(33, 39) + SourceIndex(3) -8 >Emitted(92, 71) Source(33, 48) + SourceIndex(3) -9 >Emitted(92, 79) Source(33, 78) + SourceIndex(3) +1->Emitted(93, 5) Source(33, 77) + SourceIndex(3) +2 >Emitted(93, 6) Source(33, 78) + SourceIndex(3) +3 >Emitted(93, 8) Source(33, 39) + SourceIndex(3) +4 >Emitted(93, 17) Source(33, 48) + SourceIndex(3) +5 >Emitted(93, 20) Source(33, 39) + SourceIndex(3) +6 >Emitted(93, 43) Source(33, 48) + SourceIndex(3) +7 >Emitted(93, 48) Source(33, 39) + SourceIndex(3) +8 >Emitted(93, 71) Source(33, 48) + SourceIndex(3) +9 >Emitted(93, 79) Source(33, 78) + SourceIndex(3) --- >>>})(internalOther || (internalOther = {})); 1 > @@ -1539,13 +1541,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalOther 7 > .something { export class someClass {} } -1 >Emitted(93, 1) Source(33, 77) + SourceIndex(3) -2 >Emitted(93, 2) Source(33, 78) + SourceIndex(3) -3 >Emitted(93, 4) Source(33, 25) + SourceIndex(3) -4 >Emitted(93, 17) Source(33, 38) + SourceIndex(3) -5 >Emitted(93, 22) Source(33, 25) + SourceIndex(3) -6 >Emitted(93, 35) Source(33, 38) + SourceIndex(3) -7 >Emitted(93, 43) Source(33, 78) + SourceIndex(3) +1 >Emitted(94, 1) Source(33, 77) + SourceIndex(3) +2 >Emitted(94, 2) Source(33, 78) + SourceIndex(3) +3 >Emitted(94, 4) Source(33, 25) + SourceIndex(3) +4 >Emitted(94, 17) Source(33, 38) + SourceIndex(3) +5 >Emitted(94, 22) Source(33, 25) + SourceIndex(3) +6 >Emitted(94, 35) Source(33, 38) + SourceIndex(3) +7 >Emitted(94, 43) Source(33, 78) + SourceIndex(3) --- >>>var internalImport = internalNamespace.someClass; 1-> @@ -1565,14 +1567,14 @@ sourceFile:../second/second_part1.ts 6 > . 7 > someClass 8 > ; -1->Emitted(94, 1) Source(34, 15) + SourceIndex(3) -2 >Emitted(94, 5) Source(34, 22) + SourceIndex(3) -3 >Emitted(94, 19) Source(34, 36) + SourceIndex(3) -4 >Emitted(94, 22) Source(34, 39) + SourceIndex(3) -5 >Emitted(94, 39) Source(34, 56) + SourceIndex(3) -6 >Emitted(94, 40) Source(34, 57) + SourceIndex(3) -7 >Emitted(94, 49) Source(34, 66) + SourceIndex(3) -8 >Emitted(94, 50) Source(34, 67) + SourceIndex(3) +1->Emitted(95, 1) Source(34, 15) + SourceIndex(3) +2 >Emitted(95, 5) Source(34, 22) + SourceIndex(3) +3 >Emitted(95, 19) Source(34, 36) + SourceIndex(3) +4 >Emitted(95, 22) Source(34, 39) + SourceIndex(3) +5 >Emitted(95, 39) Source(34, 56) + SourceIndex(3) +6 >Emitted(95, 40) Source(34, 57) + SourceIndex(3) +7 >Emitted(95, 49) Source(34, 66) + SourceIndex(3) +8 >Emitted(95, 50) Source(34, 67) + SourceIndex(3) --- >>>var internalConst = 10; 1 > @@ -1589,12 +1591,12 @@ sourceFile:../second/second_part1.ts 4 > = 5 > 10 6 > ; -1 >Emitted(95, 1) Source(36, 15) + SourceIndex(3) -2 >Emitted(95, 5) Source(36, 21) + SourceIndex(3) -3 >Emitted(95, 18) Source(36, 34) + SourceIndex(3) -4 >Emitted(95, 21) Source(36, 37) + SourceIndex(3) -5 >Emitted(95, 23) Source(36, 39) + SourceIndex(3) -6 >Emitted(95, 24) Source(36, 40) + SourceIndex(3) +1 >Emitted(96, 1) Source(36, 15) + SourceIndex(3) +2 >Emitted(96, 5) Source(36, 21) + SourceIndex(3) +3 >Emitted(96, 18) Source(36, 34) + SourceIndex(3) +4 >Emitted(96, 21) Source(36, 37) + SourceIndex(3) +5 >Emitted(96, 23) Source(36, 39) + SourceIndex(3) +6 >Emitted(96, 24) Source(36, 40) + SourceIndex(3) --- >>>var internalEnum; 1 > @@ -1605,9 +1607,9 @@ sourceFile:../second/second_part1.ts >/*@internal*/ 2 >enum 3 > internalEnum { a, b, c } -1 >Emitted(96, 1) Source(37, 15) + SourceIndex(3) -2 >Emitted(96, 5) Source(37, 20) + SourceIndex(3) -3 >Emitted(96, 17) Source(37, 44) + SourceIndex(3) +1 >Emitted(97, 1) Source(37, 15) + SourceIndex(3) +2 >Emitted(97, 5) Source(37, 20) + SourceIndex(3) +3 >Emitted(97, 17) Source(37, 44) + SourceIndex(3) --- >>>(function (internalEnum) { 1-> @@ -1617,9 +1619,9 @@ sourceFile:../second/second_part1.ts 1-> 2 >enum 3 > internalEnum -1->Emitted(97, 1) Source(37, 15) + SourceIndex(3) -2 >Emitted(97, 12) Source(37, 20) + SourceIndex(3) -3 >Emitted(97, 24) Source(37, 32) + SourceIndex(3) +1->Emitted(98, 1) Source(37, 15) + SourceIndex(3) +2 >Emitted(98, 12) Source(37, 20) + SourceIndex(3) +3 >Emitted(98, 24) Source(37, 32) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^ @@ -1629,9 +1631,9 @@ sourceFile:../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(98, 5) Source(37, 35) + SourceIndex(3) -2 >Emitted(98, 46) Source(37, 36) + SourceIndex(3) -3 >Emitted(98, 47) Source(37, 36) + SourceIndex(3) +1->Emitted(99, 5) Source(37, 35) + SourceIndex(3) +2 >Emitted(99, 46) Source(37, 36) + SourceIndex(3) +3 >Emitted(99, 47) Source(37, 36) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^ @@ -1641,9 +1643,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(99, 5) Source(37, 38) + SourceIndex(3) -2 >Emitted(99, 46) Source(37, 39) + SourceIndex(3) -3 >Emitted(99, 47) Source(37, 39) + SourceIndex(3) +1->Emitted(100, 5) Source(37, 38) + SourceIndex(3) +2 >Emitted(100, 46) Source(37, 39) + SourceIndex(3) +3 >Emitted(100, 47) Source(37, 39) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^ @@ -1652,9 +1654,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(100, 5) Source(37, 41) + SourceIndex(3) -2 >Emitted(100, 46) Source(37, 42) + SourceIndex(3) -3 >Emitted(100, 47) Source(37, 42) + SourceIndex(3) +1->Emitted(101, 5) Source(37, 41) + SourceIndex(3) +2 >Emitted(101, 46) Source(37, 42) + SourceIndex(3) +3 >Emitted(101, 47) Source(37, 42) + SourceIndex(3) --- >>>})(internalEnum || (internalEnum = {})); 1 > @@ -1671,13 +1673,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalEnum 7 > { a, b, c } -1 >Emitted(101, 1) Source(37, 43) + SourceIndex(3) -2 >Emitted(101, 2) Source(37, 44) + SourceIndex(3) -3 >Emitted(101, 4) Source(37, 20) + SourceIndex(3) -4 >Emitted(101, 16) Source(37, 32) + SourceIndex(3) -5 >Emitted(101, 21) Source(37, 20) + SourceIndex(3) -6 >Emitted(101, 33) Source(37, 32) + SourceIndex(3) -7 >Emitted(101, 41) Source(37, 44) + SourceIndex(3) +1 >Emitted(102, 1) Source(37, 43) + SourceIndex(3) +2 >Emitted(102, 2) Source(37, 44) + SourceIndex(3) +3 >Emitted(102, 4) Source(37, 20) + SourceIndex(3) +4 >Emitted(102, 16) Source(37, 32) + SourceIndex(3) +5 >Emitted(102, 21) Source(37, 20) + SourceIndex(3) +6 >Emitted(102, 33) Source(37, 32) + SourceIndex(3) +7 >Emitted(102, 41) Source(37, 44) + SourceIndex(3) --- ------------------------------------------------------------------- emittedFile:/src/2/second-output.js @@ -1687,13 +1689,13 @@ sourceFile:../second/second_part2.ts 1 > 2 >^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(102, 1) Source(1, 1) + SourceIndex(4) +1 >Emitted(103, 1) Source(1, 1) + SourceIndex(4) --- >>> function C() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(103, 5) Source(1, 1) + SourceIndex(4) +1->Emitted(104, 5) Source(1, 1) + SourceIndex(4) --- >>> } 1->^^^^ @@ -1705,8 +1707,8 @@ sourceFile:../second/second_part2.ts > } > 2 > } -1->Emitted(104, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(104, 6) Source(5, 2) + SourceIndex(4) +1->Emitted(105, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(105, 6) Source(5, 2) + SourceIndex(4) --- >>> C.prototype.doSomething = function () { 1->^^^^ @@ -1716,9 +1718,9 @@ sourceFile:../second/second_part2.ts 1-> 2 > doSomething 3 > -1->Emitted(105, 5) Source(2, 5) + SourceIndex(4) -2 >Emitted(105, 28) Source(2, 16) + SourceIndex(4) -3 >Emitted(105, 31) Source(2, 5) + SourceIndex(4) +1->Emitted(106, 5) Source(2, 5) + SourceIndex(4) +2 >Emitted(106, 28) Source(2, 16) + SourceIndex(4) +3 >Emitted(106, 31) Source(2, 5) + SourceIndex(4) --- >>> console.log("something got done"); 1->^^^^^^^^ @@ -1738,14 +1740,14 @@ sourceFile:../second/second_part2.ts 6 > "something got done" 7 > ) 8 > ; -1->Emitted(106, 9) Source(3, 9) + SourceIndex(4) -2 >Emitted(106, 16) Source(3, 16) + SourceIndex(4) -3 >Emitted(106, 17) Source(3, 17) + SourceIndex(4) -4 >Emitted(106, 20) Source(3, 20) + SourceIndex(4) -5 >Emitted(106, 21) Source(3, 21) + SourceIndex(4) -6 >Emitted(106, 41) Source(3, 41) + SourceIndex(4) -7 >Emitted(106, 42) Source(3, 42) + SourceIndex(4) -8 >Emitted(106, 43) Source(3, 43) + SourceIndex(4) +1->Emitted(107, 9) Source(3, 9) + SourceIndex(4) +2 >Emitted(107, 16) Source(3, 16) + SourceIndex(4) +3 >Emitted(107, 17) Source(3, 17) + SourceIndex(4) +4 >Emitted(107, 20) Source(3, 20) + SourceIndex(4) +5 >Emitted(107, 21) Source(3, 21) + SourceIndex(4) +6 >Emitted(107, 41) Source(3, 41) + SourceIndex(4) +7 >Emitted(107, 42) Source(3, 42) + SourceIndex(4) +8 >Emitted(107, 43) Source(3, 43) + SourceIndex(4) --- >>> }; 1 >^^^^ @@ -1754,8 +1756,8 @@ sourceFile:../second/second_part2.ts 1 > > 2 > } -1 >Emitted(107, 5) Source(4, 5) + SourceIndex(4) -2 >Emitted(107, 6) Source(4, 6) + SourceIndex(4) +1 >Emitted(108, 5) Source(4, 5) + SourceIndex(4) +2 >Emitted(108, 6) Source(4, 6) + SourceIndex(4) --- >>> return C; 1->^^^^ @@ -1763,8 +1765,8 @@ sourceFile:../second/second_part2.ts 1-> > 2 > } -1->Emitted(108, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(108, 13) Source(5, 2) + SourceIndex(4) +1->Emitted(109, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(109, 13) Source(5, 2) + SourceIndex(4) --- >>>}()); 1 > @@ -1780,10 +1782,10 @@ sourceFile:../second/second_part2.ts > console.log("something got done"); > } > } -1 >Emitted(109, 1) Source(5, 1) + SourceIndex(4) -2 >Emitted(109, 2) Source(5, 2) + SourceIndex(4) -3 >Emitted(109, 2) Source(1, 1) + SourceIndex(4) -4 >Emitted(109, 6) Source(5, 2) + SourceIndex(4) +1 >Emitted(110, 1) Source(5, 1) + SourceIndex(4) +2 >Emitted(110, 2) Source(5, 2) + SourceIndex(4) +3 >Emitted(110, 2) Source(1, 1) + SourceIndex(4) +4 >Emitted(110, 6) Source(5, 2) + SourceIndex(4) --- >>>//# sourceMappingURL=second-output.js.map @@ -1812,7 +1814,7 @@ sourceFile:../second/second_part2.ts }, { "pos": 127, - "end": 3180, + "end": 3228, "kind": "text" } ] @@ -1894,7 +1896,7 @@ function f() { } ---------------------------------------------------------------------- -text: (127-3180) +text: (127-3228) var N; (function (N) { function f() { @@ -1905,8 +1907,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -2363,8 +2366,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -2460,7 +2464,7 @@ c.doSomething(); //# sourceMappingURL=third-output.js.map //// [/src/third/thirdjs/output/third-output.js.map] -{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} //// [/src/third/thirdjs/output/third-output.js.map.baseline.txt] =================================================================== @@ -2789,13 +2793,14 @@ sourceFile:../../../second/second_part1.ts >>> } 1->^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1->constructor() { 2 > } 1->Emitted(17, 5) Source(14, 35) + SourceIndex(3) 2 >Emitted(17, 6) Source(14, 36) + SourceIndex(3) --- ->>> normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> normalC_prototype.method = function () { }; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^ @@ -2809,13 +2814,13 @@ sourceFile:../../../second/second_part1.ts 3 > 4 > method() { 5 > } -1->Emitted(18, 5) Source(16, 19) + SourceIndex(3) -2 >Emitted(18, 29) Source(16, 25) + SourceIndex(3) -3 >Emitted(18, 32) Source(16, 19) + SourceIndex(3) -4 >Emitted(18, 46) Source(16, 30) + SourceIndex(3) -5 >Emitted(18, 47) Source(16, 31) + SourceIndex(3) +1->Emitted(19, 5) Source(16, 19) + SourceIndex(3) +2 >Emitted(19, 29) Source(16, 25) + SourceIndex(3) +3 >Emitted(19, 32) Source(16, 19) + SourceIndex(3) +4 >Emitted(19, 46) Source(16, 30) + SourceIndex(3) +5 >Emitted(19, 47) Source(16, 31) + SourceIndex(3) --- ->>> Object.defineProperty(normalC.prototype, "c", { +>>> Object.defineProperty(normalC_prototype, "c", { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -2823,9 +2828,9 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ 2 > get 3 > c -1->Emitted(19, 5) Source(17, 19) + SourceIndex(3) -2 >Emitted(19, 27) Source(17, 23) + SourceIndex(3) -3 >Emitted(19, 49) Source(17, 24) + SourceIndex(3) +1->Emitted(20, 5) Source(17, 19) + SourceIndex(3) +2 >Emitted(20, 27) Source(17, 23) + SourceIndex(3) +3 >Emitted(20, 49) Source(17, 24) + SourceIndex(3) --- >>> get: function () { return 10; }, 1 >^^^^^^^^^^^^^ @@ -2842,13 +2847,13 @@ sourceFile:../../../second/second_part1.ts 5 > ; 6 > 7 > } -1 >Emitted(20, 14) Source(17, 19) + SourceIndex(3) -2 >Emitted(20, 28) Source(17, 29) + SourceIndex(3) -3 >Emitted(20, 35) Source(17, 36) + SourceIndex(3) -4 >Emitted(20, 37) Source(17, 38) + SourceIndex(3) -5 >Emitted(20, 38) Source(17, 39) + SourceIndex(3) -6 >Emitted(20, 39) Source(17, 40) + SourceIndex(3) -7 >Emitted(20, 40) Source(17, 41) + SourceIndex(3) +1 >Emitted(21, 14) Source(17, 19) + SourceIndex(3) +2 >Emitted(21, 28) Source(17, 29) + SourceIndex(3) +3 >Emitted(21, 35) Source(17, 36) + SourceIndex(3) +4 >Emitted(21, 37) Source(17, 38) + SourceIndex(3) +5 >Emitted(21, 38) Source(17, 39) + SourceIndex(3) +6 >Emitted(21, 39) Source(17, 40) + SourceIndex(3) +7 >Emitted(21, 40) Source(17, 41) + SourceIndex(3) --- >>> set: function (val) { }, 1 >^^^^^^^^^^^^^ @@ -2862,11 +2867,11 @@ sourceFile:../../../second/second_part1.ts 3 > val: number 4 > ) { 5 > } -1 >Emitted(21, 14) Source(18, 19) + SourceIndex(3) -2 >Emitted(21, 24) Source(18, 25) + SourceIndex(3) -3 >Emitted(21, 27) Source(18, 36) + SourceIndex(3) -4 >Emitted(21, 31) Source(18, 40) + SourceIndex(3) -5 >Emitted(21, 32) Source(18, 41) + SourceIndex(3) +1 >Emitted(22, 14) Source(18, 19) + SourceIndex(3) +2 >Emitted(22, 24) Source(18, 25) + SourceIndex(3) +3 >Emitted(22, 27) Source(18, 36) + SourceIndex(3) +4 >Emitted(22, 31) Source(18, 40) + SourceIndex(3) +5 >Emitted(22, 32) Source(18, 41) + SourceIndex(3) --- >>> enumerable: false, >>> configurable: true @@ -2874,7 +2879,7 @@ sourceFile:../../../second/second_part1.ts 1 >^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(24, 8) Source(17, 41) + SourceIndex(3) +1 >Emitted(25, 8) Source(17, 41) + SourceIndex(3) --- >>> return normalC; 1->^^^^ @@ -2883,8 +2888,8 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ set c(val: number) { } > 2 > } -1->Emitted(25, 5) Source(19, 1) + SourceIndex(3) -2 >Emitted(25, 19) Source(19, 2) + SourceIndex(3) +1->Emitted(26, 5) Source(19, 1) + SourceIndex(3) +2 >Emitted(26, 19) Source(19, 2) + SourceIndex(3) --- >>>}()); 1 > @@ -2902,10 +2907,10 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ get c() { return 10; } > /*@internal*/ set c(val: number) { } > } -1 >Emitted(26, 1) Source(19, 1) + SourceIndex(3) -2 >Emitted(26, 2) Source(19, 2) + SourceIndex(3) -3 >Emitted(26, 2) Source(13, 1) + SourceIndex(3) -4 >Emitted(26, 6) Source(19, 2) + SourceIndex(3) +1 >Emitted(27, 1) Source(19, 1) + SourceIndex(3) +2 >Emitted(27, 2) Source(19, 2) + SourceIndex(3) +3 >Emitted(27, 2) Source(13, 1) + SourceIndex(3) +4 >Emitted(27, 6) Source(19, 2) + SourceIndex(3) --- >>>var normalN; 1-> @@ -2927,10 +2932,10 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(27, 5) Source(20, 11) + SourceIndex(3) -3 >Emitted(27, 12) Source(20, 18) + SourceIndex(3) -4 >Emitted(27, 13) Source(29, 2) + SourceIndex(3) +1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(28, 5) Source(20, 11) + SourceIndex(3) +3 >Emitted(28, 12) Source(20, 18) + SourceIndex(3) +4 >Emitted(28, 13) Source(29, 2) + SourceIndex(3) --- >>>(function (normalN) { 1-> @@ -2940,22 +2945,22 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > normalN -1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(28, 12) Source(20, 11) + SourceIndex(3) -3 >Emitted(28, 19) Source(20, 18) + SourceIndex(3) +1->Emitted(29, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(29, 12) Source(20, 11) + SourceIndex(3) +3 >Emitted(29, 19) Source(20, 18) + SourceIndex(3) --- >>> var C = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { > /*@internal*/ -1->Emitted(29, 5) Source(21, 19) + SourceIndex(3) +1->Emitted(30, 5) Source(21, 19) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(30, 9) Source(21, 19) + SourceIndex(3) +1->Emitted(31, 9) Source(21, 19) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -2963,16 +2968,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(31, 9) Source(21, 36) + SourceIndex(3) -2 >Emitted(31, 10) Source(21, 37) + SourceIndex(3) +1->Emitted(32, 9) Source(21, 36) + SourceIndex(3) +2 >Emitted(32, 10) Source(21, 37) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(32, 9) Source(21, 36) + SourceIndex(3) -2 >Emitted(32, 17) Source(21, 37) + SourceIndex(3) +1->Emitted(33, 9) Source(21, 36) + SourceIndex(3) +2 >Emitted(33, 17) Source(21, 37) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -2984,10 +2989,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(33, 5) Source(21, 36) + SourceIndex(3) -2 >Emitted(33, 6) Source(21, 37) + SourceIndex(3) -3 >Emitted(33, 6) Source(21, 19) + SourceIndex(3) -4 >Emitted(33, 10) Source(21, 37) + SourceIndex(3) +1 >Emitted(34, 5) Source(21, 36) + SourceIndex(3) +2 >Emitted(34, 6) Source(21, 37) + SourceIndex(3) +3 >Emitted(34, 6) Source(21, 19) + SourceIndex(3) +4 >Emitted(34, 10) Source(21, 37) + SourceIndex(3) --- >>> normalN.C = C; 1->^^^^ @@ -2999,10 +3004,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > { } 4 > -1->Emitted(34, 5) Source(21, 32) + SourceIndex(3) -2 >Emitted(34, 14) Source(21, 33) + SourceIndex(3) -3 >Emitted(34, 18) Source(21, 37) + SourceIndex(3) -4 >Emitted(34, 19) Source(21, 37) + SourceIndex(3) +1->Emitted(35, 5) Source(21, 32) + SourceIndex(3) +2 >Emitted(35, 14) Source(21, 33) + SourceIndex(3) +3 >Emitted(35, 18) Source(21, 37) + SourceIndex(3) +4 >Emitted(35, 19) Source(21, 37) + SourceIndex(3) --- >>> function foo() { } 1->^^^^ @@ -3017,11 +3022,11 @@ sourceFile:../../../second/second_part1.ts 3 > foo 4 > () { 5 > } -1->Emitted(35, 5) Source(22, 19) + SourceIndex(3) -2 >Emitted(35, 14) Source(22, 35) + SourceIndex(3) -3 >Emitted(35, 17) Source(22, 38) + SourceIndex(3) -4 >Emitted(35, 22) Source(22, 42) + SourceIndex(3) -5 >Emitted(35, 23) Source(22, 43) + SourceIndex(3) +1->Emitted(36, 5) Source(22, 19) + SourceIndex(3) +2 >Emitted(36, 14) Source(22, 35) + SourceIndex(3) +3 >Emitted(36, 17) Source(22, 38) + SourceIndex(3) +4 >Emitted(36, 22) Source(22, 42) + SourceIndex(3) +5 >Emitted(36, 23) Source(22, 43) + SourceIndex(3) --- >>> normalN.foo = foo; 1->^^^^ @@ -3033,10 +3038,10 @@ sourceFile:../../../second/second_part1.ts 2 > foo 3 > () {} 4 > -1->Emitted(36, 5) Source(22, 35) + SourceIndex(3) -2 >Emitted(36, 16) Source(22, 38) + SourceIndex(3) -3 >Emitted(36, 22) Source(22, 43) + SourceIndex(3) -4 >Emitted(36, 23) Source(22, 43) + SourceIndex(3) +1->Emitted(37, 5) Source(22, 35) + SourceIndex(3) +2 >Emitted(37, 16) Source(22, 38) + SourceIndex(3) +3 >Emitted(37, 22) Source(22, 43) + SourceIndex(3) +4 >Emitted(37, 23) Source(22, 43) + SourceIndex(3) --- >>> var someNamespace; 1->^^^^ @@ -3049,10 +3054,10 @@ sourceFile:../../../second/second_part1.ts 2 > export namespace 3 > someNamespace 4 > { export class C {} } -1->Emitted(37, 5) Source(23, 19) + SourceIndex(3) -2 >Emitted(37, 9) Source(23, 36) + SourceIndex(3) -3 >Emitted(37, 22) Source(23, 49) + SourceIndex(3) -4 >Emitted(37, 23) Source(23, 71) + SourceIndex(3) +1->Emitted(38, 5) Source(23, 19) + SourceIndex(3) +2 >Emitted(38, 9) Source(23, 36) + SourceIndex(3) +3 >Emitted(38, 22) Source(23, 49) + SourceIndex(3) +4 >Emitted(38, 23) Source(23, 71) + SourceIndex(3) --- >>> (function (someNamespace) { 1->^^^^ @@ -3062,21 +3067,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > export namespace 3 > someNamespace -1->Emitted(38, 5) Source(23, 19) + SourceIndex(3) -2 >Emitted(38, 16) Source(23, 36) + SourceIndex(3) -3 >Emitted(38, 29) Source(23, 49) + SourceIndex(3) +1->Emitted(39, 5) Source(23, 19) + SourceIndex(3) +2 >Emitted(39, 16) Source(23, 36) + SourceIndex(3) +3 >Emitted(39, 29) Source(23, 49) + SourceIndex(3) --- >>> var C = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(39, 9) Source(23, 52) + SourceIndex(3) +1->Emitted(40, 9) Source(23, 52) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(40, 13) Source(23, 52) + SourceIndex(3) +1->Emitted(41, 13) Source(23, 52) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -3084,16 +3089,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(41, 13) Source(23, 68) + SourceIndex(3) -2 >Emitted(41, 14) Source(23, 69) + SourceIndex(3) +1->Emitted(42, 13) Source(23, 68) + SourceIndex(3) +2 >Emitted(42, 14) Source(23, 69) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(42, 13) Source(23, 68) + SourceIndex(3) -2 >Emitted(42, 21) Source(23, 69) + SourceIndex(3) +1->Emitted(43, 13) Source(23, 68) + SourceIndex(3) +2 >Emitted(43, 21) Source(23, 69) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -3105,10 +3110,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(43, 9) Source(23, 68) + SourceIndex(3) -2 >Emitted(43, 10) Source(23, 69) + SourceIndex(3) -3 >Emitted(43, 10) Source(23, 52) + SourceIndex(3) -4 >Emitted(43, 14) Source(23, 69) + SourceIndex(3) +1 >Emitted(44, 9) Source(23, 68) + SourceIndex(3) +2 >Emitted(44, 10) Source(23, 69) + SourceIndex(3) +3 >Emitted(44, 10) Source(23, 52) + SourceIndex(3) +4 >Emitted(44, 14) Source(23, 69) + SourceIndex(3) --- >>> someNamespace.C = C; 1->^^^^^^^^ @@ -3120,10 +3125,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > {} 4 > -1->Emitted(44, 9) Source(23, 65) + SourceIndex(3) -2 >Emitted(44, 24) Source(23, 66) + SourceIndex(3) -3 >Emitted(44, 28) Source(23, 69) + SourceIndex(3) -4 >Emitted(44, 29) Source(23, 69) + SourceIndex(3) +1->Emitted(45, 9) Source(23, 65) + SourceIndex(3) +2 >Emitted(45, 24) Source(23, 66) + SourceIndex(3) +3 >Emitted(45, 28) Source(23, 69) + SourceIndex(3) +4 >Emitted(45, 29) Source(23, 69) + SourceIndex(3) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^ @@ -3144,15 +3149,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(45, 5) Source(23, 70) + SourceIndex(3) -2 >Emitted(45, 6) Source(23, 71) + SourceIndex(3) -3 >Emitted(45, 8) Source(23, 36) + SourceIndex(3) -4 >Emitted(45, 21) Source(23, 49) + SourceIndex(3) -5 >Emitted(45, 24) Source(23, 36) + SourceIndex(3) -6 >Emitted(45, 45) Source(23, 49) + SourceIndex(3) -7 >Emitted(45, 50) Source(23, 36) + SourceIndex(3) -8 >Emitted(45, 71) Source(23, 49) + SourceIndex(3) -9 >Emitted(45, 79) Source(23, 71) + SourceIndex(3) +1->Emitted(46, 5) Source(23, 70) + SourceIndex(3) +2 >Emitted(46, 6) Source(23, 71) + SourceIndex(3) +3 >Emitted(46, 8) Source(23, 36) + SourceIndex(3) +4 >Emitted(46, 21) Source(23, 49) + SourceIndex(3) +5 >Emitted(46, 24) Source(23, 36) + SourceIndex(3) +6 >Emitted(46, 45) Source(23, 49) + SourceIndex(3) +7 >Emitted(46, 50) Source(23, 36) + SourceIndex(3) +8 >Emitted(46, 71) Source(23, 49) + SourceIndex(3) +9 >Emitted(46, 79) Source(23, 71) + SourceIndex(3) --- >>> var someOther; 1 >^^^^ @@ -3165,10 +3170,10 @@ sourceFile:../../../second/second_part1.ts 2 > export namespace 3 > someOther 4 > .something { export class someClass {} } -1 >Emitted(46, 5) Source(24, 19) + SourceIndex(3) -2 >Emitted(46, 9) Source(24, 36) + SourceIndex(3) -3 >Emitted(46, 18) Source(24, 45) + SourceIndex(3) -4 >Emitted(46, 19) Source(24, 85) + SourceIndex(3) +1 >Emitted(47, 5) Source(24, 19) + SourceIndex(3) +2 >Emitted(47, 9) Source(24, 36) + SourceIndex(3) +3 >Emitted(47, 18) Source(24, 45) + SourceIndex(3) +4 >Emitted(47, 19) Source(24, 85) + SourceIndex(3) --- >>> (function (someOther) { 1->^^^^ @@ -3177,9 +3182,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > export namespace 3 > someOther -1->Emitted(47, 5) Source(24, 19) + SourceIndex(3) -2 >Emitted(47, 16) Source(24, 36) + SourceIndex(3) -3 >Emitted(47, 25) Source(24, 45) + SourceIndex(3) +1->Emitted(48, 5) Source(24, 19) + SourceIndex(3) +2 >Emitted(48, 16) Source(24, 36) + SourceIndex(3) +3 >Emitted(48, 25) Source(24, 45) + SourceIndex(3) --- >>> var something; 1 >^^^^^^^^ @@ -3191,10 +3196,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(48, 9) Source(24, 46) + SourceIndex(3) -2 >Emitted(48, 13) Source(24, 46) + SourceIndex(3) -3 >Emitted(48, 22) Source(24, 55) + SourceIndex(3) -4 >Emitted(48, 23) Source(24, 85) + SourceIndex(3) +1 >Emitted(49, 9) Source(24, 46) + SourceIndex(3) +2 >Emitted(49, 13) Source(24, 46) + SourceIndex(3) +3 >Emitted(49, 22) Source(24, 55) + SourceIndex(3) +4 >Emitted(49, 23) Source(24, 85) + SourceIndex(3) --- >>> (function (something) { 1->^^^^^^^^ @@ -3204,21 +3209,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(49, 9) Source(24, 46) + SourceIndex(3) -2 >Emitted(49, 20) Source(24, 46) + SourceIndex(3) -3 >Emitted(49, 29) Source(24, 55) + SourceIndex(3) +1->Emitted(50, 9) Source(24, 46) + SourceIndex(3) +2 >Emitted(50, 20) Source(24, 46) + SourceIndex(3) +3 >Emitted(50, 29) Source(24, 55) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(50, 13) Source(24, 58) + SourceIndex(3) +1->Emitted(51, 13) Source(24, 58) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(51, 17) Source(24, 58) + SourceIndex(3) +1->Emitted(52, 17) Source(24, 58) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -3226,16 +3231,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(52, 17) Source(24, 82) + SourceIndex(3) -2 >Emitted(52, 18) Source(24, 83) + SourceIndex(3) +1->Emitted(53, 17) Source(24, 82) + SourceIndex(3) +2 >Emitted(53, 18) Source(24, 83) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(53, 17) Source(24, 82) + SourceIndex(3) -2 >Emitted(53, 33) Source(24, 83) + SourceIndex(3) +1->Emitted(54, 17) Source(24, 82) + SourceIndex(3) +2 >Emitted(54, 33) Source(24, 83) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -3247,10 +3252,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(54, 13) Source(24, 82) + SourceIndex(3) -2 >Emitted(54, 14) Source(24, 83) + SourceIndex(3) -3 >Emitted(54, 14) Source(24, 58) + SourceIndex(3) -4 >Emitted(54, 18) Source(24, 83) + SourceIndex(3) +1 >Emitted(55, 13) Source(24, 82) + SourceIndex(3) +2 >Emitted(55, 14) Source(24, 83) + SourceIndex(3) +3 >Emitted(55, 14) Source(24, 58) + SourceIndex(3) +4 >Emitted(55, 18) Source(24, 83) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -3262,10 +3267,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(55, 13) Source(24, 71) + SourceIndex(3) -2 >Emitted(55, 32) Source(24, 80) + SourceIndex(3) -3 >Emitted(55, 44) Source(24, 83) + SourceIndex(3) -4 >Emitted(55, 45) Source(24, 83) + SourceIndex(3) +1->Emitted(56, 13) Source(24, 71) + SourceIndex(3) +2 >Emitted(56, 32) Source(24, 80) + SourceIndex(3) +3 >Emitted(56, 44) Source(24, 83) + SourceIndex(3) +4 >Emitted(56, 45) Source(24, 83) + SourceIndex(3) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^ @@ -3286,15 +3291,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(56, 9) Source(24, 84) + SourceIndex(3) -2 >Emitted(56, 10) Source(24, 85) + SourceIndex(3) -3 >Emitted(56, 12) Source(24, 46) + SourceIndex(3) -4 >Emitted(56, 21) Source(24, 55) + SourceIndex(3) -5 >Emitted(56, 24) Source(24, 46) + SourceIndex(3) -6 >Emitted(56, 43) Source(24, 55) + SourceIndex(3) -7 >Emitted(56, 48) Source(24, 46) + SourceIndex(3) -8 >Emitted(56, 67) Source(24, 55) + SourceIndex(3) -9 >Emitted(56, 75) Source(24, 85) + SourceIndex(3) +1->Emitted(57, 9) Source(24, 84) + SourceIndex(3) +2 >Emitted(57, 10) Source(24, 85) + SourceIndex(3) +3 >Emitted(57, 12) Source(24, 46) + SourceIndex(3) +4 >Emitted(57, 21) Source(24, 55) + SourceIndex(3) +5 >Emitted(57, 24) Source(24, 46) + SourceIndex(3) +6 >Emitted(57, 43) Source(24, 55) + SourceIndex(3) +7 >Emitted(57, 48) Source(24, 46) + SourceIndex(3) +8 >Emitted(57, 67) Source(24, 55) + SourceIndex(3) +9 >Emitted(57, 75) Source(24, 85) + SourceIndex(3) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^ @@ -3315,15 +3320,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(57, 5) Source(24, 84) + SourceIndex(3) -2 >Emitted(57, 6) Source(24, 85) + SourceIndex(3) -3 >Emitted(57, 8) Source(24, 36) + SourceIndex(3) -4 >Emitted(57, 17) Source(24, 45) + SourceIndex(3) -5 >Emitted(57, 20) Source(24, 36) + SourceIndex(3) -6 >Emitted(57, 37) Source(24, 45) + SourceIndex(3) -7 >Emitted(57, 42) Source(24, 36) + SourceIndex(3) -8 >Emitted(57, 59) Source(24, 45) + SourceIndex(3) -9 >Emitted(57, 67) Source(24, 85) + SourceIndex(3) +1 >Emitted(58, 5) Source(24, 84) + SourceIndex(3) +2 >Emitted(58, 6) Source(24, 85) + SourceIndex(3) +3 >Emitted(58, 8) Source(24, 36) + SourceIndex(3) +4 >Emitted(58, 17) Source(24, 45) + SourceIndex(3) +5 >Emitted(58, 20) Source(24, 36) + SourceIndex(3) +6 >Emitted(58, 37) Source(24, 45) + SourceIndex(3) +7 >Emitted(58, 42) Source(24, 36) + SourceIndex(3) +8 >Emitted(58, 59) Source(24, 45) + SourceIndex(3) +9 >Emitted(58, 67) Source(24, 85) + SourceIndex(3) --- >>> normalN.someImport = someNamespace.C; 1 >^^^^ @@ -3341,13 +3346,13 @@ sourceFile:../../../second/second_part1.ts 5 > . 6 > C 7 > ; -1 >Emitted(58, 5) Source(25, 33) + SourceIndex(3) -2 >Emitted(58, 23) Source(25, 43) + SourceIndex(3) -3 >Emitted(58, 26) Source(25, 46) + SourceIndex(3) -4 >Emitted(58, 39) Source(25, 59) + SourceIndex(3) -5 >Emitted(58, 40) Source(25, 60) + SourceIndex(3) -6 >Emitted(58, 41) Source(25, 61) + SourceIndex(3) -7 >Emitted(58, 42) Source(25, 62) + SourceIndex(3) +1 >Emitted(59, 5) Source(25, 33) + SourceIndex(3) +2 >Emitted(59, 23) Source(25, 43) + SourceIndex(3) +3 >Emitted(59, 26) Source(25, 46) + SourceIndex(3) +4 >Emitted(59, 39) Source(25, 59) + SourceIndex(3) +5 >Emitted(59, 40) Source(25, 60) + SourceIndex(3) +6 >Emitted(59, 41) Source(25, 61) + SourceIndex(3) +7 >Emitted(59, 42) Source(25, 62) + SourceIndex(3) --- >>> normalN.internalConst = 10; 1 >^^^^ @@ -3362,11 +3367,11 @@ sourceFile:../../../second/second_part1.ts 3 > = 4 > 10 5 > ; -1 >Emitted(59, 5) Source(27, 32) + SourceIndex(3) -2 >Emitted(59, 26) Source(27, 45) + SourceIndex(3) -3 >Emitted(59, 29) Source(27, 48) + SourceIndex(3) -4 >Emitted(59, 31) Source(27, 50) + SourceIndex(3) -5 >Emitted(59, 32) Source(27, 51) + SourceIndex(3) +1 >Emitted(60, 5) Source(27, 32) + SourceIndex(3) +2 >Emitted(60, 26) Source(27, 45) + SourceIndex(3) +3 >Emitted(60, 29) Source(27, 48) + SourceIndex(3) +4 >Emitted(60, 31) Source(27, 50) + SourceIndex(3) +5 >Emitted(60, 32) Source(27, 51) + SourceIndex(3) --- >>> var internalEnum; 1 >^^^^ @@ -3377,9 +3382,9 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ 2 > export enum 3 > internalEnum { a, b, c } -1 >Emitted(60, 5) Source(28, 19) + SourceIndex(3) -2 >Emitted(60, 9) Source(28, 31) + SourceIndex(3) -3 >Emitted(60, 21) Source(28, 55) + SourceIndex(3) +1 >Emitted(61, 5) Source(28, 19) + SourceIndex(3) +2 >Emitted(61, 9) Source(28, 31) + SourceIndex(3) +3 >Emitted(61, 21) Source(28, 55) + SourceIndex(3) --- >>> (function (internalEnum) { 1->^^^^ @@ -3389,9 +3394,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > export enum 3 > internalEnum -1->Emitted(61, 5) Source(28, 19) + SourceIndex(3) -2 >Emitted(61, 16) Source(28, 31) + SourceIndex(3) -3 >Emitted(61, 28) Source(28, 43) + SourceIndex(3) +1->Emitted(62, 5) Source(28, 19) + SourceIndex(3) +2 >Emitted(62, 16) Source(28, 31) + SourceIndex(3) +3 >Emitted(62, 28) Source(28, 43) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -3401,9 +3406,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(62, 9) Source(28, 46) + SourceIndex(3) -2 >Emitted(62, 50) Source(28, 47) + SourceIndex(3) -3 >Emitted(62, 51) Source(28, 47) + SourceIndex(3) +1->Emitted(63, 9) Source(28, 46) + SourceIndex(3) +2 >Emitted(63, 50) Source(28, 47) + SourceIndex(3) +3 >Emitted(63, 51) Source(28, 47) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -3413,9 +3418,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(63, 9) Source(28, 49) + SourceIndex(3) -2 >Emitted(63, 50) Source(28, 50) + SourceIndex(3) -3 >Emitted(63, 51) Source(28, 50) + SourceIndex(3) +1->Emitted(64, 9) Source(28, 49) + SourceIndex(3) +2 >Emitted(64, 50) Source(28, 50) + SourceIndex(3) +3 >Emitted(64, 51) Source(28, 50) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -3425,9 +3430,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(64, 9) Source(28, 52) + SourceIndex(3) -2 >Emitted(64, 50) Source(28, 53) + SourceIndex(3) -3 >Emitted(64, 51) Source(28, 53) + SourceIndex(3) +1->Emitted(65, 9) Source(28, 52) + SourceIndex(3) +2 >Emitted(65, 50) Source(28, 53) + SourceIndex(3) +3 >Emitted(65, 51) Source(28, 53) + SourceIndex(3) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^ @@ -3448,15 +3453,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(65, 5) Source(28, 54) + SourceIndex(3) -2 >Emitted(65, 6) Source(28, 55) + SourceIndex(3) -3 >Emitted(65, 8) Source(28, 31) + SourceIndex(3) -4 >Emitted(65, 20) Source(28, 43) + SourceIndex(3) -5 >Emitted(65, 23) Source(28, 31) + SourceIndex(3) -6 >Emitted(65, 43) Source(28, 43) + SourceIndex(3) -7 >Emitted(65, 48) Source(28, 31) + SourceIndex(3) -8 >Emitted(65, 68) Source(28, 43) + SourceIndex(3) -9 >Emitted(65, 76) Source(28, 55) + SourceIndex(3) +1->Emitted(66, 5) Source(28, 54) + SourceIndex(3) +2 >Emitted(66, 6) Source(28, 55) + SourceIndex(3) +3 >Emitted(66, 8) Source(28, 31) + SourceIndex(3) +4 >Emitted(66, 20) Source(28, 43) + SourceIndex(3) +5 >Emitted(66, 23) Source(28, 31) + SourceIndex(3) +6 >Emitted(66, 43) Source(28, 43) + SourceIndex(3) +7 >Emitted(66, 48) Source(28, 31) + SourceIndex(3) +8 >Emitted(66, 68) Source(28, 43) + SourceIndex(3) +9 >Emitted(66, 76) Source(28, 55) + SourceIndex(3) --- >>>})(normalN || (normalN = {})); 1 > @@ -3484,26 +3489,26 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(66, 1) Source(29, 1) + SourceIndex(3) -2 >Emitted(66, 2) Source(29, 2) + SourceIndex(3) -3 >Emitted(66, 4) Source(20, 11) + SourceIndex(3) -4 >Emitted(66, 11) Source(20, 18) + SourceIndex(3) -5 >Emitted(66, 16) Source(20, 11) + SourceIndex(3) -6 >Emitted(66, 23) Source(20, 18) + SourceIndex(3) -7 >Emitted(66, 31) Source(29, 2) + SourceIndex(3) +1 >Emitted(67, 1) Source(29, 1) + SourceIndex(3) +2 >Emitted(67, 2) Source(29, 2) + SourceIndex(3) +3 >Emitted(67, 4) Source(20, 11) + SourceIndex(3) +4 >Emitted(67, 11) Source(20, 18) + SourceIndex(3) +5 >Emitted(67, 16) Source(20, 11) + SourceIndex(3) +6 >Emitted(67, 23) Source(20, 18) + SourceIndex(3) +7 >Emitted(67, 31) Source(29, 2) + SourceIndex(3) --- >>>var internalC = (function () { 1-> 2 >^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> >/*@internal*/ -1->Emitted(67, 1) Source(30, 15) + SourceIndex(3) +1->Emitted(68, 1) Source(30, 15) + SourceIndex(3) --- >>> function internalC() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(68, 5) Source(30, 15) + SourceIndex(3) +1->Emitted(69, 5) Source(30, 15) + SourceIndex(3) --- >>> } 1->^^^^ @@ -3511,16 +3516,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->class internalC { 2 > } -1->Emitted(69, 5) Source(30, 32) + SourceIndex(3) -2 >Emitted(69, 6) Source(30, 33) + SourceIndex(3) +1->Emitted(70, 5) Source(30, 32) + SourceIndex(3) +2 >Emitted(70, 6) Source(30, 33) + SourceIndex(3) --- >>> return internalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(70, 5) Source(30, 32) + SourceIndex(3) -2 >Emitted(70, 21) Source(30, 33) + SourceIndex(3) +1->Emitted(71, 5) Source(30, 32) + SourceIndex(3) +2 >Emitted(71, 21) Source(30, 33) + SourceIndex(3) --- >>>}()); 1 > @@ -3532,10 +3537,10 @@ sourceFile:../../../second/second_part1.ts 2 >} 3 > 4 > class internalC {} -1 >Emitted(71, 1) Source(30, 32) + SourceIndex(3) -2 >Emitted(71, 2) Source(30, 33) + SourceIndex(3) -3 >Emitted(71, 2) Source(30, 15) + SourceIndex(3) -4 >Emitted(71, 6) Source(30, 33) + SourceIndex(3) +1 >Emitted(72, 1) Source(30, 32) + SourceIndex(3) +2 >Emitted(72, 2) Source(30, 33) + SourceIndex(3) +3 >Emitted(72, 2) Source(30, 15) + SourceIndex(3) +4 >Emitted(72, 6) Source(30, 33) + SourceIndex(3) --- >>>function internalfoo() { } 1-> @@ -3549,11 +3554,11 @@ sourceFile:../../../second/second_part1.ts 3 > internalfoo 4 > () { 5 > } -1->Emitted(72, 1) Source(31, 15) + SourceIndex(3) -2 >Emitted(72, 10) Source(31, 24) + SourceIndex(3) -3 >Emitted(72, 21) Source(31, 35) + SourceIndex(3) -4 >Emitted(72, 26) Source(31, 39) + SourceIndex(3) -5 >Emitted(72, 27) Source(31, 40) + SourceIndex(3) +1->Emitted(73, 1) Source(31, 15) + SourceIndex(3) +2 >Emitted(73, 10) Source(31, 24) + SourceIndex(3) +3 >Emitted(73, 21) Source(31, 35) + SourceIndex(3) +4 >Emitted(73, 26) Source(31, 39) + SourceIndex(3) +5 >Emitted(73, 27) Source(31, 40) + SourceIndex(3) --- >>>var internalNamespace; 1 > @@ -3566,10 +3571,10 @@ sourceFile:../../../second/second_part1.ts 2 >namespace 3 > internalNamespace 4 > { export class someClass {} } -1 >Emitted(73, 1) Source(32, 15) + SourceIndex(3) -2 >Emitted(73, 5) Source(32, 25) + SourceIndex(3) -3 >Emitted(73, 22) Source(32, 42) + SourceIndex(3) -4 >Emitted(73, 23) Source(32, 72) + SourceIndex(3) +1 >Emitted(74, 1) Source(32, 15) + SourceIndex(3) +2 >Emitted(74, 5) Source(32, 25) + SourceIndex(3) +3 >Emitted(74, 22) Source(32, 42) + SourceIndex(3) +4 >Emitted(74, 23) Source(32, 72) + SourceIndex(3) --- >>>(function (internalNamespace) { 1-> @@ -3579,21 +3584,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > internalNamespace -1->Emitted(74, 1) Source(32, 15) + SourceIndex(3) -2 >Emitted(74, 12) Source(32, 25) + SourceIndex(3) -3 >Emitted(74, 29) Source(32, 42) + SourceIndex(3) +1->Emitted(75, 1) Source(32, 15) + SourceIndex(3) +2 >Emitted(75, 12) Source(32, 25) + SourceIndex(3) +3 >Emitted(75, 29) Source(32, 42) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(75, 5) Source(32, 45) + SourceIndex(3) +1->Emitted(76, 5) Source(32, 45) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(76, 9) Source(32, 45) + SourceIndex(3) +1->Emitted(77, 9) Source(32, 45) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -3601,16 +3606,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(77, 9) Source(32, 69) + SourceIndex(3) -2 >Emitted(77, 10) Source(32, 70) + SourceIndex(3) +1->Emitted(78, 9) Source(32, 69) + SourceIndex(3) +2 >Emitted(78, 10) Source(32, 70) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(78, 9) Source(32, 69) + SourceIndex(3) -2 >Emitted(78, 25) Source(32, 70) + SourceIndex(3) +1->Emitted(79, 9) Source(32, 69) + SourceIndex(3) +2 >Emitted(79, 25) Source(32, 70) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -3622,10 +3627,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(79, 5) Source(32, 69) + SourceIndex(3) -2 >Emitted(79, 6) Source(32, 70) + SourceIndex(3) -3 >Emitted(79, 6) Source(32, 45) + SourceIndex(3) -4 >Emitted(79, 10) Source(32, 70) + SourceIndex(3) +1 >Emitted(80, 5) Source(32, 69) + SourceIndex(3) +2 >Emitted(80, 6) Source(32, 70) + SourceIndex(3) +3 >Emitted(80, 6) Source(32, 45) + SourceIndex(3) +4 >Emitted(80, 10) Source(32, 70) + SourceIndex(3) --- >>> internalNamespace.someClass = someClass; 1->^^^^ @@ -3637,10 +3642,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(80, 5) Source(32, 58) + SourceIndex(3) -2 >Emitted(80, 32) Source(32, 67) + SourceIndex(3) -3 >Emitted(80, 44) Source(32, 70) + SourceIndex(3) -4 >Emitted(80, 45) Source(32, 70) + SourceIndex(3) +1->Emitted(81, 5) Source(32, 58) + SourceIndex(3) +2 >Emitted(81, 32) Source(32, 67) + SourceIndex(3) +3 >Emitted(81, 44) Source(32, 70) + SourceIndex(3) +4 >Emitted(81, 45) Source(32, 70) + SourceIndex(3) --- >>>})(internalNamespace || (internalNamespace = {})); 1-> @@ -3657,13 +3662,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalNamespace 7 > { export class someClass {} } -1->Emitted(81, 1) Source(32, 71) + SourceIndex(3) -2 >Emitted(81, 2) Source(32, 72) + SourceIndex(3) -3 >Emitted(81, 4) Source(32, 25) + SourceIndex(3) -4 >Emitted(81, 21) Source(32, 42) + SourceIndex(3) -5 >Emitted(81, 26) Source(32, 25) + SourceIndex(3) -6 >Emitted(81, 43) Source(32, 42) + SourceIndex(3) -7 >Emitted(81, 51) Source(32, 72) + SourceIndex(3) +1->Emitted(82, 1) Source(32, 71) + SourceIndex(3) +2 >Emitted(82, 2) Source(32, 72) + SourceIndex(3) +3 >Emitted(82, 4) Source(32, 25) + SourceIndex(3) +4 >Emitted(82, 21) Source(32, 42) + SourceIndex(3) +5 >Emitted(82, 26) Source(32, 25) + SourceIndex(3) +6 >Emitted(82, 43) Source(32, 42) + SourceIndex(3) +7 >Emitted(82, 51) Source(32, 72) + SourceIndex(3) --- >>>var internalOther; 1 > @@ -3676,10 +3681,10 @@ sourceFile:../../../second/second_part1.ts 2 >namespace 3 > internalOther 4 > .something { export class someClass {} } -1 >Emitted(82, 1) Source(33, 15) + SourceIndex(3) -2 >Emitted(82, 5) Source(33, 25) + SourceIndex(3) -3 >Emitted(82, 18) Source(33, 38) + SourceIndex(3) -4 >Emitted(82, 19) Source(33, 78) + SourceIndex(3) +1 >Emitted(83, 1) Source(33, 15) + SourceIndex(3) +2 >Emitted(83, 5) Source(33, 25) + SourceIndex(3) +3 >Emitted(83, 18) Source(33, 38) + SourceIndex(3) +4 >Emitted(83, 19) Source(33, 78) + SourceIndex(3) --- >>>(function (internalOther) { 1-> @@ -3688,9 +3693,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > internalOther -1->Emitted(83, 1) Source(33, 15) + SourceIndex(3) -2 >Emitted(83, 12) Source(33, 25) + SourceIndex(3) -3 >Emitted(83, 25) Source(33, 38) + SourceIndex(3) +1->Emitted(84, 1) Source(33, 15) + SourceIndex(3) +2 >Emitted(84, 12) Source(33, 25) + SourceIndex(3) +3 >Emitted(84, 25) Source(33, 38) + SourceIndex(3) --- >>> var something; 1 >^^^^ @@ -3702,10 +3707,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(84, 5) Source(33, 39) + SourceIndex(3) -2 >Emitted(84, 9) Source(33, 39) + SourceIndex(3) -3 >Emitted(84, 18) Source(33, 48) + SourceIndex(3) -4 >Emitted(84, 19) Source(33, 78) + SourceIndex(3) +1 >Emitted(85, 5) Source(33, 39) + SourceIndex(3) +2 >Emitted(85, 9) Source(33, 39) + SourceIndex(3) +3 >Emitted(85, 18) Source(33, 48) + SourceIndex(3) +4 >Emitted(85, 19) Source(33, 78) + SourceIndex(3) --- >>> (function (something) { 1->^^^^ @@ -3715,21 +3720,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(85, 5) Source(33, 39) + SourceIndex(3) -2 >Emitted(85, 16) Source(33, 39) + SourceIndex(3) -3 >Emitted(85, 25) Source(33, 48) + SourceIndex(3) +1->Emitted(86, 5) Source(33, 39) + SourceIndex(3) +2 >Emitted(86, 16) Source(33, 39) + SourceIndex(3) +3 >Emitted(86, 25) Source(33, 48) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(86, 9) Source(33, 51) + SourceIndex(3) +1->Emitted(87, 9) Source(33, 51) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(87, 13) Source(33, 51) + SourceIndex(3) +1->Emitted(88, 13) Source(33, 51) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -3737,16 +3742,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(88, 13) Source(33, 75) + SourceIndex(3) -2 >Emitted(88, 14) Source(33, 76) + SourceIndex(3) +1->Emitted(89, 13) Source(33, 75) + SourceIndex(3) +2 >Emitted(89, 14) Source(33, 76) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(89, 13) Source(33, 75) + SourceIndex(3) -2 >Emitted(89, 29) Source(33, 76) + SourceIndex(3) +1->Emitted(90, 13) Source(33, 75) + SourceIndex(3) +2 >Emitted(90, 29) Source(33, 76) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -3758,10 +3763,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(90, 9) Source(33, 75) + SourceIndex(3) -2 >Emitted(90, 10) Source(33, 76) + SourceIndex(3) -3 >Emitted(90, 10) Source(33, 51) + SourceIndex(3) -4 >Emitted(90, 14) Source(33, 76) + SourceIndex(3) +1 >Emitted(91, 9) Source(33, 75) + SourceIndex(3) +2 >Emitted(91, 10) Source(33, 76) + SourceIndex(3) +3 >Emitted(91, 10) Source(33, 51) + SourceIndex(3) +4 >Emitted(91, 14) Source(33, 76) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^ @@ -3773,10 +3778,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(91, 9) Source(33, 64) + SourceIndex(3) -2 >Emitted(91, 28) Source(33, 73) + SourceIndex(3) -3 >Emitted(91, 40) Source(33, 76) + SourceIndex(3) -4 >Emitted(91, 41) Source(33, 76) + SourceIndex(3) +1->Emitted(92, 9) Source(33, 64) + SourceIndex(3) +2 >Emitted(92, 28) Source(33, 73) + SourceIndex(3) +3 >Emitted(92, 40) Source(33, 76) + SourceIndex(3) +4 >Emitted(92, 41) Source(33, 76) + SourceIndex(3) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^ @@ -3797,15 +3802,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(92, 5) Source(33, 77) + SourceIndex(3) -2 >Emitted(92, 6) Source(33, 78) + SourceIndex(3) -3 >Emitted(92, 8) Source(33, 39) + SourceIndex(3) -4 >Emitted(92, 17) Source(33, 48) + SourceIndex(3) -5 >Emitted(92, 20) Source(33, 39) + SourceIndex(3) -6 >Emitted(92, 43) Source(33, 48) + SourceIndex(3) -7 >Emitted(92, 48) Source(33, 39) + SourceIndex(3) -8 >Emitted(92, 71) Source(33, 48) + SourceIndex(3) -9 >Emitted(92, 79) Source(33, 78) + SourceIndex(3) +1->Emitted(93, 5) Source(33, 77) + SourceIndex(3) +2 >Emitted(93, 6) Source(33, 78) + SourceIndex(3) +3 >Emitted(93, 8) Source(33, 39) + SourceIndex(3) +4 >Emitted(93, 17) Source(33, 48) + SourceIndex(3) +5 >Emitted(93, 20) Source(33, 39) + SourceIndex(3) +6 >Emitted(93, 43) Source(33, 48) + SourceIndex(3) +7 >Emitted(93, 48) Source(33, 39) + SourceIndex(3) +8 >Emitted(93, 71) Source(33, 48) + SourceIndex(3) +9 >Emitted(93, 79) Source(33, 78) + SourceIndex(3) --- >>>})(internalOther || (internalOther = {})); 1 > @@ -3823,13 +3828,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalOther 7 > .something { export class someClass {} } -1 >Emitted(93, 1) Source(33, 77) + SourceIndex(3) -2 >Emitted(93, 2) Source(33, 78) + SourceIndex(3) -3 >Emitted(93, 4) Source(33, 25) + SourceIndex(3) -4 >Emitted(93, 17) Source(33, 38) + SourceIndex(3) -5 >Emitted(93, 22) Source(33, 25) + SourceIndex(3) -6 >Emitted(93, 35) Source(33, 38) + SourceIndex(3) -7 >Emitted(93, 43) Source(33, 78) + SourceIndex(3) +1 >Emitted(94, 1) Source(33, 77) + SourceIndex(3) +2 >Emitted(94, 2) Source(33, 78) + SourceIndex(3) +3 >Emitted(94, 4) Source(33, 25) + SourceIndex(3) +4 >Emitted(94, 17) Source(33, 38) + SourceIndex(3) +5 >Emitted(94, 22) Source(33, 25) + SourceIndex(3) +6 >Emitted(94, 35) Source(33, 38) + SourceIndex(3) +7 >Emitted(94, 43) Source(33, 78) + SourceIndex(3) --- >>>var internalImport = internalNamespace.someClass; 1-> @@ -3849,14 +3854,14 @@ sourceFile:../../../second/second_part1.ts 6 > . 7 > someClass 8 > ; -1->Emitted(94, 1) Source(34, 15) + SourceIndex(3) -2 >Emitted(94, 5) Source(34, 22) + SourceIndex(3) -3 >Emitted(94, 19) Source(34, 36) + SourceIndex(3) -4 >Emitted(94, 22) Source(34, 39) + SourceIndex(3) -5 >Emitted(94, 39) Source(34, 56) + SourceIndex(3) -6 >Emitted(94, 40) Source(34, 57) + SourceIndex(3) -7 >Emitted(94, 49) Source(34, 66) + SourceIndex(3) -8 >Emitted(94, 50) Source(34, 67) + SourceIndex(3) +1->Emitted(95, 1) Source(34, 15) + SourceIndex(3) +2 >Emitted(95, 5) Source(34, 22) + SourceIndex(3) +3 >Emitted(95, 19) Source(34, 36) + SourceIndex(3) +4 >Emitted(95, 22) Source(34, 39) + SourceIndex(3) +5 >Emitted(95, 39) Source(34, 56) + SourceIndex(3) +6 >Emitted(95, 40) Source(34, 57) + SourceIndex(3) +7 >Emitted(95, 49) Source(34, 66) + SourceIndex(3) +8 >Emitted(95, 50) Source(34, 67) + SourceIndex(3) --- >>>var internalConst = 10; 1 > @@ -3873,12 +3878,12 @@ sourceFile:../../../second/second_part1.ts 4 > = 5 > 10 6 > ; -1 >Emitted(95, 1) Source(36, 15) + SourceIndex(3) -2 >Emitted(95, 5) Source(36, 21) + SourceIndex(3) -3 >Emitted(95, 18) Source(36, 34) + SourceIndex(3) -4 >Emitted(95, 21) Source(36, 37) + SourceIndex(3) -5 >Emitted(95, 23) Source(36, 39) + SourceIndex(3) -6 >Emitted(95, 24) Source(36, 40) + SourceIndex(3) +1 >Emitted(96, 1) Source(36, 15) + SourceIndex(3) +2 >Emitted(96, 5) Source(36, 21) + SourceIndex(3) +3 >Emitted(96, 18) Source(36, 34) + SourceIndex(3) +4 >Emitted(96, 21) Source(36, 37) + SourceIndex(3) +5 >Emitted(96, 23) Source(36, 39) + SourceIndex(3) +6 >Emitted(96, 24) Source(36, 40) + SourceIndex(3) --- >>>var internalEnum; 1 > @@ -3889,9 +3894,9 @@ sourceFile:../../../second/second_part1.ts >/*@internal*/ 2 >enum 3 > internalEnum { a, b, c } -1 >Emitted(96, 1) Source(37, 15) + SourceIndex(3) -2 >Emitted(96, 5) Source(37, 20) + SourceIndex(3) -3 >Emitted(96, 17) Source(37, 44) + SourceIndex(3) +1 >Emitted(97, 1) Source(37, 15) + SourceIndex(3) +2 >Emitted(97, 5) Source(37, 20) + SourceIndex(3) +3 >Emitted(97, 17) Source(37, 44) + SourceIndex(3) --- >>>(function (internalEnum) { 1-> @@ -3901,9 +3906,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >enum 3 > internalEnum -1->Emitted(97, 1) Source(37, 15) + SourceIndex(3) -2 >Emitted(97, 12) Source(37, 20) + SourceIndex(3) -3 >Emitted(97, 24) Source(37, 32) + SourceIndex(3) +1->Emitted(98, 1) Source(37, 15) + SourceIndex(3) +2 >Emitted(98, 12) Source(37, 20) + SourceIndex(3) +3 >Emitted(98, 24) Source(37, 32) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^ @@ -3913,9 +3918,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(98, 5) Source(37, 35) + SourceIndex(3) -2 >Emitted(98, 46) Source(37, 36) + SourceIndex(3) -3 >Emitted(98, 47) Source(37, 36) + SourceIndex(3) +1->Emitted(99, 5) Source(37, 35) + SourceIndex(3) +2 >Emitted(99, 46) Source(37, 36) + SourceIndex(3) +3 >Emitted(99, 47) Source(37, 36) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^ @@ -3925,9 +3930,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(99, 5) Source(37, 38) + SourceIndex(3) -2 >Emitted(99, 46) Source(37, 39) + SourceIndex(3) -3 >Emitted(99, 47) Source(37, 39) + SourceIndex(3) +1->Emitted(100, 5) Source(37, 38) + SourceIndex(3) +2 >Emitted(100, 46) Source(37, 39) + SourceIndex(3) +3 >Emitted(100, 47) Source(37, 39) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^ @@ -3936,9 +3941,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(100, 5) Source(37, 41) + SourceIndex(3) -2 >Emitted(100, 46) Source(37, 42) + SourceIndex(3) -3 >Emitted(100, 47) Source(37, 42) + SourceIndex(3) +1->Emitted(101, 5) Source(37, 41) + SourceIndex(3) +2 >Emitted(101, 46) Source(37, 42) + SourceIndex(3) +3 >Emitted(101, 47) Source(37, 42) + SourceIndex(3) --- >>>})(internalEnum || (internalEnum = {})); 1 > @@ -3955,13 +3960,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalEnum 7 > { a, b, c } -1 >Emitted(101, 1) Source(37, 43) + SourceIndex(3) -2 >Emitted(101, 2) Source(37, 44) + SourceIndex(3) -3 >Emitted(101, 4) Source(37, 20) + SourceIndex(3) -4 >Emitted(101, 16) Source(37, 32) + SourceIndex(3) -5 >Emitted(101, 21) Source(37, 20) + SourceIndex(3) -6 >Emitted(101, 33) Source(37, 32) + SourceIndex(3) -7 >Emitted(101, 41) Source(37, 44) + SourceIndex(3) +1 >Emitted(102, 1) Source(37, 43) + SourceIndex(3) +2 >Emitted(102, 2) Source(37, 44) + SourceIndex(3) +3 >Emitted(102, 4) Source(37, 20) + SourceIndex(3) +4 >Emitted(102, 16) Source(37, 32) + SourceIndex(3) +5 >Emitted(102, 21) Source(37, 20) + SourceIndex(3) +6 >Emitted(102, 33) Source(37, 32) + SourceIndex(3) +7 >Emitted(102, 41) Source(37, 44) + SourceIndex(3) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -3971,13 +3976,13 @@ sourceFile:../../../second/second_part2.ts 1 > 2 >^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(102, 1) Source(1, 1) + SourceIndex(4) +1 >Emitted(103, 1) Source(1, 1) + SourceIndex(4) --- >>> function C() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(103, 5) Source(1, 1) + SourceIndex(4) +1->Emitted(104, 5) Source(1, 1) + SourceIndex(4) --- >>> } 1->^^^^ @@ -3989,8 +3994,8 @@ sourceFile:../../../second/second_part2.ts > } > 2 > } -1->Emitted(104, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(104, 6) Source(5, 2) + SourceIndex(4) +1->Emitted(105, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(105, 6) Source(5, 2) + SourceIndex(4) --- >>> C.prototype.doSomething = function () { 1->^^^^ @@ -4000,9 +4005,9 @@ sourceFile:../../../second/second_part2.ts 1-> 2 > doSomething 3 > -1->Emitted(105, 5) Source(2, 5) + SourceIndex(4) -2 >Emitted(105, 28) Source(2, 16) + SourceIndex(4) -3 >Emitted(105, 31) Source(2, 5) + SourceIndex(4) +1->Emitted(106, 5) Source(2, 5) + SourceIndex(4) +2 >Emitted(106, 28) Source(2, 16) + SourceIndex(4) +3 >Emitted(106, 31) Source(2, 5) + SourceIndex(4) --- >>> console.log("something got done"); 1->^^^^^^^^ @@ -4022,14 +4027,14 @@ sourceFile:../../../second/second_part2.ts 6 > "something got done" 7 > ) 8 > ; -1->Emitted(106, 9) Source(3, 9) + SourceIndex(4) -2 >Emitted(106, 16) Source(3, 16) + SourceIndex(4) -3 >Emitted(106, 17) Source(3, 17) + SourceIndex(4) -4 >Emitted(106, 20) Source(3, 20) + SourceIndex(4) -5 >Emitted(106, 21) Source(3, 21) + SourceIndex(4) -6 >Emitted(106, 41) Source(3, 41) + SourceIndex(4) -7 >Emitted(106, 42) Source(3, 42) + SourceIndex(4) -8 >Emitted(106, 43) Source(3, 43) + SourceIndex(4) +1->Emitted(107, 9) Source(3, 9) + SourceIndex(4) +2 >Emitted(107, 16) Source(3, 16) + SourceIndex(4) +3 >Emitted(107, 17) Source(3, 17) + SourceIndex(4) +4 >Emitted(107, 20) Source(3, 20) + SourceIndex(4) +5 >Emitted(107, 21) Source(3, 21) + SourceIndex(4) +6 >Emitted(107, 41) Source(3, 41) + SourceIndex(4) +7 >Emitted(107, 42) Source(3, 42) + SourceIndex(4) +8 >Emitted(107, 43) Source(3, 43) + SourceIndex(4) --- >>> }; 1 >^^^^ @@ -4038,8 +4043,8 @@ sourceFile:../../../second/second_part2.ts 1 > > 2 > } -1 >Emitted(107, 5) Source(4, 5) + SourceIndex(4) -2 >Emitted(107, 6) Source(4, 6) + SourceIndex(4) +1 >Emitted(108, 5) Source(4, 5) + SourceIndex(4) +2 >Emitted(108, 6) Source(4, 6) + SourceIndex(4) --- >>> return C; 1->^^^^ @@ -4047,8 +4052,8 @@ sourceFile:../../../second/second_part2.ts 1-> > 2 > } -1->Emitted(108, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(108, 13) Source(5, 2) + SourceIndex(4) +1->Emitted(109, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(109, 13) Source(5, 2) + SourceIndex(4) --- >>>}()); 1 > @@ -4064,10 +4069,10 @@ sourceFile:../../../second/second_part2.ts > console.log("something got done"); > } > } -1 >Emitted(109, 1) Source(5, 1) + SourceIndex(4) -2 >Emitted(109, 2) Source(5, 2) + SourceIndex(4) -3 >Emitted(109, 2) Source(1, 1) + SourceIndex(4) -4 >Emitted(109, 6) Source(5, 2) + SourceIndex(4) +1 >Emitted(110, 1) Source(5, 1) + SourceIndex(4) +2 >Emitted(110, 2) Source(5, 2) + SourceIndex(4) +3 >Emitted(110, 2) Source(1, 1) + SourceIndex(4) +4 >Emitted(110, 6) Source(5, 2) + SourceIndex(4) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -4091,14 +4096,14 @@ sourceFile:../../third_part1.ts 6 > C 7 > () 8 > ; -1->Emitted(110, 1) Source(1, 1) + SourceIndex(5) -2 >Emitted(110, 5) Source(1, 5) + SourceIndex(5) -3 >Emitted(110, 6) Source(1, 6) + SourceIndex(5) -4 >Emitted(110, 9) Source(1, 9) + SourceIndex(5) -5 >Emitted(110, 13) Source(1, 13) + SourceIndex(5) -6 >Emitted(110, 14) Source(1, 14) + SourceIndex(5) -7 >Emitted(110, 16) Source(1, 16) + SourceIndex(5) -8 >Emitted(110, 17) Source(1, 17) + SourceIndex(5) +1->Emitted(111, 1) Source(1, 1) + SourceIndex(5) +2 >Emitted(111, 5) Source(1, 5) + SourceIndex(5) +3 >Emitted(111, 6) Source(1, 6) + SourceIndex(5) +4 >Emitted(111, 9) Source(1, 9) + SourceIndex(5) +5 >Emitted(111, 13) Source(1, 13) + SourceIndex(5) +6 >Emitted(111, 14) Source(1, 14) + SourceIndex(5) +7 >Emitted(111, 16) Source(1, 16) + SourceIndex(5) +8 >Emitted(111, 17) Source(1, 17) + SourceIndex(5) --- >>>c.doSomething(); 1-> @@ -4115,12 +4120,12 @@ sourceFile:../../third_part1.ts 4 > doSomething 5 > () 6 > ; -1->Emitted(111, 1) Source(2, 1) + SourceIndex(5) -2 >Emitted(111, 2) Source(2, 2) + SourceIndex(5) -3 >Emitted(111, 3) Source(2, 3) + SourceIndex(5) -4 >Emitted(111, 14) Source(2, 14) + SourceIndex(5) -5 >Emitted(111, 16) Source(2, 16) + SourceIndex(5) -6 >Emitted(111, 17) Source(2, 17) + SourceIndex(5) +1->Emitted(112, 1) Source(2, 1) + SourceIndex(5) +2 >Emitted(112, 2) Source(2, 2) + SourceIndex(5) +3 >Emitted(112, 3) Source(2, 3) + SourceIndex(5) +4 >Emitted(112, 14) Source(2, 14) + SourceIndex(5) +5 >Emitted(112, 16) Source(2, 16) + SourceIndex(5) +6 >Emitted(112, 17) Source(2, 17) + SourceIndex(5) --- >>>//# sourceMappingURL=third-output.js.map @@ -4135,20 +4140,20 @@ sourceFile:../../third_part1.ts "sections": [ { "pos": 0, - "end": 3180, + "end": 3228, "kind": "prepend", "data": "../../../2/second-output.js", "texts": [ { "pos": 0, - "end": 3180, + "end": 3228, "kind": "text" } ] }, { - "pos": 3180, - "end": 3216, + "pos": 3228, + "end": 3264, "kind": "text" } ] @@ -4183,9 +4188,9 @@ sourceFile:../../third_part1.ts ====================================================================== File:: /src/third/thirdjs/output/third-output.js ---------------------------------------------------------------------- -prepend: (0-3180):: ../../../2/second-output.js texts:: 1 +prepend: (0-3228):: ../../../2/second-output.js texts:: 1 >>-------------------------------------------------------------------- -text: (0-3180) +text: (0-3228) var s = "Hello, world"; console.log(s); console.log(s); @@ -4203,8 +4208,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -4297,7 +4303,7 @@ var C = (function () { }()); ---------------------------------------------------------------------- -text: (3180-3216) +text: (3228-3264) var c = new C(); c.doSomething(); diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js index c0127ea74f0e2..5e540d51abb32 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js @@ -59,8 +59,9 @@ var N; var normalC = /** @class */ (function () { /*@internal*/ function normalC() { } - /*@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /*@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /*@internal*/ get: function () { return 10; }, /*@internal*/ set: function (val) { }, enumerable: false, @@ -154,7 +155,7 @@ var C = /** @class */ (function () { //# sourceMappingURL=second-output.js.map //// [/src/2/second-output.js.map] -{"version":3,"file":"second-output.js","sourceRoot":"","sources":["../first/first_PART1.ts","../first/first_part2.ts","../first/first_part3.ts","../second/second_part1.ts","../second/second_part2.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"second-output.js","sourceRoot":"","sources":["../first/first_PART1.ts","../first/first_part2.ts","../first/first_part3.ts","../second/second_part1.ts","../second/second_part2.ts"],"names":[],"mappings":"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"} //// [/src/2/second-output.js.map.baseline.txt] =================================================================== @@ -488,13 +489,14 @@ sourceFile:../second/second_part1.ts >>> } 1 >^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 >constructor() { 2 > } 1 >Emitted(17, 5) Source(14, 35) + SourceIndex(3) 2 >Emitted(17, 6) Source(14, 36) + SourceIndex(3) --- ->>> /*@internal*/ normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> /*@internal*/ normalC_prototype.method = function () { }; 1->^^^^ 2 > ^^^^^^^^^^^^^ 3 > ^ @@ -511,15 +513,15 @@ sourceFile:../second/second_part1.ts 5 > 6 > method() { 7 > } -1->Emitted(18, 5) Source(16, 5) + SourceIndex(3) -2 >Emitted(18, 18) Source(16, 18) + SourceIndex(3) -3 >Emitted(18, 19) Source(16, 19) + SourceIndex(3) -4 >Emitted(18, 43) Source(16, 25) + SourceIndex(3) -5 >Emitted(18, 46) Source(16, 19) + SourceIndex(3) -6 >Emitted(18, 60) Source(16, 30) + SourceIndex(3) -7 >Emitted(18, 61) Source(16, 31) + SourceIndex(3) ---- ->>> Object.defineProperty(normalC.prototype, "c", { +1->Emitted(19, 5) Source(16, 5) + SourceIndex(3) +2 >Emitted(19, 18) Source(16, 18) + SourceIndex(3) +3 >Emitted(19, 19) Source(16, 19) + SourceIndex(3) +4 >Emitted(19, 43) Source(16, 25) + SourceIndex(3) +5 >Emitted(19, 46) Source(16, 19) + SourceIndex(3) +6 >Emitted(19, 60) Source(16, 30) + SourceIndex(3) +7 >Emitted(19, 61) Source(16, 31) + SourceIndex(3) +--- +>>> Object.defineProperty(normalC_prototype, "c", { 1 >^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -528,9 +530,9 @@ sourceFile:../second/second_part1.ts > /*@internal*/ 2 > get 3 > c -1 >Emitted(19, 5) Source(17, 19) + SourceIndex(3) -2 >Emitted(19, 27) Source(17, 23) + SourceIndex(3) -3 >Emitted(19, 49) Source(17, 24) + SourceIndex(3) +1 >Emitted(20, 5) Source(17, 19) + SourceIndex(3) +2 >Emitted(20, 27) Source(17, 23) + SourceIndex(3) +3 >Emitted(20, 49) Source(17, 24) + SourceIndex(3) --- >>> /*@internal*/ get: function () { return 10; }, 1->^^^^^^^^ @@ -551,15 +553,15 @@ sourceFile:../second/second_part1.ts 7 > ; 8 > 9 > } -1->Emitted(20, 9) Source(17, 5) + SourceIndex(3) -2 >Emitted(20, 22) Source(17, 18) + SourceIndex(3) -3 >Emitted(20, 28) Source(17, 19) + SourceIndex(3) -4 >Emitted(20, 42) Source(17, 29) + SourceIndex(3) -5 >Emitted(20, 49) Source(17, 36) + SourceIndex(3) -6 >Emitted(20, 51) Source(17, 38) + SourceIndex(3) -7 >Emitted(20, 52) Source(17, 39) + SourceIndex(3) -8 >Emitted(20, 53) Source(17, 40) + SourceIndex(3) -9 >Emitted(20, 54) Source(17, 41) + SourceIndex(3) +1->Emitted(21, 9) Source(17, 5) + SourceIndex(3) +2 >Emitted(21, 22) Source(17, 18) + SourceIndex(3) +3 >Emitted(21, 28) Source(17, 19) + SourceIndex(3) +4 >Emitted(21, 42) Source(17, 29) + SourceIndex(3) +5 >Emitted(21, 49) Source(17, 36) + SourceIndex(3) +6 >Emitted(21, 51) Source(17, 38) + SourceIndex(3) +7 >Emitted(21, 52) Source(17, 39) + SourceIndex(3) +8 >Emitted(21, 53) Source(17, 40) + SourceIndex(3) +9 >Emitted(21, 54) Source(17, 41) + SourceIndex(3) --- >>> /*@internal*/ set: function (val) { }, 1 >^^^^^^^^ @@ -577,13 +579,13 @@ sourceFile:../second/second_part1.ts 5 > val: number 6 > ) { 7 > } -1 >Emitted(21, 9) Source(18, 5) + SourceIndex(3) -2 >Emitted(21, 22) Source(18, 18) + SourceIndex(3) -3 >Emitted(21, 28) Source(18, 19) + SourceIndex(3) -4 >Emitted(21, 38) Source(18, 25) + SourceIndex(3) -5 >Emitted(21, 41) Source(18, 36) + SourceIndex(3) -6 >Emitted(21, 45) Source(18, 40) + SourceIndex(3) -7 >Emitted(21, 46) Source(18, 41) + SourceIndex(3) +1 >Emitted(22, 9) Source(18, 5) + SourceIndex(3) +2 >Emitted(22, 22) Source(18, 18) + SourceIndex(3) +3 >Emitted(22, 28) Source(18, 19) + SourceIndex(3) +4 >Emitted(22, 38) Source(18, 25) + SourceIndex(3) +5 >Emitted(22, 41) Source(18, 36) + SourceIndex(3) +6 >Emitted(22, 45) Source(18, 40) + SourceIndex(3) +7 >Emitted(22, 46) Source(18, 41) + SourceIndex(3) --- >>> enumerable: false, >>> configurable: true @@ -591,7 +593,7 @@ sourceFile:../second/second_part1.ts 1 >^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(24, 8) Source(17, 41) + SourceIndex(3) +1 >Emitted(25, 8) Source(17, 41) + SourceIndex(3) --- >>> return normalC; 1->^^^^ @@ -600,8 +602,8 @@ sourceFile:../second/second_part1.ts > /*@internal*/ set c(val: number) { } > 2 > } -1->Emitted(25, 5) Source(19, 1) + SourceIndex(3) -2 >Emitted(25, 19) Source(19, 2) + SourceIndex(3) +1->Emitted(26, 5) Source(19, 1) + SourceIndex(3) +2 >Emitted(26, 19) Source(19, 2) + SourceIndex(3) --- >>>}()); 1 > @@ -619,10 +621,10 @@ sourceFile:../second/second_part1.ts > /*@internal*/ get c() { return 10; } > /*@internal*/ set c(val: number) { } > } -1 >Emitted(26, 1) Source(19, 1) + SourceIndex(3) -2 >Emitted(26, 2) Source(19, 2) + SourceIndex(3) -3 >Emitted(26, 2) Source(13, 1) + SourceIndex(3) -4 >Emitted(26, 6) Source(19, 2) + SourceIndex(3) +1 >Emitted(27, 1) Source(19, 1) + SourceIndex(3) +2 >Emitted(27, 2) Source(19, 2) + SourceIndex(3) +3 >Emitted(27, 2) Source(13, 1) + SourceIndex(3) +4 >Emitted(27, 6) Source(19, 2) + SourceIndex(3) --- >>>var normalN; 1-> @@ -644,10 +646,10 @@ sourceFile:../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(27, 5) Source(20, 11) + SourceIndex(3) -3 >Emitted(27, 12) Source(20, 18) + SourceIndex(3) -4 >Emitted(27, 13) Source(29, 2) + SourceIndex(3) +1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(28, 5) Source(20, 11) + SourceIndex(3) +3 >Emitted(28, 12) Source(20, 18) + SourceIndex(3) +4 >Emitted(28, 13) Source(29, 2) + SourceIndex(3) --- >>>(function (normalN) { 1-> @@ -657,9 +659,9 @@ sourceFile:../second/second_part1.ts 1-> 2 >namespace 3 > normalN -1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(28, 12) Source(20, 11) + SourceIndex(3) -3 >Emitted(28, 19) Source(20, 18) + SourceIndex(3) +1->Emitted(29, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(29, 12) Source(20, 11) + SourceIndex(3) +3 >Emitted(29, 19) Source(20, 18) + SourceIndex(3) --- >>> /*@internal*/ var C = /** @class */ (function () { 1->^^^^ @@ -670,15 +672,15 @@ sourceFile:../second/second_part1.ts > 2 > /*@internal*/ 3 > -1->Emitted(29, 5) Source(21, 5) + SourceIndex(3) -2 >Emitted(29, 18) Source(21, 18) + SourceIndex(3) -3 >Emitted(29, 19) Source(21, 19) + SourceIndex(3) +1->Emitted(30, 5) Source(21, 5) + SourceIndex(3) +2 >Emitted(30, 18) Source(21, 18) + SourceIndex(3) +3 >Emitted(30, 19) Source(21, 19) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(30, 9) Source(21, 19) + SourceIndex(3) +1->Emitted(31, 9) Source(21, 19) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -686,16 +688,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(31, 9) Source(21, 36) + SourceIndex(3) -2 >Emitted(31, 10) Source(21, 37) + SourceIndex(3) +1->Emitted(32, 9) Source(21, 36) + SourceIndex(3) +2 >Emitted(32, 10) Source(21, 37) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(32, 9) Source(21, 36) + SourceIndex(3) -2 >Emitted(32, 17) Source(21, 37) + SourceIndex(3) +1->Emitted(33, 9) Source(21, 36) + SourceIndex(3) +2 >Emitted(33, 17) Source(21, 37) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -707,10 +709,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(33, 5) Source(21, 36) + SourceIndex(3) -2 >Emitted(33, 6) Source(21, 37) + SourceIndex(3) -3 >Emitted(33, 6) Source(21, 19) + SourceIndex(3) -4 >Emitted(33, 10) Source(21, 37) + SourceIndex(3) +1 >Emitted(34, 5) Source(21, 36) + SourceIndex(3) +2 >Emitted(34, 6) Source(21, 37) + SourceIndex(3) +3 >Emitted(34, 6) Source(21, 19) + SourceIndex(3) +4 >Emitted(34, 10) Source(21, 37) + SourceIndex(3) --- >>> normalN.C = C; 1->^^^^ @@ -722,10 +724,10 @@ sourceFile:../second/second_part1.ts 2 > C 3 > { } 4 > -1->Emitted(34, 5) Source(21, 32) + SourceIndex(3) -2 >Emitted(34, 14) Source(21, 33) + SourceIndex(3) -3 >Emitted(34, 18) Source(21, 37) + SourceIndex(3) -4 >Emitted(34, 19) Source(21, 37) + SourceIndex(3) +1->Emitted(35, 5) Source(21, 32) + SourceIndex(3) +2 >Emitted(35, 14) Source(21, 33) + SourceIndex(3) +3 >Emitted(35, 18) Source(21, 37) + SourceIndex(3) +4 >Emitted(35, 19) Source(21, 37) + SourceIndex(3) --- >>> /*@internal*/ function foo() { } 1->^^^^ @@ -743,13 +745,13 @@ sourceFile:../second/second_part1.ts 5 > foo 6 > () { 7 > } -1->Emitted(35, 5) Source(22, 5) + SourceIndex(3) -2 >Emitted(35, 18) Source(22, 18) + SourceIndex(3) -3 >Emitted(35, 19) Source(22, 19) + SourceIndex(3) -4 >Emitted(35, 28) Source(22, 35) + SourceIndex(3) -5 >Emitted(35, 31) Source(22, 38) + SourceIndex(3) -6 >Emitted(35, 36) Source(22, 42) + SourceIndex(3) -7 >Emitted(35, 37) Source(22, 43) + SourceIndex(3) +1->Emitted(36, 5) Source(22, 5) + SourceIndex(3) +2 >Emitted(36, 18) Source(22, 18) + SourceIndex(3) +3 >Emitted(36, 19) Source(22, 19) + SourceIndex(3) +4 >Emitted(36, 28) Source(22, 35) + SourceIndex(3) +5 >Emitted(36, 31) Source(22, 38) + SourceIndex(3) +6 >Emitted(36, 36) Source(22, 42) + SourceIndex(3) +7 >Emitted(36, 37) Source(22, 43) + SourceIndex(3) --- >>> normalN.foo = foo; 1 >^^^^ @@ -761,10 +763,10 @@ sourceFile:../second/second_part1.ts 2 > foo 3 > () {} 4 > -1 >Emitted(36, 5) Source(22, 35) + SourceIndex(3) -2 >Emitted(36, 16) Source(22, 38) + SourceIndex(3) -3 >Emitted(36, 22) Source(22, 43) + SourceIndex(3) -4 >Emitted(36, 23) Source(22, 43) + SourceIndex(3) +1 >Emitted(37, 5) Source(22, 35) + SourceIndex(3) +2 >Emitted(37, 16) Source(22, 38) + SourceIndex(3) +3 >Emitted(37, 22) Source(22, 43) + SourceIndex(3) +4 >Emitted(37, 23) Source(22, 43) + SourceIndex(3) --- >>> /*@internal*/ var someNamespace; 1->^^^^ @@ -780,12 +782,12 @@ sourceFile:../second/second_part1.ts 4 > export namespace 5 > someNamespace 6 > { export class C {} } -1->Emitted(37, 5) Source(23, 5) + SourceIndex(3) -2 >Emitted(37, 18) Source(23, 18) + SourceIndex(3) -3 >Emitted(37, 19) Source(23, 19) + SourceIndex(3) -4 >Emitted(37, 23) Source(23, 36) + SourceIndex(3) -5 >Emitted(37, 36) Source(23, 49) + SourceIndex(3) -6 >Emitted(37, 37) Source(23, 71) + SourceIndex(3) +1->Emitted(38, 5) Source(23, 5) + SourceIndex(3) +2 >Emitted(38, 18) Source(23, 18) + SourceIndex(3) +3 >Emitted(38, 19) Source(23, 19) + SourceIndex(3) +4 >Emitted(38, 23) Source(23, 36) + SourceIndex(3) +5 >Emitted(38, 36) Source(23, 49) + SourceIndex(3) +6 >Emitted(38, 37) Source(23, 71) + SourceIndex(3) --- >>> (function (someNamespace) { 1 >^^^^ @@ -795,21 +797,21 @@ sourceFile:../second/second_part1.ts 1 > 2 > export namespace 3 > someNamespace -1 >Emitted(38, 5) Source(23, 19) + SourceIndex(3) -2 >Emitted(38, 16) Source(23, 36) + SourceIndex(3) -3 >Emitted(38, 29) Source(23, 49) + SourceIndex(3) +1 >Emitted(39, 5) Source(23, 19) + SourceIndex(3) +2 >Emitted(39, 16) Source(23, 36) + SourceIndex(3) +3 >Emitted(39, 29) Source(23, 49) + SourceIndex(3) --- >>> var C = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(39, 9) Source(23, 52) + SourceIndex(3) +1->Emitted(40, 9) Source(23, 52) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(40, 13) Source(23, 52) + SourceIndex(3) +1->Emitted(41, 13) Source(23, 52) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -817,16 +819,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(41, 13) Source(23, 68) + SourceIndex(3) -2 >Emitted(41, 14) Source(23, 69) + SourceIndex(3) +1->Emitted(42, 13) Source(23, 68) + SourceIndex(3) +2 >Emitted(42, 14) Source(23, 69) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(42, 13) Source(23, 68) + SourceIndex(3) -2 >Emitted(42, 21) Source(23, 69) + SourceIndex(3) +1->Emitted(43, 13) Source(23, 68) + SourceIndex(3) +2 >Emitted(43, 21) Source(23, 69) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -838,10 +840,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(43, 9) Source(23, 68) + SourceIndex(3) -2 >Emitted(43, 10) Source(23, 69) + SourceIndex(3) -3 >Emitted(43, 10) Source(23, 52) + SourceIndex(3) -4 >Emitted(43, 14) Source(23, 69) + SourceIndex(3) +1 >Emitted(44, 9) Source(23, 68) + SourceIndex(3) +2 >Emitted(44, 10) Source(23, 69) + SourceIndex(3) +3 >Emitted(44, 10) Source(23, 52) + SourceIndex(3) +4 >Emitted(44, 14) Source(23, 69) + SourceIndex(3) --- >>> someNamespace.C = C; 1->^^^^^^^^ @@ -853,10 +855,10 @@ sourceFile:../second/second_part1.ts 2 > C 3 > {} 4 > -1->Emitted(44, 9) Source(23, 65) + SourceIndex(3) -2 >Emitted(44, 24) Source(23, 66) + SourceIndex(3) -3 >Emitted(44, 28) Source(23, 69) + SourceIndex(3) -4 >Emitted(44, 29) Source(23, 69) + SourceIndex(3) +1->Emitted(45, 9) Source(23, 65) + SourceIndex(3) +2 >Emitted(45, 24) Source(23, 66) + SourceIndex(3) +3 >Emitted(45, 28) Source(23, 69) + SourceIndex(3) +4 >Emitted(45, 29) Source(23, 69) + SourceIndex(3) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^ @@ -877,15 +879,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(45, 5) Source(23, 70) + SourceIndex(3) -2 >Emitted(45, 6) Source(23, 71) + SourceIndex(3) -3 >Emitted(45, 8) Source(23, 36) + SourceIndex(3) -4 >Emitted(45, 21) Source(23, 49) + SourceIndex(3) -5 >Emitted(45, 24) Source(23, 36) + SourceIndex(3) -6 >Emitted(45, 45) Source(23, 49) + SourceIndex(3) -7 >Emitted(45, 50) Source(23, 36) + SourceIndex(3) -8 >Emitted(45, 71) Source(23, 49) + SourceIndex(3) -9 >Emitted(45, 79) Source(23, 71) + SourceIndex(3) +1->Emitted(46, 5) Source(23, 70) + SourceIndex(3) +2 >Emitted(46, 6) Source(23, 71) + SourceIndex(3) +3 >Emitted(46, 8) Source(23, 36) + SourceIndex(3) +4 >Emitted(46, 21) Source(23, 49) + SourceIndex(3) +5 >Emitted(46, 24) Source(23, 36) + SourceIndex(3) +6 >Emitted(46, 45) Source(23, 49) + SourceIndex(3) +7 >Emitted(46, 50) Source(23, 36) + SourceIndex(3) +8 >Emitted(46, 71) Source(23, 49) + SourceIndex(3) +9 >Emitted(46, 79) Source(23, 71) + SourceIndex(3) --- >>> /*@internal*/ var someOther; 1 >^^^^ @@ -901,12 +903,12 @@ sourceFile:../second/second_part1.ts 4 > export namespace 5 > someOther 6 > .something { export class someClass {} } -1 >Emitted(46, 5) Source(24, 5) + SourceIndex(3) -2 >Emitted(46, 18) Source(24, 18) + SourceIndex(3) -3 >Emitted(46, 19) Source(24, 19) + SourceIndex(3) -4 >Emitted(46, 23) Source(24, 36) + SourceIndex(3) -5 >Emitted(46, 32) Source(24, 45) + SourceIndex(3) -6 >Emitted(46, 33) Source(24, 85) + SourceIndex(3) +1 >Emitted(47, 5) Source(24, 5) + SourceIndex(3) +2 >Emitted(47, 18) Source(24, 18) + SourceIndex(3) +3 >Emitted(47, 19) Source(24, 19) + SourceIndex(3) +4 >Emitted(47, 23) Source(24, 36) + SourceIndex(3) +5 >Emitted(47, 32) Source(24, 45) + SourceIndex(3) +6 >Emitted(47, 33) Source(24, 85) + SourceIndex(3) --- >>> (function (someOther) { 1 >^^^^ @@ -915,9 +917,9 @@ sourceFile:../second/second_part1.ts 1 > 2 > export namespace 3 > someOther -1 >Emitted(47, 5) Source(24, 19) + SourceIndex(3) -2 >Emitted(47, 16) Source(24, 36) + SourceIndex(3) -3 >Emitted(47, 25) Source(24, 45) + SourceIndex(3) +1 >Emitted(48, 5) Source(24, 19) + SourceIndex(3) +2 >Emitted(48, 16) Source(24, 36) + SourceIndex(3) +3 >Emitted(48, 25) Source(24, 45) + SourceIndex(3) --- >>> var something; 1 >^^^^^^^^ @@ -929,10 +931,10 @@ sourceFile:../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(48, 9) Source(24, 46) + SourceIndex(3) -2 >Emitted(48, 13) Source(24, 46) + SourceIndex(3) -3 >Emitted(48, 22) Source(24, 55) + SourceIndex(3) -4 >Emitted(48, 23) Source(24, 85) + SourceIndex(3) +1 >Emitted(49, 9) Source(24, 46) + SourceIndex(3) +2 >Emitted(49, 13) Source(24, 46) + SourceIndex(3) +3 >Emitted(49, 22) Source(24, 55) + SourceIndex(3) +4 >Emitted(49, 23) Source(24, 85) + SourceIndex(3) --- >>> (function (something) { 1->^^^^^^^^ @@ -942,21 +944,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(49, 9) Source(24, 46) + SourceIndex(3) -2 >Emitted(49, 20) Source(24, 46) + SourceIndex(3) -3 >Emitted(49, 29) Source(24, 55) + SourceIndex(3) +1->Emitted(50, 9) Source(24, 46) + SourceIndex(3) +2 >Emitted(50, 20) Source(24, 46) + SourceIndex(3) +3 >Emitted(50, 29) Source(24, 55) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(50, 13) Source(24, 58) + SourceIndex(3) +1->Emitted(51, 13) Source(24, 58) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(51, 17) Source(24, 58) + SourceIndex(3) +1->Emitted(52, 17) Source(24, 58) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -964,16 +966,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(52, 17) Source(24, 82) + SourceIndex(3) -2 >Emitted(52, 18) Source(24, 83) + SourceIndex(3) +1->Emitted(53, 17) Source(24, 82) + SourceIndex(3) +2 >Emitted(53, 18) Source(24, 83) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(53, 17) Source(24, 82) + SourceIndex(3) -2 >Emitted(53, 33) Source(24, 83) + SourceIndex(3) +1->Emitted(54, 17) Source(24, 82) + SourceIndex(3) +2 >Emitted(54, 33) Source(24, 83) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -985,10 +987,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(54, 13) Source(24, 82) + SourceIndex(3) -2 >Emitted(54, 14) Source(24, 83) + SourceIndex(3) -3 >Emitted(54, 14) Source(24, 58) + SourceIndex(3) -4 >Emitted(54, 18) Source(24, 83) + SourceIndex(3) +1 >Emitted(55, 13) Source(24, 82) + SourceIndex(3) +2 >Emitted(55, 14) Source(24, 83) + SourceIndex(3) +3 >Emitted(55, 14) Source(24, 58) + SourceIndex(3) +4 >Emitted(55, 18) Source(24, 83) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -1000,10 +1002,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(55, 13) Source(24, 71) + SourceIndex(3) -2 >Emitted(55, 32) Source(24, 80) + SourceIndex(3) -3 >Emitted(55, 44) Source(24, 83) + SourceIndex(3) -4 >Emitted(55, 45) Source(24, 83) + SourceIndex(3) +1->Emitted(56, 13) Source(24, 71) + SourceIndex(3) +2 >Emitted(56, 32) Source(24, 80) + SourceIndex(3) +3 >Emitted(56, 44) Source(24, 83) + SourceIndex(3) +4 >Emitted(56, 45) Source(24, 83) + SourceIndex(3) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^ @@ -1024,15 +1026,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(56, 9) Source(24, 84) + SourceIndex(3) -2 >Emitted(56, 10) Source(24, 85) + SourceIndex(3) -3 >Emitted(56, 12) Source(24, 46) + SourceIndex(3) -4 >Emitted(56, 21) Source(24, 55) + SourceIndex(3) -5 >Emitted(56, 24) Source(24, 46) + SourceIndex(3) -6 >Emitted(56, 43) Source(24, 55) + SourceIndex(3) -7 >Emitted(56, 48) Source(24, 46) + SourceIndex(3) -8 >Emitted(56, 67) Source(24, 55) + SourceIndex(3) -9 >Emitted(56, 75) Source(24, 85) + SourceIndex(3) +1->Emitted(57, 9) Source(24, 84) + SourceIndex(3) +2 >Emitted(57, 10) Source(24, 85) + SourceIndex(3) +3 >Emitted(57, 12) Source(24, 46) + SourceIndex(3) +4 >Emitted(57, 21) Source(24, 55) + SourceIndex(3) +5 >Emitted(57, 24) Source(24, 46) + SourceIndex(3) +6 >Emitted(57, 43) Source(24, 55) + SourceIndex(3) +7 >Emitted(57, 48) Source(24, 46) + SourceIndex(3) +8 >Emitted(57, 67) Source(24, 55) + SourceIndex(3) +9 >Emitted(57, 75) Source(24, 85) + SourceIndex(3) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^ @@ -1053,15 +1055,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(57, 5) Source(24, 84) + SourceIndex(3) -2 >Emitted(57, 6) Source(24, 85) + SourceIndex(3) -3 >Emitted(57, 8) Source(24, 36) + SourceIndex(3) -4 >Emitted(57, 17) Source(24, 45) + SourceIndex(3) -5 >Emitted(57, 20) Source(24, 36) + SourceIndex(3) -6 >Emitted(57, 37) Source(24, 45) + SourceIndex(3) -7 >Emitted(57, 42) Source(24, 36) + SourceIndex(3) -8 >Emitted(57, 59) Source(24, 45) + SourceIndex(3) -9 >Emitted(57, 67) Source(24, 85) + SourceIndex(3) +1 >Emitted(58, 5) Source(24, 84) + SourceIndex(3) +2 >Emitted(58, 6) Source(24, 85) + SourceIndex(3) +3 >Emitted(58, 8) Source(24, 36) + SourceIndex(3) +4 >Emitted(58, 17) Source(24, 45) + SourceIndex(3) +5 >Emitted(58, 20) Source(24, 36) + SourceIndex(3) +6 >Emitted(58, 37) Source(24, 45) + SourceIndex(3) +7 >Emitted(58, 42) Source(24, 36) + SourceIndex(3) +8 >Emitted(58, 59) Source(24, 45) + SourceIndex(3) +9 >Emitted(58, 67) Source(24, 85) + SourceIndex(3) --- >>> /*@internal*/ normalN.someImport = someNamespace.C; 1 >^^^^ @@ -1083,15 +1085,15 @@ sourceFile:../second/second_part1.ts 7 > . 8 > C 9 > ; -1 >Emitted(58, 5) Source(25, 5) + SourceIndex(3) -2 >Emitted(58, 18) Source(25, 18) + SourceIndex(3) -3 >Emitted(58, 19) Source(25, 33) + SourceIndex(3) -4 >Emitted(58, 37) Source(25, 43) + SourceIndex(3) -5 >Emitted(58, 40) Source(25, 46) + SourceIndex(3) -6 >Emitted(58, 53) Source(25, 59) + SourceIndex(3) -7 >Emitted(58, 54) Source(25, 60) + SourceIndex(3) -8 >Emitted(58, 55) Source(25, 61) + SourceIndex(3) -9 >Emitted(58, 56) Source(25, 62) + SourceIndex(3) +1 >Emitted(59, 5) Source(25, 5) + SourceIndex(3) +2 >Emitted(59, 18) Source(25, 18) + SourceIndex(3) +3 >Emitted(59, 19) Source(25, 33) + SourceIndex(3) +4 >Emitted(59, 37) Source(25, 43) + SourceIndex(3) +5 >Emitted(59, 40) Source(25, 46) + SourceIndex(3) +6 >Emitted(59, 53) Source(25, 59) + SourceIndex(3) +7 >Emitted(59, 54) Source(25, 60) + SourceIndex(3) +8 >Emitted(59, 55) Source(25, 61) + SourceIndex(3) +9 >Emitted(59, 56) Source(25, 62) + SourceIndex(3) --- >>> /*@internal*/ normalN.internalConst = 10; 1 >^^^^ @@ -1110,13 +1112,13 @@ sourceFile:../second/second_part1.ts 5 > = 6 > 10 7 > ; -1 >Emitted(59, 5) Source(27, 5) + SourceIndex(3) -2 >Emitted(59, 18) Source(27, 18) + SourceIndex(3) -3 >Emitted(59, 19) Source(27, 32) + SourceIndex(3) -4 >Emitted(59, 40) Source(27, 45) + SourceIndex(3) -5 >Emitted(59, 43) Source(27, 48) + SourceIndex(3) -6 >Emitted(59, 45) Source(27, 50) + SourceIndex(3) -7 >Emitted(59, 46) Source(27, 51) + SourceIndex(3) +1 >Emitted(60, 5) Source(27, 5) + SourceIndex(3) +2 >Emitted(60, 18) Source(27, 18) + SourceIndex(3) +3 >Emitted(60, 19) Source(27, 32) + SourceIndex(3) +4 >Emitted(60, 40) Source(27, 45) + SourceIndex(3) +5 >Emitted(60, 43) Source(27, 48) + SourceIndex(3) +6 >Emitted(60, 45) Source(27, 50) + SourceIndex(3) +7 >Emitted(60, 46) Source(27, 51) + SourceIndex(3) --- >>> /*@internal*/ var internalEnum; 1 >^^^^ @@ -1130,11 +1132,11 @@ sourceFile:../second/second_part1.ts 3 > 4 > export enum 5 > internalEnum { a, b, c } -1 >Emitted(60, 5) Source(28, 5) + SourceIndex(3) -2 >Emitted(60, 18) Source(28, 18) + SourceIndex(3) -3 >Emitted(60, 19) Source(28, 19) + SourceIndex(3) -4 >Emitted(60, 23) Source(28, 31) + SourceIndex(3) -5 >Emitted(60, 35) Source(28, 55) + SourceIndex(3) +1 >Emitted(61, 5) Source(28, 5) + SourceIndex(3) +2 >Emitted(61, 18) Source(28, 18) + SourceIndex(3) +3 >Emitted(61, 19) Source(28, 19) + SourceIndex(3) +4 >Emitted(61, 23) Source(28, 31) + SourceIndex(3) +5 >Emitted(61, 35) Source(28, 55) + SourceIndex(3) --- >>> (function (internalEnum) { 1 >^^^^ @@ -1144,9 +1146,9 @@ sourceFile:../second/second_part1.ts 1 > 2 > export enum 3 > internalEnum -1 >Emitted(61, 5) Source(28, 19) + SourceIndex(3) -2 >Emitted(61, 16) Source(28, 31) + SourceIndex(3) -3 >Emitted(61, 28) Source(28, 43) + SourceIndex(3) +1 >Emitted(62, 5) Source(28, 19) + SourceIndex(3) +2 >Emitted(62, 16) Source(28, 31) + SourceIndex(3) +3 >Emitted(62, 28) Source(28, 43) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -1156,9 +1158,9 @@ sourceFile:../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(62, 9) Source(28, 46) + SourceIndex(3) -2 >Emitted(62, 50) Source(28, 47) + SourceIndex(3) -3 >Emitted(62, 51) Source(28, 47) + SourceIndex(3) +1->Emitted(63, 9) Source(28, 46) + SourceIndex(3) +2 >Emitted(63, 50) Source(28, 47) + SourceIndex(3) +3 >Emitted(63, 51) Source(28, 47) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -1168,9 +1170,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(63, 9) Source(28, 49) + SourceIndex(3) -2 >Emitted(63, 50) Source(28, 50) + SourceIndex(3) -3 >Emitted(63, 51) Source(28, 50) + SourceIndex(3) +1->Emitted(64, 9) Source(28, 49) + SourceIndex(3) +2 >Emitted(64, 50) Source(28, 50) + SourceIndex(3) +3 >Emitted(64, 51) Source(28, 50) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -1180,9 +1182,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(64, 9) Source(28, 52) + SourceIndex(3) -2 >Emitted(64, 50) Source(28, 53) + SourceIndex(3) -3 >Emitted(64, 51) Source(28, 53) + SourceIndex(3) +1->Emitted(65, 9) Source(28, 52) + SourceIndex(3) +2 >Emitted(65, 50) Source(28, 53) + SourceIndex(3) +3 >Emitted(65, 51) Source(28, 53) + SourceIndex(3) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^ @@ -1203,15 +1205,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(65, 5) Source(28, 54) + SourceIndex(3) -2 >Emitted(65, 6) Source(28, 55) + SourceIndex(3) -3 >Emitted(65, 8) Source(28, 31) + SourceIndex(3) -4 >Emitted(65, 20) Source(28, 43) + SourceIndex(3) -5 >Emitted(65, 23) Source(28, 31) + SourceIndex(3) -6 >Emitted(65, 43) Source(28, 43) + SourceIndex(3) -7 >Emitted(65, 48) Source(28, 31) + SourceIndex(3) -8 >Emitted(65, 68) Source(28, 43) + SourceIndex(3) -9 >Emitted(65, 76) Source(28, 55) + SourceIndex(3) +1->Emitted(66, 5) Source(28, 54) + SourceIndex(3) +2 >Emitted(66, 6) Source(28, 55) + SourceIndex(3) +3 >Emitted(66, 8) Source(28, 31) + SourceIndex(3) +4 >Emitted(66, 20) Source(28, 43) + SourceIndex(3) +5 >Emitted(66, 23) Source(28, 31) + SourceIndex(3) +6 >Emitted(66, 43) Source(28, 43) + SourceIndex(3) +7 >Emitted(66, 48) Source(28, 31) + SourceIndex(3) +8 >Emitted(66, 68) Source(28, 43) + SourceIndex(3) +9 >Emitted(66, 76) Source(28, 55) + SourceIndex(3) --- >>>})(normalN || (normalN = {})); 1 > @@ -1239,13 +1241,13 @@ sourceFile:../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(66, 1) Source(29, 1) + SourceIndex(3) -2 >Emitted(66, 2) Source(29, 2) + SourceIndex(3) -3 >Emitted(66, 4) Source(20, 11) + SourceIndex(3) -4 >Emitted(66, 11) Source(20, 18) + SourceIndex(3) -5 >Emitted(66, 16) Source(20, 11) + SourceIndex(3) -6 >Emitted(66, 23) Source(20, 18) + SourceIndex(3) -7 >Emitted(66, 31) Source(29, 2) + SourceIndex(3) +1 >Emitted(67, 1) Source(29, 1) + SourceIndex(3) +2 >Emitted(67, 2) Source(29, 2) + SourceIndex(3) +3 >Emitted(67, 4) Source(20, 11) + SourceIndex(3) +4 >Emitted(67, 11) Source(20, 18) + SourceIndex(3) +5 >Emitted(67, 16) Source(20, 11) + SourceIndex(3) +6 >Emitted(67, 23) Source(20, 18) + SourceIndex(3) +7 >Emitted(67, 31) Source(29, 2) + SourceIndex(3) --- >>>/*@internal*/ var internalC = /** @class */ (function () { 1-> @@ -1256,15 +1258,15 @@ sourceFile:../second/second_part1.ts > 2 >/*@internal*/ 3 > -1->Emitted(67, 1) Source(30, 1) + SourceIndex(3) -2 >Emitted(67, 14) Source(30, 14) + SourceIndex(3) -3 >Emitted(67, 15) Source(30, 15) + SourceIndex(3) +1->Emitted(68, 1) Source(30, 1) + SourceIndex(3) +2 >Emitted(68, 14) Source(30, 14) + SourceIndex(3) +3 >Emitted(68, 15) Source(30, 15) + SourceIndex(3) --- >>> function internalC() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(68, 5) Source(30, 15) + SourceIndex(3) +1->Emitted(69, 5) Source(30, 15) + SourceIndex(3) --- >>> } 1->^^^^ @@ -1272,16 +1274,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->class internalC { 2 > } -1->Emitted(69, 5) Source(30, 32) + SourceIndex(3) -2 >Emitted(69, 6) Source(30, 33) + SourceIndex(3) +1->Emitted(70, 5) Source(30, 32) + SourceIndex(3) +2 >Emitted(70, 6) Source(30, 33) + SourceIndex(3) --- >>> return internalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(70, 5) Source(30, 32) + SourceIndex(3) -2 >Emitted(70, 21) Source(30, 33) + SourceIndex(3) +1->Emitted(71, 5) Source(30, 32) + SourceIndex(3) +2 >Emitted(71, 21) Source(30, 33) + SourceIndex(3) --- >>>}()); 1 > @@ -1293,10 +1295,10 @@ sourceFile:../second/second_part1.ts 2 >} 3 > 4 > class internalC {} -1 >Emitted(71, 1) Source(30, 32) + SourceIndex(3) -2 >Emitted(71, 2) Source(30, 33) + SourceIndex(3) -3 >Emitted(71, 2) Source(30, 15) + SourceIndex(3) -4 >Emitted(71, 6) Source(30, 33) + SourceIndex(3) +1 >Emitted(72, 1) Source(30, 32) + SourceIndex(3) +2 >Emitted(72, 2) Source(30, 33) + SourceIndex(3) +3 >Emitted(72, 2) Source(30, 15) + SourceIndex(3) +4 >Emitted(72, 6) Source(30, 33) + SourceIndex(3) --- >>>/*@internal*/ function internalfoo() { } 1-> @@ -1314,13 +1316,13 @@ sourceFile:../second/second_part1.ts 5 > internalfoo 6 > () { 7 > } -1->Emitted(72, 1) Source(31, 1) + SourceIndex(3) -2 >Emitted(72, 14) Source(31, 14) + SourceIndex(3) -3 >Emitted(72, 15) Source(31, 15) + SourceIndex(3) -4 >Emitted(72, 24) Source(31, 24) + SourceIndex(3) -5 >Emitted(72, 35) Source(31, 35) + SourceIndex(3) -6 >Emitted(72, 40) Source(31, 39) + SourceIndex(3) -7 >Emitted(72, 41) Source(31, 40) + SourceIndex(3) +1->Emitted(73, 1) Source(31, 1) + SourceIndex(3) +2 >Emitted(73, 14) Source(31, 14) + SourceIndex(3) +3 >Emitted(73, 15) Source(31, 15) + SourceIndex(3) +4 >Emitted(73, 24) Source(31, 24) + SourceIndex(3) +5 >Emitted(73, 35) Source(31, 35) + SourceIndex(3) +6 >Emitted(73, 40) Source(31, 39) + SourceIndex(3) +7 >Emitted(73, 41) Source(31, 40) + SourceIndex(3) --- >>>/*@internal*/ var internalNamespace; 1 > @@ -1336,12 +1338,12 @@ sourceFile:../second/second_part1.ts 4 > namespace 5 > internalNamespace 6 > { export class someClass {} } -1 >Emitted(73, 1) Source(32, 1) + SourceIndex(3) -2 >Emitted(73, 14) Source(32, 14) + SourceIndex(3) -3 >Emitted(73, 15) Source(32, 15) + SourceIndex(3) -4 >Emitted(73, 19) Source(32, 25) + SourceIndex(3) -5 >Emitted(73, 36) Source(32, 42) + SourceIndex(3) -6 >Emitted(73, 37) Source(32, 72) + SourceIndex(3) +1 >Emitted(74, 1) Source(32, 1) + SourceIndex(3) +2 >Emitted(74, 14) Source(32, 14) + SourceIndex(3) +3 >Emitted(74, 15) Source(32, 15) + SourceIndex(3) +4 >Emitted(74, 19) Source(32, 25) + SourceIndex(3) +5 >Emitted(74, 36) Source(32, 42) + SourceIndex(3) +6 >Emitted(74, 37) Source(32, 72) + SourceIndex(3) --- >>>(function (internalNamespace) { 1 > @@ -1351,21 +1353,21 @@ sourceFile:../second/second_part1.ts 1 > 2 >namespace 3 > internalNamespace -1 >Emitted(74, 1) Source(32, 15) + SourceIndex(3) -2 >Emitted(74, 12) Source(32, 25) + SourceIndex(3) -3 >Emitted(74, 29) Source(32, 42) + SourceIndex(3) +1 >Emitted(75, 1) Source(32, 15) + SourceIndex(3) +2 >Emitted(75, 12) Source(32, 25) + SourceIndex(3) +3 >Emitted(75, 29) Source(32, 42) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(75, 5) Source(32, 45) + SourceIndex(3) +1->Emitted(76, 5) Source(32, 45) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(76, 9) Source(32, 45) + SourceIndex(3) +1->Emitted(77, 9) Source(32, 45) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -1373,16 +1375,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(77, 9) Source(32, 69) + SourceIndex(3) -2 >Emitted(77, 10) Source(32, 70) + SourceIndex(3) +1->Emitted(78, 9) Source(32, 69) + SourceIndex(3) +2 >Emitted(78, 10) Source(32, 70) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(78, 9) Source(32, 69) + SourceIndex(3) -2 >Emitted(78, 25) Source(32, 70) + SourceIndex(3) +1->Emitted(79, 9) Source(32, 69) + SourceIndex(3) +2 >Emitted(79, 25) Source(32, 70) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -1394,10 +1396,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(79, 5) Source(32, 69) + SourceIndex(3) -2 >Emitted(79, 6) Source(32, 70) + SourceIndex(3) -3 >Emitted(79, 6) Source(32, 45) + SourceIndex(3) -4 >Emitted(79, 10) Source(32, 70) + SourceIndex(3) +1 >Emitted(80, 5) Source(32, 69) + SourceIndex(3) +2 >Emitted(80, 6) Source(32, 70) + SourceIndex(3) +3 >Emitted(80, 6) Source(32, 45) + SourceIndex(3) +4 >Emitted(80, 10) Source(32, 70) + SourceIndex(3) --- >>> internalNamespace.someClass = someClass; 1->^^^^ @@ -1409,10 +1411,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(80, 5) Source(32, 58) + SourceIndex(3) -2 >Emitted(80, 32) Source(32, 67) + SourceIndex(3) -3 >Emitted(80, 44) Source(32, 70) + SourceIndex(3) -4 >Emitted(80, 45) Source(32, 70) + SourceIndex(3) +1->Emitted(81, 5) Source(32, 58) + SourceIndex(3) +2 >Emitted(81, 32) Source(32, 67) + SourceIndex(3) +3 >Emitted(81, 44) Source(32, 70) + SourceIndex(3) +4 >Emitted(81, 45) Source(32, 70) + SourceIndex(3) --- >>>})(internalNamespace || (internalNamespace = {})); 1-> @@ -1429,13 +1431,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalNamespace 7 > { export class someClass {} } -1->Emitted(81, 1) Source(32, 71) + SourceIndex(3) -2 >Emitted(81, 2) Source(32, 72) + SourceIndex(3) -3 >Emitted(81, 4) Source(32, 25) + SourceIndex(3) -4 >Emitted(81, 21) Source(32, 42) + SourceIndex(3) -5 >Emitted(81, 26) Source(32, 25) + SourceIndex(3) -6 >Emitted(81, 43) Source(32, 42) + SourceIndex(3) -7 >Emitted(81, 51) Source(32, 72) + SourceIndex(3) +1->Emitted(82, 1) Source(32, 71) + SourceIndex(3) +2 >Emitted(82, 2) Source(32, 72) + SourceIndex(3) +3 >Emitted(82, 4) Source(32, 25) + SourceIndex(3) +4 >Emitted(82, 21) Source(32, 42) + SourceIndex(3) +5 >Emitted(82, 26) Source(32, 25) + SourceIndex(3) +6 >Emitted(82, 43) Source(32, 42) + SourceIndex(3) +7 >Emitted(82, 51) Source(32, 72) + SourceIndex(3) --- >>>/*@internal*/ var internalOther; 1 > @@ -1451,12 +1453,12 @@ sourceFile:../second/second_part1.ts 4 > namespace 5 > internalOther 6 > .something { export class someClass {} } -1 >Emitted(82, 1) Source(33, 1) + SourceIndex(3) -2 >Emitted(82, 14) Source(33, 14) + SourceIndex(3) -3 >Emitted(82, 15) Source(33, 15) + SourceIndex(3) -4 >Emitted(82, 19) Source(33, 25) + SourceIndex(3) -5 >Emitted(82, 32) Source(33, 38) + SourceIndex(3) -6 >Emitted(82, 33) Source(33, 78) + SourceIndex(3) +1 >Emitted(83, 1) Source(33, 1) + SourceIndex(3) +2 >Emitted(83, 14) Source(33, 14) + SourceIndex(3) +3 >Emitted(83, 15) Source(33, 15) + SourceIndex(3) +4 >Emitted(83, 19) Source(33, 25) + SourceIndex(3) +5 >Emitted(83, 32) Source(33, 38) + SourceIndex(3) +6 >Emitted(83, 33) Source(33, 78) + SourceIndex(3) --- >>>(function (internalOther) { 1 > @@ -1465,9 +1467,9 @@ sourceFile:../second/second_part1.ts 1 > 2 >namespace 3 > internalOther -1 >Emitted(83, 1) Source(33, 15) + SourceIndex(3) -2 >Emitted(83, 12) Source(33, 25) + SourceIndex(3) -3 >Emitted(83, 25) Source(33, 38) + SourceIndex(3) +1 >Emitted(84, 1) Source(33, 15) + SourceIndex(3) +2 >Emitted(84, 12) Source(33, 25) + SourceIndex(3) +3 >Emitted(84, 25) Source(33, 38) + SourceIndex(3) --- >>> var something; 1 >^^^^ @@ -1479,10 +1481,10 @@ sourceFile:../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(84, 5) Source(33, 39) + SourceIndex(3) -2 >Emitted(84, 9) Source(33, 39) + SourceIndex(3) -3 >Emitted(84, 18) Source(33, 48) + SourceIndex(3) -4 >Emitted(84, 19) Source(33, 78) + SourceIndex(3) +1 >Emitted(85, 5) Source(33, 39) + SourceIndex(3) +2 >Emitted(85, 9) Source(33, 39) + SourceIndex(3) +3 >Emitted(85, 18) Source(33, 48) + SourceIndex(3) +4 >Emitted(85, 19) Source(33, 78) + SourceIndex(3) --- >>> (function (something) { 1->^^^^ @@ -1492,21 +1494,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(85, 5) Source(33, 39) + SourceIndex(3) -2 >Emitted(85, 16) Source(33, 39) + SourceIndex(3) -3 >Emitted(85, 25) Source(33, 48) + SourceIndex(3) +1->Emitted(86, 5) Source(33, 39) + SourceIndex(3) +2 >Emitted(86, 16) Source(33, 39) + SourceIndex(3) +3 >Emitted(86, 25) Source(33, 48) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(86, 9) Source(33, 51) + SourceIndex(3) +1->Emitted(87, 9) Source(33, 51) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(87, 13) Source(33, 51) + SourceIndex(3) +1->Emitted(88, 13) Source(33, 51) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -1514,16 +1516,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(88, 13) Source(33, 75) + SourceIndex(3) -2 >Emitted(88, 14) Source(33, 76) + SourceIndex(3) +1->Emitted(89, 13) Source(33, 75) + SourceIndex(3) +2 >Emitted(89, 14) Source(33, 76) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(89, 13) Source(33, 75) + SourceIndex(3) -2 >Emitted(89, 29) Source(33, 76) + SourceIndex(3) +1->Emitted(90, 13) Source(33, 75) + SourceIndex(3) +2 >Emitted(90, 29) Source(33, 76) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -1535,10 +1537,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(90, 9) Source(33, 75) + SourceIndex(3) -2 >Emitted(90, 10) Source(33, 76) + SourceIndex(3) -3 >Emitted(90, 10) Source(33, 51) + SourceIndex(3) -4 >Emitted(90, 14) Source(33, 76) + SourceIndex(3) +1 >Emitted(91, 9) Source(33, 75) + SourceIndex(3) +2 >Emitted(91, 10) Source(33, 76) + SourceIndex(3) +3 >Emitted(91, 10) Source(33, 51) + SourceIndex(3) +4 >Emitted(91, 14) Source(33, 76) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^ @@ -1550,10 +1552,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(91, 9) Source(33, 64) + SourceIndex(3) -2 >Emitted(91, 28) Source(33, 73) + SourceIndex(3) -3 >Emitted(91, 40) Source(33, 76) + SourceIndex(3) -4 >Emitted(91, 41) Source(33, 76) + SourceIndex(3) +1->Emitted(92, 9) Source(33, 64) + SourceIndex(3) +2 >Emitted(92, 28) Source(33, 73) + SourceIndex(3) +3 >Emitted(92, 40) Source(33, 76) + SourceIndex(3) +4 >Emitted(92, 41) Source(33, 76) + SourceIndex(3) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^ @@ -1574,15 +1576,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(92, 5) Source(33, 77) + SourceIndex(3) -2 >Emitted(92, 6) Source(33, 78) + SourceIndex(3) -3 >Emitted(92, 8) Source(33, 39) + SourceIndex(3) -4 >Emitted(92, 17) Source(33, 48) + SourceIndex(3) -5 >Emitted(92, 20) Source(33, 39) + SourceIndex(3) -6 >Emitted(92, 43) Source(33, 48) + SourceIndex(3) -7 >Emitted(92, 48) Source(33, 39) + SourceIndex(3) -8 >Emitted(92, 71) Source(33, 48) + SourceIndex(3) -9 >Emitted(92, 79) Source(33, 78) + SourceIndex(3) +1->Emitted(93, 5) Source(33, 77) + SourceIndex(3) +2 >Emitted(93, 6) Source(33, 78) + SourceIndex(3) +3 >Emitted(93, 8) Source(33, 39) + SourceIndex(3) +4 >Emitted(93, 17) Source(33, 48) + SourceIndex(3) +5 >Emitted(93, 20) Source(33, 39) + SourceIndex(3) +6 >Emitted(93, 43) Source(33, 48) + SourceIndex(3) +7 >Emitted(93, 48) Source(33, 39) + SourceIndex(3) +8 >Emitted(93, 71) Source(33, 48) + SourceIndex(3) +9 >Emitted(93, 79) Source(33, 78) + SourceIndex(3) --- >>>})(internalOther || (internalOther = {})); 1 > @@ -1600,13 +1602,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalOther 7 > .something { export class someClass {} } -1 >Emitted(93, 1) Source(33, 77) + SourceIndex(3) -2 >Emitted(93, 2) Source(33, 78) + SourceIndex(3) -3 >Emitted(93, 4) Source(33, 25) + SourceIndex(3) -4 >Emitted(93, 17) Source(33, 38) + SourceIndex(3) -5 >Emitted(93, 22) Source(33, 25) + SourceIndex(3) -6 >Emitted(93, 35) Source(33, 38) + SourceIndex(3) -7 >Emitted(93, 43) Source(33, 78) + SourceIndex(3) +1 >Emitted(94, 1) Source(33, 77) + SourceIndex(3) +2 >Emitted(94, 2) Source(33, 78) + SourceIndex(3) +3 >Emitted(94, 4) Source(33, 25) + SourceIndex(3) +4 >Emitted(94, 17) Source(33, 38) + SourceIndex(3) +5 >Emitted(94, 22) Source(33, 25) + SourceIndex(3) +6 >Emitted(94, 35) Source(33, 38) + SourceIndex(3) +7 >Emitted(94, 43) Source(33, 78) + SourceIndex(3) --- >>>/*@internal*/ var internalImport = internalNamespace.someClass; 1-> @@ -1630,16 +1632,16 @@ sourceFile:../second/second_part1.ts 8 > . 9 > someClass 10> ; -1->Emitted(94, 1) Source(34, 1) + SourceIndex(3) -2 >Emitted(94, 14) Source(34, 14) + SourceIndex(3) -3 >Emitted(94, 15) Source(34, 15) + SourceIndex(3) -4 >Emitted(94, 19) Source(34, 22) + SourceIndex(3) -5 >Emitted(94, 33) Source(34, 36) + SourceIndex(3) -6 >Emitted(94, 36) Source(34, 39) + SourceIndex(3) -7 >Emitted(94, 53) Source(34, 56) + SourceIndex(3) -8 >Emitted(94, 54) Source(34, 57) + SourceIndex(3) -9 >Emitted(94, 63) Source(34, 66) + SourceIndex(3) -10>Emitted(94, 64) Source(34, 67) + SourceIndex(3) +1->Emitted(95, 1) Source(34, 1) + SourceIndex(3) +2 >Emitted(95, 14) Source(34, 14) + SourceIndex(3) +3 >Emitted(95, 15) Source(34, 15) + SourceIndex(3) +4 >Emitted(95, 19) Source(34, 22) + SourceIndex(3) +5 >Emitted(95, 33) Source(34, 36) + SourceIndex(3) +6 >Emitted(95, 36) Source(34, 39) + SourceIndex(3) +7 >Emitted(95, 53) Source(34, 56) + SourceIndex(3) +8 >Emitted(95, 54) Source(34, 57) + SourceIndex(3) +9 >Emitted(95, 63) Source(34, 66) + SourceIndex(3) +10>Emitted(95, 64) Source(34, 67) + SourceIndex(3) --- >>>/*@internal*/ var internalConst = 10; 1 > @@ -1660,14 +1662,14 @@ sourceFile:../second/second_part1.ts 6 > = 7 > 10 8 > ; -1 >Emitted(95, 1) Source(36, 1) + SourceIndex(3) -2 >Emitted(95, 14) Source(36, 14) + SourceIndex(3) -3 >Emitted(95, 15) Source(36, 15) + SourceIndex(3) -4 >Emitted(95, 19) Source(36, 21) + SourceIndex(3) -5 >Emitted(95, 32) Source(36, 34) + SourceIndex(3) -6 >Emitted(95, 35) Source(36, 37) + SourceIndex(3) -7 >Emitted(95, 37) Source(36, 39) + SourceIndex(3) -8 >Emitted(95, 38) Source(36, 40) + SourceIndex(3) +1 >Emitted(96, 1) Source(36, 1) + SourceIndex(3) +2 >Emitted(96, 14) Source(36, 14) + SourceIndex(3) +3 >Emitted(96, 15) Source(36, 15) + SourceIndex(3) +4 >Emitted(96, 19) Source(36, 21) + SourceIndex(3) +5 >Emitted(96, 32) Source(36, 34) + SourceIndex(3) +6 >Emitted(96, 35) Source(36, 37) + SourceIndex(3) +7 >Emitted(96, 37) Source(36, 39) + SourceIndex(3) +8 >Emitted(96, 38) Source(36, 40) + SourceIndex(3) --- >>>/*@internal*/ var internalEnum; 1 > @@ -1681,11 +1683,11 @@ sourceFile:../second/second_part1.ts 3 > 4 > enum 5 > internalEnum { a, b, c } -1 >Emitted(96, 1) Source(37, 1) + SourceIndex(3) -2 >Emitted(96, 14) Source(37, 14) + SourceIndex(3) -3 >Emitted(96, 15) Source(37, 15) + SourceIndex(3) -4 >Emitted(96, 19) Source(37, 20) + SourceIndex(3) -5 >Emitted(96, 31) Source(37, 44) + SourceIndex(3) +1 >Emitted(97, 1) Source(37, 1) + SourceIndex(3) +2 >Emitted(97, 14) Source(37, 14) + SourceIndex(3) +3 >Emitted(97, 15) Source(37, 15) + SourceIndex(3) +4 >Emitted(97, 19) Source(37, 20) + SourceIndex(3) +5 >Emitted(97, 31) Source(37, 44) + SourceIndex(3) --- >>>(function (internalEnum) { 1 > @@ -1695,9 +1697,9 @@ sourceFile:../second/second_part1.ts 1 > 2 >enum 3 > internalEnum -1 >Emitted(97, 1) Source(37, 15) + SourceIndex(3) -2 >Emitted(97, 12) Source(37, 20) + SourceIndex(3) -3 >Emitted(97, 24) Source(37, 32) + SourceIndex(3) +1 >Emitted(98, 1) Source(37, 15) + SourceIndex(3) +2 >Emitted(98, 12) Source(37, 20) + SourceIndex(3) +3 >Emitted(98, 24) Source(37, 32) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^ @@ -1707,9 +1709,9 @@ sourceFile:../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(98, 5) Source(37, 35) + SourceIndex(3) -2 >Emitted(98, 46) Source(37, 36) + SourceIndex(3) -3 >Emitted(98, 47) Source(37, 36) + SourceIndex(3) +1->Emitted(99, 5) Source(37, 35) + SourceIndex(3) +2 >Emitted(99, 46) Source(37, 36) + SourceIndex(3) +3 >Emitted(99, 47) Source(37, 36) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^ @@ -1719,9 +1721,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(99, 5) Source(37, 38) + SourceIndex(3) -2 >Emitted(99, 46) Source(37, 39) + SourceIndex(3) -3 >Emitted(99, 47) Source(37, 39) + SourceIndex(3) +1->Emitted(100, 5) Source(37, 38) + SourceIndex(3) +2 >Emitted(100, 46) Source(37, 39) + SourceIndex(3) +3 >Emitted(100, 47) Source(37, 39) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^ @@ -1730,9 +1732,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(100, 5) Source(37, 41) + SourceIndex(3) -2 >Emitted(100, 46) Source(37, 42) + SourceIndex(3) -3 >Emitted(100, 47) Source(37, 42) + SourceIndex(3) +1->Emitted(101, 5) Source(37, 41) + SourceIndex(3) +2 >Emitted(101, 46) Source(37, 42) + SourceIndex(3) +3 >Emitted(101, 47) Source(37, 42) + SourceIndex(3) --- >>>})(internalEnum || (internalEnum = {})); 1 > @@ -1749,13 +1751,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalEnum 7 > { a, b, c } -1 >Emitted(101, 1) Source(37, 43) + SourceIndex(3) -2 >Emitted(101, 2) Source(37, 44) + SourceIndex(3) -3 >Emitted(101, 4) Source(37, 20) + SourceIndex(3) -4 >Emitted(101, 16) Source(37, 32) + SourceIndex(3) -5 >Emitted(101, 21) Source(37, 20) + SourceIndex(3) -6 >Emitted(101, 33) Source(37, 32) + SourceIndex(3) -7 >Emitted(101, 41) Source(37, 44) + SourceIndex(3) +1 >Emitted(102, 1) Source(37, 43) + SourceIndex(3) +2 >Emitted(102, 2) Source(37, 44) + SourceIndex(3) +3 >Emitted(102, 4) Source(37, 20) + SourceIndex(3) +4 >Emitted(102, 16) Source(37, 32) + SourceIndex(3) +5 >Emitted(102, 21) Source(37, 20) + SourceIndex(3) +6 >Emitted(102, 33) Source(37, 32) + SourceIndex(3) +7 >Emitted(102, 41) Source(37, 44) + SourceIndex(3) --- ------------------------------------------------------------------- emittedFile:/src/2/second-output.js @@ -1765,13 +1767,13 @@ sourceFile:../second/second_part2.ts 1 > 2 >^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(102, 1) Source(1, 1) + SourceIndex(4) +1 >Emitted(103, 1) Source(1, 1) + SourceIndex(4) --- >>> function C() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(103, 5) Source(1, 1) + SourceIndex(4) +1->Emitted(104, 5) Source(1, 1) + SourceIndex(4) --- >>> } 1->^^^^ @@ -1783,8 +1785,8 @@ sourceFile:../second/second_part2.ts > } > 2 > } -1->Emitted(104, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(104, 6) Source(5, 2) + SourceIndex(4) +1->Emitted(105, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(105, 6) Source(5, 2) + SourceIndex(4) --- >>> C.prototype.doSomething = function () { 1->^^^^ @@ -1794,9 +1796,9 @@ sourceFile:../second/second_part2.ts 1-> 2 > doSomething 3 > -1->Emitted(105, 5) Source(2, 5) + SourceIndex(4) -2 >Emitted(105, 28) Source(2, 16) + SourceIndex(4) -3 >Emitted(105, 31) Source(2, 5) + SourceIndex(4) +1->Emitted(106, 5) Source(2, 5) + SourceIndex(4) +2 >Emitted(106, 28) Source(2, 16) + SourceIndex(4) +3 >Emitted(106, 31) Source(2, 5) + SourceIndex(4) --- >>> console.log("something got done"); 1->^^^^^^^^ @@ -1816,14 +1818,14 @@ sourceFile:../second/second_part2.ts 6 > "something got done" 7 > ) 8 > ; -1->Emitted(106, 9) Source(3, 9) + SourceIndex(4) -2 >Emitted(106, 16) Source(3, 16) + SourceIndex(4) -3 >Emitted(106, 17) Source(3, 17) + SourceIndex(4) -4 >Emitted(106, 20) Source(3, 20) + SourceIndex(4) -5 >Emitted(106, 21) Source(3, 21) + SourceIndex(4) -6 >Emitted(106, 41) Source(3, 41) + SourceIndex(4) -7 >Emitted(106, 42) Source(3, 42) + SourceIndex(4) -8 >Emitted(106, 43) Source(3, 43) + SourceIndex(4) +1->Emitted(107, 9) Source(3, 9) + SourceIndex(4) +2 >Emitted(107, 16) Source(3, 16) + SourceIndex(4) +3 >Emitted(107, 17) Source(3, 17) + SourceIndex(4) +4 >Emitted(107, 20) Source(3, 20) + SourceIndex(4) +5 >Emitted(107, 21) Source(3, 21) + SourceIndex(4) +6 >Emitted(107, 41) Source(3, 41) + SourceIndex(4) +7 >Emitted(107, 42) Source(3, 42) + SourceIndex(4) +8 >Emitted(107, 43) Source(3, 43) + SourceIndex(4) --- >>> }; 1 >^^^^ @@ -1832,8 +1834,8 @@ sourceFile:../second/second_part2.ts 1 > > 2 > } -1 >Emitted(107, 5) Source(4, 5) + SourceIndex(4) -2 >Emitted(107, 6) Source(4, 6) + SourceIndex(4) +1 >Emitted(108, 5) Source(4, 5) + SourceIndex(4) +2 >Emitted(108, 6) Source(4, 6) + SourceIndex(4) --- >>> return C; 1->^^^^ @@ -1841,8 +1843,8 @@ sourceFile:../second/second_part2.ts 1-> > 2 > } -1->Emitted(108, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(108, 13) Source(5, 2) + SourceIndex(4) +1->Emitted(109, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(109, 13) Source(5, 2) + SourceIndex(4) --- >>>}()); 1 > @@ -1858,10 +1860,10 @@ sourceFile:../second/second_part2.ts > console.log("something got done"); > } > } -1 >Emitted(109, 1) Source(5, 1) + SourceIndex(4) -2 >Emitted(109, 2) Source(5, 2) + SourceIndex(4) -3 >Emitted(109, 2) Source(1, 1) + SourceIndex(4) -4 >Emitted(109, 6) Source(5, 2) + SourceIndex(4) +1 >Emitted(110, 1) Source(5, 1) + SourceIndex(4) +2 >Emitted(110, 2) Source(5, 2) + SourceIndex(4) +3 >Emitted(110, 2) Source(1, 1) + SourceIndex(4) +4 >Emitted(110, 6) Source(5, 2) + SourceIndex(4) --- >>>//# sourceMappingURL=second-output.js.map @@ -1890,7 +1892,7 @@ sourceFile:../second/second_part2.ts }, { "pos": 127, - "end": 3544, + "end": 3592, "kind": "text" } ] @@ -1972,7 +1974,7 @@ function f() { } ---------------------------------------------------------------------- -text: (127-3544) +text: (127-3592) var N; (function (N) { function f() { @@ -1983,8 +1985,9 @@ var N; var normalC = /** @class */ (function () { /*@internal*/ function normalC() { } - /*@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /*@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /*@internal*/ get: function () { return 10; }, /*@internal*/ set: function (val) { }, enumerable: false, @@ -2441,8 +2444,9 @@ var N; var normalC = /** @class */ (function () { /*@internal*/ function normalC() { } - /*@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /*@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /*@internal*/ get: function () { return 10; }, /*@internal*/ set: function (val) { }, enumerable: false, @@ -2538,7 +2542,7 @@ c.doSomething(); //# sourceMappingURL=third-output.js.map //// [/src/third/thirdjs/output/third-output.js.map] -{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} //// [/src/third/thirdjs/output/third-output.js.map.baseline.txt] =================================================================== @@ -2872,13 +2876,14 @@ sourceFile:../../../second/second_part1.ts >>> } 1 >^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 >constructor() { 2 > } 1 >Emitted(17, 5) Source(14, 35) + SourceIndex(3) 2 >Emitted(17, 6) Source(14, 36) + SourceIndex(3) --- ->>> /*@internal*/ normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> /*@internal*/ normalC_prototype.method = function () { }; 1->^^^^ 2 > ^^^^^^^^^^^^^ 3 > ^ @@ -2895,15 +2900,15 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > method() { 7 > } -1->Emitted(18, 5) Source(16, 5) + SourceIndex(3) -2 >Emitted(18, 18) Source(16, 18) + SourceIndex(3) -3 >Emitted(18, 19) Source(16, 19) + SourceIndex(3) -4 >Emitted(18, 43) Source(16, 25) + SourceIndex(3) -5 >Emitted(18, 46) Source(16, 19) + SourceIndex(3) -6 >Emitted(18, 60) Source(16, 30) + SourceIndex(3) -7 >Emitted(18, 61) Source(16, 31) + SourceIndex(3) ---- ->>> Object.defineProperty(normalC.prototype, "c", { +1->Emitted(19, 5) Source(16, 5) + SourceIndex(3) +2 >Emitted(19, 18) Source(16, 18) + SourceIndex(3) +3 >Emitted(19, 19) Source(16, 19) + SourceIndex(3) +4 >Emitted(19, 43) Source(16, 25) + SourceIndex(3) +5 >Emitted(19, 46) Source(16, 19) + SourceIndex(3) +6 >Emitted(19, 60) Source(16, 30) + SourceIndex(3) +7 >Emitted(19, 61) Source(16, 31) + SourceIndex(3) +--- +>>> Object.defineProperty(normalC_prototype, "c", { 1 >^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -2912,9 +2917,9 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ 2 > get 3 > c -1 >Emitted(19, 5) Source(17, 19) + SourceIndex(3) -2 >Emitted(19, 27) Source(17, 23) + SourceIndex(3) -3 >Emitted(19, 49) Source(17, 24) + SourceIndex(3) +1 >Emitted(20, 5) Source(17, 19) + SourceIndex(3) +2 >Emitted(20, 27) Source(17, 23) + SourceIndex(3) +3 >Emitted(20, 49) Source(17, 24) + SourceIndex(3) --- >>> /*@internal*/ get: function () { return 10; }, 1->^^^^^^^^ @@ -2935,15 +2940,15 @@ sourceFile:../../../second/second_part1.ts 7 > ; 8 > 9 > } -1->Emitted(20, 9) Source(17, 5) + SourceIndex(3) -2 >Emitted(20, 22) Source(17, 18) + SourceIndex(3) -3 >Emitted(20, 28) Source(17, 19) + SourceIndex(3) -4 >Emitted(20, 42) Source(17, 29) + SourceIndex(3) -5 >Emitted(20, 49) Source(17, 36) + SourceIndex(3) -6 >Emitted(20, 51) Source(17, 38) + SourceIndex(3) -7 >Emitted(20, 52) Source(17, 39) + SourceIndex(3) -8 >Emitted(20, 53) Source(17, 40) + SourceIndex(3) -9 >Emitted(20, 54) Source(17, 41) + SourceIndex(3) +1->Emitted(21, 9) Source(17, 5) + SourceIndex(3) +2 >Emitted(21, 22) Source(17, 18) + SourceIndex(3) +3 >Emitted(21, 28) Source(17, 19) + SourceIndex(3) +4 >Emitted(21, 42) Source(17, 29) + SourceIndex(3) +5 >Emitted(21, 49) Source(17, 36) + SourceIndex(3) +6 >Emitted(21, 51) Source(17, 38) + SourceIndex(3) +7 >Emitted(21, 52) Source(17, 39) + SourceIndex(3) +8 >Emitted(21, 53) Source(17, 40) + SourceIndex(3) +9 >Emitted(21, 54) Source(17, 41) + SourceIndex(3) --- >>> /*@internal*/ set: function (val) { }, 1 >^^^^^^^^ @@ -2961,13 +2966,13 @@ sourceFile:../../../second/second_part1.ts 5 > val: number 6 > ) { 7 > } -1 >Emitted(21, 9) Source(18, 5) + SourceIndex(3) -2 >Emitted(21, 22) Source(18, 18) + SourceIndex(3) -3 >Emitted(21, 28) Source(18, 19) + SourceIndex(3) -4 >Emitted(21, 38) Source(18, 25) + SourceIndex(3) -5 >Emitted(21, 41) Source(18, 36) + SourceIndex(3) -6 >Emitted(21, 45) Source(18, 40) + SourceIndex(3) -7 >Emitted(21, 46) Source(18, 41) + SourceIndex(3) +1 >Emitted(22, 9) Source(18, 5) + SourceIndex(3) +2 >Emitted(22, 22) Source(18, 18) + SourceIndex(3) +3 >Emitted(22, 28) Source(18, 19) + SourceIndex(3) +4 >Emitted(22, 38) Source(18, 25) + SourceIndex(3) +5 >Emitted(22, 41) Source(18, 36) + SourceIndex(3) +6 >Emitted(22, 45) Source(18, 40) + SourceIndex(3) +7 >Emitted(22, 46) Source(18, 41) + SourceIndex(3) --- >>> enumerable: false, >>> configurable: true @@ -2975,7 +2980,7 @@ sourceFile:../../../second/second_part1.ts 1 >^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(24, 8) Source(17, 41) + SourceIndex(3) +1 >Emitted(25, 8) Source(17, 41) + SourceIndex(3) --- >>> return normalC; 1->^^^^ @@ -2984,8 +2989,8 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ set c(val: number) { } > 2 > } -1->Emitted(25, 5) Source(19, 1) + SourceIndex(3) -2 >Emitted(25, 19) Source(19, 2) + SourceIndex(3) +1->Emitted(26, 5) Source(19, 1) + SourceIndex(3) +2 >Emitted(26, 19) Source(19, 2) + SourceIndex(3) --- >>>}()); 1 > @@ -3003,10 +3008,10 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ get c() { return 10; } > /*@internal*/ set c(val: number) { } > } -1 >Emitted(26, 1) Source(19, 1) + SourceIndex(3) -2 >Emitted(26, 2) Source(19, 2) + SourceIndex(3) -3 >Emitted(26, 2) Source(13, 1) + SourceIndex(3) -4 >Emitted(26, 6) Source(19, 2) + SourceIndex(3) +1 >Emitted(27, 1) Source(19, 1) + SourceIndex(3) +2 >Emitted(27, 2) Source(19, 2) + SourceIndex(3) +3 >Emitted(27, 2) Source(13, 1) + SourceIndex(3) +4 >Emitted(27, 6) Source(19, 2) + SourceIndex(3) --- >>>var normalN; 1-> @@ -3028,10 +3033,10 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(27, 5) Source(20, 11) + SourceIndex(3) -3 >Emitted(27, 12) Source(20, 18) + SourceIndex(3) -4 >Emitted(27, 13) Source(29, 2) + SourceIndex(3) +1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(28, 5) Source(20, 11) + SourceIndex(3) +3 >Emitted(28, 12) Source(20, 18) + SourceIndex(3) +4 >Emitted(28, 13) Source(29, 2) + SourceIndex(3) --- >>>(function (normalN) { 1-> @@ -3041,9 +3046,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > normalN -1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(28, 12) Source(20, 11) + SourceIndex(3) -3 >Emitted(28, 19) Source(20, 18) + SourceIndex(3) +1->Emitted(29, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(29, 12) Source(20, 11) + SourceIndex(3) +3 >Emitted(29, 19) Source(20, 18) + SourceIndex(3) --- >>> /*@internal*/ var C = /** @class */ (function () { 1->^^^^ @@ -3054,15 +3059,15 @@ sourceFile:../../../second/second_part1.ts > 2 > /*@internal*/ 3 > -1->Emitted(29, 5) Source(21, 5) + SourceIndex(3) -2 >Emitted(29, 18) Source(21, 18) + SourceIndex(3) -3 >Emitted(29, 19) Source(21, 19) + SourceIndex(3) +1->Emitted(30, 5) Source(21, 5) + SourceIndex(3) +2 >Emitted(30, 18) Source(21, 18) + SourceIndex(3) +3 >Emitted(30, 19) Source(21, 19) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(30, 9) Source(21, 19) + SourceIndex(3) +1->Emitted(31, 9) Source(21, 19) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -3070,16 +3075,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(31, 9) Source(21, 36) + SourceIndex(3) -2 >Emitted(31, 10) Source(21, 37) + SourceIndex(3) +1->Emitted(32, 9) Source(21, 36) + SourceIndex(3) +2 >Emitted(32, 10) Source(21, 37) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(32, 9) Source(21, 36) + SourceIndex(3) -2 >Emitted(32, 17) Source(21, 37) + SourceIndex(3) +1->Emitted(33, 9) Source(21, 36) + SourceIndex(3) +2 >Emitted(33, 17) Source(21, 37) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -3091,10 +3096,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(33, 5) Source(21, 36) + SourceIndex(3) -2 >Emitted(33, 6) Source(21, 37) + SourceIndex(3) -3 >Emitted(33, 6) Source(21, 19) + SourceIndex(3) -4 >Emitted(33, 10) Source(21, 37) + SourceIndex(3) +1 >Emitted(34, 5) Source(21, 36) + SourceIndex(3) +2 >Emitted(34, 6) Source(21, 37) + SourceIndex(3) +3 >Emitted(34, 6) Source(21, 19) + SourceIndex(3) +4 >Emitted(34, 10) Source(21, 37) + SourceIndex(3) --- >>> normalN.C = C; 1->^^^^ @@ -3106,10 +3111,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > { } 4 > -1->Emitted(34, 5) Source(21, 32) + SourceIndex(3) -2 >Emitted(34, 14) Source(21, 33) + SourceIndex(3) -3 >Emitted(34, 18) Source(21, 37) + SourceIndex(3) -4 >Emitted(34, 19) Source(21, 37) + SourceIndex(3) +1->Emitted(35, 5) Source(21, 32) + SourceIndex(3) +2 >Emitted(35, 14) Source(21, 33) + SourceIndex(3) +3 >Emitted(35, 18) Source(21, 37) + SourceIndex(3) +4 >Emitted(35, 19) Source(21, 37) + SourceIndex(3) --- >>> /*@internal*/ function foo() { } 1->^^^^ @@ -3127,13 +3132,13 @@ sourceFile:../../../second/second_part1.ts 5 > foo 6 > () { 7 > } -1->Emitted(35, 5) Source(22, 5) + SourceIndex(3) -2 >Emitted(35, 18) Source(22, 18) + SourceIndex(3) -3 >Emitted(35, 19) Source(22, 19) + SourceIndex(3) -4 >Emitted(35, 28) Source(22, 35) + SourceIndex(3) -5 >Emitted(35, 31) Source(22, 38) + SourceIndex(3) -6 >Emitted(35, 36) Source(22, 42) + SourceIndex(3) -7 >Emitted(35, 37) Source(22, 43) + SourceIndex(3) +1->Emitted(36, 5) Source(22, 5) + SourceIndex(3) +2 >Emitted(36, 18) Source(22, 18) + SourceIndex(3) +3 >Emitted(36, 19) Source(22, 19) + SourceIndex(3) +4 >Emitted(36, 28) Source(22, 35) + SourceIndex(3) +5 >Emitted(36, 31) Source(22, 38) + SourceIndex(3) +6 >Emitted(36, 36) Source(22, 42) + SourceIndex(3) +7 >Emitted(36, 37) Source(22, 43) + SourceIndex(3) --- >>> normalN.foo = foo; 1 >^^^^ @@ -3145,10 +3150,10 @@ sourceFile:../../../second/second_part1.ts 2 > foo 3 > () {} 4 > -1 >Emitted(36, 5) Source(22, 35) + SourceIndex(3) -2 >Emitted(36, 16) Source(22, 38) + SourceIndex(3) -3 >Emitted(36, 22) Source(22, 43) + SourceIndex(3) -4 >Emitted(36, 23) Source(22, 43) + SourceIndex(3) +1 >Emitted(37, 5) Source(22, 35) + SourceIndex(3) +2 >Emitted(37, 16) Source(22, 38) + SourceIndex(3) +3 >Emitted(37, 22) Source(22, 43) + SourceIndex(3) +4 >Emitted(37, 23) Source(22, 43) + SourceIndex(3) --- >>> /*@internal*/ var someNamespace; 1->^^^^ @@ -3164,12 +3169,12 @@ sourceFile:../../../second/second_part1.ts 4 > export namespace 5 > someNamespace 6 > { export class C {} } -1->Emitted(37, 5) Source(23, 5) + SourceIndex(3) -2 >Emitted(37, 18) Source(23, 18) + SourceIndex(3) -3 >Emitted(37, 19) Source(23, 19) + SourceIndex(3) -4 >Emitted(37, 23) Source(23, 36) + SourceIndex(3) -5 >Emitted(37, 36) Source(23, 49) + SourceIndex(3) -6 >Emitted(37, 37) Source(23, 71) + SourceIndex(3) +1->Emitted(38, 5) Source(23, 5) + SourceIndex(3) +2 >Emitted(38, 18) Source(23, 18) + SourceIndex(3) +3 >Emitted(38, 19) Source(23, 19) + SourceIndex(3) +4 >Emitted(38, 23) Source(23, 36) + SourceIndex(3) +5 >Emitted(38, 36) Source(23, 49) + SourceIndex(3) +6 >Emitted(38, 37) Source(23, 71) + SourceIndex(3) --- >>> (function (someNamespace) { 1 >^^^^ @@ -3179,21 +3184,21 @@ sourceFile:../../../second/second_part1.ts 1 > 2 > export namespace 3 > someNamespace -1 >Emitted(38, 5) Source(23, 19) + SourceIndex(3) -2 >Emitted(38, 16) Source(23, 36) + SourceIndex(3) -3 >Emitted(38, 29) Source(23, 49) + SourceIndex(3) +1 >Emitted(39, 5) Source(23, 19) + SourceIndex(3) +2 >Emitted(39, 16) Source(23, 36) + SourceIndex(3) +3 >Emitted(39, 29) Source(23, 49) + SourceIndex(3) --- >>> var C = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(39, 9) Source(23, 52) + SourceIndex(3) +1->Emitted(40, 9) Source(23, 52) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(40, 13) Source(23, 52) + SourceIndex(3) +1->Emitted(41, 13) Source(23, 52) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -3201,16 +3206,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(41, 13) Source(23, 68) + SourceIndex(3) -2 >Emitted(41, 14) Source(23, 69) + SourceIndex(3) +1->Emitted(42, 13) Source(23, 68) + SourceIndex(3) +2 >Emitted(42, 14) Source(23, 69) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(42, 13) Source(23, 68) + SourceIndex(3) -2 >Emitted(42, 21) Source(23, 69) + SourceIndex(3) +1->Emitted(43, 13) Source(23, 68) + SourceIndex(3) +2 >Emitted(43, 21) Source(23, 69) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -3222,10 +3227,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(43, 9) Source(23, 68) + SourceIndex(3) -2 >Emitted(43, 10) Source(23, 69) + SourceIndex(3) -3 >Emitted(43, 10) Source(23, 52) + SourceIndex(3) -4 >Emitted(43, 14) Source(23, 69) + SourceIndex(3) +1 >Emitted(44, 9) Source(23, 68) + SourceIndex(3) +2 >Emitted(44, 10) Source(23, 69) + SourceIndex(3) +3 >Emitted(44, 10) Source(23, 52) + SourceIndex(3) +4 >Emitted(44, 14) Source(23, 69) + SourceIndex(3) --- >>> someNamespace.C = C; 1->^^^^^^^^ @@ -3237,10 +3242,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > {} 4 > -1->Emitted(44, 9) Source(23, 65) + SourceIndex(3) -2 >Emitted(44, 24) Source(23, 66) + SourceIndex(3) -3 >Emitted(44, 28) Source(23, 69) + SourceIndex(3) -4 >Emitted(44, 29) Source(23, 69) + SourceIndex(3) +1->Emitted(45, 9) Source(23, 65) + SourceIndex(3) +2 >Emitted(45, 24) Source(23, 66) + SourceIndex(3) +3 >Emitted(45, 28) Source(23, 69) + SourceIndex(3) +4 >Emitted(45, 29) Source(23, 69) + SourceIndex(3) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^ @@ -3261,15 +3266,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(45, 5) Source(23, 70) + SourceIndex(3) -2 >Emitted(45, 6) Source(23, 71) + SourceIndex(3) -3 >Emitted(45, 8) Source(23, 36) + SourceIndex(3) -4 >Emitted(45, 21) Source(23, 49) + SourceIndex(3) -5 >Emitted(45, 24) Source(23, 36) + SourceIndex(3) -6 >Emitted(45, 45) Source(23, 49) + SourceIndex(3) -7 >Emitted(45, 50) Source(23, 36) + SourceIndex(3) -8 >Emitted(45, 71) Source(23, 49) + SourceIndex(3) -9 >Emitted(45, 79) Source(23, 71) + SourceIndex(3) +1->Emitted(46, 5) Source(23, 70) + SourceIndex(3) +2 >Emitted(46, 6) Source(23, 71) + SourceIndex(3) +3 >Emitted(46, 8) Source(23, 36) + SourceIndex(3) +4 >Emitted(46, 21) Source(23, 49) + SourceIndex(3) +5 >Emitted(46, 24) Source(23, 36) + SourceIndex(3) +6 >Emitted(46, 45) Source(23, 49) + SourceIndex(3) +7 >Emitted(46, 50) Source(23, 36) + SourceIndex(3) +8 >Emitted(46, 71) Source(23, 49) + SourceIndex(3) +9 >Emitted(46, 79) Source(23, 71) + SourceIndex(3) --- >>> /*@internal*/ var someOther; 1 >^^^^ @@ -3285,12 +3290,12 @@ sourceFile:../../../second/second_part1.ts 4 > export namespace 5 > someOther 6 > .something { export class someClass {} } -1 >Emitted(46, 5) Source(24, 5) + SourceIndex(3) -2 >Emitted(46, 18) Source(24, 18) + SourceIndex(3) -3 >Emitted(46, 19) Source(24, 19) + SourceIndex(3) -4 >Emitted(46, 23) Source(24, 36) + SourceIndex(3) -5 >Emitted(46, 32) Source(24, 45) + SourceIndex(3) -6 >Emitted(46, 33) Source(24, 85) + SourceIndex(3) +1 >Emitted(47, 5) Source(24, 5) + SourceIndex(3) +2 >Emitted(47, 18) Source(24, 18) + SourceIndex(3) +3 >Emitted(47, 19) Source(24, 19) + SourceIndex(3) +4 >Emitted(47, 23) Source(24, 36) + SourceIndex(3) +5 >Emitted(47, 32) Source(24, 45) + SourceIndex(3) +6 >Emitted(47, 33) Source(24, 85) + SourceIndex(3) --- >>> (function (someOther) { 1 >^^^^ @@ -3299,9 +3304,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 > export namespace 3 > someOther -1 >Emitted(47, 5) Source(24, 19) + SourceIndex(3) -2 >Emitted(47, 16) Source(24, 36) + SourceIndex(3) -3 >Emitted(47, 25) Source(24, 45) + SourceIndex(3) +1 >Emitted(48, 5) Source(24, 19) + SourceIndex(3) +2 >Emitted(48, 16) Source(24, 36) + SourceIndex(3) +3 >Emitted(48, 25) Source(24, 45) + SourceIndex(3) --- >>> var something; 1 >^^^^^^^^ @@ -3313,10 +3318,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(48, 9) Source(24, 46) + SourceIndex(3) -2 >Emitted(48, 13) Source(24, 46) + SourceIndex(3) -3 >Emitted(48, 22) Source(24, 55) + SourceIndex(3) -4 >Emitted(48, 23) Source(24, 85) + SourceIndex(3) +1 >Emitted(49, 9) Source(24, 46) + SourceIndex(3) +2 >Emitted(49, 13) Source(24, 46) + SourceIndex(3) +3 >Emitted(49, 22) Source(24, 55) + SourceIndex(3) +4 >Emitted(49, 23) Source(24, 85) + SourceIndex(3) --- >>> (function (something) { 1->^^^^^^^^ @@ -3326,21 +3331,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(49, 9) Source(24, 46) + SourceIndex(3) -2 >Emitted(49, 20) Source(24, 46) + SourceIndex(3) -3 >Emitted(49, 29) Source(24, 55) + SourceIndex(3) +1->Emitted(50, 9) Source(24, 46) + SourceIndex(3) +2 >Emitted(50, 20) Source(24, 46) + SourceIndex(3) +3 >Emitted(50, 29) Source(24, 55) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(50, 13) Source(24, 58) + SourceIndex(3) +1->Emitted(51, 13) Source(24, 58) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(51, 17) Source(24, 58) + SourceIndex(3) +1->Emitted(52, 17) Source(24, 58) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -3348,16 +3353,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(52, 17) Source(24, 82) + SourceIndex(3) -2 >Emitted(52, 18) Source(24, 83) + SourceIndex(3) +1->Emitted(53, 17) Source(24, 82) + SourceIndex(3) +2 >Emitted(53, 18) Source(24, 83) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(53, 17) Source(24, 82) + SourceIndex(3) -2 >Emitted(53, 33) Source(24, 83) + SourceIndex(3) +1->Emitted(54, 17) Source(24, 82) + SourceIndex(3) +2 >Emitted(54, 33) Source(24, 83) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -3369,10 +3374,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(54, 13) Source(24, 82) + SourceIndex(3) -2 >Emitted(54, 14) Source(24, 83) + SourceIndex(3) -3 >Emitted(54, 14) Source(24, 58) + SourceIndex(3) -4 >Emitted(54, 18) Source(24, 83) + SourceIndex(3) +1 >Emitted(55, 13) Source(24, 82) + SourceIndex(3) +2 >Emitted(55, 14) Source(24, 83) + SourceIndex(3) +3 >Emitted(55, 14) Source(24, 58) + SourceIndex(3) +4 >Emitted(55, 18) Source(24, 83) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -3384,10 +3389,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(55, 13) Source(24, 71) + SourceIndex(3) -2 >Emitted(55, 32) Source(24, 80) + SourceIndex(3) -3 >Emitted(55, 44) Source(24, 83) + SourceIndex(3) -4 >Emitted(55, 45) Source(24, 83) + SourceIndex(3) +1->Emitted(56, 13) Source(24, 71) + SourceIndex(3) +2 >Emitted(56, 32) Source(24, 80) + SourceIndex(3) +3 >Emitted(56, 44) Source(24, 83) + SourceIndex(3) +4 >Emitted(56, 45) Source(24, 83) + SourceIndex(3) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^ @@ -3408,15 +3413,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(56, 9) Source(24, 84) + SourceIndex(3) -2 >Emitted(56, 10) Source(24, 85) + SourceIndex(3) -3 >Emitted(56, 12) Source(24, 46) + SourceIndex(3) -4 >Emitted(56, 21) Source(24, 55) + SourceIndex(3) -5 >Emitted(56, 24) Source(24, 46) + SourceIndex(3) -6 >Emitted(56, 43) Source(24, 55) + SourceIndex(3) -7 >Emitted(56, 48) Source(24, 46) + SourceIndex(3) -8 >Emitted(56, 67) Source(24, 55) + SourceIndex(3) -9 >Emitted(56, 75) Source(24, 85) + SourceIndex(3) +1->Emitted(57, 9) Source(24, 84) + SourceIndex(3) +2 >Emitted(57, 10) Source(24, 85) + SourceIndex(3) +3 >Emitted(57, 12) Source(24, 46) + SourceIndex(3) +4 >Emitted(57, 21) Source(24, 55) + SourceIndex(3) +5 >Emitted(57, 24) Source(24, 46) + SourceIndex(3) +6 >Emitted(57, 43) Source(24, 55) + SourceIndex(3) +7 >Emitted(57, 48) Source(24, 46) + SourceIndex(3) +8 >Emitted(57, 67) Source(24, 55) + SourceIndex(3) +9 >Emitted(57, 75) Source(24, 85) + SourceIndex(3) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^ @@ -3437,15 +3442,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(57, 5) Source(24, 84) + SourceIndex(3) -2 >Emitted(57, 6) Source(24, 85) + SourceIndex(3) -3 >Emitted(57, 8) Source(24, 36) + SourceIndex(3) -4 >Emitted(57, 17) Source(24, 45) + SourceIndex(3) -5 >Emitted(57, 20) Source(24, 36) + SourceIndex(3) -6 >Emitted(57, 37) Source(24, 45) + SourceIndex(3) -7 >Emitted(57, 42) Source(24, 36) + SourceIndex(3) -8 >Emitted(57, 59) Source(24, 45) + SourceIndex(3) -9 >Emitted(57, 67) Source(24, 85) + SourceIndex(3) +1 >Emitted(58, 5) Source(24, 84) + SourceIndex(3) +2 >Emitted(58, 6) Source(24, 85) + SourceIndex(3) +3 >Emitted(58, 8) Source(24, 36) + SourceIndex(3) +4 >Emitted(58, 17) Source(24, 45) + SourceIndex(3) +5 >Emitted(58, 20) Source(24, 36) + SourceIndex(3) +6 >Emitted(58, 37) Source(24, 45) + SourceIndex(3) +7 >Emitted(58, 42) Source(24, 36) + SourceIndex(3) +8 >Emitted(58, 59) Source(24, 45) + SourceIndex(3) +9 >Emitted(58, 67) Source(24, 85) + SourceIndex(3) --- >>> /*@internal*/ normalN.someImport = someNamespace.C; 1 >^^^^ @@ -3467,15 +3472,15 @@ sourceFile:../../../second/second_part1.ts 7 > . 8 > C 9 > ; -1 >Emitted(58, 5) Source(25, 5) + SourceIndex(3) -2 >Emitted(58, 18) Source(25, 18) + SourceIndex(3) -3 >Emitted(58, 19) Source(25, 33) + SourceIndex(3) -4 >Emitted(58, 37) Source(25, 43) + SourceIndex(3) -5 >Emitted(58, 40) Source(25, 46) + SourceIndex(3) -6 >Emitted(58, 53) Source(25, 59) + SourceIndex(3) -7 >Emitted(58, 54) Source(25, 60) + SourceIndex(3) -8 >Emitted(58, 55) Source(25, 61) + SourceIndex(3) -9 >Emitted(58, 56) Source(25, 62) + SourceIndex(3) +1 >Emitted(59, 5) Source(25, 5) + SourceIndex(3) +2 >Emitted(59, 18) Source(25, 18) + SourceIndex(3) +3 >Emitted(59, 19) Source(25, 33) + SourceIndex(3) +4 >Emitted(59, 37) Source(25, 43) + SourceIndex(3) +5 >Emitted(59, 40) Source(25, 46) + SourceIndex(3) +6 >Emitted(59, 53) Source(25, 59) + SourceIndex(3) +7 >Emitted(59, 54) Source(25, 60) + SourceIndex(3) +8 >Emitted(59, 55) Source(25, 61) + SourceIndex(3) +9 >Emitted(59, 56) Source(25, 62) + SourceIndex(3) --- >>> /*@internal*/ normalN.internalConst = 10; 1 >^^^^ @@ -3494,13 +3499,13 @@ sourceFile:../../../second/second_part1.ts 5 > = 6 > 10 7 > ; -1 >Emitted(59, 5) Source(27, 5) + SourceIndex(3) -2 >Emitted(59, 18) Source(27, 18) + SourceIndex(3) -3 >Emitted(59, 19) Source(27, 32) + SourceIndex(3) -4 >Emitted(59, 40) Source(27, 45) + SourceIndex(3) -5 >Emitted(59, 43) Source(27, 48) + SourceIndex(3) -6 >Emitted(59, 45) Source(27, 50) + SourceIndex(3) -7 >Emitted(59, 46) Source(27, 51) + SourceIndex(3) +1 >Emitted(60, 5) Source(27, 5) + SourceIndex(3) +2 >Emitted(60, 18) Source(27, 18) + SourceIndex(3) +3 >Emitted(60, 19) Source(27, 32) + SourceIndex(3) +4 >Emitted(60, 40) Source(27, 45) + SourceIndex(3) +5 >Emitted(60, 43) Source(27, 48) + SourceIndex(3) +6 >Emitted(60, 45) Source(27, 50) + SourceIndex(3) +7 >Emitted(60, 46) Source(27, 51) + SourceIndex(3) --- >>> /*@internal*/ var internalEnum; 1 >^^^^ @@ -3514,11 +3519,11 @@ sourceFile:../../../second/second_part1.ts 3 > 4 > export enum 5 > internalEnum { a, b, c } -1 >Emitted(60, 5) Source(28, 5) + SourceIndex(3) -2 >Emitted(60, 18) Source(28, 18) + SourceIndex(3) -3 >Emitted(60, 19) Source(28, 19) + SourceIndex(3) -4 >Emitted(60, 23) Source(28, 31) + SourceIndex(3) -5 >Emitted(60, 35) Source(28, 55) + SourceIndex(3) +1 >Emitted(61, 5) Source(28, 5) + SourceIndex(3) +2 >Emitted(61, 18) Source(28, 18) + SourceIndex(3) +3 >Emitted(61, 19) Source(28, 19) + SourceIndex(3) +4 >Emitted(61, 23) Source(28, 31) + SourceIndex(3) +5 >Emitted(61, 35) Source(28, 55) + SourceIndex(3) --- >>> (function (internalEnum) { 1 >^^^^ @@ -3528,9 +3533,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 > export enum 3 > internalEnum -1 >Emitted(61, 5) Source(28, 19) + SourceIndex(3) -2 >Emitted(61, 16) Source(28, 31) + SourceIndex(3) -3 >Emitted(61, 28) Source(28, 43) + SourceIndex(3) +1 >Emitted(62, 5) Source(28, 19) + SourceIndex(3) +2 >Emitted(62, 16) Source(28, 31) + SourceIndex(3) +3 >Emitted(62, 28) Source(28, 43) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -3540,9 +3545,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(62, 9) Source(28, 46) + SourceIndex(3) -2 >Emitted(62, 50) Source(28, 47) + SourceIndex(3) -3 >Emitted(62, 51) Source(28, 47) + SourceIndex(3) +1->Emitted(63, 9) Source(28, 46) + SourceIndex(3) +2 >Emitted(63, 50) Source(28, 47) + SourceIndex(3) +3 >Emitted(63, 51) Source(28, 47) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -3552,9 +3557,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(63, 9) Source(28, 49) + SourceIndex(3) -2 >Emitted(63, 50) Source(28, 50) + SourceIndex(3) -3 >Emitted(63, 51) Source(28, 50) + SourceIndex(3) +1->Emitted(64, 9) Source(28, 49) + SourceIndex(3) +2 >Emitted(64, 50) Source(28, 50) + SourceIndex(3) +3 >Emitted(64, 51) Source(28, 50) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -3564,9 +3569,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(64, 9) Source(28, 52) + SourceIndex(3) -2 >Emitted(64, 50) Source(28, 53) + SourceIndex(3) -3 >Emitted(64, 51) Source(28, 53) + SourceIndex(3) +1->Emitted(65, 9) Source(28, 52) + SourceIndex(3) +2 >Emitted(65, 50) Source(28, 53) + SourceIndex(3) +3 >Emitted(65, 51) Source(28, 53) + SourceIndex(3) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^ @@ -3587,15 +3592,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(65, 5) Source(28, 54) + SourceIndex(3) -2 >Emitted(65, 6) Source(28, 55) + SourceIndex(3) -3 >Emitted(65, 8) Source(28, 31) + SourceIndex(3) -4 >Emitted(65, 20) Source(28, 43) + SourceIndex(3) -5 >Emitted(65, 23) Source(28, 31) + SourceIndex(3) -6 >Emitted(65, 43) Source(28, 43) + SourceIndex(3) -7 >Emitted(65, 48) Source(28, 31) + SourceIndex(3) -8 >Emitted(65, 68) Source(28, 43) + SourceIndex(3) -9 >Emitted(65, 76) Source(28, 55) + SourceIndex(3) +1->Emitted(66, 5) Source(28, 54) + SourceIndex(3) +2 >Emitted(66, 6) Source(28, 55) + SourceIndex(3) +3 >Emitted(66, 8) Source(28, 31) + SourceIndex(3) +4 >Emitted(66, 20) Source(28, 43) + SourceIndex(3) +5 >Emitted(66, 23) Source(28, 31) + SourceIndex(3) +6 >Emitted(66, 43) Source(28, 43) + SourceIndex(3) +7 >Emitted(66, 48) Source(28, 31) + SourceIndex(3) +8 >Emitted(66, 68) Source(28, 43) + SourceIndex(3) +9 >Emitted(66, 76) Source(28, 55) + SourceIndex(3) --- >>>})(normalN || (normalN = {})); 1 > @@ -3623,13 +3628,13 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(66, 1) Source(29, 1) + SourceIndex(3) -2 >Emitted(66, 2) Source(29, 2) + SourceIndex(3) -3 >Emitted(66, 4) Source(20, 11) + SourceIndex(3) -4 >Emitted(66, 11) Source(20, 18) + SourceIndex(3) -5 >Emitted(66, 16) Source(20, 11) + SourceIndex(3) -6 >Emitted(66, 23) Source(20, 18) + SourceIndex(3) -7 >Emitted(66, 31) Source(29, 2) + SourceIndex(3) +1 >Emitted(67, 1) Source(29, 1) + SourceIndex(3) +2 >Emitted(67, 2) Source(29, 2) + SourceIndex(3) +3 >Emitted(67, 4) Source(20, 11) + SourceIndex(3) +4 >Emitted(67, 11) Source(20, 18) + SourceIndex(3) +5 >Emitted(67, 16) Source(20, 11) + SourceIndex(3) +6 >Emitted(67, 23) Source(20, 18) + SourceIndex(3) +7 >Emitted(67, 31) Source(29, 2) + SourceIndex(3) --- >>>/*@internal*/ var internalC = /** @class */ (function () { 1-> @@ -3640,15 +3645,15 @@ sourceFile:../../../second/second_part1.ts > 2 >/*@internal*/ 3 > -1->Emitted(67, 1) Source(30, 1) + SourceIndex(3) -2 >Emitted(67, 14) Source(30, 14) + SourceIndex(3) -3 >Emitted(67, 15) Source(30, 15) + SourceIndex(3) +1->Emitted(68, 1) Source(30, 1) + SourceIndex(3) +2 >Emitted(68, 14) Source(30, 14) + SourceIndex(3) +3 >Emitted(68, 15) Source(30, 15) + SourceIndex(3) --- >>> function internalC() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(68, 5) Source(30, 15) + SourceIndex(3) +1->Emitted(69, 5) Source(30, 15) + SourceIndex(3) --- >>> } 1->^^^^ @@ -3656,16 +3661,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->class internalC { 2 > } -1->Emitted(69, 5) Source(30, 32) + SourceIndex(3) -2 >Emitted(69, 6) Source(30, 33) + SourceIndex(3) +1->Emitted(70, 5) Source(30, 32) + SourceIndex(3) +2 >Emitted(70, 6) Source(30, 33) + SourceIndex(3) --- >>> return internalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(70, 5) Source(30, 32) + SourceIndex(3) -2 >Emitted(70, 21) Source(30, 33) + SourceIndex(3) +1->Emitted(71, 5) Source(30, 32) + SourceIndex(3) +2 >Emitted(71, 21) Source(30, 33) + SourceIndex(3) --- >>>}()); 1 > @@ -3677,10 +3682,10 @@ sourceFile:../../../second/second_part1.ts 2 >} 3 > 4 > class internalC {} -1 >Emitted(71, 1) Source(30, 32) + SourceIndex(3) -2 >Emitted(71, 2) Source(30, 33) + SourceIndex(3) -3 >Emitted(71, 2) Source(30, 15) + SourceIndex(3) -4 >Emitted(71, 6) Source(30, 33) + SourceIndex(3) +1 >Emitted(72, 1) Source(30, 32) + SourceIndex(3) +2 >Emitted(72, 2) Source(30, 33) + SourceIndex(3) +3 >Emitted(72, 2) Source(30, 15) + SourceIndex(3) +4 >Emitted(72, 6) Source(30, 33) + SourceIndex(3) --- >>>/*@internal*/ function internalfoo() { } 1-> @@ -3698,13 +3703,13 @@ sourceFile:../../../second/second_part1.ts 5 > internalfoo 6 > () { 7 > } -1->Emitted(72, 1) Source(31, 1) + SourceIndex(3) -2 >Emitted(72, 14) Source(31, 14) + SourceIndex(3) -3 >Emitted(72, 15) Source(31, 15) + SourceIndex(3) -4 >Emitted(72, 24) Source(31, 24) + SourceIndex(3) -5 >Emitted(72, 35) Source(31, 35) + SourceIndex(3) -6 >Emitted(72, 40) Source(31, 39) + SourceIndex(3) -7 >Emitted(72, 41) Source(31, 40) + SourceIndex(3) +1->Emitted(73, 1) Source(31, 1) + SourceIndex(3) +2 >Emitted(73, 14) Source(31, 14) + SourceIndex(3) +3 >Emitted(73, 15) Source(31, 15) + SourceIndex(3) +4 >Emitted(73, 24) Source(31, 24) + SourceIndex(3) +5 >Emitted(73, 35) Source(31, 35) + SourceIndex(3) +6 >Emitted(73, 40) Source(31, 39) + SourceIndex(3) +7 >Emitted(73, 41) Source(31, 40) + SourceIndex(3) --- >>>/*@internal*/ var internalNamespace; 1 > @@ -3720,12 +3725,12 @@ sourceFile:../../../second/second_part1.ts 4 > namespace 5 > internalNamespace 6 > { export class someClass {} } -1 >Emitted(73, 1) Source(32, 1) + SourceIndex(3) -2 >Emitted(73, 14) Source(32, 14) + SourceIndex(3) -3 >Emitted(73, 15) Source(32, 15) + SourceIndex(3) -4 >Emitted(73, 19) Source(32, 25) + SourceIndex(3) -5 >Emitted(73, 36) Source(32, 42) + SourceIndex(3) -6 >Emitted(73, 37) Source(32, 72) + SourceIndex(3) +1 >Emitted(74, 1) Source(32, 1) + SourceIndex(3) +2 >Emitted(74, 14) Source(32, 14) + SourceIndex(3) +3 >Emitted(74, 15) Source(32, 15) + SourceIndex(3) +4 >Emitted(74, 19) Source(32, 25) + SourceIndex(3) +5 >Emitted(74, 36) Source(32, 42) + SourceIndex(3) +6 >Emitted(74, 37) Source(32, 72) + SourceIndex(3) --- >>>(function (internalNamespace) { 1 > @@ -3735,21 +3740,21 @@ sourceFile:../../../second/second_part1.ts 1 > 2 >namespace 3 > internalNamespace -1 >Emitted(74, 1) Source(32, 15) + SourceIndex(3) -2 >Emitted(74, 12) Source(32, 25) + SourceIndex(3) -3 >Emitted(74, 29) Source(32, 42) + SourceIndex(3) +1 >Emitted(75, 1) Source(32, 15) + SourceIndex(3) +2 >Emitted(75, 12) Source(32, 25) + SourceIndex(3) +3 >Emitted(75, 29) Source(32, 42) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(75, 5) Source(32, 45) + SourceIndex(3) +1->Emitted(76, 5) Source(32, 45) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(76, 9) Source(32, 45) + SourceIndex(3) +1->Emitted(77, 9) Source(32, 45) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -3757,16 +3762,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(77, 9) Source(32, 69) + SourceIndex(3) -2 >Emitted(77, 10) Source(32, 70) + SourceIndex(3) +1->Emitted(78, 9) Source(32, 69) + SourceIndex(3) +2 >Emitted(78, 10) Source(32, 70) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(78, 9) Source(32, 69) + SourceIndex(3) -2 >Emitted(78, 25) Source(32, 70) + SourceIndex(3) +1->Emitted(79, 9) Source(32, 69) + SourceIndex(3) +2 >Emitted(79, 25) Source(32, 70) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -3778,10 +3783,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(79, 5) Source(32, 69) + SourceIndex(3) -2 >Emitted(79, 6) Source(32, 70) + SourceIndex(3) -3 >Emitted(79, 6) Source(32, 45) + SourceIndex(3) -4 >Emitted(79, 10) Source(32, 70) + SourceIndex(3) +1 >Emitted(80, 5) Source(32, 69) + SourceIndex(3) +2 >Emitted(80, 6) Source(32, 70) + SourceIndex(3) +3 >Emitted(80, 6) Source(32, 45) + SourceIndex(3) +4 >Emitted(80, 10) Source(32, 70) + SourceIndex(3) --- >>> internalNamespace.someClass = someClass; 1->^^^^ @@ -3793,10 +3798,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(80, 5) Source(32, 58) + SourceIndex(3) -2 >Emitted(80, 32) Source(32, 67) + SourceIndex(3) -3 >Emitted(80, 44) Source(32, 70) + SourceIndex(3) -4 >Emitted(80, 45) Source(32, 70) + SourceIndex(3) +1->Emitted(81, 5) Source(32, 58) + SourceIndex(3) +2 >Emitted(81, 32) Source(32, 67) + SourceIndex(3) +3 >Emitted(81, 44) Source(32, 70) + SourceIndex(3) +4 >Emitted(81, 45) Source(32, 70) + SourceIndex(3) --- >>>})(internalNamespace || (internalNamespace = {})); 1-> @@ -3813,13 +3818,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalNamespace 7 > { export class someClass {} } -1->Emitted(81, 1) Source(32, 71) + SourceIndex(3) -2 >Emitted(81, 2) Source(32, 72) + SourceIndex(3) -3 >Emitted(81, 4) Source(32, 25) + SourceIndex(3) -4 >Emitted(81, 21) Source(32, 42) + SourceIndex(3) -5 >Emitted(81, 26) Source(32, 25) + SourceIndex(3) -6 >Emitted(81, 43) Source(32, 42) + SourceIndex(3) -7 >Emitted(81, 51) Source(32, 72) + SourceIndex(3) +1->Emitted(82, 1) Source(32, 71) + SourceIndex(3) +2 >Emitted(82, 2) Source(32, 72) + SourceIndex(3) +3 >Emitted(82, 4) Source(32, 25) + SourceIndex(3) +4 >Emitted(82, 21) Source(32, 42) + SourceIndex(3) +5 >Emitted(82, 26) Source(32, 25) + SourceIndex(3) +6 >Emitted(82, 43) Source(32, 42) + SourceIndex(3) +7 >Emitted(82, 51) Source(32, 72) + SourceIndex(3) --- >>>/*@internal*/ var internalOther; 1 > @@ -3835,12 +3840,12 @@ sourceFile:../../../second/second_part1.ts 4 > namespace 5 > internalOther 6 > .something { export class someClass {} } -1 >Emitted(82, 1) Source(33, 1) + SourceIndex(3) -2 >Emitted(82, 14) Source(33, 14) + SourceIndex(3) -3 >Emitted(82, 15) Source(33, 15) + SourceIndex(3) -4 >Emitted(82, 19) Source(33, 25) + SourceIndex(3) -5 >Emitted(82, 32) Source(33, 38) + SourceIndex(3) -6 >Emitted(82, 33) Source(33, 78) + SourceIndex(3) +1 >Emitted(83, 1) Source(33, 1) + SourceIndex(3) +2 >Emitted(83, 14) Source(33, 14) + SourceIndex(3) +3 >Emitted(83, 15) Source(33, 15) + SourceIndex(3) +4 >Emitted(83, 19) Source(33, 25) + SourceIndex(3) +5 >Emitted(83, 32) Source(33, 38) + SourceIndex(3) +6 >Emitted(83, 33) Source(33, 78) + SourceIndex(3) --- >>>(function (internalOther) { 1 > @@ -3849,9 +3854,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 >namespace 3 > internalOther -1 >Emitted(83, 1) Source(33, 15) + SourceIndex(3) -2 >Emitted(83, 12) Source(33, 25) + SourceIndex(3) -3 >Emitted(83, 25) Source(33, 38) + SourceIndex(3) +1 >Emitted(84, 1) Source(33, 15) + SourceIndex(3) +2 >Emitted(84, 12) Source(33, 25) + SourceIndex(3) +3 >Emitted(84, 25) Source(33, 38) + SourceIndex(3) --- >>> var something; 1 >^^^^ @@ -3863,10 +3868,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(84, 5) Source(33, 39) + SourceIndex(3) -2 >Emitted(84, 9) Source(33, 39) + SourceIndex(3) -3 >Emitted(84, 18) Source(33, 48) + SourceIndex(3) -4 >Emitted(84, 19) Source(33, 78) + SourceIndex(3) +1 >Emitted(85, 5) Source(33, 39) + SourceIndex(3) +2 >Emitted(85, 9) Source(33, 39) + SourceIndex(3) +3 >Emitted(85, 18) Source(33, 48) + SourceIndex(3) +4 >Emitted(85, 19) Source(33, 78) + SourceIndex(3) --- >>> (function (something) { 1->^^^^ @@ -3876,21 +3881,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(85, 5) Source(33, 39) + SourceIndex(3) -2 >Emitted(85, 16) Source(33, 39) + SourceIndex(3) -3 >Emitted(85, 25) Source(33, 48) + SourceIndex(3) +1->Emitted(86, 5) Source(33, 39) + SourceIndex(3) +2 >Emitted(86, 16) Source(33, 39) + SourceIndex(3) +3 >Emitted(86, 25) Source(33, 48) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(86, 9) Source(33, 51) + SourceIndex(3) +1->Emitted(87, 9) Source(33, 51) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(87, 13) Source(33, 51) + SourceIndex(3) +1->Emitted(88, 13) Source(33, 51) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -3898,16 +3903,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(88, 13) Source(33, 75) + SourceIndex(3) -2 >Emitted(88, 14) Source(33, 76) + SourceIndex(3) +1->Emitted(89, 13) Source(33, 75) + SourceIndex(3) +2 >Emitted(89, 14) Source(33, 76) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(89, 13) Source(33, 75) + SourceIndex(3) -2 >Emitted(89, 29) Source(33, 76) + SourceIndex(3) +1->Emitted(90, 13) Source(33, 75) + SourceIndex(3) +2 >Emitted(90, 29) Source(33, 76) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -3919,10 +3924,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(90, 9) Source(33, 75) + SourceIndex(3) -2 >Emitted(90, 10) Source(33, 76) + SourceIndex(3) -3 >Emitted(90, 10) Source(33, 51) + SourceIndex(3) -4 >Emitted(90, 14) Source(33, 76) + SourceIndex(3) +1 >Emitted(91, 9) Source(33, 75) + SourceIndex(3) +2 >Emitted(91, 10) Source(33, 76) + SourceIndex(3) +3 >Emitted(91, 10) Source(33, 51) + SourceIndex(3) +4 >Emitted(91, 14) Source(33, 76) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^ @@ -3934,10 +3939,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(91, 9) Source(33, 64) + SourceIndex(3) -2 >Emitted(91, 28) Source(33, 73) + SourceIndex(3) -3 >Emitted(91, 40) Source(33, 76) + SourceIndex(3) -4 >Emitted(91, 41) Source(33, 76) + SourceIndex(3) +1->Emitted(92, 9) Source(33, 64) + SourceIndex(3) +2 >Emitted(92, 28) Source(33, 73) + SourceIndex(3) +3 >Emitted(92, 40) Source(33, 76) + SourceIndex(3) +4 >Emitted(92, 41) Source(33, 76) + SourceIndex(3) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^ @@ -3958,15 +3963,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(92, 5) Source(33, 77) + SourceIndex(3) -2 >Emitted(92, 6) Source(33, 78) + SourceIndex(3) -3 >Emitted(92, 8) Source(33, 39) + SourceIndex(3) -4 >Emitted(92, 17) Source(33, 48) + SourceIndex(3) -5 >Emitted(92, 20) Source(33, 39) + SourceIndex(3) -6 >Emitted(92, 43) Source(33, 48) + SourceIndex(3) -7 >Emitted(92, 48) Source(33, 39) + SourceIndex(3) -8 >Emitted(92, 71) Source(33, 48) + SourceIndex(3) -9 >Emitted(92, 79) Source(33, 78) + SourceIndex(3) +1->Emitted(93, 5) Source(33, 77) + SourceIndex(3) +2 >Emitted(93, 6) Source(33, 78) + SourceIndex(3) +3 >Emitted(93, 8) Source(33, 39) + SourceIndex(3) +4 >Emitted(93, 17) Source(33, 48) + SourceIndex(3) +5 >Emitted(93, 20) Source(33, 39) + SourceIndex(3) +6 >Emitted(93, 43) Source(33, 48) + SourceIndex(3) +7 >Emitted(93, 48) Source(33, 39) + SourceIndex(3) +8 >Emitted(93, 71) Source(33, 48) + SourceIndex(3) +9 >Emitted(93, 79) Source(33, 78) + SourceIndex(3) --- >>>})(internalOther || (internalOther = {})); 1 > @@ -3984,13 +3989,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalOther 7 > .something { export class someClass {} } -1 >Emitted(93, 1) Source(33, 77) + SourceIndex(3) -2 >Emitted(93, 2) Source(33, 78) + SourceIndex(3) -3 >Emitted(93, 4) Source(33, 25) + SourceIndex(3) -4 >Emitted(93, 17) Source(33, 38) + SourceIndex(3) -5 >Emitted(93, 22) Source(33, 25) + SourceIndex(3) -6 >Emitted(93, 35) Source(33, 38) + SourceIndex(3) -7 >Emitted(93, 43) Source(33, 78) + SourceIndex(3) +1 >Emitted(94, 1) Source(33, 77) + SourceIndex(3) +2 >Emitted(94, 2) Source(33, 78) + SourceIndex(3) +3 >Emitted(94, 4) Source(33, 25) + SourceIndex(3) +4 >Emitted(94, 17) Source(33, 38) + SourceIndex(3) +5 >Emitted(94, 22) Source(33, 25) + SourceIndex(3) +6 >Emitted(94, 35) Source(33, 38) + SourceIndex(3) +7 >Emitted(94, 43) Source(33, 78) + SourceIndex(3) --- >>>/*@internal*/ var internalImport = internalNamespace.someClass; 1-> @@ -4014,16 +4019,16 @@ sourceFile:../../../second/second_part1.ts 8 > . 9 > someClass 10> ; -1->Emitted(94, 1) Source(34, 1) + SourceIndex(3) -2 >Emitted(94, 14) Source(34, 14) + SourceIndex(3) -3 >Emitted(94, 15) Source(34, 15) + SourceIndex(3) -4 >Emitted(94, 19) Source(34, 22) + SourceIndex(3) -5 >Emitted(94, 33) Source(34, 36) + SourceIndex(3) -6 >Emitted(94, 36) Source(34, 39) + SourceIndex(3) -7 >Emitted(94, 53) Source(34, 56) + SourceIndex(3) -8 >Emitted(94, 54) Source(34, 57) + SourceIndex(3) -9 >Emitted(94, 63) Source(34, 66) + SourceIndex(3) -10>Emitted(94, 64) Source(34, 67) + SourceIndex(3) +1->Emitted(95, 1) Source(34, 1) + SourceIndex(3) +2 >Emitted(95, 14) Source(34, 14) + SourceIndex(3) +3 >Emitted(95, 15) Source(34, 15) + SourceIndex(3) +4 >Emitted(95, 19) Source(34, 22) + SourceIndex(3) +5 >Emitted(95, 33) Source(34, 36) + SourceIndex(3) +6 >Emitted(95, 36) Source(34, 39) + SourceIndex(3) +7 >Emitted(95, 53) Source(34, 56) + SourceIndex(3) +8 >Emitted(95, 54) Source(34, 57) + SourceIndex(3) +9 >Emitted(95, 63) Source(34, 66) + SourceIndex(3) +10>Emitted(95, 64) Source(34, 67) + SourceIndex(3) --- >>>/*@internal*/ var internalConst = 10; 1 > @@ -4044,14 +4049,14 @@ sourceFile:../../../second/second_part1.ts 6 > = 7 > 10 8 > ; -1 >Emitted(95, 1) Source(36, 1) + SourceIndex(3) -2 >Emitted(95, 14) Source(36, 14) + SourceIndex(3) -3 >Emitted(95, 15) Source(36, 15) + SourceIndex(3) -4 >Emitted(95, 19) Source(36, 21) + SourceIndex(3) -5 >Emitted(95, 32) Source(36, 34) + SourceIndex(3) -6 >Emitted(95, 35) Source(36, 37) + SourceIndex(3) -7 >Emitted(95, 37) Source(36, 39) + SourceIndex(3) -8 >Emitted(95, 38) Source(36, 40) + SourceIndex(3) +1 >Emitted(96, 1) Source(36, 1) + SourceIndex(3) +2 >Emitted(96, 14) Source(36, 14) + SourceIndex(3) +3 >Emitted(96, 15) Source(36, 15) + SourceIndex(3) +4 >Emitted(96, 19) Source(36, 21) + SourceIndex(3) +5 >Emitted(96, 32) Source(36, 34) + SourceIndex(3) +6 >Emitted(96, 35) Source(36, 37) + SourceIndex(3) +7 >Emitted(96, 37) Source(36, 39) + SourceIndex(3) +8 >Emitted(96, 38) Source(36, 40) + SourceIndex(3) --- >>>/*@internal*/ var internalEnum; 1 > @@ -4065,11 +4070,11 @@ sourceFile:../../../second/second_part1.ts 3 > 4 > enum 5 > internalEnum { a, b, c } -1 >Emitted(96, 1) Source(37, 1) + SourceIndex(3) -2 >Emitted(96, 14) Source(37, 14) + SourceIndex(3) -3 >Emitted(96, 15) Source(37, 15) + SourceIndex(3) -4 >Emitted(96, 19) Source(37, 20) + SourceIndex(3) -5 >Emitted(96, 31) Source(37, 44) + SourceIndex(3) +1 >Emitted(97, 1) Source(37, 1) + SourceIndex(3) +2 >Emitted(97, 14) Source(37, 14) + SourceIndex(3) +3 >Emitted(97, 15) Source(37, 15) + SourceIndex(3) +4 >Emitted(97, 19) Source(37, 20) + SourceIndex(3) +5 >Emitted(97, 31) Source(37, 44) + SourceIndex(3) --- >>>(function (internalEnum) { 1 > @@ -4079,9 +4084,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 >enum 3 > internalEnum -1 >Emitted(97, 1) Source(37, 15) + SourceIndex(3) -2 >Emitted(97, 12) Source(37, 20) + SourceIndex(3) -3 >Emitted(97, 24) Source(37, 32) + SourceIndex(3) +1 >Emitted(98, 1) Source(37, 15) + SourceIndex(3) +2 >Emitted(98, 12) Source(37, 20) + SourceIndex(3) +3 >Emitted(98, 24) Source(37, 32) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^ @@ -4091,9 +4096,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(98, 5) Source(37, 35) + SourceIndex(3) -2 >Emitted(98, 46) Source(37, 36) + SourceIndex(3) -3 >Emitted(98, 47) Source(37, 36) + SourceIndex(3) +1->Emitted(99, 5) Source(37, 35) + SourceIndex(3) +2 >Emitted(99, 46) Source(37, 36) + SourceIndex(3) +3 >Emitted(99, 47) Source(37, 36) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^ @@ -4103,9 +4108,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(99, 5) Source(37, 38) + SourceIndex(3) -2 >Emitted(99, 46) Source(37, 39) + SourceIndex(3) -3 >Emitted(99, 47) Source(37, 39) + SourceIndex(3) +1->Emitted(100, 5) Source(37, 38) + SourceIndex(3) +2 >Emitted(100, 46) Source(37, 39) + SourceIndex(3) +3 >Emitted(100, 47) Source(37, 39) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^ @@ -4114,9 +4119,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(100, 5) Source(37, 41) + SourceIndex(3) -2 >Emitted(100, 46) Source(37, 42) + SourceIndex(3) -3 >Emitted(100, 47) Source(37, 42) + SourceIndex(3) +1->Emitted(101, 5) Source(37, 41) + SourceIndex(3) +2 >Emitted(101, 46) Source(37, 42) + SourceIndex(3) +3 >Emitted(101, 47) Source(37, 42) + SourceIndex(3) --- >>>})(internalEnum || (internalEnum = {})); 1 > @@ -4133,13 +4138,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalEnum 7 > { a, b, c } -1 >Emitted(101, 1) Source(37, 43) + SourceIndex(3) -2 >Emitted(101, 2) Source(37, 44) + SourceIndex(3) -3 >Emitted(101, 4) Source(37, 20) + SourceIndex(3) -4 >Emitted(101, 16) Source(37, 32) + SourceIndex(3) -5 >Emitted(101, 21) Source(37, 20) + SourceIndex(3) -6 >Emitted(101, 33) Source(37, 32) + SourceIndex(3) -7 >Emitted(101, 41) Source(37, 44) + SourceIndex(3) +1 >Emitted(102, 1) Source(37, 43) + SourceIndex(3) +2 >Emitted(102, 2) Source(37, 44) + SourceIndex(3) +3 >Emitted(102, 4) Source(37, 20) + SourceIndex(3) +4 >Emitted(102, 16) Source(37, 32) + SourceIndex(3) +5 >Emitted(102, 21) Source(37, 20) + SourceIndex(3) +6 >Emitted(102, 33) Source(37, 32) + SourceIndex(3) +7 >Emitted(102, 41) Source(37, 44) + SourceIndex(3) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -4149,13 +4154,13 @@ sourceFile:../../../second/second_part2.ts 1 > 2 >^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(102, 1) Source(1, 1) + SourceIndex(4) +1 >Emitted(103, 1) Source(1, 1) + SourceIndex(4) --- >>> function C() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(103, 5) Source(1, 1) + SourceIndex(4) +1->Emitted(104, 5) Source(1, 1) + SourceIndex(4) --- >>> } 1->^^^^ @@ -4167,8 +4172,8 @@ sourceFile:../../../second/second_part2.ts > } > 2 > } -1->Emitted(104, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(104, 6) Source(5, 2) + SourceIndex(4) +1->Emitted(105, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(105, 6) Source(5, 2) + SourceIndex(4) --- >>> C.prototype.doSomething = function () { 1->^^^^ @@ -4178,9 +4183,9 @@ sourceFile:../../../second/second_part2.ts 1-> 2 > doSomething 3 > -1->Emitted(105, 5) Source(2, 5) + SourceIndex(4) -2 >Emitted(105, 28) Source(2, 16) + SourceIndex(4) -3 >Emitted(105, 31) Source(2, 5) + SourceIndex(4) +1->Emitted(106, 5) Source(2, 5) + SourceIndex(4) +2 >Emitted(106, 28) Source(2, 16) + SourceIndex(4) +3 >Emitted(106, 31) Source(2, 5) + SourceIndex(4) --- >>> console.log("something got done"); 1->^^^^^^^^ @@ -4200,14 +4205,14 @@ sourceFile:../../../second/second_part2.ts 6 > "something got done" 7 > ) 8 > ; -1->Emitted(106, 9) Source(3, 9) + SourceIndex(4) -2 >Emitted(106, 16) Source(3, 16) + SourceIndex(4) -3 >Emitted(106, 17) Source(3, 17) + SourceIndex(4) -4 >Emitted(106, 20) Source(3, 20) + SourceIndex(4) -5 >Emitted(106, 21) Source(3, 21) + SourceIndex(4) -6 >Emitted(106, 41) Source(3, 41) + SourceIndex(4) -7 >Emitted(106, 42) Source(3, 42) + SourceIndex(4) -8 >Emitted(106, 43) Source(3, 43) + SourceIndex(4) +1->Emitted(107, 9) Source(3, 9) + SourceIndex(4) +2 >Emitted(107, 16) Source(3, 16) + SourceIndex(4) +3 >Emitted(107, 17) Source(3, 17) + SourceIndex(4) +4 >Emitted(107, 20) Source(3, 20) + SourceIndex(4) +5 >Emitted(107, 21) Source(3, 21) + SourceIndex(4) +6 >Emitted(107, 41) Source(3, 41) + SourceIndex(4) +7 >Emitted(107, 42) Source(3, 42) + SourceIndex(4) +8 >Emitted(107, 43) Source(3, 43) + SourceIndex(4) --- >>> }; 1 >^^^^ @@ -4216,8 +4221,8 @@ sourceFile:../../../second/second_part2.ts 1 > > 2 > } -1 >Emitted(107, 5) Source(4, 5) + SourceIndex(4) -2 >Emitted(107, 6) Source(4, 6) + SourceIndex(4) +1 >Emitted(108, 5) Source(4, 5) + SourceIndex(4) +2 >Emitted(108, 6) Source(4, 6) + SourceIndex(4) --- >>> return C; 1->^^^^ @@ -4225,8 +4230,8 @@ sourceFile:../../../second/second_part2.ts 1-> > 2 > } -1->Emitted(108, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(108, 13) Source(5, 2) + SourceIndex(4) +1->Emitted(109, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(109, 13) Source(5, 2) + SourceIndex(4) --- >>>}()); 1 > @@ -4242,10 +4247,10 @@ sourceFile:../../../second/second_part2.ts > console.log("something got done"); > } > } -1 >Emitted(109, 1) Source(5, 1) + SourceIndex(4) -2 >Emitted(109, 2) Source(5, 2) + SourceIndex(4) -3 >Emitted(109, 2) Source(1, 1) + SourceIndex(4) -4 >Emitted(109, 6) Source(5, 2) + SourceIndex(4) +1 >Emitted(110, 1) Source(5, 1) + SourceIndex(4) +2 >Emitted(110, 2) Source(5, 2) + SourceIndex(4) +3 >Emitted(110, 2) Source(1, 1) + SourceIndex(4) +4 >Emitted(110, 6) Source(5, 2) + SourceIndex(4) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -4269,14 +4274,14 @@ sourceFile:../../third_part1.ts 6 > C 7 > () 8 > ; -1->Emitted(110, 1) Source(1, 1) + SourceIndex(5) -2 >Emitted(110, 5) Source(1, 5) + SourceIndex(5) -3 >Emitted(110, 6) Source(1, 6) + SourceIndex(5) -4 >Emitted(110, 9) Source(1, 9) + SourceIndex(5) -5 >Emitted(110, 13) Source(1, 13) + SourceIndex(5) -6 >Emitted(110, 14) Source(1, 14) + SourceIndex(5) -7 >Emitted(110, 16) Source(1, 16) + SourceIndex(5) -8 >Emitted(110, 17) Source(1, 17) + SourceIndex(5) +1->Emitted(111, 1) Source(1, 1) + SourceIndex(5) +2 >Emitted(111, 5) Source(1, 5) + SourceIndex(5) +3 >Emitted(111, 6) Source(1, 6) + SourceIndex(5) +4 >Emitted(111, 9) Source(1, 9) + SourceIndex(5) +5 >Emitted(111, 13) Source(1, 13) + SourceIndex(5) +6 >Emitted(111, 14) Source(1, 14) + SourceIndex(5) +7 >Emitted(111, 16) Source(1, 16) + SourceIndex(5) +8 >Emitted(111, 17) Source(1, 17) + SourceIndex(5) --- >>>c.doSomething(); 1-> @@ -4293,12 +4298,12 @@ sourceFile:../../third_part1.ts 4 > doSomething 5 > () 6 > ; -1->Emitted(111, 1) Source(2, 1) + SourceIndex(5) -2 >Emitted(111, 2) Source(2, 2) + SourceIndex(5) -3 >Emitted(111, 3) Source(2, 3) + SourceIndex(5) -4 >Emitted(111, 14) Source(2, 14) + SourceIndex(5) -5 >Emitted(111, 16) Source(2, 16) + SourceIndex(5) -6 >Emitted(111, 17) Source(2, 17) + SourceIndex(5) +1->Emitted(112, 1) Source(2, 1) + SourceIndex(5) +2 >Emitted(112, 2) Source(2, 2) + SourceIndex(5) +3 >Emitted(112, 3) Source(2, 3) + SourceIndex(5) +4 >Emitted(112, 14) Source(2, 14) + SourceIndex(5) +5 >Emitted(112, 16) Source(2, 16) + SourceIndex(5) +6 >Emitted(112, 17) Source(2, 17) + SourceIndex(5) --- >>>//# sourceMappingURL=third-output.js.map @@ -4313,20 +4318,20 @@ sourceFile:../../third_part1.ts "sections": [ { "pos": 0, - "end": 3544, + "end": 3592, "kind": "prepend", "data": "../../../2/second-output.js", "texts": [ { "pos": 0, - "end": 3544, + "end": 3592, "kind": "text" } ] }, { - "pos": 3544, - "end": 3580, + "pos": 3592, + "end": 3628, "kind": "text" } ] @@ -4361,9 +4366,9 @@ sourceFile:../../third_part1.ts ====================================================================== File:: /src/third/thirdjs/output/third-output.js ---------------------------------------------------------------------- -prepend: (0-3544):: ../../../2/second-output.js texts:: 1 +prepend: (0-3592):: ../../../2/second-output.js texts:: 1 >>-------------------------------------------------------------------- -text: (0-3544) +text: (0-3592) var s = "Hello, world"; console.log(s); console.log(s); @@ -4381,8 +4386,9 @@ var N; var normalC = /** @class */ (function () { /*@internal*/ function normalC() { } - /*@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /*@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /*@internal*/ get: function () { return 10; }, /*@internal*/ set: function (val) { }, enumerable: false, @@ -4475,7 +4481,7 @@ var C = /** @class */ (function () { }()); ---------------------------------------------------------------------- -text: (3544-3580) +text: (3592-3628) var c = new C(); c.doSomething(); diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-with-comments-emit-enabled.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-with-comments-emit-enabled.js index a701eb86ea86f..f59ecb6b31b34 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-with-comments-emit-enabled.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal-with-comments-emit-enabled.js @@ -310,8 +310,9 @@ var N; var normalC = /** @class */ (function () { /*@internal*/ function normalC() { } - /*@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /*@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /*@internal*/ get: function () { return 10; }, /*@internal*/ set: function (val) { }, enumerable: false, @@ -407,7 +408,7 @@ c.doSomething(); //# sourceMappingURL=third-output.js.map //// [/src/third/thirdjs/output/third-output.js.map] -{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"AAIA,IAAM,CAAC,GAAG,cAAc,CAAC;AAMzB,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;AACf,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;ACXf,OAAO,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC;ACAjB,SAAS,CAAC;IACN,OAAO,gBAAgB,CAAC;AAC5B,CAAC;ACED,IAAU,CAAC,CAMV;AAND,WAAU,CAAC;IACP,SAAS,CAAC;QACN,OAAO,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;IAC3B,CAAC;IAED,CAAC,EAAE,CAAC;AACR,CAAC,EANS,CAAC,KAAD,CAAC,QAMV;AAED;IACI,aAAa,CAAC;IAAgB,CAAC;IAE/B,aAAa,CAAC,wBAAM,GAAN,cAAW,CAAC;IACZ,sBAAI,sBAAC;QAAnB,aAAa,MAAC,cAAU,OAAO,EAAE,CAAC,CAAC,CAAC;QACpC,aAAa,MAAC,UAAM,GAAW,IAAI,CAAC;;;OADA;IAExC,cAAC;AAAD,CAAC,AAND,IAMC;AACD,IAAU,OAAO,CAShB;AATD,WAAU,OAAO;IACb,aAAa,CAAC;QAAA;QAAiB,CAAC;QAAD,QAAC;IAAD,CAAC,AAAlB,IAAkB;IAAL,SAAC,IAAI,CAAA;IAChC,aAAa,CAAC,SAAgB,GAAG,KAAI,CAAC;IAAR,WAAG,MAAK,CAAA;IACtC,aAAa,CAAC,IAAiB,aAAa,CAAsB;IAApD,WAAiB,aAAa;QAAG;YAAA;YAAgB,CAAC;YAAD,QAAC;QAAD,CAAC,AAAjB,IAAiB;QAAJ,eAAC,IAAG,CAAA;IAAC,CAAC,EAAnC,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAAsB;IAClE,aAAa,CAAC,IAAiB,SAAS,CAAwC;IAAlE,WAAiB,SAAS;QAAC,IAAA,SAAS,CAA8B;QAAvC,WAAA,SAAS;YAAG;gBAAA;gBAAwB,CAAC;gBAAD,gBAAC;YAAD,CAAC,AAAzB,IAAyB;YAAZ,mBAAS,YAAG,CAAA;QAAC,CAAC,EAAvC,SAAS,GAAT,mBAAS,KAAT,mBAAS,QAA8B;IAAD,CAAC,EAAjD,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAAwC;IAChF,aAAa,CAAe,kBAAU,GAAG,aAAa,CAAC,CAAC,CAAC;IAEzD,aAAa,CAAc,qBAAa,GAAG,EAAE,CAAC;IAC9C,aAAa,CAAC,IAAY,YAAwB;IAApC,WAAY,YAAY;QAAG,yCAAC,CAAA;QAAE,yCAAC,CAAA;QAAE,yCAAC,CAAA;IAAC,CAAC,EAAxB,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAAY;AACtD,CAAC,EATS,OAAO,KAAP,OAAO,QAShB;AACD,aAAa,CAAC;IAAA;IAAiB,CAAC;IAAD,gBAAC;AAAD,CAAC,AAAlB,IAAkB;AAChC,aAAa,CAAC,SAAS,WAAW,KAAI,CAAC;AACvC,aAAa,CAAC,IAAU,iBAAiB,CAA8B;AAAzD,WAAU,iBAAiB;IAAG;QAAA;QAAwB,CAAC;QAAD,gBAAC;IAAD,CAAC,AAAzB,IAAyB;IAAZ,2BAAS,YAAG,CAAA;AAAC,CAAC,EAA/C,iBAAiB,KAAjB,iBAAiB,QAA8B;AACvE,aAAa,CAAC,IAAU,aAAa,CAAwC;AAA/D,WAAU,aAAa;IAAC,IAAA,SAAS,CAA8B;IAAvC,WAAA,SAAS;QAAG;YAAA;YAAwB,CAAC;YAAD,gBAAC;QAAD,CAAC,AAAzB,IAAyB;QAAZ,mBAAS,YAAG,CAAA;IAAC,CAAC,EAAvC,SAAS,GAAT,uBAAS,KAAT,uBAAS,QAA8B;AAAD,CAAC,EAArD,aAAa,KAAb,aAAa,QAAwC;AAC7E,aAAa,CAAC,IAAO,cAAc,GAAG,iBAAiB,CAAC,SAAS,CAAC;AAElE,aAAa,CAAC,IAAM,aAAa,GAAG,EAAE,CAAC;AACvC,aAAa,CAAC,IAAK,YAAwB;AAA7B,WAAK,YAAY;IAAG,yCAAC,CAAA;IAAE,yCAAC,CAAA;IAAE,yCAAC,CAAA;AAAC,CAAC,EAAxB,YAAY,KAAZ,YAAY,QAAY;ACpC3C;IAAA;IAIA,CAAC;IAHG,uBAAW,GAAX;QACI,OAAO,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAC;IACtC,CAAC;IACL,QAAC;AAAD,CAAC,AAJD,IAIC;ACJD,IAAI,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;AAChB,CAAC,CAAC,WAAW,EAAE,CAAC"} +{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} //// [/src/third/thirdjs/output/third-output.js.map.baseline.txt] =================================================================== @@ -741,13 +742,14 @@ sourceFile:../../../second/second_part1.ts >>> } 1 >^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 >constructor() { 2 > } 1 >Emitted(17, 5) Source(14, 35) + SourceIndex(3) 2 >Emitted(17, 6) Source(14, 36) + SourceIndex(3) --- ->>> /*@internal*/ normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> /*@internal*/ normalC_prototype.method = function () { }; 1->^^^^ 2 > ^^^^^^^^^^^^^ 3 > ^ @@ -764,15 +766,15 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > method() { 7 > } -1->Emitted(18, 5) Source(16, 5) + SourceIndex(3) -2 >Emitted(18, 18) Source(16, 18) + SourceIndex(3) -3 >Emitted(18, 19) Source(16, 19) + SourceIndex(3) -4 >Emitted(18, 43) Source(16, 25) + SourceIndex(3) -5 >Emitted(18, 46) Source(16, 19) + SourceIndex(3) -6 >Emitted(18, 60) Source(16, 30) + SourceIndex(3) -7 >Emitted(18, 61) Source(16, 31) + SourceIndex(3) ---- ->>> Object.defineProperty(normalC.prototype, "c", { +1->Emitted(19, 5) Source(16, 5) + SourceIndex(3) +2 >Emitted(19, 18) Source(16, 18) + SourceIndex(3) +3 >Emitted(19, 19) Source(16, 19) + SourceIndex(3) +4 >Emitted(19, 43) Source(16, 25) + SourceIndex(3) +5 >Emitted(19, 46) Source(16, 19) + SourceIndex(3) +6 >Emitted(19, 60) Source(16, 30) + SourceIndex(3) +7 >Emitted(19, 61) Source(16, 31) + SourceIndex(3) +--- +>>> Object.defineProperty(normalC_prototype, "c", { 1 >^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -781,9 +783,9 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ 2 > get 3 > c -1 >Emitted(19, 5) Source(17, 19) + SourceIndex(3) -2 >Emitted(19, 27) Source(17, 23) + SourceIndex(3) -3 >Emitted(19, 49) Source(17, 24) + SourceIndex(3) +1 >Emitted(20, 5) Source(17, 19) + SourceIndex(3) +2 >Emitted(20, 27) Source(17, 23) + SourceIndex(3) +3 >Emitted(20, 49) Source(17, 24) + SourceIndex(3) --- >>> /*@internal*/ get: function () { return 10; }, 1->^^^^^^^^ @@ -804,15 +806,15 @@ sourceFile:../../../second/second_part1.ts 7 > ; 8 > 9 > } -1->Emitted(20, 9) Source(17, 5) + SourceIndex(3) -2 >Emitted(20, 22) Source(17, 18) + SourceIndex(3) -3 >Emitted(20, 28) Source(17, 19) + SourceIndex(3) -4 >Emitted(20, 42) Source(17, 29) + SourceIndex(3) -5 >Emitted(20, 49) Source(17, 36) + SourceIndex(3) -6 >Emitted(20, 51) Source(17, 38) + SourceIndex(3) -7 >Emitted(20, 52) Source(17, 39) + SourceIndex(3) -8 >Emitted(20, 53) Source(17, 40) + SourceIndex(3) -9 >Emitted(20, 54) Source(17, 41) + SourceIndex(3) +1->Emitted(21, 9) Source(17, 5) + SourceIndex(3) +2 >Emitted(21, 22) Source(17, 18) + SourceIndex(3) +3 >Emitted(21, 28) Source(17, 19) + SourceIndex(3) +4 >Emitted(21, 42) Source(17, 29) + SourceIndex(3) +5 >Emitted(21, 49) Source(17, 36) + SourceIndex(3) +6 >Emitted(21, 51) Source(17, 38) + SourceIndex(3) +7 >Emitted(21, 52) Source(17, 39) + SourceIndex(3) +8 >Emitted(21, 53) Source(17, 40) + SourceIndex(3) +9 >Emitted(21, 54) Source(17, 41) + SourceIndex(3) --- >>> /*@internal*/ set: function (val) { }, 1 >^^^^^^^^ @@ -830,13 +832,13 @@ sourceFile:../../../second/second_part1.ts 5 > val: number 6 > ) { 7 > } -1 >Emitted(21, 9) Source(18, 5) + SourceIndex(3) -2 >Emitted(21, 22) Source(18, 18) + SourceIndex(3) -3 >Emitted(21, 28) Source(18, 19) + SourceIndex(3) -4 >Emitted(21, 38) Source(18, 25) + SourceIndex(3) -5 >Emitted(21, 41) Source(18, 36) + SourceIndex(3) -6 >Emitted(21, 45) Source(18, 40) + SourceIndex(3) -7 >Emitted(21, 46) Source(18, 41) + SourceIndex(3) +1 >Emitted(22, 9) Source(18, 5) + SourceIndex(3) +2 >Emitted(22, 22) Source(18, 18) + SourceIndex(3) +3 >Emitted(22, 28) Source(18, 19) + SourceIndex(3) +4 >Emitted(22, 38) Source(18, 25) + SourceIndex(3) +5 >Emitted(22, 41) Source(18, 36) + SourceIndex(3) +6 >Emitted(22, 45) Source(18, 40) + SourceIndex(3) +7 >Emitted(22, 46) Source(18, 41) + SourceIndex(3) --- >>> enumerable: false, >>> configurable: true @@ -844,7 +846,7 @@ sourceFile:../../../second/second_part1.ts 1 >^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(24, 8) Source(17, 41) + SourceIndex(3) +1 >Emitted(25, 8) Source(17, 41) + SourceIndex(3) --- >>> return normalC; 1->^^^^ @@ -853,8 +855,8 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ set c(val: number) { } > 2 > } -1->Emitted(25, 5) Source(19, 1) + SourceIndex(3) -2 >Emitted(25, 19) Source(19, 2) + SourceIndex(3) +1->Emitted(26, 5) Source(19, 1) + SourceIndex(3) +2 >Emitted(26, 19) Source(19, 2) + SourceIndex(3) --- >>>}()); 1 > @@ -872,10 +874,10 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ get c() { return 10; } > /*@internal*/ set c(val: number) { } > } -1 >Emitted(26, 1) Source(19, 1) + SourceIndex(3) -2 >Emitted(26, 2) Source(19, 2) + SourceIndex(3) -3 >Emitted(26, 2) Source(13, 1) + SourceIndex(3) -4 >Emitted(26, 6) Source(19, 2) + SourceIndex(3) +1 >Emitted(27, 1) Source(19, 1) + SourceIndex(3) +2 >Emitted(27, 2) Source(19, 2) + SourceIndex(3) +3 >Emitted(27, 2) Source(13, 1) + SourceIndex(3) +4 >Emitted(27, 6) Source(19, 2) + SourceIndex(3) --- >>>var normalN; 1-> @@ -897,10 +899,10 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(27, 5) Source(20, 11) + SourceIndex(3) -3 >Emitted(27, 12) Source(20, 18) + SourceIndex(3) -4 >Emitted(27, 13) Source(29, 2) + SourceIndex(3) +1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(28, 5) Source(20, 11) + SourceIndex(3) +3 >Emitted(28, 12) Source(20, 18) + SourceIndex(3) +4 >Emitted(28, 13) Source(29, 2) + SourceIndex(3) --- >>>(function (normalN) { 1-> @@ -910,9 +912,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > normalN -1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(28, 12) Source(20, 11) + SourceIndex(3) -3 >Emitted(28, 19) Source(20, 18) + SourceIndex(3) +1->Emitted(29, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(29, 12) Source(20, 11) + SourceIndex(3) +3 >Emitted(29, 19) Source(20, 18) + SourceIndex(3) --- >>> /*@internal*/ var C = /** @class */ (function () { 1->^^^^ @@ -923,15 +925,15 @@ sourceFile:../../../second/second_part1.ts > 2 > /*@internal*/ 3 > -1->Emitted(29, 5) Source(21, 5) + SourceIndex(3) -2 >Emitted(29, 18) Source(21, 18) + SourceIndex(3) -3 >Emitted(29, 19) Source(21, 19) + SourceIndex(3) +1->Emitted(30, 5) Source(21, 5) + SourceIndex(3) +2 >Emitted(30, 18) Source(21, 18) + SourceIndex(3) +3 >Emitted(30, 19) Source(21, 19) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(30, 9) Source(21, 19) + SourceIndex(3) +1->Emitted(31, 9) Source(21, 19) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -939,16 +941,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(31, 9) Source(21, 36) + SourceIndex(3) -2 >Emitted(31, 10) Source(21, 37) + SourceIndex(3) +1->Emitted(32, 9) Source(21, 36) + SourceIndex(3) +2 >Emitted(32, 10) Source(21, 37) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(32, 9) Source(21, 36) + SourceIndex(3) -2 >Emitted(32, 17) Source(21, 37) + SourceIndex(3) +1->Emitted(33, 9) Source(21, 36) + SourceIndex(3) +2 >Emitted(33, 17) Source(21, 37) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -960,10 +962,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(33, 5) Source(21, 36) + SourceIndex(3) -2 >Emitted(33, 6) Source(21, 37) + SourceIndex(3) -3 >Emitted(33, 6) Source(21, 19) + SourceIndex(3) -4 >Emitted(33, 10) Source(21, 37) + SourceIndex(3) +1 >Emitted(34, 5) Source(21, 36) + SourceIndex(3) +2 >Emitted(34, 6) Source(21, 37) + SourceIndex(3) +3 >Emitted(34, 6) Source(21, 19) + SourceIndex(3) +4 >Emitted(34, 10) Source(21, 37) + SourceIndex(3) --- >>> normalN.C = C; 1->^^^^ @@ -975,10 +977,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > { } 4 > -1->Emitted(34, 5) Source(21, 32) + SourceIndex(3) -2 >Emitted(34, 14) Source(21, 33) + SourceIndex(3) -3 >Emitted(34, 18) Source(21, 37) + SourceIndex(3) -4 >Emitted(34, 19) Source(21, 37) + SourceIndex(3) +1->Emitted(35, 5) Source(21, 32) + SourceIndex(3) +2 >Emitted(35, 14) Source(21, 33) + SourceIndex(3) +3 >Emitted(35, 18) Source(21, 37) + SourceIndex(3) +4 >Emitted(35, 19) Source(21, 37) + SourceIndex(3) --- >>> /*@internal*/ function foo() { } 1->^^^^ @@ -996,13 +998,13 @@ sourceFile:../../../second/second_part1.ts 5 > foo 6 > () { 7 > } -1->Emitted(35, 5) Source(22, 5) + SourceIndex(3) -2 >Emitted(35, 18) Source(22, 18) + SourceIndex(3) -3 >Emitted(35, 19) Source(22, 19) + SourceIndex(3) -4 >Emitted(35, 28) Source(22, 35) + SourceIndex(3) -5 >Emitted(35, 31) Source(22, 38) + SourceIndex(3) -6 >Emitted(35, 36) Source(22, 42) + SourceIndex(3) -7 >Emitted(35, 37) Source(22, 43) + SourceIndex(3) +1->Emitted(36, 5) Source(22, 5) + SourceIndex(3) +2 >Emitted(36, 18) Source(22, 18) + SourceIndex(3) +3 >Emitted(36, 19) Source(22, 19) + SourceIndex(3) +4 >Emitted(36, 28) Source(22, 35) + SourceIndex(3) +5 >Emitted(36, 31) Source(22, 38) + SourceIndex(3) +6 >Emitted(36, 36) Source(22, 42) + SourceIndex(3) +7 >Emitted(36, 37) Source(22, 43) + SourceIndex(3) --- >>> normalN.foo = foo; 1 >^^^^ @@ -1014,10 +1016,10 @@ sourceFile:../../../second/second_part1.ts 2 > foo 3 > () {} 4 > -1 >Emitted(36, 5) Source(22, 35) + SourceIndex(3) -2 >Emitted(36, 16) Source(22, 38) + SourceIndex(3) -3 >Emitted(36, 22) Source(22, 43) + SourceIndex(3) -4 >Emitted(36, 23) Source(22, 43) + SourceIndex(3) +1 >Emitted(37, 5) Source(22, 35) + SourceIndex(3) +2 >Emitted(37, 16) Source(22, 38) + SourceIndex(3) +3 >Emitted(37, 22) Source(22, 43) + SourceIndex(3) +4 >Emitted(37, 23) Source(22, 43) + SourceIndex(3) --- >>> /*@internal*/ var someNamespace; 1->^^^^ @@ -1033,12 +1035,12 @@ sourceFile:../../../second/second_part1.ts 4 > export namespace 5 > someNamespace 6 > { export class C {} } -1->Emitted(37, 5) Source(23, 5) + SourceIndex(3) -2 >Emitted(37, 18) Source(23, 18) + SourceIndex(3) -3 >Emitted(37, 19) Source(23, 19) + SourceIndex(3) -4 >Emitted(37, 23) Source(23, 36) + SourceIndex(3) -5 >Emitted(37, 36) Source(23, 49) + SourceIndex(3) -6 >Emitted(37, 37) Source(23, 71) + SourceIndex(3) +1->Emitted(38, 5) Source(23, 5) + SourceIndex(3) +2 >Emitted(38, 18) Source(23, 18) + SourceIndex(3) +3 >Emitted(38, 19) Source(23, 19) + SourceIndex(3) +4 >Emitted(38, 23) Source(23, 36) + SourceIndex(3) +5 >Emitted(38, 36) Source(23, 49) + SourceIndex(3) +6 >Emitted(38, 37) Source(23, 71) + SourceIndex(3) --- >>> (function (someNamespace) { 1 >^^^^ @@ -1048,21 +1050,21 @@ sourceFile:../../../second/second_part1.ts 1 > 2 > export namespace 3 > someNamespace -1 >Emitted(38, 5) Source(23, 19) + SourceIndex(3) -2 >Emitted(38, 16) Source(23, 36) + SourceIndex(3) -3 >Emitted(38, 29) Source(23, 49) + SourceIndex(3) +1 >Emitted(39, 5) Source(23, 19) + SourceIndex(3) +2 >Emitted(39, 16) Source(23, 36) + SourceIndex(3) +3 >Emitted(39, 29) Source(23, 49) + SourceIndex(3) --- >>> var C = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(39, 9) Source(23, 52) + SourceIndex(3) +1->Emitted(40, 9) Source(23, 52) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(40, 13) Source(23, 52) + SourceIndex(3) +1->Emitted(41, 13) Source(23, 52) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -1070,16 +1072,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(41, 13) Source(23, 68) + SourceIndex(3) -2 >Emitted(41, 14) Source(23, 69) + SourceIndex(3) +1->Emitted(42, 13) Source(23, 68) + SourceIndex(3) +2 >Emitted(42, 14) Source(23, 69) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(42, 13) Source(23, 68) + SourceIndex(3) -2 >Emitted(42, 21) Source(23, 69) + SourceIndex(3) +1->Emitted(43, 13) Source(23, 68) + SourceIndex(3) +2 >Emitted(43, 21) Source(23, 69) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -1091,10 +1093,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(43, 9) Source(23, 68) + SourceIndex(3) -2 >Emitted(43, 10) Source(23, 69) + SourceIndex(3) -3 >Emitted(43, 10) Source(23, 52) + SourceIndex(3) -4 >Emitted(43, 14) Source(23, 69) + SourceIndex(3) +1 >Emitted(44, 9) Source(23, 68) + SourceIndex(3) +2 >Emitted(44, 10) Source(23, 69) + SourceIndex(3) +3 >Emitted(44, 10) Source(23, 52) + SourceIndex(3) +4 >Emitted(44, 14) Source(23, 69) + SourceIndex(3) --- >>> someNamespace.C = C; 1->^^^^^^^^ @@ -1106,10 +1108,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > {} 4 > -1->Emitted(44, 9) Source(23, 65) + SourceIndex(3) -2 >Emitted(44, 24) Source(23, 66) + SourceIndex(3) -3 >Emitted(44, 28) Source(23, 69) + SourceIndex(3) -4 >Emitted(44, 29) Source(23, 69) + SourceIndex(3) +1->Emitted(45, 9) Source(23, 65) + SourceIndex(3) +2 >Emitted(45, 24) Source(23, 66) + SourceIndex(3) +3 >Emitted(45, 28) Source(23, 69) + SourceIndex(3) +4 >Emitted(45, 29) Source(23, 69) + SourceIndex(3) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^ @@ -1130,15 +1132,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(45, 5) Source(23, 70) + SourceIndex(3) -2 >Emitted(45, 6) Source(23, 71) + SourceIndex(3) -3 >Emitted(45, 8) Source(23, 36) + SourceIndex(3) -4 >Emitted(45, 21) Source(23, 49) + SourceIndex(3) -5 >Emitted(45, 24) Source(23, 36) + SourceIndex(3) -6 >Emitted(45, 45) Source(23, 49) + SourceIndex(3) -7 >Emitted(45, 50) Source(23, 36) + SourceIndex(3) -8 >Emitted(45, 71) Source(23, 49) + SourceIndex(3) -9 >Emitted(45, 79) Source(23, 71) + SourceIndex(3) +1->Emitted(46, 5) Source(23, 70) + SourceIndex(3) +2 >Emitted(46, 6) Source(23, 71) + SourceIndex(3) +3 >Emitted(46, 8) Source(23, 36) + SourceIndex(3) +4 >Emitted(46, 21) Source(23, 49) + SourceIndex(3) +5 >Emitted(46, 24) Source(23, 36) + SourceIndex(3) +6 >Emitted(46, 45) Source(23, 49) + SourceIndex(3) +7 >Emitted(46, 50) Source(23, 36) + SourceIndex(3) +8 >Emitted(46, 71) Source(23, 49) + SourceIndex(3) +9 >Emitted(46, 79) Source(23, 71) + SourceIndex(3) --- >>> /*@internal*/ var someOther; 1 >^^^^ @@ -1154,12 +1156,12 @@ sourceFile:../../../second/second_part1.ts 4 > export namespace 5 > someOther 6 > .something { export class someClass {} } -1 >Emitted(46, 5) Source(24, 5) + SourceIndex(3) -2 >Emitted(46, 18) Source(24, 18) + SourceIndex(3) -3 >Emitted(46, 19) Source(24, 19) + SourceIndex(3) -4 >Emitted(46, 23) Source(24, 36) + SourceIndex(3) -5 >Emitted(46, 32) Source(24, 45) + SourceIndex(3) -6 >Emitted(46, 33) Source(24, 85) + SourceIndex(3) +1 >Emitted(47, 5) Source(24, 5) + SourceIndex(3) +2 >Emitted(47, 18) Source(24, 18) + SourceIndex(3) +3 >Emitted(47, 19) Source(24, 19) + SourceIndex(3) +4 >Emitted(47, 23) Source(24, 36) + SourceIndex(3) +5 >Emitted(47, 32) Source(24, 45) + SourceIndex(3) +6 >Emitted(47, 33) Source(24, 85) + SourceIndex(3) --- >>> (function (someOther) { 1 >^^^^ @@ -1168,9 +1170,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 > export namespace 3 > someOther -1 >Emitted(47, 5) Source(24, 19) + SourceIndex(3) -2 >Emitted(47, 16) Source(24, 36) + SourceIndex(3) -3 >Emitted(47, 25) Source(24, 45) + SourceIndex(3) +1 >Emitted(48, 5) Source(24, 19) + SourceIndex(3) +2 >Emitted(48, 16) Source(24, 36) + SourceIndex(3) +3 >Emitted(48, 25) Source(24, 45) + SourceIndex(3) --- >>> var something; 1 >^^^^^^^^ @@ -1182,10 +1184,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(48, 9) Source(24, 46) + SourceIndex(3) -2 >Emitted(48, 13) Source(24, 46) + SourceIndex(3) -3 >Emitted(48, 22) Source(24, 55) + SourceIndex(3) -4 >Emitted(48, 23) Source(24, 85) + SourceIndex(3) +1 >Emitted(49, 9) Source(24, 46) + SourceIndex(3) +2 >Emitted(49, 13) Source(24, 46) + SourceIndex(3) +3 >Emitted(49, 22) Source(24, 55) + SourceIndex(3) +4 >Emitted(49, 23) Source(24, 85) + SourceIndex(3) --- >>> (function (something) { 1->^^^^^^^^ @@ -1195,21 +1197,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(49, 9) Source(24, 46) + SourceIndex(3) -2 >Emitted(49, 20) Source(24, 46) + SourceIndex(3) -3 >Emitted(49, 29) Source(24, 55) + SourceIndex(3) +1->Emitted(50, 9) Source(24, 46) + SourceIndex(3) +2 >Emitted(50, 20) Source(24, 46) + SourceIndex(3) +3 >Emitted(50, 29) Source(24, 55) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(50, 13) Source(24, 58) + SourceIndex(3) +1->Emitted(51, 13) Source(24, 58) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(51, 17) Source(24, 58) + SourceIndex(3) +1->Emitted(52, 17) Source(24, 58) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -1217,16 +1219,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(52, 17) Source(24, 82) + SourceIndex(3) -2 >Emitted(52, 18) Source(24, 83) + SourceIndex(3) +1->Emitted(53, 17) Source(24, 82) + SourceIndex(3) +2 >Emitted(53, 18) Source(24, 83) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(53, 17) Source(24, 82) + SourceIndex(3) -2 >Emitted(53, 33) Source(24, 83) + SourceIndex(3) +1->Emitted(54, 17) Source(24, 82) + SourceIndex(3) +2 >Emitted(54, 33) Source(24, 83) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -1238,10 +1240,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(54, 13) Source(24, 82) + SourceIndex(3) -2 >Emitted(54, 14) Source(24, 83) + SourceIndex(3) -3 >Emitted(54, 14) Source(24, 58) + SourceIndex(3) -4 >Emitted(54, 18) Source(24, 83) + SourceIndex(3) +1 >Emitted(55, 13) Source(24, 82) + SourceIndex(3) +2 >Emitted(55, 14) Source(24, 83) + SourceIndex(3) +3 >Emitted(55, 14) Source(24, 58) + SourceIndex(3) +4 >Emitted(55, 18) Source(24, 83) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -1253,10 +1255,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(55, 13) Source(24, 71) + SourceIndex(3) -2 >Emitted(55, 32) Source(24, 80) + SourceIndex(3) -3 >Emitted(55, 44) Source(24, 83) + SourceIndex(3) -4 >Emitted(55, 45) Source(24, 83) + SourceIndex(3) +1->Emitted(56, 13) Source(24, 71) + SourceIndex(3) +2 >Emitted(56, 32) Source(24, 80) + SourceIndex(3) +3 >Emitted(56, 44) Source(24, 83) + SourceIndex(3) +4 >Emitted(56, 45) Source(24, 83) + SourceIndex(3) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^ @@ -1277,15 +1279,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(56, 9) Source(24, 84) + SourceIndex(3) -2 >Emitted(56, 10) Source(24, 85) + SourceIndex(3) -3 >Emitted(56, 12) Source(24, 46) + SourceIndex(3) -4 >Emitted(56, 21) Source(24, 55) + SourceIndex(3) -5 >Emitted(56, 24) Source(24, 46) + SourceIndex(3) -6 >Emitted(56, 43) Source(24, 55) + SourceIndex(3) -7 >Emitted(56, 48) Source(24, 46) + SourceIndex(3) -8 >Emitted(56, 67) Source(24, 55) + SourceIndex(3) -9 >Emitted(56, 75) Source(24, 85) + SourceIndex(3) +1->Emitted(57, 9) Source(24, 84) + SourceIndex(3) +2 >Emitted(57, 10) Source(24, 85) + SourceIndex(3) +3 >Emitted(57, 12) Source(24, 46) + SourceIndex(3) +4 >Emitted(57, 21) Source(24, 55) + SourceIndex(3) +5 >Emitted(57, 24) Source(24, 46) + SourceIndex(3) +6 >Emitted(57, 43) Source(24, 55) + SourceIndex(3) +7 >Emitted(57, 48) Source(24, 46) + SourceIndex(3) +8 >Emitted(57, 67) Source(24, 55) + SourceIndex(3) +9 >Emitted(57, 75) Source(24, 85) + SourceIndex(3) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^ @@ -1306,15 +1308,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(57, 5) Source(24, 84) + SourceIndex(3) -2 >Emitted(57, 6) Source(24, 85) + SourceIndex(3) -3 >Emitted(57, 8) Source(24, 36) + SourceIndex(3) -4 >Emitted(57, 17) Source(24, 45) + SourceIndex(3) -5 >Emitted(57, 20) Source(24, 36) + SourceIndex(3) -6 >Emitted(57, 37) Source(24, 45) + SourceIndex(3) -7 >Emitted(57, 42) Source(24, 36) + SourceIndex(3) -8 >Emitted(57, 59) Source(24, 45) + SourceIndex(3) -9 >Emitted(57, 67) Source(24, 85) + SourceIndex(3) +1 >Emitted(58, 5) Source(24, 84) + SourceIndex(3) +2 >Emitted(58, 6) Source(24, 85) + SourceIndex(3) +3 >Emitted(58, 8) Source(24, 36) + SourceIndex(3) +4 >Emitted(58, 17) Source(24, 45) + SourceIndex(3) +5 >Emitted(58, 20) Source(24, 36) + SourceIndex(3) +6 >Emitted(58, 37) Source(24, 45) + SourceIndex(3) +7 >Emitted(58, 42) Source(24, 36) + SourceIndex(3) +8 >Emitted(58, 59) Source(24, 45) + SourceIndex(3) +9 >Emitted(58, 67) Source(24, 85) + SourceIndex(3) --- >>> /*@internal*/ normalN.someImport = someNamespace.C; 1 >^^^^ @@ -1336,15 +1338,15 @@ sourceFile:../../../second/second_part1.ts 7 > . 8 > C 9 > ; -1 >Emitted(58, 5) Source(25, 5) + SourceIndex(3) -2 >Emitted(58, 18) Source(25, 18) + SourceIndex(3) -3 >Emitted(58, 19) Source(25, 33) + SourceIndex(3) -4 >Emitted(58, 37) Source(25, 43) + SourceIndex(3) -5 >Emitted(58, 40) Source(25, 46) + SourceIndex(3) -6 >Emitted(58, 53) Source(25, 59) + SourceIndex(3) -7 >Emitted(58, 54) Source(25, 60) + SourceIndex(3) -8 >Emitted(58, 55) Source(25, 61) + SourceIndex(3) -9 >Emitted(58, 56) Source(25, 62) + SourceIndex(3) +1 >Emitted(59, 5) Source(25, 5) + SourceIndex(3) +2 >Emitted(59, 18) Source(25, 18) + SourceIndex(3) +3 >Emitted(59, 19) Source(25, 33) + SourceIndex(3) +4 >Emitted(59, 37) Source(25, 43) + SourceIndex(3) +5 >Emitted(59, 40) Source(25, 46) + SourceIndex(3) +6 >Emitted(59, 53) Source(25, 59) + SourceIndex(3) +7 >Emitted(59, 54) Source(25, 60) + SourceIndex(3) +8 >Emitted(59, 55) Source(25, 61) + SourceIndex(3) +9 >Emitted(59, 56) Source(25, 62) + SourceIndex(3) --- >>> /*@internal*/ normalN.internalConst = 10; 1 >^^^^ @@ -1363,13 +1365,13 @@ sourceFile:../../../second/second_part1.ts 5 > = 6 > 10 7 > ; -1 >Emitted(59, 5) Source(27, 5) + SourceIndex(3) -2 >Emitted(59, 18) Source(27, 18) + SourceIndex(3) -3 >Emitted(59, 19) Source(27, 32) + SourceIndex(3) -4 >Emitted(59, 40) Source(27, 45) + SourceIndex(3) -5 >Emitted(59, 43) Source(27, 48) + SourceIndex(3) -6 >Emitted(59, 45) Source(27, 50) + SourceIndex(3) -7 >Emitted(59, 46) Source(27, 51) + SourceIndex(3) +1 >Emitted(60, 5) Source(27, 5) + SourceIndex(3) +2 >Emitted(60, 18) Source(27, 18) + SourceIndex(3) +3 >Emitted(60, 19) Source(27, 32) + SourceIndex(3) +4 >Emitted(60, 40) Source(27, 45) + SourceIndex(3) +5 >Emitted(60, 43) Source(27, 48) + SourceIndex(3) +6 >Emitted(60, 45) Source(27, 50) + SourceIndex(3) +7 >Emitted(60, 46) Source(27, 51) + SourceIndex(3) --- >>> /*@internal*/ var internalEnum; 1 >^^^^ @@ -1383,11 +1385,11 @@ sourceFile:../../../second/second_part1.ts 3 > 4 > export enum 5 > internalEnum { a, b, c } -1 >Emitted(60, 5) Source(28, 5) + SourceIndex(3) -2 >Emitted(60, 18) Source(28, 18) + SourceIndex(3) -3 >Emitted(60, 19) Source(28, 19) + SourceIndex(3) -4 >Emitted(60, 23) Source(28, 31) + SourceIndex(3) -5 >Emitted(60, 35) Source(28, 55) + SourceIndex(3) +1 >Emitted(61, 5) Source(28, 5) + SourceIndex(3) +2 >Emitted(61, 18) Source(28, 18) + SourceIndex(3) +3 >Emitted(61, 19) Source(28, 19) + SourceIndex(3) +4 >Emitted(61, 23) Source(28, 31) + SourceIndex(3) +5 >Emitted(61, 35) Source(28, 55) + SourceIndex(3) --- >>> (function (internalEnum) { 1 >^^^^ @@ -1397,9 +1399,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 > export enum 3 > internalEnum -1 >Emitted(61, 5) Source(28, 19) + SourceIndex(3) -2 >Emitted(61, 16) Source(28, 31) + SourceIndex(3) -3 >Emitted(61, 28) Source(28, 43) + SourceIndex(3) +1 >Emitted(62, 5) Source(28, 19) + SourceIndex(3) +2 >Emitted(62, 16) Source(28, 31) + SourceIndex(3) +3 >Emitted(62, 28) Source(28, 43) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -1409,9 +1411,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(62, 9) Source(28, 46) + SourceIndex(3) -2 >Emitted(62, 50) Source(28, 47) + SourceIndex(3) -3 >Emitted(62, 51) Source(28, 47) + SourceIndex(3) +1->Emitted(63, 9) Source(28, 46) + SourceIndex(3) +2 >Emitted(63, 50) Source(28, 47) + SourceIndex(3) +3 >Emitted(63, 51) Source(28, 47) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -1421,9 +1423,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(63, 9) Source(28, 49) + SourceIndex(3) -2 >Emitted(63, 50) Source(28, 50) + SourceIndex(3) -3 >Emitted(63, 51) Source(28, 50) + SourceIndex(3) +1->Emitted(64, 9) Source(28, 49) + SourceIndex(3) +2 >Emitted(64, 50) Source(28, 50) + SourceIndex(3) +3 >Emitted(64, 51) Source(28, 50) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -1433,9 +1435,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(64, 9) Source(28, 52) + SourceIndex(3) -2 >Emitted(64, 50) Source(28, 53) + SourceIndex(3) -3 >Emitted(64, 51) Source(28, 53) + SourceIndex(3) +1->Emitted(65, 9) Source(28, 52) + SourceIndex(3) +2 >Emitted(65, 50) Source(28, 53) + SourceIndex(3) +3 >Emitted(65, 51) Source(28, 53) + SourceIndex(3) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^ @@ -1456,15 +1458,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(65, 5) Source(28, 54) + SourceIndex(3) -2 >Emitted(65, 6) Source(28, 55) + SourceIndex(3) -3 >Emitted(65, 8) Source(28, 31) + SourceIndex(3) -4 >Emitted(65, 20) Source(28, 43) + SourceIndex(3) -5 >Emitted(65, 23) Source(28, 31) + SourceIndex(3) -6 >Emitted(65, 43) Source(28, 43) + SourceIndex(3) -7 >Emitted(65, 48) Source(28, 31) + SourceIndex(3) -8 >Emitted(65, 68) Source(28, 43) + SourceIndex(3) -9 >Emitted(65, 76) Source(28, 55) + SourceIndex(3) +1->Emitted(66, 5) Source(28, 54) + SourceIndex(3) +2 >Emitted(66, 6) Source(28, 55) + SourceIndex(3) +3 >Emitted(66, 8) Source(28, 31) + SourceIndex(3) +4 >Emitted(66, 20) Source(28, 43) + SourceIndex(3) +5 >Emitted(66, 23) Source(28, 31) + SourceIndex(3) +6 >Emitted(66, 43) Source(28, 43) + SourceIndex(3) +7 >Emitted(66, 48) Source(28, 31) + SourceIndex(3) +8 >Emitted(66, 68) Source(28, 43) + SourceIndex(3) +9 >Emitted(66, 76) Source(28, 55) + SourceIndex(3) --- >>>})(normalN || (normalN = {})); 1 > @@ -1492,13 +1494,13 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(66, 1) Source(29, 1) + SourceIndex(3) -2 >Emitted(66, 2) Source(29, 2) + SourceIndex(3) -3 >Emitted(66, 4) Source(20, 11) + SourceIndex(3) -4 >Emitted(66, 11) Source(20, 18) + SourceIndex(3) -5 >Emitted(66, 16) Source(20, 11) + SourceIndex(3) -6 >Emitted(66, 23) Source(20, 18) + SourceIndex(3) -7 >Emitted(66, 31) Source(29, 2) + SourceIndex(3) +1 >Emitted(67, 1) Source(29, 1) + SourceIndex(3) +2 >Emitted(67, 2) Source(29, 2) + SourceIndex(3) +3 >Emitted(67, 4) Source(20, 11) + SourceIndex(3) +4 >Emitted(67, 11) Source(20, 18) + SourceIndex(3) +5 >Emitted(67, 16) Source(20, 11) + SourceIndex(3) +6 >Emitted(67, 23) Source(20, 18) + SourceIndex(3) +7 >Emitted(67, 31) Source(29, 2) + SourceIndex(3) --- >>>/*@internal*/ var internalC = /** @class */ (function () { 1-> @@ -1509,15 +1511,15 @@ sourceFile:../../../second/second_part1.ts > 2 >/*@internal*/ 3 > -1->Emitted(67, 1) Source(30, 1) + SourceIndex(3) -2 >Emitted(67, 14) Source(30, 14) + SourceIndex(3) -3 >Emitted(67, 15) Source(30, 15) + SourceIndex(3) +1->Emitted(68, 1) Source(30, 1) + SourceIndex(3) +2 >Emitted(68, 14) Source(30, 14) + SourceIndex(3) +3 >Emitted(68, 15) Source(30, 15) + SourceIndex(3) --- >>> function internalC() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(68, 5) Source(30, 15) + SourceIndex(3) +1->Emitted(69, 5) Source(30, 15) + SourceIndex(3) --- >>> } 1->^^^^ @@ -1525,16 +1527,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->class internalC { 2 > } -1->Emitted(69, 5) Source(30, 32) + SourceIndex(3) -2 >Emitted(69, 6) Source(30, 33) + SourceIndex(3) +1->Emitted(70, 5) Source(30, 32) + SourceIndex(3) +2 >Emitted(70, 6) Source(30, 33) + SourceIndex(3) --- >>> return internalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(70, 5) Source(30, 32) + SourceIndex(3) -2 >Emitted(70, 21) Source(30, 33) + SourceIndex(3) +1->Emitted(71, 5) Source(30, 32) + SourceIndex(3) +2 >Emitted(71, 21) Source(30, 33) + SourceIndex(3) --- >>>}()); 1 > @@ -1546,10 +1548,10 @@ sourceFile:../../../second/second_part1.ts 2 >} 3 > 4 > class internalC {} -1 >Emitted(71, 1) Source(30, 32) + SourceIndex(3) -2 >Emitted(71, 2) Source(30, 33) + SourceIndex(3) -3 >Emitted(71, 2) Source(30, 15) + SourceIndex(3) -4 >Emitted(71, 6) Source(30, 33) + SourceIndex(3) +1 >Emitted(72, 1) Source(30, 32) + SourceIndex(3) +2 >Emitted(72, 2) Source(30, 33) + SourceIndex(3) +3 >Emitted(72, 2) Source(30, 15) + SourceIndex(3) +4 >Emitted(72, 6) Source(30, 33) + SourceIndex(3) --- >>>/*@internal*/ function internalfoo() { } 1-> @@ -1567,13 +1569,13 @@ sourceFile:../../../second/second_part1.ts 5 > internalfoo 6 > () { 7 > } -1->Emitted(72, 1) Source(31, 1) + SourceIndex(3) -2 >Emitted(72, 14) Source(31, 14) + SourceIndex(3) -3 >Emitted(72, 15) Source(31, 15) + SourceIndex(3) -4 >Emitted(72, 24) Source(31, 24) + SourceIndex(3) -5 >Emitted(72, 35) Source(31, 35) + SourceIndex(3) -6 >Emitted(72, 40) Source(31, 39) + SourceIndex(3) -7 >Emitted(72, 41) Source(31, 40) + SourceIndex(3) +1->Emitted(73, 1) Source(31, 1) + SourceIndex(3) +2 >Emitted(73, 14) Source(31, 14) + SourceIndex(3) +3 >Emitted(73, 15) Source(31, 15) + SourceIndex(3) +4 >Emitted(73, 24) Source(31, 24) + SourceIndex(3) +5 >Emitted(73, 35) Source(31, 35) + SourceIndex(3) +6 >Emitted(73, 40) Source(31, 39) + SourceIndex(3) +7 >Emitted(73, 41) Source(31, 40) + SourceIndex(3) --- >>>/*@internal*/ var internalNamespace; 1 > @@ -1589,12 +1591,12 @@ sourceFile:../../../second/second_part1.ts 4 > namespace 5 > internalNamespace 6 > { export class someClass {} } -1 >Emitted(73, 1) Source(32, 1) + SourceIndex(3) -2 >Emitted(73, 14) Source(32, 14) + SourceIndex(3) -3 >Emitted(73, 15) Source(32, 15) + SourceIndex(3) -4 >Emitted(73, 19) Source(32, 25) + SourceIndex(3) -5 >Emitted(73, 36) Source(32, 42) + SourceIndex(3) -6 >Emitted(73, 37) Source(32, 72) + SourceIndex(3) +1 >Emitted(74, 1) Source(32, 1) + SourceIndex(3) +2 >Emitted(74, 14) Source(32, 14) + SourceIndex(3) +3 >Emitted(74, 15) Source(32, 15) + SourceIndex(3) +4 >Emitted(74, 19) Source(32, 25) + SourceIndex(3) +5 >Emitted(74, 36) Source(32, 42) + SourceIndex(3) +6 >Emitted(74, 37) Source(32, 72) + SourceIndex(3) --- >>>(function (internalNamespace) { 1 > @@ -1604,21 +1606,21 @@ sourceFile:../../../second/second_part1.ts 1 > 2 >namespace 3 > internalNamespace -1 >Emitted(74, 1) Source(32, 15) + SourceIndex(3) -2 >Emitted(74, 12) Source(32, 25) + SourceIndex(3) -3 >Emitted(74, 29) Source(32, 42) + SourceIndex(3) +1 >Emitted(75, 1) Source(32, 15) + SourceIndex(3) +2 >Emitted(75, 12) Source(32, 25) + SourceIndex(3) +3 >Emitted(75, 29) Source(32, 42) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(75, 5) Source(32, 45) + SourceIndex(3) +1->Emitted(76, 5) Source(32, 45) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(76, 9) Source(32, 45) + SourceIndex(3) +1->Emitted(77, 9) Source(32, 45) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -1626,16 +1628,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(77, 9) Source(32, 69) + SourceIndex(3) -2 >Emitted(77, 10) Source(32, 70) + SourceIndex(3) +1->Emitted(78, 9) Source(32, 69) + SourceIndex(3) +2 >Emitted(78, 10) Source(32, 70) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(78, 9) Source(32, 69) + SourceIndex(3) -2 >Emitted(78, 25) Source(32, 70) + SourceIndex(3) +1->Emitted(79, 9) Source(32, 69) + SourceIndex(3) +2 >Emitted(79, 25) Source(32, 70) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -1647,10 +1649,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(79, 5) Source(32, 69) + SourceIndex(3) -2 >Emitted(79, 6) Source(32, 70) + SourceIndex(3) -3 >Emitted(79, 6) Source(32, 45) + SourceIndex(3) -4 >Emitted(79, 10) Source(32, 70) + SourceIndex(3) +1 >Emitted(80, 5) Source(32, 69) + SourceIndex(3) +2 >Emitted(80, 6) Source(32, 70) + SourceIndex(3) +3 >Emitted(80, 6) Source(32, 45) + SourceIndex(3) +4 >Emitted(80, 10) Source(32, 70) + SourceIndex(3) --- >>> internalNamespace.someClass = someClass; 1->^^^^ @@ -1662,10 +1664,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(80, 5) Source(32, 58) + SourceIndex(3) -2 >Emitted(80, 32) Source(32, 67) + SourceIndex(3) -3 >Emitted(80, 44) Source(32, 70) + SourceIndex(3) -4 >Emitted(80, 45) Source(32, 70) + SourceIndex(3) +1->Emitted(81, 5) Source(32, 58) + SourceIndex(3) +2 >Emitted(81, 32) Source(32, 67) + SourceIndex(3) +3 >Emitted(81, 44) Source(32, 70) + SourceIndex(3) +4 >Emitted(81, 45) Source(32, 70) + SourceIndex(3) --- >>>})(internalNamespace || (internalNamespace = {})); 1-> @@ -1682,13 +1684,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalNamespace 7 > { export class someClass {} } -1->Emitted(81, 1) Source(32, 71) + SourceIndex(3) -2 >Emitted(81, 2) Source(32, 72) + SourceIndex(3) -3 >Emitted(81, 4) Source(32, 25) + SourceIndex(3) -4 >Emitted(81, 21) Source(32, 42) + SourceIndex(3) -5 >Emitted(81, 26) Source(32, 25) + SourceIndex(3) -6 >Emitted(81, 43) Source(32, 42) + SourceIndex(3) -7 >Emitted(81, 51) Source(32, 72) + SourceIndex(3) +1->Emitted(82, 1) Source(32, 71) + SourceIndex(3) +2 >Emitted(82, 2) Source(32, 72) + SourceIndex(3) +3 >Emitted(82, 4) Source(32, 25) + SourceIndex(3) +4 >Emitted(82, 21) Source(32, 42) + SourceIndex(3) +5 >Emitted(82, 26) Source(32, 25) + SourceIndex(3) +6 >Emitted(82, 43) Source(32, 42) + SourceIndex(3) +7 >Emitted(82, 51) Source(32, 72) + SourceIndex(3) --- >>>/*@internal*/ var internalOther; 1 > @@ -1704,12 +1706,12 @@ sourceFile:../../../second/second_part1.ts 4 > namespace 5 > internalOther 6 > .something { export class someClass {} } -1 >Emitted(82, 1) Source(33, 1) + SourceIndex(3) -2 >Emitted(82, 14) Source(33, 14) + SourceIndex(3) -3 >Emitted(82, 15) Source(33, 15) + SourceIndex(3) -4 >Emitted(82, 19) Source(33, 25) + SourceIndex(3) -5 >Emitted(82, 32) Source(33, 38) + SourceIndex(3) -6 >Emitted(82, 33) Source(33, 78) + SourceIndex(3) +1 >Emitted(83, 1) Source(33, 1) + SourceIndex(3) +2 >Emitted(83, 14) Source(33, 14) + SourceIndex(3) +3 >Emitted(83, 15) Source(33, 15) + SourceIndex(3) +4 >Emitted(83, 19) Source(33, 25) + SourceIndex(3) +5 >Emitted(83, 32) Source(33, 38) + SourceIndex(3) +6 >Emitted(83, 33) Source(33, 78) + SourceIndex(3) --- >>>(function (internalOther) { 1 > @@ -1718,9 +1720,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 >namespace 3 > internalOther -1 >Emitted(83, 1) Source(33, 15) + SourceIndex(3) -2 >Emitted(83, 12) Source(33, 25) + SourceIndex(3) -3 >Emitted(83, 25) Source(33, 38) + SourceIndex(3) +1 >Emitted(84, 1) Source(33, 15) + SourceIndex(3) +2 >Emitted(84, 12) Source(33, 25) + SourceIndex(3) +3 >Emitted(84, 25) Source(33, 38) + SourceIndex(3) --- >>> var something; 1 >^^^^ @@ -1732,10 +1734,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(84, 5) Source(33, 39) + SourceIndex(3) -2 >Emitted(84, 9) Source(33, 39) + SourceIndex(3) -3 >Emitted(84, 18) Source(33, 48) + SourceIndex(3) -4 >Emitted(84, 19) Source(33, 78) + SourceIndex(3) +1 >Emitted(85, 5) Source(33, 39) + SourceIndex(3) +2 >Emitted(85, 9) Source(33, 39) + SourceIndex(3) +3 >Emitted(85, 18) Source(33, 48) + SourceIndex(3) +4 >Emitted(85, 19) Source(33, 78) + SourceIndex(3) --- >>> (function (something) { 1->^^^^ @@ -1745,21 +1747,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(85, 5) Source(33, 39) + SourceIndex(3) -2 >Emitted(85, 16) Source(33, 39) + SourceIndex(3) -3 >Emitted(85, 25) Source(33, 48) + SourceIndex(3) +1->Emitted(86, 5) Source(33, 39) + SourceIndex(3) +2 >Emitted(86, 16) Source(33, 39) + SourceIndex(3) +3 >Emitted(86, 25) Source(33, 48) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(86, 9) Source(33, 51) + SourceIndex(3) +1->Emitted(87, 9) Source(33, 51) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(87, 13) Source(33, 51) + SourceIndex(3) +1->Emitted(88, 13) Source(33, 51) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -1767,16 +1769,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(88, 13) Source(33, 75) + SourceIndex(3) -2 >Emitted(88, 14) Source(33, 76) + SourceIndex(3) +1->Emitted(89, 13) Source(33, 75) + SourceIndex(3) +2 >Emitted(89, 14) Source(33, 76) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(89, 13) Source(33, 75) + SourceIndex(3) -2 >Emitted(89, 29) Source(33, 76) + SourceIndex(3) +1->Emitted(90, 13) Source(33, 75) + SourceIndex(3) +2 >Emitted(90, 29) Source(33, 76) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -1788,10 +1790,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(90, 9) Source(33, 75) + SourceIndex(3) -2 >Emitted(90, 10) Source(33, 76) + SourceIndex(3) -3 >Emitted(90, 10) Source(33, 51) + SourceIndex(3) -4 >Emitted(90, 14) Source(33, 76) + SourceIndex(3) +1 >Emitted(91, 9) Source(33, 75) + SourceIndex(3) +2 >Emitted(91, 10) Source(33, 76) + SourceIndex(3) +3 >Emitted(91, 10) Source(33, 51) + SourceIndex(3) +4 >Emitted(91, 14) Source(33, 76) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^ @@ -1803,10 +1805,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(91, 9) Source(33, 64) + SourceIndex(3) -2 >Emitted(91, 28) Source(33, 73) + SourceIndex(3) -3 >Emitted(91, 40) Source(33, 76) + SourceIndex(3) -4 >Emitted(91, 41) Source(33, 76) + SourceIndex(3) +1->Emitted(92, 9) Source(33, 64) + SourceIndex(3) +2 >Emitted(92, 28) Source(33, 73) + SourceIndex(3) +3 >Emitted(92, 40) Source(33, 76) + SourceIndex(3) +4 >Emitted(92, 41) Source(33, 76) + SourceIndex(3) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^ @@ -1827,15 +1829,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(92, 5) Source(33, 77) + SourceIndex(3) -2 >Emitted(92, 6) Source(33, 78) + SourceIndex(3) -3 >Emitted(92, 8) Source(33, 39) + SourceIndex(3) -4 >Emitted(92, 17) Source(33, 48) + SourceIndex(3) -5 >Emitted(92, 20) Source(33, 39) + SourceIndex(3) -6 >Emitted(92, 43) Source(33, 48) + SourceIndex(3) -7 >Emitted(92, 48) Source(33, 39) + SourceIndex(3) -8 >Emitted(92, 71) Source(33, 48) + SourceIndex(3) -9 >Emitted(92, 79) Source(33, 78) + SourceIndex(3) +1->Emitted(93, 5) Source(33, 77) + SourceIndex(3) +2 >Emitted(93, 6) Source(33, 78) + SourceIndex(3) +3 >Emitted(93, 8) Source(33, 39) + SourceIndex(3) +4 >Emitted(93, 17) Source(33, 48) + SourceIndex(3) +5 >Emitted(93, 20) Source(33, 39) + SourceIndex(3) +6 >Emitted(93, 43) Source(33, 48) + SourceIndex(3) +7 >Emitted(93, 48) Source(33, 39) + SourceIndex(3) +8 >Emitted(93, 71) Source(33, 48) + SourceIndex(3) +9 >Emitted(93, 79) Source(33, 78) + SourceIndex(3) --- >>>})(internalOther || (internalOther = {})); 1 > @@ -1853,13 +1855,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalOther 7 > .something { export class someClass {} } -1 >Emitted(93, 1) Source(33, 77) + SourceIndex(3) -2 >Emitted(93, 2) Source(33, 78) + SourceIndex(3) -3 >Emitted(93, 4) Source(33, 25) + SourceIndex(3) -4 >Emitted(93, 17) Source(33, 38) + SourceIndex(3) -5 >Emitted(93, 22) Source(33, 25) + SourceIndex(3) -6 >Emitted(93, 35) Source(33, 38) + SourceIndex(3) -7 >Emitted(93, 43) Source(33, 78) + SourceIndex(3) +1 >Emitted(94, 1) Source(33, 77) + SourceIndex(3) +2 >Emitted(94, 2) Source(33, 78) + SourceIndex(3) +3 >Emitted(94, 4) Source(33, 25) + SourceIndex(3) +4 >Emitted(94, 17) Source(33, 38) + SourceIndex(3) +5 >Emitted(94, 22) Source(33, 25) + SourceIndex(3) +6 >Emitted(94, 35) Source(33, 38) + SourceIndex(3) +7 >Emitted(94, 43) Source(33, 78) + SourceIndex(3) --- >>>/*@internal*/ var internalImport = internalNamespace.someClass; 1-> @@ -1883,16 +1885,16 @@ sourceFile:../../../second/second_part1.ts 8 > . 9 > someClass 10> ; -1->Emitted(94, 1) Source(34, 1) + SourceIndex(3) -2 >Emitted(94, 14) Source(34, 14) + SourceIndex(3) -3 >Emitted(94, 15) Source(34, 15) + SourceIndex(3) -4 >Emitted(94, 19) Source(34, 22) + SourceIndex(3) -5 >Emitted(94, 33) Source(34, 36) + SourceIndex(3) -6 >Emitted(94, 36) Source(34, 39) + SourceIndex(3) -7 >Emitted(94, 53) Source(34, 56) + SourceIndex(3) -8 >Emitted(94, 54) Source(34, 57) + SourceIndex(3) -9 >Emitted(94, 63) Source(34, 66) + SourceIndex(3) -10>Emitted(94, 64) Source(34, 67) + SourceIndex(3) +1->Emitted(95, 1) Source(34, 1) + SourceIndex(3) +2 >Emitted(95, 14) Source(34, 14) + SourceIndex(3) +3 >Emitted(95, 15) Source(34, 15) + SourceIndex(3) +4 >Emitted(95, 19) Source(34, 22) + SourceIndex(3) +5 >Emitted(95, 33) Source(34, 36) + SourceIndex(3) +6 >Emitted(95, 36) Source(34, 39) + SourceIndex(3) +7 >Emitted(95, 53) Source(34, 56) + SourceIndex(3) +8 >Emitted(95, 54) Source(34, 57) + SourceIndex(3) +9 >Emitted(95, 63) Source(34, 66) + SourceIndex(3) +10>Emitted(95, 64) Source(34, 67) + SourceIndex(3) --- >>>/*@internal*/ var internalConst = 10; 1 > @@ -1913,14 +1915,14 @@ sourceFile:../../../second/second_part1.ts 6 > = 7 > 10 8 > ; -1 >Emitted(95, 1) Source(36, 1) + SourceIndex(3) -2 >Emitted(95, 14) Source(36, 14) + SourceIndex(3) -3 >Emitted(95, 15) Source(36, 15) + SourceIndex(3) -4 >Emitted(95, 19) Source(36, 21) + SourceIndex(3) -5 >Emitted(95, 32) Source(36, 34) + SourceIndex(3) -6 >Emitted(95, 35) Source(36, 37) + SourceIndex(3) -7 >Emitted(95, 37) Source(36, 39) + SourceIndex(3) -8 >Emitted(95, 38) Source(36, 40) + SourceIndex(3) +1 >Emitted(96, 1) Source(36, 1) + SourceIndex(3) +2 >Emitted(96, 14) Source(36, 14) + SourceIndex(3) +3 >Emitted(96, 15) Source(36, 15) + SourceIndex(3) +4 >Emitted(96, 19) Source(36, 21) + SourceIndex(3) +5 >Emitted(96, 32) Source(36, 34) + SourceIndex(3) +6 >Emitted(96, 35) Source(36, 37) + SourceIndex(3) +7 >Emitted(96, 37) Source(36, 39) + SourceIndex(3) +8 >Emitted(96, 38) Source(36, 40) + SourceIndex(3) --- >>>/*@internal*/ var internalEnum; 1 > @@ -1934,11 +1936,11 @@ sourceFile:../../../second/second_part1.ts 3 > 4 > enum 5 > internalEnum { a, b, c } -1 >Emitted(96, 1) Source(37, 1) + SourceIndex(3) -2 >Emitted(96, 14) Source(37, 14) + SourceIndex(3) -3 >Emitted(96, 15) Source(37, 15) + SourceIndex(3) -4 >Emitted(96, 19) Source(37, 20) + SourceIndex(3) -5 >Emitted(96, 31) Source(37, 44) + SourceIndex(3) +1 >Emitted(97, 1) Source(37, 1) + SourceIndex(3) +2 >Emitted(97, 14) Source(37, 14) + SourceIndex(3) +3 >Emitted(97, 15) Source(37, 15) + SourceIndex(3) +4 >Emitted(97, 19) Source(37, 20) + SourceIndex(3) +5 >Emitted(97, 31) Source(37, 44) + SourceIndex(3) --- >>>(function (internalEnum) { 1 > @@ -1948,9 +1950,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 >enum 3 > internalEnum -1 >Emitted(97, 1) Source(37, 15) + SourceIndex(3) -2 >Emitted(97, 12) Source(37, 20) + SourceIndex(3) -3 >Emitted(97, 24) Source(37, 32) + SourceIndex(3) +1 >Emitted(98, 1) Source(37, 15) + SourceIndex(3) +2 >Emitted(98, 12) Source(37, 20) + SourceIndex(3) +3 >Emitted(98, 24) Source(37, 32) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^ @@ -1960,9 +1962,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(98, 5) Source(37, 35) + SourceIndex(3) -2 >Emitted(98, 46) Source(37, 36) + SourceIndex(3) -3 >Emitted(98, 47) Source(37, 36) + SourceIndex(3) +1->Emitted(99, 5) Source(37, 35) + SourceIndex(3) +2 >Emitted(99, 46) Source(37, 36) + SourceIndex(3) +3 >Emitted(99, 47) Source(37, 36) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^ @@ -1972,9 +1974,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(99, 5) Source(37, 38) + SourceIndex(3) -2 >Emitted(99, 46) Source(37, 39) + SourceIndex(3) -3 >Emitted(99, 47) Source(37, 39) + SourceIndex(3) +1->Emitted(100, 5) Source(37, 38) + SourceIndex(3) +2 >Emitted(100, 46) Source(37, 39) + SourceIndex(3) +3 >Emitted(100, 47) Source(37, 39) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^ @@ -1983,9 +1985,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(100, 5) Source(37, 41) + SourceIndex(3) -2 >Emitted(100, 46) Source(37, 42) + SourceIndex(3) -3 >Emitted(100, 47) Source(37, 42) + SourceIndex(3) +1->Emitted(101, 5) Source(37, 41) + SourceIndex(3) +2 >Emitted(101, 46) Source(37, 42) + SourceIndex(3) +3 >Emitted(101, 47) Source(37, 42) + SourceIndex(3) --- >>>})(internalEnum || (internalEnum = {})); 1 > @@ -2002,13 +2004,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalEnum 7 > { a, b, c } -1 >Emitted(101, 1) Source(37, 43) + SourceIndex(3) -2 >Emitted(101, 2) Source(37, 44) + SourceIndex(3) -3 >Emitted(101, 4) Source(37, 20) + SourceIndex(3) -4 >Emitted(101, 16) Source(37, 32) + SourceIndex(3) -5 >Emitted(101, 21) Source(37, 20) + SourceIndex(3) -6 >Emitted(101, 33) Source(37, 32) + SourceIndex(3) -7 >Emitted(101, 41) Source(37, 44) + SourceIndex(3) +1 >Emitted(102, 1) Source(37, 43) + SourceIndex(3) +2 >Emitted(102, 2) Source(37, 44) + SourceIndex(3) +3 >Emitted(102, 4) Source(37, 20) + SourceIndex(3) +4 >Emitted(102, 16) Source(37, 32) + SourceIndex(3) +5 >Emitted(102, 21) Source(37, 20) + SourceIndex(3) +6 >Emitted(102, 33) Source(37, 32) + SourceIndex(3) +7 >Emitted(102, 41) Source(37, 44) + SourceIndex(3) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -2018,13 +2020,13 @@ sourceFile:../../../second/second_part2.ts 1 > 2 >^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(102, 1) Source(1, 1) + SourceIndex(4) +1 >Emitted(103, 1) Source(1, 1) + SourceIndex(4) --- >>> function C() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(103, 5) Source(1, 1) + SourceIndex(4) +1->Emitted(104, 5) Source(1, 1) + SourceIndex(4) --- >>> } 1->^^^^ @@ -2036,8 +2038,8 @@ sourceFile:../../../second/second_part2.ts > } > 2 > } -1->Emitted(104, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(104, 6) Source(5, 2) + SourceIndex(4) +1->Emitted(105, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(105, 6) Source(5, 2) + SourceIndex(4) --- >>> C.prototype.doSomething = function () { 1->^^^^ @@ -2047,9 +2049,9 @@ sourceFile:../../../second/second_part2.ts 1-> 2 > doSomething 3 > -1->Emitted(105, 5) Source(2, 5) + SourceIndex(4) -2 >Emitted(105, 28) Source(2, 16) + SourceIndex(4) -3 >Emitted(105, 31) Source(2, 5) + SourceIndex(4) +1->Emitted(106, 5) Source(2, 5) + SourceIndex(4) +2 >Emitted(106, 28) Source(2, 16) + SourceIndex(4) +3 >Emitted(106, 31) Source(2, 5) + SourceIndex(4) --- >>> console.log("something got done"); 1->^^^^^^^^ @@ -2069,14 +2071,14 @@ sourceFile:../../../second/second_part2.ts 6 > "something got done" 7 > ) 8 > ; -1->Emitted(106, 9) Source(3, 9) + SourceIndex(4) -2 >Emitted(106, 16) Source(3, 16) + SourceIndex(4) -3 >Emitted(106, 17) Source(3, 17) + SourceIndex(4) -4 >Emitted(106, 20) Source(3, 20) + SourceIndex(4) -5 >Emitted(106, 21) Source(3, 21) + SourceIndex(4) -6 >Emitted(106, 41) Source(3, 41) + SourceIndex(4) -7 >Emitted(106, 42) Source(3, 42) + SourceIndex(4) -8 >Emitted(106, 43) Source(3, 43) + SourceIndex(4) +1->Emitted(107, 9) Source(3, 9) + SourceIndex(4) +2 >Emitted(107, 16) Source(3, 16) + SourceIndex(4) +3 >Emitted(107, 17) Source(3, 17) + SourceIndex(4) +4 >Emitted(107, 20) Source(3, 20) + SourceIndex(4) +5 >Emitted(107, 21) Source(3, 21) + SourceIndex(4) +6 >Emitted(107, 41) Source(3, 41) + SourceIndex(4) +7 >Emitted(107, 42) Source(3, 42) + SourceIndex(4) +8 >Emitted(107, 43) Source(3, 43) + SourceIndex(4) --- >>> }; 1 >^^^^ @@ -2085,8 +2087,8 @@ sourceFile:../../../second/second_part2.ts 1 > > 2 > } -1 >Emitted(107, 5) Source(4, 5) + SourceIndex(4) -2 >Emitted(107, 6) Source(4, 6) + SourceIndex(4) +1 >Emitted(108, 5) Source(4, 5) + SourceIndex(4) +2 >Emitted(108, 6) Source(4, 6) + SourceIndex(4) --- >>> return C; 1->^^^^ @@ -2094,8 +2096,8 @@ sourceFile:../../../second/second_part2.ts 1-> > 2 > } -1->Emitted(108, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(108, 13) Source(5, 2) + SourceIndex(4) +1->Emitted(109, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(109, 13) Source(5, 2) + SourceIndex(4) --- >>>}()); 1 > @@ -2111,10 +2113,10 @@ sourceFile:../../../second/second_part2.ts > console.log("something got done"); > } > } -1 >Emitted(109, 1) Source(5, 1) + SourceIndex(4) -2 >Emitted(109, 2) Source(5, 2) + SourceIndex(4) -3 >Emitted(109, 2) Source(1, 1) + SourceIndex(4) -4 >Emitted(109, 6) Source(5, 2) + SourceIndex(4) +1 >Emitted(110, 1) Source(5, 1) + SourceIndex(4) +2 >Emitted(110, 2) Source(5, 2) + SourceIndex(4) +3 >Emitted(110, 2) Source(1, 1) + SourceIndex(4) +4 >Emitted(110, 6) Source(5, 2) + SourceIndex(4) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -2138,14 +2140,14 @@ sourceFile:../../third_part1.ts 6 > C 7 > () 8 > ; -1->Emitted(110, 1) Source(1, 1) + SourceIndex(5) -2 >Emitted(110, 5) Source(1, 5) + SourceIndex(5) -3 >Emitted(110, 6) Source(1, 6) + SourceIndex(5) -4 >Emitted(110, 9) Source(1, 9) + SourceIndex(5) -5 >Emitted(110, 13) Source(1, 13) + SourceIndex(5) -6 >Emitted(110, 14) Source(1, 14) + SourceIndex(5) -7 >Emitted(110, 16) Source(1, 16) + SourceIndex(5) -8 >Emitted(110, 17) Source(1, 17) + SourceIndex(5) +1->Emitted(111, 1) Source(1, 1) + SourceIndex(5) +2 >Emitted(111, 5) Source(1, 5) + SourceIndex(5) +3 >Emitted(111, 6) Source(1, 6) + SourceIndex(5) +4 >Emitted(111, 9) Source(1, 9) + SourceIndex(5) +5 >Emitted(111, 13) Source(1, 13) + SourceIndex(5) +6 >Emitted(111, 14) Source(1, 14) + SourceIndex(5) +7 >Emitted(111, 16) Source(1, 16) + SourceIndex(5) +8 >Emitted(111, 17) Source(1, 17) + SourceIndex(5) --- >>>c.doSomething(); 1-> @@ -2162,12 +2164,12 @@ sourceFile:../../third_part1.ts 4 > doSomething 5 > () 6 > ; -1->Emitted(111, 1) Source(2, 1) + SourceIndex(5) -2 >Emitted(111, 2) Source(2, 2) + SourceIndex(5) -3 >Emitted(111, 3) Source(2, 3) + SourceIndex(5) -4 >Emitted(111, 14) Source(2, 14) + SourceIndex(5) -5 >Emitted(111, 16) Source(2, 16) + SourceIndex(5) -6 >Emitted(111, 17) Source(2, 17) + SourceIndex(5) +1->Emitted(112, 1) Source(2, 1) + SourceIndex(5) +2 >Emitted(112, 2) Source(2, 2) + SourceIndex(5) +3 >Emitted(112, 3) Source(2, 3) + SourceIndex(5) +4 >Emitted(112, 14) Source(2, 14) + SourceIndex(5) +5 >Emitted(112, 16) Source(2, 16) + SourceIndex(5) +6 >Emitted(112, 17) Source(2, 17) + SourceIndex(5) --- >>>//# sourceMappingURL=third-output.js.map @@ -2195,20 +2197,20 @@ sourceFile:../../third_part1.ts }, { "pos": 127, - "end": 3544, + "end": 3592, "kind": "prepend", "data": "../../../2/second-output.js", "texts": [ { "pos": 127, - "end": 3544, + "end": 3592, "kind": "text" } ] }, { - "pos": 3544, - "end": 3580, + "pos": 3592, + "end": 3628, "kind": "text" } ] @@ -2268,9 +2270,9 @@ function f() { } ---------------------------------------------------------------------- -prepend: (127-3544):: ../../../2/second-output.js texts:: 1 +prepend: (127-3592):: ../../../2/second-output.js texts:: 1 >>-------------------------------------------------------------------- -text: (127-3544) +text: (127-3592) var N; (function (N) { function f() { @@ -2281,8 +2283,9 @@ var N; var normalC = /** @class */ (function () { /*@internal*/ function normalC() { } - /*@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /*@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /*@internal*/ get: function () { return 10; }, /*@internal*/ set: function (val) { }, enumerable: false, @@ -2375,7 +2378,7 @@ var C = /** @class */ (function () { }()); ---------------------------------------------------------------------- -text: (3544-3580) +text: (3592-3628) var c = new C(); c.doSomething(); diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal.js index e6dcbd14cbc63..ceb14d3c7e193 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/stripInternal.js @@ -332,8 +332,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -429,7 +430,7 @@ c.doSomething(); //# sourceMappingURL=third-output.js.map //// [/src/third/thirdjs/output/third-output.js.map] -{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} //// [/src/third/thirdjs/output/third-output.js.map.baseline.txt] =================================================================== @@ -758,13 +759,14 @@ sourceFile:../../../second/second_part1.ts >>> } 1->^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1->constructor() { 2 > } 1->Emitted(17, 5) Source(14, 35) + SourceIndex(3) 2 >Emitted(17, 6) Source(14, 36) + SourceIndex(3) --- ->>> normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> normalC_prototype.method = function () { }; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^ @@ -778,13 +780,13 @@ sourceFile:../../../second/second_part1.ts 3 > 4 > method() { 5 > } -1->Emitted(18, 5) Source(16, 19) + SourceIndex(3) -2 >Emitted(18, 29) Source(16, 25) + SourceIndex(3) -3 >Emitted(18, 32) Source(16, 19) + SourceIndex(3) -4 >Emitted(18, 46) Source(16, 30) + SourceIndex(3) -5 >Emitted(18, 47) Source(16, 31) + SourceIndex(3) +1->Emitted(19, 5) Source(16, 19) + SourceIndex(3) +2 >Emitted(19, 29) Source(16, 25) + SourceIndex(3) +3 >Emitted(19, 32) Source(16, 19) + SourceIndex(3) +4 >Emitted(19, 46) Source(16, 30) + SourceIndex(3) +5 >Emitted(19, 47) Source(16, 31) + SourceIndex(3) --- ->>> Object.defineProperty(normalC.prototype, "c", { +>>> Object.defineProperty(normalC_prototype, "c", { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -792,9 +794,9 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ 2 > get 3 > c -1->Emitted(19, 5) Source(17, 19) + SourceIndex(3) -2 >Emitted(19, 27) Source(17, 23) + SourceIndex(3) -3 >Emitted(19, 49) Source(17, 24) + SourceIndex(3) +1->Emitted(20, 5) Source(17, 19) + SourceIndex(3) +2 >Emitted(20, 27) Source(17, 23) + SourceIndex(3) +3 >Emitted(20, 49) Source(17, 24) + SourceIndex(3) --- >>> get: function () { return 10; }, 1 >^^^^^^^^^^^^^ @@ -811,13 +813,13 @@ sourceFile:../../../second/second_part1.ts 5 > ; 6 > 7 > } -1 >Emitted(20, 14) Source(17, 19) + SourceIndex(3) -2 >Emitted(20, 28) Source(17, 29) + SourceIndex(3) -3 >Emitted(20, 35) Source(17, 36) + SourceIndex(3) -4 >Emitted(20, 37) Source(17, 38) + SourceIndex(3) -5 >Emitted(20, 38) Source(17, 39) + SourceIndex(3) -6 >Emitted(20, 39) Source(17, 40) + SourceIndex(3) -7 >Emitted(20, 40) Source(17, 41) + SourceIndex(3) +1 >Emitted(21, 14) Source(17, 19) + SourceIndex(3) +2 >Emitted(21, 28) Source(17, 29) + SourceIndex(3) +3 >Emitted(21, 35) Source(17, 36) + SourceIndex(3) +4 >Emitted(21, 37) Source(17, 38) + SourceIndex(3) +5 >Emitted(21, 38) Source(17, 39) + SourceIndex(3) +6 >Emitted(21, 39) Source(17, 40) + SourceIndex(3) +7 >Emitted(21, 40) Source(17, 41) + SourceIndex(3) --- >>> set: function (val) { }, 1 >^^^^^^^^^^^^^ @@ -831,11 +833,11 @@ sourceFile:../../../second/second_part1.ts 3 > val: number 4 > ) { 5 > } -1 >Emitted(21, 14) Source(18, 19) + SourceIndex(3) -2 >Emitted(21, 24) Source(18, 25) + SourceIndex(3) -3 >Emitted(21, 27) Source(18, 36) + SourceIndex(3) -4 >Emitted(21, 31) Source(18, 40) + SourceIndex(3) -5 >Emitted(21, 32) Source(18, 41) + SourceIndex(3) +1 >Emitted(22, 14) Source(18, 19) + SourceIndex(3) +2 >Emitted(22, 24) Source(18, 25) + SourceIndex(3) +3 >Emitted(22, 27) Source(18, 36) + SourceIndex(3) +4 >Emitted(22, 31) Source(18, 40) + SourceIndex(3) +5 >Emitted(22, 32) Source(18, 41) + SourceIndex(3) --- >>> enumerable: false, >>> configurable: true @@ -843,7 +845,7 @@ sourceFile:../../../second/second_part1.ts 1 >^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(24, 8) Source(17, 41) + SourceIndex(3) +1 >Emitted(25, 8) Source(17, 41) + SourceIndex(3) --- >>> return normalC; 1->^^^^ @@ -852,8 +854,8 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ set c(val: number) { } > 2 > } -1->Emitted(25, 5) Source(19, 1) + SourceIndex(3) -2 >Emitted(25, 19) Source(19, 2) + SourceIndex(3) +1->Emitted(26, 5) Source(19, 1) + SourceIndex(3) +2 >Emitted(26, 19) Source(19, 2) + SourceIndex(3) --- >>>}()); 1 > @@ -871,10 +873,10 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ get c() { return 10; } > /*@internal*/ set c(val: number) { } > } -1 >Emitted(26, 1) Source(19, 1) + SourceIndex(3) -2 >Emitted(26, 2) Source(19, 2) + SourceIndex(3) -3 >Emitted(26, 2) Source(13, 1) + SourceIndex(3) -4 >Emitted(26, 6) Source(19, 2) + SourceIndex(3) +1 >Emitted(27, 1) Source(19, 1) + SourceIndex(3) +2 >Emitted(27, 2) Source(19, 2) + SourceIndex(3) +3 >Emitted(27, 2) Source(13, 1) + SourceIndex(3) +4 >Emitted(27, 6) Source(19, 2) + SourceIndex(3) --- >>>var normalN; 1-> @@ -896,10 +898,10 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(27, 5) Source(20, 11) + SourceIndex(3) -3 >Emitted(27, 12) Source(20, 18) + SourceIndex(3) -4 >Emitted(27, 13) Source(29, 2) + SourceIndex(3) +1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(28, 5) Source(20, 11) + SourceIndex(3) +3 >Emitted(28, 12) Source(20, 18) + SourceIndex(3) +4 >Emitted(28, 13) Source(29, 2) + SourceIndex(3) --- >>>(function (normalN) { 1-> @@ -909,22 +911,22 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > normalN -1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(28, 12) Source(20, 11) + SourceIndex(3) -3 >Emitted(28, 19) Source(20, 18) + SourceIndex(3) +1->Emitted(29, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(29, 12) Source(20, 11) + SourceIndex(3) +3 >Emitted(29, 19) Source(20, 18) + SourceIndex(3) --- >>> var C = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { > /*@internal*/ -1->Emitted(29, 5) Source(21, 19) + SourceIndex(3) +1->Emitted(30, 5) Source(21, 19) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(30, 9) Source(21, 19) + SourceIndex(3) +1->Emitted(31, 9) Source(21, 19) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -932,16 +934,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(31, 9) Source(21, 36) + SourceIndex(3) -2 >Emitted(31, 10) Source(21, 37) + SourceIndex(3) +1->Emitted(32, 9) Source(21, 36) + SourceIndex(3) +2 >Emitted(32, 10) Source(21, 37) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(32, 9) Source(21, 36) + SourceIndex(3) -2 >Emitted(32, 17) Source(21, 37) + SourceIndex(3) +1->Emitted(33, 9) Source(21, 36) + SourceIndex(3) +2 >Emitted(33, 17) Source(21, 37) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -953,10 +955,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(33, 5) Source(21, 36) + SourceIndex(3) -2 >Emitted(33, 6) Source(21, 37) + SourceIndex(3) -3 >Emitted(33, 6) Source(21, 19) + SourceIndex(3) -4 >Emitted(33, 10) Source(21, 37) + SourceIndex(3) +1 >Emitted(34, 5) Source(21, 36) + SourceIndex(3) +2 >Emitted(34, 6) Source(21, 37) + SourceIndex(3) +3 >Emitted(34, 6) Source(21, 19) + SourceIndex(3) +4 >Emitted(34, 10) Source(21, 37) + SourceIndex(3) --- >>> normalN.C = C; 1->^^^^ @@ -968,10 +970,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > { } 4 > -1->Emitted(34, 5) Source(21, 32) + SourceIndex(3) -2 >Emitted(34, 14) Source(21, 33) + SourceIndex(3) -3 >Emitted(34, 18) Source(21, 37) + SourceIndex(3) -4 >Emitted(34, 19) Source(21, 37) + SourceIndex(3) +1->Emitted(35, 5) Source(21, 32) + SourceIndex(3) +2 >Emitted(35, 14) Source(21, 33) + SourceIndex(3) +3 >Emitted(35, 18) Source(21, 37) + SourceIndex(3) +4 >Emitted(35, 19) Source(21, 37) + SourceIndex(3) --- >>> function foo() { } 1->^^^^ @@ -986,11 +988,11 @@ sourceFile:../../../second/second_part1.ts 3 > foo 4 > () { 5 > } -1->Emitted(35, 5) Source(22, 19) + SourceIndex(3) -2 >Emitted(35, 14) Source(22, 35) + SourceIndex(3) -3 >Emitted(35, 17) Source(22, 38) + SourceIndex(3) -4 >Emitted(35, 22) Source(22, 42) + SourceIndex(3) -5 >Emitted(35, 23) Source(22, 43) + SourceIndex(3) +1->Emitted(36, 5) Source(22, 19) + SourceIndex(3) +2 >Emitted(36, 14) Source(22, 35) + SourceIndex(3) +3 >Emitted(36, 17) Source(22, 38) + SourceIndex(3) +4 >Emitted(36, 22) Source(22, 42) + SourceIndex(3) +5 >Emitted(36, 23) Source(22, 43) + SourceIndex(3) --- >>> normalN.foo = foo; 1->^^^^ @@ -1002,10 +1004,10 @@ sourceFile:../../../second/second_part1.ts 2 > foo 3 > () {} 4 > -1->Emitted(36, 5) Source(22, 35) + SourceIndex(3) -2 >Emitted(36, 16) Source(22, 38) + SourceIndex(3) -3 >Emitted(36, 22) Source(22, 43) + SourceIndex(3) -4 >Emitted(36, 23) Source(22, 43) + SourceIndex(3) +1->Emitted(37, 5) Source(22, 35) + SourceIndex(3) +2 >Emitted(37, 16) Source(22, 38) + SourceIndex(3) +3 >Emitted(37, 22) Source(22, 43) + SourceIndex(3) +4 >Emitted(37, 23) Source(22, 43) + SourceIndex(3) --- >>> var someNamespace; 1->^^^^ @@ -1018,10 +1020,10 @@ sourceFile:../../../second/second_part1.ts 2 > export namespace 3 > someNamespace 4 > { export class C {} } -1->Emitted(37, 5) Source(23, 19) + SourceIndex(3) -2 >Emitted(37, 9) Source(23, 36) + SourceIndex(3) -3 >Emitted(37, 22) Source(23, 49) + SourceIndex(3) -4 >Emitted(37, 23) Source(23, 71) + SourceIndex(3) +1->Emitted(38, 5) Source(23, 19) + SourceIndex(3) +2 >Emitted(38, 9) Source(23, 36) + SourceIndex(3) +3 >Emitted(38, 22) Source(23, 49) + SourceIndex(3) +4 >Emitted(38, 23) Source(23, 71) + SourceIndex(3) --- >>> (function (someNamespace) { 1->^^^^ @@ -1031,21 +1033,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > export namespace 3 > someNamespace -1->Emitted(38, 5) Source(23, 19) + SourceIndex(3) -2 >Emitted(38, 16) Source(23, 36) + SourceIndex(3) -3 >Emitted(38, 29) Source(23, 49) + SourceIndex(3) +1->Emitted(39, 5) Source(23, 19) + SourceIndex(3) +2 >Emitted(39, 16) Source(23, 36) + SourceIndex(3) +3 >Emitted(39, 29) Source(23, 49) + SourceIndex(3) --- >>> var C = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(39, 9) Source(23, 52) + SourceIndex(3) +1->Emitted(40, 9) Source(23, 52) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(40, 13) Source(23, 52) + SourceIndex(3) +1->Emitted(41, 13) Source(23, 52) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -1053,16 +1055,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(41, 13) Source(23, 68) + SourceIndex(3) -2 >Emitted(41, 14) Source(23, 69) + SourceIndex(3) +1->Emitted(42, 13) Source(23, 68) + SourceIndex(3) +2 >Emitted(42, 14) Source(23, 69) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(42, 13) Source(23, 68) + SourceIndex(3) -2 >Emitted(42, 21) Source(23, 69) + SourceIndex(3) +1->Emitted(43, 13) Source(23, 68) + SourceIndex(3) +2 >Emitted(43, 21) Source(23, 69) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -1074,10 +1076,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(43, 9) Source(23, 68) + SourceIndex(3) -2 >Emitted(43, 10) Source(23, 69) + SourceIndex(3) -3 >Emitted(43, 10) Source(23, 52) + SourceIndex(3) -4 >Emitted(43, 14) Source(23, 69) + SourceIndex(3) +1 >Emitted(44, 9) Source(23, 68) + SourceIndex(3) +2 >Emitted(44, 10) Source(23, 69) + SourceIndex(3) +3 >Emitted(44, 10) Source(23, 52) + SourceIndex(3) +4 >Emitted(44, 14) Source(23, 69) + SourceIndex(3) --- >>> someNamespace.C = C; 1->^^^^^^^^ @@ -1089,10 +1091,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > {} 4 > -1->Emitted(44, 9) Source(23, 65) + SourceIndex(3) -2 >Emitted(44, 24) Source(23, 66) + SourceIndex(3) -3 >Emitted(44, 28) Source(23, 69) + SourceIndex(3) -4 >Emitted(44, 29) Source(23, 69) + SourceIndex(3) +1->Emitted(45, 9) Source(23, 65) + SourceIndex(3) +2 >Emitted(45, 24) Source(23, 66) + SourceIndex(3) +3 >Emitted(45, 28) Source(23, 69) + SourceIndex(3) +4 >Emitted(45, 29) Source(23, 69) + SourceIndex(3) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^ @@ -1113,15 +1115,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(45, 5) Source(23, 70) + SourceIndex(3) -2 >Emitted(45, 6) Source(23, 71) + SourceIndex(3) -3 >Emitted(45, 8) Source(23, 36) + SourceIndex(3) -4 >Emitted(45, 21) Source(23, 49) + SourceIndex(3) -5 >Emitted(45, 24) Source(23, 36) + SourceIndex(3) -6 >Emitted(45, 45) Source(23, 49) + SourceIndex(3) -7 >Emitted(45, 50) Source(23, 36) + SourceIndex(3) -8 >Emitted(45, 71) Source(23, 49) + SourceIndex(3) -9 >Emitted(45, 79) Source(23, 71) + SourceIndex(3) +1->Emitted(46, 5) Source(23, 70) + SourceIndex(3) +2 >Emitted(46, 6) Source(23, 71) + SourceIndex(3) +3 >Emitted(46, 8) Source(23, 36) + SourceIndex(3) +4 >Emitted(46, 21) Source(23, 49) + SourceIndex(3) +5 >Emitted(46, 24) Source(23, 36) + SourceIndex(3) +6 >Emitted(46, 45) Source(23, 49) + SourceIndex(3) +7 >Emitted(46, 50) Source(23, 36) + SourceIndex(3) +8 >Emitted(46, 71) Source(23, 49) + SourceIndex(3) +9 >Emitted(46, 79) Source(23, 71) + SourceIndex(3) --- >>> var someOther; 1 >^^^^ @@ -1134,10 +1136,10 @@ sourceFile:../../../second/second_part1.ts 2 > export namespace 3 > someOther 4 > .something { export class someClass {} } -1 >Emitted(46, 5) Source(24, 19) + SourceIndex(3) -2 >Emitted(46, 9) Source(24, 36) + SourceIndex(3) -3 >Emitted(46, 18) Source(24, 45) + SourceIndex(3) -4 >Emitted(46, 19) Source(24, 85) + SourceIndex(3) +1 >Emitted(47, 5) Source(24, 19) + SourceIndex(3) +2 >Emitted(47, 9) Source(24, 36) + SourceIndex(3) +3 >Emitted(47, 18) Source(24, 45) + SourceIndex(3) +4 >Emitted(47, 19) Source(24, 85) + SourceIndex(3) --- >>> (function (someOther) { 1->^^^^ @@ -1146,9 +1148,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > export namespace 3 > someOther -1->Emitted(47, 5) Source(24, 19) + SourceIndex(3) -2 >Emitted(47, 16) Source(24, 36) + SourceIndex(3) -3 >Emitted(47, 25) Source(24, 45) + SourceIndex(3) +1->Emitted(48, 5) Source(24, 19) + SourceIndex(3) +2 >Emitted(48, 16) Source(24, 36) + SourceIndex(3) +3 >Emitted(48, 25) Source(24, 45) + SourceIndex(3) --- >>> var something; 1 >^^^^^^^^ @@ -1160,10 +1162,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(48, 9) Source(24, 46) + SourceIndex(3) -2 >Emitted(48, 13) Source(24, 46) + SourceIndex(3) -3 >Emitted(48, 22) Source(24, 55) + SourceIndex(3) -4 >Emitted(48, 23) Source(24, 85) + SourceIndex(3) +1 >Emitted(49, 9) Source(24, 46) + SourceIndex(3) +2 >Emitted(49, 13) Source(24, 46) + SourceIndex(3) +3 >Emitted(49, 22) Source(24, 55) + SourceIndex(3) +4 >Emitted(49, 23) Source(24, 85) + SourceIndex(3) --- >>> (function (something) { 1->^^^^^^^^ @@ -1173,21 +1175,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(49, 9) Source(24, 46) + SourceIndex(3) -2 >Emitted(49, 20) Source(24, 46) + SourceIndex(3) -3 >Emitted(49, 29) Source(24, 55) + SourceIndex(3) +1->Emitted(50, 9) Source(24, 46) + SourceIndex(3) +2 >Emitted(50, 20) Source(24, 46) + SourceIndex(3) +3 >Emitted(50, 29) Source(24, 55) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(50, 13) Source(24, 58) + SourceIndex(3) +1->Emitted(51, 13) Source(24, 58) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(51, 17) Source(24, 58) + SourceIndex(3) +1->Emitted(52, 17) Source(24, 58) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -1195,16 +1197,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(52, 17) Source(24, 82) + SourceIndex(3) -2 >Emitted(52, 18) Source(24, 83) + SourceIndex(3) +1->Emitted(53, 17) Source(24, 82) + SourceIndex(3) +2 >Emitted(53, 18) Source(24, 83) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(53, 17) Source(24, 82) + SourceIndex(3) -2 >Emitted(53, 33) Source(24, 83) + SourceIndex(3) +1->Emitted(54, 17) Source(24, 82) + SourceIndex(3) +2 >Emitted(54, 33) Source(24, 83) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -1216,10 +1218,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(54, 13) Source(24, 82) + SourceIndex(3) -2 >Emitted(54, 14) Source(24, 83) + SourceIndex(3) -3 >Emitted(54, 14) Source(24, 58) + SourceIndex(3) -4 >Emitted(54, 18) Source(24, 83) + SourceIndex(3) +1 >Emitted(55, 13) Source(24, 82) + SourceIndex(3) +2 >Emitted(55, 14) Source(24, 83) + SourceIndex(3) +3 >Emitted(55, 14) Source(24, 58) + SourceIndex(3) +4 >Emitted(55, 18) Source(24, 83) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -1231,10 +1233,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(55, 13) Source(24, 71) + SourceIndex(3) -2 >Emitted(55, 32) Source(24, 80) + SourceIndex(3) -3 >Emitted(55, 44) Source(24, 83) + SourceIndex(3) -4 >Emitted(55, 45) Source(24, 83) + SourceIndex(3) +1->Emitted(56, 13) Source(24, 71) + SourceIndex(3) +2 >Emitted(56, 32) Source(24, 80) + SourceIndex(3) +3 >Emitted(56, 44) Source(24, 83) + SourceIndex(3) +4 >Emitted(56, 45) Source(24, 83) + SourceIndex(3) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^ @@ -1255,15 +1257,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(56, 9) Source(24, 84) + SourceIndex(3) -2 >Emitted(56, 10) Source(24, 85) + SourceIndex(3) -3 >Emitted(56, 12) Source(24, 46) + SourceIndex(3) -4 >Emitted(56, 21) Source(24, 55) + SourceIndex(3) -5 >Emitted(56, 24) Source(24, 46) + SourceIndex(3) -6 >Emitted(56, 43) Source(24, 55) + SourceIndex(3) -7 >Emitted(56, 48) Source(24, 46) + SourceIndex(3) -8 >Emitted(56, 67) Source(24, 55) + SourceIndex(3) -9 >Emitted(56, 75) Source(24, 85) + SourceIndex(3) +1->Emitted(57, 9) Source(24, 84) + SourceIndex(3) +2 >Emitted(57, 10) Source(24, 85) + SourceIndex(3) +3 >Emitted(57, 12) Source(24, 46) + SourceIndex(3) +4 >Emitted(57, 21) Source(24, 55) + SourceIndex(3) +5 >Emitted(57, 24) Source(24, 46) + SourceIndex(3) +6 >Emitted(57, 43) Source(24, 55) + SourceIndex(3) +7 >Emitted(57, 48) Source(24, 46) + SourceIndex(3) +8 >Emitted(57, 67) Source(24, 55) + SourceIndex(3) +9 >Emitted(57, 75) Source(24, 85) + SourceIndex(3) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^ @@ -1284,15 +1286,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(57, 5) Source(24, 84) + SourceIndex(3) -2 >Emitted(57, 6) Source(24, 85) + SourceIndex(3) -3 >Emitted(57, 8) Source(24, 36) + SourceIndex(3) -4 >Emitted(57, 17) Source(24, 45) + SourceIndex(3) -5 >Emitted(57, 20) Source(24, 36) + SourceIndex(3) -6 >Emitted(57, 37) Source(24, 45) + SourceIndex(3) -7 >Emitted(57, 42) Source(24, 36) + SourceIndex(3) -8 >Emitted(57, 59) Source(24, 45) + SourceIndex(3) -9 >Emitted(57, 67) Source(24, 85) + SourceIndex(3) +1 >Emitted(58, 5) Source(24, 84) + SourceIndex(3) +2 >Emitted(58, 6) Source(24, 85) + SourceIndex(3) +3 >Emitted(58, 8) Source(24, 36) + SourceIndex(3) +4 >Emitted(58, 17) Source(24, 45) + SourceIndex(3) +5 >Emitted(58, 20) Source(24, 36) + SourceIndex(3) +6 >Emitted(58, 37) Source(24, 45) + SourceIndex(3) +7 >Emitted(58, 42) Source(24, 36) + SourceIndex(3) +8 >Emitted(58, 59) Source(24, 45) + SourceIndex(3) +9 >Emitted(58, 67) Source(24, 85) + SourceIndex(3) --- >>> normalN.someImport = someNamespace.C; 1 >^^^^ @@ -1310,13 +1312,13 @@ sourceFile:../../../second/second_part1.ts 5 > . 6 > C 7 > ; -1 >Emitted(58, 5) Source(25, 33) + SourceIndex(3) -2 >Emitted(58, 23) Source(25, 43) + SourceIndex(3) -3 >Emitted(58, 26) Source(25, 46) + SourceIndex(3) -4 >Emitted(58, 39) Source(25, 59) + SourceIndex(3) -5 >Emitted(58, 40) Source(25, 60) + SourceIndex(3) -6 >Emitted(58, 41) Source(25, 61) + SourceIndex(3) -7 >Emitted(58, 42) Source(25, 62) + SourceIndex(3) +1 >Emitted(59, 5) Source(25, 33) + SourceIndex(3) +2 >Emitted(59, 23) Source(25, 43) + SourceIndex(3) +3 >Emitted(59, 26) Source(25, 46) + SourceIndex(3) +4 >Emitted(59, 39) Source(25, 59) + SourceIndex(3) +5 >Emitted(59, 40) Source(25, 60) + SourceIndex(3) +6 >Emitted(59, 41) Source(25, 61) + SourceIndex(3) +7 >Emitted(59, 42) Source(25, 62) + SourceIndex(3) --- >>> normalN.internalConst = 10; 1 >^^^^ @@ -1331,11 +1333,11 @@ sourceFile:../../../second/second_part1.ts 3 > = 4 > 10 5 > ; -1 >Emitted(59, 5) Source(27, 32) + SourceIndex(3) -2 >Emitted(59, 26) Source(27, 45) + SourceIndex(3) -3 >Emitted(59, 29) Source(27, 48) + SourceIndex(3) -4 >Emitted(59, 31) Source(27, 50) + SourceIndex(3) -5 >Emitted(59, 32) Source(27, 51) + SourceIndex(3) +1 >Emitted(60, 5) Source(27, 32) + SourceIndex(3) +2 >Emitted(60, 26) Source(27, 45) + SourceIndex(3) +3 >Emitted(60, 29) Source(27, 48) + SourceIndex(3) +4 >Emitted(60, 31) Source(27, 50) + SourceIndex(3) +5 >Emitted(60, 32) Source(27, 51) + SourceIndex(3) --- >>> var internalEnum; 1 >^^^^ @@ -1346,9 +1348,9 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ 2 > export enum 3 > internalEnum { a, b, c } -1 >Emitted(60, 5) Source(28, 19) + SourceIndex(3) -2 >Emitted(60, 9) Source(28, 31) + SourceIndex(3) -3 >Emitted(60, 21) Source(28, 55) + SourceIndex(3) +1 >Emitted(61, 5) Source(28, 19) + SourceIndex(3) +2 >Emitted(61, 9) Source(28, 31) + SourceIndex(3) +3 >Emitted(61, 21) Source(28, 55) + SourceIndex(3) --- >>> (function (internalEnum) { 1->^^^^ @@ -1358,9 +1360,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > export enum 3 > internalEnum -1->Emitted(61, 5) Source(28, 19) + SourceIndex(3) -2 >Emitted(61, 16) Source(28, 31) + SourceIndex(3) -3 >Emitted(61, 28) Source(28, 43) + SourceIndex(3) +1->Emitted(62, 5) Source(28, 19) + SourceIndex(3) +2 >Emitted(62, 16) Source(28, 31) + SourceIndex(3) +3 >Emitted(62, 28) Source(28, 43) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -1370,9 +1372,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(62, 9) Source(28, 46) + SourceIndex(3) -2 >Emitted(62, 50) Source(28, 47) + SourceIndex(3) -3 >Emitted(62, 51) Source(28, 47) + SourceIndex(3) +1->Emitted(63, 9) Source(28, 46) + SourceIndex(3) +2 >Emitted(63, 50) Source(28, 47) + SourceIndex(3) +3 >Emitted(63, 51) Source(28, 47) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -1382,9 +1384,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(63, 9) Source(28, 49) + SourceIndex(3) -2 >Emitted(63, 50) Source(28, 50) + SourceIndex(3) -3 >Emitted(63, 51) Source(28, 50) + SourceIndex(3) +1->Emitted(64, 9) Source(28, 49) + SourceIndex(3) +2 >Emitted(64, 50) Source(28, 50) + SourceIndex(3) +3 >Emitted(64, 51) Source(28, 50) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -1394,9 +1396,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(64, 9) Source(28, 52) + SourceIndex(3) -2 >Emitted(64, 50) Source(28, 53) + SourceIndex(3) -3 >Emitted(64, 51) Source(28, 53) + SourceIndex(3) +1->Emitted(65, 9) Source(28, 52) + SourceIndex(3) +2 >Emitted(65, 50) Source(28, 53) + SourceIndex(3) +3 >Emitted(65, 51) Source(28, 53) + SourceIndex(3) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^ @@ -1417,15 +1419,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(65, 5) Source(28, 54) + SourceIndex(3) -2 >Emitted(65, 6) Source(28, 55) + SourceIndex(3) -3 >Emitted(65, 8) Source(28, 31) + SourceIndex(3) -4 >Emitted(65, 20) Source(28, 43) + SourceIndex(3) -5 >Emitted(65, 23) Source(28, 31) + SourceIndex(3) -6 >Emitted(65, 43) Source(28, 43) + SourceIndex(3) -7 >Emitted(65, 48) Source(28, 31) + SourceIndex(3) -8 >Emitted(65, 68) Source(28, 43) + SourceIndex(3) -9 >Emitted(65, 76) Source(28, 55) + SourceIndex(3) +1->Emitted(66, 5) Source(28, 54) + SourceIndex(3) +2 >Emitted(66, 6) Source(28, 55) + SourceIndex(3) +3 >Emitted(66, 8) Source(28, 31) + SourceIndex(3) +4 >Emitted(66, 20) Source(28, 43) + SourceIndex(3) +5 >Emitted(66, 23) Source(28, 31) + SourceIndex(3) +6 >Emitted(66, 43) Source(28, 43) + SourceIndex(3) +7 >Emitted(66, 48) Source(28, 31) + SourceIndex(3) +8 >Emitted(66, 68) Source(28, 43) + SourceIndex(3) +9 >Emitted(66, 76) Source(28, 55) + SourceIndex(3) --- >>>})(normalN || (normalN = {})); 1 > @@ -1453,26 +1455,26 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(66, 1) Source(29, 1) + SourceIndex(3) -2 >Emitted(66, 2) Source(29, 2) + SourceIndex(3) -3 >Emitted(66, 4) Source(20, 11) + SourceIndex(3) -4 >Emitted(66, 11) Source(20, 18) + SourceIndex(3) -5 >Emitted(66, 16) Source(20, 11) + SourceIndex(3) -6 >Emitted(66, 23) Source(20, 18) + SourceIndex(3) -7 >Emitted(66, 31) Source(29, 2) + SourceIndex(3) +1 >Emitted(67, 1) Source(29, 1) + SourceIndex(3) +2 >Emitted(67, 2) Source(29, 2) + SourceIndex(3) +3 >Emitted(67, 4) Source(20, 11) + SourceIndex(3) +4 >Emitted(67, 11) Source(20, 18) + SourceIndex(3) +5 >Emitted(67, 16) Source(20, 11) + SourceIndex(3) +6 >Emitted(67, 23) Source(20, 18) + SourceIndex(3) +7 >Emitted(67, 31) Source(29, 2) + SourceIndex(3) --- >>>var internalC = (function () { 1-> 2 >^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> >/*@internal*/ -1->Emitted(67, 1) Source(30, 15) + SourceIndex(3) +1->Emitted(68, 1) Source(30, 15) + SourceIndex(3) --- >>> function internalC() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(68, 5) Source(30, 15) + SourceIndex(3) +1->Emitted(69, 5) Source(30, 15) + SourceIndex(3) --- >>> } 1->^^^^ @@ -1480,16 +1482,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->class internalC { 2 > } -1->Emitted(69, 5) Source(30, 32) + SourceIndex(3) -2 >Emitted(69, 6) Source(30, 33) + SourceIndex(3) +1->Emitted(70, 5) Source(30, 32) + SourceIndex(3) +2 >Emitted(70, 6) Source(30, 33) + SourceIndex(3) --- >>> return internalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(70, 5) Source(30, 32) + SourceIndex(3) -2 >Emitted(70, 21) Source(30, 33) + SourceIndex(3) +1->Emitted(71, 5) Source(30, 32) + SourceIndex(3) +2 >Emitted(71, 21) Source(30, 33) + SourceIndex(3) --- >>>}()); 1 > @@ -1501,10 +1503,10 @@ sourceFile:../../../second/second_part1.ts 2 >} 3 > 4 > class internalC {} -1 >Emitted(71, 1) Source(30, 32) + SourceIndex(3) -2 >Emitted(71, 2) Source(30, 33) + SourceIndex(3) -3 >Emitted(71, 2) Source(30, 15) + SourceIndex(3) -4 >Emitted(71, 6) Source(30, 33) + SourceIndex(3) +1 >Emitted(72, 1) Source(30, 32) + SourceIndex(3) +2 >Emitted(72, 2) Source(30, 33) + SourceIndex(3) +3 >Emitted(72, 2) Source(30, 15) + SourceIndex(3) +4 >Emitted(72, 6) Source(30, 33) + SourceIndex(3) --- >>>function internalfoo() { } 1-> @@ -1518,11 +1520,11 @@ sourceFile:../../../second/second_part1.ts 3 > internalfoo 4 > () { 5 > } -1->Emitted(72, 1) Source(31, 15) + SourceIndex(3) -2 >Emitted(72, 10) Source(31, 24) + SourceIndex(3) -3 >Emitted(72, 21) Source(31, 35) + SourceIndex(3) -4 >Emitted(72, 26) Source(31, 39) + SourceIndex(3) -5 >Emitted(72, 27) Source(31, 40) + SourceIndex(3) +1->Emitted(73, 1) Source(31, 15) + SourceIndex(3) +2 >Emitted(73, 10) Source(31, 24) + SourceIndex(3) +3 >Emitted(73, 21) Source(31, 35) + SourceIndex(3) +4 >Emitted(73, 26) Source(31, 39) + SourceIndex(3) +5 >Emitted(73, 27) Source(31, 40) + SourceIndex(3) --- >>>var internalNamespace; 1 > @@ -1535,10 +1537,10 @@ sourceFile:../../../second/second_part1.ts 2 >namespace 3 > internalNamespace 4 > { export class someClass {} } -1 >Emitted(73, 1) Source(32, 15) + SourceIndex(3) -2 >Emitted(73, 5) Source(32, 25) + SourceIndex(3) -3 >Emitted(73, 22) Source(32, 42) + SourceIndex(3) -4 >Emitted(73, 23) Source(32, 72) + SourceIndex(3) +1 >Emitted(74, 1) Source(32, 15) + SourceIndex(3) +2 >Emitted(74, 5) Source(32, 25) + SourceIndex(3) +3 >Emitted(74, 22) Source(32, 42) + SourceIndex(3) +4 >Emitted(74, 23) Source(32, 72) + SourceIndex(3) --- >>>(function (internalNamespace) { 1-> @@ -1548,21 +1550,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > internalNamespace -1->Emitted(74, 1) Source(32, 15) + SourceIndex(3) -2 >Emitted(74, 12) Source(32, 25) + SourceIndex(3) -3 >Emitted(74, 29) Source(32, 42) + SourceIndex(3) +1->Emitted(75, 1) Source(32, 15) + SourceIndex(3) +2 >Emitted(75, 12) Source(32, 25) + SourceIndex(3) +3 >Emitted(75, 29) Source(32, 42) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(75, 5) Source(32, 45) + SourceIndex(3) +1->Emitted(76, 5) Source(32, 45) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(76, 9) Source(32, 45) + SourceIndex(3) +1->Emitted(77, 9) Source(32, 45) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -1570,16 +1572,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(77, 9) Source(32, 69) + SourceIndex(3) -2 >Emitted(77, 10) Source(32, 70) + SourceIndex(3) +1->Emitted(78, 9) Source(32, 69) + SourceIndex(3) +2 >Emitted(78, 10) Source(32, 70) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(78, 9) Source(32, 69) + SourceIndex(3) -2 >Emitted(78, 25) Source(32, 70) + SourceIndex(3) +1->Emitted(79, 9) Source(32, 69) + SourceIndex(3) +2 >Emitted(79, 25) Source(32, 70) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -1591,10 +1593,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(79, 5) Source(32, 69) + SourceIndex(3) -2 >Emitted(79, 6) Source(32, 70) + SourceIndex(3) -3 >Emitted(79, 6) Source(32, 45) + SourceIndex(3) -4 >Emitted(79, 10) Source(32, 70) + SourceIndex(3) +1 >Emitted(80, 5) Source(32, 69) + SourceIndex(3) +2 >Emitted(80, 6) Source(32, 70) + SourceIndex(3) +3 >Emitted(80, 6) Source(32, 45) + SourceIndex(3) +4 >Emitted(80, 10) Source(32, 70) + SourceIndex(3) --- >>> internalNamespace.someClass = someClass; 1->^^^^ @@ -1606,10 +1608,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(80, 5) Source(32, 58) + SourceIndex(3) -2 >Emitted(80, 32) Source(32, 67) + SourceIndex(3) -3 >Emitted(80, 44) Source(32, 70) + SourceIndex(3) -4 >Emitted(80, 45) Source(32, 70) + SourceIndex(3) +1->Emitted(81, 5) Source(32, 58) + SourceIndex(3) +2 >Emitted(81, 32) Source(32, 67) + SourceIndex(3) +3 >Emitted(81, 44) Source(32, 70) + SourceIndex(3) +4 >Emitted(81, 45) Source(32, 70) + SourceIndex(3) --- >>>})(internalNamespace || (internalNamespace = {})); 1-> @@ -1626,13 +1628,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalNamespace 7 > { export class someClass {} } -1->Emitted(81, 1) Source(32, 71) + SourceIndex(3) -2 >Emitted(81, 2) Source(32, 72) + SourceIndex(3) -3 >Emitted(81, 4) Source(32, 25) + SourceIndex(3) -4 >Emitted(81, 21) Source(32, 42) + SourceIndex(3) -5 >Emitted(81, 26) Source(32, 25) + SourceIndex(3) -6 >Emitted(81, 43) Source(32, 42) + SourceIndex(3) -7 >Emitted(81, 51) Source(32, 72) + SourceIndex(3) +1->Emitted(82, 1) Source(32, 71) + SourceIndex(3) +2 >Emitted(82, 2) Source(32, 72) + SourceIndex(3) +3 >Emitted(82, 4) Source(32, 25) + SourceIndex(3) +4 >Emitted(82, 21) Source(32, 42) + SourceIndex(3) +5 >Emitted(82, 26) Source(32, 25) + SourceIndex(3) +6 >Emitted(82, 43) Source(32, 42) + SourceIndex(3) +7 >Emitted(82, 51) Source(32, 72) + SourceIndex(3) --- >>>var internalOther; 1 > @@ -1645,10 +1647,10 @@ sourceFile:../../../second/second_part1.ts 2 >namespace 3 > internalOther 4 > .something { export class someClass {} } -1 >Emitted(82, 1) Source(33, 15) + SourceIndex(3) -2 >Emitted(82, 5) Source(33, 25) + SourceIndex(3) -3 >Emitted(82, 18) Source(33, 38) + SourceIndex(3) -4 >Emitted(82, 19) Source(33, 78) + SourceIndex(3) +1 >Emitted(83, 1) Source(33, 15) + SourceIndex(3) +2 >Emitted(83, 5) Source(33, 25) + SourceIndex(3) +3 >Emitted(83, 18) Source(33, 38) + SourceIndex(3) +4 >Emitted(83, 19) Source(33, 78) + SourceIndex(3) --- >>>(function (internalOther) { 1-> @@ -1657,9 +1659,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > internalOther -1->Emitted(83, 1) Source(33, 15) + SourceIndex(3) -2 >Emitted(83, 12) Source(33, 25) + SourceIndex(3) -3 >Emitted(83, 25) Source(33, 38) + SourceIndex(3) +1->Emitted(84, 1) Source(33, 15) + SourceIndex(3) +2 >Emitted(84, 12) Source(33, 25) + SourceIndex(3) +3 >Emitted(84, 25) Source(33, 38) + SourceIndex(3) --- >>> var something; 1 >^^^^ @@ -1671,10 +1673,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(84, 5) Source(33, 39) + SourceIndex(3) -2 >Emitted(84, 9) Source(33, 39) + SourceIndex(3) -3 >Emitted(84, 18) Source(33, 48) + SourceIndex(3) -4 >Emitted(84, 19) Source(33, 78) + SourceIndex(3) +1 >Emitted(85, 5) Source(33, 39) + SourceIndex(3) +2 >Emitted(85, 9) Source(33, 39) + SourceIndex(3) +3 >Emitted(85, 18) Source(33, 48) + SourceIndex(3) +4 >Emitted(85, 19) Source(33, 78) + SourceIndex(3) --- >>> (function (something) { 1->^^^^ @@ -1684,21 +1686,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(85, 5) Source(33, 39) + SourceIndex(3) -2 >Emitted(85, 16) Source(33, 39) + SourceIndex(3) -3 >Emitted(85, 25) Source(33, 48) + SourceIndex(3) +1->Emitted(86, 5) Source(33, 39) + SourceIndex(3) +2 >Emitted(86, 16) Source(33, 39) + SourceIndex(3) +3 >Emitted(86, 25) Source(33, 48) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(86, 9) Source(33, 51) + SourceIndex(3) +1->Emitted(87, 9) Source(33, 51) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(87, 13) Source(33, 51) + SourceIndex(3) +1->Emitted(88, 13) Source(33, 51) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -1706,16 +1708,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(88, 13) Source(33, 75) + SourceIndex(3) -2 >Emitted(88, 14) Source(33, 76) + SourceIndex(3) +1->Emitted(89, 13) Source(33, 75) + SourceIndex(3) +2 >Emitted(89, 14) Source(33, 76) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(89, 13) Source(33, 75) + SourceIndex(3) -2 >Emitted(89, 29) Source(33, 76) + SourceIndex(3) +1->Emitted(90, 13) Source(33, 75) + SourceIndex(3) +2 >Emitted(90, 29) Source(33, 76) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -1727,10 +1729,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(90, 9) Source(33, 75) + SourceIndex(3) -2 >Emitted(90, 10) Source(33, 76) + SourceIndex(3) -3 >Emitted(90, 10) Source(33, 51) + SourceIndex(3) -4 >Emitted(90, 14) Source(33, 76) + SourceIndex(3) +1 >Emitted(91, 9) Source(33, 75) + SourceIndex(3) +2 >Emitted(91, 10) Source(33, 76) + SourceIndex(3) +3 >Emitted(91, 10) Source(33, 51) + SourceIndex(3) +4 >Emitted(91, 14) Source(33, 76) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^ @@ -1742,10 +1744,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(91, 9) Source(33, 64) + SourceIndex(3) -2 >Emitted(91, 28) Source(33, 73) + SourceIndex(3) -3 >Emitted(91, 40) Source(33, 76) + SourceIndex(3) -4 >Emitted(91, 41) Source(33, 76) + SourceIndex(3) +1->Emitted(92, 9) Source(33, 64) + SourceIndex(3) +2 >Emitted(92, 28) Source(33, 73) + SourceIndex(3) +3 >Emitted(92, 40) Source(33, 76) + SourceIndex(3) +4 >Emitted(92, 41) Source(33, 76) + SourceIndex(3) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^ @@ -1766,15 +1768,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(92, 5) Source(33, 77) + SourceIndex(3) -2 >Emitted(92, 6) Source(33, 78) + SourceIndex(3) -3 >Emitted(92, 8) Source(33, 39) + SourceIndex(3) -4 >Emitted(92, 17) Source(33, 48) + SourceIndex(3) -5 >Emitted(92, 20) Source(33, 39) + SourceIndex(3) -6 >Emitted(92, 43) Source(33, 48) + SourceIndex(3) -7 >Emitted(92, 48) Source(33, 39) + SourceIndex(3) -8 >Emitted(92, 71) Source(33, 48) + SourceIndex(3) -9 >Emitted(92, 79) Source(33, 78) + SourceIndex(3) +1->Emitted(93, 5) Source(33, 77) + SourceIndex(3) +2 >Emitted(93, 6) Source(33, 78) + SourceIndex(3) +3 >Emitted(93, 8) Source(33, 39) + SourceIndex(3) +4 >Emitted(93, 17) Source(33, 48) + SourceIndex(3) +5 >Emitted(93, 20) Source(33, 39) + SourceIndex(3) +6 >Emitted(93, 43) Source(33, 48) + SourceIndex(3) +7 >Emitted(93, 48) Source(33, 39) + SourceIndex(3) +8 >Emitted(93, 71) Source(33, 48) + SourceIndex(3) +9 >Emitted(93, 79) Source(33, 78) + SourceIndex(3) --- >>>})(internalOther || (internalOther = {})); 1 > @@ -1792,13 +1794,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalOther 7 > .something { export class someClass {} } -1 >Emitted(93, 1) Source(33, 77) + SourceIndex(3) -2 >Emitted(93, 2) Source(33, 78) + SourceIndex(3) -3 >Emitted(93, 4) Source(33, 25) + SourceIndex(3) -4 >Emitted(93, 17) Source(33, 38) + SourceIndex(3) -5 >Emitted(93, 22) Source(33, 25) + SourceIndex(3) -6 >Emitted(93, 35) Source(33, 38) + SourceIndex(3) -7 >Emitted(93, 43) Source(33, 78) + SourceIndex(3) +1 >Emitted(94, 1) Source(33, 77) + SourceIndex(3) +2 >Emitted(94, 2) Source(33, 78) + SourceIndex(3) +3 >Emitted(94, 4) Source(33, 25) + SourceIndex(3) +4 >Emitted(94, 17) Source(33, 38) + SourceIndex(3) +5 >Emitted(94, 22) Source(33, 25) + SourceIndex(3) +6 >Emitted(94, 35) Source(33, 38) + SourceIndex(3) +7 >Emitted(94, 43) Source(33, 78) + SourceIndex(3) --- >>>var internalImport = internalNamespace.someClass; 1-> @@ -1818,14 +1820,14 @@ sourceFile:../../../second/second_part1.ts 6 > . 7 > someClass 8 > ; -1->Emitted(94, 1) Source(34, 15) + SourceIndex(3) -2 >Emitted(94, 5) Source(34, 22) + SourceIndex(3) -3 >Emitted(94, 19) Source(34, 36) + SourceIndex(3) -4 >Emitted(94, 22) Source(34, 39) + SourceIndex(3) -5 >Emitted(94, 39) Source(34, 56) + SourceIndex(3) -6 >Emitted(94, 40) Source(34, 57) + SourceIndex(3) -7 >Emitted(94, 49) Source(34, 66) + SourceIndex(3) -8 >Emitted(94, 50) Source(34, 67) + SourceIndex(3) +1->Emitted(95, 1) Source(34, 15) + SourceIndex(3) +2 >Emitted(95, 5) Source(34, 22) + SourceIndex(3) +3 >Emitted(95, 19) Source(34, 36) + SourceIndex(3) +4 >Emitted(95, 22) Source(34, 39) + SourceIndex(3) +5 >Emitted(95, 39) Source(34, 56) + SourceIndex(3) +6 >Emitted(95, 40) Source(34, 57) + SourceIndex(3) +7 >Emitted(95, 49) Source(34, 66) + SourceIndex(3) +8 >Emitted(95, 50) Source(34, 67) + SourceIndex(3) --- >>>var internalConst = 10; 1 > @@ -1842,12 +1844,12 @@ sourceFile:../../../second/second_part1.ts 4 > = 5 > 10 6 > ; -1 >Emitted(95, 1) Source(36, 15) + SourceIndex(3) -2 >Emitted(95, 5) Source(36, 21) + SourceIndex(3) -3 >Emitted(95, 18) Source(36, 34) + SourceIndex(3) -4 >Emitted(95, 21) Source(36, 37) + SourceIndex(3) -5 >Emitted(95, 23) Source(36, 39) + SourceIndex(3) -6 >Emitted(95, 24) Source(36, 40) + SourceIndex(3) +1 >Emitted(96, 1) Source(36, 15) + SourceIndex(3) +2 >Emitted(96, 5) Source(36, 21) + SourceIndex(3) +3 >Emitted(96, 18) Source(36, 34) + SourceIndex(3) +4 >Emitted(96, 21) Source(36, 37) + SourceIndex(3) +5 >Emitted(96, 23) Source(36, 39) + SourceIndex(3) +6 >Emitted(96, 24) Source(36, 40) + SourceIndex(3) --- >>>var internalEnum; 1 > @@ -1858,9 +1860,9 @@ sourceFile:../../../second/second_part1.ts >/*@internal*/ 2 >enum 3 > internalEnum { a, b, c } -1 >Emitted(96, 1) Source(37, 15) + SourceIndex(3) -2 >Emitted(96, 5) Source(37, 20) + SourceIndex(3) -3 >Emitted(96, 17) Source(37, 44) + SourceIndex(3) +1 >Emitted(97, 1) Source(37, 15) + SourceIndex(3) +2 >Emitted(97, 5) Source(37, 20) + SourceIndex(3) +3 >Emitted(97, 17) Source(37, 44) + SourceIndex(3) --- >>>(function (internalEnum) { 1-> @@ -1870,9 +1872,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >enum 3 > internalEnum -1->Emitted(97, 1) Source(37, 15) + SourceIndex(3) -2 >Emitted(97, 12) Source(37, 20) + SourceIndex(3) -3 >Emitted(97, 24) Source(37, 32) + SourceIndex(3) +1->Emitted(98, 1) Source(37, 15) + SourceIndex(3) +2 >Emitted(98, 12) Source(37, 20) + SourceIndex(3) +3 >Emitted(98, 24) Source(37, 32) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^ @@ -1882,9 +1884,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(98, 5) Source(37, 35) + SourceIndex(3) -2 >Emitted(98, 46) Source(37, 36) + SourceIndex(3) -3 >Emitted(98, 47) Source(37, 36) + SourceIndex(3) +1->Emitted(99, 5) Source(37, 35) + SourceIndex(3) +2 >Emitted(99, 46) Source(37, 36) + SourceIndex(3) +3 >Emitted(99, 47) Source(37, 36) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^ @@ -1894,9 +1896,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(99, 5) Source(37, 38) + SourceIndex(3) -2 >Emitted(99, 46) Source(37, 39) + SourceIndex(3) -3 >Emitted(99, 47) Source(37, 39) + SourceIndex(3) +1->Emitted(100, 5) Source(37, 38) + SourceIndex(3) +2 >Emitted(100, 46) Source(37, 39) + SourceIndex(3) +3 >Emitted(100, 47) Source(37, 39) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^ @@ -1905,9 +1907,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(100, 5) Source(37, 41) + SourceIndex(3) -2 >Emitted(100, 46) Source(37, 42) + SourceIndex(3) -3 >Emitted(100, 47) Source(37, 42) + SourceIndex(3) +1->Emitted(101, 5) Source(37, 41) + SourceIndex(3) +2 >Emitted(101, 46) Source(37, 42) + SourceIndex(3) +3 >Emitted(101, 47) Source(37, 42) + SourceIndex(3) --- >>>})(internalEnum || (internalEnum = {})); 1 > @@ -1924,13 +1926,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalEnum 7 > { a, b, c } -1 >Emitted(101, 1) Source(37, 43) + SourceIndex(3) -2 >Emitted(101, 2) Source(37, 44) + SourceIndex(3) -3 >Emitted(101, 4) Source(37, 20) + SourceIndex(3) -4 >Emitted(101, 16) Source(37, 32) + SourceIndex(3) -5 >Emitted(101, 21) Source(37, 20) + SourceIndex(3) -6 >Emitted(101, 33) Source(37, 32) + SourceIndex(3) -7 >Emitted(101, 41) Source(37, 44) + SourceIndex(3) +1 >Emitted(102, 1) Source(37, 43) + SourceIndex(3) +2 >Emitted(102, 2) Source(37, 44) + SourceIndex(3) +3 >Emitted(102, 4) Source(37, 20) + SourceIndex(3) +4 >Emitted(102, 16) Source(37, 32) + SourceIndex(3) +5 >Emitted(102, 21) Source(37, 20) + SourceIndex(3) +6 >Emitted(102, 33) Source(37, 32) + SourceIndex(3) +7 >Emitted(102, 41) Source(37, 44) + SourceIndex(3) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -1940,13 +1942,13 @@ sourceFile:../../../second/second_part2.ts 1 > 2 >^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(102, 1) Source(1, 1) + SourceIndex(4) +1 >Emitted(103, 1) Source(1, 1) + SourceIndex(4) --- >>> function C() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(103, 5) Source(1, 1) + SourceIndex(4) +1->Emitted(104, 5) Source(1, 1) + SourceIndex(4) --- >>> } 1->^^^^ @@ -1958,8 +1960,8 @@ sourceFile:../../../second/second_part2.ts > } > 2 > } -1->Emitted(104, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(104, 6) Source(5, 2) + SourceIndex(4) +1->Emitted(105, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(105, 6) Source(5, 2) + SourceIndex(4) --- >>> C.prototype.doSomething = function () { 1->^^^^ @@ -1969,9 +1971,9 @@ sourceFile:../../../second/second_part2.ts 1-> 2 > doSomething 3 > -1->Emitted(105, 5) Source(2, 5) + SourceIndex(4) -2 >Emitted(105, 28) Source(2, 16) + SourceIndex(4) -3 >Emitted(105, 31) Source(2, 5) + SourceIndex(4) +1->Emitted(106, 5) Source(2, 5) + SourceIndex(4) +2 >Emitted(106, 28) Source(2, 16) + SourceIndex(4) +3 >Emitted(106, 31) Source(2, 5) + SourceIndex(4) --- >>> console.log("something got done"); 1->^^^^^^^^ @@ -1991,14 +1993,14 @@ sourceFile:../../../second/second_part2.ts 6 > "something got done" 7 > ) 8 > ; -1->Emitted(106, 9) Source(3, 9) + SourceIndex(4) -2 >Emitted(106, 16) Source(3, 16) + SourceIndex(4) -3 >Emitted(106, 17) Source(3, 17) + SourceIndex(4) -4 >Emitted(106, 20) Source(3, 20) + SourceIndex(4) -5 >Emitted(106, 21) Source(3, 21) + SourceIndex(4) -6 >Emitted(106, 41) Source(3, 41) + SourceIndex(4) -7 >Emitted(106, 42) Source(3, 42) + SourceIndex(4) -8 >Emitted(106, 43) Source(3, 43) + SourceIndex(4) +1->Emitted(107, 9) Source(3, 9) + SourceIndex(4) +2 >Emitted(107, 16) Source(3, 16) + SourceIndex(4) +3 >Emitted(107, 17) Source(3, 17) + SourceIndex(4) +4 >Emitted(107, 20) Source(3, 20) + SourceIndex(4) +5 >Emitted(107, 21) Source(3, 21) + SourceIndex(4) +6 >Emitted(107, 41) Source(3, 41) + SourceIndex(4) +7 >Emitted(107, 42) Source(3, 42) + SourceIndex(4) +8 >Emitted(107, 43) Source(3, 43) + SourceIndex(4) --- >>> }; 1 >^^^^ @@ -2007,8 +2009,8 @@ sourceFile:../../../second/second_part2.ts 1 > > 2 > } -1 >Emitted(107, 5) Source(4, 5) + SourceIndex(4) -2 >Emitted(107, 6) Source(4, 6) + SourceIndex(4) +1 >Emitted(108, 5) Source(4, 5) + SourceIndex(4) +2 >Emitted(108, 6) Source(4, 6) + SourceIndex(4) --- >>> return C; 1->^^^^ @@ -2016,8 +2018,8 @@ sourceFile:../../../second/second_part2.ts 1-> > 2 > } -1->Emitted(108, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(108, 13) Source(5, 2) + SourceIndex(4) +1->Emitted(109, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(109, 13) Source(5, 2) + SourceIndex(4) --- >>>}()); 1 > @@ -2033,10 +2035,10 @@ sourceFile:../../../second/second_part2.ts > console.log("something got done"); > } > } -1 >Emitted(109, 1) Source(5, 1) + SourceIndex(4) -2 >Emitted(109, 2) Source(5, 2) + SourceIndex(4) -3 >Emitted(109, 2) Source(1, 1) + SourceIndex(4) -4 >Emitted(109, 6) Source(5, 2) + SourceIndex(4) +1 >Emitted(110, 1) Source(5, 1) + SourceIndex(4) +2 >Emitted(110, 2) Source(5, 2) + SourceIndex(4) +3 >Emitted(110, 2) Source(1, 1) + SourceIndex(4) +4 >Emitted(110, 6) Source(5, 2) + SourceIndex(4) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -2060,14 +2062,14 @@ sourceFile:../../third_part1.ts 6 > C 7 > () 8 > ; -1->Emitted(110, 1) Source(1, 1) + SourceIndex(5) -2 >Emitted(110, 5) Source(1, 5) + SourceIndex(5) -3 >Emitted(110, 6) Source(1, 6) + SourceIndex(5) -4 >Emitted(110, 9) Source(1, 9) + SourceIndex(5) -5 >Emitted(110, 13) Source(1, 13) + SourceIndex(5) -6 >Emitted(110, 14) Source(1, 14) + SourceIndex(5) -7 >Emitted(110, 16) Source(1, 16) + SourceIndex(5) -8 >Emitted(110, 17) Source(1, 17) + SourceIndex(5) +1->Emitted(111, 1) Source(1, 1) + SourceIndex(5) +2 >Emitted(111, 5) Source(1, 5) + SourceIndex(5) +3 >Emitted(111, 6) Source(1, 6) + SourceIndex(5) +4 >Emitted(111, 9) Source(1, 9) + SourceIndex(5) +5 >Emitted(111, 13) Source(1, 13) + SourceIndex(5) +6 >Emitted(111, 14) Source(1, 14) + SourceIndex(5) +7 >Emitted(111, 16) Source(1, 16) + SourceIndex(5) +8 >Emitted(111, 17) Source(1, 17) + SourceIndex(5) --- >>>c.doSomething(); 1-> @@ -2084,12 +2086,12 @@ sourceFile:../../third_part1.ts 4 > doSomething 5 > () 6 > ; -1->Emitted(111, 1) Source(2, 1) + SourceIndex(5) -2 >Emitted(111, 2) Source(2, 2) + SourceIndex(5) -3 >Emitted(111, 3) Source(2, 3) + SourceIndex(5) -4 >Emitted(111, 14) Source(2, 14) + SourceIndex(5) -5 >Emitted(111, 16) Source(2, 16) + SourceIndex(5) -6 >Emitted(111, 17) Source(2, 17) + SourceIndex(5) +1->Emitted(112, 1) Source(2, 1) + SourceIndex(5) +2 >Emitted(112, 2) Source(2, 2) + SourceIndex(5) +3 >Emitted(112, 3) Source(2, 3) + SourceIndex(5) +4 >Emitted(112, 14) Source(2, 14) + SourceIndex(5) +5 >Emitted(112, 16) Source(2, 16) + SourceIndex(5) +6 >Emitted(112, 17) Source(2, 17) + SourceIndex(5) --- >>>//# sourceMappingURL=third-output.js.map @@ -2117,20 +2119,20 @@ sourceFile:../../third_part1.ts }, { "pos": 127, - "end": 3180, + "end": 3228, "kind": "prepend", "data": "../../../2/second-output.js", "texts": [ { "pos": 127, - "end": 3180, + "end": 3228, "kind": "text" } ] }, { - "pos": 3180, - "end": 3216, + "pos": 3228, + "end": 3264, "kind": "text" } ] @@ -2190,9 +2192,9 @@ function f() { } ---------------------------------------------------------------------- -prepend: (127-3180):: ../../../2/second-output.js texts:: 1 +prepend: (127-3228):: ../../../2/second-output.js texts:: 1 >>-------------------------------------------------------------------- -text: (127-3180) +text: (127-3228) var N; (function (N) { function f() { @@ -2203,8 +2205,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -2297,7 +2300,7 @@ var C = (function () { }()); ---------------------------------------------------------------------- -text: (3180-3216) +text: (3228-3264) var c = new C(); c.doSomething(); diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-jsdoc-style-comment-when-one-two-three-are-prepended-in-order.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-jsdoc-style-comment-when-one-two-three-are-prepended-in-order.js index acec88a3aff46..c60965863f11e 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-jsdoc-style-comment-when-one-two-three-are-prepended-in-order.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-jsdoc-style-comment-when-one-two-three-are-prepended-in-order.js @@ -877,7 +877,7 @@ sourceFile:../second/second_part2.ts }, { "pos": 110, - "end": 3163, + "end": 3211, "kind": "text" } ] @@ -953,7 +953,7 @@ function f() { } ---------------------------------------------------------------------- -text: (110-3163) +text: (110-3211) var N; (function (N) { function f() { @@ -964,8 +964,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -1820,20 +1821,20 @@ sourceFile:../../third_part1.ts "sections": [ { "pos": 0, - "end": 3163, + "end": 3211, "kind": "prepend", "data": "../../../2/second-output.js", "texts": [ { "pos": 0, - "end": 3163, + "end": 3211, "kind": "text" } ] }, { - "pos": 3163, - "end": 3199, + "pos": 3211, + "end": 3247, "kind": "text" } ] @@ -1868,9 +1869,9 @@ sourceFile:../../third_part1.ts ====================================================================== File:: /src/third/thirdjs/output/third-output.js ---------------------------------------------------------------------- -prepend: (0-3163):: ../../../2/second-output.js texts:: 1 +prepend: (0-3211):: ../../../2/second-output.js texts:: 1 >>-------------------------------------------------------------------- -text: (0-3163) +text: (0-3211) var s = "Hello, world"; console.log(s); console.log(f()); @@ -1887,8 +1888,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -1981,7 +1983,7 @@ var C = (function () { }()); ---------------------------------------------------------------------- -text: (3163-3199) +text: (3211-3247) var c = new C(); c.doSomething(); diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-jsdoc-style-comment.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-jsdoc-style-comment.js index 10f63b9eb0935..04d55f0cc4f27 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-jsdoc-style-comment.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-jsdoc-style-comment.js @@ -723,20 +723,20 @@ sourceFile:../../third_part1.ts }, { "pos": 110, - "end": 3163, + "end": 3211, "kind": "prepend", "data": "../../../2/second-output.js", "texts": [ { "pos": 110, - "end": 3163, + "end": 3211, "kind": "text" } ] }, { - "pos": 3163, - "end": 3199, + "pos": 3211, + "end": 3247, "kind": "text" } ] @@ -795,9 +795,9 @@ function f() { } ---------------------------------------------------------------------- -prepend: (110-3163):: ../../../2/second-output.js texts:: 1 +prepend: (110-3211):: ../../../2/second-output.js texts:: 1 >>-------------------------------------------------------------------- -text: (110-3163) +text: (110-3211) var N; (function (N) { function f() { @@ -808,8 +808,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -902,7 +903,7 @@ var C = (function () { }()); ---------------------------------------------------------------------- -text: (3163-3199) +text: (3211-3247) var c = new C(); c.doSomething(); diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-when-one-two-three-are-prepended-in-order.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-when-one-two-three-are-prepended-in-order.js index dca90f7005e81..553911b84a5a0 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-when-one-two-three-are-prepended-in-order.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-when-one-two-three-are-prepended-in-order.js @@ -899,7 +899,7 @@ sourceFile:../second/second_part2.ts }, { "pos": 110, - "end": 3163, + "end": 3211, "kind": "text" } ] @@ -975,7 +975,7 @@ function f() { } ---------------------------------------------------------------------- -text: (110-3163) +text: (110-3211) var N; (function (N) { function f() { @@ -986,8 +986,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -1842,20 +1843,20 @@ sourceFile:../../third_part1.ts "sections": [ { "pos": 0, - "end": 3163, + "end": 3211, "kind": "prepend", "data": "../../../2/second-output.js", "texts": [ { "pos": 0, - "end": 3163, + "end": 3211, "kind": "text" } ] }, { - "pos": 3163, - "end": 3199, + "pos": 3211, + "end": 3247, "kind": "text" } ] @@ -1890,9 +1891,9 @@ sourceFile:../../third_part1.ts ====================================================================== File:: /src/third/thirdjs/output/third-output.js ---------------------------------------------------------------------- -prepend: (0-3163):: ../../../2/second-output.js texts:: 1 +prepend: (0-3211):: ../../../2/second-output.js texts:: 1 >>-------------------------------------------------------------------- -text: (0-3163) +text: (0-3211) var s = "Hello, world"; console.log(s); console.log(f()); @@ -1909,8 +1910,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -2003,7 +2005,7 @@ var C = (function () { }()); ---------------------------------------------------------------------- -text: (3163-3199) +text: (3211-3247) var c = new C(); c.doSomething(); diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js index b60a84801ae04..ae35e4dfe808b 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js @@ -877,7 +877,7 @@ sourceFile:../second/second_part2.ts }, { "pos": 110, - "end": 3527, + "end": 3575, "kind": "text" } ] @@ -953,7 +953,7 @@ function f() { } ---------------------------------------------------------------------- -text: (110-3527) +text: (110-3575) var N; (function (N) { function f() { @@ -964,8 +964,9 @@ var N; var normalC = /** @class */ (function () { /*@internal*/ function normalC() { } - /*@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /*@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /*@internal*/ get: function () { return 10; }, /*@internal*/ set: function (val) { }, enumerable: false, @@ -1820,20 +1821,20 @@ sourceFile:../../third_part1.ts "sections": [ { "pos": 0, - "end": 3527, + "end": 3575, "kind": "prepend", "data": "../../../2/second-output.js", "texts": [ { "pos": 0, - "end": 3527, + "end": 3575, "kind": "text" } ] }, { - "pos": 3527, - "end": 3563, + "pos": 3575, + "end": 3611, "kind": "text" } ] @@ -1868,9 +1869,9 @@ sourceFile:../../third_part1.ts ====================================================================== File:: /src/third/thirdjs/output/third-output.js ---------------------------------------------------------------------- -prepend: (0-3527):: ../../../2/second-output.js texts:: 1 +prepend: (0-3575):: ../../../2/second-output.js texts:: 1 >>-------------------------------------------------------------------- -text: (0-3527) +text: (0-3575) var s = "Hello, world"; console.log(s); console.log(f()); @@ -1887,8 +1888,9 @@ var N; var normalC = /** @class */ (function () { /*@internal*/ function normalC() { } - /*@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /*@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /*@internal*/ get: function () { return 10; }, /*@internal*/ set: function (val) { }, enumerable: false, @@ -1981,7 +1983,7 @@ var C = /** @class */ (function () { }()); ---------------------------------------------------------------------- -text: (3527-3563) +text: (3575-3611) var c = new C(); c.doSomething(); diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-with-comments-emit-enabled.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-with-comments-emit-enabled.js index ba01c95b0602a..e426192fa56f1 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-with-comments-emit-enabled.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal-with-comments-emit-enabled.js @@ -723,20 +723,20 @@ sourceFile:../../third_part1.ts }, { "pos": 110, - "end": 3527, + "end": 3575, "kind": "prepend", "data": "../../../2/second-output.js", "texts": [ { "pos": 110, - "end": 3527, + "end": 3575, "kind": "text" } ] }, { - "pos": 3527, - "end": 3563, + "pos": 3575, + "end": 3611, "kind": "text" } ] @@ -795,9 +795,9 @@ function f() { } ---------------------------------------------------------------------- -prepend: (110-3527):: ../../../2/second-output.js texts:: 1 +prepend: (110-3575):: ../../../2/second-output.js texts:: 1 >>-------------------------------------------------------------------- -text: (110-3527) +text: (110-3575) var N; (function (N) { function f() { @@ -808,8 +808,9 @@ var N; var normalC = /** @class */ (function () { /*@internal*/ function normalC() { } - /*@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /*@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /*@internal*/ get: function () { return 10; }, /*@internal*/ set: function (val) { }, enumerable: false, @@ -902,7 +903,7 @@ var C = /** @class */ (function () { }()); ---------------------------------------------------------------------- -text: (3527-3563) +text: (3575-3611) var c = new C(); c.doSomething(); diff --git a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal.js b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal.js index 2509f130b7c05..dda7ddb274cce 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/incremental-headers-change-without-dts-changes/stripInternal.js @@ -745,20 +745,20 @@ sourceFile:../../third_part1.ts }, { "pos": 110, - "end": 3163, + "end": 3211, "kind": "prepend", "data": "../../../2/second-output.js", "texts": [ { "pos": 110, - "end": 3163, + "end": 3211, "kind": "text" } ] }, { - "pos": 3163, - "end": 3199, + "pos": 3211, + "end": 3247, "kind": "text" } ] @@ -817,9 +817,9 @@ function f() { } ---------------------------------------------------------------------- -prepend: (110-3163):: ../../../2/second-output.js texts:: 1 +prepend: (110-3211):: ../../../2/second-output.js texts:: 1 >>-------------------------------------------------------------------- -text: (110-3163) +text: (110-3211) var N; (function (N) { function f() { @@ -830,8 +830,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -924,7 +925,7 @@ var C = (function () { }()); ---------------------------------------------------------------------- -text: (3163-3199) +text: (3211-3247) var c = new C(); c.doSomething(); diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-comment-when-one-two-three-are-prepended-in-order.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-comment-when-one-two-three-are-prepended-in-order.js index b33056d5772cb..e86611950d233 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-comment-when-one-two-three-are-prepended-in-order.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-comment-when-one-two-three-are-prepended-in-order.js @@ -1074,8 +1074,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -1169,7 +1170,7 @@ var C = (function () { //# sourceMappingURL=second-output.js.map //// [/src/2/second-output.js.map] -{"version":3,"file":"second-output.js","sourceRoot":"","sources":["../first/first_PART1.ts","../first/first_part2.ts","../first/first_part3.ts","../second/second_part1.ts","../second/second_part2.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"second-output.js","sourceRoot":"","sources":["../first/first_PART1.ts","../first/first_part2.ts","../first/first_part3.ts","../second/second_part1.ts","../second/second_part2.ts"],"names":[],"mappings":"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"} //// [/src/2/second-output.js.map.baseline.txt] =================================================================== @@ -1470,13 +1471,14 @@ sourceFile:../second/second_part1.ts >>> } 1->^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1->constructor() { 2 > } 1->Emitted(16, 5) Source(14, 36) + SourceIndex(3) 2 >Emitted(16, 6) Source(14, 37) + SourceIndex(3) --- ->>> normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> normalC_prototype.method = function () { }; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^ @@ -1490,13 +1492,13 @@ sourceFile:../second/second_part1.ts 3 > 4 > method() { 5 > } -1->Emitted(17, 5) Source(16, 20) + SourceIndex(3) -2 >Emitted(17, 29) Source(16, 26) + SourceIndex(3) -3 >Emitted(17, 32) Source(16, 20) + SourceIndex(3) -4 >Emitted(17, 46) Source(16, 31) + SourceIndex(3) -5 >Emitted(17, 47) Source(16, 32) + SourceIndex(3) +1->Emitted(18, 5) Source(16, 20) + SourceIndex(3) +2 >Emitted(18, 29) Source(16, 26) + SourceIndex(3) +3 >Emitted(18, 32) Source(16, 20) + SourceIndex(3) +4 >Emitted(18, 46) Source(16, 31) + SourceIndex(3) +5 >Emitted(18, 47) Source(16, 32) + SourceIndex(3) --- ->>> Object.defineProperty(normalC.prototype, "c", { +>>> Object.defineProperty(normalC_prototype, "c", { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -1504,9 +1506,9 @@ sourceFile:../second/second_part1.ts > /**@internal*/ 2 > get 3 > c -1->Emitted(18, 5) Source(17, 20) + SourceIndex(3) -2 >Emitted(18, 27) Source(17, 24) + SourceIndex(3) -3 >Emitted(18, 49) Source(17, 25) + SourceIndex(3) +1->Emitted(19, 5) Source(17, 20) + SourceIndex(3) +2 >Emitted(19, 27) Source(17, 24) + SourceIndex(3) +3 >Emitted(19, 49) Source(17, 25) + SourceIndex(3) --- >>> get: function () { return 10; }, 1 >^^^^^^^^^^^^^ @@ -1523,13 +1525,13 @@ sourceFile:../second/second_part1.ts 5 > ; 6 > 7 > } -1 >Emitted(19, 14) Source(17, 20) + SourceIndex(3) -2 >Emitted(19, 28) Source(17, 30) + SourceIndex(3) -3 >Emitted(19, 35) Source(17, 37) + SourceIndex(3) -4 >Emitted(19, 37) Source(17, 39) + SourceIndex(3) -5 >Emitted(19, 38) Source(17, 40) + SourceIndex(3) -6 >Emitted(19, 39) Source(17, 41) + SourceIndex(3) -7 >Emitted(19, 40) Source(17, 42) + SourceIndex(3) +1 >Emitted(20, 14) Source(17, 20) + SourceIndex(3) +2 >Emitted(20, 28) Source(17, 30) + SourceIndex(3) +3 >Emitted(20, 35) Source(17, 37) + SourceIndex(3) +4 >Emitted(20, 37) Source(17, 39) + SourceIndex(3) +5 >Emitted(20, 38) Source(17, 40) + SourceIndex(3) +6 >Emitted(20, 39) Source(17, 41) + SourceIndex(3) +7 >Emitted(20, 40) Source(17, 42) + SourceIndex(3) --- >>> set: function (val) { }, 1 >^^^^^^^^^^^^^ @@ -1543,11 +1545,11 @@ sourceFile:../second/second_part1.ts 3 > val: number 4 > ) { 5 > } -1 >Emitted(20, 14) Source(18, 20) + SourceIndex(3) -2 >Emitted(20, 24) Source(18, 26) + SourceIndex(3) -3 >Emitted(20, 27) Source(18, 37) + SourceIndex(3) -4 >Emitted(20, 31) Source(18, 41) + SourceIndex(3) -5 >Emitted(20, 32) Source(18, 42) + SourceIndex(3) +1 >Emitted(21, 14) Source(18, 20) + SourceIndex(3) +2 >Emitted(21, 24) Source(18, 26) + SourceIndex(3) +3 >Emitted(21, 27) Source(18, 37) + SourceIndex(3) +4 >Emitted(21, 31) Source(18, 41) + SourceIndex(3) +5 >Emitted(21, 32) Source(18, 42) + SourceIndex(3) --- >>> enumerable: false, >>> configurable: true @@ -1555,7 +1557,7 @@ sourceFile:../second/second_part1.ts 1 >^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(23, 8) Source(17, 42) + SourceIndex(3) +1 >Emitted(24, 8) Source(17, 42) + SourceIndex(3) --- >>> return normalC; 1->^^^^ @@ -1564,8 +1566,8 @@ sourceFile:../second/second_part1.ts > /**@internal*/ set c(val: number) { } > 2 > } -1->Emitted(24, 5) Source(19, 1) + SourceIndex(3) -2 >Emitted(24, 19) Source(19, 2) + SourceIndex(3) +1->Emitted(25, 5) Source(19, 1) + SourceIndex(3) +2 >Emitted(25, 19) Source(19, 2) + SourceIndex(3) --- >>>}()); 1 > @@ -1583,10 +1585,10 @@ sourceFile:../second/second_part1.ts > /**@internal*/ get c() { return 10; } > /**@internal*/ set c(val: number) { } > } -1 >Emitted(25, 1) Source(19, 1) + SourceIndex(3) -2 >Emitted(25, 2) Source(19, 2) + SourceIndex(3) -3 >Emitted(25, 2) Source(13, 1) + SourceIndex(3) -4 >Emitted(25, 6) Source(19, 2) + SourceIndex(3) +1 >Emitted(26, 1) Source(19, 1) + SourceIndex(3) +2 >Emitted(26, 2) Source(19, 2) + SourceIndex(3) +3 >Emitted(26, 2) Source(13, 1) + SourceIndex(3) +4 >Emitted(26, 6) Source(19, 2) + SourceIndex(3) --- >>>var normalN; 1-> @@ -1608,10 +1610,10 @@ sourceFile:../second/second_part1.ts > /**@internal*/ export const internalConst = 10; > /**@internal*/ export enum internalEnum { a, b, c } > } -1->Emitted(26, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(26, 5) Source(20, 11) + SourceIndex(3) -3 >Emitted(26, 12) Source(20, 18) + SourceIndex(3) -4 >Emitted(26, 13) Source(29, 2) + SourceIndex(3) +1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(27, 5) Source(20, 11) + SourceIndex(3) +3 >Emitted(27, 12) Source(20, 18) + SourceIndex(3) +4 >Emitted(27, 13) Source(29, 2) + SourceIndex(3) --- >>>(function (normalN) { 1-> @@ -1621,22 +1623,22 @@ sourceFile:../second/second_part1.ts 1-> 2 >namespace 3 > normalN -1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(27, 12) Source(20, 11) + SourceIndex(3) -3 >Emitted(27, 19) Source(20, 18) + SourceIndex(3) +1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(28, 12) Source(20, 11) + SourceIndex(3) +3 >Emitted(28, 19) Source(20, 18) + SourceIndex(3) --- >>> var C = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { > /**@internal*/ -1->Emitted(28, 5) Source(21, 20) + SourceIndex(3) +1->Emitted(29, 5) Source(21, 20) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(29, 9) Source(21, 20) + SourceIndex(3) +1->Emitted(30, 9) Source(21, 20) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -1644,16 +1646,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(30, 9) Source(21, 37) + SourceIndex(3) -2 >Emitted(30, 10) Source(21, 38) + SourceIndex(3) +1->Emitted(31, 9) Source(21, 37) + SourceIndex(3) +2 >Emitted(31, 10) Source(21, 38) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(31, 9) Source(21, 37) + SourceIndex(3) -2 >Emitted(31, 17) Source(21, 38) + SourceIndex(3) +1->Emitted(32, 9) Source(21, 37) + SourceIndex(3) +2 >Emitted(32, 17) Source(21, 38) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -1665,10 +1667,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(32, 5) Source(21, 37) + SourceIndex(3) -2 >Emitted(32, 6) Source(21, 38) + SourceIndex(3) -3 >Emitted(32, 6) Source(21, 20) + SourceIndex(3) -4 >Emitted(32, 10) Source(21, 38) + SourceIndex(3) +1 >Emitted(33, 5) Source(21, 37) + SourceIndex(3) +2 >Emitted(33, 6) Source(21, 38) + SourceIndex(3) +3 >Emitted(33, 6) Source(21, 20) + SourceIndex(3) +4 >Emitted(33, 10) Source(21, 38) + SourceIndex(3) --- >>> normalN.C = C; 1->^^^^ @@ -1680,10 +1682,10 @@ sourceFile:../second/second_part1.ts 2 > C 3 > { } 4 > -1->Emitted(33, 5) Source(21, 33) + SourceIndex(3) -2 >Emitted(33, 14) Source(21, 34) + SourceIndex(3) -3 >Emitted(33, 18) Source(21, 38) + SourceIndex(3) -4 >Emitted(33, 19) Source(21, 38) + SourceIndex(3) +1->Emitted(34, 5) Source(21, 33) + SourceIndex(3) +2 >Emitted(34, 14) Source(21, 34) + SourceIndex(3) +3 >Emitted(34, 18) Source(21, 38) + SourceIndex(3) +4 >Emitted(34, 19) Source(21, 38) + SourceIndex(3) --- >>> function foo() { } 1->^^^^ @@ -1698,11 +1700,11 @@ sourceFile:../second/second_part1.ts 3 > foo 4 > () { 5 > } -1->Emitted(34, 5) Source(22, 20) + SourceIndex(3) -2 >Emitted(34, 14) Source(22, 36) + SourceIndex(3) -3 >Emitted(34, 17) Source(22, 39) + SourceIndex(3) -4 >Emitted(34, 22) Source(22, 43) + SourceIndex(3) -5 >Emitted(34, 23) Source(22, 44) + SourceIndex(3) +1->Emitted(35, 5) Source(22, 20) + SourceIndex(3) +2 >Emitted(35, 14) Source(22, 36) + SourceIndex(3) +3 >Emitted(35, 17) Source(22, 39) + SourceIndex(3) +4 >Emitted(35, 22) Source(22, 43) + SourceIndex(3) +5 >Emitted(35, 23) Source(22, 44) + SourceIndex(3) --- >>> normalN.foo = foo; 1->^^^^ @@ -1714,10 +1716,10 @@ sourceFile:../second/second_part1.ts 2 > foo 3 > () {} 4 > -1->Emitted(35, 5) Source(22, 36) + SourceIndex(3) -2 >Emitted(35, 16) Source(22, 39) + SourceIndex(3) -3 >Emitted(35, 22) Source(22, 44) + SourceIndex(3) -4 >Emitted(35, 23) Source(22, 44) + SourceIndex(3) +1->Emitted(36, 5) Source(22, 36) + SourceIndex(3) +2 >Emitted(36, 16) Source(22, 39) + SourceIndex(3) +3 >Emitted(36, 22) Source(22, 44) + SourceIndex(3) +4 >Emitted(36, 23) Source(22, 44) + SourceIndex(3) --- >>> var someNamespace; 1->^^^^ @@ -1730,10 +1732,10 @@ sourceFile:../second/second_part1.ts 2 > export namespace 3 > someNamespace 4 > { export class C {} } -1->Emitted(36, 5) Source(23, 20) + SourceIndex(3) -2 >Emitted(36, 9) Source(23, 37) + SourceIndex(3) -3 >Emitted(36, 22) Source(23, 50) + SourceIndex(3) -4 >Emitted(36, 23) Source(23, 72) + SourceIndex(3) +1->Emitted(37, 5) Source(23, 20) + SourceIndex(3) +2 >Emitted(37, 9) Source(23, 37) + SourceIndex(3) +3 >Emitted(37, 22) Source(23, 50) + SourceIndex(3) +4 >Emitted(37, 23) Source(23, 72) + SourceIndex(3) --- >>> (function (someNamespace) { 1->^^^^ @@ -1743,21 +1745,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > export namespace 3 > someNamespace -1->Emitted(37, 5) Source(23, 20) + SourceIndex(3) -2 >Emitted(37, 16) Source(23, 37) + SourceIndex(3) -3 >Emitted(37, 29) Source(23, 50) + SourceIndex(3) +1->Emitted(38, 5) Source(23, 20) + SourceIndex(3) +2 >Emitted(38, 16) Source(23, 37) + SourceIndex(3) +3 >Emitted(38, 29) Source(23, 50) + SourceIndex(3) --- >>> var C = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(38, 9) Source(23, 53) + SourceIndex(3) +1->Emitted(39, 9) Source(23, 53) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(39, 13) Source(23, 53) + SourceIndex(3) +1->Emitted(40, 13) Source(23, 53) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -1765,16 +1767,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(40, 13) Source(23, 69) + SourceIndex(3) -2 >Emitted(40, 14) Source(23, 70) + SourceIndex(3) +1->Emitted(41, 13) Source(23, 69) + SourceIndex(3) +2 >Emitted(41, 14) Source(23, 70) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(41, 13) Source(23, 69) + SourceIndex(3) -2 >Emitted(41, 21) Source(23, 70) + SourceIndex(3) +1->Emitted(42, 13) Source(23, 69) + SourceIndex(3) +2 >Emitted(42, 21) Source(23, 70) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -1786,10 +1788,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(42, 9) Source(23, 69) + SourceIndex(3) -2 >Emitted(42, 10) Source(23, 70) + SourceIndex(3) -3 >Emitted(42, 10) Source(23, 53) + SourceIndex(3) -4 >Emitted(42, 14) Source(23, 70) + SourceIndex(3) +1 >Emitted(43, 9) Source(23, 69) + SourceIndex(3) +2 >Emitted(43, 10) Source(23, 70) + SourceIndex(3) +3 >Emitted(43, 10) Source(23, 53) + SourceIndex(3) +4 >Emitted(43, 14) Source(23, 70) + SourceIndex(3) --- >>> someNamespace.C = C; 1->^^^^^^^^ @@ -1801,10 +1803,10 @@ sourceFile:../second/second_part1.ts 2 > C 3 > {} 4 > -1->Emitted(43, 9) Source(23, 66) + SourceIndex(3) -2 >Emitted(43, 24) Source(23, 67) + SourceIndex(3) -3 >Emitted(43, 28) Source(23, 70) + SourceIndex(3) -4 >Emitted(43, 29) Source(23, 70) + SourceIndex(3) +1->Emitted(44, 9) Source(23, 66) + SourceIndex(3) +2 >Emitted(44, 24) Source(23, 67) + SourceIndex(3) +3 >Emitted(44, 28) Source(23, 70) + SourceIndex(3) +4 >Emitted(44, 29) Source(23, 70) + SourceIndex(3) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^ @@ -1825,15 +1827,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(44, 5) Source(23, 71) + SourceIndex(3) -2 >Emitted(44, 6) Source(23, 72) + SourceIndex(3) -3 >Emitted(44, 8) Source(23, 37) + SourceIndex(3) -4 >Emitted(44, 21) Source(23, 50) + SourceIndex(3) -5 >Emitted(44, 24) Source(23, 37) + SourceIndex(3) -6 >Emitted(44, 45) Source(23, 50) + SourceIndex(3) -7 >Emitted(44, 50) Source(23, 37) + SourceIndex(3) -8 >Emitted(44, 71) Source(23, 50) + SourceIndex(3) -9 >Emitted(44, 79) Source(23, 72) + SourceIndex(3) +1->Emitted(45, 5) Source(23, 71) + SourceIndex(3) +2 >Emitted(45, 6) Source(23, 72) + SourceIndex(3) +3 >Emitted(45, 8) Source(23, 37) + SourceIndex(3) +4 >Emitted(45, 21) Source(23, 50) + SourceIndex(3) +5 >Emitted(45, 24) Source(23, 37) + SourceIndex(3) +6 >Emitted(45, 45) Source(23, 50) + SourceIndex(3) +7 >Emitted(45, 50) Source(23, 37) + SourceIndex(3) +8 >Emitted(45, 71) Source(23, 50) + SourceIndex(3) +9 >Emitted(45, 79) Source(23, 72) + SourceIndex(3) --- >>> var someOther; 1 >^^^^ @@ -1846,10 +1848,10 @@ sourceFile:../second/second_part1.ts 2 > export namespace 3 > someOther 4 > .something { export class someClass {} } -1 >Emitted(45, 5) Source(24, 20) + SourceIndex(3) -2 >Emitted(45, 9) Source(24, 37) + SourceIndex(3) -3 >Emitted(45, 18) Source(24, 46) + SourceIndex(3) -4 >Emitted(45, 19) Source(24, 86) + SourceIndex(3) +1 >Emitted(46, 5) Source(24, 20) + SourceIndex(3) +2 >Emitted(46, 9) Source(24, 37) + SourceIndex(3) +3 >Emitted(46, 18) Source(24, 46) + SourceIndex(3) +4 >Emitted(46, 19) Source(24, 86) + SourceIndex(3) --- >>> (function (someOther) { 1->^^^^ @@ -1858,9 +1860,9 @@ sourceFile:../second/second_part1.ts 1-> 2 > export namespace 3 > someOther -1->Emitted(46, 5) Source(24, 20) + SourceIndex(3) -2 >Emitted(46, 16) Source(24, 37) + SourceIndex(3) -3 >Emitted(46, 25) Source(24, 46) + SourceIndex(3) +1->Emitted(47, 5) Source(24, 20) + SourceIndex(3) +2 >Emitted(47, 16) Source(24, 37) + SourceIndex(3) +3 >Emitted(47, 25) Source(24, 46) + SourceIndex(3) --- >>> var something; 1 >^^^^^^^^ @@ -1872,10 +1874,10 @@ sourceFile:../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(47, 9) Source(24, 47) + SourceIndex(3) -2 >Emitted(47, 13) Source(24, 47) + SourceIndex(3) -3 >Emitted(47, 22) Source(24, 56) + SourceIndex(3) -4 >Emitted(47, 23) Source(24, 86) + SourceIndex(3) +1 >Emitted(48, 9) Source(24, 47) + SourceIndex(3) +2 >Emitted(48, 13) Source(24, 47) + SourceIndex(3) +3 >Emitted(48, 22) Source(24, 56) + SourceIndex(3) +4 >Emitted(48, 23) Source(24, 86) + SourceIndex(3) --- >>> (function (something) { 1->^^^^^^^^ @@ -1885,21 +1887,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(48, 9) Source(24, 47) + SourceIndex(3) -2 >Emitted(48, 20) Source(24, 47) + SourceIndex(3) -3 >Emitted(48, 29) Source(24, 56) + SourceIndex(3) +1->Emitted(49, 9) Source(24, 47) + SourceIndex(3) +2 >Emitted(49, 20) Source(24, 47) + SourceIndex(3) +3 >Emitted(49, 29) Source(24, 56) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(49, 13) Source(24, 59) + SourceIndex(3) +1->Emitted(50, 13) Source(24, 59) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(50, 17) Source(24, 59) + SourceIndex(3) +1->Emitted(51, 17) Source(24, 59) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -1907,16 +1909,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(51, 17) Source(24, 83) + SourceIndex(3) -2 >Emitted(51, 18) Source(24, 84) + SourceIndex(3) +1->Emitted(52, 17) Source(24, 83) + SourceIndex(3) +2 >Emitted(52, 18) Source(24, 84) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(52, 17) Source(24, 83) + SourceIndex(3) -2 >Emitted(52, 33) Source(24, 84) + SourceIndex(3) +1->Emitted(53, 17) Source(24, 83) + SourceIndex(3) +2 >Emitted(53, 33) Source(24, 84) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -1928,10 +1930,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(53, 13) Source(24, 83) + SourceIndex(3) -2 >Emitted(53, 14) Source(24, 84) + SourceIndex(3) -3 >Emitted(53, 14) Source(24, 59) + SourceIndex(3) -4 >Emitted(53, 18) Source(24, 84) + SourceIndex(3) +1 >Emitted(54, 13) Source(24, 83) + SourceIndex(3) +2 >Emitted(54, 14) Source(24, 84) + SourceIndex(3) +3 >Emitted(54, 14) Source(24, 59) + SourceIndex(3) +4 >Emitted(54, 18) Source(24, 84) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -1943,10 +1945,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(54, 13) Source(24, 72) + SourceIndex(3) -2 >Emitted(54, 32) Source(24, 81) + SourceIndex(3) -3 >Emitted(54, 44) Source(24, 84) + SourceIndex(3) -4 >Emitted(54, 45) Source(24, 84) + SourceIndex(3) +1->Emitted(55, 13) Source(24, 72) + SourceIndex(3) +2 >Emitted(55, 32) Source(24, 81) + SourceIndex(3) +3 >Emitted(55, 44) Source(24, 84) + SourceIndex(3) +4 >Emitted(55, 45) Source(24, 84) + SourceIndex(3) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^ @@ -1967,15 +1969,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(55, 9) Source(24, 85) + SourceIndex(3) -2 >Emitted(55, 10) Source(24, 86) + SourceIndex(3) -3 >Emitted(55, 12) Source(24, 47) + SourceIndex(3) -4 >Emitted(55, 21) Source(24, 56) + SourceIndex(3) -5 >Emitted(55, 24) Source(24, 47) + SourceIndex(3) -6 >Emitted(55, 43) Source(24, 56) + SourceIndex(3) -7 >Emitted(55, 48) Source(24, 47) + SourceIndex(3) -8 >Emitted(55, 67) Source(24, 56) + SourceIndex(3) -9 >Emitted(55, 75) Source(24, 86) + SourceIndex(3) +1->Emitted(56, 9) Source(24, 85) + SourceIndex(3) +2 >Emitted(56, 10) Source(24, 86) + SourceIndex(3) +3 >Emitted(56, 12) Source(24, 47) + SourceIndex(3) +4 >Emitted(56, 21) Source(24, 56) + SourceIndex(3) +5 >Emitted(56, 24) Source(24, 47) + SourceIndex(3) +6 >Emitted(56, 43) Source(24, 56) + SourceIndex(3) +7 >Emitted(56, 48) Source(24, 47) + SourceIndex(3) +8 >Emitted(56, 67) Source(24, 56) + SourceIndex(3) +9 >Emitted(56, 75) Source(24, 86) + SourceIndex(3) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^ @@ -1996,15 +1998,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(56, 5) Source(24, 85) + SourceIndex(3) -2 >Emitted(56, 6) Source(24, 86) + SourceIndex(3) -3 >Emitted(56, 8) Source(24, 37) + SourceIndex(3) -4 >Emitted(56, 17) Source(24, 46) + SourceIndex(3) -5 >Emitted(56, 20) Source(24, 37) + SourceIndex(3) -6 >Emitted(56, 37) Source(24, 46) + SourceIndex(3) -7 >Emitted(56, 42) Source(24, 37) + SourceIndex(3) -8 >Emitted(56, 59) Source(24, 46) + SourceIndex(3) -9 >Emitted(56, 67) Source(24, 86) + SourceIndex(3) +1 >Emitted(57, 5) Source(24, 85) + SourceIndex(3) +2 >Emitted(57, 6) Source(24, 86) + SourceIndex(3) +3 >Emitted(57, 8) Source(24, 37) + SourceIndex(3) +4 >Emitted(57, 17) Source(24, 46) + SourceIndex(3) +5 >Emitted(57, 20) Source(24, 37) + SourceIndex(3) +6 >Emitted(57, 37) Source(24, 46) + SourceIndex(3) +7 >Emitted(57, 42) Source(24, 37) + SourceIndex(3) +8 >Emitted(57, 59) Source(24, 46) + SourceIndex(3) +9 >Emitted(57, 67) Source(24, 86) + SourceIndex(3) --- >>> normalN.someImport = someNamespace.C; 1 >^^^^ @@ -2022,13 +2024,13 @@ sourceFile:../second/second_part1.ts 5 > . 6 > C 7 > ; -1 >Emitted(57, 5) Source(25, 34) + SourceIndex(3) -2 >Emitted(57, 23) Source(25, 44) + SourceIndex(3) -3 >Emitted(57, 26) Source(25, 47) + SourceIndex(3) -4 >Emitted(57, 39) Source(25, 60) + SourceIndex(3) -5 >Emitted(57, 40) Source(25, 61) + SourceIndex(3) -6 >Emitted(57, 41) Source(25, 62) + SourceIndex(3) -7 >Emitted(57, 42) Source(25, 63) + SourceIndex(3) +1 >Emitted(58, 5) Source(25, 34) + SourceIndex(3) +2 >Emitted(58, 23) Source(25, 44) + SourceIndex(3) +3 >Emitted(58, 26) Source(25, 47) + SourceIndex(3) +4 >Emitted(58, 39) Source(25, 60) + SourceIndex(3) +5 >Emitted(58, 40) Source(25, 61) + SourceIndex(3) +6 >Emitted(58, 41) Source(25, 62) + SourceIndex(3) +7 >Emitted(58, 42) Source(25, 63) + SourceIndex(3) --- >>> normalN.internalConst = 10; 1 >^^^^ @@ -2043,11 +2045,11 @@ sourceFile:../second/second_part1.ts 3 > = 4 > 10 5 > ; -1 >Emitted(58, 5) Source(27, 33) + SourceIndex(3) -2 >Emitted(58, 26) Source(27, 46) + SourceIndex(3) -3 >Emitted(58, 29) Source(27, 49) + SourceIndex(3) -4 >Emitted(58, 31) Source(27, 51) + SourceIndex(3) -5 >Emitted(58, 32) Source(27, 52) + SourceIndex(3) +1 >Emitted(59, 5) Source(27, 33) + SourceIndex(3) +2 >Emitted(59, 26) Source(27, 46) + SourceIndex(3) +3 >Emitted(59, 29) Source(27, 49) + SourceIndex(3) +4 >Emitted(59, 31) Source(27, 51) + SourceIndex(3) +5 >Emitted(59, 32) Source(27, 52) + SourceIndex(3) --- >>> var internalEnum; 1 >^^^^ @@ -2058,9 +2060,9 @@ sourceFile:../second/second_part1.ts > /**@internal*/ 2 > export enum 3 > internalEnum { a, b, c } -1 >Emitted(59, 5) Source(28, 20) + SourceIndex(3) -2 >Emitted(59, 9) Source(28, 32) + SourceIndex(3) -3 >Emitted(59, 21) Source(28, 56) + SourceIndex(3) +1 >Emitted(60, 5) Source(28, 20) + SourceIndex(3) +2 >Emitted(60, 9) Source(28, 32) + SourceIndex(3) +3 >Emitted(60, 21) Source(28, 56) + SourceIndex(3) --- >>> (function (internalEnum) { 1->^^^^ @@ -2070,9 +2072,9 @@ sourceFile:../second/second_part1.ts 1-> 2 > export enum 3 > internalEnum -1->Emitted(60, 5) Source(28, 20) + SourceIndex(3) -2 >Emitted(60, 16) Source(28, 32) + SourceIndex(3) -3 >Emitted(60, 28) Source(28, 44) + SourceIndex(3) +1->Emitted(61, 5) Source(28, 20) + SourceIndex(3) +2 >Emitted(61, 16) Source(28, 32) + SourceIndex(3) +3 >Emitted(61, 28) Source(28, 44) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -2082,9 +2084,9 @@ sourceFile:../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(61, 9) Source(28, 47) + SourceIndex(3) -2 >Emitted(61, 50) Source(28, 48) + SourceIndex(3) -3 >Emitted(61, 51) Source(28, 48) + SourceIndex(3) +1->Emitted(62, 9) Source(28, 47) + SourceIndex(3) +2 >Emitted(62, 50) Source(28, 48) + SourceIndex(3) +3 >Emitted(62, 51) Source(28, 48) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -2094,9 +2096,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(62, 9) Source(28, 50) + SourceIndex(3) -2 >Emitted(62, 50) Source(28, 51) + SourceIndex(3) -3 >Emitted(62, 51) Source(28, 51) + SourceIndex(3) +1->Emitted(63, 9) Source(28, 50) + SourceIndex(3) +2 >Emitted(63, 50) Source(28, 51) + SourceIndex(3) +3 >Emitted(63, 51) Source(28, 51) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -2106,9 +2108,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(63, 9) Source(28, 53) + SourceIndex(3) -2 >Emitted(63, 50) Source(28, 54) + SourceIndex(3) -3 >Emitted(63, 51) Source(28, 54) + SourceIndex(3) +1->Emitted(64, 9) Source(28, 53) + SourceIndex(3) +2 >Emitted(64, 50) Source(28, 54) + SourceIndex(3) +3 >Emitted(64, 51) Source(28, 54) + SourceIndex(3) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^ @@ -2129,15 +2131,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(64, 5) Source(28, 55) + SourceIndex(3) -2 >Emitted(64, 6) Source(28, 56) + SourceIndex(3) -3 >Emitted(64, 8) Source(28, 32) + SourceIndex(3) -4 >Emitted(64, 20) Source(28, 44) + SourceIndex(3) -5 >Emitted(64, 23) Source(28, 32) + SourceIndex(3) -6 >Emitted(64, 43) Source(28, 44) + SourceIndex(3) -7 >Emitted(64, 48) Source(28, 32) + SourceIndex(3) -8 >Emitted(64, 68) Source(28, 44) + SourceIndex(3) -9 >Emitted(64, 76) Source(28, 56) + SourceIndex(3) +1->Emitted(65, 5) Source(28, 55) + SourceIndex(3) +2 >Emitted(65, 6) Source(28, 56) + SourceIndex(3) +3 >Emitted(65, 8) Source(28, 32) + SourceIndex(3) +4 >Emitted(65, 20) Source(28, 44) + SourceIndex(3) +5 >Emitted(65, 23) Source(28, 32) + SourceIndex(3) +6 >Emitted(65, 43) Source(28, 44) + SourceIndex(3) +7 >Emitted(65, 48) Source(28, 32) + SourceIndex(3) +8 >Emitted(65, 68) Source(28, 44) + SourceIndex(3) +9 >Emitted(65, 76) Source(28, 56) + SourceIndex(3) --- >>>})(normalN || (normalN = {})); 1 > @@ -2165,26 +2167,26 @@ sourceFile:../second/second_part1.ts > /**@internal*/ export const internalConst = 10; > /**@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(65, 1) Source(29, 1) + SourceIndex(3) -2 >Emitted(65, 2) Source(29, 2) + SourceIndex(3) -3 >Emitted(65, 4) Source(20, 11) + SourceIndex(3) -4 >Emitted(65, 11) Source(20, 18) + SourceIndex(3) -5 >Emitted(65, 16) Source(20, 11) + SourceIndex(3) -6 >Emitted(65, 23) Source(20, 18) + SourceIndex(3) -7 >Emitted(65, 31) Source(29, 2) + SourceIndex(3) +1 >Emitted(66, 1) Source(29, 1) + SourceIndex(3) +2 >Emitted(66, 2) Source(29, 2) + SourceIndex(3) +3 >Emitted(66, 4) Source(20, 11) + SourceIndex(3) +4 >Emitted(66, 11) Source(20, 18) + SourceIndex(3) +5 >Emitted(66, 16) Source(20, 11) + SourceIndex(3) +6 >Emitted(66, 23) Source(20, 18) + SourceIndex(3) +7 >Emitted(66, 31) Source(29, 2) + SourceIndex(3) --- >>>var internalC = (function () { 1-> 2 >^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> >/**@internal*/ -1->Emitted(66, 1) Source(30, 16) + SourceIndex(3) +1->Emitted(67, 1) Source(30, 16) + SourceIndex(3) --- >>> function internalC() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(67, 5) Source(30, 16) + SourceIndex(3) +1->Emitted(68, 5) Source(30, 16) + SourceIndex(3) --- >>> } 1->^^^^ @@ -2192,16 +2194,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->class internalC { 2 > } -1->Emitted(68, 5) Source(30, 33) + SourceIndex(3) -2 >Emitted(68, 6) Source(30, 34) + SourceIndex(3) +1->Emitted(69, 5) Source(30, 33) + SourceIndex(3) +2 >Emitted(69, 6) Source(30, 34) + SourceIndex(3) --- >>> return internalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(69, 5) Source(30, 33) + SourceIndex(3) -2 >Emitted(69, 21) Source(30, 34) + SourceIndex(3) +1->Emitted(70, 5) Source(30, 33) + SourceIndex(3) +2 >Emitted(70, 21) Source(30, 34) + SourceIndex(3) --- >>>}()); 1 > @@ -2213,10 +2215,10 @@ sourceFile:../second/second_part1.ts 2 >} 3 > 4 > class internalC {} -1 >Emitted(70, 1) Source(30, 33) + SourceIndex(3) -2 >Emitted(70, 2) Source(30, 34) + SourceIndex(3) -3 >Emitted(70, 2) Source(30, 16) + SourceIndex(3) -4 >Emitted(70, 6) Source(30, 34) + SourceIndex(3) +1 >Emitted(71, 1) Source(30, 33) + SourceIndex(3) +2 >Emitted(71, 2) Source(30, 34) + SourceIndex(3) +3 >Emitted(71, 2) Source(30, 16) + SourceIndex(3) +4 >Emitted(71, 6) Source(30, 34) + SourceIndex(3) --- >>>function internalfoo() { } 1-> @@ -2230,11 +2232,11 @@ sourceFile:../second/second_part1.ts 3 > internalfoo 4 > () { 5 > } -1->Emitted(71, 1) Source(31, 16) + SourceIndex(3) -2 >Emitted(71, 10) Source(31, 25) + SourceIndex(3) -3 >Emitted(71, 21) Source(31, 36) + SourceIndex(3) -4 >Emitted(71, 26) Source(31, 40) + SourceIndex(3) -5 >Emitted(71, 27) Source(31, 41) + SourceIndex(3) +1->Emitted(72, 1) Source(31, 16) + SourceIndex(3) +2 >Emitted(72, 10) Source(31, 25) + SourceIndex(3) +3 >Emitted(72, 21) Source(31, 36) + SourceIndex(3) +4 >Emitted(72, 26) Source(31, 40) + SourceIndex(3) +5 >Emitted(72, 27) Source(31, 41) + SourceIndex(3) --- >>>var internalNamespace; 1 > @@ -2247,10 +2249,10 @@ sourceFile:../second/second_part1.ts 2 >namespace 3 > internalNamespace 4 > { export class someClass {} } -1 >Emitted(72, 1) Source(32, 16) + SourceIndex(3) -2 >Emitted(72, 5) Source(32, 26) + SourceIndex(3) -3 >Emitted(72, 22) Source(32, 43) + SourceIndex(3) -4 >Emitted(72, 23) Source(32, 73) + SourceIndex(3) +1 >Emitted(73, 1) Source(32, 16) + SourceIndex(3) +2 >Emitted(73, 5) Source(32, 26) + SourceIndex(3) +3 >Emitted(73, 22) Source(32, 43) + SourceIndex(3) +4 >Emitted(73, 23) Source(32, 73) + SourceIndex(3) --- >>>(function (internalNamespace) { 1-> @@ -2260,21 +2262,21 @@ sourceFile:../second/second_part1.ts 1-> 2 >namespace 3 > internalNamespace -1->Emitted(73, 1) Source(32, 16) + SourceIndex(3) -2 >Emitted(73, 12) Source(32, 26) + SourceIndex(3) -3 >Emitted(73, 29) Source(32, 43) + SourceIndex(3) +1->Emitted(74, 1) Source(32, 16) + SourceIndex(3) +2 >Emitted(74, 12) Source(32, 26) + SourceIndex(3) +3 >Emitted(74, 29) Source(32, 43) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(74, 5) Source(32, 46) + SourceIndex(3) +1->Emitted(75, 5) Source(32, 46) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(75, 9) Source(32, 46) + SourceIndex(3) +1->Emitted(76, 9) Source(32, 46) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -2282,16 +2284,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(76, 9) Source(32, 70) + SourceIndex(3) -2 >Emitted(76, 10) Source(32, 71) + SourceIndex(3) +1->Emitted(77, 9) Source(32, 70) + SourceIndex(3) +2 >Emitted(77, 10) Source(32, 71) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(77, 9) Source(32, 70) + SourceIndex(3) -2 >Emitted(77, 25) Source(32, 71) + SourceIndex(3) +1->Emitted(78, 9) Source(32, 70) + SourceIndex(3) +2 >Emitted(78, 25) Source(32, 71) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -2303,10 +2305,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(78, 5) Source(32, 70) + SourceIndex(3) -2 >Emitted(78, 6) Source(32, 71) + SourceIndex(3) -3 >Emitted(78, 6) Source(32, 46) + SourceIndex(3) -4 >Emitted(78, 10) Source(32, 71) + SourceIndex(3) +1 >Emitted(79, 5) Source(32, 70) + SourceIndex(3) +2 >Emitted(79, 6) Source(32, 71) + SourceIndex(3) +3 >Emitted(79, 6) Source(32, 46) + SourceIndex(3) +4 >Emitted(79, 10) Source(32, 71) + SourceIndex(3) --- >>> internalNamespace.someClass = someClass; 1->^^^^ @@ -2318,10 +2320,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(79, 5) Source(32, 59) + SourceIndex(3) -2 >Emitted(79, 32) Source(32, 68) + SourceIndex(3) -3 >Emitted(79, 44) Source(32, 71) + SourceIndex(3) -4 >Emitted(79, 45) Source(32, 71) + SourceIndex(3) +1->Emitted(80, 5) Source(32, 59) + SourceIndex(3) +2 >Emitted(80, 32) Source(32, 68) + SourceIndex(3) +3 >Emitted(80, 44) Source(32, 71) + SourceIndex(3) +4 >Emitted(80, 45) Source(32, 71) + SourceIndex(3) --- >>>})(internalNamespace || (internalNamespace = {})); 1-> @@ -2338,13 +2340,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalNamespace 7 > { export class someClass {} } -1->Emitted(80, 1) Source(32, 72) + SourceIndex(3) -2 >Emitted(80, 2) Source(32, 73) + SourceIndex(3) -3 >Emitted(80, 4) Source(32, 26) + SourceIndex(3) -4 >Emitted(80, 21) Source(32, 43) + SourceIndex(3) -5 >Emitted(80, 26) Source(32, 26) + SourceIndex(3) -6 >Emitted(80, 43) Source(32, 43) + SourceIndex(3) -7 >Emitted(80, 51) Source(32, 73) + SourceIndex(3) +1->Emitted(81, 1) Source(32, 72) + SourceIndex(3) +2 >Emitted(81, 2) Source(32, 73) + SourceIndex(3) +3 >Emitted(81, 4) Source(32, 26) + SourceIndex(3) +4 >Emitted(81, 21) Source(32, 43) + SourceIndex(3) +5 >Emitted(81, 26) Source(32, 26) + SourceIndex(3) +6 >Emitted(81, 43) Source(32, 43) + SourceIndex(3) +7 >Emitted(81, 51) Source(32, 73) + SourceIndex(3) --- >>>var internalOther; 1 > @@ -2357,10 +2359,10 @@ sourceFile:../second/second_part1.ts 2 >namespace 3 > internalOther 4 > .something { export class someClass {} } -1 >Emitted(81, 1) Source(33, 16) + SourceIndex(3) -2 >Emitted(81, 5) Source(33, 26) + SourceIndex(3) -3 >Emitted(81, 18) Source(33, 39) + SourceIndex(3) -4 >Emitted(81, 19) Source(33, 79) + SourceIndex(3) +1 >Emitted(82, 1) Source(33, 16) + SourceIndex(3) +2 >Emitted(82, 5) Source(33, 26) + SourceIndex(3) +3 >Emitted(82, 18) Source(33, 39) + SourceIndex(3) +4 >Emitted(82, 19) Source(33, 79) + SourceIndex(3) --- >>>(function (internalOther) { 1-> @@ -2369,9 +2371,9 @@ sourceFile:../second/second_part1.ts 1-> 2 >namespace 3 > internalOther -1->Emitted(82, 1) Source(33, 16) + SourceIndex(3) -2 >Emitted(82, 12) Source(33, 26) + SourceIndex(3) -3 >Emitted(82, 25) Source(33, 39) + SourceIndex(3) +1->Emitted(83, 1) Source(33, 16) + SourceIndex(3) +2 >Emitted(83, 12) Source(33, 26) + SourceIndex(3) +3 >Emitted(83, 25) Source(33, 39) + SourceIndex(3) --- >>> var something; 1 >^^^^ @@ -2383,10 +2385,10 @@ sourceFile:../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(83, 5) Source(33, 40) + SourceIndex(3) -2 >Emitted(83, 9) Source(33, 40) + SourceIndex(3) -3 >Emitted(83, 18) Source(33, 49) + SourceIndex(3) -4 >Emitted(83, 19) Source(33, 79) + SourceIndex(3) +1 >Emitted(84, 5) Source(33, 40) + SourceIndex(3) +2 >Emitted(84, 9) Source(33, 40) + SourceIndex(3) +3 >Emitted(84, 18) Source(33, 49) + SourceIndex(3) +4 >Emitted(84, 19) Source(33, 79) + SourceIndex(3) --- >>> (function (something) { 1->^^^^ @@ -2396,21 +2398,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(84, 5) Source(33, 40) + SourceIndex(3) -2 >Emitted(84, 16) Source(33, 40) + SourceIndex(3) -3 >Emitted(84, 25) Source(33, 49) + SourceIndex(3) +1->Emitted(85, 5) Source(33, 40) + SourceIndex(3) +2 >Emitted(85, 16) Source(33, 40) + SourceIndex(3) +3 >Emitted(85, 25) Source(33, 49) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(85, 9) Source(33, 52) + SourceIndex(3) +1->Emitted(86, 9) Source(33, 52) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(86, 13) Source(33, 52) + SourceIndex(3) +1->Emitted(87, 13) Source(33, 52) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -2418,16 +2420,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(87, 13) Source(33, 76) + SourceIndex(3) -2 >Emitted(87, 14) Source(33, 77) + SourceIndex(3) +1->Emitted(88, 13) Source(33, 76) + SourceIndex(3) +2 >Emitted(88, 14) Source(33, 77) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(88, 13) Source(33, 76) + SourceIndex(3) -2 >Emitted(88, 29) Source(33, 77) + SourceIndex(3) +1->Emitted(89, 13) Source(33, 76) + SourceIndex(3) +2 >Emitted(89, 29) Source(33, 77) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -2439,10 +2441,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(89, 9) Source(33, 76) + SourceIndex(3) -2 >Emitted(89, 10) Source(33, 77) + SourceIndex(3) -3 >Emitted(89, 10) Source(33, 52) + SourceIndex(3) -4 >Emitted(89, 14) Source(33, 77) + SourceIndex(3) +1 >Emitted(90, 9) Source(33, 76) + SourceIndex(3) +2 >Emitted(90, 10) Source(33, 77) + SourceIndex(3) +3 >Emitted(90, 10) Source(33, 52) + SourceIndex(3) +4 >Emitted(90, 14) Source(33, 77) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^ @@ -2454,10 +2456,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(90, 9) Source(33, 65) + SourceIndex(3) -2 >Emitted(90, 28) Source(33, 74) + SourceIndex(3) -3 >Emitted(90, 40) Source(33, 77) + SourceIndex(3) -4 >Emitted(90, 41) Source(33, 77) + SourceIndex(3) +1->Emitted(91, 9) Source(33, 65) + SourceIndex(3) +2 >Emitted(91, 28) Source(33, 74) + SourceIndex(3) +3 >Emitted(91, 40) Source(33, 77) + SourceIndex(3) +4 >Emitted(91, 41) Source(33, 77) + SourceIndex(3) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^ @@ -2478,15 +2480,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(91, 5) Source(33, 78) + SourceIndex(3) -2 >Emitted(91, 6) Source(33, 79) + SourceIndex(3) -3 >Emitted(91, 8) Source(33, 40) + SourceIndex(3) -4 >Emitted(91, 17) Source(33, 49) + SourceIndex(3) -5 >Emitted(91, 20) Source(33, 40) + SourceIndex(3) -6 >Emitted(91, 43) Source(33, 49) + SourceIndex(3) -7 >Emitted(91, 48) Source(33, 40) + SourceIndex(3) -8 >Emitted(91, 71) Source(33, 49) + SourceIndex(3) -9 >Emitted(91, 79) Source(33, 79) + SourceIndex(3) +1->Emitted(92, 5) Source(33, 78) + SourceIndex(3) +2 >Emitted(92, 6) Source(33, 79) + SourceIndex(3) +3 >Emitted(92, 8) Source(33, 40) + SourceIndex(3) +4 >Emitted(92, 17) Source(33, 49) + SourceIndex(3) +5 >Emitted(92, 20) Source(33, 40) + SourceIndex(3) +6 >Emitted(92, 43) Source(33, 49) + SourceIndex(3) +7 >Emitted(92, 48) Source(33, 40) + SourceIndex(3) +8 >Emitted(92, 71) Source(33, 49) + SourceIndex(3) +9 >Emitted(92, 79) Source(33, 79) + SourceIndex(3) --- >>>})(internalOther || (internalOther = {})); 1 > @@ -2504,13 +2506,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalOther 7 > .something { export class someClass {} } -1 >Emitted(92, 1) Source(33, 78) + SourceIndex(3) -2 >Emitted(92, 2) Source(33, 79) + SourceIndex(3) -3 >Emitted(92, 4) Source(33, 26) + SourceIndex(3) -4 >Emitted(92, 17) Source(33, 39) + SourceIndex(3) -5 >Emitted(92, 22) Source(33, 26) + SourceIndex(3) -6 >Emitted(92, 35) Source(33, 39) + SourceIndex(3) -7 >Emitted(92, 43) Source(33, 79) + SourceIndex(3) +1 >Emitted(93, 1) Source(33, 78) + SourceIndex(3) +2 >Emitted(93, 2) Source(33, 79) + SourceIndex(3) +3 >Emitted(93, 4) Source(33, 26) + SourceIndex(3) +4 >Emitted(93, 17) Source(33, 39) + SourceIndex(3) +5 >Emitted(93, 22) Source(33, 26) + SourceIndex(3) +6 >Emitted(93, 35) Source(33, 39) + SourceIndex(3) +7 >Emitted(93, 43) Source(33, 79) + SourceIndex(3) --- >>>var internalImport = internalNamespace.someClass; 1-> @@ -2530,14 +2532,14 @@ sourceFile:../second/second_part1.ts 6 > . 7 > someClass 8 > ; -1->Emitted(93, 1) Source(34, 16) + SourceIndex(3) -2 >Emitted(93, 5) Source(34, 23) + SourceIndex(3) -3 >Emitted(93, 19) Source(34, 37) + SourceIndex(3) -4 >Emitted(93, 22) Source(34, 40) + SourceIndex(3) -5 >Emitted(93, 39) Source(34, 57) + SourceIndex(3) -6 >Emitted(93, 40) Source(34, 58) + SourceIndex(3) -7 >Emitted(93, 49) Source(34, 67) + SourceIndex(3) -8 >Emitted(93, 50) Source(34, 68) + SourceIndex(3) +1->Emitted(94, 1) Source(34, 16) + SourceIndex(3) +2 >Emitted(94, 5) Source(34, 23) + SourceIndex(3) +3 >Emitted(94, 19) Source(34, 37) + SourceIndex(3) +4 >Emitted(94, 22) Source(34, 40) + SourceIndex(3) +5 >Emitted(94, 39) Source(34, 57) + SourceIndex(3) +6 >Emitted(94, 40) Source(34, 58) + SourceIndex(3) +7 >Emitted(94, 49) Source(34, 67) + SourceIndex(3) +8 >Emitted(94, 50) Source(34, 68) + SourceIndex(3) --- >>>var internalConst = 10; 1 > @@ -2554,12 +2556,12 @@ sourceFile:../second/second_part1.ts 4 > = 5 > 10 6 > ; -1 >Emitted(94, 1) Source(36, 16) + SourceIndex(3) -2 >Emitted(94, 5) Source(36, 22) + SourceIndex(3) -3 >Emitted(94, 18) Source(36, 35) + SourceIndex(3) -4 >Emitted(94, 21) Source(36, 38) + SourceIndex(3) -5 >Emitted(94, 23) Source(36, 40) + SourceIndex(3) -6 >Emitted(94, 24) Source(36, 41) + SourceIndex(3) +1 >Emitted(95, 1) Source(36, 16) + SourceIndex(3) +2 >Emitted(95, 5) Source(36, 22) + SourceIndex(3) +3 >Emitted(95, 18) Source(36, 35) + SourceIndex(3) +4 >Emitted(95, 21) Source(36, 38) + SourceIndex(3) +5 >Emitted(95, 23) Source(36, 40) + SourceIndex(3) +6 >Emitted(95, 24) Source(36, 41) + SourceIndex(3) --- >>>var internalEnum; 1 > @@ -2570,9 +2572,9 @@ sourceFile:../second/second_part1.ts >/**@internal*/ 2 >enum 3 > internalEnum { a, b, c } -1 >Emitted(95, 1) Source(37, 16) + SourceIndex(3) -2 >Emitted(95, 5) Source(37, 21) + SourceIndex(3) -3 >Emitted(95, 17) Source(37, 45) + SourceIndex(3) +1 >Emitted(96, 1) Source(37, 16) + SourceIndex(3) +2 >Emitted(96, 5) Source(37, 21) + SourceIndex(3) +3 >Emitted(96, 17) Source(37, 45) + SourceIndex(3) --- >>>(function (internalEnum) { 1-> @@ -2582,9 +2584,9 @@ sourceFile:../second/second_part1.ts 1-> 2 >enum 3 > internalEnum -1->Emitted(96, 1) Source(37, 16) + SourceIndex(3) -2 >Emitted(96, 12) Source(37, 21) + SourceIndex(3) -3 >Emitted(96, 24) Source(37, 33) + SourceIndex(3) +1->Emitted(97, 1) Source(37, 16) + SourceIndex(3) +2 >Emitted(97, 12) Source(37, 21) + SourceIndex(3) +3 >Emitted(97, 24) Source(37, 33) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^ @@ -2594,9 +2596,9 @@ sourceFile:../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(97, 5) Source(37, 36) + SourceIndex(3) -2 >Emitted(97, 46) Source(37, 37) + SourceIndex(3) -3 >Emitted(97, 47) Source(37, 37) + SourceIndex(3) +1->Emitted(98, 5) Source(37, 36) + SourceIndex(3) +2 >Emitted(98, 46) Source(37, 37) + SourceIndex(3) +3 >Emitted(98, 47) Source(37, 37) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^ @@ -2606,9 +2608,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(98, 5) Source(37, 39) + SourceIndex(3) -2 >Emitted(98, 46) Source(37, 40) + SourceIndex(3) -3 >Emitted(98, 47) Source(37, 40) + SourceIndex(3) +1->Emitted(99, 5) Source(37, 39) + SourceIndex(3) +2 >Emitted(99, 46) Source(37, 40) + SourceIndex(3) +3 >Emitted(99, 47) Source(37, 40) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^ @@ -2617,9 +2619,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(99, 5) Source(37, 42) + SourceIndex(3) -2 >Emitted(99, 46) Source(37, 43) + SourceIndex(3) -3 >Emitted(99, 47) Source(37, 43) + SourceIndex(3) +1->Emitted(100, 5) Source(37, 42) + SourceIndex(3) +2 >Emitted(100, 46) Source(37, 43) + SourceIndex(3) +3 >Emitted(100, 47) Source(37, 43) + SourceIndex(3) --- >>>})(internalEnum || (internalEnum = {})); 1 > @@ -2636,13 +2638,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalEnum 7 > { a, b, c } -1 >Emitted(100, 1) Source(37, 44) + SourceIndex(3) -2 >Emitted(100, 2) Source(37, 45) + SourceIndex(3) -3 >Emitted(100, 4) Source(37, 21) + SourceIndex(3) -4 >Emitted(100, 16) Source(37, 33) + SourceIndex(3) -5 >Emitted(100, 21) Source(37, 21) + SourceIndex(3) -6 >Emitted(100, 33) Source(37, 33) + SourceIndex(3) -7 >Emitted(100, 41) Source(37, 45) + SourceIndex(3) +1 >Emitted(101, 1) Source(37, 44) + SourceIndex(3) +2 >Emitted(101, 2) Source(37, 45) + SourceIndex(3) +3 >Emitted(101, 4) Source(37, 21) + SourceIndex(3) +4 >Emitted(101, 16) Source(37, 33) + SourceIndex(3) +5 >Emitted(101, 21) Source(37, 21) + SourceIndex(3) +6 >Emitted(101, 33) Source(37, 33) + SourceIndex(3) +7 >Emitted(101, 41) Source(37, 45) + SourceIndex(3) --- ------------------------------------------------------------------- emittedFile:/src/2/second-output.js @@ -2652,13 +2654,13 @@ sourceFile:../second/second_part2.ts 1 > 2 >^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(101, 1) Source(1, 1) + SourceIndex(4) +1 >Emitted(102, 1) Source(1, 1) + SourceIndex(4) --- >>> function C() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(102, 5) Source(1, 1) + SourceIndex(4) +1->Emitted(103, 5) Source(1, 1) + SourceIndex(4) --- >>> } 1->^^^^ @@ -2670,8 +2672,8 @@ sourceFile:../second/second_part2.ts > } > 2 > } -1->Emitted(103, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(103, 6) Source(5, 2) + SourceIndex(4) +1->Emitted(104, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(104, 6) Source(5, 2) + SourceIndex(4) --- >>> C.prototype.doSomething = function () { 1->^^^^ @@ -2681,9 +2683,9 @@ sourceFile:../second/second_part2.ts 1-> 2 > doSomething 3 > -1->Emitted(104, 5) Source(2, 5) + SourceIndex(4) -2 >Emitted(104, 28) Source(2, 16) + SourceIndex(4) -3 >Emitted(104, 31) Source(2, 5) + SourceIndex(4) +1->Emitted(105, 5) Source(2, 5) + SourceIndex(4) +2 >Emitted(105, 28) Source(2, 16) + SourceIndex(4) +3 >Emitted(105, 31) Source(2, 5) + SourceIndex(4) --- >>> console.log("something got done"); 1->^^^^^^^^ @@ -2703,14 +2705,14 @@ sourceFile:../second/second_part2.ts 6 > "something got done" 7 > ) 8 > ; -1->Emitted(105, 9) Source(3, 9) + SourceIndex(4) -2 >Emitted(105, 16) Source(3, 16) + SourceIndex(4) -3 >Emitted(105, 17) Source(3, 17) + SourceIndex(4) -4 >Emitted(105, 20) Source(3, 20) + SourceIndex(4) -5 >Emitted(105, 21) Source(3, 21) + SourceIndex(4) -6 >Emitted(105, 41) Source(3, 41) + SourceIndex(4) -7 >Emitted(105, 42) Source(3, 42) + SourceIndex(4) -8 >Emitted(105, 43) Source(3, 43) + SourceIndex(4) +1->Emitted(106, 9) Source(3, 9) + SourceIndex(4) +2 >Emitted(106, 16) Source(3, 16) + SourceIndex(4) +3 >Emitted(106, 17) Source(3, 17) + SourceIndex(4) +4 >Emitted(106, 20) Source(3, 20) + SourceIndex(4) +5 >Emitted(106, 21) Source(3, 21) + SourceIndex(4) +6 >Emitted(106, 41) Source(3, 41) + SourceIndex(4) +7 >Emitted(106, 42) Source(3, 42) + SourceIndex(4) +8 >Emitted(106, 43) Source(3, 43) + SourceIndex(4) --- >>> }; 1 >^^^^ @@ -2719,8 +2721,8 @@ sourceFile:../second/second_part2.ts 1 > > 2 > } -1 >Emitted(106, 5) Source(4, 5) + SourceIndex(4) -2 >Emitted(106, 6) Source(4, 6) + SourceIndex(4) +1 >Emitted(107, 5) Source(4, 5) + SourceIndex(4) +2 >Emitted(107, 6) Source(4, 6) + SourceIndex(4) --- >>> return C; 1->^^^^ @@ -2728,8 +2730,8 @@ sourceFile:../second/second_part2.ts 1-> > 2 > } -1->Emitted(107, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(107, 13) Source(5, 2) + SourceIndex(4) +1->Emitted(108, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(108, 13) Source(5, 2) + SourceIndex(4) --- >>>}()); 1 > @@ -2745,10 +2747,10 @@ sourceFile:../second/second_part2.ts > console.log("something got done"); > } > } -1 >Emitted(108, 1) Source(5, 1) + SourceIndex(4) -2 >Emitted(108, 2) Source(5, 2) + SourceIndex(4) -3 >Emitted(108, 2) Source(1, 1) + SourceIndex(4) -4 >Emitted(108, 6) Source(5, 2) + SourceIndex(4) +1 >Emitted(109, 1) Source(5, 1) + SourceIndex(4) +2 >Emitted(109, 2) Source(5, 2) + SourceIndex(4) +3 >Emitted(109, 2) Source(1, 1) + SourceIndex(4) +4 >Emitted(109, 6) Source(5, 2) + SourceIndex(4) --- >>>//# sourceMappingURL=second-output.js.map @@ -2777,7 +2779,7 @@ sourceFile:../second/second_part2.ts }, { "pos": 110, - "end": 3163, + "end": 3211, "kind": "text" } ] @@ -2858,7 +2860,7 @@ function f() { } ---------------------------------------------------------------------- -text: (110-3163) +text: (110-3211) var N; (function (N) { function f() { @@ -2869,8 +2871,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -3723,8 +3726,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -3820,7 +3824,7 @@ c.doSomething(); //# sourceMappingURL=third-output.js.map //// [/src/third/thirdjs/output/third-output.js.map] -{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} //// [/src/third/thirdjs/output/third-output.js.map.baseline.txt] =================================================================== @@ -4121,13 +4125,14 @@ sourceFile:../../../second/second_part1.ts >>> } 1->^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1->constructor() { 2 > } 1->Emitted(16, 5) Source(14, 36) + SourceIndex(3) 2 >Emitted(16, 6) Source(14, 37) + SourceIndex(3) --- ->>> normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> normalC_prototype.method = function () { }; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^ @@ -4141,13 +4146,13 @@ sourceFile:../../../second/second_part1.ts 3 > 4 > method() { 5 > } -1->Emitted(17, 5) Source(16, 20) + SourceIndex(3) -2 >Emitted(17, 29) Source(16, 26) + SourceIndex(3) -3 >Emitted(17, 32) Source(16, 20) + SourceIndex(3) -4 >Emitted(17, 46) Source(16, 31) + SourceIndex(3) -5 >Emitted(17, 47) Source(16, 32) + SourceIndex(3) +1->Emitted(18, 5) Source(16, 20) + SourceIndex(3) +2 >Emitted(18, 29) Source(16, 26) + SourceIndex(3) +3 >Emitted(18, 32) Source(16, 20) + SourceIndex(3) +4 >Emitted(18, 46) Source(16, 31) + SourceIndex(3) +5 >Emitted(18, 47) Source(16, 32) + SourceIndex(3) --- ->>> Object.defineProperty(normalC.prototype, "c", { +>>> Object.defineProperty(normalC_prototype, "c", { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -4155,9 +4160,9 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ 2 > get 3 > c -1->Emitted(18, 5) Source(17, 20) + SourceIndex(3) -2 >Emitted(18, 27) Source(17, 24) + SourceIndex(3) -3 >Emitted(18, 49) Source(17, 25) + SourceIndex(3) +1->Emitted(19, 5) Source(17, 20) + SourceIndex(3) +2 >Emitted(19, 27) Source(17, 24) + SourceIndex(3) +3 >Emitted(19, 49) Source(17, 25) + SourceIndex(3) --- >>> get: function () { return 10; }, 1 >^^^^^^^^^^^^^ @@ -4174,13 +4179,13 @@ sourceFile:../../../second/second_part1.ts 5 > ; 6 > 7 > } -1 >Emitted(19, 14) Source(17, 20) + SourceIndex(3) -2 >Emitted(19, 28) Source(17, 30) + SourceIndex(3) -3 >Emitted(19, 35) Source(17, 37) + SourceIndex(3) -4 >Emitted(19, 37) Source(17, 39) + SourceIndex(3) -5 >Emitted(19, 38) Source(17, 40) + SourceIndex(3) -6 >Emitted(19, 39) Source(17, 41) + SourceIndex(3) -7 >Emitted(19, 40) Source(17, 42) + SourceIndex(3) +1 >Emitted(20, 14) Source(17, 20) + SourceIndex(3) +2 >Emitted(20, 28) Source(17, 30) + SourceIndex(3) +3 >Emitted(20, 35) Source(17, 37) + SourceIndex(3) +4 >Emitted(20, 37) Source(17, 39) + SourceIndex(3) +5 >Emitted(20, 38) Source(17, 40) + SourceIndex(3) +6 >Emitted(20, 39) Source(17, 41) + SourceIndex(3) +7 >Emitted(20, 40) Source(17, 42) + SourceIndex(3) --- >>> set: function (val) { }, 1 >^^^^^^^^^^^^^ @@ -4194,11 +4199,11 @@ sourceFile:../../../second/second_part1.ts 3 > val: number 4 > ) { 5 > } -1 >Emitted(20, 14) Source(18, 20) + SourceIndex(3) -2 >Emitted(20, 24) Source(18, 26) + SourceIndex(3) -3 >Emitted(20, 27) Source(18, 37) + SourceIndex(3) -4 >Emitted(20, 31) Source(18, 41) + SourceIndex(3) -5 >Emitted(20, 32) Source(18, 42) + SourceIndex(3) +1 >Emitted(21, 14) Source(18, 20) + SourceIndex(3) +2 >Emitted(21, 24) Source(18, 26) + SourceIndex(3) +3 >Emitted(21, 27) Source(18, 37) + SourceIndex(3) +4 >Emitted(21, 31) Source(18, 41) + SourceIndex(3) +5 >Emitted(21, 32) Source(18, 42) + SourceIndex(3) --- >>> enumerable: false, >>> configurable: true @@ -4206,7 +4211,7 @@ sourceFile:../../../second/second_part1.ts 1 >^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(23, 8) Source(17, 42) + SourceIndex(3) +1 >Emitted(24, 8) Source(17, 42) + SourceIndex(3) --- >>> return normalC; 1->^^^^ @@ -4215,8 +4220,8 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ set c(val: number) { } > 2 > } -1->Emitted(24, 5) Source(19, 1) + SourceIndex(3) -2 >Emitted(24, 19) Source(19, 2) + SourceIndex(3) +1->Emitted(25, 5) Source(19, 1) + SourceIndex(3) +2 >Emitted(25, 19) Source(19, 2) + SourceIndex(3) --- >>>}()); 1 > @@ -4234,10 +4239,10 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ get c() { return 10; } > /**@internal*/ set c(val: number) { } > } -1 >Emitted(25, 1) Source(19, 1) + SourceIndex(3) -2 >Emitted(25, 2) Source(19, 2) + SourceIndex(3) -3 >Emitted(25, 2) Source(13, 1) + SourceIndex(3) -4 >Emitted(25, 6) Source(19, 2) + SourceIndex(3) +1 >Emitted(26, 1) Source(19, 1) + SourceIndex(3) +2 >Emitted(26, 2) Source(19, 2) + SourceIndex(3) +3 >Emitted(26, 2) Source(13, 1) + SourceIndex(3) +4 >Emitted(26, 6) Source(19, 2) + SourceIndex(3) --- >>>var normalN; 1-> @@ -4259,10 +4264,10 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ export const internalConst = 10; > /**@internal*/ export enum internalEnum { a, b, c } > } -1->Emitted(26, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(26, 5) Source(20, 11) + SourceIndex(3) -3 >Emitted(26, 12) Source(20, 18) + SourceIndex(3) -4 >Emitted(26, 13) Source(29, 2) + SourceIndex(3) +1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(27, 5) Source(20, 11) + SourceIndex(3) +3 >Emitted(27, 12) Source(20, 18) + SourceIndex(3) +4 >Emitted(27, 13) Source(29, 2) + SourceIndex(3) --- >>>(function (normalN) { 1-> @@ -4272,22 +4277,22 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > normalN -1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(27, 12) Source(20, 11) + SourceIndex(3) -3 >Emitted(27, 19) Source(20, 18) + SourceIndex(3) +1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(28, 12) Source(20, 11) + SourceIndex(3) +3 >Emitted(28, 19) Source(20, 18) + SourceIndex(3) --- >>> var C = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { > /**@internal*/ -1->Emitted(28, 5) Source(21, 20) + SourceIndex(3) +1->Emitted(29, 5) Source(21, 20) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(29, 9) Source(21, 20) + SourceIndex(3) +1->Emitted(30, 9) Source(21, 20) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -4295,16 +4300,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(30, 9) Source(21, 37) + SourceIndex(3) -2 >Emitted(30, 10) Source(21, 38) + SourceIndex(3) +1->Emitted(31, 9) Source(21, 37) + SourceIndex(3) +2 >Emitted(31, 10) Source(21, 38) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(31, 9) Source(21, 37) + SourceIndex(3) -2 >Emitted(31, 17) Source(21, 38) + SourceIndex(3) +1->Emitted(32, 9) Source(21, 37) + SourceIndex(3) +2 >Emitted(32, 17) Source(21, 38) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -4316,10 +4321,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(32, 5) Source(21, 37) + SourceIndex(3) -2 >Emitted(32, 6) Source(21, 38) + SourceIndex(3) -3 >Emitted(32, 6) Source(21, 20) + SourceIndex(3) -4 >Emitted(32, 10) Source(21, 38) + SourceIndex(3) +1 >Emitted(33, 5) Source(21, 37) + SourceIndex(3) +2 >Emitted(33, 6) Source(21, 38) + SourceIndex(3) +3 >Emitted(33, 6) Source(21, 20) + SourceIndex(3) +4 >Emitted(33, 10) Source(21, 38) + SourceIndex(3) --- >>> normalN.C = C; 1->^^^^ @@ -4331,10 +4336,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > { } 4 > -1->Emitted(33, 5) Source(21, 33) + SourceIndex(3) -2 >Emitted(33, 14) Source(21, 34) + SourceIndex(3) -3 >Emitted(33, 18) Source(21, 38) + SourceIndex(3) -4 >Emitted(33, 19) Source(21, 38) + SourceIndex(3) +1->Emitted(34, 5) Source(21, 33) + SourceIndex(3) +2 >Emitted(34, 14) Source(21, 34) + SourceIndex(3) +3 >Emitted(34, 18) Source(21, 38) + SourceIndex(3) +4 >Emitted(34, 19) Source(21, 38) + SourceIndex(3) --- >>> function foo() { } 1->^^^^ @@ -4349,11 +4354,11 @@ sourceFile:../../../second/second_part1.ts 3 > foo 4 > () { 5 > } -1->Emitted(34, 5) Source(22, 20) + SourceIndex(3) -2 >Emitted(34, 14) Source(22, 36) + SourceIndex(3) -3 >Emitted(34, 17) Source(22, 39) + SourceIndex(3) -4 >Emitted(34, 22) Source(22, 43) + SourceIndex(3) -5 >Emitted(34, 23) Source(22, 44) + SourceIndex(3) +1->Emitted(35, 5) Source(22, 20) + SourceIndex(3) +2 >Emitted(35, 14) Source(22, 36) + SourceIndex(3) +3 >Emitted(35, 17) Source(22, 39) + SourceIndex(3) +4 >Emitted(35, 22) Source(22, 43) + SourceIndex(3) +5 >Emitted(35, 23) Source(22, 44) + SourceIndex(3) --- >>> normalN.foo = foo; 1->^^^^ @@ -4365,10 +4370,10 @@ sourceFile:../../../second/second_part1.ts 2 > foo 3 > () {} 4 > -1->Emitted(35, 5) Source(22, 36) + SourceIndex(3) -2 >Emitted(35, 16) Source(22, 39) + SourceIndex(3) -3 >Emitted(35, 22) Source(22, 44) + SourceIndex(3) -4 >Emitted(35, 23) Source(22, 44) + SourceIndex(3) +1->Emitted(36, 5) Source(22, 36) + SourceIndex(3) +2 >Emitted(36, 16) Source(22, 39) + SourceIndex(3) +3 >Emitted(36, 22) Source(22, 44) + SourceIndex(3) +4 >Emitted(36, 23) Source(22, 44) + SourceIndex(3) --- >>> var someNamespace; 1->^^^^ @@ -4381,10 +4386,10 @@ sourceFile:../../../second/second_part1.ts 2 > export namespace 3 > someNamespace 4 > { export class C {} } -1->Emitted(36, 5) Source(23, 20) + SourceIndex(3) -2 >Emitted(36, 9) Source(23, 37) + SourceIndex(3) -3 >Emitted(36, 22) Source(23, 50) + SourceIndex(3) -4 >Emitted(36, 23) Source(23, 72) + SourceIndex(3) +1->Emitted(37, 5) Source(23, 20) + SourceIndex(3) +2 >Emitted(37, 9) Source(23, 37) + SourceIndex(3) +3 >Emitted(37, 22) Source(23, 50) + SourceIndex(3) +4 >Emitted(37, 23) Source(23, 72) + SourceIndex(3) --- >>> (function (someNamespace) { 1->^^^^ @@ -4394,21 +4399,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > export namespace 3 > someNamespace -1->Emitted(37, 5) Source(23, 20) + SourceIndex(3) -2 >Emitted(37, 16) Source(23, 37) + SourceIndex(3) -3 >Emitted(37, 29) Source(23, 50) + SourceIndex(3) +1->Emitted(38, 5) Source(23, 20) + SourceIndex(3) +2 >Emitted(38, 16) Source(23, 37) + SourceIndex(3) +3 >Emitted(38, 29) Source(23, 50) + SourceIndex(3) --- >>> var C = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(38, 9) Source(23, 53) + SourceIndex(3) +1->Emitted(39, 9) Source(23, 53) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(39, 13) Source(23, 53) + SourceIndex(3) +1->Emitted(40, 13) Source(23, 53) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -4416,16 +4421,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(40, 13) Source(23, 69) + SourceIndex(3) -2 >Emitted(40, 14) Source(23, 70) + SourceIndex(3) +1->Emitted(41, 13) Source(23, 69) + SourceIndex(3) +2 >Emitted(41, 14) Source(23, 70) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(41, 13) Source(23, 69) + SourceIndex(3) -2 >Emitted(41, 21) Source(23, 70) + SourceIndex(3) +1->Emitted(42, 13) Source(23, 69) + SourceIndex(3) +2 >Emitted(42, 21) Source(23, 70) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -4437,10 +4442,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(42, 9) Source(23, 69) + SourceIndex(3) -2 >Emitted(42, 10) Source(23, 70) + SourceIndex(3) -3 >Emitted(42, 10) Source(23, 53) + SourceIndex(3) -4 >Emitted(42, 14) Source(23, 70) + SourceIndex(3) +1 >Emitted(43, 9) Source(23, 69) + SourceIndex(3) +2 >Emitted(43, 10) Source(23, 70) + SourceIndex(3) +3 >Emitted(43, 10) Source(23, 53) + SourceIndex(3) +4 >Emitted(43, 14) Source(23, 70) + SourceIndex(3) --- >>> someNamespace.C = C; 1->^^^^^^^^ @@ -4452,10 +4457,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > {} 4 > -1->Emitted(43, 9) Source(23, 66) + SourceIndex(3) -2 >Emitted(43, 24) Source(23, 67) + SourceIndex(3) -3 >Emitted(43, 28) Source(23, 70) + SourceIndex(3) -4 >Emitted(43, 29) Source(23, 70) + SourceIndex(3) +1->Emitted(44, 9) Source(23, 66) + SourceIndex(3) +2 >Emitted(44, 24) Source(23, 67) + SourceIndex(3) +3 >Emitted(44, 28) Source(23, 70) + SourceIndex(3) +4 >Emitted(44, 29) Source(23, 70) + SourceIndex(3) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^ @@ -4476,15 +4481,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(44, 5) Source(23, 71) + SourceIndex(3) -2 >Emitted(44, 6) Source(23, 72) + SourceIndex(3) -3 >Emitted(44, 8) Source(23, 37) + SourceIndex(3) -4 >Emitted(44, 21) Source(23, 50) + SourceIndex(3) -5 >Emitted(44, 24) Source(23, 37) + SourceIndex(3) -6 >Emitted(44, 45) Source(23, 50) + SourceIndex(3) -7 >Emitted(44, 50) Source(23, 37) + SourceIndex(3) -8 >Emitted(44, 71) Source(23, 50) + SourceIndex(3) -9 >Emitted(44, 79) Source(23, 72) + SourceIndex(3) +1->Emitted(45, 5) Source(23, 71) + SourceIndex(3) +2 >Emitted(45, 6) Source(23, 72) + SourceIndex(3) +3 >Emitted(45, 8) Source(23, 37) + SourceIndex(3) +4 >Emitted(45, 21) Source(23, 50) + SourceIndex(3) +5 >Emitted(45, 24) Source(23, 37) + SourceIndex(3) +6 >Emitted(45, 45) Source(23, 50) + SourceIndex(3) +7 >Emitted(45, 50) Source(23, 37) + SourceIndex(3) +8 >Emitted(45, 71) Source(23, 50) + SourceIndex(3) +9 >Emitted(45, 79) Source(23, 72) + SourceIndex(3) --- >>> var someOther; 1 >^^^^ @@ -4497,10 +4502,10 @@ sourceFile:../../../second/second_part1.ts 2 > export namespace 3 > someOther 4 > .something { export class someClass {} } -1 >Emitted(45, 5) Source(24, 20) + SourceIndex(3) -2 >Emitted(45, 9) Source(24, 37) + SourceIndex(3) -3 >Emitted(45, 18) Source(24, 46) + SourceIndex(3) -4 >Emitted(45, 19) Source(24, 86) + SourceIndex(3) +1 >Emitted(46, 5) Source(24, 20) + SourceIndex(3) +2 >Emitted(46, 9) Source(24, 37) + SourceIndex(3) +3 >Emitted(46, 18) Source(24, 46) + SourceIndex(3) +4 >Emitted(46, 19) Source(24, 86) + SourceIndex(3) --- >>> (function (someOther) { 1->^^^^ @@ -4509,9 +4514,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > export namespace 3 > someOther -1->Emitted(46, 5) Source(24, 20) + SourceIndex(3) -2 >Emitted(46, 16) Source(24, 37) + SourceIndex(3) -3 >Emitted(46, 25) Source(24, 46) + SourceIndex(3) +1->Emitted(47, 5) Source(24, 20) + SourceIndex(3) +2 >Emitted(47, 16) Source(24, 37) + SourceIndex(3) +3 >Emitted(47, 25) Source(24, 46) + SourceIndex(3) --- >>> var something; 1 >^^^^^^^^ @@ -4523,10 +4528,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(47, 9) Source(24, 47) + SourceIndex(3) -2 >Emitted(47, 13) Source(24, 47) + SourceIndex(3) -3 >Emitted(47, 22) Source(24, 56) + SourceIndex(3) -4 >Emitted(47, 23) Source(24, 86) + SourceIndex(3) +1 >Emitted(48, 9) Source(24, 47) + SourceIndex(3) +2 >Emitted(48, 13) Source(24, 47) + SourceIndex(3) +3 >Emitted(48, 22) Source(24, 56) + SourceIndex(3) +4 >Emitted(48, 23) Source(24, 86) + SourceIndex(3) --- >>> (function (something) { 1->^^^^^^^^ @@ -4536,21 +4541,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(48, 9) Source(24, 47) + SourceIndex(3) -2 >Emitted(48, 20) Source(24, 47) + SourceIndex(3) -3 >Emitted(48, 29) Source(24, 56) + SourceIndex(3) +1->Emitted(49, 9) Source(24, 47) + SourceIndex(3) +2 >Emitted(49, 20) Source(24, 47) + SourceIndex(3) +3 >Emitted(49, 29) Source(24, 56) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(49, 13) Source(24, 59) + SourceIndex(3) +1->Emitted(50, 13) Source(24, 59) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(50, 17) Source(24, 59) + SourceIndex(3) +1->Emitted(51, 17) Source(24, 59) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -4558,16 +4563,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(51, 17) Source(24, 83) + SourceIndex(3) -2 >Emitted(51, 18) Source(24, 84) + SourceIndex(3) +1->Emitted(52, 17) Source(24, 83) + SourceIndex(3) +2 >Emitted(52, 18) Source(24, 84) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(52, 17) Source(24, 83) + SourceIndex(3) -2 >Emitted(52, 33) Source(24, 84) + SourceIndex(3) +1->Emitted(53, 17) Source(24, 83) + SourceIndex(3) +2 >Emitted(53, 33) Source(24, 84) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -4579,10 +4584,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(53, 13) Source(24, 83) + SourceIndex(3) -2 >Emitted(53, 14) Source(24, 84) + SourceIndex(3) -3 >Emitted(53, 14) Source(24, 59) + SourceIndex(3) -4 >Emitted(53, 18) Source(24, 84) + SourceIndex(3) +1 >Emitted(54, 13) Source(24, 83) + SourceIndex(3) +2 >Emitted(54, 14) Source(24, 84) + SourceIndex(3) +3 >Emitted(54, 14) Source(24, 59) + SourceIndex(3) +4 >Emitted(54, 18) Source(24, 84) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -4594,10 +4599,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(54, 13) Source(24, 72) + SourceIndex(3) -2 >Emitted(54, 32) Source(24, 81) + SourceIndex(3) -3 >Emitted(54, 44) Source(24, 84) + SourceIndex(3) -4 >Emitted(54, 45) Source(24, 84) + SourceIndex(3) +1->Emitted(55, 13) Source(24, 72) + SourceIndex(3) +2 >Emitted(55, 32) Source(24, 81) + SourceIndex(3) +3 >Emitted(55, 44) Source(24, 84) + SourceIndex(3) +4 >Emitted(55, 45) Source(24, 84) + SourceIndex(3) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^ @@ -4618,15 +4623,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(55, 9) Source(24, 85) + SourceIndex(3) -2 >Emitted(55, 10) Source(24, 86) + SourceIndex(3) -3 >Emitted(55, 12) Source(24, 47) + SourceIndex(3) -4 >Emitted(55, 21) Source(24, 56) + SourceIndex(3) -5 >Emitted(55, 24) Source(24, 47) + SourceIndex(3) -6 >Emitted(55, 43) Source(24, 56) + SourceIndex(3) -7 >Emitted(55, 48) Source(24, 47) + SourceIndex(3) -8 >Emitted(55, 67) Source(24, 56) + SourceIndex(3) -9 >Emitted(55, 75) Source(24, 86) + SourceIndex(3) +1->Emitted(56, 9) Source(24, 85) + SourceIndex(3) +2 >Emitted(56, 10) Source(24, 86) + SourceIndex(3) +3 >Emitted(56, 12) Source(24, 47) + SourceIndex(3) +4 >Emitted(56, 21) Source(24, 56) + SourceIndex(3) +5 >Emitted(56, 24) Source(24, 47) + SourceIndex(3) +6 >Emitted(56, 43) Source(24, 56) + SourceIndex(3) +7 >Emitted(56, 48) Source(24, 47) + SourceIndex(3) +8 >Emitted(56, 67) Source(24, 56) + SourceIndex(3) +9 >Emitted(56, 75) Source(24, 86) + SourceIndex(3) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^ @@ -4647,15 +4652,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(56, 5) Source(24, 85) + SourceIndex(3) -2 >Emitted(56, 6) Source(24, 86) + SourceIndex(3) -3 >Emitted(56, 8) Source(24, 37) + SourceIndex(3) -4 >Emitted(56, 17) Source(24, 46) + SourceIndex(3) -5 >Emitted(56, 20) Source(24, 37) + SourceIndex(3) -6 >Emitted(56, 37) Source(24, 46) + SourceIndex(3) -7 >Emitted(56, 42) Source(24, 37) + SourceIndex(3) -8 >Emitted(56, 59) Source(24, 46) + SourceIndex(3) -9 >Emitted(56, 67) Source(24, 86) + SourceIndex(3) +1 >Emitted(57, 5) Source(24, 85) + SourceIndex(3) +2 >Emitted(57, 6) Source(24, 86) + SourceIndex(3) +3 >Emitted(57, 8) Source(24, 37) + SourceIndex(3) +4 >Emitted(57, 17) Source(24, 46) + SourceIndex(3) +5 >Emitted(57, 20) Source(24, 37) + SourceIndex(3) +6 >Emitted(57, 37) Source(24, 46) + SourceIndex(3) +7 >Emitted(57, 42) Source(24, 37) + SourceIndex(3) +8 >Emitted(57, 59) Source(24, 46) + SourceIndex(3) +9 >Emitted(57, 67) Source(24, 86) + SourceIndex(3) --- >>> normalN.someImport = someNamespace.C; 1 >^^^^ @@ -4673,13 +4678,13 @@ sourceFile:../../../second/second_part1.ts 5 > . 6 > C 7 > ; -1 >Emitted(57, 5) Source(25, 34) + SourceIndex(3) -2 >Emitted(57, 23) Source(25, 44) + SourceIndex(3) -3 >Emitted(57, 26) Source(25, 47) + SourceIndex(3) -4 >Emitted(57, 39) Source(25, 60) + SourceIndex(3) -5 >Emitted(57, 40) Source(25, 61) + SourceIndex(3) -6 >Emitted(57, 41) Source(25, 62) + SourceIndex(3) -7 >Emitted(57, 42) Source(25, 63) + SourceIndex(3) +1 >Emitted(58, 5) Source(25, 34) + SourceIndex(3) +2 >Emitted(58, 23) Source(25, 44) + SourceIndex(3) +3 >Emitted(58, 26) Source(25, 47) + SourceIndex(3) +4 >Emitted(58, 39) Source(25, 60) + SourceIndex(3) +5 >Emitted(58, 40) Source(25, 61) + SourceIndex(3) +6 >Emitted(58, 41) Source(25, 62) + SourceIndex(3) +7 >Emitted(58, 42) Source(25, 63) + SourceIndex(3) --- >>> normalN.internalConst = 10; 1 >^^^^ @@ -4694,11 +4699,11 @@ sourceFile:../../../second/second_part1.ts 3 > = 4 > 10 5 > ; -1 >Emitted(58, 5) Source(27, 33) + SourceIndex(3) -2 >Emitted(58, 26) Source(27, 46) + SourceIndex(3) -3 >Emitted(58, 29) Source(27, 49) + SourceIndex(3) -4 >Emitted(58, 31) Source(27, 51) + SourceIndex(3) -5 >Emitted(58, 32) Source(27, 52) + SourceIndex(3) +1 >Emitted(59, 5) Source(27, 33) + SourceIndex(3) +2 >Emitted(59, 26) Source(27, 46) + SourceIndex(3) +3 >Emitted(59, 29) Source(27, 49) + SourceIndex(3) +4 >Emitted(59, 31) Source(27, 51) + SourceIndex(3) +5 >Emitted(59, 32) Source(27, 52) + SourceIndex(3) --- >>> var internalEnum; 1 >^^^^ @@ -4709,9 +4714,9 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ 2 > export enum 3 > internalEnum { a, b, c } -1 >Emitted(59, 5) Source(28, 20) + SourceIndex(3) -2 >Emitted(59, 9) Source(28, 32) + SourceIndex(3) -3 >Emitted(59, 21) Source(28, 56) + SourceIndex(3) +1 >Emitted(60, 5) Source(28, 20) + SourceIndex(3) +2 >Emitted(60, 9) Source(28, 32) + SourceIndex(3) +3 >Emitted(60, 21) Source(28, 56) + SourceIndex(3) --- >>> (function (internalEnum) { 1->^^^^ @@ -4721,9 +4726,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > export enum 3 > internalEnum -1->Emitted(60, 5) Source(28, 20) + SourceIndex(3) -2 >Emitted(60, 16) Source(28, 32) + SourceIndex(3) -3 >Emitted(60, 28) Source(28, 44) + SourceIndex(3) +1->Emitted(61, 5) Source(28, 20) + SourceIndex(3) +2 >Emitted(61, 16) Source(28, 32) + SourceIndex(3) +3 >Emitted(61, 28) Source(28, 44) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -4733,9 +4738,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(61, 9) Source(28, 47) + SourceIndex(3) -2 >Emitted(61, 50) Source(28, 48) + SourceIndex(3) -3 >Emitted(61, 51) Source(28, 48) + SourceIndex(3) +1->Emitted(62, 9) Source(28, 47) + SourceIndex(3) +2 >Emitted(62, 50) Source(28, 48) + SourceIndex(3) +3 >Emitted(62, 51) Source(28, 48) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -4745,9 +4750,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(62, 9) Source(28, 50) + SourceIndex(3) -2 >Emitted(62, 50) Source(28, 51) + SourceIndex(3) -3 >Emitted(62, 51) Source(28, 51) + SourceIndex(3) +1->Emitted(63, 9) Source(28, 50) + SourceIndex(3) +2 >Emitted(63, 50) Source(28, 51) + SourceIndex(3) +3 >Emitted(63, 51) Source(28, 51) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -4757,9 +4762,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(63, 9) Source(28, 53) + SourceIndex(3) -2 >Emitted(63, 50) Source(28, 54) + SourceIndex(3) -3 >Emitted(63, 51) Source(28, 54) + SourceIndex(3) +1->Emitted(64, 9) Source(28, 53) + SourceIndex(3) +2 >Emitted(64, 50) Source(28, 54) + SourceIndex(3) +3 >Emitted(64, 51) Source(28, 54) + SourceIndex(3) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^ @@ -4780,15 +4785,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(64, 5) Source(28, 55) + SourceIndex(3) -2 >Emitted(64, 6) Source(28, 56) + SourceIndex(3) -3 >Emitted(64, 8) Source(28, 32) + SourceIndex(3) -4 >Emitted(64, 20) Source(28, 44) + SourceIndex(3) -5 >Emitted(64, 23) Source(28, 32) + SourceIndex(3) -6 >Emitted(64, 43) Source(28, 44) + SourceIndex(3) -7 >Emitted(64, 48) Source(28, 32) + SourceIndex(3) -8 >Emitted(64, 68) Source(28, 44) + SourceIndex(3) -9 >Emitted(64, 76) Source(28, 56) + SourceIndex(3) +1->Emitted(65, 5) Source(28, 55) + SourceIndex(3) +2 >Emitted(65, 6) Source(28, 56) + SourceIndex(3) +3 >Emitted(65, 8) Source(28, 32) + SourceIndex(3) +4 >Emitted(65, 20) Source(28, 44) + SourceIndex(3) +5 >Emitted(65, 23) Source(28, 32) + SourceIndex(3) +6 >Emitted(65, 43) Source(28, 44) + SourceIndex(3) +7 >Emitted(65, 48) Source(28, 32) + SourceIndex(3) +8 >Emitted(65, 68) Source(28, 44) + SourceIndex(3) +9 >Emitted(65, 76) Source(28, 56) + SourceIndex(3) --- >>>})(normalN || (normalN = {})); 1 > @@ -4816,26 +4821,26 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ export const internalConst = 10; > /**@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(65, 1) Source(29, 1) + SourceIndex(3) -2 >Emitted(65, 2) Source(29, 2) + SourceIndex(3) -3 >Emitted(65, 4) Source(20, 11) + SourceIndex(3) -4 >Emitted(65, 11) Source(20, 18) + SourceIndex(3) -5 >Emitted(65, 16) Source(20, 11) + SourceIndex(3) -6 >Emitted(65, 23) Source(20, 18) + SourceIndex(3) -7 >Emitted(65, 31) Source(29, 2) + SourceIndex(3) +1 >Emitted(66, 1) Source(29, 1) + SourceIndex(3) +2 >Emitted(66, 2) Source(29, 2) + SourceIndex(3) +3 >Emitted(66, 4) Source(20, 11) + SourceIndex(3) +4 >Emitted(66, 11) Source(20, 18) + SourceIndex(3) +5 >Emitted(66, 16) Source(20, 11) + SourceIndex(3) +6 >Emitted(66, 23) Source(20, 18) + SourceIndex(3) +7 >Emitted(66, 31) Source(29, 2) + SourceIndex(3) --- >>>var internalC = (function () { 1-> 2 >^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> >/**@internal*/ -1->Emitted(66, 1) Source(30, 16) + SourceIndex(3) +1->Emitted(67, 1) Source(30, 16) + SourceIndex(3) --- >>> function internalC() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(67, 5) Source(30, 16) + SourceIndex(3) +1->Emitted(68, 5) Source(30, 16) + SourceIndex(3) --- >>> } 1->^^^^ @@ -4843,16 +4848,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->class internalC { 2 > } -1->Emitted(68, 5) Source(30, 33) + SourceIndex(3) -2 >Emitted(68, 6) Source(30, 34) + SourceIndex(3) +1->Emitted(69, 5) Source(30, 33) + SourceIndex(3) +2 >Emitted(69, 6) Source(30, 34) + SourceIndex(3) --- >>> return internalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(69, 5) Source(30, 33) + SourceIndex(3) -2 >Emitted(69, 21) Source(30, 34) + SourceIndex(3) +1->Emitted(70, 5) Source(30, 33) + SourceIndex(3) +2 >Emitted(70, 21) Source(30, 34) + SourceIndex(3) --- >>>}()); 1 > @@ -4864,10 +4869,10 @@ sourceFile:../../../second/second_part1.ts 2 >} 3 > 4 > class internalC {} -1 >Emitted(70, 1) Source(30, 33) + SourceIndex(3) -2 >Emitted(70, 2) Source(30, 34) + SourceIndex(3) -3 >Emitted(70, 2) Source(30, 16) + SourceIndex(3) -4 >Emitted(70, 6) Source(30, 34) + SourceIndex(3) +1 >Emitted(71, 1) Source(30, 33) + SourceIndex(3) +2 >Emitted(71, 2) Source(30, 34) + SourceIndex(3) +3 >Emitted(71, 2) Source(30, 16) + SourceIndex(3) +4 >Emitted(71, 6) Source(30, 34) + SourceIndex(3) --- >>>function internalfoo() { } 1-> @@ -4881,11 +4886,11 @@ sourceFile:../../../second/second_part1.ts 3 > internalfoo 4 > () { 5 > } -1->Emitted(71, 1) Source(31, 16) + SourceIndex(3) -2 >Emitted(71, 10) Source(31, 25) + SourceIndex(3) -3 >Emitted(71, 21) Source(31, 36) + SourceIndex(3) -4 >Emitted(71, 26) Source(31, 40) + SourceIndex(3) -5 >Emitted(71, 27) Source(31, 41) + SourceIndex(3) +1->Emitted(72, 1) Source(31, 16) + SourceIndex(3) +2 >Emitted(72, 10) Source(31, 25) + SourceIndex(3) +3 >Emitted(72, 21) Source(31, 36) + SourceIndex(3) +4 >Emitted(72, 26) Source(31, 40) + SourceIndex(3) +5 >Emitted(72, 27) Source(31, 41) + SourceIndex(3) --- >>>var internalNamespace; 1 > @@ -4898,10 +4903,10 @@ sourceFile:../../../second/second_part1.ts 2 >namespace 3 > internalNamespace 4 > { export class someClass {} } -1 >Emitted(72, 1) Source(32, 16) + SourceIndex(3) -2 >Emitted(72, 5) Source(32, 26) + SourceIndex(3) -3 >Emitted(72, 22) Source(32, 43) + SourceIndex(3) -4 >Emitted(72, 23) Source(32, 73) + SourceIndex(3) +1 >Emitted(73, 1) Source(32, 16) + SourceIndex(3) +2 >Emitted(73, 5) Source(32, 26) + SourceIndex(3) +3 >Emitted(73, 22) Source(32, 43) + SourceIndex(3) +4 >Emitted(73, 23) Source(32, 73) + SourceIndex(3) --- >>>(function (internalNamespace) { 1-> @@ -4911,21 +4916,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > internalNamespace -1->Emitted(73, 1) Source(32, 16) + SourceIndex(3) -2 >Emitted(73, 12) Source(32, 26) + SourceIndex(3) -3 >Emitted(73, 29) Source(32, 43) + SourceIndex(3) +1->Emitted(74, 1) Source(32, 16) + SourceIndex(3) +2 >Emitted(74, 12) Source(32, 26) + SourceIndex(3) +3 >Emitted(74, 29) Source(32, 43) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(74, 5) Source(32, 46) + SourceIndex(3) +1->Emitted(75, 5) Source(32, 46) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(75, 9) Source(32, 46) + SourceIndex(3) +1->Emitted(76, 9) Source(32, 46) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -4933,16 +4938,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(76, 9) Source(32, 70) + SourceIndex(3) -2 >Emitted(76, 10) Source(32, 71) + SourceIndex(3) +1->Emitted(77, 9) Source(32, 70) + SourceIndex(3) +2 >Emitted(77, 10) Source(32, 71) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(77, 9) Source(32, 70) + SourceIndex(3) -2 >Emitted(77, 25) Source(32, 71) + SourceIndex(3) +1->Emitted(78, 9) Source(32, 70) + SourceIndex(3) +2 >Emitted(78, 25) Source(32, 71) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -4954,10 +4959,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(78, 5) Source(32, 70) + SourceIndex(3) -2 >Emitted(78, 6) Source(32, 71) + SourceIndex(3) -3 >Emitted(78, 6) Source(32, 46) + SourceIndex(3) -4 >Emitted(78, 10) Source(32, 71) + SourceIndex(3) +1 >Emitted(79, 5) Source(32, 70) + SourceIndex(3) +2 >Emitted(79, 6) Source(32, 71) + SourceIndex(3) +3 >Emitted(79, 6) Source(32, 46) + SourceIndex(3) +4 >Emitted(79, 10) Source(32, 71) + SourceIndex(3) --- >>> internalNamespace.someClass = someClass; 1->^^^^ @@ -4969,10 +4974,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(79, 5) Source(32, 59) + SourceIndex(3) -2 >Emitted(79, 32) Source(32, 68) + SourceIndex(3) -3 >Emitted(79, 44) Source(32, 71) + SourceIndex(3) -4 >Emitted(79, 45) Source(32, 71) + SourceIndex(3) +1->Emitted(80, 5) Source(32, 59) + SourceIndex(3) +2 >Emitted(80, 32) Source(32, 68) + SourceIndex(3) +3 >Emitted(80, 44) Source(32, 71) + SourceIndex(3) +4 >Emitted(80, 45) Source(32, 71) + SourceIndex(3) --- >>>})(internalNamespace || (internalNamespace = {})); 1-> @@ -4989,13 +4994,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalNamespace 7 > { export class someClass {} } -1->Emitted(80, 1) Source(32, 72) + SourceIndex(3) -2 >Emitted(80, 2) Source(32, 73) + SourceIndex(3) -3 >Emitted(80, 4) Source(32, 26) + SourceIndex(3) -4 >Emitted(80, 21) Source(32, 43) + SourceIndex(3) -5 >Emitted(80, 26) Source(32, 26) + SourceIndex(3) -6 >Emitted(80, 43) Source(32, 43) + SourceIndex(3) -7 >Emitted(80, 51) Source(32, 73) + SourceIndex(3) +1->Emitted(81, 1) Source(32, 72) + SourceIndex(3) +2 >Emitted(81, 2) Source(32, 73) + SourceIndex(3) +3 >Emitted(81, 4) Source(32, 26) + SourceIndex(3) +4 >Emitted(81, 21) Source(32, 43) + SourceIndex(3) +5 >Emitted(81, 26) Source(32, 26) + SourceIndex(3) +6 >Emitted(81, 43) Source(32, 43) + SourceIndex(3) +7 >Emitted(81, 51) Source(32, 73) + SourceIndex(3) --- >>>var internalOther; 1 > @@ -5008,10 +5013,10 @@ sourceFile:../../../second/second_part1.ts 2 >namespace 3 > internalOther 4 > .something { export class someClass {} } -1 >Emitted(81, 1) Source(33, 16) + SourceIndex(3) -2 >Emitted(81, 5) Source(33, 26) + SourceIndex(3) -3 >Emitted(81, 18) Source(33, 39) + SourceIndex(3) -4 >Emitted(81, 19) Source(33, 79) + SourceIndex(3) +1 >Emitted(82, 1) Source(33, 16) + SourceIndex(3) +2 >Emitted(82, 5) Source(33, 26) + SourceIndex(3) +3 >Emitted(82, 18) Source(33, 39) + SourceIndex(3) +4 >Emitted(82, 19) Source(33, 79) + SourceIndex(3) --- >>>(function (internalOther) { 1-> @@ -5020,9 +5025,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > internalOther -1->Emitted(82, 1) Source(33, 16) + SourceIndex(3) -2 >Emitted(82, 12) Source(33, 26) + SourceIndex(3) -3 >Emitted(82, 25) Source(33, 39) + SourceIndex(3) +1->Emitted(83, 1) Source(33, 16) + SourceIndex(3) +2 >Emitted(83, 12) Source(33, 26) + SourceIndex(3) +3 >Emitted(83, 25) Source(33, 39) + SourceIndex(3) --- >>> var something; 1 >^^^^ @@ -5034,10 +5039,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(83, 5) Source(33, 40) + SourceIndex(3) -2 >Emitted(83, 9) Source(33, 40) + SourceIndex(3) -3 >Emitted(83, 18) Source(33, 49) + SourceIndex(3) -4 >Emitted(83, 19) Source(33, 79) + SourceIndex(3) +1 >Emitted(84, 5) Source(33, 40) + SourceIndex(3) +2 >Emitted(84, 9) Source(33, 40) + SourceIndex(3) +3 >Emitted(84, 18) Source(33, 49) + SourceIndex(3) +4 >Emitted(84, 19) Source(33, 79) + SourceIndex(3) --- >>> (function (something) { 1->^^^^ @@ -5047,21 +5052,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(84, 5) Source(33, 40) + SourceIndex(3) -2 >Emitted(84, 16) Source(33, 40) + SourceIndex(3) -3 >Emitted(84, 25) Source(33, 49) + SourceIndex(3) +1->Emitted(85, 5) Source(33, 40) + SourceIndex(3) +2 >Emitted(85, 16) Source(33, 40) + SourceIndex(3) +3 >Emitted(85, 25) Source(33, 49) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(85, 9) Source(33, 52) + SourceIndex(3) +1->Emitted(86, 9) Source(33, 52) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(86, 13) Source(33, 52) + SourceIndex(3) +1->Emitted(87, 13) Source(33, 52) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -5069,16 +5074,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(87, 13) Source(33, 76) + SourceIndex(3) -2 >Emitted(87, 14) Source(33, 77) + SourceIndex(3) +1->Emitted(88, 13) Source(33, 76) + SourceIndex(3) +2 >Emitted(88, 14) Source(33, 77) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(88, 13) Source(33, 76) + SourceIndex(3) -2 >Emitted(88, 29) Source(33, 77) + SourceIndex(3) +1->Emitted(89, 13) Source(33, 76) + SourceIndex(3) +2 >Emitted(89, 29) Source(33, 77) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -5090,10 +5095,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(89, 9) Source(33, 76) + SourceIndex(3) -2 >Emitted(89, 10) Source(33, 77) + SourceIndex(3) -3 >Emitted(89, 10) Source(33, 52) + SourceIndex(3) -4 >Emitted(89, 14) Source(33, 77) + SourceIndex(3) +1 >Emitted(90, 9) Source(33, 76) + SourceIndex(3) +2 >Emitted(90, 10) Source(33, 77) + SourceIndex(3) +3 >Emitted(90, 10) Source(33, 52) + SourceIndex(3) +4 >Emitted(90, 14) Source(33, 77) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^ @@ -5105,10 +5110,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(90, 9) Source(33, 65) + SourceIndex(3) -2 >Emitted(90, 28) Source(33, 74) + SourceIndex(3) -3 >Emitted(90, 40) Source(33, 77) + SourceIndex(3) -4 >Emitted(90, 41) Source(33, 77) + SourceIndex(3) +1->Emitted(91, 9) Source(33, 65) + SourceIndex(3) +2 >Emitted(91, 28) Source(33, 74) + SourceIndex(3) +3 >Emitted(91, 40) Source(33, 77) + SourceIndex(3) +4 >Emitted(91, 41) Source(33, 77) + SourceIndex(3) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^ @@ -5129,15 +5134,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(91, 5) Source(33, 78) + SourceIndex(3) -2 >Emitted(91, 6) Source(33, 79) + SourceIndex(3) -3 >Emitted(91, 8) Source(33, 40) + SourceIndex(3) -4 >Emitted(91, 17) Source(33, 49) + SourceIndex(3) -5 >Emitted(91, 20) Source(33, 40) + SourceIndex(3) -6 >Emitted(91, 43) Source(33, 49) + SourceIndex(3) -7 >Emitted(91, 48) Source(33, 40) + SourceIndex(3) -8 >Emitted(91, 71) Source(33, 49) + SourceIndex(3) -9 >Emitted(91, 79) Source(33, 79) + SourceIndex(3) +1->Emitted(92, 5) Source(33, 78) + SourceIndex(3) +2 >Emitted(92, 6) Source(33, 79) + SourceIndex(3) +3 >Emitted(92, 8) Source(33, 40) + SourceIndex(3) +4 >Emitted(92, 17) Source(33, 49) + SourceIndex(3) +5 >Emitted(92, 20) Source(33, 40) + SourceIndex(3) +6 >Emitted(92, 43) Source(33, 49) + SourceIndex(3) +7 >Emitted(92, 48) Source(33, 40) + SourceIndex(3) +8 >Emitted(92, 71) Source(33, 49) + SourceIndex(3) +9 >Emitted(92, 79) Source(33, 79) + SourceIndex(3) --- >>>})(internalOther || (internalOther = {})); 1 > @@ -5155,13 +5160,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalOther 7 > .something { export class someClass {} } -1 >Emitted(92, 1) Source(33, 78) + SourceIndex(3) -2 >Emitted(92, 2) Source(33, 79) + SourceIndex(3) -3 >Emitted(92, 4) Source(33, 26) + SourceIndex(3) -4 >Emitted(92, 17) Source(33, 39) + SourceIndex(3) -5 >Emitted(92, 22) Source(33, 26) + SourceIndex(3) -6 >Emitted(92, 35) Source(33, 39) + SourceIndex(3) -7 >Emitted(92, 43) Source(33, 79) + SourceIndex(3) +1 >Emitted(93, 1) Source(33, 78) + SourceIndex(3) +2 >Emitted(93, 2) Source(33, 79) + SourceIndex(3) +3 >Emitted(93, 4) Source(33, 26) + SourceIndex(3) +4 >Emitted(93, 17) Source(33, 39) + SourceIndex(3) +5 >Emitted(93, 22) Source(33, 26) + SourceIndex(3) +6 >Emitted(93, 35) Source(33, 39) + SourceIndex(3) +7 >Emitted(93, 43) Source(33, 79) + SourceIndex(3) --- >>>var internalImport = internalNamespace.someClass; 1-> @@ -5181,14 +5186,14 @@ sourceFile:../../../second/second_part1.ts 6 > . 7 > someClass 8 > ; -1->Emitted(93, 1) Source(34, 16) + SourceIndex(3) -2 >Emitted(93, 5) Source(34, 23) + SourceIndex(3) -3 >Emitted(93, 19) Source(34, 37) + SourceIndex(3) -4 >Emitted(93, 22) Source(34, 40) + SourceIndex(3) -5 >Emitted(93, 39) Source(34, 57) + SourceIndex(3) -6 >Emitted(93, 40) Source(34, 58) + SourceIndex(3) -7 >Emitted(93, 49) Source(34, 67) + SourceIndex(3) -8 >Emitted(93, 50) Source(34, 68) + SourceIndex(3) +1->Emitted(94, 1) Source(34, 16) + SourceIndex(3) +2 >Emitted(94, 5) Source(34, 23) + SourceIndex(3) +3 >Emitted(94, 19) Source(34, 37) + SourceIndex(3) +4 >Emitted(94, 22) Source(34, 40) + SourceIndex(3) +5 >Emitted(94, 39) Source(34, 57) + SourceIndex(3) +6 >Emitted(94, 40) Source(34, 58) + SourceIndex(3) +7 >Emitted(94, 49) Source(34, 67) + SourceIndex(3) +8 >Emitted(94, 50) Source(34, 68) + SourceIndex(3) --- >>>var internalConst = 10; 1 > @@ -5205,12 +5210,12 @@ sourceFile:../../../second/second_part1.ts 4 > = 5 > 10 6 > ; -1 >Emitted(94, 1) Source(36, 16) + SourceIndex(3) -2 >Emitted(94, 5) Source(36, 22) + SourceIndex(3) -3 >Emitted(94, 18) Source(36, 35) + SourceIndex(3) -4 >Emitted(94, 21) Source(36, 38) + SourceIndex(3) -5 >Emitted(94, 23) Source(36, 40) + SourceIndex(3) -6 >Emitted(94, 24) Source(36, 41) + SourceIndex(3) +1 >Emitted(95, 1) Source(36, 16) + SourceIndex(3) +2 >Emitted(95, 5) Source(36, 22) + SourceIndex(3) +3 >Emitted(95, 18) Source(36, 35) + SourceIndex(3) +4 >Emitted(95, 21) Source(36, 38) + SourceIndex(3) +5 >Emitted(95, 23) Source(36, 40) + SourceIndex(3) +6 >Emitted(95, 24) Source(36, 41) + SourceIndex(3) --- >>>var internalEnum; 1 > @@ -5221,9 +5226,9 @@ sourceFile:../../../second/second_part1.ts >/**@internal*/ 2 >enum 3 > internalEnum { a, b, c } -1 >Emitted(95, 1) Source(37, 16) + SourceIndex(3) -2 >Emitted(95, 5) Source(37, 21) + SourceIndex(3) -3 >Emitted(95, 17) Source(37, 45) + SourceIndex(3) +1 >Emitted(96, 1) Source(37, 16) + SourceIndex(3) +2 >Emitted(96, 5) Source(37, 21) + SourceIndex(3) +3 >Emitted(96, 17) Source(37, 45) + SourceIndex(3) --- >>>(function (internalEnum) { 1-> @@ -5233,9 +5238,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >enum 3 > internalEnum -1->Emitted(96, 1) Source(37, 16) + SourceIndex(3) -2 >Emitted(96, 12) Source(37, 21) + SourceIndex(3) -3 >Emitted(96, 24) Source(37, 33) + SourceIndex(3) +1->Emitted(97, 1) Source(37, 16) + SourceIndex(3) +2 >Emitted(97, 12) Source(37, 21) + SourceIndex(3) +3 >Emitted(97, 24) Source(37, 33) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^ @@ -5245,9 +5250,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(97, 5) Source(37, 36) + SourceIndex(3) -2 >Emitted(97, 46) Source(37, 37) + SourceIndex(3) -3 >Emitted(97, 47) Source(37, 37) + SourceIndex(3) +1->Emitted(98, 5) Source(37, 36) + SourceIndex(3) +2 >Emitted(98, 46) Source(37, 37) + SourceIndex(3) +3 >Emitted(98, 47) Source(37, 37) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^ @@ -5257,9 +5262,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(98, 5) Source(37, 39) + SourceIndex(3) -2 >Emitted(98, 46) Source(37, 40) + SourceIndex(3) -3 >Emitted(98, 47) Source(37, 40) + SourceIndex(3) +1->Emitted(99, 5) Source(37, 39) + SourceIndex(3) +2 >Emitted(99, 46) Source(37, 40) + SourceIndex(3) +3 >Emitted(99, 47) Source(37, 40) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^ @@ -5268,9 +5273,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(99, 5) Source(37, 42) + SourceIndex(3) -2 >Emitted(99, 46) Source(37, 43) + SourceIndex(3) -3 >Emitted(99, 47) Source(37, 43) + SourceIndex(3) +1->Emitted(100, 5) Source(37, 42) + SourceIndex(3) +2 >Emitted(100, 46) Source(37, 43) + SourceIndex(3) +3 >Emitted(100, 47) Source(37, 43) + SourceIndex(3) --- >>>})(internalEnum || (internalEnum = {})); 1 > @@ -5287,13 +5292,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalEnum 7 > { a, b, c } -1 >Emitted(100, 1) Source(37, 44) + SourceIndex(3) -2 >Emitted(100, 2) Source(37, 45) + SourceIndex(3) -3 >Emitted(100, 4) Source(37, 21) + SourceIndex(3) -4 >Emitted(100, 16) Source(37, 33) + SourceIndex(3) -5 >Emitted(100, 21) Source(37, 21) + SourceIndex(3) -6 >Emitted(100, 33) Source(37, 33) + SourceIndex(3) -7 >Emitted(100, 41) Source(37, 45) + SourceIndex(3) +1 >Emitted(101, 1) Source(37, 44) + SourceIndex(3) +2 >Emitted(101, 2) Source(37, 45) + SourceIndex(3) +3 >Emitted(101, 4) Source(37, 21) + SourceIndex(3) +4 >Emitted(101, 16) Source(37, 33) + SourceIndex(3) +5 >Emitted(101, 21) Source(37, 21) + SourceIndex(3) +6 >Emitted(101, 33) Source(37, 33) + SourceIndex(3) +7 >Emitted(101, 41) Source(37, 45) + SourceIndex(3) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -5303,13 +5308,13 @@ sourceFile:../../../second/second_part2.ts 1 > 2 >^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(101, 1) Source(1, 1) + SourceIndex(4) +1 >Emitted(102, 1) Source(1, 1) + SourceIndex(4) --- >>> function C() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(102, 5) Source(1, 1) + SourceIndex(4) +1->Emitted(103, 5) Source(1, 1) + SourceIndex(4) --- >>> } 1->^^^^ @@ -5321,8 +5326,8 @@ sourceFile:../../../second/second_part2.ts > } > 2 > } -1->Emitted(103, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(103, 6) Source(5, 2) + SourceIndex(4) +1->Emitted(104, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(104, 6) Source(5, 2) + SourceIndex(4) --- >>> C.prototype.doSomething = function () { 1->^^^^ @@ -5332,9 +5337,9 @@ sourceFile:../../../second/second_part2.ts 1-> 2 > doSomething 3 > -1->Emitted(104, 5) Source(2, 5) + SourceIndex(4) -2 >Emitted(104, 28) Source(2, 16) + SourceIndex(4) -3 >Emitted(104, 31) Source(2, 5) + SourceIndex(4) +1->Emitted(105, 5) Source(2, 5) + SourceIndex(4) +2 >Emitted(105, 28) Source(2, 16) + SourceIndex(4) +3 >Emitted(105, 31) Source(2, 5) + SourceIndex(4) --- >>> console.log("something got done"); 1->^^^^^^^^ @@ -5354,14 +5359,14 @@ sourceFile:../../../second/second_part2.ts 6 > "something got done" 7 > ) 8 > ; -1->Emitted(105, 9) Source(3, 9) + SourceIndex(4) -2 >Emitted(105, 16) Source(3, 16) + SourceIndex(4) -3 >Emitted(105, 17) Source(3, 17) + SourceIndex(4) -4 >Emitted(105, 20) Source(3, 20) + SourceIndex(4) -5 >Emitted(105, 21) Source(3, 21) + SourceIndex(4) -6 >Emitted(105, 41) Source(3, 41) + SourceIndex(4) -7 >Emitted(105, 42) Source(3, 42) + SourceIndex(4) -8 >Emitted(105, 43) Source(3, 43) + SourceIndex(4) +1->Emitted(106, 9) Source(3, 9) + SourceIndex(4) +2 >Emitted(106, 16) Source(3, 16) + SourceIndex(4) +3 >Emitted(106, 17) Source(3, 17) + SourceIndex(4) +4 >Emitted(106, 20) Source(3, 20) + SourceIndex(4) +5 >Emitted(106, 21) Source(3, 21) + SourceIndex(4) +6 >Emitted(106, 41) Source(3, 41) + SourceIndex(4) +7 >Emitted(106, 42) Source(3, 42) + SourceIndex(4) +8 >Emitted(106, 43) Source(3, 43) + SourceIndex(4) --- >>> }; 1 >^^^^ @@ -5370,8 +5375,8 @@ sourceFile:../../../second/second_part2.ts 1 > > 2 > } -1 >Emitted(106, 5) Source(4, 5) + SourceIndex(4) -2 >Emitted(106, 6) Source(4, 6) + SourceIndex(4) +1 >Emitted(107, 5) Source(4, 5) + SourceIndex(4) +2 >Emitted(107, 6) Source(4, 6) + SourceIndex(4) --- >>> return C; 1->^^^^ @@ -5379,8 +5384,8 @@ sourceFile:../../../second/second_part2.ts 1-> > 2 > } -1->Emitted(107, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(107, 13) Source(5, 2) + SourceIndex(4) +1->Emitted(108, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(108, 13) Source(5, 2) + SourceIndex(4) --- >>>}()); 1 > @@ -5396,10 +5401,10 @@ sourceFile:../../../second/second_part2.ts > console.log("something got done"); > } > } -1 >Emitted(108, 1) Source(5, 1) + SourceIndex(4) -2 >Emitted(108, 2) Source(5, 2) + SourceIndex(4) -3 >Emitted(108, 2) Source(1, 1) + SourceIndex(4) -4 >Emitted(108, 6) Source(5, 2) + SourceIndex(4) +1 >Emitted(109, 1) Source(5, 1) + SourceIndex(4) +2 >Emitted(109, 2) Source(5, 2) + SourceIndex(4) +3 >Emitted(109, 2) Source(1, 1) + SourceIndex(4) +4 >Emitted(109, 6) Source(5, 2) + SourceIndex(4) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -5423,14 +5428,14 @@ sourceFile:../../third_part1.ts 6 > C 7 > () 8 > ; -1->Emitted(109, 1) Source(1, 1) + SourceIndex(5) -2 >Emitted(109, 5) Source(1, 5) + SourceIndex(5) -3 >Emitted(109, 6) Source(1, 6) + SourceIndex(5) -4 >Emitted(109, 9) Source(1, 9) + SourceIndex(5) -5 >Emitted(109, 13) Source(1, 13) + SourceIndex(5) -6 >Emitted(109, 14) Source(1, 14) + SourceIndex(5) -7 >Emitted(109, 16) Source(1, 16) + SourceIndex(5) -8 >Emitted(109, 17) Source(1, 17) + SourceIndex(5) +1->Emitted(110, 1) Source(1, 1) + SourceIndex(5) +2 >Emitted(110, 5) Source(1, 5) + SourceIndex(5) +3 >Emitted(110, 6) Source(1, 6) + SourceIndex(5) +4 >Emitted(110, 9) Source(1, 9) + SourceIndex(5) +5 >Emitted(110, 13) Source(1, 13) + SourceIndex(5) +6 >Emitted(110, 14) Source(1, 14) + SourceIndex(5) +7 >Emitted(110, 16) Source(1, 16) + SourceIndex(5) +8 >Emitted(110, 17) Source(1, 17) + SourceIndex(5) --- >>>c.doSomething(); 1-> @@ -5447,12 +5452,12 @@ sourceFile:../../third_part1.ts 4 > doSomething 5 > () 6 > ; -1->Emitted(110, 1) Source(2, 1) + SourceIndex(5) -2 >Emitted(110, 2) Source(2, 2) + SourceIndex(5) -3 >Emitted(110, 3) Source(2, 3) + SourceIndex(5) -4 >Emitted(110, 14) Source(2, 14) + SourceIndex(5) -5 >Emitted(110, 16) Source(2, 16) + SourceIndex(5) -6 >Emitted(110, 17) Source(2, 17) + SourceIndex(5) +1->Emitted(111, 1) Source(2, 1) + SourceIndex(5) +2 >Emitted(111, 2) Source(2, 2) + SourceIndex(5) +3 >Emitted(111, 3) Source(2, 3) + SourceIndex(5) +4 >Emitted(111, 14) Source(2, 14) + SourceIndex(5) +5 >Emitted(111, 16) Source(2, 16) + SourceIndex(5) +6 >Emitted(111, 17) Source(2, 17) + SourceIndex(5) --- >>>//# sourceMappingURL=third-output.js.map @@ -5467,20 +5472,20 @@ sourceFile:../../third_part1.ts "sections": [ { "pos": 0, - "end": 3163, + "end": 3211, "kind": "prepend", "data": "../../../2/second-output.js", "texts": [ { "pos": 0, - "end": 3163, + "end": 3211, "kind": "text" } ] }, { - "pos": 3163, - "end": 3199, + "pos": 3211, + "end": 3247, "kind": "text" } ] @@ -5515,9 +5520,9 @@ sourceFile:../../third_part1.ts ====================================================================== File:: /src/third/thirdjs/output/third-output.js ---------------------------------------------------------------------- -prepend: (0-3163):: ../../../2/second-output.js texts:: 1 +prepend: (0-3211):: ../../../2/second-output.js texts:: 1 >>-------------------------------------------------------------------- -text: (0-3163) +text: (0-3211) var s = "Hello, world"; console.log(s); console.log(f()); @@ -5534,8 +5539,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -5628,7 +5634,7 @@ var C = (function () { }()); ---------------------------------------------------------------------- -text: (3163-3199) +text: (3211-3247) var c = new C(); c.doSomething(); diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-comment.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-comment.js index dfc58c8d63287..d74403c7ea08e 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-comment.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-comment.js @@ -939,8 +939,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -1034,7 +1035,7 @@ var C = (function () { //# sourceMappingURL=second-output.js.map //// [/src/2/second-output.js.map] -{"version":3,"file":"second-output.js","sourceRoot":"","sources":["../second/second_part1.ts","../second/second_part2.ts"],"names":[],"mappings":"AAIA,IAAU,CAAC,CAMV;AAND,WAAU,CAAC;IACP,SAAS,CAAC;QACN,OAAO,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;IAC3B,CAAC;IAED,CAAC,EAAE,CAAC;AACR,CAAC,EANS,CAAC,KAAD,CAAC,QAMV;AAED;IACmB;IAAgB,CAAC;IAEjB,wBAAM,GAAN,cAAW,CAAC;IACZ,sBAAI,sBAAC;aAAL,cAAU,OAAO,EAAE,CAAC,CAAC,CAAC;aACtB,UAAM,GAAW,IAAI,CAAC;;;OADA;IAEzC,cAAC;AAAD,CAAC,AAND,IAMC;AACD,IAAU,OAAO,CAShB;AATD,WAAU,OAAO;IACE;QAAA;QAAiB,CAAC;QAAD,QAAC;IAAD,CAAC,AAAlB,IAAkB;IAAL,SAAC,IAAI,CAAA;IAClB,SAAgB,GAAG,KAAI,CAAC;IAAR,WAAG,MAAK,CAAA;IACxB,IAAiB,aAAa,CAAsB;IAApD,WAAiB,aAAa;QAAG;YAAA;YAAgB,CAAC;YAAD,QAAC;QAAD,CAAC,AAAjB,IAAiB;QAAJ,eAAC,IAAG,CAAA;IAAC,CAAC,EAAnC,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAAsB;IACpD,IAAiB,SAAS,CAAwC;IAAlE,WAAiB,SAAS;QAAC,IAAA,SAAS,CAA8B;QAAvC,WAAA,SAAS;YAAG;gBAAA;gBAAwB,CAAC;gBAAD,gBAAC;YAAD,CAAC,AAAzB,IAAyB;YAAZ,mBAAS,YAAG,CAAA;QAAC,CAAC,EAAvC,SAAS,GAAT,mBAAS,KAAT,mBAAS,QAA8B;IAAD,CAAC,EAAjD,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAAwC;IACpD,kBAAU,GAAG,aAAa,CAAC,CAAC,CAAC;IAE9B,qBAAa,GAAG,EAAE,CAAC;IAChC,IAAY,YAAwB;IAApC,WAAY,YAAY;QAAG,yCAAC,CAAA;QAAE,yCAAC,CAAA;QAAE,yCAAC,CAAA;IAAC,CAAC,EAAxB,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAAY;AACvD,CAAC,EATS,OAAO,KAAP,OAAO,QAShB;AACc;IAAA;IAAiB,CAAC;IAAD,gBAAC;AAAD,CAAC,AAAlB,IAAkB;AAClB,SAAS,WAAW,KAAI,CAAC;AACzB,IAAU,iBAAiB,CAA8B;AAAzD,WAAU,iBAAiB;IAAG;QAAA;QAAwB,CAAC;QAAD,gBAAC;IAAD,CAAC,AAAzB,IAAyB;IAAZ,2BAAS,YAAG,CAAA;AAAC,CAAC,EAA/C,iBAAiB,KAAjB,iBAAiB,QAA8B;AACzD,IAAU,aAAa,CAAwC;AAA/D,WAAU,aAAa;IAAC,IAAA,SAAS,CAA8B;IAAvC,WAAA,SAAS;QAAG;YAAA;YAAwB,CAAC;YAAD,gBAAC;QAAD,CAAC,AAAzB,IAAyB;QAAZ,mBAAS,YAAG,CAAA;IAAC,CAAC,EAAvC,SAAS,GAAT,uBAAS,KAAT,uBAAS,QAA8B;AAAD,CAAC,EAArD,aAAa,KAAb,aAAa,QAAwC;AAC/D,IAAO,cAAc,GAAG,iBAAiB,CAAC,SAAS,CAAC;AAEpD,IAAM,aAAa,GAAG,EAAE,CAAC;AACzB,IAAK,YAAwB;AAA7B,WAAK,YAAY;IAAG,yCAAC,CAAA;IAAE,yCAAC,CAAA;IAAE,yCAAC,CAAA;AAAC,CAAC,EAAxB,YAAY,KAAZ,YAAY,QAAY;ACpC5C;IAAA;IAIA,CAAC;IAHG,uBAAW,GAAX;QACI,OAAO,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAC;IACtC,CAAC;IACL,QAAC;AAAD,CAAC,AAJD,IAIC"} +{"version":3,"file":"second-output.js","sourceRoot":"","sources":["../second/second_part1.ts","../second/second_part2.ts"],"names":[],"mappings":"AAIA,IAAU,CAAC,CAMV;AAND,WAAU,CAAC;IACP,SAAS,CAAC;QACN,OAAO,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;IAC3B,CAAC;IAED,CAAC,EAAE,CAAC;AACR,CAAC,EANS,CAAC,KAAD,CAAC,QAMV;AAED;IACmB;IAAgB,CAAC;;IAEjB,wBAAM,GAAN,cAAW,CAAC;IACZ,sBAAI,sBAAC;aAAL,cAAU,OAAO,EAAE,CAAC,CAAC,CAAC;aACtB,UAAM,GAAW,IAAI,CAAC;;;OADA;IAEzC,cAAC;AAAD,CAAC,AAND,IAMC;AACD,IAAU,OAAO,CAShB;AATD,WAAU,OAAO;IACE;QAAA;QAAiB,CAAC;QAAD,QAAC;IAAD,CAAC,AAAlB,IAAkB;IAAL,SAAC,IAAI,CAAA;IAClB,SAAgB,GAAG,KAAI,CAAC;IAAR,WAAG,MAAK,CAAA;IACxB,IAAiB,aAAa,CAAsB;IAApD,WAAiB,aAAa;QAAG;YAAA;YAAgB,CAAC;YAAD,QAAC;QAAD,CAAC,AAAjB,IAAiB;QAAJ,eAAC,IAAG,CAAA;IAAC,CAAC,EAAnC,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAAsB;IACpD,IAAiB,SAAS,CAAwC;IAAlE,WAAiB,SAAS;QAAC,IAAA,SAAS,CAA8B;QAAvC,WAAA,SAAS;YAAG;gBAAA;gBAAwB,CAAC;gBAAD,gBAAC;YAAD,CAAC,AAAzB,IAAyB;YAAZ,mBAAS,YAAG,CAAA;QAAC,CAAC,EAAvC,SAAS,GAAT,mBAAS,KAAT,mBAAS,QAA8B;IAAD,CAAC,EAAjD,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAAwC;IACpD,kBAAU,GAAG,aAAa,CAAC,CAAC,CAAC;IAE9B,qBAAa,GAAG,EAAE,CAAC;IAChC,IAAY,YAAwB;IAApC,WAAY,YAAY;QAAG,yCAAC,CAAA;QAAE,yCAAC,CAAA;QAAE,yCAAC,CAAA;IAAC,CAAC,EAAxB,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAAY;AACvD,CAAC,EATS,OAAO,KAAP,OAAO,QAShB;AACc;IAAA;IAAiB,CAAC;IAAD,gBAAC;AAAD,CAAC,AAAlB,IAAkB;AAClB,SAAS,WAAW,KAAI,CAAC;AACzB,IAAU,iBAAiB,CAA8B;AAAzD,WAAU,iBAAiB;IAAG;QAAA;QAAwB,CAAC;QAAD,gBAAC;IAAD,CAAC,AAAzB,IAAyB;IAAZ,2BAAS,YAAG,CAAA;AAAC,CAAC,EAA/C,iBAAiB,KAAjB,iBAAiB,QAA8B;AACzD,IAAU,aAAa,CAAwC;AAA/D,WAAU,aAAa;IAAC,IAAA,SAAS,CAA8B;IAAvC,WAAA,SAAS;QAAG;YAAA;YAAwB,CAAC;YAAD,gBAAC;QAAD,CAAC,AAAzB,IAAyB;QAAZ,mBAAS,YAAG,CAAA;IAAC,CAAC,EAAvC,SAAS,GAAT,uBAAS,KAAT,uBAAS,QAA8B;AAAD,CAAC,EAArD,aAAa,KAAb,aAAa,QAAwC;AAC/D,IAAO,cAAc,GAAG,iBAAiB,CAAC,SAAS,CAAC;AAEpD,IAAM,aAAa,GAAG,EAAE,CAAC;AACzB,IAAK,YAAwB;AAA7B,WAAK,YAAY;IAAG,yCAAC,CAAA;IAAE,yCAAC,CAAA;IAAE,yCAAC,CAAA;AAAC,CAAC,EAAxB,YAAY,KAAZ,YAAY,QAAY;ACpC5C;IAAA;IAIA,CAAC;IAHG,uBAAW,GAAX;QACI,OAAO,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAC;IACtC,CAAC;IACL,QAAC;AAAD,CAAC,AAJD,IAIC"} //// [/src/2/second-output.js.map.baseline.txt] =================================================================== @@ -1200,13 +1201,14 @@ sourceFile:../second/second_part1.ts >>> } 1->^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1->constructor() { 2 > } 1->Emitted(10, 5) Source(14, 36) + SourceIndex(0) 2 >Emitted(10, 6) Source(14, 37) + SourceIndex(0) --- ->>> normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> normalC_prototype.method = function () { }; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^ @@ -1220,13 +1222,13 @@ sourceFile:../second/second_part1.ts 3 > 4 > method() { 5 > } -1->Emitted(11, 5) Source(16, 20) + SourceIndex(0) -2 >Emitted(11, 29) Source(16, 26) + SourceIndex(0) -3 >Emitted(11, 32) Source(16, 20) + SourceIndex(0) -4 >Emitted(11, 46) Source(16, 31) + SourceIndex(0) -5 >Emitted(11, 47) Source(16, 32) + SourceIndex(0) +1->Emitted(12, 5) Source(16, 20) + SourceIndex(0) +2 >Emitted(12, 29) Source(16, 26) + SourceIndex(0) +3 >Emitted(12, 32) Source(16, 20) + SourceIndex(0) +4 >Emitted(12, 46) Source(16, 31) + SourceIndex(0) +5 >Emitted(12, 47) Source(16, 32) + SourceIndex(0) --- ->>> Object.defineProperty(normalC.prototype, "c", { +>>> Object.defineProperty(normalC_prototype, "c", { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -1234,9 +1236,9 @@ sourceFile:../second/second_part1.ts > /**@internal*/ 2 > get 3 > c -1->Emitted(12, 5) Source(17, 20) + SourceIndex(0) -2 >Emitted(12, 27) Source(17, 24) + SourceIndex(0) -3 >Emitted(12, 49) Source(17, 25) + SourceIndex(0) +1->Emitted(13, 5) Source(17, 20) + SourceIndex(0) +2 >Emitted(13, 27) Source(17, 24) + SourceIndex(0) +3 >Emitted(13, 49) Source(17, 25) + SourceIndex(0) --- >>> get: function () { return 10; }, 1 >^^^^^^^^^^^^^ @@ -1253,13 +1255,13 @@ sourceFile:../second/second_part1.ts 5 > ; 6 > 7 > } -1 >Emitted(13, 14) Source(17, 20) + SourceIndex(0) -2 >Emitted(13, 28) Source(17, 30) + SourceIndex(0) -3 >Emitted(13, 35) Source(17, 37) + SourceIndex(0) -4 >Emitted(13, 37) Source(17, 39) + SourceIndex(0) -5 >Emitted(13, 38) Source(17, 40) + SourceIndex(0) -6 >Emitted(13, 39) Source(17, 41) + SourceIndex(0) -7 >Emitted(13, 40) Source(17, 42) + SourceIndex(0) +1 >Emitted(14, 14) Source(17, 20) + SourceIndex(0) +2 >Emitted(14, 28) Source(17, 30) + SourceIndex(0) +3 >Emitted(14, 35) Source(17, 37) + SourceIndex(0) +4 >Emitted(14, 37) Source(17, 39) + SourceIndex(0) +5 >Emitted(14, 38) Source(17, 40) + SourceIndex(0) +6 >Emitted(14, 39) Source(17, 41) + SourceIndex(0) +7 >Emitted(14, 40) Source(17, 42) + SourceIndex(0) --- >>> set: function (val) { }, 1 >^^^^^^^^^^^^^ @@ -1273,11 +1275,11 @@ sourceFile:../second/second_part1.ts 3 > val: number 4 > ) { 5 > } -1 >Emitted(14, 14) Source(18, 20) + SourceIndex(0) -2 >Emitted(14, 24) Source(18, 26) + SourceIndex(0) -3 >Emitted(14, 27) Source(18, 37) + SourceIndex(0) -4 >Emitted(14, 31) Source(18, 41) + SourceIndex(0) -5 >Emitted(14, 32) Source(18, 42) + SourceIndex(0) +1 >Emitted(15, 14) Source(18, 20) + SourceIndex(0) +2 >Emitted(15, 24) Source(18, 26) + SourceIndex(0) +3 >Emitted(15, 27) Source(18, 37) + SourceIndex(0) +4 >Emitted(15, 31) Source(18, 41) + SourceIndex(0) +5 >Emitted(15, 32) Source(18, 42) + SourceIndex(0) --- >>> enumerable: false, >>> configurable: true @@ -1285,7 +1287,7 @@ sourceFile:../second/second_part1.ts 1 >^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(17, 8) Source(17, 42) + SourceIndex(0) +1 >Emitted(18, 8) Source(17, 42) + SourceIndex(0) --- >>> return normalC; 1->^^^^ @@ -1294,8 +1296,8 @@ sourceFile:../second/second_part1.ts > /**@internal*/ set c(val: number) { } > 2 > } -1->Emitted(18, 5) Source(19, 1) + SourceIndex(0) -2 >Emitted(18, 19) Source(19, 2) + SourceIndex(0) +1->Emitted(19, 5) Source(19, 1) + SourceIndex(0) +2 >Emitted(19, 19) Source(19, 2) + SourceIndex(0) --- >>>}()); 1 > @@ -1313,10 +1315,10 @@ sourceFile:../second/second_part1.ts > /**@internal*/ get c() { return 10; } > /**@internal*/ set c(val: number) { } > } -1 >Emitted(19, 1) Source(19, 1) + SourceIndex(0) -2 >Emitted(19, 2) Source(19, 2) + SourceIndex(0) -3 >Emitted(19, 2) Source(13, 1) + SourceIndex(0) -4 >Emitted(19, 6) Source(19, 2) + SourceIndex(0) +1 >Emitted(20, 1) Source(19, 1) + SourceIndex(0) +2 >Emitted(20, 2) Source(19, 2) + SourceIndex(0) +3 >Emitted(20, 2) Source(13, 1) + SourceIndex(0) +4 >Emitted(20, 6) Source(19, 2) + SourceIndex(0) --- >>>var normalN; 1-> @@ -1338,10 +1340,10 @@ sourceFile:../second/second_part1.ts > /**@internal*/ export const internalConst = 10; > /**@internal*/ export enum internalEnum { a, b, c } > } -1->Emitted(20, 1) Source(20, 1) + SourceIndex(0) -2 >Emitted(20, 5) Source(20, 11) + SourceIndex(0) -3 >Emitted(20, 12) Source(20, 18) + SourceIndex(0) -4 >Emitted(20, 13) Source(29, 2) + SourceIndex(0) +1->Emitted(21, 1) Source(20, 1) + SourceIndex(0) +2 >Emitted(21, 5) Source(20, 11) + SourceIndex(0) +3 >Emitted(21, 12) Source(20, 18) + SourceIndex(0) +4 >Emitted(21, 13) Source(29, 2) + SourceIndex(0) --- >>>(function (normalN) { 1-> @@ -1351,22 +1353,22 @@ sourceFile:../second/second_part1.ts 1-> 2 >namespace 3 > normalN -1->Emitted(21, 1) Source(20, 1) + SourceIndex(0) -2 >Emitted(21, 12) Source(20, 11) + SourceIndex(0) -3 >Emitted(21, 19) Source(20, 18) + SourceIndex(0) +1->Emitted(22, 1) Source(20, 1) + SourceIndex(0) +2 >Emitted(22, 12) Source(20, 11) + SourceIndex(0) +3 >Emitted(22, 19) Source(20, 18) + SourceIndex(0) --- >>> var C = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { > /**@internal*/ -1->Emitted(22, 5) Source(21, 20) + SourceIndex(0) +1->Emitted(23, 5) Source(21, 20) + SourceIndex(0) --- >>> function C() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(23, 9) Source(21, 20) + SourceIndex(0) +1->Emitted(24, 9) Source(21, 20) + SourceIndex(0) --- >>> } 1->^^^^^^^^ @@ -1374,16 +1376,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(24, 9) Source(21, 37) + SourceIndex(0) -2 >Emitted(24, 10) Source(21, 38) + SourceIndex(0) +1->Emitted(25, 9) Source(21, 37) + SourceIndex(0) +2 >Emitted(25, 10) Source(21, 38) + SourceIndex(0) --- >>> return C; 1->^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(25, 9) Source(21, 37) + SourceIndex(0) -2 >Emitted(25, 17) Source(21, 38) + SourceIndex(0) +1->Emitted(26, 9) Source(21, 37) + SourceIndex(0) +2 >Emitted(26, 17) Source(21, 38) + SourceIndex(0) --- >>> }()); 1 >^^^^ @@ -1395,10 +1397,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(26, 5) Source(21, 37) + SourceIndex(0) -2 >Emitted(26, 6) Source(21, 38) + SourceIndex(0) -3 >Emitted(26, 6) Source(21, 20) + SourceIndex(0) -4 >Emitted(26, 10) Source(21, 38) + SourceIndex(0) +1 >Emitted(27, 5) Source(21, 37) + SourceIndex(0) +2 >Emitted(27, 6) Source(21, 38) + SourceIndex(0) +3 >Emitted(27, 6) Source(21, 20) + SourceIndex(0) +4 >Emitted(27, 10) Source(21, 38) + SourceIndex(0) --- >>> normalN.C = C; 1->^^^^ @@ -1410,10 +1412,10 @@ sourceFile:../second/second_part1.ts 2 > C 3 > { } 4 > -1->Emitted(27, 5) Source(21, 33) + SourceIndex(0) -2 >Emitted(27, 14) Source(21, 34) + SourceIndex(0) -3 >Emitted(27, 18) Source(21, 38) + SourceIndex(0) -4 >Emitted(27, 19) Source(21, 38) + SourceIndex(0) +1->Emitted(28, 5) Source(21, 33) + SourceIndex(0) +2 >Emitted(28, 14) Source(21, 34) + SourceIndex(0) +3 >Emitted(28, 18) Source(21, 38) + SourceIndex(0) +4 >Emitted(28, 19) Source(21, 38) + SourceIndex(0) --- >>> function foo() { } 1->^^^^ @@ -1428,11 +1430,11 @@ sourceFile:../second/second_part1.ts 3 > foo 4 > () { 5 > } -1->Emitted(28, 5) Source(22, 20) + SourceIndex(0) -2 >Emitted(28, 14) Source(22, 36) + SourceIndex(0) -3 >Emitted(28, 17) Source(22, 39) + SourceIndex(0) -4 >Emitted(28, 22) Source(22, 43) + SourceIndex(0) -5 >Emitted(28, 23) Source(22, 44) + SourceIndex(0) +1->Emitted(29, 5) Source(22, 20) + SourceIndex(0) +2 >Emitted(29, 14) Source(22, 36) + SourceIndex(0) +3 >Emitted(29, 17) Source(22, 39) + SourceIndex(0) +4 >Emitted(29, 22) Source(22, 43) + SourceIndex(0) +5 >Emitted(29, 23) Source(22, 44) + SourceIndex(0) --- >>> normalN.foo = foo; 1->^^^^ @@ -1444,10 +1446,10 @@ sourceFile:../second/second_part1.ts 2 > foo 3 > () {} 4 > -1->Emitted(29, 5) Source(22, 36) + SourceIndex(0) -2 >Emitted(29, 16) Source(22, 39) + SourceIndex(0) -3 >Emitted(29, 22) Source(22, 44) + SourceIndex(0) -4 >Emitted(29, 23) Source(22, 44) + SourceIndex(0) +1->Emitted(30, 5) Source(22, 36) + SourceIndex(0) +2 >Emitted(30, 16) Source(22, 39) + SourceIndex(0) +3 >Emitted(30, 22) Source(22, 44) + SourceIndex(0) +4 >Emitted(30, 23) Source(22, 44) + SourceIndex(0) --- >>> var someNamespace; 1->^^^^ @@ -1460,10 +1462,10 @@ sourceFile:../second/second_part1.ts 2 > export namespace 3 > someNamespace 4 > { export class C {} } -1->Emitted(30, 5) Source(23, 20) + SourceIndex(0) -2 >Emitted(30, 9) Source(23, 37) + SourceIndex(0) -3 >Emitted(30, 22) Source(23, 50) + SourceIndex(0) -4 >Emitted(30, 23) Source(23, 72) + SourceIndex(0) +1->Emitted(31, 5) Source(23, 20) + SourceIndex(0) +2 >Emitted(31, 9) Source(23, 37) + SourceIndex(0) +3 >Emitted(31, 22) Source(23, 50) + SourceIndex(0) +4 >Emitted(31, 23) Source(23, 72) + SourceIndex(0) --- >>> (function (someNamespace) { 1->^^^^ @@ -1473,21 +1475,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > export namespace 3 > someNamespace -1->Emitted(31, 5) Source(23, 20) + SourceIndex(0) -2 >Emitted(31, 16) Source(23, 37) + SourceIndex(0) -3 >Emitted(31, 29) Source(23, 50) + SourceIndex(0) +1->Emitted(32, 5) Source(23, 20) + SourceIndex(0) +2 >Emitted(32, 16) Source(23, 37) + SourceIndex(0) +3 >Emitted(32, 29) Source(23, 50) + SourceIndex(0) --- >>> var C = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(32, 9) Source(23, 53) + SourceIndex(0) +1->Emitted(33, 9) Source(23, 53) + SourceIndex(0) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(33, 13) Source(23, 53) + SourceIndex(0) +1->Emitted(34, 13) Source(23, 53) + SourceIndex(0) --- >>> } 1->^^^^^^^^^^^^ @@ -1495,16 +1497,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(34, 13) Source(23, 69) + SourceIndex(0) -2 >Emitted(34, 14) Source(23, 70) + SourceIndex(0) +1->Emitted(35, 13) Source(23, 69) + SourceIndex(0) +2 >Emitted(35, 14) Source(23, 70) + SourceIndex(0) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(35, 13) Source(23, 69) + SourceIndex(0) -2 >Emitted(35, 21) Source(23, 70) + SourceIndex(0) +1->Emitted(36, 13) Source(23, 69) + SourceIndex(0) +2 >Emitted(36, 21) Source(23, 70) + SourceIndex(0) --- >>> }()); 1 >^^^^^^^^ @@ -1516,10 +1518,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(36, 9) Source(23, 69) + SourceIndex(0) -2 >Emitted(36, 10) Source(23, 70) + SourceIndex(0) -3 >Emitted(36, 10) Source(23, 53) + SourceIndex(0) -4 >Emitted(36, 14) Source(23, 70) + SourceIndex(0) +1 >Emitted(37, 9) Source(23, 69) + SourceIndex(0) +2 >Emitted(37, 10) Source(23, 70) + SourceIndex(0) +3 >Emitted(37, 10) Source(23, 53) + SourceIndex(0) +4 >Emitted(37, 14) Source(23, 70) + SourceIndex(0) --- >>> someNamespace.C = C; 1->^^^^^^^^ @@ -1531,10 +1533,10 @@ sourceFile:../second/second_part1.ts 2 > C 3 > {} 4 > -1->Emitted(37, 9) Source(23, 66) + SourceIndex(0) -2 >Emitted(37, 24) Source(23, 67) + SourceIndex(0) -3 >Emitted(37, 28) Source(23, 70) + SourceIndex(0) -4 >Emitted(37, 29) Source(23, 70) + SourceIndex(0) +1->Emitted(38, 9) Source(23, 66) + SourceIndex(0) +2 >Emitted(38, 24) Source(23, 67) + SourceIndex(0) +3 >Emitted(38, 28) Source(23, 70) + SourceIndex(0) +4 >Emitted(38, 29) Source(23, 70) + SourceIndex(0) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^ @@ -1555,15 +1557,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(38, 5) Source(23, 71) + SourceIndex(0) -2 >Emitted(38, 6) Source(23, 72) + SourceIndex(0) -3 >Emitted(38, 8) Source(23, 37) + SourceIndex(0) -4 >Emitted(38, 21) Source(23, 50) + SourceIndex(0) -5 >Emitted(38, 24) Source(23, 37) + SourceIndex(0) -6 >Emitted(38, 45) Source(23, 50) + SourceIndex(0) -7 >Emitted(38, 50) Source(23, 37) + SourceIndex(0) -8 >Emitted(38, 71) Source(23, 50) + SourceIndex(0) -9 >Emitted(38, 79) Source(23, 72) + SourceIndex(0) +1->Emitted(39, 5) Source(23, 71) + SourceIndex(0) +2 >Emitted(39, 6) Source(23, 72) + SourceIndex(0) +3 >Emitted(39, 8) Source(23, 37) + SourceIndex(0) +4 >Emitted(39, 21) Source(23, 50) + SourceIndex(0) +5 >Emitted(39, 24) Source(23, 37) + SourceIndex(0) +6 >Emitted(39, 45) Source(23, 50) + SourceIndex(0) +7 >Emitted(39, 50) Source(23, 37) + SourceIndex(0) +8 >Emitted(39, 71) Source(23, 50) + SourceIndex(0) +9 >Emitted(39, 79) Source(23, 72) + SourceIndex(0) --- >>> var someOther; 1 >^^^^ @@ -1576,10 +1578,10 @@ sourceFile:../second/second_part1.ts 2 > export namespace 3 > someOther 4 > .something { export class someClass {} } -1 >Emitted(39, 5) Source(24, 20) + SourceIndex(0) -2 >Emitted(39, 9) Source(24, 37) + SourceIndex(0) -3 >Emitted(39, 18) Source(24, 46) + SourceIndex(0) -4 >Emitted(39, 19) Source(24, 86) + SourceIndex(0) +1 >Emitted(40, 5) Source(24, 20) + SourceIndex(0) +2 >Emitted(40, 9) Source(24, 37) + SourceIndex(0) +3 >Emitted(40, 18) Source(24, 46) + SourceIndex(0) +4 >Emitted(40, 19) Source(24, 86) + SourceIndex(0) --- >>> (function (someOther) { 1->^^^^ @@ -1588,9 +1590,9 @@ sourceFile:../second/second_part1.ts 1-> 2 > export namespace 3 > someOther -1->Emitted(40, 5) Source(24, 20) + SourceIndex(0) -2 >Emitted(40, 16) Source(24, 37) + SourceIndex(0) -3 >Emitted(40, 25) Source(24, 46) + SourceIndex(0) +1->Emitted(41, 5) Source(24, 20) + SourceIndex(0) +2 >Emitted(41, 16) Source(24, 37) + SourceIndex(0) +3 >Emitted(41, 25) Source(24, 46) + SourceIndex(0) --- >>> var something; 1 >^^^^^^^^ @@ -1602,10 +1604,10 @@ sourceFile:../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(41, 9) Source(24, 47) + SourceIndex(0) -2 >Emitted(41, 13) Source(24, 47) + SourceIndex(0) -3 >Emitted(41, 22) Source(24, 56) + SourceIndex(0) -4 >Emitted(41, 23) Source(24, 86) + SourceIndex(0) +1 >Emitted(42, 9) Source(24, 47) + SourceIndex(0) +2 >Emitted(42, 13) Source(24, 47) + SourceIndex(0) +3 >Emitted(42, 22) Source(24, 56) + SourceIndex(0) +4 >Emitted(42, 23) Source(24, 86) + SourceIndex(0) --- >>> (function (something) { 1->^^^^^^^^ @@ -1615,21 +1617,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(42, 9) Source(24, 47) + SourceIndex(0) -2 >Emitted(42, 20) Source(24, 47) + SourceIndex(0) -3 >Emitted(42, 29) Source(24, 56) + SourceIndex(0) +1->Emitted(43, 9) Source(24, 47) + SourceIndex(0) +2 >Emitted(43, 20) Source(24, 47) + SourceIndex(0) +3 >Emitted(43, 29) Source(24, 56) + SourceIndex(0) --- >>> var someClass = (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(43, 13) Source(24, 59) + SourceIndex(0) +1->Emitted(44, 13) Source(24, 59) + SourceIndex(0) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(44, 17) Source(24, 59) + SourceIndex(0) +1->Emitted(45, 17) Source(24, 59) + SourceIndex(0) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -1637,16 +1639,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(45, 17) Source(24, 83) + SourceIndex(0) -2 >Emitted(45, 18) Source(24, 84) + SourceIndex(0) +1->Emitted(46, 17) Source(24, 83) + SourceIndex(0) +2 >Emitted(46, 18) Source(24, 84) + SourceIndex(0) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(46, 17) Source(24, 83) + SourceIndex(0) -2 >Emitted(46, 33) Source(24, 84) + SourceIndex(0) +1->Emitted(47, 17) Source(24, 83) + SourceIndex(0) +2 >Emitted(47, 33) Source(24, 84) + SourceIndex(0) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -1658,10 +1660,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(47, 13) Source(24, 83) + SourceIndex(0) -2 >Emitted(47, 14) Source(24, 84) + SourceIndex(0) -3 >Emitted(47, 14) Source(24, 59) + SourceIndex(0) -4 >Emitted(47, 18) Source(24, 84) + SourceIndex(0) +1 >Emitted(48, 13) Source(24, 83) + SourceIndex(0) +2 >Emitted(48, 14) Source(24, 84) + SourceIndex(0) +3 >Emitted(48, 14) Source(24, 59) + SourceIndex(0) +4 >Emitted(48, 18) Source(24, 84) + SourceIndex(0) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -1673,10 +1675,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(48, 13) Source(24, 72) + SourceIndex(0) -2 >Emitted(48, 32) Source(24, 81) + SourceIndex(0) -3 >Emitted(48, 44) Source(24, 84) + SourceIndex(0) -4 >Emitted(48, 45) Source(24, 84) + SourceIndex(0) +1->Emitted(49, 13) Source(24, 72) + SourceIndex(0) +2 >Emitted(49, 32) Source(24, 81) + SourceIndex(0) +3 >Emitted(49, 44) Source(24, 84) + SourceIndex(0) +4 >Emitted(49, 45) Source(24, 84) + SourceIndex(0) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^ @@ -1697,15 +1699,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(49, 9) Source(24, 85) + SourceIndex(0) -2 >Emitted(49, 10) Source(24, 86) + SourceIndex(0) -3 >Emitted(49, 12) Source(24, 47) + SourceIndex(0) -4 >Emitted(49, 21) Source(24, 56) + SourceIndex(0) -5 >Emitted(49, 24) Source(24, 47) + SourceIndex(0) -6 >Emitted(49, 43) Source(24, 56) + SourceIndex(0) -7 >Emitted(49, 48) Source(24, 47) + SourceIndex(0) -8 >Emitted(49, 67) Source(24, 56) + SourceIndex(0) -9 >Emitted(49, 75) Source(24, 86) + SourceIndex(0) +1->Emitted(50, 9) Source(24, 85) + SourceIndex(0) +2 >Emitted(50, 10) Source(24, 86) + SourceIndex(0) +3 >Emitted(50, 12) Source(24, 47) + SourceIndex(0) +4 >Emitted(50, 21) Source(24, 56) + SourceIndex(0) +5 >Emitted(50, 24) Source(24, 47) + SourceIndex(0) +6 >Emitted(50, 43) Source(24, 56) + SourceIndex(0) +7 >Emitted(50, 48) Source(24, 47) + SourceIndex(0) +8 >Emitted(50, 67) Source(24, 56) + SourceIndex(0) +9 >Emitted(50, 75) Source(24, 86) + SourceIndex(0) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^ @@ -1726,15 +1728,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(50, 5) Source(24, 85) + SourceIndex(0) -2 >Emitted(50, 6) Source(24, 86) + SourceIndex(0) -3 >Emitted(50, 8) Source(24, 37) + SourceIndex(0) -4 >Emitted(50, 17) Source(24, 46) + SourceIndex(0) -5 >Emitted(50, 20) Source(24, 37) + SourceIndex(0) -6 >Emitted(50, 37) Source(24, 46) + SourceIndex(0) -7 >Emitted(50, 42) Source(24, 37) + SourceIndex(0) -8 >Emitted(50, 59) Source(24, 46) + SourceIndex(0) -9 >Emitted(50, 67) Source(24, 86) + SourceIndex(0) +1 >Emitted(51, 5) Source(24, 85) + SourceIndex(0) +2 >Emitted(51, 6) Source(24, 86) + SourceIndex(0) +3 >Emitted(51, 8) Source(24, 37) + SourceIndex(0) +4 >Emitted(51, 17) Source(24, 46) + SourceIndex(0) +5 >Emitted(51, 20) Source(24, 37) + SourceIndex(0) +6 >Emitted(51, 37) Source(24, 46) + SourceIndex(0) +7 >Emitted(51, 42) Source(24, 37) + SourceIndex(0) +8 >Emitted(51, 59) Source(24, 46) + SourceIndex(0) +9 >Emitted(51, 67) Source(24, 86) + SourceIndex(0) --- >>> normalN.someImport = someNamespace.C; 1 >^^^^ @@ -1752,13 +1754,13 @@ sourceFile:../second/second_part1.ts 5 > . 6 > C 7 > ; -1 >Emitted(51, 5) Source(25, 34) + SourceIndex(0) -2 >Emitted(51, 23) Source(25, 44) + SourceIndex(0) -3 >Emitted(51, 26) Source(25, 47) + SourceIndex(0) -4 >Emitted(51, 39) Source(25, 60) + SourceIndex(0) -5 >Emitted(51, 40) Source(25, 61) + SourceIndex(0) -6 >Emitted(51, 41) Source(25, 62) + SourceIndex(0) -7 >Emitted(51, 42) Source(25, 63) + SourceIndex(0) +1 >Emitted(52, 5) Source(25, 34) + SourceIndex(0) +2 >Emitted(52, 23) Source(25, 44) + SourceIndex(0) +3 >Emitted(52, 26) Source(25, 47) + SourceIndex(0) +4 >Emitted(52, 39) Source(25, 60) + SourceIndex(0) +5 >Emitted(52, 40) Source(25, 61) + SourceIndex(0) +6 >Emitted(52, 41) Source(25, 62) + SourceIndex(0) +7 >Emitted(52, 42) Source(25, 63) + SourceIndex(0) --- >>> normalN.internalConst = 10; 1 >^^^^ @@ -1773,11 +1775,11 @@ sourceFile:../second/second_part1.ts 3 > = 4 > 10 5 > ; -1 >Emitted(52, 5) Source(27, 33) + SourceIndex(0) -2 >Emitted(52, 26) Source(27, 46) + SourceIndex(0) -3 >Emitted(52, 29) Source(27, 49) + SourceIndex(0) -4 >Emitted(52, 31) Source(27, 51) + SourceIndex(0) -5 >Emitted(52, 32) Source(27, 52) + SourceIndex(0) +1 >Emitted(53, 5) Source(27, 33) + SourceIndex(0) +2 >Emitted(53, 26) Source(27, 46) + SourceIndex(0) +3 >Emitted(53, 29) Source(27, 49) + SourceIndex(0) +4 >Emitted(53, 31) Source(27, 51) + SourceIndex(0) +5 >Emitted(53, 32) Source(27, 52) + SourceIndex(0) --- >>> var internalEnum; 1 >^^^^ @@ -1788,9 +1790,9 @@ sourceFile:../second/second_part1.ts > /**@internal*/ 2 > export enum 3 > internalEnum { a, b, c } -1 >Emitted(53, 5) Source(28, 20) + SourceIndex(0) -2 >Emitted(53, 9) Source(28, 32) + SourceIndex(0) -3 >Emitted(53, 21) Source(28, 56) + SourceIndex(0) +1 >Emitted(54, 5) Source(28, 20) + SourceIndex(0) +2 >Emitted(54, 9) Source(28, 32) + SourceIndex(0) +3 >Emitted(54, 21) Source(28, 56) + SourceIndex(0) --- >>> (function (internalEnum) { 1->^^^^ @@ -1800,9 +1802,9 @@ sourceFile:../second/second_part1.ts 1-> 2 > export enum 3 > internalEnum -1->Emitted(54, 5) Source(28, 20) + SourceIndex(0) -2 >Emitted(54, 16) Source(28, 32) + SourceIndex(0) -3 >Emitted(54, 28) Source(28, 44) + SourceIndex(0) +1->Emitted(55, 5) Source(28, 20) + SourceIndex(0) +2 >Emitted(55, 16) Source(28, 32) + SourceIndex(0) +3 >Emitted(55, 28) Source(28, 44) + SourceIndex(0) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -1812,9 +1814,9 @@ sourceFile:../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(55, 9) Source(28, 47) + SourceIndex(0) -2 >Emitted(55, 50) Source(28, 48) + SourceIndex(0) -3 >Emitted(55, 51) Source(28, 48) + SourceIndex(0) +1->Emitted(56, 9) Source(28, 47) + SourceIndex(0) +2 >Emitted(56, 50) Source(28, 48) + SourceIndex(0) +3 >Emitted(56, 51) Source(28, 48) + SourceIndex(0) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -1824,9 +1826,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(56, 9) Source(28, 50) + SourceIndex(0) -2 >Emitted(56, 50) Source(28, 51) + SourceIndex(0) -3 >Emitted(56, 51) Source(28, 51) + SourceIndex(0) +1->Emitted(57, 9) Source(28, 50) + SourceIndex(0) +2 >Emitted(57, 50) Source(28, 51) + SourceIndex(0) +3 >Emitted(57, 51) Source(28, 51) + SourceIndex(0) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -1836,9 +1838,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(57, 9) Source(28, 53) + SourceIndex(0) -2 >Emitted(57, 50) Source(28, 54) + SourceIndex(0) -3 >Emitted(57, 51) Source(28, 54) + SourceIndex(0) +1->Emitted(58, 9) Source(28, 53) + SourceIndex(0) +2 >Emitted(58, 50) Source(28, 54) + SourceIndex(0) +3 >Emitted(58, 51) Source(28, 54) + SourceIndex(0) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^ @@ -1859,15 +1861,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(58, 5) Source(28, 55) + SourceIndex(0) -2 >Emitted(58, 6) Source(28, 56) + SourceIndex(0) -3 >Emitted(58, 8) Source(28, 32) + SourceIndex(0) -4 >Emitted(58, 20) Source(28, 44) + SourceIndex(0) -5 >Emitted(58, 23) Source(28, 32) + SourceIndex(0) -6 >Emitted(58, 43) Source(28, 44) + SourceIndex(0) -7 >Emitted(58, 48) Source(28, 32) + SourceIndex(0) -8 >Emitted(58, 68) Source(28, 44) + SourceIndex(0) -9 >Emitted(58, 76) Source(28, 56) + SourceIndex(0) +1->Emitted(59, 5) Source(28, 55) + SourceIndex(0) +2 >Emitted(59, 6) Source(28, 56) + SourceIndex(0) +3 >Emitted(59, 8) Source(28, 32) + SourceIndex(0) +4 >Emitted(59, 20) Source(28, 44) + SourceIndex(0) +5 >Emitted(59, 23) Source(28, 32) + SourceIndex(0) +6 >Emitted(59, 43) Source(28, 44) + SourceIndex(0) +7 >Emitted(59, 48) Source(28, 32) + SourceIndex(0) +8 >Emitted(59, 68) Source(28, 44) + SourceIndex(0) +9 >Emitted(59, 76) Source(28, 56) + SourceIndex(0) --- >>>})(normalN || (normalN = {})); 1 > @@ -1895,26 +1897,26 @@ sourceFile:../second/second_part1.ts > /**@internal*/ export const internalConst = 10; > /**@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(59, 1) Source(29, 1) + SourceIndex(0) -2 >Emitted(59, 2) Source(29, 2) + SourceIndex(0) -3 >Emitted(59, 4) Source(20, 11) + SourceIndex(0) -4 >Emitted(59, 11) Source(20, 18) + SourceIndex(0) -5 >Emitted(59, 16) Source(20, 11) + SourceIndex(0) -6 >Emitted(59, 23) Source(20, 18) + SourceIndex(0) -7 >Emitted(59, 31) Source(29, 2) + SourceIndex(0) +1 >Emitted(60, 1) Source(29, 1) + SourceIndex(0) +2 >Emitted(60, 2) Source(29, 2) + SourceIndex(0) +3 >Emitted(60, 4) Source(20, 11) + SourceIndex(0) +4 >Emitted(60, 11) Source(20, 18) + SourceIndex(0) +5 >Emitted(60, 16) Source(20, 11) + SourceIndex(0) +6 >Emitted(60, 23) Source(20, 18) + SourceIndex(0) +7 >Emitted(60, 31) Source(29, 2) + SourceIndex(0) --- >>>var internalC = (function () { 1-> 2 >^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> >/**@internal*/ -1->Emitted(60, 1) Source(30, 16) + SourceIndex(0) +1->Emitted(61, 1) Source(30, 16) + SourceIndex(0) --- >>> function internalC() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(61, 5) Source(30, 16) + SourceIndex(0) +1->Emitted(62, 5) Source(30, 16) + SourceIndex(0) --- >>> } 1->^^^^ @@ -1922,16 +1924,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->class internalC { 2 > } -1->Emitted(62, 5) Source(30, 33) + SourceIndex(0) -2 >Emitted(62, 6) Source(30, 34) + SourceIndex(0) +1->Emitted(63, 5) Source(30, 33) + SourceIndex(0) +2 >Emitted(63, 6) Source(30, 34) + SourceIndex(0) --- >>> return internalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(63, 5) Source(30, 33) + SourceIndex(0) -2 >Emitted(63, 21) Source(30, 34) + SourceIndex(0) +1->Emitted(64, 5) Source(30, 33) + SourceIndex(0) +2 >Emitted(64, 21) Source(30, 34) + SourceIndex(0) --- >>>}()); 1 > @@ -1943,10 +1945,10 @@ sourceFile:../second/second_part1.ts 2 >} 3 > 4 > class internalC {} -1 >Emitted(64, 1) Source(30, 33) + SourceIndex(0) -2 >Emitted(64, 2) Source(30, 34) + SourceIndex(0) -3 >Emitted(64, 2) Source(30, 16) + SourceIndex(0) -4 >Emitted(64, 6) Source(30, 34) + SourceIndex(0) +1 >Emitted(65, 1) Source(30, 33) + SourceIndex(0) +2 >Emitted(65, 2) Source(30, 34) + SourceIndex(0) +3 >Emitted(65, 2) Source(30, 16) + SourceIndex(0) +4 >Emitted(65, 6) Source(30, 34) + SourceIndex(0) --- >>>function internalfoo() { } 1-> @@ -1960,11 +1962,11 @@ sourceFile:../second/second_part1.ts 3 > internalfoo 4 > () { 5 > } -1->Emitted(65, 1) Source(31, 16) + SourceIndex(0) -2 >Emitted(65, 10) Source(31, 25) + SourceIndex(0) -3 >Emitted(65, 21) Source(31, 36) + SourceIndex(0) -4 >Emitted(65, 26) Source(31, 40) + SourceIndex(0) -5 >Emitted(65, 27) Source(31, 41) + SourceIndex(0) +1->Emitted(66, 1) Source(31, 16) + SourceIndex(0) +2 >Emitted(66, 10) Source(31, 25) + SourceIndex(0) +3 >Emitted(66, 21) Source(31, 36) + SourceIndex(0) +4 >Emitted(66, 26) Source(31, 40) + SourceIndex(0) +5 >Emitted(66, 27) Source(31, 41) + SourceIndex(0) --- >>>var internalNamespace; 1 > @@ -1977,10 +1979,10 @@ sourceFile:../second/second_part1.ts 2 >namespace 3 > internalNamespace 4 > { export class someClass {} } -1 >Emitted(66, 1) Source(32, 16) + SourceIndex(0) -2 >Emitted(66, 5) Source(32, 26) + SourceIndex(0) -3 >Emitted(66, 22) Source(32, 43) + SourceIndex(0) -4 >Emitted(66, 23) Source(32, 73) + SourceIndex(0) +1 >Emitted(67, 1) Source(32, 16) + SourceIndex(0) +2 >Emitted(67, 5) Source(32, 26) + SourceIndex(0) +3 >Emitted(67, 22) Source(32, 43) + SourceIndex(0) +4 >Emitted(67, 23) Source(32, 73) + SourceIndex(0) --- >>>(function (internalNamespace) { 1-> @@ -1990,21 +1992,21 @@ sourceFile:../second/second_part1.ts 1-> 2 >namespace 3 > internalNamespace -1->Emitted(67, 1) Source(32, 16) + SourceIndex(0) -2 >Emitted(67, 12) Source(32, 26) + SourceIndex(0) -3 >Emitted(67, 29) Source(32, 43) + SourceIndex(0) +1->Emitted(68, 1) Source(32, 16) + SourceIndex(0) +2 >Emitted(68, 12) Source(32, 26) + SourceIndex(0) +3 >Emitted(68, 29) Source(32, 43) + SourceIndex(0) --- >>> var someClass = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(68, 5) Source(32, 46) + SourceIndex(0) +1->Emitted(69, 5) Source(32, 46) + SourceIndex(0) --- >>> function someClass() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(69, 9) Source(32, 46) + SourceIndex(0) +1->Emitted(70, 9) Source(32, 46) + SourceIndex(0) --- >>> } 1->^^^^^^^^ @@ -2012,16 +2014,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(70, 9) Source(32, 70) + SourceIndex(0) -2 >Emitted(70, 10) Source(32, 71) + SourceIndex(0) +1->Emitted(71, 9) Source(32, 70) + SourceIndex(0) +2 >Emitted(71, 10) Source(32, 71) + SourceIndex(0) --- >>> return someClass; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(71, 9) Source(32, 70) + SourceIndex(0) -2 >Emitted(71, 25) Source(32, 71) + SourceIndex(0) +1->Emitted(72, 9) Source(32, 70) + SourceIndex(0) +2 >Emitted(72, 25) Source(32, 71) + SourceIndex(0) --- >>> }()); 1 >^^^^ @@ -2033,10 +2035,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(72, 5) Source(32, 70) + SourceIndex(0) -2 >Emitted(72, 6) Source(32, 71) + SourceIndex(0) -3 >Emitted(72, 6) Source(32, 46) + SourceIndex(0) -4 >Emitted(72, 10) Source(32, 71) + SourceIndex(0) +1 >Emitted(73, 5) Source(32, 70) + SourceIndex(0) +2 >Emitted(73, 6) Source(32, 71) + SourceIndex(0) +3 >Emitted(73, 6) Source(32, 46) + SourceIndex(0) +4 >Emitted(73, 10) Source(32, 71) + SourceIndex(0) --- >>> internalNamespace.someClass = someClass; 1->^^^^ @@ -2048,10 +2050,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(73, 5) Source(32, 59) + SourceIndex(0) -2 >Emitted(73, 32) Source(32, 68) + SourceIndex(0) -3 >Emitted(73, 44) Source(32, 71) + SourceIndex(0) -4 >Emitted(73, 45) Source(32, 71) + SourceIndex(0) +1->Emitted(74, 5) Source(32, 59) + SourceIndex(0) +2 >Emitted(74, 32) Source(32, 68) + SourceIndex(0) +3 >Emitted(74, 44) Source(32, 71) + SourceIndex(0) +4 >Emitted(74, 45) Source(32, 71) + SourceIndex(0) --- >>>})(internalNamespace || (internalNamespace = {})); 1-> @@ -2068,13 +2070,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalNamespace 7 > { export class someClass {} } -1->Emitted(74, 1) Source(32, 72) + SourceIndex(0) -2 >Emitted(74, 2) Source(32, 73) + SourceIndex(0) -3 >Emitted(74, 4) Source(32, 26) + SourceIndex(0) -4 >Emitted(74, 21) Source(32, 43) + SourceIndex(0) -5 >Emitted(74, 26) Source(32, 26) + SourceIndex(0) -6 >Emitted(74, 43) Source(32, 43) + SourceIndex(0) -7 >Emitted(74, 51) Source(32, 73) + SourceIndex(0) +1->Emitted(75, 1) Source(32, 72) + SourceIndex(0) +2 >Emitted(75, 2) Source(32, 73) + SourceIndex(0) +3 >Emitted(75, 4) Source(32, 26) + SourceIndex(0) +4 >Emitted(75, 21) Source(32, 43) + SourceIndex(0) +5 >Emitted(75, 26) Source(32, 26) + SourceIndex(0) +6 >Emitted(75, 43) Source(32, 43) + SourceIndex(0) +7 >Emitted(75, 51) Source(32, 73) + SourceIndex(0) --- >>>var internalOther; 1 > @@ -2087,10 +2089,10 @@ sourceFile:../second/second_part1.ts 2 >namespace 3 > internalOther 4 > .something { export class someClass {} } -1 >Emitted(75, 1) Source(33, 16) + SourceIndex(0) -2 >Emitted(75, 5) Source(33, 26) + SourceIndex(0) -3 >Emitted(75, 18) Source(33, 39) + SourceIndex(0) -4 >Emitted(75, 19) Source(33, 79) + SourceIndex(0) +1 >Emitted(76, 1) Source(33, 16) + SourceIndex(0) +2 >Emitted(76, 5) Source(33, 26) + SourceIndex(0) +3 >Emitted(76, 18) Source(33, 39) + SourceIndex(0) +4 >Emitted(76, 19) Source(33, 79) + SourceIndex(0) --- >>>(function (internalOther) { 1-> @@ -2099,9 +2101,9 @@ sourceFile:../second/second_part1.ts 1-> 2 >namespace 3 > internalOther -1->Emitted(76, 1) Source(33, 16) + SourceIndex(0) -2 >Emitted(76, 12) Source(33, 26) + SourceIndex(0) -3 >Emitted(76, 25) Source(33, 39) + SourceIndex(0) +1->Emitted(77, 1) Source(33, 16) + SourceIndex(0) +2 >Emitted(77, 12) Source(33, 26) + SourceIndex(0) +3 >Emitted(77, 25) Source(33, 39) + SourceIndex(0) --- >>> var something; 1 >^^^^ @@ -2113,10 +2115,10 @@ sourceFile:../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(77, 5) Source(33, 40) + SourceIndex(0) -2 >Emitted(77, 9) Source(33, 40) + SourceIndex(0) -3 >Emitted(77, 18) Source(33, 49) + SourceIndex(0) -4 >Emitted(77, 19) Source(33, 79) + SourceIndex(0) +1 >Emitted(78, 5) Source(33, 40) + SourceIndex(0) +2 >Emitted(78, 9) Source(33, 40) + SourceIndex(0) +3 >Emitted(78, 18) Source(33, 49) + SourceIndex(0) +4 >Emitted(78, 19) Source(33, 79) + SourceIndex(0) --- >>> (function (something) { 1->^^^^ @@ -2126,21 +2128,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(78, 5) Source(33, 40) + SourceIndex(0) -2 >Emitted(78, 16) Source(33, 40) + SourceIndex(0) -3 >Emitted(78, 25) Source(33, 49) + SourceIndex(0) +1->Emitted(79, 5) Source(33, 40) + SourceIndex(0) +2 >Emitted(79, 16) Source(33, 40) + SourceIndex(0) +3 >Emitted(79, 25) Source(33, 49) + SourceIndex(0) --- >>> var someClass = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(79, 9) Source(33, 52) + SourceIndex(0) +1->Emitted(80, 9) Source(33, 52) + SourceIndex(0) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(80, 13) Source(33, 52) + SourceIndex(0) +1->Emitted(81, 13) Source(33, 52) + SourceIndex(0) --- >>> } 1->^^^^^^^^^^^^ @@ -2148,16 +2150,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(81, 13) Source(33, 76) + SourceIndex(0) -2 >Emitted(81, 14) Source(33, 77) + SourceIndex(0) +1->Emitted(82, 13) Source(33, 76) + SourceIndex(0) +2 >Emitted(82, 14) Source(33, 77) + SourceIndex(0) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(82, 13) Source(33, 76) + SourceIndex(0) -2 >Emitted(82, 29) Source(33, 77) + SourceIndex(0) +1->Emitted(83, 13) Source(33, 76) + SourceIndex(0) +2 >Emitted(83, 29) Source(33, 77) + SourceIndex(0) --- >>> }()); 1 >^^^^^^^^ @@ -2169,10 +2171,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(83, 9) Source(33, 76) + SourceIndex(0) -2 >Emitted(83, 10) Source(33, 77) + SourceIndex(0) -3 >Emitted(83, 10) Source(33, 52) + SourceIndex(0) -4 >Emitted(83, 14) Source(33, 77) + SourceIndex(0) +1 >Emitted(84, 9) Source(33, 76) + SourceIndex(0) +2 >Emitted(84, 10) Source(33, 77) + SourceIndex(0) +3 >Emitted(84, 10) Source(33, 52) + SourceIndex(0) +4 >Emitted(84, 14) Source(33, 77) + SourceIndex(0) --- >>> something.someClass = someClass; 1->^^^^^^^^ @@ -2184,10 +2186,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(84, 9) Source(33, 65) + SourceIndex(0) -2 >Emitted(84, 28) Source(33, 74) + SourceIndex(0) -3 >Emitted(84, 40) Source(33, 77) + SourceIndex(0) -4 >Emitted(84, 41) Source(33, 77) + SourceIndex(0) +1->Emitted(85, 9) Source(33, 65) + SourceIndex(0) +2 >Emitted(85, 28) Source(33, 74) + SourceIndex(0) +3 >Emitted(85, 40) Source(33, 77) + SourceIndex(0) +4 >Emitted(85, 41) Source(33, 77) + SourceIndex(0) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^ @@ -2208,15 +2210,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(85, 5) Source(33, 78) + SourceIndex(0) -2 >Emitted(85, 6) Source(33, 79) + SourceIndex(0) -3 >Emitted(85, 8) Source(33, 40) + SourceIndex(0) -4 >Emitted(85, 17) Source(33, 49) + SourceIndex(0) -5 >Emitted(85, 20) Source(33, 40) + SourceIndex(0) -6 >Emitted(85, 43) Source(33, 49) + SourceIndex(0) -7 >Emitted(85, 48) Source(33, 40) + SourceIndex(0) -8 >Emitted(85, 71) Source(33, 49) + SourceIndex(0) -9 >Emitted(85, 79) Source(33, 79) + SourceIndex(0) +1->Emitted(86, 5) Source(33, 78) + SourceIndex(0) +2 >Emitted(86, 6) Source(33, 79) + SourceIndex(0) +3 >Emitted(86, 8) Source(33, 40) + SourceIndex(0) +4 >Emitted(86, 17) Source(33, 49) + SourceIndex(0) +5 >Emitted(86, 20) Source(33, 40) + SourceIndex(0) +6 >Emitted(86, 43) Source(33, 49) + SourceIndex(0) +7 >Emitted(86, 48) Source(33, 40) + SourceIndex(0) +8 >Emitted(86, 71) Source(33, 49) + SourceIndex(0) +9 >Emitted(86, 79) Source(33, 79) + SourceIndex(0) --- >>>})(internalOther || (internalOther = {})); 1 > @@ -2234,13 +2236,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalOther 7 > .something { export class someClass {} } -1 >Emitted(86, 1) Source(33, 78) + SourceIndex(0) -2 >Emitted(86, 2) Source(33, 79) + SourceIndex(0) -3 >Emitted(86, 4) Source(33, 26) + SourceIndex(0) -4 >Emitted(86, 17) Source(33, 39) + SourceIndex(0) -5 >Emitted(86, 22) Source(33, 26) + SourceIndex(0) -6 >Emitted(86, 35) Source(33, 39) + SourceIndex(0) -7 >Emitted(86, 43) Source(33, 79) + SourceIndex(0) +1 >Emitted(87, 1) Source(33, 78) + SourceIndex(0) +2 >Emitted(87, 2) Source(33, 79) + SourceIndex(0) +3 >Emitted(87, 4) Source(33, 26) + SourceIndex(0) +4 >Emitted(87, 17) Source(33, 39) + SourceIndex(0) +5 >Emitted(87, 22) Source(33, 26) + SourceIndex(0) +6 >Emitted(87, 35) Source(33, 39) + SourceIndex(0) +7 >Emitted(87, 43) Source(33, 79) + SourceIndex(0) --- >>>var internalImport = internalNamespace.someClass; 1-> @@ -2260,14 +2262,14 @@ sourceFile:../second/second_part1.ts 6 > . 7 > someClass 8 > ; -1->Emitted(87, 1) Source(34, 16) + SourceIndex(0) -2 >Emitted(87, 5) Source(34, 23) + SourceIndex(0) -3 >Emitted(87, 19) Source(34, 37) + SourceIndex(0) -4 >Emitted(87, 22) Source(34, 40) + SourceIndex(0) -5 >Emitted(87, 39) Source(34, 57) + SourceIndex(0) -6 >Emitted(87, 40) Source(34, 58) + SourceIndex(0) -7 >Emitted(87, 49) Source(34, 67) + SourceIndex(0) -8 >Emitted(87, 50) Source(34, 68) + SourceIndex(0) +1->Emitted(88, 1) Source(34, 16) + SourceIndex(0) +2 >Emitted(88, 5) Source(34, 23) + SourceIndex(0) +3 >Emitted(88, 19) Source(34, 37) + SourceIndex(0) +4 >Emitted(88, 22) Source(34, 40) + SourceIndex(0) +5 >Emitted(88, 39) Source(34, 57) + SourceIndex(0) +6 >Emitted(88, 40) Source(34, 58) + SourceIndex(0) +7 >Emitted(88, 49) Source(34, 67) + SourceIndex(0) +8 >Emitted(88, 50) Source(34, 68) + SourceIndex(0) --- >>>var internalConst = 10; 1 > @@ -2284,12 +2286,12 @@ sourceFile:../second/second_part1.ts 4 > = 5 > 10 6 > ; -1 >Emitted(88, 1) Source(36, 16) + SourceIndex(0) -2 >Emitted(88, 5) Source(36, 22) + SourceIndex(0) -3 >Emitted(88, 18) Source(36, 35) + SourceIndex(0) -4 >Emitted(88, 21) Source(36, 38) + SourceIndex(0) -5 >Emitted(88, 23) Source(36, 40) + SourceIndex(0) -6 >Emitted(88, 24) Source(36, 41) + SourceIndex(0) +1 >Emitted(89, 1) Source(36, 16) + SourceIndex(0) +2 >Emitted(89, 5) Source(36, 22) + SourceIndex(0) +3 >Emitted(89, 18) Source(36, 35) + SourceIndex(0) +4 >Emitted(89, 21) Source(36, 38) + SourceIndex(0) +5 >Emitted(89, 23) Source(36, 40) + SourceIndex(0) +6 >Emitted(89, 24) Source(36, 41) + SourceIndex(0) --- >>>var internalEnum; 1 > @@ -2300,9 +2302,9 @@ sourceFile:../second/second_part1.ts >/**@internal*/ 2 >enum 3 > internalEnum { a, b, c } -1 >Emitted(89, 1) Source(37, 16) + SourceIndex(0) -2 >Emitted(89, 5) Source(37, 21) + SourceIndex(0) -3 >Emitted(89, 17) Source(37, 45) + SourceIndex(0) +1 >Emitted(90, 1) Source(37, 16) + SourceIndex(0) +2 >Emitted(90, 5) Source(37, 21) + SourceIndex(0) +3 >Emitted(90, 17) Source(37, 45) + SourceIndex(0) --- >>>(function (internalEnum) { 1-> @@ -2312,9 +2314,9 @@ sourceFile:../second/second_part1.ts 1-> 2 >enum 3 > internalEnum -1->Emitted(90, 1) Source(37, 16) + SourceIndex(0) -2 >Emitted(90, 12) Source(37, 21) + SourceIndex(0) -3 >Emitted(90, 24) Source(37, 33) + SourceIndex(0) +1->Emitted(91, 1) Source(37, 16) + SourceIndex(0) +2 >Emitted(91, 12) Source(37, 21) + SourceIndex(0) +3 >Emitted(91, 24) Source(37, 33) + SourceIndex(0) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^ @@ -2324,9 +2326,9 @@ sourceFile:../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(91, 5) Source(37, 36) + SourceIndex(0) -2 >Emitted(91, 46) Source(37, 37) + SourceIndex(0) -3 >Emitted(91, 47) Source(37, 37) + SourceIndex(0) +1->Emitted(92, 5) Source(37, 36) + SourceIndex(0) +2 >Emitted(92, 46) Source(37, 37) + SourceIndex(0) +3 >Emitted(92, 47) Source(37, 37) + SourceIndex(0) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^ @@ -2336,9 +2338,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(92, 5) Source(37, 39) + SourceIndex(0) -2 >Emitted(92, 46) Source(37, 40) + SourceIndex(0) -3 >Emitted(92, 47) Source(37, 40) + SourceIndex(0) +1->Emitted(93, 5) Source(37, 39) + SourceIndex(0) +2 >Emitted(93, 46) Source(37, 40) + SourceIndex(0) +3 >Emitted(93, 47) Source(37, 40) + SourceIndex(0) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^ @@ -2347,9 +2349,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(93, 5) Source(37, 42) + SourceIndex(0) -2 >Emitted(93, 46) Source(37, 43) + SourceIndex(0) -3 >Emitted(93, 47) Source(37, 43) + SourceIndex(0) +1->Emitted(94, 5) Source(37, 42) + SourceIndex(0) +2 >Emitted(94, 46) Source(37, 43) + SourceIndex(0) +3 >Emitted(94, 47) Source(37, 43) + SourceIndex(0) --- >>>})(internalEnum || (internalEnum = {})); 1 > @@ -2366,13 +2368,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalEnum 7 > { a, b, c } -1 >Emitted(94, 1) Source(37, 44) + SourceIndex(0) -2 >Emitted(94, 2) Source(37, 45) + SourceIndex(0) -3 >Emitted(94, 4) Source(37, 21) + SourceIndex(0) -4 >Emitted(94, 16) Source(37, 33) + SourceIndex(0) -5 >Emitted(94, 21) Source(37, 21) + SourceIndex(0) -6 >Emitted(94, 33) Source(37, 33) + SourceIndex(0) -7 >Emitted(94, 41) Source(37, 45) + SourceIndex(0) +1 >Emitted(95, 1) Source(37, 44) + SourceIndex(0) +2 >Emitted(95, 2) Source(37, 45) + SourceIndex(0) +3 >Emitted(95, 4) Source(37, 21) + SourceIndex(0) +4 >Emitted(95, 16) Source(37, 33) + SourceIndex(0) +5 >Emitted(95, 21) Source(37, 21) + SourceIndex(0) +6 >Emitted(95, 33) Source(37, 33) + SourceIndex(0) +7 >Emitted(95, 41) Source(37, 45) + SourceIndex(0) --- ------------------------------------------------------------------- emittedFile:/src/2/second-output.js @@ -2382,13 +2384,13 @@ sourceFile:../second/second_part2.ts 1 > 2 >^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(95, 1) Source(1, 1) + SourceIndex(1) +1 >Emitted(96, 1) Source(1, 1) + SourceIndex(1) --- >>> function C() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(96, 5) Source(1, 1) + SourceIndex(1) +1->Emitted(97, 5) Source(1, 1) + SourceIndex(1) --- >>> } 1->^^^^ @@ -2400,8 +2402,8 @@ sourceFile:../second/second_part2.ts > } > 2 > } -1->Emitted(97, 5) Source(5, 1) + SourceIndex(1) -2 >Emitted(97, 6) Source(5, 2) + SourceIndex(1) +1->Emitted(98, 5) Source(5, 1) + SourceIndex(1) +2 >Emitted(98, 6) Source(5, 2) + SourceIndex(1) --- >>> C.prototype.doSomething = function () { 1->^^^^ @@ -2411,9 +2413,9 @@ sourceFile:../second/second_part2.ts 1-> 2 > doSomething 3 > -1->Emitted(98, 5) Source(2, 5) + SourceIndex(1) -2 >Emitted(98, 28) Source(2, 16) + SourceIndex(1) -3 >Emitted(98, 31) Source(2, 5) + SourceIndex(1) +1->Emitted(99, 5) Source(2, 5) + SourceIndex(1) +2 >Emitted(99, 28) Source(2, 16) + SourceIndex(1) +3 >Emitted(99, 31) Source(2, 5) + SourceIndex(1) --- >>> console.log("something got done"); 1->^^^^^^^^ @@ -2433,14 +2435,14 @@ sourceFile:../second/second_part2.ts 6 > "something got done" 7 > ) 8 > ; -1->Emitted(99, 9) Source(3, 9) + SourceIndex(1) -2 >Emitted(99, 16) Source(3, 16) + SourceIndex(1) -3 >Emitted(99, 17) Source(3, 17) + SourceIndex(1) -4 >Emitted(99, 20) Source(3, 20) + SourceIndex(1) -5 >Emitted(99, 21) Source(3, 21) + SourceIndex(1) -6 >Emitted(99, 41) Source(3, 41) + SourceIndex(1) -7 >Emitted(99, 42) Source(3, 42) + SourceIndex(1) -8 >Emitted(99, 43) Source(3, 43) + SourceIndex(1) +1->Emitted(100, 9) Source(3, 9) + SourceIndex(1) +2 >Emitted(100, 16) Source(3, 16) + SourceIndex(1) +3 >Emitted(100, 17) Source(3, 17) + SourceIndex(1) +4 >Emitted(100, 20) Source(3, 20) + SourceIndex(1) +5 >Emitted(100, 21) Source(3, 21) + SourceIndex(1) +6 >Emitted(100, 41) Source(3, 41) + SourceIndex(1) +7 >Emitted(100, 42) Source(3, 42) + SourceIndex(1) +8 >Emitted(100, 43) Source(3, 43) + SourceIndex(1) --- >>> }; 1 >^^^^ @@ -2449,8 +2451,8 @@ sourceFile:../second/second_part2.ts 1 > > 2 > } -1 >Emitted(100, 5) Source(4, 5) + SourceIndex(1) -2 >Emitted(100, 6) Source(4, 6) + SourceIndex(1) +1 >Emitted(101, 5) Source(4, 5) + SourceIndex(1) +2 >Emitted(101, 6) Source(4, 6) + SourceIndex(1) --- >>> return C; 1->^^^^ @@ -2458,8 +2460,8 @@ sourceFile:../second/second_part2.ts 1-> > 2 > } -1->Emitted(101, 5) Source(5, 1) + SourceIndex(1) -2 >Emitted(101, 13) Source(5, 2) + SourceIndex(1) +1->Emitted(102, 5) Source(5, 1) + SourceIndex(1) +2 >Emitted(102, 13) Source(5, 2) + SourceIndex(1) --- >>>}()); 1 > @@ -2475,10 +2477,10 @@ sourceFile:../second/second_part2.ts > console.log("something got done"); > } > } -1 >Emitted(102, 1) Source(5, 1) + SourceIndex(1) -2 >Emitted(102, 2) Source(5, 2) + SourceIndex(1) -3 >Emitted(102, 2) Source(1, 1) + SourceIndex(1) -4 >Emitted(102, 6) Source(5, 2) + SourceIndex(1) +1 >Emitted(103, 1) Source(5, 1) + SourceIndex(1) +2 >Emitted(103, 2) Source(5, 2) + SourceIndex(1) +3 >Emitted(103, 2) Source(1, 1) + SourceIndex(1) +4 >Emitted(103, 6) Source(5, 2) + SourceIndex(1) --- >>>//# sourceMappingURL=second-output.js.map @@ -2494,7 +2496,7 @@ sourceFile:../second/second_part2.ts "sections": [ { "pos": 0, - "end": 3053, + "end": 3101, "kind": "text" } ] @@ -2546,7 +2548,7 @@ sourceFile:../second/second_part2.ts ====================================================================== File:: /src/2/second-output.js ---------------------------------------------------------------------- -text: (0-3053) +text: (0-3101) var N; (function (N) { function f() { @@ -2557,8 +2559,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -3396,8 +3399,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -3493,7 +3497,7 @@ c.doSomething(); //# sourceMappingURL=third-output.js.map //// [/src/third/thirdjs/output/third-output.js.map] -{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} //// [/src/third/thirdjs/output/third-output.js.map.baseline.txt] =================================================================== @@ -3794,13 +3798,14 @@ sourceFile:../../../second/second_part1.ts >>> } 1->^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1->constructor() { 2 > } 1->Emitted(16, 5) Source(14, 36) + SourceIndex(3) 2 >Emitted(16, 6) Source(14, 37) + SourceIndex(3) --- ->>> normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> normalC_prototype.method = function () { }; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^ @@ -3814,13 +3819,13 @@ sourceFile:../../../second/second_part1.ts 3 > 4 > method() { 5 > } -1->Emitted(17, 5) Source(16, 20) + SourceIndex(3) -2 >Emitted(17, 29) Source(16, 26) + SourceIndex(3) -3 >Emitted(17, 32) Source(16, 20) + SourceIndex(3) -4 >Emitted(17, 46) Source(16, 31) + SourceIndex(3) -5 >Emitted(17, 47) Source(16, 32) + SourceIndex(3) +1->Emitted(18, 5) Source(16, 20) + SourceIndex(3) +2 >Emitted(18, 29) Source(16, 26) + SourceIndex(3) +3 >Emitted(18, 32) Source(16, 20) + SourceIndex(3) +4 >Emitted(18, 46) Source(16, 31) + SourceIndex(3) +5 >Emitted(18, 47) Source(16, 32) + SourceIndex(3) --- ->>> Object.defineProperty(normalC.prototype, "c", { +>>> Object.defineProperty(normalC_prototype, "c", { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -3828,9 +3833,9 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ 2 > get 3 > c -1->Emitted(18, 5) Source(17, 20) + SourceIndex(3) -2 >Emitted(18, 27) Source(17, 24) + SourceIndex(3) -3 >Emitted(18, 49) Source(17, 25) + SourceIndex(3) +1->Emitted(19, 5) Source(17, 20) + SourceIndex(3) +2 >Emitted(19, 27) Source(17, 24) + SourceIndex(3) +3 >Emitted(19, 49) Source(17, 25) + SourceIndex(3) --- >>> get: function () { return 10; }, 1 >^^^^^^^^^^^^^ @@ -3847,13 +3852,13 @@ sourceFile:../../../second/second_part1.ts 5 > ; 6 > 7 > } -1 >Emitted(19, 14) Source(17, 20) + SourceIndex(3) -2 >Emitted(19, 28) Source(17, 30) + SourceIndex(3) -3 >Emitted(19, 35) Source(17, 37) + SourceIndex(3) -4 >Emitted(19, 37) Source(17, 39) + SourceIndex(3) -5 >Emitted(19, 38) Source(17, 40) + SourceIndex(3) -6 >Emitted(19, 39) Source(17, 41) + SourceIndex(3) -7 >Emitted(19, 40) Source(17, 42) + SourceIndex(3) +1 >Emitted(20, 14) Source(17, 20) + SourceIndex(3) +2 >Emitted(20, 28) Source(17, 30) + SourceIndex(3) +3 >Emitted(20, 35) Source(17, 37) + SourceIndex(3) +4 >Emitted(20, 37) Source(17, 39) + SourceIndex(3) +5 >Emitted(20, 38) Source(17, 40) + SourceIndex(3) +6 >Emitted(20, 39) Source(17, 41) + SourceIndex(3) +7 >Emitted(20, 40) Source(17, 42) + SourceIndex(3) --- >>> set: function (val) { }, 1 >^^^^^^^^^^^^^ @@ -3867,11 +3872,11 @@ sourceFile:../../../second/second_part1.ts 3 > val: number 4 > ) { 5 > } -1 >Emitted(20, 14) Source(18, 20) + SourceIndex(3) -2 >Emitted(20, 24) Source(18, 26) + SourceIndex(3) -3 >Emitted(20, 27) Source(18, 37) + SourceIndex(3) -4 >Emitted(20, 31) Source(18, 41) + SourceIndex(3) -5 >Emitted(20, 32) Source(18, 42) + SourceIndex(3) +1 >Emitted(21, 14) Source(18, 20) + SourceIndex(3) +2 >Emitted(21, 24) Source(18, 26) + SourceIndex(3) +3 >Emitted(21, 27) Source(18, 37) + SourceIndex(3) +4 >Emitted(21, 31) Source(18, 41) + SourceIndex(3) +5 >Emitted(21, 32) Source(18, 42) + SourceIndex(3) --- >>> enumerable: false, >>> configurable: true @@ -3879,7 +3884,7 @@ sourceFile:../../../second/second_part1.ts 1 >^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(23, 8) Source(17, 42) + SourceIndex(3) +1 >Emitted(24, 8) Source(17, 42) + SourceIndex(3) --- >>> return normalC; 1->^^^^ @@ -3888,8 +3893,8 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ set c(val: number) { } > 2 > } -1->Emitted(24, 5) Source(19, 1) + SourceIndex(3) -2 >Emitted(24, 19) Source(19, 2) + SourceIndex(3) +1->Emitted(25, 5) Source(19, 1) + SourceIndex(3) +2 >Emitted(25, 19) Source(19, 2) + SourceIndex(3) --- >>>}()); 1 > @@ -3907,10 +3912,10 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ get c() { return 10; } > /**@internal*/ set c(val: number) { } > } -1 >Emitted(25, 1) Source(19, 1) + SourceIndex(3) -2 >Emitted(25, 2) Source(19, 2) + SourceIndex(3) -3 >Emitted(25, 2) Source(13, 1) + SourceIndex(3) -4 >Emitted(25, 6) Source(19, 2) + SourceIndex(3) +1 >Emitted(26, 1) Source(19, 1) + SourceIndex(3) +2 >Emitted(26, 2) Source(19, 2) + SourceIndex(3) +3 >Emitted(26, 2) Source(13, 1) + SourceIndex(3) +4 >Emitted(26, 6) Source(19, 2) + SourceIndex(3) --- >>>var normalN; 1-> @@ -3932,10 +3937,10 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ export const internalConst = 10; > /**@internal*/ export enum internalEnum { a, b, c } > } -1->Emitted(26, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(26, 5) Source(20, 11) + SourceIndex(3) -3 >Emitted(26, 12) Source(20, 18) + SourceIndex(3) -4 >Emitted(26, 13) Source(29, 2) + SourceIndex(3) +1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(27, 5) Source(20, 11) + SourceIndex(3) +3 >Emitted(27, 12) Source(20, 18) + SourceIndex(3) +4 >Emitted(27, 13) Source(29, 2) + SourceIndex(3) --- >>>(function (normalN) { 1-> @@ -3945,22 +3950,22 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > normalN -1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(27, 12) Source(20, 11) + SourceIndex(3) -3 >Emitted(27, 19) Source(20, 18) + SourceIndex(3) +1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(28, 12) Source(20, 11) + SourceIndex(3) +3 >Emitted(28, 19) Source(20, 18) + SourceIndex(3) --- >>> var C = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { > /**@internal*/ -1->Emitted(28, 5) Source(21, 20) + SourceIndex(3) +1->Emitted(29, 5) Source(21, 20) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(29, 9) Source(21, 20) + SourceIndex(3) +1->Emitted(30, 9) Source(21, 20) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -3968,16 +3973,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(30, 9) Source(21, 37) + SourceIndex(3) -2 >Emitted(30, 10) Source(21, 38) + SourceIndex(3) +1->Emitted(31, 9) Source(21, 37) + SourceIndex(3) +2 >Emitted(31, 10) Source(21, 38) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(31, 9) Source(21, 37) + SourceIndex(3) -2 >Emitted(31, 17) Source(21, 38) + SourceIndex(3) +1->Emitted(32, 9) Source(21, 37) + SourceIndex(3) +2 >Emitted(32, 17) Source(21, 38) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -3989,10 +3994,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(32, 5) Source(21, 37) + SourceIndex(3) -2 >Emitted(32, 6) Source(21, 38) + SourceIndex(3) -3 >Emitted(32, 6) Source(21, 20) + SourceIndex(3) -4 >Emitted(32, 10) Source(21, 38) + SourceIndex(3) +1 >Emitted(33, 5) Source(21, 37) + SourceIndex(3) +2 >Emitted(33, 6) Source(21, 38) + SourceIndex(3) +3 >Emitted(33, 6) Source(21, 20) + SourceIndex(3) +4 >Emitted(33, 10) Source(21, 38) + SourceIndex(3) --- >>> normalN.C = C; 1->^^^^ @@ -4004,10 +4009,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > { } 4 > -1->Emitted(33, 5) Source(21, 33) + SourceIndex(3) -2 >Emitted(33, 14) Source(21, 34) + SourceIndex(3) -3 >Emitted(33, 18) Source(21, 38) + SourceIndex(3) -4 >Emitted(33, 19) Source(21, 38) + SourceIndex(3) +1->Emitted(34, 5) Source(21, 33) + SourceIndex(3) +2 >Emitted(34, 14) Source(21, 34) + SourceIndex(3) +3 >Emitted(34, 18) Source(21, 38) + SourceIndex(3) +4 >Emitted(34, 19) Source(21, 38) + SourceIndex(3) --- >>> function foo() { } 1->^^^^ @@ -4022,11 +4027,11 @@ sourceFile:../../../second/second_part1.ts 3 > foo 4 > () { 5 > } -1->Emitted(34, 5) Source(22, 20) + SourceIndex(3) -2 >Emitted(34, 14) Source(22, 36) + SourceIndex(3) -3 >Emitted(34, 17) Source(22, 39) + SourceIndex(3) -4 >Emitted(34, 22) Source(22, 43) + SourceIndex(3) -5 >Emitted(34, 23) Source(22, 44) + SourceIndex(3) +1->Emitted(35, 5) Source(22, 20) + SourceIndex(3) +2 >Emitted(35, 14) Source(22, 36) + SourceIndex(3) +3 >Emitted(35, 17) Source(22, 39) + SourceIndex(3) +4 >Emitted(35, 22) Source(22, 43) + SourceIndex(3) +5 >Emitted(35, 23) Source(22, 44) + SourceIndex(3) --- >>> normalN.foo = foo; 1->^^^^ @@ -4038,10 +4043,10 @@ sourceFile:../../../second/second_part1.ts 2 > foo 3 > () {} 4 > -1->Emitted(35, 5) Source(22, 36) + SourceIndex(3) -2 >Emitted(35, 16) Source(22, 39) + SourceIndex(3) -3 >Emitted(35, 22) Source(22, 44) + SourceIndex(3) -4 >Emitted(35, 23) Source(22, 44) + SourceIndex(3) +1->Emitted(36, 5) Source(22, 36) + SourceIndex(3) +2 >Emitted(36, 16) Source(22, 39) + SourceIndex(3) +3 >Emitted(36, 22) Source(22, 44) + SourceIndex(3) +4 >Emitted(36, 23) Source(22, 44) + SourceIndex(3) --- >>> var someNamespace; 1->^^^^ @@ -4054,10 +4059,10 @@ sourceFile:../../../second/second_part1.ts 2 > export namespace 3 > someNamespace 4 > { export class C {} } -1->Emitted(36, 5) Source(23, 20) + SourceIndex(3) -2 >Emitted(36, 9) Source(23, 37) + SourceIndex(3) -3 >Emitted(36, 22) Source(23, 50) + SourceIndex(3) -4 >Emitted(36, 23) Source(23, 72) + SourceIndex(3) +1->Emitted(37, 5) Source(23, 20) + SourceIndex(3) +2 >Emitted(37, 9) Source(23, 37) + SourceIndex(3) +3 >Emitted(37, 22) Source(23, 50) + SourceIndex(3) +4 >Emitted(37, 23) Source(23, 72) + SourceIndex(3) --- >>> (function (someNamespace) { 1->^^^^ @@ -4067,21 +4072,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > export namespace 3 > someNamespace -1->Emitted(37, 5) Source(23, 20) + SourceIndex(3) -2 >Emitted(37, 16) Source(23, 37) + SourceIndex(3) -3 >Emitted(37, 29) Source(23, 50) + SourceIndex(3) +1->Emitted(38, 5) Source(23, 20) + SourceIndex(3) +2 >Emitted(38, 16) Source(23, 37) + SourceIndex(3) +3 >Emitted(38, 29) Source(23, 50) + SourceIndex(3) --- >>> var C = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(38, 9) Source(23, 53) + SourceIndex(3) +1->Emitted(39, 9) Source(23, 53) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(39, 13) Source(23, 53) + SourceIndex(3) +1->Emitted(40, 13) Source(23, 53) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -4089,16 +4094,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(40, 13) Source(23, 69) + SourceIndex(3) -2 >Emitted(40, 14) Source(23, 70) + SourceIndex(3) +1->Emitted(41, 13) Source(23, 69) + SourceIndex(3) +2 >Emitted(41, 14) Source(23, 70) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(41, 13) Source(23, 69) + SourceIndex(3) -2 >Emitted(41, 21) Source(23, 70) + SourceIndex(3) +1->Emitted(42, 13) Source(23, 69) + SourceIndex(3) +2 >Emitted(42, 21) Source(23, 70) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -4110,10 +4115,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(42, 9) Source(23, 69) + SourceIndex(3) -2 >Emitted(42, 10) Source(23, 70) + SourceIndex(3) -3 >Emitted(42, 10) Source(23, 53) + SourceIndex(3) -4 >Emitted(42, 14) Source(23, 70) + SourceIndex(3) +1 >Emitted(43, 9) Source(23, 69) + SourceIndex(3) +2 >Emitted(43, 10) Source(23, 70) + SourceIndex(3) +3 >Emitted(43, 10) Source(23, 53) + SourceIndex(3) +4 >Emitted(43, 14) Source(23, 70) + SourceIndex(3) --- >>> someNamespace.C = C; 1->^^^^^^^^ @@ -4125,10 +4130,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > {} 4 > -1->Emitted(43, 9) Source(23, 66) + SourceIndex(3) -2 >Emitted(43, 24) Source(23, 67) + SourceIndex(3) -3 >Emitted(43, 28) Source(23, 70) + SourceIndex(3) -4 >Emitted(43, 29) Source(23, 70) + SourceIndex(3) +1->Emitted(44, 9) Source(23, 66) + SourceIndex(3) +2 >Emitted(44, 24) Source(23, 67) + SourceIndex(3) +3 >Emitted(44, 28) Source(23, 70) + SourceIndex(3) +4 >Emitted(44, 29) Source(23, 70) + SourceIndex(3) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^ @@ -4149,15 +4154,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(44, 5) Source(23, 71) + SourceIndex(3) -2 >Emitted(44, 6) Source(23, 72) + SourceIndex(3) -3 >Emitted(44, 8) Source(23, 37) + SourceIndex(3) -4 >Emitted(44, 21) Source(23, 50) + SourceIndex(3) -5 >Emitted(44, 24) Source(23, 37) + SourceIndex(3) -6 >Emitted(44, 45) Source(23, 50) + SourceIndex(3) -7 >Emitted(44, 50) Source(23, 37) + SourceIndex(3) -8 >Emitted(44, 71) Source(23, 50) + SourceIndex(3) -9 >Emitted(44, 79) Source(23, 72) + SourceIndex(3) +1->Emitted(45, 5) Source(23, 71) + SourceIndex(3) +2 >Emitted(45, 6) Source(23, 72) + SourceIndex(3) +3 >Emitted(45, 8) Source(23, 37) + SourceIndex(3) +4 >Emitted(45, 21) Source(23, 50) + SourceIndex(3) +5 >Emitted(45, 24) Source(23, 37) + SourceIndex(3) +6 >Emitted(45, 45) Source(23, 50) + SourceIndex(3) +7 >Emitted(45, 50) Source(23, 37) + SourceIndex(3) +8 >Emitted(45, 71) Source(23, 50) + SourceIndex(3) +9 >Emitted(45, 79) Source(23, 72) + SourceIndex(3) --- >>> var someOther; 1 >^^^^ @@ -4170,10 +4175,10 @@ sourceFile:../../../second/second_part1.ts 2 > export namespace 3 > someOther 4 > .something { export class someClass {} } -1 >Emitted(45, 5) Source(24, 20) + SourceIndex(3) -2 >Emitted(45, 9) Source(24, 37) + SourceIndex(3) -3 >Emitted(45, 18) Source(24, 46) + SourceIndex(3) -4 >Emitted(45, 19) Source(24, 86) + SourceIndex(3) +1 >Emitted(46, 5) Source(24, 20) + SourceIndex(3) +2 >Emitted(46, 9) Source(24, 37) + SourceIndex(3) +3 >Emitted(46, 18) Source(24, 46) + SourceIndex(3) +4 >Emitted(46, 19) Source(24, 86) + SourceIndex(3) --- >>> (function (someOther) { 1->^^^^ @@ -4182,9 +4187,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > export namespace 3 > someOther -1->Emitted(46, 5) Source(24, 20) + SourceIndex(3) -2 >Emitted(46, 16) Source(24, 37) + SourceIndex(3) -3 >Emitted(46, 25) Source(24, 46) + SourceIndex(3) +1->Emitted(47, 5) Source(24, 20) + SourceIndex(3) +2 >Emitted(47, 16) Source(24, 37) + SourceIndex(3) +3 >Emitted(47, 25) Source(24, 46) + SourceIndex(3) --- >>> var something; 1 >^^^^^^^^ @@ -4196,10 +4201,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(47, 9) Source(24, 47) + SourceIndex(3) -2 >Emitted(47, 13) Source(24, 47) + SourceIndex(3) -3 >Emitted(47, 22) Source(24, 56) + SourceIndex(3) -4 >Emitted(47, 23) Source(24, 86) + SourceIndex(3) +1 >Emitted(48, 9) Source(24, 47) + SourceIndex(3) +2 >Emitted(48, 13) Source(24, 47) + SourceIndex(3) +3 >Emitted(48, 22) Source(24, 56) + SourceIndex(3) +4 >Emitted(48, 23) Source(24, 86) + SourceIndex(3) --- >>> (function (something) { 1->^^^^^^^^ @@ -4209,21 +4214,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(48, 9) Source(24, 47) + SourceIndex(3) -2 >Emitted(48, 20) Source(24, 47) + SourceIndex(3) -3 >Emitted(48, 29) Source(24, 56) + SourceIndex(3) +1->Emitted(49, 9) Source(24, 47) + SourceIndex(3) +2 >Emitted(49, 20) Source(24, 47) + SourceIndex(3) +3 >Emitted(49, 29) Source(24, 56) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(49, 13) Source(24, 59) + SourceIndex(3) +1->Emitted(50, 13) Source(24, 59) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(50, 17) Source(24, 59) + SourceIndex(3) +1->Emitted(51, 17) Source(24, 59) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -4231,16 +4236,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(51, 17) Source(24, 83) + SourceIndex(3) -2 >Emitted(51, 18) Source(24, 84) + SourceIndex(3) +1->Emitted(52, 17) Source(24, 83) + SourceIndex(3) +2 >Emitted(52, 18) Source(24, 84) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(52, 17) Source(24, 83) + SourceIndex(3) -2 >Emitted(52, 33) Source(24, 84) + SourceIndex(3) +1->Emitted(53, 17) Source(24, 83) + SourceIndex(3) +2 >Emitted(53, 33) Source(24, 84) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -4252,10 +4257,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(53, 13) Source(24, 83) + SourceIndex(3) -2 >Emitted(53, 14) Source(24, 84) + SourceIndex(3) -3 >Emitted(53, 14) Source(24, 59) + SourceIndex(3) -4 >Emitted(53, 18) Source(24, 84) + SourceIndex(3) +1 >Emitted(54, 13) Source(24, 83) + SourceIndex(3) +2 >Emitted(54, 14) Source(24, 84) + SourceIndex(3) +3 >Emitted(54, 14) Source(24, 59) + SourceIndex(3) +4 >Emitted(54, 18) Source(24, 84) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -4267,10 +4272,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(54, 13) Source(24, 72) + SourceIndex(3) -2 >Emitted(54, 32) Source(24, 81) + SourceIndex(3) -3 >Emitted(54, 44) Source(24, 84) + SourceIndex(3) -4 >Emitted(54, 45) Source(24, 84) + SourceIndex(3) +1->Emitted(55, 13) Source(24, 72) + SourceIndex(3) +2 >Emitted(55, 32) Source(24, 81) + SourceIndex(3) +3 >Emitted(55, 44) Source(24, 84) + SourceIndex(3) +4 >Emitted(55, 45) Source(24, 84) + SourceIndex(3) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^ @@ -4291,15 +4296,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(55, 9) Source(24, 85) + SourceIndex(3) -2 >Emitted(55, 10) Source(24, 86) + SourceIndex(3) -3 >Emitted(55, 12) Source(24, 47) + SourceIndex(3) -4 >Emitted(55, 21) Source(24, 56) + SourceIndex(3) -5 >Emitted(55, 24) Source(24, 47) + SourceIndex(3) -6 >Emitted(55, 43) Source(24, 56) + SourceIndex(3) -7 >Emitted(55, 48) Source(24, 47) + SourceIndex(3) -8 >Emitted(55, 67) Source(24, 56) + SourceIndex(3) -9 >Emitted(55, 75) Source(24, 86) + SourceIndex(3) +1->Emitted(56, 9) Source(24, 85) + SourceIndex(3) +2 >Emitted(56, 10) Source(24, 86) + SourceIndex(3) +3 >Emitted(56, 12) Source(24, 47) + SourceIndex(3) +4 >Emitted(56, 21) Source(24, 56) + SourceIndex(3) +5 >Emitted(56, 24) Source(24, 47) + SourceIndex(3) +6 >Emitted(56, 43) Source(24, 56) + SourceIndex(3) +7 >Emitted(56, 48) Source(24, 47) + SourceIndex(3) +8 >Emitted(56, 67) Source(24, 56) + SourceIndex(3) +9 >Emitted(56, 75) Source(24, 86) + SourceIndex(3) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^ @@ -4320,15 +4325,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(56, 5) Source(24, 85) + SourceIndex(3) -2 >Emitted(56, 6) Source(24, 86) + SourceIndex(3) -3 >Emitted(56, 8) Source(24, 37) + SourceIndex(3) -4 >Emitted(56, 17) Source(24, 46) + SourceIndex(3) -5 >Emitted(56, 20) Source(24, 37) + SourceIndex(3) -6 >Emitted(56, 37) Source(24, 46) + SourceIndex(3) -7 >Emitted(56, 42) Source(24, 37) + SourceIndex(3) -8 >Emitted(56, 59) Source(24, 46) + SourceIndex(3) -9 >Emitted(56, 67) Source(24, 86) + SourceIndex(3) +1 >Emitted(57, 5) Source(24, 85) + SourceIndex(3) +2 >Emitted(57, 6) Source(24, 86) + SourceIndex(3) +3 >Emitted(57, 8) Source(24, 37) + SourceIndex(3) +4 >Emitted(57, 17) Source(24, 46) + SourceIndex(3) +5 >Emitted(57, 20) Source(24, 37) + SourceIndex(3) +6 >Emitted(57, 37) Source(24, 46) + SourceIndex(3) +7 >Emitted(57, 42) Source(24, 37) + SourceIndex(3) +8 >Emitted(57, 59) Source(24, 46) + SourceIndex(3) +9 >Emitted(57, 67) Source(24, 86) + SourceIndex(3) --- >>> normalN.someImport = someNamespace.C; 1 >^^^^ @@ -4346,13 +4351,13 @@ sourceFile:../../../second/second_part1.ts 5 > . 6 > C 7 > ; -1 >Emitted(57, 5) Source(25, 34) + SourceIndex(3) -2 >Emitted(57, 23) Source(25, 44) + SourceIndex(3) -3 >Emitted(57, 26) Source(25, 47) + SourceIndex(3) -4 >Emitted(57, 39) Source(25, 60) + SourceIndex(3) -5 >Emitted(57, 40) Source(25, 61) + SourceIndex(3) -6 >Emitted(57, 41) Source(25, 62) + SourceIndex(3) -7 >Emitted(57, 42) Source(25, 63) + SourceIndex(3) +1 >Emitted(58, 5) Source(25, 34) + SourceIndex(3) +2 >Emitted(58, 23) Source(25, 44) + SourceIndex(3) +3 >Emitted(58, 26) Source(25, 47) + SourceIndex(3) +4 >Emitted(58, 39) Source(25, 60) + SourceIndex(3) +5 >Emitted(58, 40) Source(25, 61) + SourceIndex(3) +6 >Emitted(58, 41) Source(25, 62) + SourceIndex(3) +7 >Emitted(58, 42) Source(25, 63) + SourceIndex(3) --- >>> normalN.internalConst = 10; 1 >^^^^ @@ -4367,11 +4372,11 @@ sourceFile:../../../second/second_part1.ts 3 > = 4 > 10 5 > ; -1 >Emitted(58, 5) Source(27, 33) + SourceIndex(3) -2 >Emitted(58, 26) Source(27, 46) + SourceIndex(3) -3 >Emitted(58, 29) Source(27, 49) + SourceIndex(3) -4 >Emitted(58, 31) Source(27, 51) + SourceIndex(3) -5 >Emitted(58, 32) Source(27, 52) + SourceIndex(3) +1 >Emitted(59, 5) Source(27, 33) + SourceIndex(3) +2 >Emitted(59, 26) Source(27, 46) + SourceIndex(3) +3 >Emitted(59, 29) Source(27, 49) + SourceIndex(3) +4 >Emitted(59, 31) Source(27, 51) + SourceIndex(3) +5 >Emitted(59, 32) Source(27, 52) + SourceIndex(3) --- >>> var internalEnum; 1 >^^^^ @@ -4382,9 +4387,9 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ 2 > export enum 3 > internalEnum { a, b, c } -1 >Emitted(59, 5) Source(28, 20) + SourceIndex(3) -2 >Emitted(59, 9) Source(28, 32) + SourceIndex(3) -3 >Emitted(59, 21) Source(28, 56) + SourceIndex(3) +1 >Emitted(60, 5) Source(28, 20) + SourceIndex(3) +2 >Emitted(60, 9) Source(28, 32) + SourceIndex(3) +3 >Emitted(60, 21) Source(28, 56) + SourceIndex(3) --- >>> (function (internalEnum) { 1->^^^^ @@ -4394,9 +4399,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > export enum 3 > internalEnum -1->Emitted(60, 5) Source(28, 20) + SourceIndex(3) -2 >Emitted(60, 16) Source(28, 32) + SourceIndex(3) -3 >Emitted(60, 28) Source(28, 44) + SourceIndex(3) +1->Emitted(61, 5) Source(28, 20) + SourceIndex(3) +2 >Emitted(61, 16) Source(28, 32) + SourceIndex(3) +3 >Emitted(61, 28) Source(28, 44) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -4406,9 +4411,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(61, 9) Source(28, 47) + SourceIndex(3) -2 >Emitted(61, 50) Source(28, 48) + SourceIndex(3) -3 >Emitted(61, 51) Source(28, 48) + SourceIndex(3) +1->Emitted(62, 9) Source(28, 47) + SourceIndex(3) +2 >Emitted(62, 50) Source(28, 48) + SourceIndex(3) +3 >Emitted(62, 51) Source(28, 48) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -4418,9 +4423,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(62, 9) Source(28, 50) + SourceIndex(3) -2 >Emitted(62, 50) Source(28, 51) + SourceIndex(3) -3 >Emitted(62, 51) Source(28, 51) + SourceIndex(3) +1->Emitted(63, 9) Source(28, 50) + SourceIndex(3) +2 >Emitted(63, 50) Source(28, 51) + SourceIndex(3) +3 >Emitted(63, 51) Source(28, 51) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -4430,9 +4435,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(63, 9) Source(28, 53) + SourceIndex(3) -2 >Emitted(63, 50) Source(28, 54) + SourceIndex(3) -3 >Emitted(63, 51) Source(28, 54) + SourceIndex(3) +1->Emitted(64, 9) Source(28, 53) + SourceIndex(3) +2 >Emitted(64, 50) Source(28, 54) + SourceIndex(3) +3 >Emitted(64, 51) Source(28, 54) + SourceIndex(3) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^ @@ -4453,15 +4458,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(64, 5) Source(28, 55) + SourceIndex(3) -2 >Emitted(64, 6) Source(28, 56) + SourceIndex(3) -3 >Emitted(64, 8) Source(28, 32) + SourceIndex(3) -4 >Emitted(64, 20) Source(28, 44) + SourceIndex(3) -5 >Emitted(64, 23) Source(28, 32) + SourceIndex(3) -6 >Emitted(64, 43) Source(28, 44) + SourceIndex(3) -7 >Emitted(64, 48) Source(28, 32) + SourceIndex(3) -8 >Emitted(64, 68) Source(28, 44) + SourceIndex(3) -9 >Emitted(64, 76) Source(28, 56) + SourceIndex(3) +1->Emitted(65, 5) Source(28, 55) + SourceIndex(3) +2 >Emitted(65, 6) Source(28, 56) + SourceIndex(3) +3 >Emitted(65, 8) Source(28, 32) + SourceIndex(3) +4 >Emitted(65, 20) Source(28, 44) + SourceIndex(3) +5 >Emitted(65, 23) Source(28, 32) + SourceIndex(3) +6 >Emitted(65, 43) Source(28, 44) + SourceIndex(3) +7 >Emitted(65, 48) Source(28, 32) + SourceIndex(3) +8 >Emitted(65, 68) Source(28, 44) + SourceIndex(3) +9 >Emitted(65, 76) Source(28, 56) + SourceIndex(3) --- >>>})(normalN || (normalN = {})); 1 > @@ -4489,26 +4494,26 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ export const internalConst = 10; > /**@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(65, 1) Source(29, 1) + SourceIndex(3) -2 >Emitted(65, 2) Source(29, 2) + SourceIndex(3) -3 >Emitted(65, 4) Source(20, 11) + SourceIndex(3) -4 >Emitted(65, 11) Source(20, 18) + SourceIndex(3) -5 >Emitted(65, 16) Source(20, 11) + SourceIndex(3) -6 >Emitted(65, 23) Source(20, 18) + SourceIndex(3) -7 >Emitted(65, 31) Source(29, 2) + SourceIndex(3) +1 >Emitted(66, 1) Source(29, 1) + SourceIndex(3) +2 >Emitted(66, 2) Source(29, 2) + SourceIndex(3) +3 >Emitted(66, 4) Source(20, 11) + SourceIndex(3) +4 >Emitted(66, 11) Source(20, 18) + SourceIndex(3) +5 >Emitted(66, 16) Source(20, 11) + SourceIndex(3) +6 >Emitted(66, 23) Source(20, 18) + SourceIndex(3) +7 >Emitted(66, 31) Source(29, 2) + SourceIndex(3) --- >>>var internalC = (function () { 1-> 2 >^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> >/**@internal*/ -1->Emitted(66, 1) Source(30, 16) + SourceIndex(3) +1->Emitted(67, 1) Source(30, 16) + SourceIndex(3) --- >>> function internalC() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(67, 5) Source(30, 16) + SourceIndex(3) +1->Emitted(68, 5) Source(30, 16) + SourceIndex(3) --- >>> } 1->^^^^ @@ -4516,16 +4521,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->class internalC { 2 > } -1->Emitted(68, 5) Source(30, 33) + SourceIndex(3) -2 >Emitted(68, 6) Source(30, 34) + SourceIndex(3) +1->Emitted(69, 5) Source(30, 33) + SourceIndex(3) +2 >Emitted(69, 6) Source(30, 34) + SourceIndex(3) --- >>> return internalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(69, 5) Source(30, 33) + SourceIndex(3) -2 >Emitted(69, 21) Source(30, 34) + SourceIndex(3) +1->Emitted(70, 5) Source(30, 33) + SourceIndex(3) +2 >Emitted(70, 21) Source(30, 34) + SourceIndex(3) --- >>>}()); 1 > @@ -4537,10 +4542,10 @@ sourceFile:../../../second/second_part1.ts 2 >} 3 > 4 > class internalC {} -1 >Emitted(70, 1) Source(30, 33) + SourceIndex(3) -2 >Emitted(70, 2) Source(30, 34) + SourceIndex(3) -3 >Emitted(70, 2) Source(30, 16) + SourceIndex(3) -4 >Emitted(70, 6) Source(30, 34) + SourceIndex(3) +1 >Emitted(71, 1) Source(30, 33) + SourceIndex(3) +2 >Emitted(71, 2) Source(30, 34) + SourceIndex(3) +3 >Emitted(71, 2) Source(30, 16) + SourceIndex(3) +4 >Emitted(71, 6) Source(30, 34) + SourceIndex(3) --- >>>function internalfoo() { } 1-> @@ -4554,11 +4559,11 @@ sourceFile:../../../second/second_part1.ts 3 > internalfoo 4 > () { 5 > } -1->Emitted(71, 1) Source(31, 16) + SourceIndex(3) -2 >Emitted(71, 10) Source(31, 25) + SourceIndex(3) -3 >Emitted(71, 21) Source(31, 36) + SourceIndex(3) -4 >Emitted(71, 26) Source(31, 40) + SourceIndex(3) -5 >Emitted(71, 27) Source(31, 41) + SourceIndex(3) +1->Emitted(72, 1) Source(31, 16) + SourceIndex(3) +2 >Emitted(72, 10) Source(31, 25) + SourceIndex(3) +3 >Emitted(72, 21) Source(31, 36) + SourceIndex(3) +4 >Emitted(72, 26) Source(31, 40) + SourceIndex(3) +5 >Emitted(72, 27) Source(31, 41) + SourceIndex(3) --- >>>var internalNamespace; 1 > @@ -4571,10 +4576,10 @@ sourceFile:../../../second/second_part1.ts 2 >namespace 3 > internalNamespace 4 > { export class someClass {} } -1 >Emitted(72, 1) Source(32, 16) + SourceIndex(3) -2 >Emitted(72, 5) Source(32, 26) + SourceIndex(3) -3 >Emitted(72, 22) Source(32, 43) + SourceIndex(3) -4 >Emitted(72, 23) Source(32, 73) + SourceIndex(3) +1 >Emitted(73, 1) Source(32, 16) + SourceIndex(3) +2 >Emitted(73, 5) Source(32, 26) + SourceIndex(3) +3 >Emitted(73, 22) Source(32, 43) + SourceIndex(3) +4 >Emitted(73, 23) Source(32, 73) + SourceIndex(3) --- >>>(function (internalNamespace) { 1-> @@ -4584,21 +4589,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > internalNamespace -1->Emitted(73, 1) Source(32, 16) + SourceIndex(3) -2 >Emitted(73, 12) Source(32, 26) + SourceIndex(3) -3 >Emitted(73, 29) Source(32, 43) + SourceIndex(3) +1->Emitted(74, 1) Source(32, 16) + SourceIndex(3) +2 >Emitted(74, 12) Source(32, 26) + SourceIndex(3) +3 >Emitted(74, 29) Source(32, 43) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(74, 5) Source(32, 46) + SourceIndex(3) +1->Emitted(75, 5) Source(32, 46) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(75, 9) Source(32, 46) + SourceIndex(3) +1->Emitted(76, 9) Source(32, 46) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -4606,16 +4611,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(76, 9) Source(32, 70) + SourceIndex(3) -2 >Emitted(76, 10) Source(32, 71) + SourceIndex(3) +1->Emitted(77, 9) Source(32, 70) + SourceIndex(3) +2 >Emitted(77, 10) Source(32, 71) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(77, 9) Source(32, 70) + SourceIndex(3) -2 >Emitted(77, 25) Source(32, 71) + SourceIndex(3) +1->Emitted(78, 9) Source(32, 70) + SourceIndex(3) +2 >Emitted(78, 25) Source(32, 71) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -4627,10 +4632,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(78, 5) Source(32, 70) + SourceIndex(3) -2 >Emitted(78, 6) Source(32, 71) + SourceIndex(3) -3 >Emitted(78, 6) Source(32, 46) + SourceIndex(3) -4 >Emitted(78, 10) Source(32, 71) + SourceIndex(3) +1 >Emitted(79, 5) Source(32, 70) + SourceIndex(3) +2 >Emitted(79, 6) Source(32, 71) + SourceIndex(3) +3 >Emitted(79, 6) Source(32, 46) + SourceIndex(3) +4 >Emitted(79, 10) Source(32, 71) + SourceIndex(3) --- >>> internalNamespace.someClass = someClass; 1->^^^^ @@ -4642,10 +4647,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(79, 5) Source(32, 59) + SourceIndex(3) -2 >Emitted(79, 32) Source(32, 68) + SourceIndex(3) -3 >Emitted(79, 44) Source(32, 71) + SourceIndex(3) -4 >Emitted(79, 45) Source(32, 71) + SourceIndex(3) +1->Emitted(80, 5) Source(32, 59) + SourceIndex(3) +2 >Emitted(80, 32) Source(32, 68) + SourceIndex(3) +3 >Emitted(80, 44) Source(32, 71) + SourceIndex(3) +4 >Emitted(80, 45) Source(32, 71) + SourceIndex(3) --- >>>})(internalNamespace || (internalNamespace = {})); 1-> @@ -4662,13 +4667,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalNamespace 7 > { export class someClass {} } -1->Emitted(80, 1) Source(32, 72) + SourceIndex(3) -2 >Emitted(80, 2) Source(32, 73) + SourceIndex(3) -3 >Emitted(80, 4) Source(32, 26) + SourceIndex(3) -4 >Emitted(80, 21) Source(32, 43) + SourceIndex(3) -5 >Emitted(80, 26) Source(32, 26) + SourceIndex(3) -6 >Emitted(80, 43) Source(32, 43) + SourceIndex(3) -7 >Emitted(80, 51) Source(32, 73) + SourceIndex(3) +1->Emitted(81, 1) Source(32, 72) + SourceIndex(3) +2 >Emitted(81, 2) Source(32, 73) + SourceIndex(3) +3 >Emitted(81, 4) Source(32, 26) + SourceIndex(3) +4 >Emitted(81, 21) Source(32, 43) + SourceIndex(3) +5 >Emitted(81, 26) Source(32, 26) + SourceIndex(3) +6 >Emitted(81, 43) Source(32, 43) + SourceIndex(3) +7 >Emitted(81, 51) Source(32, 73) + SourceIndex(3) --- >>>var internalOther; 1 > @@ -4681,10 +4686,10 @@ sourceFile:../../../second/second_part1.ts 2 >namespace 3 > internalOther 4 > .something { export class someClass {} } -1 >Emitted(81, 1) Source(33, 16) + SourceIndex(3) -2 >Emitted(81, 5) Source(33, 26) + SourceIndex(3) -3 >Emitted(81, 18) Source(33, 39) + SourceIndex(3) -4 >Emitted(81, 19) Source(33, 79) + SourceIndex(3) +1 >Emitted(82, 1) Source(33, 16) + SourceIndex(3) +2 >Emitted(82, 5) Source(33, 26) + SourceIndex(3) +3 >Emitted(82, 18) Source(33, 39) + SourceIndex(3) +4 >Emitted(82, 19) Source(33, 79) + SourceIndex(3) --- >>>(function (internalOther) { 1-> @@ -4693,9 +4698,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > internalOther -1->Emitted(82, 1) Source(33, 16) + SourceIndex(3) -2 >Emitted(82, 12) Source(33, 26) + SourceIndex(3) -3 >Emitted(82, 25) Source(33, 39) + SourceIndex(3) +1->Emitted(83, 1) Source(33, 16) + SourceIndex(3) +2 >Emitted(83, 12) Source(33, 26) + SourceIndex(3) +3 >Emitted(83, 25) Source(33, 39) + SourceIndex(3) --- >>> var something; 1 >^^^^ @@ -4707,10 +4712,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(83, 5) Source(33, 40) + SourceIndex(3) -2 >Emitted(83, 9) Source(33, 40) + SourceIndex(3) -3 >Emitted(83, 18) Source(33, 49) + SourceIndex(3) -4 >Emitted(83, 19) Source(33, 79) + SourceIndex(3) +1 >Emitted(84, 5) Source(33, 40) + SourceIndex(3) +2 >Emitted(84, 9) Source(33, 40) + SourceIndex(3) +3 >Emitted(84, 18) Source(33, 49) + SourceIndex(3) +4 >Emitted(84, 19) Source(33, 79) + SourceIndex(3) --- >>> (function (something) { 1->^^^^ @@ -4720,21 +4725,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(84, 5) Source(33, 40) + SourceIndex(3) -2 >Emitted(84, 16) Source(33, 40) + SourceIndex(3) -3 >Emitted(84, 25) Source(33, 49) + SourceIndex(3) +1->Emitted(85, 5) Source(33, 40) + SourceIndex(3) +2 >Emitted(85, 16) Source(33, 40) + SourceIndex(3) +3 >Emitted(85, 25) Source(33, 49) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(85, 9) Source(33, 52) + SourceIndex(3) +1->Emitted(86, 9) Source(33, 52) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(86, 13) Source(33, 52) + SourceIndex(3) +1->Emitted(87, 13) Source(33, 52) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -4742,16 +4747,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(87, 13) Source(33, 76) + SourceIndex(3) -2 >Emitted(87, 14) Source(33, 77) + SourceIndex(3) +1->Emitted(88, 13) Source(33, 76) + SourceIndex(3) +2 >Emitted(88, 14) Source(33, 77) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(88, 13) Source(33, 76) + SourceIndex(3) -2 >Emitted(88, 29) Source(33, 77) + SourceIndex(3) +1->Emitted(89, 13) Source(33, 76) + SourceIndex(3) +2 >Emitted(89, 29) Source(33, 77) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -4763,10 +4768,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(89, 9) Source(33, 76) + SourceIndex(3) -2 >Emitted(89, 10) Source(33, 77) + SourceIndex(3) -3 >Emitted(89, 10) Source(33, 52) + SourceIndex(3) -4 >Emitted(89, 14) Source(33, 77) + SourceIndex(3) +1 >Emitted(90, 9) Source(33, 76) + SourceIndex(3) +2 >Emitted(90, 10) Source(33, 77) + SourceIndex(3) +3 >Emitted(90, 10) Source(33, 52) + SourceIndex(3) +4 >Emitted(90, 14) Source(33, 77) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^ @@ -4778,10 +4783,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(90, 9) Source(33, 65) + SourceIndex(3) -2 >Emitted(90, 28) Source(33, 74) + SourceIndex(3) -3 >Emitted(90, 40) Source(33, 77) + SourceIndex(3) -4 >Emitted(90, 41) Source(33, 77) + SourceIndex(3) +1->Emitted(91, 9) Source(33, 65) + SourceIndex(3) +2 >Emitted(91, 28) Source(33, 74) + SourceIndex(3) +3 >Emitted(91, 40) Source(33, 77) + SourceIndex(3) +4 >Emitted(91, 41) Source(33, 77) + SourceIndex(3) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^ @@ -4802,15 +4807,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(91, 5) Source(33, 78) + SourceIndex(3) -2 >Emitted(91, 6) Source(33, 79) + SourceIndex(3) -3 >Emitted(91, 8) Source(33, 40) + SourceIndex(3) -4 >Emitted(91, 17) Source(33, 49) + SourceIndex(3) -5 >Emitted(91, 20) Source(33, 40) + SourceIndex(3) -6 >Emitted(91, 43) Source(33, 49) + SourceIndex(3) -7 >Emitted(91, 48) Source(33, 40) + SourceIndex(3) -8 >Emitted(91, 71) Source(33, 49) + SourceIndex(3) -9 >Emitted(91, 79) Source(33, 79) + SourceIndex(3) +1->Emitted(92, 5) Source(33, 78) + SourceIndex(3) +2 >Emitted(92, 6) Source(33, 79) + SourceIndex(3) +3 >Emitted(92, 8) Source(33, 40) + SourceIndex(3) +4 >Emitted(92, 17) Source(33, 49) + SourceIndex(3) +5 >Emitted(92, 20) Source(33, 40) + SourceIndex(3) +6 >Emitted(92, 43) Source(33, 49) + SourceIndex(3) +7 >Emitted(92, 48) Source(33, 40) + SourceIndex(3) +8 >Emitted(92, 71) Source(33, 49) + SourceIndex(3) +9 >Emitted(92, 79) Source(33, 79) + SourceIndex(3) --- >>>})(internalOther || (internalOther = {})); 1 > @@ -4828,13 +4833,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalOther 7 > .something { export class someClass {} } -1 >Emitted(92, 1) Source(33, 78) + SourceIndex(3) -2 >Emitted(92, 2) Source(33, 79) + SourceIndex(3) -3 >Emitted(92, 4) Source(33, 26) + SourceIndex(3) -4 >Emitted(92, 17) Source(33, 39) + SourceIndex(3) -5 >Emitted(92, 22) Source(33, 26) + SourceIndex(3) -6 >Emitted(92, 35) Source(33, 39) + SourceIndex(3) -7 >Emitted(92, 43) Source(33, 79) + SourceIndex(3) +1 >Emitted(93, 1) Source(33, 78) + SourceIndex(3) +2 >Emitted(93, 2) Source(33, 79) + SourceIndex(3) +3 >Emitted(93, 4) Source(33, 26) + SourceIndex(3) +4 >Emitted(93, 17) Source(33, 39) + SourceIndex(3) +5 >Emitted(93, 22) Source(33, 26) + SourceIndex(3) +6 >Emitted(93, 35) Source(33, 39) + SourceIndex(3) +7 >Emitted(93, 43) Source(33, 79) + SourceIndex(3) --- >>>var internalImport = internalNamespace.someClass; 1-> @@ -4854,14 +4859,14 @@ sourceFile:../../../second/second_part1.ts 6 > . 7 > someClass 8 > ; -1->Emitted(93, 1) Source(34, 16) + SourceIndex(3) -2 >Emitted(93, 5) Source(34, 23) + SourceIndex(3) -3 >Emitted(93, 19) Source(34, 37) + SourceIndex(3) -4 >Emitted(93, 22) Source(34, 40) + SourceIndex(3) -5 >Emitted(93, 39) Source(34, 57) + SourceIndex(3) -6 >Emitted(93, 40) Source(34, 58) + SourceIndex(3) -7 >Emitted(93, 49) Source(34, 67) + SourceIndex(3) -8 >Emitted(93, 50) Source(34, 68) + SourceIndex(3) +1->Emitted(94, 1) Source(34, 16) + SourceIndex(3) +2 >Emitted(94, 5) Source(34, 23) + SourceIndex(3) +3 >Emitted(94, 19) Source(34, 37) + SourceIndex(3) +4 >Emitted(94, 22) Source(34, 40) + SourceIndex(3) +5 >Emitted(94, 39) Source(34, 57) + SourceIndex(3) +6 >Emitted(94, 40) Source(34, 58) + SourceIndex(3) +7 >Emitted(94, 49) Source(34, 67) + SourceIndex(3) +8 >Emitted(94, 50) Source(34, 68) + SourceIndex(3) --- >>>var internalConst = 10; 1 > @@ -4878,12 +4883,12 @@ sourceFile:../../../second/second_part1.ts 4 > = 5 > 10 6 > ; -1 >Emitted(94, 1) Source(36, 16) + SourceIndex(3) -2 >Emitted(94, 5) Source(36, 22) + SourceIndex(3) -3 >Emitted(94, 18) Source(36, 35) + SourceIndex(3) -4 >Emitted(94, 21) Source(36, 38) + SourceIndex(3) -5 >Emitted(94, 23) Source(36, 40) + SourceIndex(3) -6 >Emitted(94, 24) Source(36, 41) + SourceIndex(3) +1 >Emitted(95, 1) Source(36, 16) + SourceIndex(3) +2 >Emitted(95, 5) Source(36, 22) + SourceIndex(3) +3 >Emitted(95, 18) Source(36, 35) + SourceIndex(3) +4 >Emitted(95, 21) Source(36, 38) + SourceIndex(3) +5 >Emitted(95, 23) Source(36, 40) + SourceIndex(3) +6 >Emitted(95, 24) Source(36, 41) + SourceIndex(3) --- >>>var internalEnum; 1 > @@ -4894,9 +4899,9 @@ sourceFile:../../../second/second_part1.ts >/**@internal*/ 2 >enum 3 > internalEnum { a, b, c } -1 >Emitted(95, 1) Source(37, 16) + SourceIndex(3) -2 >Emitted(95, 5) Source(37, 21) + SourceIndex(3) -3 >Emitted(95, 17) Source(37, 45) + SourceIndex(3) +1 >Emitted(96, 1) Source(37, 16) + SourceIndex(3) +2 >Emitted(96, 5) Source(37, 21) + SourceIndex(3) +3 >Emitted(96, 17) Source(37, 45) + SourceIndex(3) --- >>>(function (internalEnum) { 1-> @@ -4906,9 +4911,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >enum 3 > internalEnum -1->Emitted(96, 1) Source(37, 16) + SourceIndex(3) -2 >Emitted(96, 12) Source(37, 21) + SourceIndex(3) -3 >Emitted(96, 24) Source(37, 33) + SourceIndex(3) +1->Emitted(97, 1) Source(37, 16) + SourceIndex(3) +2 >Emitted(97, 12) Source(37, 21) + SourceIndex(3) +3 >Emitted(97, 24) Source(37, 33) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^ @@ -4918,9 +4923,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(97, 5) Source(37, 36) + SourceIndex(3) -2 >Emitted(97, 46) Source(37, 37) + SourceIndex(3) -3 >Emitted(97, 47) Source(37, 37) + SourceIndex(3) +1->Emitted(98, 5) Source(37, 36) + SourceIndex(3) +2 >Emitted(98, 46) Source(37, 37) + SourceIndex(3) +3 >Emitted(98, 47) Source(37, 37) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^ @@ -4930,9 +4935,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(98, 5) Source(37, 39) + SourceIndex(3) -2 >Emitted(98, 46) Source(37, 40) + SourceIndex(3) -3 >Emitted(98, 47) Source(37, 40) + SourceIndex(3) +1->Emitted(99, 5) Source(37, 39) + SourceIndex(3) +2 >Emitted(99, 46) Source(37, 40) + SourceIndex(3) +3 >Emitted(99, 47) Source(37, 40) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^ @@ -4941,9 +4946,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(99, 5) Source(37, 42) + SourceIndex(3) -2 >Emitted(99, 46) Source(37, 43) + SourceIndex(3) -3 >Emitted(99, 47) Source(37, 43) + SourceIndex(3) +1->Emitted(100, 5) Source(37, 42) + SourceIndex(3) +2 >Emitted(100, 46) Source(37, 43) + SourceIndex(3) +3 >Emitted(100, 47) Source(37, 43) + SourceIndex(3) --- >>>})(internalEnum || (internalEnum = {})); 1 > @@ -4960,13 +4965,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalEnum 7 > { a, b, c } -1 >Emitted(100, 1) Source(37, 44) + SourceIndex(3) -2 >Emitted(100, 2) Source(37, 45) + SourceIndex(3) -3 >Emitted(100, 4) Source(37, 21) + SourceIndex(3) -4 >Emitted(100, 16) Source(37, 33) + SourceIndex(3) -5 >Emitted(100, 21) Source(37, 21) + SourceIndex(3) -6 >Emitted(100, 33) Source(37, 33) + SourceIndex(3) -7 >Emitted(100, 41) Source(37, 45) + SourceIndex(3) +1 >Emitted(101, 1) Source(37, 44) + SourceIndex(3) +2 >Emitted(101, 2) Source(37, 45) + SourceIndex(3) +3 >Emitted(101, 4) Source(37, 21) + SourceIndex(3) +4 >Emitted(101, 16) Source(37, 33) + SourceIndex(3) +5 >Emitted(101, 21) Source(37, 21) + SourceIndex(3) +6 >Emitted(101, 33) Source(37, 33) + SourceIndex(3) +7 >Emitted(101, 41) Source(37, 45) + SourceIndex(3) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -4976,13 +4981,13 @@ sourceFile:../../../second/second_part2.ts 1 > 2 >^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(101, 1) Source(1, 1) + SourceIndex(4) +1 >Emitted(102, 1) Source(1, 1) + SourceIndex(4) --- >>> function C() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(102, 5) Source(1, 1) + SourceIndex(4) +1->Emitted(103, 5) Source(1, 1) + SourceIndex(4) --- >>> } 1->^^^^ @@ -4994,8 +4999,8 @@ sourceFile:../../../second/second_part2.ts > } > 2 > } -1->Emitted(103, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(103, 6) Source(5, 2) + SourceIndex(4) +1->Emitted(104, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(104, 6) Source(5, 2) + SourceIndex(4) --- >>> C.prototype.doSomething = function () { 1->^^^^ @@ -5005,9 +5010,9 @@ sourceFile:../../../second/second_part2.ts 1-> 2 > doSomething 3 > -1->Emitted(104, 5) Source(2, 5) + SourceIndex(4) -2 >Emitted(104, 28) Source(2, 16) + SourceIndex(4) -3 >Emitted(104, 31) Source(2, 5) + SourceIndex(4) +1->Emitted(105, 5) Source(2, 5) + SourceIndex(4) +2 >Emitted(105, 28) Source(2, 16) + SourceIndex(4) +3 >Emitted(105, 31) Source(2, 5) + SourceIndex(4) --- >>> console.log("something got done"); 1->^^^^^^^^ @@ -5027,14 +5032,14 @@ sourceFile:../../../second/second_part2.ts 6 > "something got done" 7 > ) 8 > ; -1->Emitted(105, 9) Source(3, 9) + SourceIndex(4) -2 >Emitted(105, 16) Source(3, 16) + SourceIndex(4) -3 >Emitted(105, 17) Source(3, 17) + SourceIndex(4) -4 >Emitted(105, 20) Source(3, 20) + SourceIndex(4) -5 >Emitted(105, 21) Source(3, 21) + SourceIndex(4) -6 >Emitted(105, 41) Source(3, 41) + SourceIndex(4) -7 >Emitted(105, 42) Source(3, 42) + SourceIndex(4) -8 >Emitted(105, 43) Source(3, 43) + SourceIndex(4) +1->Emitted(106, 9) Source(3, 9) + SourceIndex(4) +2 >Emitted(106, 16) Source(3, 16) + SourceIndex(4) +3 >Emitted(106, 17) Source(3, 17) + SourceIndex(4) +4 >Emitted(106, 20) Source(3, 20) + SourceIndex(4) +5 >Emitted(106, 21) Source(3, 21) + SourceIndex(4) +6 >Emitted(106, 41) Source(3, 41) + SourceIndex(4) +7 >Emitted(106, 42) Source(3, 42) + SourceIndex(4) +8 >Emitted(106, 43) Source(3, 43) + SourceIndex(4) --- >>> }; 1 >^^^^ @@ -5043,8 +5048,8 @@ sourceFile:../../../second/second_part2.ts 1 > > 2 > } -1 >Emitted(106, 5) Source(4, 5) + SourceIndex(4) -2 >Emitted(106, 6) Source(4, 6) + SourceIndex(4) +1 >Emitted(107, 5) Source(4, 5) + SourceIndex(4) +2 >Emitted(107, 6) Source(4, 6) + SourceIndex(4) --- >>> return C; 1->^^^^ @@ -5052,8 +5057,8 @@ sourceFile:../../../second/second_part2.ts 1-> > 2 > } -1->Emitted(107, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(107, 13) Source(5, 2) + SourceIndex(4) +1->Emitted(108, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(108, 13) Source(5, 2) + SourceIndex(4) --- >>>}()); 1 > @@ -5069,10 +5074,10 @@ sourceFile:../../../second/second_part2.ts > console.log("something got done"); > } > } -1 >Emitted(108, 1) Source(5, 1) + SourceIndex(4) -2 >Emitted(108, 2) Source(5, 2) + SourceIndex(4) -3 >Emitted(108, 2) Source(1, 1) + SourceIndex(4) -4 >Emitted(108, 6) Source(5, 2) + SourceIndex(4) +1 >Emitted(109, 1) Source(5, 1) + SourceIndex(4) +2 >Emitted(109, 2) Source(5, 2) + SourceIndex(4) +3 >Emitted(109, 2) Source(1, 1) + SourceIndex(4) +4 >Emitted(109, 6) Source(5, 2) + SourceIndex(4) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -5096,14 +5101,14 @@ sourceFile:../../third_part1.ts 6 > C 7 > () 8 > ; -1->Emitted(109, 1) Source(1, 1) + SourceIndex(5) -2 >Emitted(109, 5) Source(1, 5) + SourceIndex(5) -3 >Emitted(109, 6) Source(1, 6) + SourceIndex(5) -4 >Emitted(109, 9) Source(1, 9) + SourceIndex(5) -5 >Emitted(109, 13) Source(1, 13) + SourceIndex(5) -6 >Emitted(109, 14) Source(1, 14) + SourceIndex(5) -7 >Emitted(109, 16) Source(1, 16) + SourceIndex(5) -8 >Emitted(109, 17) Source(1, 17) + SourceIndex(5) +1->Emitted(110, 1) Source(1, 1) + SourceIndex(5) +2 >Emitted(110, 5) Source(1, 5) + SourceIndex(5) +3 >Emitted(110, 6) Source(1, 6) + SourceIndex(5) +4 >Emitted(110, 9) Source(1, 9) + SourceIndex(5) +5 >Emitted(110, 13) Source(1, 13) + SourceIndex(5) +6 >Emitted(110, 14) Source(1, 14) + SourceIndex(5) +7 >Emitted(110, 16) Source(1, 16) + SourceIndex(5) +8 >Emitted(110, 17) Source(1, 17) + SourceIndex(5) --- >>>c.doSomething(); 1-> @@ -5120,12 +5125,12 @@ sourceFile:../../third_part1.ts 4 > doSomething 5 > () 6 > ; -1->Emitted(110, 1) Source(2, 1) + SourceIndex(5) -2 >Emitted(110, 2) Source(2, 2) + SourceIndex(5) -3 >Emitted(110, 3) Source(2, 3) + SourceIndex(5) -4 >Emitted(110, 14) Source(2, 14) + SourceIndex(5) -5 >Emitted(110, 16) Source(2, 16) + SourceIndex(5) -6 >Emitted(110, 17) Source(2, 17) + SourceIndex(5) +1->Emitted(111, 1) Source(2, 1) + SourceIndex(5) +2 >Emitted(111, 2) Source(2, 2) + SourceIndex(5) +3 >Emitted(111, 3) Source(2, 3) + SourceIndex(5) +4 >Emitted(111, 14) Source(2, 14) + SourceIndex(5) +5 >Emitted(111, 16) Source(2, 16) + SourceIndex(5) +6 >Emitted(111, 17) Source(2, 17) + SourceIndex(5) --- >>>//# sourceMappingURL=third-output.js.map @@ -5153,20 +5158,20 @@ sourceFile:../../third_part1.ts }, { "pos": 110, - "end": 3163, + "end": 3211, "kind": "prepend", "data": "../../../2/second-output.js", "texts": [ { "pos": 110, - "end": 3163, + "end": 3211, "kind": "text" } ] }, { - "pos": 3163, - "end": 3199, + "pos": 3211, + "end": 3247, "kind": "text" } ] @@ -5225,9 +5230,9 @@ function f() { } ---------------------------------------------------------------------- -prepend: (110-3163):: ../../../2/second-output.js texts:: 1 +prepend: (110-3211):: ../../../2/second-output.js texts:: 1 >>-------------------------------------------------------------------- -text: (110-3163) +text: (110-3211) var N; (function (N) { function f() { @@ -5238,8 +5243,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -5332,7 +5338,7 @@ var C = (function () { }()); ---------------------------------------------------------------------- -text: (3163-3199) +text: (3211-3247) var c = new C(); c.doSomething(); diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js index 23dc29eeac7b7..0d954a31ac992 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js @@ -1210,8 +1210,9 @@ var N; var normalC = /** @class */ (function () { /**@internal*/ function normalC() { } - /**@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /**@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /**@internal*/ get: function () { return 10; }, /**@internal*/ set: function (val) { }, enumerable: false, @@ -1305,7 +1306,7 @@ var C = /** @class */ (function () { //# sourceMappingURL=second-output.js.map //// [/src/2/second-output.js.map] -{"version":3,"file":"second-output.js","sourceRoot":"","sources":["../first/first_PART1.ts","../first/first_part2.ts","../first/first_part3.ts","../second/second_part1.ts","../second/second_part2.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"second-output.js","sourceRoot":"","sources":["../first/first_PART1.ts","../first/first_part2.ts","../first/first_part3.ts","../second/second_part1.ts","../second/second_part2.ts"],"names":[],"mappings":"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"} //// [/src/2/second-output.js.map.baseline.txt] =================================================================== @@ -1611,13 +1612,14 @@ sourceFile:../second/second_part1.ts >>> } 1 >^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 >constructor() { 2 > } 1 >Emitted(16, 5) Source(14, 36) + SourceIndex(3) 2 >Emitted(16, 6) Source(14, 37) + SourceIndex(3) --- ->>> /**@internal*/ normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> /**@internal*/ normalC_prototype.method = function () { }; 1->^^^^ 2 > ^^^^^^^^^^^^^^ 3 > ^ @@ -1634,15 +1636,15 @@ sourceFile:../second/second_part1.ts 5 > 6 > method() { 7 > } -1->Emitted(17, 5) Source(16, 5) + SourceIndex(3) -2 >Emitted(17, 19) Source(16, 19) + SourceIndex(3) -3 >Emitted(17, 20) Source(16, 20) + SourceIndex(3) -4 >Emitted(17, 44) Source(16, 26) + SourceIndex(3) -5 >Emitted(17, 47) Source(16, 20) + SourceIndex(3) -6 >Emitted(17, 61) Source(16, 31) + SourceIndex(3) -7 >Emitted(17, 62) Source(16, 32) + SourceIndex(3) ---- ->>> Object.defineProperty(normalC.prototype, "c", { +1->Emitted(18, 5) Source(16, 5) + SourceIndex(3) +2 >Emitted(18, 19) Source(16, 19) + SourceIndex(3) +3 >Emitted(18, 20) Source(16, 20) + SourceIndex(3) +4 >Emitted(18, 44) Source(16, 26) + SourceIndex(3) +5 >Emitted(18, 47) Source(16, 20) + SourceIndex(3) +6 >Emitted(18, 61) Source(16, 31) + SourceIndex(3) +7 >Emitted(18, 62) Source(16, 32) + SourceIndex(3) +--- +>>> Object.defineProperty(normalC_prototype, "c", { 1 >^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -1651,9 +1653,9 @@ sourceFile:../second/second_part1.ts > /**@internal*/ 2 > get 3 > c -1 >Emitted(18, 5) Source(17, 20) + SourceIndex(3) -2 >Emitted(18, 27) Source(17, 24) + SourceIndex(3) -3 >Emitted(18, 49) Source(17, 25) + SourceIndex(3) +1 >Emitted(19, 5) Source(17, 20) + SourceIndex(3) +2 >Emitted(19, 27) Source(17, 24) + SourceIndex(3) +3 >Emitted(19, 49) Source(17, 25) + SourceIndex(3) --- >>> /**@internal*/ get: function () { return 10; }, 1->^^^^^^^^ @@ -1674,15 +1676,15 @@ sourceFile:../second/second_part1.ts 7 > ; 8 > 9 > } -1->Emitted(19, 9) Source(17, 5) + SourceIndex(3) -2 >Emitted(19, 23) Source(17, 19) + SourceIndex(3) -3 >Emitted(19, 29) Source(17, 20) + SourceIndex(3) -4 >Emitted(19, 43) Source(17, 30) + SourceIndex(3) -5 >Emitted(19, 50) Source(17, 37) + SourceIndex(3) -6 >Emitted(19, 52) Source(17, 39) + SourceIndex(3) -7 >Emitted(19, 53) Source(17, 40) + SourceIndex(3) -8 >Emitted(19, 54) Source(17, 41) + SourceIndex(3) -9 >Emitted(19, 55) Source(17, 42) + SourceIndex(3) +1->Emitted(20, 9) Source(17, 5) + SourceIndex(3) +2 >Emitted(20, 23) Source(17, 19) + SourceIndex(3) +3 >Emitted(20, 29) Source(17, 20) + SourceIndex(3) +4 >Emitted(20, 43) Source(17, 30) + SourceIndex(3) +5 >Emitted(20, 50) Source(17, 37) + SourceIndex(3) +6 >Emitted(20, 52) Source(17, 39) + SourceIndex(3) +7 >Emitted(20, 53) Source(17, 40) + SourceIndex(3) +8 >Emitted(20, 54) Source(17, 41) + SourceIndex(3) +9 >Emitted(20, 55) Source(17, 42) + SourceIndex(3) --- >>> /**@internal*/ set: function (val) { }, 1 >^^^^^^^^ @@ -1700,13 +1702,13 @@ sourceFile:../second/second_part1.ts 5 > val: number 6 > ) { 7 > } -1 >Emitted(20, 9) Source(18, 5) + SourceIndex(3) -2 >Emitted(20, 23) Source(18, 19) + SourceIndex(3) -3 >Emitted(20, 29) Source(18, 20) + SourceIndex(3) -4 >Emitted(20, 39) Source(18, 26) + SourceIndex(3) -5 >Emitted(20, 42) Source(18, 37) + SourceIndex(3) -6 >Emitted(20, 46) Source(18, 41) + SourceIndex(3) -7 >Emitted(20, 47) Source(18, 42) + SourceIndex(3) +1 >Emitted(21, 9) Source(18, 5) + SourceIndex(3) +2 >Emitted(21, 23) Source(18, 19) + SourceIndex(3) +3 >Emitted(21, 29) Source(18, 20) + SourceIndex(3) +4 >Emitted(21, 39) Source(18, 26) + SourceIndex(3) +5 >Emitted(21, 42) Source(18, 37) + SourceIndex(3) +6 >Emitted(21, 46) Source(18, 41) + SourceIndex(3) +7 >Emitted(21, 47) Source(18, 42) + SourceIndex(3) --- >>> enumerable: false, >>> configurable: true @@ -1714,7 +1716,7 @@ sourceFile:../second/second_part1.ts 1 >^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(23, 8) Source(17, 42) + SourceIndex(3) +1 >Emitted(24, 8) Source(17, 42) + SourceIndex(3) --- >>> return normalC; 1->^^^^ @@ -1723,8 +1725,8 @@ sourceFile:../second/second_part1.ts > /**@internal*/ set c(val: number) { } > 2 > } -1->Emitted(24, 5) Source(19, 1) + SourceIndex(3) -2 >Emitted(24, 19) Source(19, 2) + SourceIndex(3) +1->Emitted(25, 5) Source(19, 1) + SourceIndex(3) +2 >Emitted(25, 19) Source(19, 2) + SourceIndex(3) --- >>>}()); 1 > @@ -1742,10 +1744,10 @@ sourceFile:../second/second_part1.ts > /**@internal*/ get c() { return 10; } > /**@internal*/ set c(val: number) { } > } -1 >Emitted(25, 1) Source(19, 1) + SourceIndex(3) -2 >Emitted(25, 2) Source(19, 2) + SourceIndex(3) -3 >Emitted(25, 2) Source(13, 1) + SourceIndex(3) -4 >Emitted(25, 6) Source(19, 2) + SourceIndex(3) +1 >Emitted(26, 1) Source(19, 1) + SourceIndex(3) +2 >Emitted(26, 2) Source(19, 2) + SourceIndex(3) +3 >Emitted(26, 2) Source(13, 1) + SourceIndex(3) +4 >Emitted(26, 6) Source(19, 2) + SourceIndex(3) --- >>>var normalN; 1-> @@ -1767,10 +1769,10 @@ sourceFile:../second/second_part1.ts > /**@internal*/ export const internalConst = 10; > /**@internal*/ export enum internalEnum { a, b, c } > } -1->Emitted(26, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(26, 5) Source(20, 11) + SourceIndex(3) -3 >Emitted(26, 12) Source(20, 18) + SourceIndex(3) -4 >Emitted(26, 13) Source(29, 2) + SourceIndex(3) +1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(27, 5) Source(20, 11) + SourceIndex(3) +3 >Emitted(27, 12) Source(20, 18) + SourceIndex(3) +4 >Emitted(27, 13) Source(29, 2) + SourceIndex(3) --- >>>(function (normalN) { 1-> @@ -1780,9 +1782,9 @@ sourceFile:../second/second_part1.ts 1-> 2 >namespace 3 > normalN -1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(27, 12) Source(20, 11) + SourceIndex(3) -3 >Emitted(27, 19) Source(20, 18) + SourceIndex(3) +1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(28, 12) Source(20, 11) + SourceIndex(3) +3 >Emitted(28, 19) Source(20, 18) + SourceIndex(3) --- >>> /**@internal*/ var C = /** @class */ (function () { 1->^^^^ @@ -1793,15 +1795,15 @@ sourceFile:../second/second_part1.ts > 2 > /**@internal*/ 3 > -1->Emitted(28, 5) Source(21, 5) + SourceIndex(3) -2 >Emitted(28, 19) Source(21, 19) + SourceIndex(3) -3 >Emitted(28, 20) Source(21, 20) + SourceIndex(3) +1->Emitted(29, 5) Source(21, 5) + SourceIndex(3) +2 >Emitted(29, 19) Source(21, 19) + SourceIndex(3) +3 >Emitted(29, 20) Source(21, 20) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(29, 9) Source(21, 20) + SourceIndex(3) +1->Emitted(30, 9) Source(21, 20) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -1809,16 +1811,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(30, 9) Source(21, 37) + SourceIndex(3) -2 >Emitted(30, 10) Source(21, 38) + SourceIndex(3) +1->Emitted(31, 9) Source(21, 37) + SourceIndex(3) +2 >Emitted(31, 10) Source(21, 38) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(31, 9) Source(21, 37) + SourceIndex(3) -2 >Emitted(31, 17) Source(21, 38) + SourceIndex(3) +1->Emitted(32, 9) Source(21, 37) + SourceIndex(3) +2 >Emitted(32, 17) Source(21, 38) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -1830,10 +1832,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(32, 5) Source(21, 37) + SourceIndex(3) -2 >Emitted(32, 6) Source(21, 38) + SourceIndex(3) -3 >Emitted(32, 6) Source(21, 20) + SourceIndex(3) -4 >Emitted(32, 10) Source(21, 38) + SourceIndex(3) +1 >Emitted(33, 5) Source(21, 37) + SourceIndex(3) +2 >Emitted(33, 6) Source(21, 38) + SourceIndex(3) +3 >Emitted(33, 6) Source(21, 20) + SourceIndex(3) +4 >Emitted(33, 10) Source(21, 38) + SourceIndex(3) --- >>> normalN.C = C; 1->^^^^ @@ -1845,10 +1847,10 @@ sourceFile:../second/second_part1.ts 2 > C 3 > { } 4 > -1->Emitted(33, 5) Source(21, 33) + SourceIndex(3) -2 >Emitted(33, 14) Source(21, 34) + SourceIndex(3) -3 >Emitted(33, 18) Source(21, 38) + SourceIndex(3) -4 >Emitted(33, 19) Source(21, 38) + SourceIndex(3) +1->Emitted(34, 5) Source(21, 33) + SourceIndex(3) +2 >Emitted(34, 14) Source(21, 34) + SourceIndex(3) +3 >Emitted(34, 18) Source(21, 38) + SourceIndex(3) +4 >Emitted(34, 19) Source(21, 38) + SourceIndex(3) --- >>> /**@internal*/ function foo() { } 1->^^^^ @@ -1866,13 +1868,13 @@ sourceFile:../second/second_part1.ts 5 > foo 6 > () { 7 > } -1->Emitted(34, 5) Source(22, 5) + SourceIndex(3) -2 >Emitted(34, 19) Source(22, 19) + SourceIndex(3) -3 >Emitted(34, 20) Source(22, 20) + SourceIndex(3) -4 >Emitted(34, 29) Source(22, 36) + SourceIndex(3) -5 >Emitted(34, 32) Source(22, 39) + SourceIndex(3) -6 >Emitted(34, 37) Source(22, 43) + SourceIndex(3) -7 >Emitted(34, 38) Source(22, 44) + SourceIndex(3) +1->Emitted(35, 5) Source(22, 5) + SourceIndex(3) +2 >Emitted(35, 19) Source(22, 19) + SourceIndex(3) +3 >Emitted(35, 20) Source(22, 20) + SourceIndex(3) +4 >Emitted(35, 29) Source(22, 36) + SourceIndex(3) +5 >Emitted(35, 32) Source(22, 39) + SourceIndex(3) +6 >Emitted(35, 37) Source(22, 43) + SourceIndex(3) +7 >Emitted(35, 38) Source(22, 44) + SourceIndex(3) --- >>> normalN.foo = foo; 1 >^^^^ @@ -1884,10 +1886,10 @@ sourceFile:../second/second_part1.ts 2 > foo 3 > () {} 4 > -1 >Emitted(35, 5) Source(22, 36) + SourceIndex(3) -2 >Emitted(35, 16) Source(22, 39) + SourceIndex(3) -3 >Emitted(35, 22) Source(22, 44) + SourceIndex(3) -4 >Emitted(35, 23) Source(22, 44) + SourceIndex(3) +1 >Emitted(36, 5) Source(22, 36) + SourceIndex(3) +2 >Emitted(36, 16) Source(22, 39) + SourceIndex(3) +3 >Emitted(36, 22) Source(22, 44) + SourceIndex(3) +4 >Emitted(36, 23) Source(22, 44) + SourceIndex(3) --- >>> /**@internal*/ var someNamespace; 1->^^^^ @@ -1903,12 +1905,12 @@ sourceFile:../second/second_part1.ts 4 > export namespace 5 > someNamespace 6 > { export class C {} } -1->Emitted(36, 5) Source(23, 5) + SourceIndex(3) -2 >Emitted(36, 19) Source(23, 19) + SourceIndex(3) -3 >Emitted(36, 20) Source(23, 20) + SourceIndex(3) -4 >Emitted(36, 24) Source(23, 37) + SourceIndex(3) -5 >Emitted(36, 37) Source(23, 50) + SourceIndex(3) -6 >Emitted(36, 38) Source(23, 72) + SourceIndex(3) +1->Emitted(37, 5) Source(23, 5) + SourceIndex(3) +2 >Emitted(37, 19) Source(23, 19) + SourceIndex(3) +3 >Emitted(37, 20) Source(23, 20) + SourceIndex(3) +4 >Emitted(37, 24) Source(23, 37) + SourceIndex(3) +5 >Emitted(37, 37) Source(23, 50) + SourceIndex(3) +6 >Emitted(37, 38) Source(23, 72) + SourceIndex(3) --- >>> (function (someNamespace) { 1 >^^^^ @@ -1918,21 +1920,21 @@ sourceFile:../second/second_part1.ts 1 > 2 > export namespace 3 > someNamespace -1 >Emitted(37, 5) Source(23, 20) + SourceIndex(3) -2 >Emitted(37, 16) Source(23, 37) + SourceIndex(3) -3 >Emitted(37, 29) Source(23, 50) + SourceIndex(3) +1 >Emitted(38, 5) Source(23, 20) + SourceIndex(3) +2 >Emitted(38, 16) Source(23, 37) + SourceIndex(3) +3 >Emitted(38, 29) Source(23, 50) + SourceIndex(3) --- >>> var C = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(38, 9) Source(23, 53) + SourceIndex(3) +1->Emitted(39, 9) Source(23, 53) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(39, 13) Source(23, 53) + SourceIndex(3) +1->Emitted(40, 13) Source(23, 53) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -1940,16 +1942,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(40, 13) Source(23, 69) + SourceIndex(3) -2 >Emitted(40, 14) Source(23, 70) + SourceIndex(3) +1->Emitted(41, 13) Source(23, 69) + SourceIndex(3) +2 >Emitted(41, 14) Source(23, 70) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(41, 13) Source(23, 69) + SourceIndex(3) -2 >Emitted(41, 21) Source(23, 70) + SourceIndex(3) +1->Emitted(42, 13) Source(23, 69) + SourceIndex(3) +2 >Emitted(42, 21) Source(23, 70) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -1961,10 +1963,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(42, 9) Source(23, 69) + SourceIndex(3) -2 >Emitted(42, 10) Source(23, 70) + SourceIndex(3) -3 >Emitted(42, 10) Source(23, 53) + SourceIndex(3) -4 >Emitted(42, 14) Source(23, 70) + SourceIndex(3) +1 >Emitted(43, 9) Source(23, 69) + SourceIndex(3) +2 >Emitted(43, 10) Source(23, 70) + SourceIndex(3) +3 >Emitted(43, 10) Source(23, 53) + SourceIndex(3) +4 >Emitted(43, 14) Source(23, 70) + SourceIndex(3) --- >>> someNamespace.C = C; 1->^^^^^^^^ @@ -1976,10 +1978,10 @@ sourceFile:../second/second_part1.ts 2 > C 3 > {} 4 > -1->Emitted(43, 9) Source(23, 66) + SourceIndex(3) -2 >Emitted(43, 24) Source(23, 67) + SourceIndex(3) -3 >Emitted(43, 28) Source(23, 70) + SourceIndex(3) -4 >Emitted(43, 29) Source(23, 70) + SourceIndex(3) +1->Emitted(44, 9) Source(23, 66) + SourceIndex(3) +2 >Emitted(44, 24) Source(23, 67) + SourceIndex(3) +3 >Emitted(44, 28) Source(23, 70) + SourceIndex(3) +4 >Emitted(44, 29) Source(23, 70) + SourceIndex(3) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^ @@ -2000,15 +2002,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(44, 5) Source(23, 71) + SourceIndex(3) -2 >Emitted(44, 6) Source(23, 72) + SourceIndex(3) -3 >Emitted(44, 8) Source(23, 37) + SourceIndex(3) -4 >Emitted(44, 21) Source(23, 50) + SourceIndex(3) -5 >Emitted(44, 24) Source(23, 37) + SourceIndex(3) -6 >Emitted(44, 45) Source(23, 50) + SourceIndex(3) -7 >Emitted(44, 50) Source(23, 37) + SourceIndex(3) -8 >Emitted(44, 71) Source(23, 50) + SourceIndex(3) -9 >Emitted(44, 79) Source(23, 72) + SourceIndex(3) +1->Emitted(45, 5) Source(23, 71) + SourceIndex(3) +2 >Emitted(45, 6) Source(23, 72) + SourceIndex(3) +3 >Emitted(45, 8) Source(23, 37) + SourceIndex(3) +4 >Emitted(45, 21) Source(23, 50) + SourceIndex(3) +5 >Emitted(45, 24) Source(23, 37) + SourceIndex(3) +6 >Emitted(45, 45) Source(23, 50) + SourceIndex(3) +7 >Emitted(45, 50) Source(23, 37) + SourceIndex(3) +8 >Emitted(45, 71) Source(23, 50) + SourceIndex(3) +9 >Emitted(45, 79) Source(23, 72) + SourceIndex(3) --- >>> /**@internal*/ var someOther; 1 >^^^^ @@ -2024,12 +2026,12 @@ sourceFile:../second/second_part1.ts 4 > export namespace 5 > someOther 6 > .something { export class someClass {} } -1 >Emitted(45, 5) Source(24, 5) + SourceIndex(3) -2 >Emitted(45, 19) Source(24, 19) + SourceIndex(3) -3 >Emitted(45, 20) Source(24, 20) + SourceIndex(3) -4 >Emitted(45, 24) Source(24, 37) + SourceIndex(3) -5 >Emitted(45, 33) Source(24, 46) + SourceIndex(3) -6 >Emitted(45, 34) Source(24, 86) + SourceIndex(3) +1 >Emitted(46, 5) Source(24, 5) + SourceIndex(3) +2 >Emitted(46, 19) Source(24, 19) + SourceIndex(3) +3 >Emitted(46, 20) Source(24, 20) + SourceIndex(3) +4 >Emitted(46, 24) Source(24, 37) + SourceIndex(3) +5 >Emitted(46, 33) Source(24, 46) + SourceIndex(3) +6 >Emitted(46, 34) Source(24, 86) + SourceIndex(3) --- >>> (function (someOther) { 1 >^^^^ @@ -2038,9 +2040,9 @@ sourceFile:../second/second_part1.ts 1 > 2 > export namespace 3 > someOther -1 >Emitted(46, 5) Source(24, 20) + SourceIndex(3) -2 >Emitted(46, 16) Source(24, 37) + SourceIndex(3) -3 >Emitted(46, 25) Source(24, 46) + SourceIndex(3) +1 >Emitted(47, 5) Source(24, 20) + SourceIndex(3) +2 >Emitted(47, 16) Source(24, 37) + SourceIndex(3) +3 >Emitted(47, 25) Source(24, 46) + SourceIndex(3) --- >>> var something; 1 >^^^^^^^^ @@ -2052,10 +2054,10 @@ sourceFile:../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(47, 9) Source(24, 47) + SourceIndex(3) -2 >Emitted(47, 13) Source(24, 47) + SourceIndex(3) -3 >Emitted(47, 22) Source(24, 56) + SourceIndex(3) -4 >Emitted(47, 23) Source(24, 86) + SourceIndex(3) +1 >Emitted(48, 9) Source(24, 47) + SourceIndex(3) +2 >Emitted(48, 13) Source(24, 47) + SourceIndex(3) +3 >Emitted(48, 22) Source(24, 56) + SourceIndex(3) +4 >Emitted(48, 23) Source(24, 86) + SourceIndex(3) --- >>> (function (something) { 1->^^^^^^^^ @@ -2065,21 +2067,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(48, 9) Source(24, 47) + SourceIndex(3) -2 >Emitted(48, 20) Source(24, 47) + SourceIndex(3) -3 >Emitted(48, 29) Source(24, 56) + SourceIndex(3) +1->Emitted(49, 9) Source(24, 47) + SourceIndex(3) +2 >Emitted(49, 20) Source(24, 47) + SourceIndex(3) +3 >Emitted(49, 29) Source(24, 56) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(49, 13) Source(24, 59) + SourceIndex(3) +1->Emitted(50, 13) Source(24, 59) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(50, 17) Source(24, 59) + SourceIndex(3) +1->Emitted(51, 17) Source(24, 59) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -2087,16 +2089,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(51, 17) Source(24, 83) + SourceIndex(3) -2 >Emitted(51, 18) Source(24, 84) + SourceIndex(3) +1->Emitted(52, 17) Source(24, 83) + SourceIndex(3) +2 >Emitted(52, 18) Source(24, 84) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(52, 17) Source(24, 83) + SourceIndex(3) -2 >Emitted(52, 33) Source(24, 84) + SourceIndex(3) +1->Emitted(53, 17) Source(24, 83) + SourceIndex(3) +2 >Emitted(53, 33) Source(24, 84) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -2108,10 +2110,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(53, 13) Source(24, 83) + SourceIndex(3) -2 >Emitted(53, 14) Source(24, 84) + SourceIndex(3) -3 >Emitted(53, 14) Source(24, 59) + SourceIndex(3) -4 >Emitted(53, 18) Source(24, 84) + SourceIndex(3) +1 >Emitted(54, 13) Source(24, 83) + SourceIndex(3) +2 >Emitted(54, 14) Source(24, 84) + SourceIndex(3) +3 >Emitted(54, 14) Source(24, 59) + SourceIndex(3) +4 >Emitted(54, 18) Source(24, 84) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -2123,10 +2125,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(54, 13) Source(24, 72) + SourceIndex(3) -2 >Emitted(54, 32) Source(24, 81) + SourceIndex(3) -3 >Emitted(54, 44) Source(24, 84) + SourceIndex(3) -4 >Emitted(54, 45) Source(24, 84) + SourceIndex(3) +1->Emitted(55, 13) Source(24, 72) + SourceIndex(3) +2 >Emitted(55, 32) Source(24, 81) + SourceIndex(3) +3 >Emitted(55, 44) Source(24, 84) + SourceIndex(3) +4 >Emitted(55, 45) Source(24, 84) + SourceIndex(3) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^ @@ -2147,15 +2149,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(55, 9) Source(24, 85) + SourceIndex(3) -2 >Emitted(55, 10) Source(24, 86) + SourceIndex(3) -3 >Emitted(55, 12) Source(24, 47) + SourceIndex(3) -4 >Emitted(55, 21) Source(24, 56) + SourceIndex(3) -5 >Emitted(55, 24) Source(24, 47) + SourceIndex(3) -6 >Emitted(55, 43) Source(24, 56) + SourceIndex(3) -7 >Emitted(55, 48) Source(24, 47) + SourceIndex(3) -8 >Emitted(55, 67) Source(24, 56) + SourceIndex(3) -9 >Emitted(55, 75) Source(24, 86) + SourceIndex(3) +1->Emitted(56, 9) Source(24, 85) + SourceIndex(3) +2 >Emitted(56, 10) Source(24, 86) + SourceIndex(3) +3 >Emitted(56, 12) Source(24, 47) + SourceIndex(3) +4 >Emitted(56, 21) Source(24, 56) + SourceIndex(3) +5 >Emitted(56, 24) Source(24, 47) + SourceIndex(3) +6 >Emitted(56, 43) Source(24, 56) + SourceIndex(3) +7 >Emitted(56, 48) Source(24, 47) + SourceIndex(3) +8 >Emitted(56, 67) Source(24, 56) + SourceIndex(3) +9 >Emitted(56, 75) Source(24, 86) + SourceIndex(3) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^ @@ -2176,15 +2178,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(56, 5) Source(24, 85) + SourceIndex(3) -2 >Emitted(56, 6) Source(24, 86) + SourceIndex(3) -3 >Emitted(56, 8) Source(24, 37) + SourceIndex(3) -4 >Emitted(56, 17) Source(24, 46) + SourceIndex(3) -5 >Emitted(56, 20) Source(24, 37) + SourceIndex(3) -6 >Emitted(56, 37) Source(24, 46) + SourceIndex(3) -7 >Emitted(56, 42) Source(24, 37) + SourceIndex(3) -8 >Emitted(56, 59) Source(24, 46) + SourceIndex(3) -9 >Emitted(56, 67) Source(24, 86) + SourceIndex(3) +1 >Emitted(57, 5) Source(24, 85) + SourceIndex(3) +2 >Emitted(57, 6) Source(24, 86) + SourceIndex(3) +3 >Emitted(57, 8) Source(24, 37) + SourceIndex(3) +4 >Emitted(57, 17) Source(24, 46) + SourceIndex(3) +5 >Emitted(57, 20) Source(24, 37) + SourceIndex(3) +6 >Emitted(57, 37) Source(24, 46) + SourceIndex(3) +7 >Emitted(57, 42) Source(24, 37) + SourceIndex(3) +8 >Emitted(57, 59) Source(24, 46) + SourceIndex(3) +9 >Emitted(57, 67) Source(24, 86) + SourceIndex(3) --- >>> /**@internal*/ normalN.someImport = someNamespace.C; 1 >^^^^ @@ -2206,15 +2208,15 @@ sourceFile:../second/second_part1.ts 7 > . 8 > C 9 > ; -1 >Emitted(57, 5) Source(25, 5) + SourceIndex(3) -2 >Emitted(57, 19) Source(25, 19) + SourceIndex(3) -3 >Emitted(57, 20) Source(25, 34) + SourceIndex(3) -4 >Emitted(57, 38) Source(25, 44) + SourceIndex(3) -5 >Emitted(57, 41) Source(25, 47) + SourceIndex(3) -6 >Emitted(57, 54) Source(25, 60) + SourceIndex(3) -7 >Emitted(57, 55) Source(25, 61) + SourceIndex(3) -8 >Emitted(57, 56) Source(25, 62) + SourceIndex(3) -9 >Emitted(57, 57) Source(25, 63) + SourceIndex(3) +1 >Emitted(58, 5) Source(25, 5) + SourceIndex(3) +2 >Emitted(58, 19) Source(25, 19) + SourceIndex(3) +3 >Emitted(58, 20) Source(25, 34) + SourceIndex(3) +4 >Emitted(58, 38) Source(25, 44) + SourceIndex(3) +5 >Emitted(58, 41) Source(25, 47) + SourceIndex(3) +6 >Emitted(58, 54) Source(25, 60) + SourceIndex(3) +7 >Emitted(58, 55) Source(25, 61) + SourceIndex(3) +8 >Emitted(58, 56) Source(25, 62) + SourceIndex(3) +9 >Emitted(58, 57) Source(25, 63) + SourceIndex(3) --- >>> /**@internal*/ normalN.internalConst = 10; 1 >^^^^ @@ -2233,13 +2235,13 @@ sourceFile:../second/second_part1.ts 5 > = 6 > 10 7 > ; -1 >Emitted(58, 5) Source(27, 5) + SourceIndex(3) -2 >Emitted(58, 19) Source(27, 19) + SourceIndex(3) -3 >Emitted(58, 20) Source(27, 33) + SourceIndex(3) -4 >Emitted(58, 41) Source(27, 46) + SourceIndex(3) -5 >Emitted(58, 44) Source(27, 49) + SourceIndex(3) -6 >Emitted(58, 46) Source(27, 51) + SourceIndex(3) -7 >Emitted(58, 47) Source(27, 52) + SourceIndex(3) +1 >Emitted(59, 5) Source(27, 5) + SourceIndex(3) +2 >Emitted(59, 19) Source(27, 19) + SourceIndex(3) +3 >Emitted(59, 20) Source(27, 33) + SourceIndex(3) +4 >Emitted(59, 41) Source(27, 46) + SourceIndex(3) +5 >Emitted(59, 44) Source(27, 49) + SourceIndex(3) +6 >Emitted(59, 46) Source(27, 51) + SourceIndex(3) +7 >Emitted(59, 47) Source(27, 52) + SourceIndex(3) --- >>> /**@internal*/ var internalEnum; 1 >^^^^ @@ -2253,11 +2255,11 @@ sourceFile:../second/second_part1.ts 3 > 4 > export enum 5 > internalEnum { a, b, c } -1 >Emitted(59, 5) Source(28, 5) + SourceIndex(3) -2 >Emitted(59, 19) Source(28, 19) + SourceIndex(3) -3 >Emitted(59, 20) Source(28, 20) + SourceIndex(3) -4 >Emitted(59, 24) Source(28, 32) + SourceIndex(3) -5 >Emitted(59, 36) Source(28, 56) + SourceIndex(3) +1 >Emitted(60, 5) Source(28, 5) + SourceIndex(3) +2 >Emitted(60, 19) Source(28, 19) + SourceIndex(3) +3 >Emitted(60, 20) Source(28, 20) + SourceIndex(3) +4 >Emitted(60, 24) Source(28, 32) + SourceIndex(3) +5 >Emitted(60, 36) Source(28, 56) + SourceIndex(3) --- >>> (function (internalEnum) { 1 >^^^^ @@ -2267,9 +2269,9 @@ sourceFile:../second/second_part1.ts 1 > 2 > export enum 3 > internalEnum -1 >Emitted(60, 5) Source(28, 20) + SourceIndex(3) -2 >Emitted(60, 16) Source(28, 32) + SourceIndex(3) -3 >Emitted(60, 28) Source(28, 44) + SourceIndex(3) +1 >Emitted(61, 5) Source(28, 20) + SourceIndex(3) +2 >Emitted(61, 16) Source(28, 32) + SourceIndex(3) +3 >Emitted(61, 28) Source(28, 44) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -2279,9 +2281,9 @@ sourceFile:../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(61, 9) Source(28, 47) + SourceIndex(3) -2 >Emitted(61, 50) Source(28, 48) + SourceIndex(3) -3 >Emitted(61, 51) Source(28, 48) + SourceIndex(3) +1->Emitted(62, 9) Source(28, 47) + SourceIndex(3) +2 >Emitted(62, 50) Source(28, 48) + SourceIndex(3) +3 >Emitted(62, 51) Source(28, 48) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -2291,9 +2293,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(62, 9) Source(28, 50) + SourceIndex(3) -2 >Emitted(62, 50) Source(28, 51) + SourceIndex(3) -3 >Emitted(62, 51) Source(28, 51) + SourceIndex(3) +1->Emitted(63, 9) Source(28, 50) + SourceIndex(3) +2 >Emitted(63, 50) Source(28, 51) + SourceIndex(3) +3 >Emitted(63, 51) Source(28, 51) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -2303,9 +2305,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(63, 9) Source(28, 53) + SourceIndex(3) -2 >Emitted(63, 50) Source(28, 54) + SourceIndex(3) -3 >Emitted(63, 51) Source(28, 54) + SourceIndex(3) +1->Emitted(64, 9) Source(28, 53) + SourceIndex(3) +2 >Emitted(64, 50) Source(28, 54) + SourceIndex(3) +3 >Emitted(64, 51) Source(28, 54) + SourceIndex(3) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^ @@ -2326,15 +2328,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(64, 5) Source(28, 55) + SourceIndex(3) -2 >Emitted(64, 6) Source(28, 56) + SourceIndex(3) -3 >Emitted(64, 8) Source(28, 32) + SourceIndex(3) -4 >Emitted(64, 20) Source(28, 44) + SourceIndex(3) -5 >Emitted(64, 23) Source(28, 32) + SourceIndex(3) -6 >Emitted(64, 43) Source(28, 44) + SourceIndex(3) -7 >Emitted(64, 48) Source(28, 32) + SourceIndex(3) -8 >Emitted(64, 68) Source(28, 44) + SourceIndex(3) -9 >Emitted(64, 76) Source(28, 56) + SourceIndex(3) +1->Emitted(65, 5) Source(28, 55) + SourceIndex(3) +2 >Emitted(65, 6) Source(28, 56) + SourceIndex(3) +3 >Emitted(65, 8) Source(28, 32) + SourceIndex(3) +4 >Emitted(65, 20) Source(28, 44) + SourceIndex(3) +5 >Emitted(65, 23) Source(28, 32) + SourceIndex(3) +6 >Emitted(65, 43) Source(28, 44) + SourceIndex(3) +7 >Emitted(65, 48) Source(28, 32) + SourceIndex(3) +8 >Emitted(65, 68) Source(28, 44) + SourceIndex(3) +9 >Emitted(65, 76) Source(28, 56) + SourceIndex(3) --- >>>})(normalN || (normalN = {})); 1 > @@ -2362,13 +2364,13 @@ sourceFile:../second/second_part1.ts > /**@internal*/ export const internalConst = 10; > /**@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(65, 1) Source(29, 1) + SourceIndex(3) -2 >Emitted(65, 2) Source(29, 2) + SourceIndex(3) -3 >Emitted(65, 4) Source(20, 11) + SourceIndex(3) -4 >Emitted(65, 11) Source(20, 18) + SourceIndex(3) -5 >Emitted(65, 16) Source(20, 11) + SourceIndex(3) -6 >Emitted(65, 23) Source(20, 18) + SourceIndex(3) -7 >Emitted(65, 31) Source(29, 2) + SourceIndex(3) +1 >Emitted(66, 1) Source(29, 1) + SourceIndex(3) +2 >Emitted(66, 2) Source(29, 2) + SourceIndex(3) +3 >Emitted(66, 4) Source(20, 11) + SourceIndex(3) +4 >Emitted(66, 11) Source(20, 18) + SourceIndex(3) +5 >Emitted(66, 16) Source(20, 11) + SourceIndex(3) +6 >Emitted(66, 23) Source(20, 18) + SourceIndex(3) +7 >Emitted(66, 31) Source(29, 2) + SourceIndex(3) --- >>>/**@internal*/ var internalC = /** @class */ (function () { 1-> @@ -2379,15 +2381,15 @@ sourceFile:../second/second_part1.ts > 2 >/**@internal*/ 3 > -1->Emitted(66, 1) Source(30, 1) + SourceIndex(3) -2 >Emitted(66, 15) Source(30, 15) + SourceIndex(3) -3 >Emitted(66, 16) Source(30, 16) + SourceIndex(3) +1->Emitted(67, 1) Source(30, 1) + SourceIndex(3) +2 >Emitted(67, 15) Source(30, 15) + SourceIndex(3) +3 >Emitted(67, 16) Source(30, 16) + SourceIndex(3) --- >>> function internalC() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(67, 5) Source(30, 16) + SourceIndex(3) +1->Emitted(68, 5) Source(30, 16) + SourceIndex(3) --- >>> } 1->^^^^ @@ -2395,16 +2397,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->class internalC { 2 > } -1->Emitted(68, 5) Source(30, 33) + SourceIndex(3) -2 >Emitted(68, 6) Source(30, 34) + SourceIndex(3) +1->Emitted(69, 5) Source(30, 33) + SourceIndex(3) +2 >Emitted(69, 6) Source(30, 34) + SourceIndex(3) --- >>> return internalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(69, 5) Source(30, 33) + SourceIndex(3) -2 >Emitted(69, 21) Source(30, 34) + SourceIndex(3) +1->Emitted(70, 5) Source(30, 33) + SourceIndex(3) +2 >Emitted(70, 21) Source(30, 34) + SourceIndex(3) --- >>>}()); 1 > @@ -2416,10 +2418,10 @@ sourceFile:../second/second_part1.ts 2 >} 3 > 4 > class internalC {} -1 >Emitted(70, 1) Source(30, 33) + SourceIndex(3) -2 >Emitted(70, 2) Source(30, 34) + SourceIndex(3) -3 >Emitted(70, 2) Source(30, 16) + SourceIndex(3) -4 >Emitted(70, 6) Source(30, 34) + SourceIndex(3) +1 >Emitted(71, 1) Source(30, 33) + SourceIndex(3) +2 >Emitted(71, 2) Source(30, 34) + SourceIndex(3) +3 >Emitted(71, 2) Source(30, 16) + SourceIndex(3) +4 >Emitted(71, 6) Source(30, 34) + SourceIndex(3) --- >>>/**@internal*/ function internalfoo() { } 1-> @@ -2437,13 +2439,13 @@ sourceFile:../second/second_part1.ts 5 > internalfoo 6 > () { 7 > } -1->Emitted(71, 1) Source(31, 1) + SourceIndex(3) -2 >Emitted(71, 15) Source(31, 15) + SourceIndex(3) -3 >Emitted(71, 16) Source(31, 16) + SourceIndex(3) -4 >Emitted(71, 25) Source(31, 25) + SourceIndex(3) -5 >Emitted(71, 36) Source(31, 36) + SourceIndex(3) -6 >Emitted(71, 41) Source(31, 40) + SourceIndex(3) -7 >Emitted(71, 42) Source(31, 41) + SourceIndex(3) +1->Emitted(72, 1) Source(31, 1) + SourceIndex(3) +2 >Emitted(72, 15) Source(31, 15) + SourceIndex(3) +3 >Emitted(72, 16) Source(31, 16) + SourceIndex(3) +4 >Emitted(72, 25) Source(31, 25) + SourceIndex(3) +5 >Emitted(72, 36) Source(31, 36) + SourceIndex(3) +6 >Emitted(72, 41) Source(31, 40) + SourceIndex(3) +7 >Emitted(72, 42) Source(31, 41) + SourceIndex(3) --- >>>/**@internal*/ var internalNamespace; 1 > @@ -2459,12 +2461,12 @@ sourceFile:../second/second_part1.ts 4 > namespace 5 > internalNamespace 6 > { export class someClass {} } -1 >Emitted(72, 1) Source(32, 1) + SourceIndex(3) -2 >Emitted(72, 15) Source(32, 15) + SourceIndex(3) -3 >Emitted(72, 16) Source(32, 16) + SourceIndex(3) -4 >Emitted(72, 20) Source(32, 26) + SourceIndex(3) -5 >Emitted(72, 37) Source(32, 43) + SourceIndex(3) -6 >Emitted(72, 38) Source(32, 73) + SourceIndex(3) +1 >Emitted(73, 1) Source(32, 1) + SourceIndex(3) +2 >Emitted(73, 15) Source(32, 15) + SourceIndex(3) +3 >Emitted(73, 16) Source(32, 16) + SourceIndex(3) +4 >Emitted(73, 20) Source(32, 26) + SourceIndex(3) +5 >Emitted(73, 37) Source(32, 43) + SourceIndex(3) +6 >Emitted(73, 38) Source(32, 73) + SourceIndex(3) --- >>>(function (internalNamespace) { 1 > @@ -2474,21 +2476,21 @@ sourceFile:../second/second_part1.ts 1 > 2 >namespace 3 > internalNamespace -1 >Emitted(73, 1) Source(32, 16) + SourceIndex(3) -2 >Emitted(73, 12) Source(32, 26) + SourceIndex(3) -3 >Emitted(73, 29) Source(32, 43) + SourceIndex(3) +1 >Emitted(74, 1) Source(32, 16) + SourceIndex(3) +2 >Emitted(74, 12) Source(32, 26) + SourceIndex(3) +3 >Emitted(74, 29) Source(32, 43) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(74, 5) Source(32, 46) + SourceIndex(3) +1->Emitted(75, 5) Source(32, 46) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(75, 9) Source(32, 46) + SourceIndex(3) +1->Emitted(76, 9) Source(32, 46) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -2496,16 +2498,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(76, 9) Source(32, 70) + SourceIndex(3) -2 >Emitted(76, 10) Source(32, 71) + SourceIndex(3) +1->Emitted(77, 9) Source(32, 70) + SourceIndex(3) +2 >Emitted(77, 10) Source(32, 71) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(77, 9) Source(32, 70) + SourceIndex(3) -2 >Emitted(77, 25) Source(32, 71) + SourceIndex(3) +1->Emitted(78, 9) Source(32, 70) + SourceIndex(3) +2 >Emitted(78, 25) Source(32, 71) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -2517,10 +2519,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(78, 5) Source(32, 70) + SourceIndex(3) -2 >Emitted(78, 6) Source(32, 71) + SourceIndex(3) -3 >Emitted(78, 6) Source(32, 46) + SourceIndex(3) -4 >Emitted(78, 10) Source(32, 71) + SourceIndex(3) +1 >Emitted(79, 5) Source(32, 70) + SourceIndex(3) +2 >Emitted(79, 6) Source(32, 71) + SourceIndex(3) +3 >Emitted(79, 6) Source(32, 46) + SourceIndex(3) +4 >Emitted(79, 10) Source(32, 71) + SourceIndex(3) --- >>> internalNamespace.someClass = someClass; 1->^^^^ @@ -2532,10 +2534,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(79, 5) Source(32, 59) + SourceIndex(3) -2 >Emitted(79, 32) Source(32, 68) + SourceIndex(3) -3 >Emitted(79, 44) Source(32, 71) + SourceIndex(3) -4 >Emitted(79, 45) Source(32, 71) + SourceIndex(3) +1->Emitted(80, 5) Source(32, 59) + SourceIndex(3) +2 >Emitted(80, 32) Source(32, 68) + SourceIndex(3) +3 >Emitted(80, 44) Source(32, 71) + SourceIndex(3) +4 >Emitted(80, 45) Source(32, 71) + SourceIndex(3) --- >>>})(internalNamespace || (internalNamespace = {})); 1-> @@ -2552,13 +2554,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalNamespace 7 > { export class someClass {} } -1->Emitted(80, 1) Source(32, 72) + SourceIndex(3) -2 >Emitted(80, 2) Source(32, 73) + SourceIndex(3) -3 >Emitted(80, 4) Source(32, 26) + SourceIndex(3) -4 >Emitted(80, 21) Source(32, 43) + SourceIndex(3) -5 >Emitted(80, 26) Source(32, 26) + SourceIndex(3) -6 >Emitted(80, 43) Source(32, 43) + SourceIndex(3) -7 >Emitted(80, 51) Source(32, 73) + SourceIndex(3) +1->Emitted(81, 1) Source(32, 72) + SourceIndex(3) +2 >Emitted(81, 2) Source(32, 73) + SourceIndex(3) +3 >Emitted(81, 4) Source(32, 26) + SourceIndex(3) +4 >Emitted(81, 21) Source(32, 43) + SourceIndex(3) +5 >Emitted(81, 26) Source(32, 26) + SourceIndex(3) +6 >Emitted(81, 43) Source(32, 43) + SourceIndex(3) +7 >Emitted(81, 51) Source(32, 73) + SourceIndex(3) --- >>>/**@internal*/ var internalOther; 1 > @@ -2574,12 +2576,12 @@ sourceFile:../second/second_part1.ts 4 > namespace 5 > internalOther 6 > .something { export class someClass {} } -1 >Emitted(81, 1) Source(33, 1) + SourceIndex(3) -2 >Emitted(81, 15) Source(33, 15) + SourceIndex(3) -3 >Emitted(81, 16) Source(33, 16) + SourceIndex(3) -4 >Emitted(81, 20) Source(33, 26) + SourceIndex(3) -5 >Emitted(81, 33) Source(33, 39) + SourceIndex(3) -6 >Emitted(81, 34) Source(33, 79) + SourceIndex(3) +1 >Emitted(82, 1) Source(33, 1) + SourceIndex(3) +2 >Emitted(82, 15) Source(33, 15) + SourceIndex(3) +3 >Emitted(82, 16) Source(33, 16) + SourceIndex(3) +4 >Emitted(82, 20) Source(33, 26) + SourceIndex(3) +5 >Emitted(82, 33) Source(33, 39) + SourceIndex(3) +6 >Emitted(82, 34) Source(33, 79) + SourceIndex(3) --- >>>(function (internalOther) { 1 > @@ -2588,9 +2590,9 @@ sourceFile:../second/second_part1.ts 1 > 2 >namespace 3 > internalOther -1 >Emitted(82, 1) Source(33, 16) + SourceIndex(3) -2 >Emitted(82, 12) Source(33, 26) + SourceIndex(3) -3 >Emitted(82, 25) Source(33, 39) + SourceIndex(3) +1 >Emitted(83, 1) Source(33, 16) + SourceIndex(3) +2 >Emitted(83, 12) Source(33, 26) + SourceIndex(3) +3 >Emitted(83, 25) Source(33, 39) + SourceIndex(3) --- >>> var something; 1 >^^^^ @@ -2602,10 +2604,10 @@ sourceFile:../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(83, 5) Source(33, 40) + SourceIndex(3) -2 >Emitted(83, 9) Source(33, 40) + SourceIndex(3) -3 >Emitted(83, 18) Source(33, 49) + SourceIndex(3) -4 >Emitted(83, 19) Source(33, 79) + SourceIndex(3) +1 >Emitted(84, 5) Source(33, 40) + SourceIndex(3) +2 >Emitted(84, 9) Source(33, 40) + SourceIndex(3) +3 >Emitted(84, 18) Source(33, 49) + SourceIndex(3) +4 >Emitted(84, 19) Source(33, 79) + SourceIndex(3) --- >>> (function (something) { 1->^^^^ @@ -2615,21 +2617,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(84, 5) Source(33, 40) + SourceIndex(3) -2 >Emitted(84, 16) Source(33, 40) + SourceIndex(3) -3 >Emitted(84, 25) Source(33, 49) + SourceIndex(3) +1->Emitted(85, 5) Source(33, 40) + SourceIndex(3) +2 >Emitted(85, 16) Source(33, 40) + SourceIndex(3) +3 >Emitted(85, 25) Source(33, 49) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(85, 9) Source(33, 52) + SourceIndex(3) +1->Emitted(86, 9) Source(33, 52) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(86, 13) Source(33, 52) + SourceIndex(3) +1->Emitted(87, 13) Source(33, 52) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -2637,16 +2639,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(87, 13) Source(33, 76) + SourceIndex(3) -2 >Emitted(87, 14) Source(33, 77) + SourceIndex(3) +1->Emitted(88, 13) Source(33, 76) + SourceIndex(3) +2 >Emitted(88, 14) Source(33, 77) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(88, 13) Source(33, 76) + SourceIndex(3) -2 >Emitted(88, 29) Source(33, 77) + SourceIndex(3) +1->Emitted(89, 13) Source(33, 76) + SourceIndex(3) +2 >Emitted(89, 29) Source(33, 77) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -2658,10 +2660,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(89, 9) Source(33, 76) + SourceIndex(3) -2 >Emitted(89, 10) Source(33, 77) + SourceIndex(3) -3 >Emitted(89, 10) Source(33, 52) + SourceIndex(3) -4 >Emitted(89, 14) Source(33, 77) + SourceIndex(3) +1 >Emitted(90, 9) Source(33, 76) + SourceIndex(3) +2 >Emitted(90, 10) Source(33, 77) + SourceIndex(3) +3 >Emitted(90, 10) Source(33, 52) + SourceIndex(3) +4 >Emitted(90, 14) Source(33, 77) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^ @@ -2673,10 +2675,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(90, 9) Source(33, 65) + SourceIndex(3) -2 >Emitted(90, 28) Source(33, 74) + SourceIndex(3) -3 >Emitted(90, 40) Source(33, 77) + SourceIndex(3) -4 >Emitted(90, 41) Source(33, 77) + SourceIndex(3) +1->Emitted(91, 9) Source(33, 65) + SourceIndex(3) +2 >Emitted(91, 28) Source(33, 74) + SourceIndex(3) +3 >Emitted(91, 40) Source(33, 77) + SourceIndex(3) +4 >Emitted(91, 41) Source(33, 77) + SourceIndex(3) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^ @@ -2697,15 +2699,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(91, 5) Source(33, 78) + SourceIndex(3) -2 >Emitted(91, 6) Source(33, 79) + SourceIndex(3) -3 >Emitted(91, 8) Source(33, 40) + SourceIndex(3) -4 >Emitted(91, 17) Source(33, 49) + SourceIndex(3) -5 >Emitted(91, 20) Source(33, 40) + SourceIndex(3) -6 >Emitted(91, 43) Source(33, 49) + SourceIndex(3) -7 >Emitted(91, 48) Source(33, 40) + SourceIndex(3) -8 >Emitted(91, 71) Source(33, 49) + SourceIndex(3) -9 >Emitted(91, 79) Source(33, 79) + SourceIndex(3) +1->Emitted(92, 5) Source(33, 78) + SourceIndex(3) +2 >Emitted(92, 6) Source(33, 79) + SourceIndex(3) +3 >Emitted(92, 8) Source(33, 40) + SourceIndex(3) +4 >Emitted(92, 17) Source(33, 49) + SourceIndex(3) +5 >Emitted(92, 20) Source(33, 40) + SourceIndex(3) +6 >Emitted(92, 43) Source(33, 49) + SourceIndex(3) +7 >Emitted(92, 48) Source(33, 40) + SourceIndex(3) +8 >Emitted(92, 71) Source(33, 49) + SourceIndex(3) +9 >Emitted(92, 79) Source(33, 79) + SourceIndex(3) --- >>>})(internalOther || (internalOther = {})); 1 > @@ -2723,13 +2725,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalOther 7 > .something { export class someClass {} } -1 >Emitted(92, 1) Source(33, 78) + SourceIndex(3) -2 >Emitted(92, 2) Source(33, 79) + SourceIndex(3) -3 >Emitted(92, 4) Source(33, 26) + SourceIndex(3) -4 >Emitted(92, 17) Source(33, 39) + SourceIndex(3) -5 >Emitted(92, 22) Source(33, 26) + SourceIndex(3) -6 >Emitted(92, 35) Source(33, 39) + SourceIndex(3) -7 >Emitted(92, 43) Source(33, 79) + SourceIndex(3) +1 >Emitted(93, 1) Source(33, 78) + SourceIndex(3) +2 >Emitted(93, 2) Source(33, 79) + SourceIndex(3) +3 >Emitted(93, 4) Source(33, 26) + SourceIndex(3) +4 >Emitted(93, 17) Source(33, 39) + SourceIndex(3) +5 >Emitted(93, 22) Source(33, 26) + SourceIndex(3) +6 >Emitted(93, 35) Source(33, 39) + SourceIndex(3) +7 >Emitted(93, 43) Source(33, 79) + SourceIndex(3) --- >>>/**@internal*/ var internalImport = internalNamespace.someClass; 1-> @@ -2753,16 +2755,16 @@ sourceFile:../second/second_part1.ts 8 > . 9 > someClass 10> ; -1->Emitted(93, 1) Source(34, 1) + SourceIndex(3) -2 >Emitted(93, 15) Source(34, 15) + SourceIndex(3) -3 >Emitted(93, 16) Source(34, 16) + SourceIndex(3) -4 >Emitted(93, 20) Source(34, 23) + SourceIndex(3) -5 >Emitted(93, 34) Source(34, 37) + SourceIndex(3) -6 >Emitted(93, 37) Source(34, 40) + SourceIndex(3) -7 >Emitted(93, 54) Source(34, 57) + SourceIndex(3) -8 >Emitted(93, 55) Source(34, 58) + SourceIndex(3) -9 >Emitted(93, 64) Source(34, 67) + SourceIndex(3) -10>Emitted(93, 65) Source(34, 68) + SourceIndex(3) +1->Emitted(94, 1) Source(34, 1) + SourceIndex(3) +2 >Emitted(94, 15) Source(34, 15) + SourceIndex(3) +3 >Emitted(94, 16) Source(34, 16) + SourceIndex(3) +4 >Emitted(94, 20) Source(34, 23) + SourceIndex(3) +5 >Emitted(94, 34) Source(34, 37) + SourceIndex(3) +6 >Emitted(94, 37) Source(34, 40) + SourceIndex(3) +7 >Emitted(94, 54) Source(34, 57) + SourceIndex(3) +8 >Emitted(94, 55) Source(34, 58) + SourceIndex(3) +9 >Emitted(94, 64) Source(34, 67) + SourceIndex(3) +10>Emitted(94, 65) Source(34, 68) + SourceIndex(3) --- >>>/**@internal*/ var internalConst = 10; 1 > @@ -2783,14 +2785,14 @@ sourceFile:../second/second_part1.ts 6 > = 7 > 10 8 > ; -1 >Emitted(94, 1) Source(36, 1) + SourceIndex(3) -2 >Emitted(94, 15) Source(36, 15) + SourceIndex(3) -3 >Emitted(94, 16) Source(36, 16) + SourceIndex(3) -4 >Emitted(94, 20) Source(36, 22) + SourceIndex(3) -5 >Emitted(94, 33) Source(36, 35) + SourceIndex(3) -6 >Emitted(94, 36) Source(36, 38) + SourceIndex(3) -7 >Emitted(94, 38) Source(36, 40) + SourceIndex(3) -8 >Emitted(94, 39) Source(36, 41) + SourceIndex(3) +1 >Emitted(95, 1) Source(36, 1) + SourceIndex(3) +2 >Emitted(95, 15) Source(36, 15) + SourceIndex(3) +3 >Emitted(95, 16) Source(36, 16) + SourceIndex(3) +4 >Emitted(95, 20) Source(36, 22) + SourceIndex(3) +5 >Emitted(95, 33) Source(36, 35) + SourceIndex(3) +6 >Emitted(95, 36) Source(36, 38) + SourceIndex(3) +7 >Emitted(95, 38) Source(36, 40) + SourceIndex(3) +8 >Emitted(95, 39) Source(36, 41) + SourceIndex(3) --- >>>/**@internal*/ var internalEnum; 1 > @@ -2804,11 +2806,11 @@ sourceFile:../second/second_part1.ts 3 > 4 > enum 5 > internalEnum { a, b, c } -1 >Emitted(95, 1) Source(37, 1) + SourceIndex(3) -2 >Emitted(95, 15) Source(37, 15) + SourceIndex(3) -3 >Emitted(95, 16) Source(37, 16) + SourceIndex(3) -4 >Emitted(95, 20) Source(37, 21) + SourceIndex(3) -5 >Emitted(95, 32) Source(37, 45) + SourceIndex(3) +1 >Emitted(96, 1) Source(37, 1) + SourceIndex(3) +2 >Emitted(96, 15) Source(37, 15) + SourceIndex(3) +3 >Emitted(96, 16) Source(37, 16) + SourceIndex(3) +4 >Emitted(96, 20) Source(37, 21) + SourceIndex(3) +5 >Emitted(96, 32) Source(37, 45) + SourceIndex(3) --- >>>(function (internalEnum) { 1 > @@ -2818,9 +2820,9 @@ sourceFile:../second/second_part1.ts 1 > 2 >enum 3 > internalEnum -1 >Emitted(96, 1) Source(37, 16) + SourceIndex(3) -2 >Emitted(96, 12) Source(37, 21) + SourceIndex(3) -3 >Emitted(96, 24) Source(37, 33) + SourceIndex(3) +1 >Emitted(97, 1) Source(37, 16) + SourceIndex(3) +2 >Emitted(97, 12) Source(37, 21) + SourceIndex(3) +3 >Emitted(97, 24) Source(37, 33) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^ @@ -2830,9 +2832,9 @@ sourceFile:../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(97, 5) Source(37, 36) + SourceIndex(3) -2 >Emitted(97, 46) Source(37, 37) + SourceIndex(3) -3 >Emitted(97, 47) Source(37, 37) + SourceIndex(3) +1->Emitted(98, 5) Source(37, 36) + SourceIndex(3) +2 >Emitted(98, 46) Source(37, 37) + SourceIndex(3) +3 >Emitted(98, 47) Source(37, 37) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^ @@ -2842,9 +2844,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(98, 5) Source(37, 39) + SourceIndex(3) -2 >Emitted(98, 46) Source(37, 40) + SourceIndex(3) -3 >Emitted(98, 47) Source(37, 40) + SourceIndex(3) +1->Emitted(99, 5) Source(37, 39) + SourceIndex(3) +2 >Emitted(99, 46) Source(37, 40) + SourceIndex(3) +3 >Emitted(99, 47) Source(37, 40) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^ @@ -2853,9 +2855,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(99, 5) Source(37, 42) + SourceIndex(3) -2 >Emitted(99, 46) Source(37, 43) + SourceIndex(3) -3 >Emitted(99, 47) Source(37, 43) + SourceIndex(3) +1->Emitted(100, 5) Source(37, 42) + SourceIndex(3) +2 >Emitted(100, 46) Source(37, 43) + SourceIndex(3) +3 >Emitted(100, 47) Source(37, 43) + SourceIndex(3) --- >>>})(internalEnum || (internalEnum = {})); 1 > @@ -2872,13 +2874,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalEnum 7 > { a, b, c } -1 >Emitted(100, 1) Source(37, 44) + SourceIndex(3) -2 >Emitted(100, 2) Source(37, 45) + SourceIndex(3) -3 >Emitted(100, 4) Source(37, 21) + SourceIndex(3) -4 >Emitted(100, 16) Source(37, 33) + SourceIndex(3) -5 >Emitted(100, 21) Source(37, 21) + SourceIndex(3) -6 >Emitted(100, 33) Source(37, 33) + SourceIndex(3) -7 >Emitted(100, 41) Source(37, 45) + SourceIndex(3) +1 >Emitted(101, 1) Source(37, 44) + SourceIndex(3) +2 >Emitted(101, 2) Source(37, 45) + SourceIndex(3) +3 >Emitted(101, 4) Source(37, 21) + SourceIndex(3) +4 >Emitted(101, 16) Source(37, 33) + SourceIndex(3) +5 >Emitted(101, 21) Source(37, 21) + SourceIndex(3) +6 >Emitted(101, 33) Source(37, 33) + SourceIndex(3) +7 >Emitted(101, 41) Source(37, 45) + SourceIndex(3) --- ------------------------------------------------------------------- emittedFile:/src/2/second-output.js @@ -2888,13 +2890,13 @@ sourceFile:../second/second_part2.ts 1 > 2 >^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(101, 1) Source(1, 1) + SourceIndex(4) +1 >Emitted(102, 1) Source(1, 1) + SourceIndex(4) --- >>> function C() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(102, 5) Source(1, 1) + SourceIndex(4) +1->Emitted(103, 5) Source(1, 1) + SourceIndex(4) --- >>> } 1->^^^^ @@ -2906,8 +2908,8 @@ sourceFile:../second/second_part2.ts > } > 2 > } -1->Emitted(103, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(103, 6) Source(5, 2) + SourceIndex(4) +1->Emitted(104, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(104, 6) Source(5, 2) + SourceIndex(4) --- >>> C.prototype.doSomething = function () { 1->^^^^ @@ -2917,9 +2919,9 @@ sourceFile:../second/second_part2.ts 1-> 2 > doSomething 3 > -1->Emitted(104, 5) Source(2, 5) + SourceIndex(4) -2 >Emitted(104, 28) Source(2, 16) + SourceIndex(4) -3 >Emitted(104, 31) Source(2, 5) + SourceIndex(4) +1->Emitted(105, 5) Source(2, 5) + SourceIndex(4) +2 >Emitted(105, 28) Source(2, 16) + SourceIndex(4) +3 >Emitted(105, 31) Source(2, 5) + SourceIndex(4) --- >>> console.log("something got done"); 1->^^^^^^^^ @@ -2939,14 +2941,14 @@ sourceFile:../second/second_part2.ts 6 > "something got done" 7 > ) 8 > ; -1->Emitted(105, 9) Source(3, 9) + SourceIndex(4) -2 >Emitted(105, 16) Source(3, 16) + SourceIndex(4) -3 >Emitted(105, 17) Source(3, 17) + SourceIndex(4) -4 >Emitted(105, 20) Source(3, 20) + SourceIndex(4) -5 >Emitted(105, 21) Source(3, 21) + SourceIndex(4) -6 >Emitted(105, 41) Source(3, 41) + SourceIndex(4) -7 >Emitted(105, 42) Source(3, 42) + SourceIndex(4) -8 >Emitted(105, 43) Source(3, 43) + SourceIndex(4) +1->Emitted(106, 9) Source(3, 9) + SourceIndex(4) +2 >Emitted(106, 16) Source(3, 16) + SourceIndex(4) +3 >Emitted(106, 17) Source(3, 17) + SourceIndex(4) +4 >Emitted(106, 20) Source(3, 20) + SourceIndex(4) +5 >Emitted(106, 21) Source(3, 21) + SourceIndex(4) +6 >Emitted(106, 41) Source(3, 41) + SourceIndex(4) +7 >Emitted(106, 42) Source(3, 42) + SourceIndex(4) +8 >Emitted(106, 43) Source(3, 43) + SourceIndex(4) --- >>> }; 1 >^^^^ @@ -2955,8 +2957,8 @@ sourceFile:../second/second_part2.ts 1 > > 2 > } -1 >Emitted(106, 5) Source(4, 5) + SourceIndex(4) -2 >Emitted(106, 6) Source(4, 6) + SourceIndex(4) +1 >Emitted(107, 5) Source(4, 5) + SourceIndex(4) +2 >Emitted(107, 6) Source(4, 6) + SourceIndex(4) --- >>> return C; 1->^^^^ @@ -2964,8 +2966,8 @@ sourceFile:../second/second_part2.ts 1-> > 2 > } -1->Emitted(107, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(107, 13) Source(5, 2) + SourceIndex(4) +1->Emitted(108, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(108, 13) Source(5, 2) + SourceIndex(4) --- >>>}()); 1 > @@ -2981,10 +2983,10 @@ sourceFile:../second/second_part2.ts > console.log("something got done"); > } > } -1 >Emitted(108, 1) Source(5, 1) + SourceIndex(4) -2 >Emitted(108, 2) Source(5, 2) + SourceIndex(4) -3 >Emitted(108, 2) Source(1, 1) + SourceIndex(4) -4 >Emitted(108, 6) Source(5, 2) + SourceIndex(4) +1 >Emitted(109, 1) Source(5, 1) + SourceIndex(4) +2 >Emitted(109, 2) Source(5, 2) + SourceIndex(4) +3 >Emitted(109, 2) Source(1, 1) + SourceIndex(4) +4 >Emitted(109, 6) Source(5, 2) + SourceIndex(4) --- >>>//# sourceMappingURL=second-output.js.map @@ -3013,7 +3015,7 @@ sourceFile:../second/second_part2.ts }, { "pos": 110, - "end": 3545, + "end": 3593, "kind": "text" } ] @@ -3094,7 +3096,7 @@ function f() { } ---------------------------------------------------------------------- -text: (110-3545) +text: (110-3593) var N; (function (N) { function f() { @@ -3105,8 +3107,9 @@ var N; var normalC = /** @class */ (function () { /**@internal*/ function normalC() { } - /**@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /**@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /**@internal*/ get: function () { return 10; }, /**@internal*/ set: function (val) { }, enumerable: false, @@ -3965,8 +3968,9 @@ var N; var normalC = /** @class */ (function () { /**@internal*/ function normalC() { } - /**@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /**@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /**@internal*/ get: function () { return 10; }, /**@internal*/ set: function (val) { }, enumerable: false, @@ -4062,7 +4066,7 @@ c.doSomething(); //# sourceMappingURL=third-output.js.map //// [/src/third/thirdjs/output/third-output.js.map] -{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} //// [/src/third/thirdjs/output/third-output.js.map.baseline.txt] =================================================================== @@ -4368,13 +4372,14 @@ sourceFile:../../../second/second_part1.ts >>> } 1 >^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 >constructor() { 2 > } 1 >Emitted(16, 5) Source(14, 36) + SourceIndex(3) 2 >Emitted(16, 6) Source(14, 37) + SourceIndex(3) --- ->>> /**@internal*/ normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> /**@internal*/ normalC_prototype.method = function () { }; 1->^^^^ 2 > ^^^^^^^^^^^^^^ 3 > ^ @@ -4391,15 +4396,15 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > method() { 7 > } -1->Emitted(17, 5) Source(16, 5) + SourceIndex(3) -2 >Emitted(17, 19) Source(16, 19) + SourceIndex(3) -3 >Emitted(17, 20) Source(16, 20) + SourceIndex(3) -4 >Emitted(17, 44) Source(16, 26) + SourceIndex(3) -5 >Emitted(17, 47) Source(16, 20) + SourceIndex(3) -6 >Emitted(17, 61) Source(16, 31) + SourceIndex(3) -7 >Emitted(17, 62) Source(16, 32) + SourceIndex(3) ---- ->>> Object.defineProperty(normalC.prototype, "c", { +1->Emitted(18, 5) Source(16, 5) + SourceIndex(3) +2 >Emitted(18, 19) Source(16, 19) + SourceIndex(3) +3 >Emitted(18, 20) Source(16, 20) + SourceIndex(3) +4 >Emitted(18, 44) Source(16, 26) + SourceIndex(3) +5 >Emitted(18, 47) Source(16, 20) + SourceIndex(3) +6 >Emitted(18, 61) Source(16, 31) + SourceIndex(3) +7 >Emitted(18, 62) Source(16, 32) + SourceIndex(3) +--- +>>> Object.defineProperty(normalC_prototype, "c", { 1 >^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -4408,9 +4413,9 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ 2 > get 3 > c -1 >Emitted(18, 5) Source(17, 20) + SourceIndex(3) -2 >Emitted(18, 27) Source(17, 24) + SourceIndex(3) -3 >Emitted(18, 49) Source(17, 25) + SourceIndex(3) +1 >Emitted(19, 5) Source(17, 20) + SourceIndex(3) +2 >Emitted(19, 27) Source(17, 24) + SourceIndex(3) +3 >Emitted(19, 49) Source(17, 25) + SourceIndex(3) --- >>> /**@internal*/ get: function () { return 10; }, 1->^^^^^^^^ @@ -4431,15 +4436,15 @@ sourceFile:../../../second/second_part1.ts 7 > ; 8 > 9 > } -1->Emitted(19, 9) Source(17, 5) + SourceIndex(3) -2 >Emitted(19, 23) Source(17, 19) + SourceIndex(3) -3 >Emitted(19, 29) Source(17, 20) + SourceIndex(3) -4 >Emitted(19, 43) Source(17, 30) + SourceIndex(3) -5 >Emitted(19, 50) Source(17, 37) + SourceIndex(3) -6 >Emitted(19, 52) Source(17, 39) + SourceIndex(3) -7 >Emitted(19, 53) Source(17, 40) + SourceIndex(3) -8 >Emitted(19, 54) Source(17, 41) + SourceIndex(3) -9 >Emitted(19, 55) Source(17, 42) + SourceIndex(3) +1->Emitted(20, 9) Source(17, 5) + SourceIndex(3) +2 >Emitted(20, 23) Source(17, 19) + SourceIndex(3) +3 >Emitted(20, 29) Source(17, 20) + SourceIndex(3) +4 >Emitted(20, 43) Source(17, 30) + SourceIndex(3) +5 >Emitted(20, 50) Source(17, 37) + SourceIndex(3) +6 >Emitted(20, 52) Source(17, 39) + SourceIndex(3) +7 >Emitted(20, 53) Source(17, 40) + SourceIndex(3) +8 >Emitted(20, 54) Source(17, 41) + SourceIndex(3) +9 >Emitted(20, 55) Source(17, 42) + SourceIndex(3) --- >>> /**@internal*/ set: function (val) { }, 1 >^^^^^^^^ @@ -4457,13 +4462,13 @@ sourceFile:../../../second/second_part1.ts 5 > val: number 6 > ) { 7 > } -1 >Emitted(20, 9) Source(18, 5) + SourceIndex(3) -2 >Emitted(20, 23) Source(18, 19) + SourceIndex(3) -3 >Emitted(20, 29) Source(18, 20) + SourceIndex(3) -4 >Emitted(20, 39) Source(18, 26) + SourceIndex(3) -5 >Emitted(20, 42) Source(18, 37) + SourceIndex(3) -6 >Emitted(20, 46) Source(18, 41) + SourceIndex(3) -7 >Emitted(20, 47) Source(18, 42) + SourceIndex(3) +1 >Emitted(21, 9) Source(18, 5) + SourceIndex(3) +2 >Emitted(21, 23) Source(18, 19) + SourceIndex(3) +3 >Emitted(21, 29) Source(18, 20) + SourceIndex(3) +4 >Emitted(21, 39) Source(18, 26) + SourceIndex(3) +5 >Emitted(21, 42) Source(18, 37) + SourceIndex(3) +6 >Emitted(21, 46) Source(18, 41) + SourceIndex(3) +7 >Emitted(21, 47) Source(18, 42) + SourceIndex(3) --- >>> enumerable: false, >>> configurable: true @@ -4471,7 +4476,7 @@ sourceFile:../../../second/second_part1.ts 1 >^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(23, 8) Source(17, 42) + SourceIndex(3) +1 >Emitted(24, 8) Source(17, 42) + SourceIndex(3) --- >>> return normalC; 1->^^^^ @@ -4480,8 +4485,8 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ set c(val: number) { } > 2 > } -1->Emitted(24, 5) Source(19, 1) + SourceIndex(3) -2 >Emitted(24, 19) Source(19, 2) + SourceIndex(3) +1->Emitted(25, 5) Source(19, 1) + SourceIndex(3) +2 >Emitted(25, 19) Source(19, 2) + SourceIndex(3) --- >>>}()); 1 > @@ -4499,10 +4504,10 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ get c() { return 10; } > /**@internal*/ set c(val: number) { } > } -1 >Emitted(25, 1) Source(19, 1) + SourceIndex(3) -2 >Emitted(25, 2) Source(19, 2) + SourceIndex(3) -3 >Emitted(25, 2) Source(13, 1) + SourceIndex(3) -4 >Emitted(25, 6) Source(19, 2) + SourceIndex(3) +1 >Emitted(26, 1) Source(19, 1) + SourceIndex(3) +2 >Emitted(26, 2) Source(19, 2) + SourceIndex(3) +3 >Emitted(26, 2) Source(13, 1) + SourceIndex(3) +4 >Emitted(26, 6) Source(19, 2) + SourceIndex(3) --- >>>var normalN; 1-> @@ -4524,10 +4529,10 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ export const internalConst = 10; > /**@internal*/ export enum internalEnum { a, b, c } > } -1->Emitted(26, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(26, 5) Source(20, 11) + SourceIndex(3) -3 >Emitted(26, 12) Source(20, 18) + SourceIndex(3) -4 >Emitted(26, 13) Source(29, 2) + SourceIndex(3) +1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(27, 5) Source(20, 11) + SourceIndex(3) +3 >Emitted(27, 12) Source(20, 18) + SourceIndex(3) +4 >Emitted(27, 13) Source(29, 2) + SourceIndex(3) --- >>>(function (normalN) { 1-> @@ -4537,9 +4542,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > normalN -1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(27, 12) Source(20, 11) + SourceIndex(3) -3 >Emitted(27, 19) Source(20, 18) + SourceIndex(3) +1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(28, 12) Source(20, 11) + SourceIndex(3) +3 >Emitted(28, 19) Source(20, 18) + SourceIndex(3) --- >>> /**@internal*/ var C = /** @class */ (function () { 1->^^^^ @@ -4550,15 +4555,15 @@ sourceFile:../../../second/second_part1.ts > 2 > /**@internal*/ 3 > -1->Emitted(28, 5) Source(21, 5) + SourceIndex(3) -2 >Emitted(28, 19) Source(21, 19) + SourceIndex(3) -3 >Emitted(28, 20) Source(21, 20) + SourceIndex(3) +1->Emitted(29, 5) Source(21, 5) + SourceIndex(3) +2 >Emitted(29, 19) Source(21, 19) + SourceIndex(3) +3 >Emitted(29, 20) Source(21, 20) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(29, 9) Source(21, 20) + SourceIndex(3) +1->Emitted(30, 9) Source(21, 20) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -4566,16 +4571,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(30, 9) Source(21, 37) + SourceIndex(3) -2 >Emitted(30, 10) Source(21, 38) + SourceIndex(3) +1->Emitted(31, 9) Source(21, 37) + SourceIndex(3) +2 >Emitted(31, 10) Source(21, 38) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(31, 9) Source(21, 37) + SourceIndex(3) -2 >Emitted(31, 17) Source(21, 38) + SourceIndex(3) +1->Emitted(32, 9) Source(21, 37) + SourceIndex(3) +2 >Emitted(32, 17) Source(21, 38) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -4587,10 +4592,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(32, 5) Source(21, 37) + SourceIndex(3) -2 >Emitted(32, 6) Source(21, 38) + SourceIndex(3) -3 >Emitted(32, 6) Source(21, 20) + SourceIndex(3) -4 >Emitted(32, 10) Source(21, 38) + SourceIndex(3) +1 >Emitted(33, 5) Source(21, 37) + SourceIndex(3) +2 >Emitted(33, 6) Source(21, 38) + SourceIndex(3) +3 >Emitted(33, 6) Source(21, 20) + SourceIndex(3) +4 >Emitted(33, 10) Source(21, 38) + SourceIndex(3) --- >>> normalN.C = C; 1->^^^^ @@ -4602,10 +4607,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > { } 4 > -1->Emitted(33, 5) Source(21, 33) + SourceIndex(3) -2 >Emitted(33, 14) Source(21, 34) + SourceIndex(3) -3 >Emitted(33, 18) Source(21, 38) + SourceIndex(3) -4 >Emitted(33, 19) Source(21, 38) + SourceIndex(3) +1->Emitted(34, 5) Source(21, 33) + SourceIndex(3) +2 >Emitted(34, 14) Source(21, 34) + SourceIndex(3) +3 >Emitted(34, 18) Source(21, 38) + SourceIndex(3) +4 >Emitted(34, 19) Source(21, 38) + SourceIndex(3) --- >>> /**@internal*/ function foo() { } 1->^^^^ @@ -4623,13 +4628,13 @@ sourceFile:../../../second/second_part1.ts 5 > foo 6 > () { 7 > } -1->Emitted(34, 5) Source(22, 5) + SourceIndex(3) -2 >Emitted(34, 19) Source(22, 19) + SourceIndex(3) -3 >Emitted(34, 20) Source(22, 20) + SourceIndex(3) -4 >Emitted(34, 29) Source(22, 36) + SourceIndex(3) -5 >Emitted(34, 32) Source(22, 39) + SourceIndex(3) -6 >Emitted(34, 37) Source(22, 43) + SourceIndex(3) -7 >Emitted(34, 38) Source(22, 44) + SourceIndex(3) +1->Emitted(35, 5) Source(22, 5) + SourceIndex(3) +2 >Emitted(35, 19) Source(22, 19) + SourceIndex(3) +3 >Emitted(35, 20) Source(22, 20) + SourceIndex(3) +4 >Emitted(35, 29) Source(22, 36) + SourceIndex(3) +5 >Emitted(35, 32) Source(22, 39) + SourceIndex(3) +6 >Emitted(35, 37) Source(22, 43) + SourceIndex(3) +7 >Emitted(35, 38) Source(22, 44) + SourceIndex(3) --- >>> normalN.foo = foo; 1 >^^^^ @@ -4641,10 +4646,10 @@ sourceFile:../../../second/second_part1.ts 2 > foo 3 > () {} 4 > -1 >Emitted(35, 5) Source(22, 36) + SourceIndex(3) -2 >Emitted(35, 16) Source(22, 39) + SourceIndex(3) -3 >Emitted(35, 22) Source(22, 44) + SourceIndex(3) -4 >Emitted(35, 23) Source(22, 44) + SourceIndex(3) +1 >Emitted(36, 5) Source(22, 36) + SourceIndex(3) +2 >Emitted(36, 16) Source(22, 39) + SourceIndex(3) +3 >Emitted(36, 22) Source(22, 44) + SourceIndex(3) +4 >Emitted(36, 23) Source(22, 44) + SourceIndex(3) --- >>> /**@internal*/ var someNamespace; 1->^^^^ @@ -4660,12 +4665,12 @@ sourceFile:../../../second/second_part1.ts 4 > export namespace 5 > someNamespace 6 > { export class C {} } -1->Emitted(36, 5) Source(23, 5) + SourceIndex(3) -2 >Emitted(36, 19) Source(23, 19) + SourceIndex(3) -3 >Emitted(36, 20) Source(23, 20) + SourceIndex(3) -4 >Emitted(36, 24) Source(23, 37) + SourceIndex(3) -5 >Emitted(36, 37) Source(23, 50) + SourceIndex(3) -6 >Emitted(36, 38) Source(23, 72) + SourceIndex(3) +1->Emitted(37, 5) Source(23, 5) + SourceIndex(3) +2 >Emitted(37, 19) Source(23, 19) + SourceIndex(3) +3 >Emitted(37, 20) Source(23, 20) + SourceIndex(3) +4 >Emitted(37, 24) Source(23, 37) + SourceIndex(3) +5 >Emitted(37, 37) Source(23, 50) + SourceIndex(3) +6 >Emitted(37, 38) Source(23, 72) + SourceIndex(3) --- >>> (function (someNamespace) { 1 >^^^^ @@ -4675,21 +4680,21 @@ sourceFile:../../../second/second_part1.ts 1 > 2 > export namespace 3 > someNamespace -1 >Emitted(37, 5) Source(23, 20) + SourceIndex(3) -2 >Emitted(37, 16) Source(23, 37) + SourceIndex(3) -3 >Emitted(37, 29) Source(23, 50) + SourceIndex(3) +1 >Emitted(38, 5) Source(23, 20) + SourceIndex(3) +2 >Emitted(38, 16) Source(23, 37) + SourceIndex(3) +3 >Emitted(38, 29) Source(23, 50) + SourceIndex(3) --- >>> var C = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(38, 9) Source(23, 53) + SourceIndex(3) +1->Emitted(39, 9) Source(23, 53) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(39, 13) Source(23, 53) + SourceIndex(3) +1->Emitted(40, 13) Source(23, 53) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -4697,16 +4702,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(40, 13) Source(23, 69) + SourceIndex(3) -2 >Emitted(40, 14) Source(23, 70) + SourceIndex(3) +1->Emitted(41, 13) Source(23, 69) + SourceIndex(3) +2 >Emitted(41, 14) Source(23, 70) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(41, 13) Source(23, 69) + SourceIndex(3) -2 >Emitted(41, 21) Source(23, 70) + SourceIndex(3) +1->Emitted(42, 13) Source(23, 69) + SourceIndex(3) +2 >Emitted(42, 21) Source(23, 70) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -4718,10 +4723,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(42, 9) Source(23, 69) + SourceIndex(3) -2 >Emitted(42, 10) Source(23, 70) + SourceIndex(3) -3 >Emitted(42, 10) Source(23, 53) + SourceIndex(3) -4 >Emitted(42, 14) Source(23, 70) + SourceIndex(3) +1 >Emitted(43, 9) Source(23, 69) + SourceIndex(3) +2 >Emitted(43, 10) Source(23, 70) + SourceIndex(3) +3 >Emitted(43, 10) Source(23, 53) + SourceIndex(3) +4 >Emitted(43, 14) Source(23, 70) + SourceIndex(3) --- >>> someNamespace.C = C; 1->^^^^^^^^ @@ -4733,10 +4738,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > {} 4 > -1->Emitted(43, 9) Source(23, 66) + SourceIndex(3) -2 >Emitted(43, 24) Source(23, 67) + SourceIndex(3) -3 >Emitted(43, 28) Source(23, 70) + SourceIndex(3) -4 >Emitted(43, 29) Source(23, 70) + SourceIndex(3) +1->Emitted(44, 9) Source(23, 66) + SourceIndex(3) +2 >Emitted(44, 24) Source(23, 67) + SourceIndex(3) +3 >Emitted(44, 28) Source(23, 70) + SourceIndex(3) +4 >Emitted(44, 29) Source(23, 70) + SourceIndex(3) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^ @@ -4757,15 +4762,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(44, 5) Source(23, 71) + SourceIndex(3) -2 >Emitted(44, 6) Source(23, 72) + SourceIndex(3) -3 >Emitted(44, 8) Source(23, 37) + SourceIndex(3) -4 >Emitted(44, 21) Source(23, 50) + SourceIndex(3) -5 >Emitted(44, 24) Source(23, 37) + SourceIndex(3) -6 >Emitted(44, 45) Source(23, 50) + SourceIndex(3) -7 >Emitted(44, 50) Source(23, 37) + SourceIndex(3) -8 >Emitted(44, 71) Source(23, 50) + SourceIndex(3) -9 >Emitted(44, 79) Source(23, 72) + SourceIndex(3) +1->Emitted(45, 5) Source(23, 71) + SourceIndex(3) +2 >Emitted(45, 6) Source(23, 72) + SourceIndex(3) +3 >Emitted(45, 8) Source(23, 37) + SourceIndex(3) +4 >Emitted(45, 21) Source(23, 50) + SourceIndex(3) +5 >Emitted(45, 24) Source(23, 37) + SourceIndex(3) +6 >Emitted(45, 45) Source(23, 50) + SourceIndex(3) +7 >Emitted(45, 50) Source(23, 37) + SourceIndex(3) +8 >Emitted(45, 71) Source(23, 50) + SourceIndex(3) +9 >Emitted(45, 79) Source(23, 72) + SourceIndex(3) --- >>> /**@internal*/ var someOther; 1 >^^^^ @@ -4781,12 +4786,12 @@ sourceFile:../../../second/second_part1.ts 4 > export namespace 5 > someOther 6 > .something { export class someClass {} } -1 >Emitted(45, 5) Source(24, 5) + SourceIndex(3) -2 >Emitted(45, 19) Source(24, 19) + SourceIndex(3) -3 >Emitted(45, 20) Source(24, 20) + SourceIndex(3) -4 >Emitted(45, 24) Source(24, 37) + SourceIndex(3) -5 >Emitted(45, 33) Source(24, 46) + SourceIndex(3) -6 >Emitted(45, 34) Source(24, 86) + SourceIndex(3) +1 >Emitted(46, 5) Source(24, 5) + SourceIndex(3) +2 >Emitted(46, 19) Source(24, 19) + SourceIndex(3) +3 >Emitted(46, 20) Source(24, 20) + SourceIndex(3) +4 >Emitted(46, 24) Source(24, 37) + SourceIndex(3) +5 >Emitted(46, 33) Source(24, 46) + SourceIndex(3) +6 >Emitted(46, 34) Source(24, 86) + SourceIndex(3) --- >>> (function (someOther) { 1 >^^^^ @@ -4795,9 +4800,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 > export namespace 3 > someOther -1 >Emitted(46, 5) Source(24, 20) + SourceIndex(3) -2 >Emitted(46, 16) Source(24, 37) + SourceIndex(3) -3 >Emitted(46, 25) Source(24, 46) + SourceIndex(3) +1 >Emitted(47, 5) Source(24, 20) + SourceIndex(3) +2 >Emitted(47, 16) Source(24, 37) + SourceIndex(3) +3 >Emitted(47, 25) Source(24, 46) + SourceIndex(3) --- >>> var something; 1 >^^^^^^^^ @@ -4809,10 +4814,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(47, 9) Source(24, 47) + SourceIndex(3) -2 >Emitted(47, 13) Source(24, 47) + SourceIndex(3) -3 >Emitted(47, 22) Source(24, 56) + SourceIndex(3) -4 >Emitted(47, 23) Source(24, 86) + SourceIndex(3) +1 >Emitted(48, 9) Source(24, 47) + SourceIndex(3) +2 >Emitted(48, 13) Source(24, 47) + SourceIndex(3) +3 >Emitted(48, 22) Source(24, 56) + SourceIndex(3) +4 >Emitted(48, 23) Source(24, 86) + SourceIndex(3) --- >>> (function (something) { 1->^^^^^^^^ @@ -4822,21 +4827,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(48, 9) Source(24, 47) + SourceIndex(3) -2 >Emitted(48, 20) Source(24, 47) + SourceIndex(3) -3 >Emitted(48, 29) Source(24, 56) + SourceIndex(3) +1->Emitted(49, 9) Source(24, 47) + SourceIndex(3) +2 >Emitted(49, 20) Source(24, 47) + SourceIndex(3) +3 >Emitted(49, 29) Source(24, 56) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(49, 13) Source(24, 59) + SourceIndex(3) +1->Emitted(50, 13) Source(24, 59) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(50, 17) Source(24, 59) + SourceIndex(3) +1->Emitted(51, 17) Source(24, 59) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -4844,16 +4849,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(51, 17) Source(24, 83) + SourceIndex(3) -2 >Emitted(51, 18) Source(24, 84) + SourceIndex(3) +1->Emitted(52, 17) Source(24, 83) + SourceIndex(3) +2 >Emitted(52, 18) Source(24, 84) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(52, 17) Source(24, 83) + SourceIndex(3) -2 >Emitted(52, 33) Source(24, 84) + SourceIndex(3) +1->Emitted(53, 17) Source(24, 83) + SourceIndex(3) +2 >Emitted(53, 33) Source(24, 84) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -4865,10 +4870,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(53, 13) Source(24, 83) + SourceIndex(3) -2 >Emitted(53, 14) Source(24, 84) + SourceIndex(3) -3 >Emitted(53, 14) Source(24, 59) + SourceIndex(3) -4 >Emitted(53, 18) Source(24, 84) + SourceIndex(3) +1 >Emitted(54, 13) Source(24, 83) + SourceIndex(3) +2 >Emitted(54, 14) Source(24, 84) + SourceIndex(3) +3 >Emitted(54, 14) Source(24, 59) + SourceIndex(3) +4 >Emitted(54, 18) Source(24, 84) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -4880,10 +4885,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(54, 13) Source(24, 72) + SourceIndex(3) -2 >Emitted(54, 32) Source(24, 81) + SourceIndex(3) -3 >Emitted(54, 44) Source(24, 84) + SourceIndex(3) -4 >Emitted(54, 45) Source(24, 84) + SourceIndex(3) +1->Emitted(55, 13) Source(24, 72) + SourceIndex(3) +2 >Emitted(55, 32) Source(24, 81) + SourceIndex(3) +3 >Emitted(55, 44) Source(24, 84) + SourceIndex(3) +4 >Emitted(55, 45) Source(24, 84) + SourceIndex(3) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^ @@ -4904,15 +4909,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(55, 9) Source(24, 85) + SourceIndex(3) -2 >Emitted(55, 10) Source(24, 86) + SourceIndex(3) -3 >Emitted(55, 12) Source(24, 47) + SourceIndex(3) -4 >Emitted(55, 21) Source(24, 56) + SourceIndex(3) -5 >Emitted(55, 24) Source(24, 47) + SourceIndex(3) -6 >Emitted(55, 43) Source(24, 56) + SourceIndex(3) -7 >Emitted(55, 48) Source(24, 47) + SourceIndex(3) -8 >Emitted(55, 67) Source(24, 56) + SourceIndex(3) -9 >Emitted(55, 75) Source(24, 86) + SourceIndex(3) +1->Emitted(56, 9) Source(24, 85) + SourceIndex(3) +2 >Emitted(56, 10) Source(24, 86) + SourceIndex(3) +3 >Emitted(56, 12) Source(24, 47) + SourceIndex(3) +4 >Emitted(56, 21) Source(24, 56) + SourceIndex(3) +5 >Emitted(56, 24) Source(24, 47) + SourceIndex(3) +6 >Emitted(56, 43) Source(24, 56) + SourceIndex(3) +7 >Emitted(56, 48) Source(24, 47) + SourceIndex(3) +8 >Emitted(56, 67) Source(24, 56) + SourceIndex(3) +9 >Emitted(56, 75) Source(24, 86) + SourceIndex(3) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^ @@ -4933,15 +4938,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(56, 5) Source(24, 85) + SourceIndex(3) -2 >Emitted(56, 6) Source(24, 86) + SourceIndex(3) -3 >Emitted(56, 8) Source(24, 37) + SourceIndex(3) -4 >Emitted(56, 17) Source(24, 46) + SourceIndex(3) -5 >Emitted(56, 20) Source(24, 37) + SourceIndex(3) -6 >Emitted(56, 37) Source(24, 46) + SourceIndex(3) -7 >Emitted(56, 42) Source(24, 37) + SourceIndex(3) -8 >Emitted(56, 59) Source(24, 46) + SourceIndex(3) -9 >Emitted(56, 67) Source(24, 86) + SourceIndex(3) +1 >Emitted(57, 5) Source(24, 85) + SourceIndex(3) +2 >Emitted(57, 6) Source(24, 86) + SourceIndex(3) +3 >Emitted(57, 8) Source(24, 37) + SourceIndex(3) +4 >Emitted(57, 17) Source(24, 46) + SourceIndex(3) +5 >Emitted(57, 20) Source(24, 37) + SourceIndex(3) +6 >Emitted(57, 37) Source(24, 46) + SourceIndex(3) +7 >Emitted(57, 42) Source(24, 37) + SourceIndex(3) +8 >Emitted(57, 59) Source(24, 46) + SourceIndex(3) +9 >Emitted(57, 67) Source(24, 86) + SourceIndex(3) --- >>> /**@internal*/ normalN.someImport = someNamespace.C; 1 >^^^^ @@ -4963,15 +4968,15 @@ sourceFile:../../../second/second_part1.ts 7 > . 8 > C 9 > ; -1 >Emitted(57, 5) Source(25, 5) + SourceIndex(3) -2 >Emitted(57, 19) Source(25, 19) + SourceIndex(3) -3 >Emitted(57, 20) Source(25, 34) + SourceIndex(3) -4 >Emitted(57, 38) Source(25, 44) + SourceIndex(3) -5 >Emitted(57, 41) Source(25, 47) + SourceIndex(3) -6 >Emitted(57, 54) Source(25, 60) + SourceIndex(3) -7 >Emitted(57, 55) Source(25, 61) + SourceIndex(3) -8 >Emitted(57, 56) Source(25, 62) + SourceIndex(3) -9 >Emitted(57, 57) Source(25, 63) + SourceIndex(3) +1 >Emitted(58, 5) Source(25, 5) + SourceIndex(3) +2 >Emitted(58, 19) Source(25, 19) + SourceIndex(3) +3 >Emitted(58, 20) Source(25, 34) + SourceIndex(3) +4 >Emitted(58, 38) Source(25, 44) + SourceIndex(3) +5 >Emitted(58, 41) Source(25, 47) + SourceIndex(3) +6 >Emitted(58, 54) Source(25, 60) + SourceIndex(3) +7 >Emitted(58, 55) Source(25, 61) + SourceIndex(3) +8 >Emitted(58, 56) Source(25, 62) + SourceIndex(3) +9 >Emitted(58, 57) Source(25, 63) + SourceIndex(3) --- >>> /**@internal*/ normalN.internalConst = 10; 1 >^^^^ @@ -4990,13 +4995,13 @@ sourceFile:../../../second/second_part1.ts 5 > = 6 > 10 7 > ; -1 >Emitted(58, 5) Source(27, 5) + SourceIndex(3) -2 >Emitted(58, 19) Source(27, 19) + SourceIndex(3) -3 >Emitted(58, 20) Source(27, 33) + SourceIndex(3) -4 >Emitted(58, 41) Source(27, 46) + SourceIndex(3) -5 >Emitted(58, 44) Source(27, 49) + SourceIndex(3) -6 >Emitted(58, 46) Source(27, 51) + SourceIndex(3) -7 >Emitted(58, 47) Source(27, 52) + SourceIndex(3) +1 >Emitted(59, 5) Source(27, 5) + SourceIndex(3) +2 >Emitted(59, 19) Source(27, 19) + SourceIndex(3) +3 >Emitted(59, 20) Source(27, 33) + SourceIndex(3) +4 >Emitted(59, 41) Source(27, 46) + SourceIndex(3) +5 >Emitted(59, 44) Source(27, 49) + SourceIndex(3) +6 >Emitted(59, 46) Source(27, 51) + SourceIndex(3) +7 >Emitted(59, 47) Source(27, 52) + SourceIndex(3) --- >>> /**@internal*/ var internalEnum; 1 >^^^^ @@ -5010,11 +5015,11 @@ sourceFile:../../../second/second_part1.ts 3 > 4 > export enum 5 > internalEnum { a, b, c } -1 >Emitted(59, 5) Source(28, 5) + SourceIndex(3) -2 >Emitted(59, 19) Source(28, 19) + SourceIndex(3) -3 >Emitted(59, 20) Source(28, 20) + SourceIndex(3) -4 >Emitted(59, 24) Source(28, 32) + SourceIndex(3) -5 >Emitted(59, 36) Source(28, 56) + SourceIndex(3) +1 >Emitted(60, 5) Source(28, 5) + SourceIndex(3) +2 >Emitted(60, 19) Source(28, 19) + SourceIndex(3) +3 >Emitted(60, 20) Source(28, 20) + SourceIndex(3) +4 >Emitted(60, 24) Source(28, 32) + SourceIndex(3) +5 >Emitted(60, 36) Source(28, 56) + SourceIndex(3) --- >>> (function (internalEnum) { 1 >^^^^ @@ -5024,9 +5029,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 > export enum 3 > internalEnum -1 >Emitted(60, 5) Source(28, 20) + SourceIndex(3) -2 >Emitted(60, 16) Source(28, 32) + SourceIndex(3) -3 >Emitted(60, 28) Source(28, 44) + SourceIndex(3) +1 >Emitted(61, 5) Source(28, 20) + SourceIndex(3) +2 >Emitted(61, 16) Source(28, 32) + SourceIndex(3) +3 >Emitted(61, 28) Source(28, 44) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -5036,9 +5041,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(61, 9) Source(28, 47) + SourceIndex(3) -2 >Emitted(61, 50) Source(28, 48) + SourceIndex(3) -3 >Emitted(61, 51) Source(28, 48) + SourceIndex(3) +1->Emitted(62, 9) Source(28, 47) + SourceIndex(3) +2 >Emitted(62, 50) Source(28, 48) + SourceIndex(3) +3 >Emitted(62, 51) Source(28, 48) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -5048,9 +5053,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(62, 9) Source(28, 50) + SourceIndex(3) -2 >Emitted(62, 50) Source(28, 51) + SourceIndex(3) -3 >Emitted(62, 51) Source(28, 51) + SourceIndex(3) +1->Emitted(63, 9) Source(28, 50) + SourceIndex(3) +2 >Emitted(63, 50) Source(28, 51) + SourceIndex(3) +3 >Emitted(63, 51) Source(28, 51) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -5060,9 +5065,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(63, 9) Source(28, 53) + SourceIndex(3) -2 >Emitted(63, 50) Source(28, 54) + SourceIndex(3) -3 >Emitted(63, 51) Source(28, 54) + SourceIndex(3) +1->Emitted(64, 9) Source(28, 53) + SourceIndex(3) +2 >Emitted(64, 50) Source(28, 54) + SourceIndex(3) +3 >Emitted(64, 51) Source(28, 54) + SourceIndex(3) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^ @@ -5083,15 +5088,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(64, 5) Source(28, 55) + SourceIndex(3) -2 >Emitted(64, 6) Source(28, 56) + SourceIndex(3) -3 >Emitted(64, 8) Source(28, 32) + SourceIndex(3) -4 >Emitted(64, 20) Source(28, 44) + SourceIndex(3) -5 >Emitted(64, 23) Source(28, 32) + SourceIndex(3) -6 >Emitted(64, 43) Source(28, 44) + SourceIndex(3) -7 >Emitted(64, 48) Source(28, 32) + SourceIndex(3) -8 >Emitted(64, 68) Source(28, 44) + SourceIndex(3) -9 >Emitted(64, 76) Source(28, 56) + SourceIndex(3) +1->Emitted(65, 5) Source(28, 55) + SourceIndex(3) +2 >Emitted(65, 6) Source(28, 56) + SourceIndex(3) +3 >Emitted(65, 8) Source(28, 32) + SourceIndex(3) +4 >Emitted(65, 20) Source(28, 44) + SourceIndex(3) +5 >Emitted(65, 23) Source(28, 32) + SourceIndex(3) +6 >Emitted(65, 43) Source(28, 44) + SourceIndex(3) +7 >Emitted(65, 48) Source(28, 32) + SourceIndex(3) +8 >Emitted(65, 68) Source(28, 44) + SourceIndex(3) +9 >Emitted(65, 76) Source(28, 56) + SourceIndex(3) --- >>>})(normalN || (normalN = {})); 1 > @@ -5119,13 +5124,13 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ export const internalConst = 10; > /**@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(65, 1) Source(29, 1) + SourceIndex(3) -2 >Emitted(65, 2) Source(29, 2) + SourceIndex(3) -3 >Emitted(65, 4) Source(20, 11) + SourceIndex(3) -4 >Emitted(65, 11) Source(20, 18) + SourceIndex(3) -5 >Emitted(65, 16) Source(20, 11) + SourceIndex(3) -6 >Emitted(65, 23) Source(20, 18) + SourceIndex(3) -7 >Emitted(65, 31) Source(29, 2) + SourceIndex(3) +1 >Emitted(66, 1) Source(29, 1) + SourceIndex(3) +2 >Emitted(66, 2) Source(29, 2) + SourceIndex(3) +3 >Emitted(66, 4) Source(20, 11) + SourceIndex(3) +4 >Emitted(66, 11) Source(20, 18) + SourceIndex(3) +5 >Emitted(66, 16) Source(20, 11) + SourceIndex(3) +6 >Emitted(66, 23) Source(20, 18) + SourceIndex(3) +7 >Emitted(66, 31) Source(29, 2) + SourceIndex(3) --- >>>/**@internal*/ var internalC = /** @class */ (function () { 1-> @@ -5136,15 +5141,15 @@ sourceFile:../../../second/second_part1.ts > 2 >/**@internal*/ 3 > -1->Emitted(66, 1) Source(30, 1) + SourceIndex(3) -2 >Emitted(66, 15) Source(30, 15) + SourceIndex(3) -3 >Emitted(66, 16) Source(30, 16) + SourceIndex(3) +1->Emitted(67, 1) Source(30, 1) + SourceIndex(3) +2 >Emitted(67, 15) Source(30, 15) + SourceIndex(3) +3 >Emitted(67, 16) Source(30, 16) + SourceIndex(3) --- >>> function internalC() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(67, 5) Source(30, 16) + SourceIndex(3) +1->Emitted(68, 5) Source(30, 16) + SourceIndex(3) --- >>> } 1->^^^^ @@ -5152,16 +5157,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->class internalC { 2 > } -1->Emitted(68, 5) Source(30, 33) + SourceIndex(3) -2 >Emitted(68, 6) Source(30, 34) + SourceIndex(3) +1->Emitted(69, 5) Source(30, 33) + SourceIndex(3) +2 >Emitted(69, 6) Source(30, 34) + SourceIndex(3) --- >>> return internalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(69, 5) Source(30, 33) + SourceIndex(3) -2 >Emitted(69, 21) Source(30, 34) + SourceIndex(3) +1->Emitted(70, 5) Source(30, 33) + SourceIndex(3) +2 >Emitted(70, 21) Source(30, 34) + SourceIndex(3) --- >>>}()); 1 > @@ -5173,10 +5178,10 @@ sourceFile:../../../second/second_part1.ts 2 >} 3 > 4 > class internalC {} -1 >Emitted(70, 1) Source(30, 33) + SourceIndex(3) -2 >Emitted(70, 2) Source(30, 34) + SourceIndex(3) -3 >Emitted(70, 2) Source(30, 16) + SourceIndex(3) -4 >Emitted(70, 6) Source(30, 34) + SourceIndex(3) +1 >Emitted(71, 1) Source(30, 33) + SourceIndex(3) +2 >Emitted(71, 2) Source(30, 34) + SourceIndex(3) +3 >Emitted(71, 2) Source(30, 16) + SourceIndex(3) +4 >Emitted(71, 6) Source(30, 34) + SourceIndex(3) --- >>>/**@internal*/ function internalfoo() { } 1-> @@ -5194,13 +5199,13 @@ sourceFile:../../../second/second_part1.ts 5 > internalfoo 6 > () { 7 > } -1->Emitted(71, 1) Source(31, 1) + SourceIndex(3) -2 >Emitted(71, 15) Source(31, 15) + SourceIndex(3) -3 >Emitted(71, 16) Source(31, 16) + SourceIndex(3) -4 >Emitted(71, 25) Source(31, 25) + SourceIndex(3) -5 >Emitted(71, 36) Source(31, 36) + SourceIndex(3) -6 >Emitted(71, 41) Source(31, 40) + SourceIndex(3) -7 >Emitted(71, 42) Source(31, 41) + SourceIndex(3) +1->Emitted(72, 1) Source(31, 1) + SourceIndex(3) +2 >Emitted(72, 15) Source(31, 15) + SourceIndex(3) +3 >Emitted(72, 16) Source(31, 16) + SourceIndex(3) +4 >Emitted(72, 25) Source(31, 25) + SourceIndex(3) +5 >Emitted(72, 36) Source(31, 36) + SourceIndex(3) +6 >Emitted(72, 41) Source(31, 40) + SourceIndex(3) +7 >Emitted(72, 42) Source(31, 41) + SourceIndex(3) --- >>>/**@internal*/ var internalNamespace; 1 > @@ -5216,12 +5221,12 @@ sourceFile:../../../second/second_part1.ts 4 > namespace 5 > internalNamespace 6 > { export class someClass {} } -1 >Emitted(72, 1) Source(32, 1) + SourceIndex(3) -2 >Emitted(72, 15) Source(32, 15) + SourceIndex(3) -3 >Emitted(72, 16) Source(32, 16) + SourceIndex(3) -4 >Emitted(72, 20) Source(32, 26) + SourceIndex(3) -5 >Emitted(72, 37) Source(32, 43) + SourceIndex(3) -6 >Emitted(72, 38) Source(32, 73) + SourceIndex(3) +1 >Emitted(73, 1) Source(32, 1) + SourceIndex(3) +2 >Emitted(73, 15) Source(32, 15) + SourceIndex(3) +3 >Emitted(73, 16) Source(32, 16) + SourceIndex(3) +4 >Emitted(73, 20) Source(32, 26) + SourceIndex(3) +5 >Emitted(73, 37) Source(32, 43) + SourceIndex(3) +6 >Emitted(73, 38) Source(32, 73) + SourceIndex(3) --- >>>(function (internalNamespace) { 1 > @@ -5231,21 +5236,21 @@ sourceFile:../../../second/second_part1.ts 1 > 2 >namespace 3 > internalNamespace -1 >Emitted(73, 1) Source(32, 16) + SourceIndex(3) -2 >Emitted(73, 12) Source(32, 26) + SourceIndex(3) -3 >Emitted(73, 29) Source(32, 43) + SourceIndex(3) +1 >Emitted(74, 1) Source(32, 16) + SourceIndex(3) +2 >Emitted(74, 12) Source(32, 26) + SourceIndex(3) +3 >Emitted(74, 29) Source(32, 43) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(74, 5) Source(32, 46) + SourceIndex(3) +1->Emitted(75, 5) Source(32, 46) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(75, 9) Source(32, 46) + SourceIndex(3) +1->Emitted(76, 9) Source(32, 46) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -5253,16 +5258,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(76, 9) Source(32, 70) + SourceIndex(3) -2 >Emitted(76, 10) Source(32, 71) + SourceIndex(3) +1->Emitted(77, 9) Source(32, 70) + SourceIndex(3) +2 >Emitted(77, 10) Source(32, 71) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(77, 9) Source(32, 70) + SourceIndex(3) -2 >Emitted(77, 25) Source(32, 71) + SourceIndex(3) +1->Emitted(78, 9) Source(32, 70) + SourceIndex(3) +2 >Emitted(78, 25) Source(32, 71) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -5274,10 +5279,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(78, 5) Source(32, 70) + SourceIndex(3) -2 >Emitted(78, 6) Source(32, 71) + SourceIndex(3) -3 >Emitted(78, 6) Source(32, 46) + SourceIndex(3) -4 >Emitted(78, 10) Source(32, 71) + SourceIndex(3) +1 >Emitted(79, 5) Source(32, 70) + SourceIndex(3) +2 >Emitted(79, 6) Source(32, 71) + SourceIndex(3) +3 >Emitted(79, 6) Source(32, 46) + SourceIndex(3) +4 >Emitted(79, 10) Source(32, 71) + SourceIndex(3) --- >>> internalNamespace.someClass = someClass; 1->^^^^ @@ -5289,10 +5294,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(79, 5) Source(32, 59) + SourceIndex(3) -2 >Emitted(79, 32) Source(32, 68) + SourceIndex(3) -3 >Emitted(79, 44) Source(32, 71) + SourceIndex(3) -4 >Emitted(79, 45) Source(32, 71) + SourceIndex(3) +1->Emitted(80, 5) Source(32, 59) + SourceIndex(3) +2 >Emitted(80, 32) Source(32, 68) + SourceIndex(3) +3 >Emitted(80, 44) Source(32, 71) + SourceIndex(3) +4 >Emitted(80, 45) Source(32, 71) + SourceIndex(3) --- >>>})(internalNamespace || (internalNamespace = {})); 1-> @@ -5309,13 +5314,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalNamespace 7 > { export class someClass {} } -1->Emitted(80, 1) Source(32, 72) + SourceIndex(3) -2 >Emitted(80, 2) Source(32, 73) + SourceIndex(3) -3 >Emitted(80, 4) Source(32, 26) + SourceIndex(3) -4 >Emitted(80, 21) Source(32, 43) + SourceIndex(3) -5 >Emitted(80, 26) Source(32, 26) + SourceIndex(3) -6 >Emitted(80, 43) Source(32, 43) + SourceIndex(3) -7 >Emitted(80, 51) Source(32, 73) + SourceIndex(3) +1->Emitted(81, 1) Source(32, 72) + SourceIndex(3) +2 >Emitted(81, 2) Source(32, 73) + SourceIndex(3) +3 >Emitted(81, 4) Source(32, 26) + SourceIndex(3) +4 >Emitted(81, 21) Source(32, 43) + SourceIndex(3) +5 >Emitted(81, 26) Source(32, 26) + SourceIndex(3) +6 >Emitted(81, 43) Source(32, 43) + SourceIndex(3) +7 >Emitted(81, 51) Source(32, 73) + SourceIndex(3) --- >>>/**@internal*/ var internalOther; 1 > @@ -5331,12 +5336,12 @@ sourceFile:../../../second/second_part1.ts 4 > namespace 5 > internalOther 6 > .something { export class someClass {} } -1 >Emitted(81, 1) Source(33, 1) + SourceIndex(3) -2 >Emitted(81, 15) Source(33, 15) + SourceIndex(3) -3 >Emitted(81, 16) Source(33, 16) + SourceIndex(3) -4 >Emitted(81, 20) Source(33, 26) + SourceIndex(3) -5 >Emitted(81, 33) Source(33, 39) + SourceIndex(3) -6 >Emitted(81, 34) Source(33, 79) + SourceIndex(3) +1 >Emitted(82, 1) Source(33, 1) + SourceIndex(3) +2 >Emitted(82, 15) Source(33, 15) + SourceIndex(3) +3 >Emitted(82, 16) Source(33, 16) + SourceIndex(3) +4 >Emitted(82, 20) Source(33, 26) + SourceIndex(3) +5 >Emitted(82, 33) Source(33, 39) + SourceIndex(3) +6 >Emitted(82, 34) Source(33, 79) + SourceIndex(3) --- >>>(function (internalOther) { 1 > @@ -5345,9 +5350,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 >namespace 3 > internalOther -1 >Emitted(82, 1) Source(33, 16) + SourceIndex(3) -2 >Emitted(82, 12) Source(33, 26) + SourceIndex(3) -3 >Emitted(82, 25) Source(33, 39) + SourceIndex(3) +1 >Emitted(83, 1) Source(33, 16) + SourceIndex(3) +2 >Emitted(83, 12) Source(33, 26) + SourceIndex(3) +3 >Emitted(83, 25) Source(33, 39) + SourceIndex(3) --- >>> var something; 1 >^^^^ @@ -5359,10 +5364,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(83, 5) Source(33, 40) + SourceIndex(3) -2 >Emitted(83, 9) Source(33, 40) + SourceIndex(3) -3 >Emitted(83, 18) Source(33, 49) + SourceIndex(3) -4 >Emitted(83, 19) Source(33, 79) + SourceIndex(3) +1 >Emitted(84, 5) Source(33, 40) + SourceIndex(3) +2 >Emitted(84, 9) Source(33, 40) + SourceIndex(3) +3 >Emitted(84, 18) Source(33, 49) + SourceIndex(3) +4 >Emitted(84, 19) Source(33, 79) + SourceIndex(3) --- >>> (function (something) { 1->^^^^ @@ -5372,21 +5377,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(84, 5) Source(33, 40) + SourceIndex(3) -2 >Emitted(84, 16) Source(33, 40) + SourceIndex(3) -3 >Emitted(84, 25) Source(33, 49) + SourceIndex(3) +1->Emitted(85, 5) Source(33, 40) + SourceIndex(3) +2 >Emitted(85, 16) Source(33, 40) + SourceIndex(3) +3 >Emitted(85, 25) Source(33, 49) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(85, 9) Source(33, 52) + SourceIndex(3) +1->Emitted(86, 9) Source(33, 52) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(86, 13) Source(33, 52) + SourceIndex(3) +1->Emitted(87, 13) Source(33, 52) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -5394,16 +5399,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(87, 13) Source(33, 76) + SourceIndex(3) -2 >Emitted(87, 14) Source(33, 77) + SourceIndex(3) +1->Emitted(88, 13) Source(33, 76) + SourceIndex(3) +2 >Emitted(88, 14) Source(33, 77) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(88, 13) Source(33, 76) + SourceIndex(3) -2 >Emitted(88, 29) Source(33, 77) + SourceIndex(3) +1->Emitted(89, 13) Source(33, 76) + SourceIndex(3) +2 >Emitted(89, 29) Source(33, 77) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -5415,10 +5420,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(89, 9) Source(33, 76) + SourceIndex(3) -2 >Emitted(89, 10) Source(33, 77) + SourceIndex(3) -3 >Emitted(89, 10) Source(33, 52) + SourceIndex(3) -4 >Emitted(89, 14) Source(33, 77) + SourceIndex(3) +1 >Emitted(90, 9) Source(33, 76) + SourceIndex(3) +2 >Emitted(90, 10) Source(33, 77) + SourceIndex(3) +3 >Emitted(90, 10) Source(33, 52) + SourceIndex(3) +4 >Emitted(90, 14) Source(33, 77) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^ @@ -5430,10 +5435,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(90, 9) Source(33, 65) + SourceIndex(3) -2 >Emitted(90, 28) Source(33, 74) + SourceIndex(3) -3 >Emitted(90, 40) Source(33, 77) + SourceIndex(3) -4 >Emitted(90, 41) Source(33, 77) + SourceIndex(3) +1->Emitted(91, 9) Source(33, 65) + SourceIndex(3) +2 >Emitted(91, 28) Source(33, 74) + SourceIndex(3) +3 >Emitted(91, 40) Source(33, 77) + SourceIndex(3) +4 >Emitted(91, 41) Source(33, 77) + SourceIndex(3) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^ @@ -5454,15 +5459,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(91, 5) Source(33, 78) + SourceIndex(3) -2 >Emitted(91, 6) Source(33, 79) + SourceIndex(3) -3 >Emitted(91, 8) Source(33, 40) + SourceIndex(3) -4 >Emitted(91, 17) Source(33, 49) + SourceIndex(3) -5 >Emitted(91, 20) Source(33, 40) + SourceIndex(3) -6 >Emitted(91, 43) Source(33, 49) + SourceIndex(3) -7 >Emitted(91, 48) Source(33, 40) + SourceIndex(3) -8 >Emitted(91, 71) Source(33, 49) + SourceIndex(3) -9 >Emitted(91, 79) Source(33, 79) + SourceIndex(3) +1->Emitted(92, 5) Source(33, 78) + SourceIndex(3) +2 >Emitted(92, 6) Source(33, 79) + SourceIndex(3) +3 >Emitted(92, 8) Source(33, 40) + SourceIndex(3) +4 >Emitted(92, 17) Source(33, 49) + SourceIndex(3) +5 >Emitted(92, 20) Source(33, 40) + SourceIndex(3) +6 >Emitted(92, 43) Source(33, 49) + SourceIndex(3) +7 >Emitted(92, 48) Source(33, 40) + SourceIndex(3) +8 >Emitted(92, 71) Source(33, 49) + SourceIndex(3) +9 >Emitted(92, 79) Source(33, 79) + SourceIndex(3) --- >>>})(internalOther || (internalOther = {})); 1 > @@ -5480,13 +5485,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalOther 7 > .something { export class someClass {} } -1 >Emitted(92, 1) Source(33, 78) + SourceIndex(3) -2 >Emitted(92, 2) Source(33, 79) + SourceIndex(3) -3 >Emitted(92, 4) Source(33, 26) + SourceIndex(3) -4 >Emitted(92, 17) Source(33, 39) + SourceIndex(3) -5 >Emitted(92, 22) Source(33, 26) + SourceIndex(3) -6 >Emitted(92, 35) Source(33, 39) + SourceIndex(3) -7 >Emitted(92, 43) Source(33, 79) + SourceIndex(3) +1 >Emitted(93, 1) Source(33, 78) + SourceIndex(3) +2 >Emitted(93, 2) Source(33, 79) + SourceIndex(3) +3 >Emitted(93, 4) Source(33, 26) + SourceIndex(3) +4 >Emitted(93, 17) Source(33, 39) + SourceIndex(3) +5 >Emitted(93, 22) Source(33, 26) + SourceIndex(3) +6 >Emitted(93, 35) Source(33, 39) + SourceIndex(3) +7 >Emitted(93, 43) Source(33, 79) + SourceIndex(3) --- >>>/**@internal*/ var internalImport = internalNamespace.someClass; 1-> @@ -5510,16 +5515,16 @@ sourceFile:../../../second/second_part1.ts 8 > . 9 > someClass 10> ; -1->Emitted(93, 1) Source(34, 1) + SourceIndex(3) -2 >Emitted(93, 15) Source(34, 15) + SourceIndex(3) -3 >Emitted(93, 16) Source(34, 16) + SourceIndex(3) -4 >Emitted(93, 20) Source(34, 23) + SourceIndex(3) -5 >Emitted(93, 34) Source(34, 37) + SourceIndex(3) -6 >Emitted(93, 37) Source(34, 40) + SourceIndex(3) -7 >Emitted(93, 54) Source(34, 57) + SourceIndex(3) -8 >Emitted(93, 55) Source(34, 58) + SourceIndex(3) -9 >Emitted(93, 64) Source(34, 67) + SourceIndex(3) -10>Emitted(93, 65) Source(34, 68) + SourceIndex(3) +1->Emitted(94, 1) Source(34, 1) + SourceIndex(3) +2 >Emitted(94, 15) Source(34, 15) + SourceIndex(3) +3 >Emitted(94, 16) Source(34, 16) + SourceIndex(3) +4 >Emitted(94, 20) Source(34, 23) + SourceIndex(3) +5 >Emitted(94, 34) Source(34, 37) + SourceIndex(3) +6 >Emitted(94, 37) Source(34, 40) + SourceIndex(3) +7 >Emitted(94, 54) Source(34, 57) + SourceIndex(3) +8 >Emitted(94, 55) Source(34, 58) + SourceIndex(3) +9 >Emitted(94, 64) Source(34, 67) + SourceIndex(3) +10>Emitted(94, 65) Source(34, 68) + SourceIndex(3) --- >>>/**@internal*/ var internalConst = 10; 1 > @@ -5540,14 +5545,14 @@ sourceFile:../../../second/second_part1.ts 6 > = 7 > 10 8 > ; -1 >Emitted(94, 1) Source(36, 1) + SourceIndex(3) -2 >Emitted(94, 15) Source(36, 15) + SourceIndex(3) -3 >Emitted(94, 16) Source(36, 16) + SourceIndex(3) -4 >Emitted(94, 20) Source(36, 22) + SourceIndex(3) -5 >Emitted(94, 33) Source(36, 35) + SourceIndex(3) -6 >Emitted(94, 36) Source(36, 38) + SourceIndex(3) -7 >Emitted(94, 38) Source(36, 40) + SourceIndex(3) -8 >Emitted(94, 39) Source(36, 41) + SourceIndex(3) +1 >Emitted(95, 1) Source(36, 1) + SourceIndex(3) +2 >Emitted(95, 15) Source(36, 15) + SourceIndex(3) +3 >Emitted(95, 16) Source(36, 16) + SourceIndex(3) +4 >Emitted(95, 20) Source(36, 22) + SourceIndex(3) +5 >Emitted(95, 33) Source(36, 35) + SourceIndex(3) +6 >Emitted(95, 36) Source(36, 38) + SourceIndex(3) +7 >Emitted(95, 38) Source(36, 40) + SourceIndex(3) +8 >Emitted(95, 39) Source(36, 41) + SourceIndex(3) --- >>>/**@internal*/ var internalEnum; 1 > @@ -5561,11 +5566,11 @@ sourceFile:../../../second/second_part1.ts 3 > 4 > enum 5 > internalEnum { a, b, c } -1 >Emitted(95, 1) Source(37, 1) + SourceIndex(3) -2 >Emitted(95, 15) Source(37, 15) + SourceIndex(3) -3 >Emitted(95, 16) Source(37, 16) + SourceIndex(3) -4 >Emitted(95, 20) Source(37, 21) + SourceIndex(3) -5 >Emitted(95, 32) Source(37, 45) + SourceIndex(3) +1 >Emitted(96, 1) Source(37, 1) + SourceIndex(3) +2 >Emitted(96, 15) Source(37, 15) + SourceIndex(3) +3 >Emitted(96, 16) Source(37, 16) + SourceIndex(3) +4 >Emitted(96, 20) Source(37, 21) + SourceIndex(3) +5 >Emitted(96, 32) Source(37, 45) + SourceIndex(3) --- >>>(function (internalEnum) { 1 > @@ -5575,9 +5580,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 >enum 3 > internalEnum -1 >Emitted(96, 1) Source(37, 16) + SourceIndex(3) -2 >Emitted(96, 12) Source(37, 21) + SourceIndex(3) -3 >Emitted(96, 24) Source(37, 33) + SourceIndex(3) +1 >Emitted(97, 1) Source(37, 16) + SourceIndex(3) +2 >Emitted(97, 12) Source(37, 21) + SourceIndex(3) +3 >Emitted(97, 24) Source(37, 33) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^ @@ -5587,9 +5592,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(97, 5) Source(37, 36) + SourceIndex(3) -2 >Emitted(97, 46) Source(37, 37) + SourceIndex(3) -3 >Emitted(97, 47) Source(37, 37) + SourceIndex(3) +1->Emitted(98, 5) Source(37, 36) + SourceIndex(3) +2 >Emitted(98, 46) Source(37, 37) + SourceIndex(3) +3 >Emitted(98, 47) Source(37, 37) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^ @@ -5599,9 +5604,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(98, 5) Source(37, 39) + SourceIndex(3) -2 >Emitted(98, 46) Source(37, 40) + SourceIndex(3) -3 >Emitted(98, 47) Source(37, 40) + SourceIndex(3) +1->Emitted(99, 5) Source(37, 39) + SourceIndex(3) +2 >Emitted(99, 46) Source(37, 40) + SourceIndex(3) +3 >Emitted(99, 47) Source(37, 40) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^ @@ -5610,9 +5615,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(99, 5) Source(37, 42) + SourceIndex(3) -2 >Emitted(99, 46) Source(37, 43) + SourceIndex(3) -3 >Emitted(99, 47) Source(37, 43) + SourceIndex(3) +1->Emitted(100, 5) Source(37, 42) + SourceIndex(3) +2 >Emitted(100, 46) Source(37, 43) + SourceIndex(3) +3 >Emitted(100, 47) Source(37, 43) + SourceIndex(3) --- >>>})(internalEnum || (internalEnum = {})); 1 > @@ -5629,13 +5634,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalEnum 7 > { a, b, c } -1 >Emitted(100, 1) Source(37, 44) + SourceIndex(3) -2 >Emitted(100, 2) Source(37, 45) + SourceIndex(3) -3 >Emitted(100, 4) Source(37, 21) + SourceIndex(3) -4 >Emitted(100, 16) Source(37, 33) + SourceIndex(3) -5 >Emitted(100, 21) Source(37, 21) + SourceIndex(3) -6 >Emitted(100, 33) Source(37, 33) + SourceIndex(3) -7 >Emitted(100, 41) Source(37, 45) + SourceIndex(3) +1 >Emitted(101, 1) Source(37, 44) + SourceIndex(3) +2 >Emitted(101, 2) Source(37, 45) + SourceIndex(3) +3 >Emitted(101, 4) Source(37, 21) + SourceIndex(3) +4 >Emitted(101, 16) Source(37, 33) + SourceIndex(3) +5 >Emitted(101, 21) Source(37, 21) + SourceIndex(3) +6 >Emitted(101, 33) Source(37, 33) + SourceIndex(3) +7 >Emitted(101, 41) Source(37, 45) + SourceIndex(3) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -5645,13 +5650,13 @@ sourceFile:../../../second/second_part2.ts 1 > 2 >^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(101, 1) Source(1, 1) + SourceIndex(4) +1 >Emitted(102, 1) Source(1, 1) + SourceIndex(4) --- >>> function C() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(102, 5) Source(1, 1) + SourceIndex(4) +1->Emitted(103, 5) Source(1, 1) + SourceIndex(4) --- >>> } 1->^^^^ @@ -5663,8 +5668,8 @@ sourceFile:../../../second/second_part2.ts > } > 2 > } -1->Emitted(103, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(103, 6) Source(5, 2) + SourceIndex(4) +1->Emitted(104, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(104, 6) Source(5, 2) + SourceIndex(4) --- >>> C.prototype.doSomething = function () { 1->^^^^ @@ -5674,9 +5679,9 @@ sourceFile:../../../second/second_part2.ts 1-> 2 > doSomething 3 > -1->Emitted(104, 5) Source(2, 5) + SourceIndex(4) -2 >Emitted(104, 28) Source(2, 16) + SourceIndex(4) -3 >Emitted(104, 31) Source(2, 5) + SourceIndex(4) +1->Emitted(105, 5) Source(2, 5) + SourceIndex(4) +2 >Emitted(105, 28) Source(2, 16) + SourceIndex(4) +3 >Emitted(105, 31) Source(2, 5) + SourceIndex(4) --- >>> console.log("something got done"); 1->^^^^^^^^ @@ -5696,14 +5701,14 @@ sourceFile:../../../second/second_part2.ts 6 > "something got done" 7 > ) 8 > ; -1->Emitted(105, 9) Source(3, 9) + SourceIndex(4) -2 >Emitted(105, 16) Source(3, 16) + SourceIndex(4) -3 >Emitted(105, 17) Source(3, 17) + SourceIndex(4) -4 >Emitted(105, 20) Source(3, 20) + SourceIndex(4) -5 >Emitted(105, 21) Source(3, 21) + SourceIndex(4) -6 >Emitted(105, 41) Source(3, 41) + SourceIndex(4) -7 >Emitted(105, 42) Source(3, 42) + SourceIndex(4) -8 >Emitted(105, 43) Source(3, 43) + SourceIndex(4) +1->Emitted(106, 9) Source(3, 9) + SourceIndex(4) +2 >Emitted(106, 16) Source(3, 16) + SourceIndex(4) +3 >Emitted(106, 17) Source(3, 17) + SourceIndex(4) +4 >Emitted(106, 20) Source(3, 20) + SourceIndex(4) +5 >Emitted(106, 21) Source(3, 21) + SourceIndex(4) +6 >Emitted(106, 41) Source(3, 41) + SourceIndex(4) +7 >Emitted(106, 42) Source(3, 42) + SourceIndex(4) +8 >Emitted(106, 43) Source(3, 43) + SourceIndex(4) --- >>> }; 1 >^^^^ @@ -5712,8 +5717,8 @@ sourceFile:../../../second/second_part2.ts 1 > > 2 > } -1 >Emitted(106, 5) Source(4, 5) + SourceIndex(4) -2 >Emitted(106, 6) Source(4, 6) + SourceIndex(4) +1 >Emitted(107, 5) Source(4, 5) + SourceIndex(4) +2 >Emitted(107, 6) Source(4, 6) + SourceIndex(4) --- >>> return C; 1->^^^^ @@ -5721,8 +5726,8 @@ sourceFile:../../../second/second_part2.ts 1-> > 2 > } -1->Emitted(107, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(107, 13) Source(5, 2) + SourceIndex(4) +1->Emitted(108, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(108, 13) Source(5, 2) + SourceIndex(4) --- >>>}()); 1 > @@ -5738,10 +5743,10 @@ sourceFile:../../../second/second_part2.ts > console.log("something got done"); > } > } -1 >Emitted(108, 1) Source(5, 1) + SourceIndex(4) -2 >Emitted(108, 2) Source(5, 2) + SourceIndex(4) -3 >Emitted(108, 2) Source(1, 1) + SourceIndex(4) -4 >Emitted(108, 6) Source(5, 2) + SourceIndex(4) +1 >Emitted(109, 1) Source(5, 1) + SourceIndex(4) +2 >Emitted(109, 2) Source(5, 2) + SourceIndex(4) +3 >Emitted(109, 2) Source(1, 1) + SourceIndex(4) +4 >Emitted(109, 6) Source(5, 2) + SourceIndex(4) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -5765,14 +5770,14 @@ sourceFile:../../third_part1.ts 6 > C 7 > () 8 > ; -1->Emitted(109, 1) Source(1, 1) + SourceIndex(5) -2 >Emitted(109, 5) Source(1, 5) + SourceIndex(5) -3 >Emitted(109, 6) Source(1, 6) + SourceIndex(5) -4 >Emitted(109, 9) Source(1, 9) + SourceIndex(5) -5 >Emitted(109, 13) Source(1, 13) + SourceIndex(5) -6 >Emitted(109, 14) Source(1, 14) + SourceIndex(5) -7 >Emitted(109, 16) Source(1, 16) + SourceIndex(5) -8 >Emitted(109, 17) Source(1, 17) + SourceIndex(5) +1->Emitted(110, 1) Source(1, 1) + SourceIndex(5) +2 >Emitted(110, 5) Source(1, 5) + SourceIndex(5) +3 >Emitted(110, 6) Source(1, 6) + SourceIndex(5) +4 >Emitted(110, 9) Source(1, 9) + SourceIndex(5) +5 >Emitted(110, 13) Source(1, 13) + SourceIndex(5) +6 >Emitted(110, 14) Source(1, 14) + SourceIndex(5) +7 >Emitted(110, 16) Source(1, 16) + SourceIndex(5) +8 >Emitted(110, 17) Source(1, 17) + SourceIndex(5) --- >>>c.doSomething(); 1-> @@ -5789,12 +5794,12 @@ sourceFile:../../third_part1.ts 4 > doSomething 5 > () 6 > ; -1->Emitted(110, 1) Source(2, 1) + SourceIndex(5) -2 >Emitted(110, 2) Source(2, 2) + SourceIndex(5) -3 >Emitted(110, 3) Source(2, 3) + SourceIndex(5) -4 >Emitted(110, 14) Source(2, 14) + SourceIndex(5) -5 >Emitted(110, 16) Source(2, 16) + SourceIndex(5) -6 >Emitted(110, 17) Source(2, 17) + SourceIndex(5) +1->Emitted(111, 1) Source(2, 1) + SourceIndex(5) +2 >Emitted(111, 2) Source(2, 2) + SourceIndex(5) +3 >Emitted(111, 3) Source(2, 3) + SourceIndex(5) +4 >Emitted(111, 14) Source(2, 14) + SourceIndex(5) +5 >Emitted(111, 16) Source(2, 16) + SourceIndex(5) +6 >Emitted(111, 17) Source(2, 17) + SourceIndex(5) --- >>>//# sourceMappingURL=third-output.js.map @@ -5809,20 +5814,20 @@ sourceFile:../../third_part1.ts "sections": [ { "pos": 0, - "end": 3545, + "end": 3593, "kind": "prepend", "data": "../../../2/second-output.js", "texts": [ { "pos": 0, - "end": 3545, + "end": 3593, "kind": "text" } ] }, { - "pos": 3545, - "end": 3581, + "pos": 3593, + "end": 3629, "kind": "text" } ] @@ -5857,9 +5862,9 @@ sourceFile:../../third_part1.ts ====================================================================== File:: /src/third/thirdjs/output/third-output.js ---------------------------------------------------------------------- -prepend: (0-3545):: ../../../2/second-output.js texts:: 1 +prepend: (0-3593):: ../../../2/second-output.js texts:: 1 >>-------------------------------------------------------------------- -text: (0-3545) +text: (0-3593) var s = "Hello, world"; console.log(s); console.log(f()); @@ -5876,8 +5881,9 @@ var N; var normalC = /** @class */ (function () { /**@internal*/ function normalC() { } - /**@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /**@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /**@internal*/ get: function () { return 10; }, /**@internal*/ set: function (val) { }, enumerable: false, @@ -5970,7 +5976,7 @@ var C = /** @class */ (function () { }()); ---------------------------------------------------------------------- -text: (3545-3581) +text: (3593-3629) var c = new C(); c.doSomething(); diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-with-comments-emit-enabled.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-with-comments-emit-enabled.js index 5acedb0dbeb78..665430a431309 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-with-comments-emit-enabled.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-jsdoc-style-with-comments-emit-enabled.js @@ -1069,8 +1069,9 @@ var N; var normalC = /** @class */ (function () { /**@internal*/ function normalC() { } - /**@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /**@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /**@internal*/ get: function () { return 10; }, /**@internal*/ set: function (val) { }, enumerable: false, @@ -1164,7 +1165,7 @@ var C = /** @class */ (function () { //# sourceMappingURL=second-output.js.map //// [/src/2/second-output.js.map] -{"version":3,"file":"second-output.js","sourceRoot":"","sources":["../second/second_part1.ts","../second/second_part2.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"second-output.js","sourceRoot":"","sources":["../second/second_part1.ts","../second/second_part2.ts"],"names":[],"mappings":"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"} //// [/src/2/second-output.js.map.baseline.txt] =================================================================== @@ -1335,13 +1336,14 @@ sourceFile:../second/second_part1.ts >>> } 1 >^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 >constructor() { 2 > } 1 >Emitted(10, 5) Source(14, 36) + SourceIndex(0) 2 >Emitted(10, 6) Source(14, 37) + SourceIndex(0) --- ->>> /**@internal*/ normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> /**@internal*/ normalC_prototype.method = function () { }; 1->^^^^ 2 > ^^^^^^^^^^^^^^ 3 > ^ @@ -1358,15 +1360,15 @@ sourceFile:../second/second_part1.ts 5 > 6 > method() { 7 > } -1->Emitted(11, 5) Source(16, 5) + SourceIndex(0) -2 >Emitted(11, 19) Source(16, 19) + SourceIndex(0) -3 >Emitted(11, 20) Source(16, 20) + SourceIndex(0) -4 >Emitted(11, 44) Source(16, 26) + SourceIndex(0) -5 >Emitted(11, 47) Source(16, 20) + SourceIndex(0) -6 >Emitted(11, 61) Source(16, 31) + SourceIndex(0) -7 >Emitted(11, 62) Source(16, 32) + SourceIndex(0) ---- ->>> Object.defineProperty(normalC.prototype, "c", { +1->Emitted(12, 5) Source(16, 5) + SourceIndex(0) +2 >Emitted(12, 19) Source(16, 19) + SourceIndex(0) +3 >Emitted(12, 20) Source(16, 20) + SourceIndex(0) +4 >Emitted(12, 44) Source(16, 26) + SourceIndex(0) +5 >Emitted(12, 47) Source(16, 20) + SourceIndex(0) +6 >Emitted(12, 61) Source(16, 31) + SourceIndex(0) +7 >Emitted(12, 62) Source(16, 32) + SourceIndex(0) +--- +>>> Object.defineProperty(normalC_prototype, "c", { 1 >^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -1375,9 +1377,9 @@ sourceFile:../second/second_part1.ts > /**@internal*/ 2 > get 3 > c -1 >Emitted(12, 5) Source(17, 20) + SourceIndex(0) -2 >Emitted(12, 27) Source(17, 24) + SourceIndex(0) -3 >Emitted(12, 49) Source(17, 25) + SourceIndex(0) +1 >Emitted(13, 5) Source(17, 20) + SourceIndex(0) +2 >Emitted(13, 27) Source(17, 24) + SourceIndex(0) +3 >Emitted(13, 49) Source(17, 25) + SourceIndex(0) --- >>> /**@internal*/ get: function () { return 10; }, 1->^^^^^^^^ @@ -1398,15 +1400,15 @@ sourceFile:../second/second_part1.ts 7 > ; 8 > 9 > } -1->Emitted(13, 9) Source(17, 5) + SourceIndex(0) -2 >Emitted(13, 23) Source(17, 19) + SourceIndex(0) -3 >Emitted(13, 29) Source(17, 20) + SourceIndex(0) -4 >Emitted(13, 43) Source(17, 30) + SourceIndex(0) -5 >Emitted(13, 50) Source(17, 37) + SourceIndex(0) -6 >Emitted(13, 52) Source(17, 39) + SourceIndex(0) -7 >Emitted(13, 53) Source(17, 40) + SourceIndex(0) -8 >Emitted(13, 54) Source(17, 41) + SourceIndex(0) -9 >Emitted(13, 55) Source(17, 42) + SourceIndex(0) +1->Emitted(14, 9) Source(17, 5) + SourceIndex(0) +2 >Emitted(14, 23) Source(17, 19) + SourceIndex(0) +3 >Emitted(14, 29) Source(17, 20) + SourceIndex(0) +4 >Emitted(14, 43) Source(17, 30) + SourceIndex(0) +5 >Emitted(14, 50) Source(17, 37) + SourceIndex(0) +6 >Emitted(14, 52) Source(17, 39) + SourceIndex(0) +7 >Emitted(14, 53) Source(17, 40) + SourceIndex(0) +8 >Emitted(14, 54) Source(17, 41) + SourceIndex(0) +9 >Emitted(14, 55) Source(17, 42) + SourceIndex(0) --- >>> /**@internal*/ set: function (val) { }, 1 >^^^^^^^^ @@ -1424,13 +1426,13 @@ sourceFile:../second/second_part1.ts 5 > val: number 6 > ) { 7 > } -1 >Emitted(14, 9) Source(18, 5) + SourceIndex(0) -2 >Emitted(14, 23) Source(18, 19) + SourceIndex(0) -3 >Emitted(14, 29) Source(18, 20) + SourceIndex(0) -4 >Emitted(14, 39) Source(18, 26) + SourceIndex(0) -5 >Emitted(14, 42) Source(18, 37) + SourceIndex(0) -6 >Emitted(14, 46) Source(18, 41) + SourceIndex(0) -7 >Emitted(14, 47) Source(18, 42) + SourceIndex(0) +1 >Emitted(15, 9) Source(18, 5) + SourceIndex(0) +2 >Emitted(15, 23) Source(18, 19) + SourceIndex(0) +3 >Emitted(15, 29) Source(18, 20) + SourceIndex(0) +4 >Emitted(15, 39) Source(18, 26) + SourceIndex(0) +5 >Emitted(15, 42) Source(18, 37) + SourceIndex(0) +6 >Emitted(15, 46) Source(18, 41) + SourceIndex(0) +7 >Emitted(15, 47) Source(18, 42) + SourceIndex(0) --- >>> enumerable: false, >>> configurable: true @@ -1438,7 +1440,7 @@ sourceFile:../second/second_part1.ts 1 >^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(17, 8) Source(17, 42) + SourceIndex(0) +1 >Emitted(18, 8) Source(17, 42) + SourceIndex(0) --- >>> return normalC; 1->^^^^ @@ -1447,8 +1449,8 @@ sourceFile:../second/second_part1.ts > /**@internal*/ set c(val: number) { } > 2 > } -1->Emitted(18, 5) Source(19, 1) + SourceIndex(0) -2 >Emitted(18, 19) Source(19, 2) + SourceIndex(0) +1->Emitted(19, 5) Source(19, 1) + SourceIndex(0) +2 >Emitted(19, 19) Source(19, 2) + SourceIndex(0) --- >>>}()); 1 > @@ -1466,10 +1468,10 @@ sourceFile:../second/second_part1.ts > /**@internal*/ get c() { return 10; } > /**@internal*/ set c(val: number) { } > } -1 >Emitted(19, 1) Source(19, 1) + SourceIndex(0) -2 >Emitted(19, 2) Source(19, 2) + SourceIndex(0) -3 >Emitted(19, 2) Source(13, 1) + SourceIndex(0) -4 >Emitted(19, 6) Source(19, 2) + SourceIndex(0) +1 >Emitted(20, 1) Source(19, 1) + SourceIndex(0) +2 >Emitted(20, 2) Source(19, 2) + SourceIndex(0) +3 >Emitted(20, 2) Source(13, 1) + SourceIndex(0) +4 >Emitted(20, 6) Source(19, 2) + SourceIndex(0) --- >>>var normalN; 1-> @@ -1491,10 +1493,10 @@ sourceFile:../second/second_part1.ts > /**@internal*/ export const internalConst = 10; > /**@internal*/ export enum internalEnum { a, b, c } > } -1->Emitted(20, 1) Source(20, 1) + SourceIndex(0) -2 >Emitted(20, 5) Source(20, 11) + SourceIndex(0) -3 >Emitted(20, 12) Source(20, 18) + SourceIndex(0) -4 >Emitted(20, 13) Source(29, 2) + SourceIndex(0) +1->Emitted(21, 1) Source(20, 1) + SourceIndex(0) +2 >Emitted(21, 5) Source(20, 11) + SourceIndex(0) +3 >Emitted(21, 12) Source(20, 18) + SourceIndex(0) +4 >Emitted(21, 13) Source(29, 2) + SourceIndex(0) --- >>>(function (normalN) { 1-> @@ -1504,9 +1506,9 @@ sourceFile:../second/second_part1.ts 1-> 2 >namespace 3 > normalN -1->Emitted(21, 1) Source(20, 1) + SourceIndex(0) -2 >Emitted(21, 12) Source(20, 11) + SourceIndex(0) -3 >Emitted(21, 19) Source(20, 18) + SourceIndex(0) +1->Emitted(22, 1) Source(20, 1) + SourceIndex(0) +2 >Emitted(22, 12) Source(20, 11) + SourceIndex(0) +3 >Emitted(22, 19) Source(20, 18) + SourceIndex(0) --- >>> /**@internal*/ var C = /** @class */ (function () { 1->^^^^ @@ -1517,15 +1519,15 @@ sourceFile:../second/second_part1.ts > 2 > /**@internal*/ 3 > -1->Emitted(22, 5) Source(21, 5) + SourceIndex(0) -2 >Emitted(22, 19) Source(21, 19) + SourceIndex(0) -3 >Emitted(22, 20) Source(21, 20) + SourceIndex(0) +1->Emitted(23, 5) Source(21, 5) + SourceIndex(0) +2 >Emitted(23, 19) Source(21, 19) + SourceIndex(0) +3 >Emitted(23, 20) Source(21, 20) + SourceIndex(0) --- >>> function C() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(23, 9) Source(21, 20) + SourceIndex(0) +1->Emitted(24, 9) Source(21, 20) + SourceIndex(0) --- >>> } 1->^^^^^^^^ @@ -1533,16 +1535,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(24, 9) Source(21, 37) + SourceIndex(0) -2 >Emitted(24, 10) Source(21, 38) + SourceIndex(0) +1->Emitted(25, 9) Source(21, 37) + SourceIndex(0) +2 >Emitted(25, 10) Source(21, 38) + SourceIndex(0) --- >>> return C; 1->^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(25, 9) Source(21, 37) + SourceIndex(0) -2 >Emitted(25, 17) Source(21, 38) + SourceIndex(0) +1->Emitted(26, 9) Source(21, 37) + SourceIndex(0) +2 >Emitted(26, 17) Source(21, 38) + SourceIndex(0) --- >>> }()); 1 >^^^^ @@ -1554,10 +1556,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(26, 5) Source(21, 37) + SourceIndex(0) -2 >Emitted(26, 6) Source(21, 38) + SourceIndex(0) -3 >Emitted(26, 6) Source(21, 20) + SourceIndex(0) -4 >Emitted(26, 10) Source(21, 38) + SourceIndex(0) +1 >Emitted(27, 5) Source(21, 37) + SourceIndex(0) +2 >Emitted(27, 6) Source(21, 38) + SourceIndex(0) +3 >Emitted(27, 6) Source(21, 20) + SourceIndex(0) +4 >Emitted(27, 10) Source(21, 38) + SourceIndex(0) --- >>> normalN.C = C; 1->^^^^ @@ -1569,10 +1571,10 @@ sourceFile:../second/second_part1.ts 2 > C 3 > { } 4 > -1->Emitted(27, 5) Source(21, 33) + SourceIndex(0) -2 >Emitted(27, 14) Source(21, 34) + SourceIndex(0) -3 >Emitted(27, 18) Source(21, 38) + SourceIndex(0) -4 >Emitted(27, 19) Source(21, 38) + SourceIndex(0) +1->Emitted(28, 5) Source(21, 33) + SourceIndex(0) +2 >Emitted(28, 14) Source(21, 34) + SourceIndex(0) +3 >Emitted(28, 18) Source(21, 38) + SourceIndex(0) +4 >Emitted(28, 19) Source(21, 38) + SourceIndex(0) --- >>> /**@internal*/ function foo() { } 1->^^^^ @@ -1590,13 +1592,13 @@ sourceFile:../second/second_part1.ts 5 > foo 6 > () { 7 > } -1->Emitted(28, 5) Source(22, 5) + SourceIndex(0) -2 >Emitted(28, 19) Source(22, 19) + SourceIndex(0) -3 >Emitted(28, 20) Source(22, 20) + SourceIndex(0) -4 >Emitted(28, 29) Source(22, 36) + SourceIndex(0) -5 >Emitted(28, 32) Source(22, 39) + SourceIndex(0) -6 >Emitted(28, 37) Source(22, 43) + SourceIndex(0) -7 >Emitted(28, 38) Source(22, 44) + SourceIndex(0) +1->Emitted(29, 5) Source(22, 5) + SourceIndex(0) +2 >Emitted(29, 19) Source(22, 19) + SourceIndex(0) +3 >Emitted(29, 20) Source(22, 20) + SourceIndex(0) +4 >Emitted(29, 29) Source(22, 36) + SourceIndex(0) +5 >Emitted(29, 32) Source(22, 39) + SourceIndex(0) +6 >Emitted(29, 37) Source(22, 43) + SourceIndex(0) +7 >Emitted(29, 38) Source(22, 44) + SourceIndex(0) --- >>> normalN.foo = foo; 1 >^^^^ @@ -1608,10 +1610,10 @@ sourceFile:../second/second_part1.ts 2 > foo 3 > () {} 4 > -1 >Emitted(29, 5) Source(22, 36) + SourceIndex(0) -2 >Emitted(29, 16) Source(22, 39) + SourceIndex(0) -3 >Emitted(29, 22) Source(22, 44) + SourceIndex(0) -4 >Emitted(29, 23) Source(22, 44) + SourceIndex(0) +1 >Emitted(30, 5) Source(22, 36) + SourceIndex(0) +2 >Emitted(30, 16) Source(22, 39) + SourceIndex(0) +3 >Emitted(30, 22) Source(22, 44) + SourceIndex(0) +4 >Emitted(30, 23) Source(22, 44) + SourceIndex(0) --- >>> /**@internal*/ var someNamespace; 1->^^^^ @@ -1627,12 +1629,12 @@ sourceFile:../second/second_part1.ts 4 > export namespace 5 > someNamespace 6 > { export class C {} } -1->Emitted(30, 5) Source(23, 5) + SourceIndex(0) -2 >Emitted(30, 19) Source(23, 19) + SourceIndex(0) -3 >Emitted(30, 20) Source(23, 20) + SourceIndex(0) -4 >Emitted(30, 24) Source(23, 37) + SourceIndex(0) -5 >Emitted(30, 37) Source(23, 50) + SourceIndex(0) -6 >Emitted(30, 38) Source(23, 72) + SourceIndex(0) +1->Emitted(31, 5) Source(23, 5) + SourceIndex(0) +2 >Emitted(31, 19) Source(23, 19) + SourceIndex(0) +3 >Emitted(31, 20) Source(23, 20) + SourceIndex(0) +4 >Emitted(31, 24) Source(23, 37) + SourceIndex(0) +5 >Emitted(31, 37) Source(23, 50) + SourceIndex(0) +6 >Emitted(31, 38) Source(23, 72) + SourceIndex(0) --- >>> (function (someNamespace) { 1 >^^^^ @@ -1642,21 +1644,21 @@ sourceFile:../second/second_part1.ts 1 > 2 > export namespace 3 > someNamespace -1 >Emitted(31, 5) Source(23, 20) + SourceIndex(0) -2 >Emitted(31, 16) Source(23, 37) + SourceIndex(0) -3 >Emitted(31, 29) Source(23, 50) + SourceIndex(0) +1 >Emitted(32, 5) Source(23, 20) + SourceIndex(0) +2 >Emitted(32, 16) Source(23, 37) + SourceIndex(0) +3 >Emitted(32, 29) Source(23, 50) + SourceIndex(0) --- >>> var C = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(32, 9) Source(23, 53) + SourceIndex(0) +1->Emitted(33, 9) Source(23, 53) + SourceIndex(0) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(33, 13) Source(23, 53) + SourceIndex(0) +1->Emitted(34, 13) Source(23, 53) + SourceIndex(0) --- >>> } 1->^^^^^^^^^^^^ @@ -1664,16 +1666,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(34, 13) Source(23, 69) + SourceIndex(0) -2 >Emitted(34, 14) Source(23, 70) + SourceIndex(0) +1->Emitted(35, 13) Source(23, 69) + SourceIndex(0) +2 >Emitted(35, 14) Source(23, 70) + SourceIndex(0) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(35, 13) Source(23, 69) + SourceIndex(0) -2 >Emitted(35, 21) Source(23, 70) + SourceIndex(0) +1->Emitted(36, 13) Source(23, 69) + SourceIndex(0) +2 >Emitted(36, 21) Source(23, 70) + SourceIndex(0) --- >>> }()); 1 >^^^^^^^^ @@ -1685,10 +1687,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(36, 9) Source(23, 69) + SourceIndex(0) -2 >Emitted(36, 10) Source(23, 70) + SourceIndex(0) -3 >Emitted(36, 10) Source(23, 53) + SourceIndex(0) -4 >Emitted(36, 14) Source(23, 70) + SourceIndex(0) +1 >Emitted(37, 9) Source(23, 69) + SourceIndex(0) +2 >Emitted(37, 10) Source(23, 70) + SourceIndex(0) +3 >Emitted(37, 10) Source(23, 53) + SourceIndex(0) +4 >Emitted(37, 14) Source(23, 70) + SourceIndex(0) --- >>> someNamespace.C = C; 1->^^^^^^^^ @@ -1700,10 +1702,10 @@ sourceFile:../second/second_part1.ts 2 > C 3 > {} 4 > -1->Emitted(37, 9) Source(23, 66) + SourceIndex(0) -2 >Emitted(37, 24) Source(23, 67) + SourceIndex(0) -3 >Emitted(37, 28) Source(23, 70) + SourceIndex(0) -4 >Emitted(37, 29) Source(23, 70) + SourceIndex(0) +1->Emitted(38, 9) Source(23, 66) + SourceIndex(0) +2 >Emitted(38, 24) Source(23, 67) + SourceIndex(0) +3 >Emitted(38, 28) Source(23, 70) + SourceIndex(0) +4 >Emitted(38, 29) Source(23, 70) + SourceIndex(0) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^ @@ -1724,15 +1726,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(38, 5) Source(23, 71) + SourceIndex(0) -2 >Emitted(38, 6) Source(23, 72) + SourceIndex(0) -3 >Emitted(38, 8) Source(23, 37) + SourceIndex(0) -4 >Emitted(38, 21) Source(23, 50) + SourceIndex(0) -5 >Emitted(38, 24) Source(23, 37) + SourceIndex(0) -6 >Emitted(38, 45) Source(23, 50) + SourceIndex(0) -7 >Emitted(38, 50) Source(23, 37) + SourceIndex(0) -8 >Emitted(38, 71) Source(23, 50) + SourceIndex(0) -9 >Emitted(38, 79) Source(23, 72) + SourceIndex(0) +1->Emitted(39, 5) Source(23, 71) + SourceIndex(0) +2 >Emitted(39, 6) Source(23, 72) + SourceIndex(0) +3 >Emitted(39, 8) Source(23, 37) + SourceIndex(0) +4 >Emitted(39, 21) Source(23, 50) + SourceIndex(0) +5 >Emitted(39, 24) Source(23, 37) + SourceIndex(0) +6 >Emitted(39, 45) Source(23, 50) + SourceIndex(0) +7 >Emitted(39, 50) Source(23, 37) + SourceIndex(0) +8 >Emitted(39, 71) Source(23, 50) + SourceIndex(0) +9 >Emitted(39, 79) Source(23, 72) + SourceIndex(0) --- >>> /**@internal*/ var someOther; 1 >^^^^ @@ -1748,12 +1750,12 @@ sourceFile:../second/second_part1.ts 4 > export namespace 5 > someOther 6 > .something { export class someClass {} } -1 >Emitted(39, 5) Source(24, 5) + SourceIndex(0) -2 >Emitted(39, 19) Source(24, 19) + SourceIndex(0) -3 >Emitted(39, 20) Source(24, 20) + SourceIndex(0) -4 >Emitted(39, 24) Source(24, 37) + SourceIndex(0) -5 >Emitted(39, 33) Source(24, 46) + SourceIndex(0) -6 >Emitted(39, 34) Source(24, 86) + SourceIndex(0) +1 >Emitted(40, 5) Source(24, 5) + SourceIndex(0) +2 >Emitted(40, 19) Source(24, 19) + SourceIndex(0) +3 >Emitted(40, 20) Source(24, 20) + SourceIndex(0) +4 >Emitted(40, 24) Source(24, 37) + SourceIndex(0) +5 >Emitted(40, 33) Source(24, 46) + SourceIndex(0) +6 >Emitted(40, 34) Source(24, 86) + SourceIndex(0) --- >>> (function (someOther) { 1 >^^^^ @@ -1762,9 +1764,9 @@ sourceFile:../second/second_part1.ts 1 > 2 > export namespace 3 > someOther -1 >Emitted(40, 5) Source(24, 20) + SourceIndex(0) -2 >Emitted(40, 16) Source(24, 37) + SourceIndex(0) -3 >Emitted(40, 25) Source(24, 46) + SourceIndex(0) +1 >Emitted(41, 5) Source(24, 20) + SourceIndex(0) +2 >Emitted(41, 16) Source(24, 37) + SourceIndex(0) +3 >Emitted(41, 25) Source(24, 46) + SourceIndex(0) --- >>> var something; 1 >^^^^^^^^ @@ -1776,10 +1778,10 @@ sourceFile:../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(41, 9) Source(24, 47) + SourceIndex(0) -2 >Emitted(41, 13) Source(24, 47) + SourceIndex(0) -3 >Emitted(41, 22) Source(24, 56) + SourceIndex(0) -4 >Emitted(41, 23) Source(24, 86) + SourceIndex(0) +1 >Emitted(42, 9) Source(24, 47) + SourceIndex(0) +2 >Emitted(42, 13) Source(24, 47) + SourceIndex(0) +3 >Emitted(42, 22) Source(24, 56) + SourceIndex(0) +4 >Emitted(42, 23) Source(24, 86) + SourceIndex(0) --- >>> (function (something) { 1->^^^^^^^^ @@ -1789,21 +1791,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(42, 9) Source(24, 47) + SourceIndex(0) -2 >Emitted(42, 20) Source(24, 47) + SourceIndex(0) -3 >Emitted(42, 29) Source(24, 56) + SourceIndex(0) +1->Emitted(43, 9) Source(24, 47) + SourceIndex(0) +2 >Emitted(43, 20) Source(24, 47) + SourceIndex(0) +3 >Emitted(43, 29) Source(24, 56) + SourceIndex(0) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(43, 13) Source(24, 59) + SourceIndex(0) +1->Emitted(44, 13) Source(24, 59) + SourceIndex(0) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(44, 17) Source(24, 59) + SourceIndex(0) +1->Emitted(45, 17) Source(24, 59) + SourceIndex(0) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -1811,16 +1813,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(45, 17) Source(24, 83) + SourceIndex(0) -2 >Emitted(45, 18) Source(24, 84) + SourceIndex(0) +1->Emitted(46, 17) Source(24, 83) + SourceIndex(0) +2 >Emitted(46, 18) Source(24, 84) + SourceIndex(0) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(46, 17) Source(24, 83) + SourceIndex(0) -2 >Emitted(46, 33) Source(24, 84) + SourceIndex(0) +1->Emitted(47, 17) Source(24, 83) + SourceIndex(0) +2 >Emitted(47, 33) Source(24, 84) + SourceIndex(0) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -1832,10 +1834,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(47, 13) Source(24, 83) + SourceIndex(0) -2 >Emitted(47, 14) Source(24, 84) + SourceIndex(0) -3 >Emitted(47, 14) Source(24, 59) + SourceIndex(0) -4 >Emitted(47, 18) Source(24, 84) + SourceIndex(0) +1 >Emitted(48, 13) Source(24, 83) + SourceIndex(0) +2 >Emitted(48, 14) Source(24, 84) + SourceIndex(0) +3 >Emitted(48, 14) Source(24, 59) + SourceIndex(0) +4 >Emitted(48, 18) Source(24, 84) + SourceIndex(0) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -1847,10 +1849,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(48, 13) Source(24, 72) + SourceIndex(0) -2 >Emitted(48, 32) Source(24, 81) + SourceIndex(0) -3 >Emitted(48, 44) Source(24, 84) + SourceIndex(0) -4 >Emitted(48, 45) Source(24, 84) + SourceIndex(0) +1->Emitted(49, 13) Source(24, 72) + SourceIndex(0) +2 >Emitted(49, 32) Source(24, 81) + SourceIndex(0) +3 >Emitted(49, 44) Source(24, 84) + SourceIndex(0) +4 >Emitted(49, 45) Source(24, 84) + SourceIndex(0) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^ @@ -1871,15 +1873,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(49, 9) Source(24, 85) + SourceIndex(0) -2 >Emitted(49, 10) Source(24, 86) + SourceIndex(0) -3 >Emitted(49, 12) Source(24, 47) + SourceIndex(0) -4 >Emitted(49, 21) Source(24, 56) + SourceIndex(0) -5 >Emitted(49, 24) Source(24, 47) + SourceIndex(0) -6 >Emitted(49, 43) Source(24, 56) + SourceIndex(0) -7 >Emitted(49, 48) Source(24, 47) + SourceIndex(0) -8 >Emitted(49, 67) Source(24, 56) + SourceIndex(0) -9 >Emitted(49, 75) Source(24, 86) + SourceIndex(0) +1->Emitted(50, 9) Source(24, 85) + SourceIndex(0) +2 >Emitted(50, 10) Source(24, 86) + SourceIndex(0) +3 >Emitted(50, 12) Source(24, 47) + SourceIndex(0) +4 >Emitted(50, 21) Source(24, 56) + SourceIndex(0) +5 >Emitted(50, 24) Source(24, 47) + SourceIndex(0) +6 >Emitted(50, 43) Source(24, 56) + SourceIndex(0) +7 >Emitted(50, 48) Source(24, 47) + SourceIndex(0) +8 >Emitted(50, 67) Source(24, 56) + SourceIndex(0) +9 >Emitted(50, 75) Source(24, 86) + SourceIndex(0) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^ @@ -1900,15 +1902,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(50, 5) Source(24, 85) + SourceIndex(0) -2 >Emitted(50, 6) Source(24, 86) + SourceIndex(0) -3 >Emitted(50, 8) Source(24, 37) + SourceIndex(0) -4 >Emitted(50, 17) Source(24, 46) + SourceIndex(0) -5 >Emitted(50, 20) Source(24, 37) + SourceIndex(0) -6 >Emitted(50, 37) Source(24, 46) + SourceIndex(0) -7 >Emitted(50, 42) Source(24, 37) + SourceIndex(0) -8 >Emitted(50, 59) Source(24, 46) + SourceIndex(0) -9 >Emitted(50, 67) Source(24, 86) + SourceIndex(0) +1 >Emitted(51, 5) Source(24, 85) + SourceIndex(0) +2 >Emitted(51, 6) Source(24, 86) + SourceIndex(0) +3 >Emitted(51, 8) Source(24, 37) + SourceIndex(0) +4 >Emitted(51, 17) Source(24, 46) + SourceIndex(0) +5 >Emitted(51, 20) Source(24, 37) + SourceIndex(0) +6 >Emitted(51, 37) Source(24, 46) + SourceIndex(0) +7 >Emitted(51, 42) Source(24, 37) + SourceIndex(0) +8 >Emitted(51, 59) Source(24, 46) + SourceIndex(0) +9 >Emitted(51, 67) Source(24, 86) + SourceIndex(0) --- >>> /**@internal*/ normalN.someImport = someNamespace.C; 1 >^^^^ @@ -1930,15 +1932,15 @@ sourceFile:../second/second_part1.ts 7 > . 8 > C 9 > ; -1 >Emitted(51, 5) Source(25, 5) + SourceIndex(0) -2 >Emitted(51, 19) Source(25, 19) + SourceIndex(0) -3 >Emitted(51, 20) Source(25, 34) + SourceIndex(0) -4 >Emitted(51, 38) Source(25, 44) + SourceIndex(0) -5 >Emitted(51, 41) Source(25, 47) + SourceIndex(0) -6 >Emitted(51, 54) Source(25, 60) + SourceIndex(0) -7 >Emitted(51, 55) Source(25, 61) + SourceIndex(0) -8 >Emitted(51, 56) Source(25, 62) + SourceIndex(0) -9 >Emitted(51, 57) Source(25, 63) + SourceIndex(0) +1 >Emitted(52, 5) Source(25, 5) + SourceIndex(0) +2 >Emitted(52, 19) Source(25, 19) + SourceIndex(0) +3 >Emitted(52, 20) Source(25, 34) + SourceIndex(0) +4 >Emitted(52, 38) Source(25, 44) + SourceIndex(0) +5 >Emitted(52, 41) Source(25, 47) + SourceIndex(0) +6 >Emitted(52, 54) Source(25, 60) + SourceIndex(0) +7 >Emitted(52, 55) Source(25, 61) + SourceIndex(0) +8 >Emitted(52, 56) Source(25, 62) + SourceIndex(0) +9 >Emitted(52, 57) Source(25, 63) + SourceIndex(0) --- >>> /**@internal*/ normalN.internalConst = 10; 1 >^^^^ @@ -1957,13 +1959,13 @@ sourceFile:../second/second_part1.ts 5 > = 6 > 10 7 > ; -1 >Emitted(52, 5) Source(27, 5) + SourceIndex(0) -2 >Emitted(52, 19) Source(27, 19) + SourceIndex(0) -3 >Emitted(52, 20) Source(27, 33) + SourceIndex(0) -4 >Emitted(52, 41) Source(27, 46) + SourceIndex(0) -5 >Emitted(52, 44) Source(27, 49) + SourceIndex(0) -6 >Emitted(52, 46) Source(27, 51) + SourceIndex(0) -7 >Emitted(52, 47) Source(27, 52) + SourceIndex(0) +1 >Emitted(53, 5) Source(27, 5) + SourceIndex(0) +2 >Emitted(53, 19) Source(27, 19) + SourceIndex(0) +3 >Emitted(53, 20) Source(27, 33) + SourceIndex(0) +4 >Emitted(53, 41) Source(27, 46) + SourceIndex(0) +5 >Emitted(53, 44) Source(27, 49) + SourceIndex(0) +6 >Emitted(53, 46) Source(27, 51) + SourceIndex(0) +7 >Emitted(53, 47) Source(27, 52) + SourceIndex(0) --- >>> /**@internal*/ var internalEnum; 1 >^^^^ @@ -1977,11 +1979,11 @@ sourceFile:../second/second_part1.ts 3 > 4 > export enum 5 > internalEnum { a, b, c } -1 >Emitted(53, 5) Source(28, 5) + SourceIndex(0) -2 >Emitted(53, 19) Source(28, 19) + SourceIndex(0) -3 >Emitted(53, 20) Source(28, 20) + SourceIndex(0) -4 >Emitted(53, 24) Source(28, 32) + SourceIndex(0) -5 >Emitted(53, 36) Source(28, 56) + SourceIndex(0) +1 >Emitted(54, 5) Source(28, 5) + SourceIndex(0) +2 >Emitted(54, 19) Source(28, 19) + SourceIndex(0) +3 >Emitted(54, 20) Source(28, 20) + SourceIndex(0) +4 >Emitted(54, 24) Source(28, 32) + SourceIndex(0) +5 >Emitted(54, 36) Source(28, 56) + SourceIndex(0) --- >>> (function (internalEnum) { 1 >^^^^ @@ -1991,9 +1993,9 @@ sourceFile:../second/second_part1.ts 1 > 2 > export enum 3 > internalEnum -1 >Emitted(54, 5) Source(28, 20) + SourceIndex(0) -2 >Emitted(54, 16) Source(28, 32) + SourceIndex(0) -3 >Emitted(54, 28) Source(28, 44) + SourceIndex(0) +1 >Emitted(55, 5) Source(28, 20) + SourceIndex(0) +2 >Emitted(55, 16) Source(28, 32) + SourceIndex(0) +3 >Emitted(55, 28) Source(28, 44) + SourceIndex(0) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -2003,9 +2005,9 @@ sourceFile:../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(55, 9) Source(28, 47) + SourceIndex(0) -2 >Emitted(55, 50) Source(28, 48) + SourceIndex(0) -3 >Emitted(55, 51) Source(28, 48) + SourceIndex(0) +1->Emitted(56, 9) Source(28, 47) + SourceIndex(0) +2 >Emitted(56, 50) Source(28, 48) + SourceIndex(0) +3 >Emitted(56, 51) Source(28, 48) + SourceIndex(0) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -2015,9 +2017,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(56, 9) Source(28, 50) + SourceIndex(0) -2 >Emitted(56, 50) Source(28, 51) + SourceIndex(0) -3 >Emitted(56, 51) Source(28, 51) + SourceIndex(0) +1->Emitted(57, 9) Source(28, 50) + SourceIndex(0) +2 >Emitted(57, 50) Source(28, 51) + SourceIndex(0) +3 >Emitted(57, 51) Source(28, 51) + SourceIndex(0) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -2027,9 +2029,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(57, 9) Source(28, 53) + SourceIndex(0) -2 >Emitted(57, 50) Source(28, 54) + SourceIndex(0) -3 >Emitted(57, 51) Source(28, 54) + SourceIndex(0) +1->Emitted(58, 9) Source(28, 53) + SourceIndex(0) +2 >Emitted(58, 50) Source(28, 54) + SourceIndex(0) +3 >Emitted(58, 51) Source(28, 54) + SourceIndex(0) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^ @@ -2050,15 +2052,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(58, 5) Source(28, 55) + SourceIndex(0) -2 >Emitted(58, 6) Source(28, 56) + SourceIndex(0) -3 >Emitted(58, 8) Source(28, 32) + SourceIndex(0) -4 >Emitted(58, 20) Source(28, 44) + SourceIndex(0) -5 >Emitted(58, 23) Source(28, 32) + SourceIndex(0) -6 >Emitted(58, 43) Source(28, 44) + SourceIndex(0) -7 >Emitted(58, 48) Source(28, 32) + SourceIndex(0) -8 >Emitted(58, 68) Source(28, 44) + SourceIndex(0) -9 >Emitted(58, 76) Source(28, 56) + SourceIndex(0) +1->Emitted(59, 5) Source(28, 55) + SourceIndex(0) +2 >Emitted(59, 6) Source(28, 56) + SourceIndex(0) +3 >Emitted(59, 8) Source(28, 32) + SourceIndex(0) +4 >Emitted(59, 20) Source(28, 44) + SourceIndex(0) +5 >Emitted(59, 23) Source(28, 32) + SourceIndex(0) +6 >Emitted(59, 43) Source(28, 44) + SourceIndex(0) +7 >Emitted(59, 48) Source(28, 32) + SourceIndex(0) +8 >Emitted(59, 68) Source(28, 44) + SourceIndex(0) +9 >Emitted(59, 76) Source(28, 56) + SourceIndex(0) --- >>>})(normalN || (normalN = {})); 1 > @@ -2086,13 +2088,13 @@ sourceFile:../second/second_part1.ts > /**@internal*/ export const internalConst = 10; > /**@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(59, 1) Source(29, 1) + SourceIndex(0) -2 >Emitted(59, 2) Source(29, 2) + SourceIndex(0) -3 >Emitted(59, 4) Source(20, 11) + SourceIndex(0) -4 >Emitted(59, 11) Source(20, 18) + SourceIndex(0) -5 >Emitted(59, 16) Source(20, 11) + SourceIndex(0) -6 >Emitted(59, 23) Source(20, 18) + SourceIndex(0) -7 >Emitted(59, 31) Source(29, 2) + SourceIndex(0) +1 >Emitted(60, 1) Source(29, 1) + SourceIndex(0) +2 >Emitted(60, 2) Source(29, 2) + SourceIndex(0) +3 >Emitted(60, 4) Source(20, 11) + SourceIndex(0) +4 >Emitted(60, 11) Source(20, 18) + SourceIndex(0) +5 >Emitted(60, 16) Source(20, 11) + SourceIndex(0) +6 >Emitted(60, 23) Source(20, 18) + SourceIndex(0) +7 >Emitted(60, 31) Source(29, 2) + SourceIndex(0) --- >>>/**@internal*/ var internalC = /** @class */ (function () { 1-> @@ -2103,15 +2105,15 @@ sourceFile:../second/second_part1.ts > 2 >/**@internal*/ 3 > -1->Emitted(60, 1) Source(30, 1) + SourceIndex(0) -2 >Emitted(60, 15) Source(30, 15) + SourceIndex(0) -3 >Emitted(60, 16) Source(30, 16) + SourceIndex(0) +1->Emitted(61, 1) Source(30, 1) + SourceIndex(0) +2 >Emitted(61, 15) Source(30, 15) + SourceIndex(0) +3 >Emitted(61, 16) Source(30, 16) + SourceIndex(0) --- >>> function internalC() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(61, 5) Source(30, 16) + SourceIndex(0) +1->Emitted(62, 5) Source(30, 16) + SourceIndex(0) --- >>> } 1->^^^^ @@ -2119,16 +2121,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->class internalC { 2 > } -1->Emitted(62, 5) Source(30, 33) + SourceIndex(0) -2 >Emitted(62, 6) Source(30, 34) + SourceIndex(0) +1->Emitted(63, 5) Source(30, 33) + SourceIndex(0) +2 >Emitted(63, 6) Source(30, 34) + SourceIndex(0) --- >>> return internalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(63, 5) Source(30, 33) + SourceIndex(0) -2 >Emitted(63, 21) Source(30, 34) + SourceIndex(0) +1->Emitted(64, 5) Source(30, 33) + SourceIndex(0) +2 >Emitted(64, 21) Source(30, 34) + SourceIndex(0) --- >>>}()); 1 > @@ -2140,10 +2142,10 @@ sourceFile:../second/second_part1.ts 2 >} 3 > 4 > class internalC {} -1 >Emitted(64, 1) Source(30, 33) + SourceIndex(0) -2 >Emitted(64, 2) Source(30, 34) + SourceIndex(0) -3 >Emitted(64, 2) Source(30, 16) + SourceIndex(0) -4 >Emitted(64, 6) Source(30, 34) + SourceIndex(0) +1 >Emitted(65, 1) Source(30, 33) + SourceIndex(0) +2 >Emitted(65, 2) Source(30, 34) + SourceIndex(0) +3 >Emitted(65, 2) Source(30, 16) + SourceIndex(0) +4 >Emitted(65, 6) Source(30, 34) + SourceIndex(0) --- >>>/**@internal*/ function internalfoo() { } 1-> @@ -2161,13 +2163,13 @@ sourceFile:../second/second_part1.ts 5 > internalfoo 6 > () { 7 > } -1->Emitted(65, 1) Source(31, 1) + SourceIndex(0) -2 >Emitted(65, 15) Source(31, 15) + SourceIndex(0) -3 >Emitted(65, 16) Source(31, 16) + SourceIndex(0) -4 >Emitted(65, 25) Source(31, 25) + SourceIndex(0) -5 >Emitted(65, 36) Source(31, 36) + SourceIndex(0) -6 >Emitted(65, 41) Source(31, 40) + SourceIndex(0) -7 >Emitted(65, 42) Source(31, 41) + SourceIndex(0) +1->Emitted(66, 1) Source(31, 1) + SourceIndex(0) +2 >Emitted(66, 15) Source(31, 15) + SourceIndex(0) +3 >Emitted(66, 16) Source(31, 16) + SourceIndex(0) +4 >Emitted(66, 25) Source(31, 25) + SourceIndex(0) +5 >Emitted(66, 36) Source(31, 36) + SourceIndex(0) +6 >Emitted(66, 41) Source(31, 40) + SourceIndex(0) +7 >Emitted(66, 42) Source(31, 41) + SourceIndex(0) --- >>>/**@internal*/ var internalNamespace; 1 > @@ -2183,12 +2185,12 @@ sourceFile:../second/second_part1.ts 4 > namespace 5 > internalNamespace 6 > { export class someClass {} } -1 >Emitted(66, 1) Source(32, 1) + SourceIndex(0) -2 >Emitted(66, 15) Source(32, 15) + SourceIndex(0) -3 >Emitted(66, 16) Source(32, 16) + SourceIndex(0) -4 >Emitted(66, 20) Source(32, 26) + SourceIndex(0) -5 >Emitted(66, 37) Source(32, 43) + SourceIndex(0) -6 >Emitted(66, 38) Source(32, 73) + SourceIndex(0) +1 >Emitted(67, 1) Source(32, 1) + SourceIndex(0) +2 >Emitted(67, 15) Source(32, 15) + SourceIndex(0) +3 >Emitted(67, 16) Source(32, 16) + SourceIndex(0) +4 >Emitted(67, 20) Source(32, 26) + SourceIndex(0) +5 >Emitted(67, 37) Source(32, 43) + SourceIndex(0) +6 >Emitted(67, 38) Source(32, 73) + SourceIndex(0) --- >>>(function (internalNamespace) { 1 > @@ -2198,21 +2200,21 @@ sourceFile:../second/second_part1.ts 1 > 2 >namespace 3 > internalNamespace -1 >Emitted(67, 1) Source(32, 16) + SourceIndex(0) -2 >Emitted(67, 12) Source(32, 26) + SourceIndex(0) -3 >Emitted(67, 29) Source(32, 43) + SourceIndex(0) +1 >Emitted(68, 1) Source(32, 16) + SourceIndex(0) +2 >Emitted(68, 12) Source(32, 26) + SourceIndex(0) +3 >Emitted(68, 29) Source(32, 43) + SourceIndex(0) --- >>> var someClass = /** @class */ (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(68, 5) Source(32, 46) + SourceIndex(0) +1->Emitted(69, 5) Source(32, 46) + SourceIndex(0) --- >>> function someClass() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(69, 9) Source(32, 46) + SourceIndex(0) +1->Emitted(70, 9) Source(32, 46) + SourceIndex(0) --- >>> } 1->^^^^^^^^ @@ -2220,16 +2222,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(70, 9) Source(32, 70) + SourceIndex(0) -2 >Emitted(70, 10) Source(32, 71) + SourceIndex(0) +1->Emitted(71, 9) Source(32, 70) + SourceIndex(0) +2 >Emitted(71, 10) Source(32, 71) + SourceIndex(0) --- >>> return someClass; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(71, 9) Source(32, 70) + SourceIndex(0) -2 >Emitted(71, 25) Source(32, 71) + SourceIndex(0) +1->Emitted(72, 9) Source(32, 70) + SourceIndex(0) +2 >Emitted(72, 25) Source(32, 71) + SourceIndex(0) --- >>> }()); 1 >^^^^ @@ -2241,10 +2243,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(72, 5) Source(32, 70) + SourceIndex(0) -2 >Emitted(72, 6) Source(32, 71) + SourceIndex(0) -3 >Emitted(72, 6) Source(32, 46) + SourceIndex(0) -4 >Emitted(72, 10) Source(32, 71) + SourceIndex(0) +1 >Emitted(73, 5) Source(32, 70) + SourceIndex(0) +2 >Emitted(73, 6) Source(32, 71) + SourceIndex(0) +3 >Emitted(73, 6) Source(32, 46) + SourceIndex(0) +4 >Emitted(73, 10) Source(32, 71) + SourceIndex(0) --- >>> internalNamespace.someClass = someClass; 1->^^^^ @@ -2256,10 +2258,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(73, 5) Source(32, 59) + SourceIndex(0) -2 >Emitted(73, 32) Source(32, 68) + SourceIndex(0) -3 >Emitted(73, 44) Source(32, 71) + SourceIndex(0) -4 >Emitted(73, 45) Source(32, 71) + SourceIndex(0) +1->Emitted(74, 5) Source(32, 59) + SourceIndex(0) +2 >Emitted(74, 32) Source(32, 68) + SourceIndex(0) +3 >Emitted(74, 44) Source(32, 71) + SourceIndex(0) +4 >Emitted(74, 45) Source(32, 71) + SourceIndex(0) --- >>>})(internalNamespace || (internalNamespace = {})); 1-> @@ -2276,13 +2278,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalNamespace 7 > { export class someClass {} } -1->Emitted(74, 1) Source(32, 72) + SourceIndex(0) -2 >Emitted(74, 2) Source(32, 73) + SourceIndex(0) -3 >Emitted(74, 4) Source(32, 26) + SourceIndex(0) -4 >Emitted(74, 21) Source(32, 43) + SourceIndex(0) -5 >Emitted(74, 26) Source(32, 26) + SourceIndex(0) -6 >Emitted(74, 43) Source(32, 43) + SourceIndex(0) -7 >Emitted(74, 51) Source(32, 73) + SourceIndex(0) +1->Emitted(75, 1) Source(32, 72) + SourceIndex(0) +2 >Emitted(75, 2) Source(32, 73) + SourceIndex(0) +3 >Emitted(75, 4) Source(32, 26) + SourceIndex(0) +4 >Emitted(75, 21) Source(32, 43) + SourceIndex(0) +5 >Emitted(75, 26) Source(32, 26) + SourceIndex(0) +6 >Emitted(75, 43) Source(32, 43) + SourceIndex(0) +7 >Emitted(75, 51) Source(32, 73) + SourceIndex(0) --- >>>/**@internal*/ var internalOther; 1 > @@ -2298,12 +2300,12 @@ sourceFile:../second/second_part1.ts 4 > namespace 5 > internalOther 6 > .something { export class someClass {} } -1 >Emitted(75, 1) Source(33, 1) + SourceIndex(0) -2 >Emitted(75, 15) Source(33, 15) + SourceIndex(0) -3 >Emitted(75, 16) Source(33, 16) + SourceIndex(0) -4 >Emitted(75, 20) Source(33, 26) + SourceIndex(0) -5 >Emitted(75, 33) Source(33, 39) + SourceIndex(0) -6 >Emitted(75, 34) Source(33, 79) + SourceIndex(0) +1 >Emitted(76, 1) Source(33, 1) + SourceIndex(0) +2 >Emitted(76, 15) Source(33, 15) + SourceIndex(0) +3 >Emitted(76, 16) Source(33, 16) + SourceIndex(0) +4 >Emitted(76, 20) Source(33, 26) + SourceIndex(0) +5 >Emitted(76, 33) Source(33, 39) + SourceIndex(0) +6 >Emitted(76, 34) Source(33, 79) + SourceIndex(0) --- >>>(function (internalOther) { 1 > @@ -2312,9 +2314,9 @@ sourceFile:../second/second_part1.ts 1 > 2 >namespace 3 > internalOther -1 >Emitted(76, 1) Source(33, 16) + SourceIndex(0) -2 >Emitted(76, 12) Source(33, 26) + SourceIndex(0) -3 >Emitted(76, 25) Source(33, 39) + SourceIndex(0) +1 >Emitted(77, 1) Source(33, 16) + SourceIndex(0) +2 >Emitted(77, 12) Source(33, 26) + SourceIndex(0) +3 >Emitted(77, 25) Source(33, 39) + SourceIndex(0) --- >>> var something; 1 >^^^^ @@ -2326,10 +2328,10 @@ sourceFile:../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(77, 5) Source(33, 40) + SourceIndex(0) -2 >Emitted(77, 9) Source(33, 40) + SourceIndex(0) -3 >Emitted(77, 18) Source(33, 49) + SourceIndex(0) -4 >Emitted(77, 19) Source(33, 79) + SourceIndex(0) +1 >Emitted(78, 5) Source(33, 40) + SourceIndex(0) +2 >Emitted(78, 9) Source(33, 40) + SourceIndex(0) +3 >Emitted(78, 18) Source(33, 49) + SourceIndex(0) +4 >Emitted(78, 19) Source(33, 79) + SourceIndex(0) --- >>> (function (something) { 1->^^^^ @@ -2339,21 +2341,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(78, 5) Source(33, 40) + SourceIndex(0) -2 >Emitted(78, 16) Source(33, 40) + SourceIndex(0) -3 >Emitted(78, 25) Source(33, 49) + SourceIndex(0) +1->Emitted(79, 5) Source(33, 40) + SourceIndex(0) +2 >Emitted(79, 16) Source(33, 40) + SourceIndex(0) +3 >Emitted(79, 25) Source(33, 49) + SourceIndex(0) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(79, 9) Source(33, 52) + SourceIndex(0) +1->Emitted(80, 9) Source(33, 52) + SourceIndex(0) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(80, 13) Source(33, 52) + SourceIndex(0) +1->Emitted(81, 13) Source(33, 52) + SourceIndex(0) --- >>> } 1->^^^^^^^^^^^^ @@ -2361,16 +2363,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(81, 13) Source(33, 76) + SourceIndex(0) -2 >Emitted(81, 14) Source(33, 77) + SourceIndex(0) +1->Emitted(82, 13) Source(33, 76) + SourceIndex(0) +2 >Emitted(82, 14) Source(33, 77) + SourceIndex(0) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(82, 13) Source(33, 76) + SourceIndex(0) -2 >Emitted(82, 29) Source(33, 77) + SourceIndex(0) +1->Emitted(83, 13) Source(33, 76) + SourceIndex(0) +2 >Emitted(83, 29) Source(33, 77) + SourceIndex(0) --- >>> }()); 1 >^^^^^^^^ @@ -2382,10 +2384,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(83, 9) Source(33, 76) + SourceIndex(0) -2 >Emitted(83, 10) Source(33, 77) + SourceIndex(0) -3 >Emitted(83, 10) Source(33, 52) + SourceIndex(0) -4 >Emitted(83, 14) Source(33, 77) + SourceIndex(0) +1 >Emitted(84, 9) Source(33, 76) + SourceIndex(0) +2 >Emitted(84, 10) Source(33, 77) + SourceIndex(0) +3 >Emitted(84, 10) Source(33, 52) + SourceIndex(0) +4 >Emitted(84, 14) Source(33, 77) + SourceIndex(0) --- >>> something.someClass = someClass; 1->^^^^^^^^ @@ -2397,10 +2399,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(84, 9) Source(33, 65) + SourceIndex(0) -2 >Emitted(84, 28) Source(33, 74) + SourceIndex(0) -3 >Emitted(84, 40) Source(33, 77) + SourceIndex(0) -4 >Emitted(84, 41) Source(33, 77) + SourceIndex(0) +1->Emitted(85, 9) Source(33, 65) + SourceIndex(0) +2 >Emitted(85, 28) Source(33, 74) + SourceIndex(0) +3 >Emitted(85, 40) Source(33, 77) + SourceIndex(0) +4 >Emitted(85, 41) Source(33, 77) + SourceIndex(0) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^ @@ -2421,15 +2423,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(85, 5) Source(33, 78) + SourceIndex(0) -2 >Emitted(85, 6) Source(33, 79) + SourceIndex(0) -3 >Emitted(85, 8) Source(33, 40) + SourceIndex(0) -4 >Emitted(85, 17) Source(33, 49) + SourceIndex(0) -5 >Emitted(85, 20) Source(33, 40) + SourceIndex(0) -6 >Emitted(85, 43) Source(33, 49) + SourceIndex(0) -7 >Emitted(85, 48) Source(33, 40) + SourceIndex(0) -8 >Emitted(85, 71) Source(33, 49) + SourceIndex(0) -9 >Emitted(85, 79) Source(33, 79) + SourceIndex(0) +1->Emitted(86, 5) Source(33, 78) + SourceIndex(0) +2 >Emitted(86, 6) Source(33, 79) + SourceIndex(0) +3 >Emitted(86, 8) Source(33, 40) + SourceIndex(0) +4 >Emitted(86, 17) Source(33, 49) + SourceIndex(0) +5 >Emitted(86, 20) Source(33, 40) + SourceIndex(0) +6 >Emitted(86, 43) Source(33, 49) + SourceIndex(0) +7 >Emitted(86, 48) Source(33, 40) + SourceIndex(0) +8 >Emitted(86, 71) Source(33, 49) + SourceIndex(0) +9 >Emitted(86, 79) Source(33, 79) + SourceIndex(0) --- >>>})(internalOther || (internalOther = {})); 1 > @@ -2447,13 +2449,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalOther 7 > .something { export class someClass {} } -1 >Emitted(86, 1) Source(33, 78) + SourceIndex(0) -2 >Emitted(86, 2) Source(33, 79) + SourceIndex(0) -3 >Emitted(86, 4) Source(33, 26) + SourceIndex(0) -4 >Emitted(86, 17) Source(33, 39) + SourceIndex(0) -5 >Emitted(86, 22) Source(33, 26) + SourceIndex(0) -6 >Emitted(86, 35) Source(33, 39) + SourceIndex(0) -7 >Emitted(86, 43) Source(33, 79) + SourceIndex(0) +1 >Emitted(87, 1) Source(33, 78) + SourceIndex(0) +2 >Emitted(87, 2) Source(33, 79) + SourceIndex(0) +3 >Emitted(87, 4) Source(33, 26) + SourceIndex(0) +4 >Emitted(87, 17) Source(33, 39) + SourceIndex(0) +5 >Emitted(87, 22) Source(33, 26) + SourceIndex(0) +6 >Emitted(87, 35) Source(33, 39) + SourceIndex(0) +7 >Emitted(87, 43) Source(33, 79) + SourceIndex(0) --- >>>/**@internal*/ var internalImport = internalNamespace.someClass; 1-> @@ -2477,16 +2479,16 @@ sourceFile:../second/second_part1.ts 8 > . 9 > someClass 10> ; -1->Emitted(87, 1) Source(34, 1) + SourceIndex(0) -2 >Emitted(87, 15) Source(34, 15) + SourceIndex(0) -3 >Emitted(87, 16) Source(34, 16) + SourceIndex(0) -4 >Emitted(87, 20) Source(34, 23) + SourceIndex(0) -5 >Emitted(87, 34) Source(34, 37) + SourceIndex(0) -6 >Emitted(87, 37) Source(34, 40) + SourceIndex(0) -7 >Emitted(87, 54) Source(34, 57) + SourceIndex(0) -8 >Emitted(87, 55) Source(34, 58) + SourceIndex(0) -9 >Emitted(87, 64) Source(34, 67) + SourceIndex(0) -10>Emitted(87, 65) Source(34, 68) + SourceIndex(0) +1->Emitted(88, 1) Source(34, 1) + SourceIndex(0) +2 >Emitted(88, 15) Source(34, 15) + SourceIndex(0) +3 >Emitted(88, 16) Source(34, 16) + SourceIndex(0) +4 >Emitted(88, 20) Source(34, 23) + SourceIndex(0) +5 >Emitted(88, 34) Source(34, 37) + SourceIndex(0) +6 >Emitted(88, 37) Source(34, 40) + SourceIndex(0) +7 >Emitted(88, 54) Source(34, 57) + SourceIndex(0) +8 >Emitted(88, 55) Source(34, 58) + SourceIndex(0) +9 >Emitted(88, 64) Source(34, 67) + SourceIndex(0) +10>Emitted(88, 65) Source(34, 68) + SourceIndex(0) --- >>>/**@internal*/ var internalConst = 10; 1 > @@ -2507,14 +2509,14 @@ sourceFile:../second/second_part1.ts 6 > = 7 > 10 8 > ; -1 >Emitted(88, 1) Source(36, 1) + SourceIndex(0) -2 >Emitted(88, 15) Source(36, 15) + SourceIndex(0) -3 >Emitted(88, 16) Source(36, 16) + SourceIndex(0) -4 >Emitted(88, 20) Source(36, 22) + SourceIndex(0) -5 >Emitted(88, 33) Source(36, 35) + SourceIndex(0) -6 >Emitted(88, 36) Source(36, 38) + SourceIndex(0) -7 >Emitted(88, 38) Source(36, 40) + SourceIndex(0) -8 >Emitted(88, 39) Source(36, 41) + SourceIndex(0) +1 >Emitted(89, 1) Source(36, 1) + SourceIndex(0) +2 >Emitted(89, 15) Source(36, 15) + SourceIndex(0) +3 >Emitted(89, 16) Source(36, 16) + SourceIndex(0) +4 >Emitted(89, 20) Source(36, 22) + SourceIndex(0) +5 >Emitted(89, 33) Source(36, 35) + SourceIndex(0) +6 >Emitted(89, 36) Source(36, 38) + SourceIndex(0) +7 >Emitted(89, 38) Source(36, 40) + SourceIndex(0) +8 >Emitted(89, 39) Source(36, 41) + SourceIndex(0) --- >>>/**@internal*/ var internalEnum; 1 > @@ -2528,11 +2530,11 @@ sourceFile:../second/second_part1.ts 3 > 4 > enum 5 > internalEnum { a, b, c } -1 >Emitted(89, 1) Source(37, 1) + SourceIndex(0) -2 >Emitted(89, 15) Source(37, 15) + SourceIndex(0) -3 >Emitted(89, 16) Source(37, 16) + SourceIndex(0) -4 >Emitted(89, 20) Source(37, 21) + SourceIndex(0) -5 >Emitted(89, 32) Source(37, 45) + SourceIndex(0) +1 >Emitted(90, 1) Source(37, 1) + SourceIndex(0) +2 >Emitted(90, 15) Source(37, 15) + SourceIndex(0) +3 >Emitted(90, 16) Source(37, 16) + SourceIndex(0) +4 >Emitted(90, 20) Source(37, 21) + SourceIndex(0) +5 >Emitted(90, 32) Source(37, 45) + SourceIndex(0) --- >>>(function (internalEnum) { 1 > @@ -2542,9 +2544,9 @@ sourceFile:../second/second_part1.ts 1 > 2 >enum 3 > internalEnum -1 >Emitted(90, 1) Source(37, 16) + SourceIndex(0) -2 >Emitted(90, 12) Source(37, 21) + SourceIndex(0) -3 >Emitted(90, 24) Source(37, 33) + SourceIndex(0) +1 >Emitted(91, 1) Source(37, 16) + SourceIndex(0) +2 >Emitted(91, 12) Source(37, 21) + SourceIndex(0) +3 >Emitted(91, 24) Source(37, 33) + SourceIndex(0) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^ @@ -2554,9 +2556,9 @@ sourceFile:../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(91, 5) Source(37, 36) + SourceIndex(0) -2 >Emitted(91, 46) Source(37, 37) + SourceIndex(0) -3 >Emitted(91, 47) Source(37, 37) + SourceIndex(0) +1->Emitted(92, 5) Source(37, 36) + SourceIndex(0) +2 >Emitted(92, 46) Source(37, 37) + SourceIndex(0) +3 >Emitted(92, 47) Source(37, 37) + SourceIndex(0) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^ @@ -2566,9 +2568,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(92, 5) Source(37, 39) + SourceIndex(0) -2 >Emitted(92, 46) Source(37, 40) + SourceIndex(0) -3 >Emitted(92, 47) Source(37, 40) + SourceIndex(0) +1->Emitted(93, 5) Source(37, 39) + SourceIndex(0) +2 >Emitted(93, 46) Source(37, 40) + SourceIndex(0) +3 >Emitted(93, 47) Source(37, 40) + SourceIndex(0) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^ @@ -2577,9 +2579,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(93, 5) Source(37, 42) + SourceIndex(0) -2 >Emitted(93, 46) Source(37, 43) + SourceIndex(0) -3 >Emitted(93, 47) Source(37, 43) + SourceIndex(0) +1->Emitted(94, 5) Source(37, 42) + SourceIndex(0) +2 >Emitted(94, 46) Source(37, 43) + SourceIndex(0) +3 >Emitted(94, 47) Source(37, 43) + SourceIndex(0) --- >>>})(internalEnum || (internalEnum = {})); 1 > @@ -2596,13 +2598,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalEnum 7 > { a, b, c } -1 >Emitted(94, 1) Source(37, 44) + SourceIndex(0) -2 >Emitted(94, 2) Source(37, 45) + SourceIndex(0) -3 >Emitted(94, 4) Source(37, 21) + SourceIndex(0) -4 >Emitted(94, 16) Source(37, 33) + SourceIndex(0) -5 >Emitted(94, 21) Source(37, 21) + SourceIndex(0) -6 >Emitted(94, 33) Source(37, 33) + SourceIndex(0) -7 >Emitted(94, 41) Source(37, 45) + SourceIndex(0) +1 >Emitted(95, 1) Source(37, 44) + SourceIndex(0) +2 >Emitted(95, 2) Source(37, 45) + SourceIndex(0) +3 >Emitted(95, 4) Source(37, 21) + SourceIndex(0) +4 >Emitted(95, 16) Source(37, 33) + SourceIndex(0) +5 >Emitted(95, 21) Source(37, 21) + SourceIndex(0) +6 >Emitted(95, 33) Source(37, 33) + SourceIndex(0) +7 >Emitted(95, 41) Source(37, 45) + SourceIndex(0) --- ------------------------------------------------------------------- emittedFile:/src/2/second-output.js @@ -2612,13 +2614,13 @@ sourceFile:../second/second_part2.ts 1 > 2 >^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(95, 1) Source(1, 1) + SourceIndex(1) +1 >Emitted(96, 1) Source(1, 1) + SourceIndex(1) --- >>> function C() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(96, 5) Source(1, 1) + SourceIndex(1) +1->Emitted(97, 5) Source(1, 1) + SourceIndex(1) --- >>> } 1->^^^^ @@ -2630,8 +2632,8 @@ sourceFile:../second/second_part2.ts > } > 2 > } -1->Emitted(97, 5) Source(5, 1) + SourceIndex(1) -2 >Emitted(97, 6) Source(5, 2) + SourceIndex(1) +1->Emitted(98, 5) Source(5, 1) + SourceIndex(1) +2 >Emitted(98, 6) Source(5, 2) + SourceIndex(1) --- >>> C.prototype.doSomething = function () { 1->^^^^ @@ -2641,9 +2643,9 @@ sourceFile:../second/second_part2.ts 1-> 2 > doSomething 3 > -1->Emitted(98, 5) Source(2, 5) + SourceIndex(1) -2 >Emitted(98, 28) Source(2, 16) + SourceIndex(1) -3 >Emitted(98, 31) Source(2, 5) + SourceIndex(1) +1->Emitted(99, 5) Source(2, 5) + SourceIndex(1) +2 >Emitted(99, 28) Source(2, 16) + SourceIndex(1) +3 >Emitted(99, 31) Source(2, 5) + SourceIndex(1) --- >>> console.log("something got done"); 1->^^^^^^^^ @@ -2663,14 +2665,14 @@ sourceFile:../second/second_part2.ts 6 > "something got done" 7 > ) 8 > ; -1->Emitted(99, 9) Source(3, 9) + SourceIndex(1) -2 >Emitted(99, 16) Source(3, 16) + SourceIndex(1) -3 >Emitted(99, 17) Source(3, 17) + SourceIndex(1) -4 >Emitted(99, 20) Source(3, 20) + SourceIndex(1) -5 >Emitted(99, 21) Source(3, 21) + SourceIndex(1) -6 >Emitted(99, 41) Source(3, 41) + SourceIndex(1) -7 >Emitted(99, 42) Source(3, 42) + SourceIndex(1) -8 >Emitted(99, 43) Source(3, 43) + SourceIndex(1) +1->Emitted(100, 9) Source(3, 9) + SourceIndex(1) +2 >Emitted(100, 16) Source(3, 16) + SourceIndex(1) +3 >Emitted(100, 17) Source(3, 17) + SourceIndex(1) +4 >Emitted(100, 20) Source(3, 20) + SourceIndex(1) +5 >Emitted(100, 21) Source(3, 21) + SourceIndex(1) +6 >Emitted(100, 41) Source(3, 41) + SourceIndex(1) +7 >Emitted(100, 42) Source(3, 42) + SourceIndex(1) +8 >Emitted(100, 43) Source(3, 43) + SourceIndex(1) --- >>> }; 1 >^^^^ @@ -2679,8 +2681,8 @@ sourceFile:../second/second_part2.ts 1 > > 2 > } -1 >Emitted(100, 5) Source(4, 5) + SourceIndex(1) -2 >Emitted(100, 6) Source(4, 6) + SourceIndex(1) +1 >Emitted(101, 5) Source(4, 5) + SourceIndex(1) +2 >Emitted(101, 6) Source(4, 6) + SourceIndex(1) --- >>> return C; 1->^^^^ @@ -2688,8 +2690,8 @@ sourceFile:../second/second_part2.ts 1-> > 2 > } -1->Emitted(101, 5) Source(5, 1) + SourceIndex(1) -2 >Emitted(101, 13) Source(5, 2) + SourceIndex(1) +1->Emitted(102, 5) Source(5, 1) + SourceIndex(1) +2 >Emitted(102, 13) Source(5, 2) + SourceIndex(1) --- >>>}()); 1 > @@ -2705,10 +2707,10 @@ sourceFile:../second/second_part2.ts > console.log("something got done"); > } > } -1 >Emitted(102, 1) Source(5, 1) + SourceIndex(1) -2 >Emitted(102, 2) Source(5, 2) + SourceIndex(1) -3 >Emitted(102, 2) Source(1, 1) + SourceIndex(1) -4 >Emitted(102, 6) Source(5, 2) + SourceIndex(1) +1 >Emitted(103, 1) Source(5, 1) + SourceIndex(1) +2 >Emitted(103, 2) Source(5, 2) + SourceIndex(1) +3 >Emitted(103, 2) Source(1, 1) + SourceIndex(1) +4 >Emitted(103, 6) Source(5, 2) + SourceIndex(1) --- >>>//# sourceMappingURL=second-output.js.map @@ -2724,7 +2726,7 @@ sourceFile:../second/second_part2.ts "sections": [ { "pos": 0, - "end": 3435, + "end": 3483, "kind": "text" } ] @@ -2776,7 +2778,7 @@ sourceFile:../second/second_part2.ts ====================================================================== File:: /src/2/second-output.js ---------------------------------------------------------------------- -text: (0-3435) +text: (0-3483) var N; (function (N) { function f() { @@ -2787,8 +2789,9 @@ var N; var normalC = /** @class */ (function () { /**@internal*/ function normalC() { } - /**@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /**@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /**@internal*/ get: function () { return 10; }, /**@internal*/ set: function (val) { }, enumerable: false, @@ -3632,8 +3635,9 @@ var N; var normalC = /** @class */ (function () { /**@internal*/ function normalC() { } - /**@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /**@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /**@internal*/ get: function () { return 10; }, /**@internal*/ set: function (val) { }, enumerable: false, @@ -3729,7 +3733,7 @@ c.doSomething(); //# sourceMappingURL=third-output.js.map //// [/src/third/thirdjs/output/third-output.js.map] -{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"AAIA,IAAM,CAAC,GAAG,cAAc,CAAC;AAMzB,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;ACVf,OAAO,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC;ACAjB,SAAS,CAAC;IACN,OAAO,gBAAgB,CAAC;AAC5B,CAAC;ACED,IAAU,CAAC,CAMV;AAND,WAAU,CAAC;IACP,SAAS,CAAC;QACN,OAAO,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;IAC3B,CAAC;IAED,CAAC,EAAE,CAAC;AACR,CAAC,EANS,CAAC,KAAD,CAAC,QAMV;AAED;IACI,cAAc,CAAC;IAAgB,CAAC;IAEhC,cAAc,CAAC,wBAAM,GAAN,cAAW,CAAC;IACZ,sBAAI,sBAAC;QAApB,cAAc,MAAC,cAAU,OAAO,EAAE,CAAC,CAAC,CAAC;QACrC,cAAc,MAAC,UAAM,GAAW,IAAI,CAAC;;;OADA;IAEzC,cAAC;AAAD,CAAC,AAND,IAMC;AACD,IAAU,OAAO,CAShB;AATD,WAAU,OAAO;IACb,cAAc,CAAC;QAAA;QAAiB,CAAC;QAAD,QAAC;IAAD,CAAC,AAAlB,IAAkB;IAAL,SAAC,IAAI,CAAA;IACjC,cAAc,CAAC,SAAgB,GAAG,KAAI,CAAC;IAAR,WAAG,MAAK,CAAA;IACvC,cAAc,CAAC,IAAiB,aAAa,CAAsB;IAApD,WAAiB,aAAa;QAAG;YAAA;YAAgB,CAAC;YAAD,QAAC;QAAD,CAAC,AAAjB,IAAiB;QAAJ,eAAC,IAAG,CAAA;IAAC,CAAC,EAAnC,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAAsB;IACnE,cAAc,CAAC,IAAiB,SAAS,CAAwC;IAAlE,WAAiB,SAAS;QAAC,IAAA,SAAS,CAA8B;QAAvC,WAAA,SAAS;YAAG;gBAAA;gBAAwB,CAAC;gBAAD,gBAAC;YAAD,CAAC,AAAzB,IAAyB;YAAZ,mBAAS,YAAG,CAAA;QAAC,CAAC,EAAvC,SAAS,GAAT,mBAAS,KAAT,mBAAS,QAA8B;IAAD,CAAC,EAAjD,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAAwC;IACjF,cAAc,CAAe,kBAAU,GAAG,aAAa,CAAC,CAAC,CAAC;IAE1D,cAAc,CAAc,qBAAa,GAAG,EAAE,CAAC;IAC/C,cAAc,CAAC,IAAY,YAAwB;IAApC,WAAY,YAAY;QAAG,yCAAC,CAAA;QAAE,yCAAC,CAAA;QAAE,yCAAC,CAAA;IAAC,CAAC,EAAxB,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAAY;AACvD,CAAC,EATS,OAAO,KAAP,OAAO,QAShB;AACD,cAAc,CAAC;IAAA;IAAiB,CAAC;IAAD,gBAAC;AAAD,CAAC,AAAlB,IAAkB;AACjC,cAAc,CAAC,SAAS,WAAW,KAAI,CAAC;AACxC,cAAc,CAAC,IAAU,iBAAiB,CAA8B;AAAzD,WAAU,iBAAiB;IAAG;QAAA;QAAwB,CAAC;QAAD,gBAAC;IAAD,CAAC,AAAzB,IAAyB;IAAZ,2BAAS,YAAG,CAAA;AAAC,CAAC,EAA/C,iBAAiB,KAAjB,iBAAiB,QAA8B;AACxE,cAAc,CAAC,IAAU,aAAa,CAAwC;AAA/D,WAAU,aAAa;IAAC,IAAA,SAAS,CAA8B;IAAvC,WAAA,SAAS;QAAG;YAAA;YAAwB,CAAC;YAAD,gBAAC;QAAD,CAAC,AAAzB,IAAyB;QAAZ,mBAAS,YAAG,CAAA;IAAC,CAAC,EAAvC,SAAS,GAAT,uBAAS,KAAT,uBAAS,QAA8B;AAAD,CAAC,EAArD,aAAa,KAAb,aAAa,QAAwC;AAC9E,cAAc,CAAC,IAAO,cAAc,GAAG,iBAAiB,CAAC,SAAS,CAAC;AAEnE,cAAc,CAAC,IAAM,aAAa,GAAG,EAAE,CAAC;AACxC,cAAc,CAAC,IAAK,YAAwB;AAA7B,WAAK,YAAY;IAAG,yCAAC,CAAA;IAAE,yCAAC,CAAA;IAAE,yCAAC,CAAA;AAAC,CAAC,EAAxB,YAAY,KAAZ,YAAY,QAAY;ACpC5C;IAAA;IAIA,CAAC;IAHG,uBAAW,GAAX;QACI,OAAO,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAC;IACtC,CAAC;IACL,QAAC;AAAD,CAAC,AAJD,IAIC;ACJD,IAAI,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;AAChB,CAAC,CAAC,WAAW,EAAE,CAAC"} +{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} //// [/src/third/thirdjs/output/third-output.js.map.baseline.txt] =================================================================== @@ -4035,13 +4039,14 @@ sourceFile:../../../second/second_part1.ts >>> } 1 >^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 >constructor() { 2 > } 1 >Emitted(16, 5) Source(14, 36) + SourceIndex(3) 2 >Emitted(16, 6) Source(14, 37) + SourceIndex(3) --- ->>> /**@internal*/ normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> /**@internal*/ normalC_prototype.method = function () { }; 1->^^^^ 2 > ^^^^^^^^^^^^^^ 3 > ^ @@ -4058,15 +4063,15 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > method() { 7 > } -1->Emitted(17, 5) Source(16, 5) + SourceIndex(3) -2 >Emitted(17, 19) Source(16, 19) + SourceIndex(3) -3 >Emitted(17, 20) Source(16, 20) + SourceIndex(3) -4 >Emitted(17, 44) Source(16, 26) + SourceIndex(3) -5 >Emitted(17, 47) Source(16, 20) + SourceIndex(3) -6 >Emitted(17, 61) Source(16, 31) + SourceIndex(3) -7 >Emitted(17, 62) Source(16, 32) + SourceIndex(3) ---- ->>> Object.defineProperty(normalC.prototype, "c", { +1->Emitted(18, 5) Source(16, 5) + SourceIndex(3) +2 >Emitted(18, 19) Source(16, 19) + SourceIndex(3) +3 >Emitted(18, 20) Source(16, 20) + SourceIndex(3) +4 >Emitted(18, 44) Source(16, 26) + SourceIndex(3) +5 >Emitted(18, 47) Source(16, 20) + SourceIndex(3) +6 >Emitted(18, 61) Source(16, 31) + SourceIndex(3) +7 >Emitted(18, 62) Source(16, 32) + SourceIndex(3) +--- +>>> Object.defineProperty(normalC_prototype, "c", { 1 >^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -4075,9 +4080,9 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ 2 > get 3 > c -1 >Emitted(18, 5) Source(17, 20) + SourceIndex(3) -2 >Emitted(18, 27) Source(17, 24) + SourceIndex(3) -3 >Emitted(18, 49) Source(17, 25) + SourceIndex(3) +1 >Emitted(19, 5) Source(17, 20) + SourceIndex(3) +2 >Emitted(19, 27) Source(17, 24) + SourceIndex(3) +3 >Emitted(19, 49) Source(17, 25) + SourceIndex(3) --- >>> /**@internal*/ get: function () { return 10; }, 1->^^^^^^^^ @@ -4098,15 +4103,15 @@ sourceFile:../../../second/second_part1.ts 7 > ; 8 > 9 > } -1->Emitted(19, 9) Source(17, 5) + SourceIndex(3) -2 >Emitted(19, 23) Source(17, 19) + SourceIndex(3) -3 >Emitted(19, 29) Source(17, 20) + SourceIndex(3) -4 >Emitted(19, 43) Source(17, 30) + SourceIndex(3) -5 >Emitted(19, 50) Source(17, 37) + SourceIndex(3) -6 >Emitted(19, 52) Source(17, 39) + SourceIndex(3) -7 >Emitted(19, 53) Source(17, 40) + SourceIndex(3) -8 >Emitted(19, 54) Source(17, 41) + SourceIndex(3) -9 >Emitted(19, 55) Source(17, 42) + SourceIndex(3) +1->Emitted(20, 9) Source(17, 5) + SourceIndex(3) +2 >Emitted(20, 23) Source(17, 19) + SourceIndex(3) +3 >Emitted(20, 29) Source(17, 20) + SourceIndex(3) +4 >Emitted(20, 43) Source(17, 30) + SourceIndex(3) +5 >Emitted(20, 50) Source(17, 37) + SourceIndex(3) +6 >Emitted(20, 52) Source(17, 39) + SourceIndex(3) +7 >Emitted(20, 53) Source(17, 40) + SourceIndex(3) +8 >Emitted(20, 54) Source(17, 41) + SourceIndex(3) +9 >Emitted(20, 55) Source(17, 42) + SourceIndex(3) --- >>> /**@internal*/ set: function (val) { }, 1 >^^^^^^^^ @@ -4124,13 +4129,13 @@ sourceFile:../../../second/second_part1.ts 5 > val: number 6 > ) { 7 > } -1 >Emitted(20, 9) Source(18, 5) + SourceIndex(3) -2 >Emitted(20, 23) Source(18, 19) + SourceIndex(3) -3 >Emitted(20, 29) Source(18, 20) + SourceIndex(3) -4 >Emitted(20, 39) Source(18, 26) + SourceIndex(3) -5 >Emitted(20, 42) Source(18, 37) + SourceIndex(3) -6 >Emitted(20, 46) Source(18, 41) + SourceIndex(3) -7 >Emitted(20, 47) Source(18, 42) + SourceIndex(3) +1 >Emitted(21, 9) Source(18, 5) + SourceIndex(3) +2 >Emitted(21, 23) Source(18, 19) + SourceIndex(3) +3 >Emitted(21, 29) Source(18, 20) + SourceIndex(3) +4 >Emitted(21, 39) Source(18, 26) + SourceIndex(3) +5 >Emitted(21, 42) Source(18, 37) + SourceIndex(3) +6 >Emitted(21, 46) Source(18, 41) + SourceIndex(3) +7 >Emitted(21, 47) Source(18, 42) + SourceIndex(3) --- >>> enumerable: false, >>> configurable: true @@ -4138,7 +4143,7 @@ sourceFile:../../../second/second_part1.ts 1 >^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(23, 8) Source(17, 42) + SourceIndex(3) +1 >Emitted(24, 8) Source(17, 42) + SourceIndex(3) --- >>> return normalC; 1->^^^^ @@ -4147,8 +4152,8 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ set c(val: number) { } > 2 > } -1->Emitted(24, 5) Source(19, 1) + SourceIndex(3) -2 >Emitted(24, 19) Source(19, 2) + SourceIndex(3) +1->Emitted(25, 5) Source(19, 1) + SourceIndex(3) +2 >Emitted(25, 19) Source(19, 2) + SourceIndex(3) --- >>>}()); 1 > @@ -4166,10 +4171,10 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ get c() { return 10; } > /**@internal*/ set c(val: number) { } > } -1 >Emitted(25, 1) Source(19, 1) + SourceIndex(3) -2 >Emitted(25, 2) Source(19, 2) + SourceIndex(3) -3 >Emitted(25, 2) Source(13, 1) + SourceIndex(3) -4 >Emitted(25, 6) Source(19, 2) + SourceIndex(3) +1 >Emitted(26, 1) Source(19, 1) + SourceIndex(3) +2 >Emitted(26, 2) Source(19, 2) + SourceIndex(3) +3 >Emitted(26, 2) Source(13, 1) + SourceIndex(3) +4 >Emitted(26, 6) Source(19, 2) + SourceIndex(3) --- >>>var normalN; 1-> @@ -4191,10 +4196,10 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ export const internalConst = 10; > /**@internal*/ export enum internalEnum { a, b, c } > } -1->Emitted(26, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(26, 5) Source(20, 11) + SourceIndex(3) -3 >Emitted(26, 12) Source(20, 18) + SourceIndex(3) -4 >Emitted(26, 13) Source(29, 2) + SourceIndex(3) +1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(27, 5) Source(20, 11) + SourceIndex(3) +3 >Emitted(27, 12) Source(20, 18) + SourceIndex(3) +4 >Emitted(27, 13) Source(29, 2) + SourceIndex(3) --- >>>(function (normalN) { 1-> @@ -4204,9 +4209,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > normalN -1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(27, 12) Source(20, 11) + SourceIndex(3) -3 >Emitted(27, 19) Source(20, 18) + SourceIndex(3) +1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(28, 12) Source(20, 11) + SourceIndex(3) +3 >Emitted(28, 19) Source(20, 18) + SourceIndex(3) --- >>> /**@internal*/ var C = /** @class */ (function () { 1->^^^^ @@ -4217,15 +4222,15 @@ sourceFile:../../../second/second_part1.ts > 2 > /**@internal*/ 3 > -1->Emitted(28, 5) Source(21, 5) + SourceIndex(3) -2 >Emitted(28, 19) Source(21, 19) + SourceIndex(3) -3 >Emitted(28, 20) Source(21, 20) + SourceIndex(3) +1->Emitted(29, 5) Source(21, 5) + SourceIndex(3) +2 >Emitted(29, 19) Source(21, 19) + SourceIndex(3) +3 >Emitted(29, 20) Source(21, 20) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(29, 9) Source(21, 20) + SourceIndex(3) +1->Emitted(30, 9) Source(21, 20) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -4233,16 +4238,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(30, 9) Source(21, 37) + SourceIndex(3) -2 >Emitted(30, 10) Source(21, 38) + SourceIndex(3) +1->Emitted(31, 9) Source(21, 37) + SourceIndex(3) +2 >Emitted(31, 10) Source(21, 38) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(31, 9) Source(21, 37) + SourceIndex(3) -2 >Emitted(31, 17) Source(21, 38) + SourceIndex(3) +1->Emitted(32, 9) Source(21, 37) + SourceIndex(3) +2 >Emitted(32, 17) Source(21, 38) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -4254,10 +4259,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(32, 5) Source(21, 37) + SourceIndex(3) -2 >Emitted(32, 6) Source(21, 38) + SourceIndex(3) -3 >Emitted(32, 6) Source(21, 20) + SourceIndex(3) -4 >Emitted(32, 10) Source(21, 38) + SourceIndex(3) +1 >Emitted(33, 5) Source(21, 37) + SourceIndex(3) +2 >Emitted(33, 6) Source(21, 38) + SourceIndex(3) +3 >Emitted(33, 6) Source(21, 20) + SourceIndex(3) +4 >Emitted(33, 10) Source(21, 38) + SourceIndex(3) --- >>> normalN.C = C; 1->^^^^ @@ -4269,10 +4274,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > { } 4 > -1->Emitted(33, 5) Source(21, 33) + SourceIndex(3) -2 >Emitted(33, 14) Source(21, 34) + SourceIndex(3) -3 >Emitted(33, 18) Source(21, 38) + SourceIndex(3) -4 >Emitted(33, 19) Source(21, 38) + SourceIndex(3) +1->Emitted(34, 5) Source(21, 33) + SourceIndex(3) +2 >Emitted(34, 14) Source(21, 34) + SourceIndex(3) +3 >Emitted(34, 18) Source(21, 38) + SourceIndex(3) +4 >Emitted(34, 19) Source(21, 38) + SourceIndex(3) --- >>> /**@internal*/ function foo() { } 1->^^^^ @@ -4290,13 +4295,13 @@ sourceFile:../../../second/second_part1.ts 5 > foo 6 > () { 7 > } -1->Emitted(34, 5) Source(22, 5) + SourceIndex(3) -2 >Emitted(34, 19) Source(22, 19) + SourceIndex(3) -3 >Emitted(34, 20) Source(22, 20) + SourceIndex(3) -4 >Emitted(34, 29) Source(22, 36) + SourceIndex(3) -5 >Emitted(34, 32) Source(22, 39) + SourceIndex(3) -6 >Emitted(34, 37) Source(22, 43) + SourceIndex(3) -7 >Emitted(34, 38) Source(22, 44) + SourceIndex(3) +1->Emitted(35, 5) Source(22, 5) + SourceIndex(3) +2 >Emitted(35, 19) Source(22, 19) + SourceIndex(3) +3 >Emitted(35, 20) Source(22, 20) + SourceIndex(3) +4 >Emitted(35, 29) Source(22, 36) + SourceIndex(3) +5 >Emitted(35, 32) Source(22, 39) + SourceIndex(3) +6 >Emitted(35, 37) Source(22, 43) + SourceIndex(3) +7 >Emitted(35, 38) Source(22, 44) + SourceIndex(3) --- >>> normalN.foo = foo; 1 >^^^^ @@ -4308,10 +4313,10 @@ sourceFile:../../../second/second_part1.ts 2 > foo 3 > () {} 4 > -1 >Emitted(35, 5) Source(22, 36) + SourceIndex(3) -2 >Emitted(35, 16) Source(22, 39) + SourceIndex(3) -3 >Emitted(35, 22) Source(22, 44) + SourceIndex(3) -4 >Emitted(35, 23) Source(22, 44) + SourceIndex(3) +1 >Emitted(36, 5) Source(22, 36) + SourceIndex(3) +2 >Emitted(36, 16) Source(22, 39) + SourceIndex(3) +3 >Emitted(36, 22) Source(22, 44) + SourceIndex(3) +4 >Emitted(36, 23) Source(22, 44) + SourceIndex(3) --- >>> /**@internal*/ var someNamespace; 1->^^^^ @@ -4327,12 +4332,12 @@ sourceFile:../../../second/second_part1.ts 4 > export namespace 5 > someNamespace 6 > { export class C {} } -1->Emitted(36, 5) Source(23, 5) + SourceIndex(3) -2 >Emitted(36, 19) Source(23, 19) + SourceIndex(3) -3 >Emitted(36, 20) Source(23, 20) + SourceIndex(3) -4 >Emitted(36, 24) Source(23, 37) + SourceIndex(3) -5 >Emitted(36, 37) Source(23, 50) + SourceIndex(3) -6 >Emitted(36, 38) Source(23, 72) + SourceIndex(3) +1->Emitted(37, 5) Source(23, 5) + SourceIndex(3) +2 >Emitted(37, 19) Source(23, 19) + SourceIndex(3) +3 >Emitted(37, 20) Source(23, 20) + SourceIndex(3) +4 >Emitted(37, 24) Source(23, 37) + SourceIndex(3) +5 >Emitted(37, 37) Source(23, 50) + SourceIndex(3) +6 >Emitted(37, 38) Source(23, 72) + SourceIndex(3) --- >>> (function (someNamespace) { 1 >^^^^ @@ -4342,21 +4347,21 @@ sourceFile:../../../second/second_part1.ts 1 > 2 > export namespace 3 > someNamespace -1 >Emitted(37, 5) Source(23, 20) + SourceIndex(3) -2 >Emitted(37, 16) Source(23, 37) + SourceIndex(3) -3 >Emitted(37, 29) Source(23, 50) + SourceIndex(3) +1 >Emitted(38, 5) Source(23, 20) + SourceIndex(3) +2 >Emitted(38, 16) Source(23, 37) + SourceIndex(3) +3 >Emitted(38, 29) Source(23, 50) + SourceIndex(3) --- >>> var C = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(38, 9) Source(23, 53) + SourceIndex(3) +1->Emitted(39, 9) Source(23, 53) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(39, 13) Source(23, 53) + SourceIndex(3) +1->Emitted(40, 13) Source(23, 53) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -4364,16 +4369,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(40, 13) Source(23, 69) + SourceIndex(3) -2 >Emitted(40, 14) Source(23, 70) + SourceIndex(3) +1->Emitted(41, 13) Source(23, 69) + SourceIndex(3) +2 >Emitted(41, 14) Source(23, 70) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(41, 13) Source(23, 69) + SourceIndex(3) -2 >Emitted(41, 21) Source(23, 70) + SourceIndex(3) +1->Emitted(42, 13) Source(23, 69) + SourceIndex(3) +2 >Emitted(42, 21) Source(23, 70) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -4385,10 +4390,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(42, 9) Source(23, 69) + SourceIndex(3) -2 >Emitted(42, 10) Source(23, 70) + SourceIndex(3) -3 >Emitted(42, 10) Source(23, 53) + SourceIndex(3) -4 >Emitted(42, 14) Source(23, 70) + SourceIndex(3) +1 >Emitted(43, 9) Source(23, 69) + SourceIndex(3) +2 >Emitted(43, 10) Source(23, 70) + SourceIndex(3) +3 >Emitted(43, 10) Source(23, 53) + SourceIndex(3) +4 >Emitted(43, 14) Source(23, 70) + SourceIndex(3) --- >>> someNamespace.C = C; 1->^^^^^^^^ @@ -4400,10 +4405,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > {} 4 > -1->Emitted(43, 9) Source(23, 66) + SourceIndex(3) -2 >Emitted(43, 24) Source(23, 67) + SourceIndex(3) -3 >Emitted(43, 28) Source(23, 70) + SourceIndex(3) -4 >Emitted(43, 29) Source(23, 70) + SourceIndex(3) +1->Emitted(44, 9) Source(23, 66) + SourceIndex(3) +2 >Emitted(44, 24) Source(23, 67) + SourceIndex(3) +3 >Emitted(44, 28) Source(23, 70) + SourceIndex(3) +4 >Emitted(44, 29) Source(23, 70) + SourceIndex(3) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^ @@ -4424,15 +4429,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(44, 5) Source(23, 71) + SourceIndex(3) -2 >Emitted(44, 6) Source(23, 72) + SourceIndex(3) -3 >Emitted(44, 8) Source(23, 37) + SourceIndex(3) -4 >Emitted(44, 21) Source(23, 50) + SourceIndex(3) -5 >Emitted(44, 24) Source(23, 37) + SourceIndex(3) -6 >Emitted(44, 45) Source(23, 50) + SourceIndex(3) -7 >Emitted(44, 50) Source(23, 37) + SourceIndex(3) -8 >Emitted(44, 71) Source(23, 50) + SourceIndex(3) -9 >Emitted(44, 79) Source(23, 72) + SourceIndex(3) +1->Emitted(45, 5) Source(23, 71) + SourceIndex(3) +2 >Emitted(45, 6) Source(23, 72) + SourceIndex(3) +3 >Emitted(45, 8) Source(23, 37) + SourceIndex(3) +4 >Emitted(45, 21) Source(23, 50) + SourceIndex(3) +5 >Emitted(45, 24) Source(23, 37) + SourceIndex(3) +6 >Emitted(45, 45) Source(23, 50) + SourceIndex(3) +7 >Emitted(45, 50) Source(23, 37) + SourceIndex(3) +8 >Emitted(45, 71) Source(23, 50) + SourceIndex(3) +9 >Emitted(45, 79) Source(23, 72) + SourceIndex(3) --- >>> /**@internal*/ var someOther; 1 >^^^^ @@ -4448,12 +4453,12 @@ sourceFile:../../../second/second_part1.ts 4 > export namespace 5 > someOther 6 > .something { export class someClass {} } -1 >Emitted(45, 5) Source(24, 5) + SourceIndex(3) -2 >Emitted(45, 19) Source(24, 19) + SourceIndex(3) -3 >Emitted(45, 20) Source(24, 20) + SourceIndex(3) -4 >Emitted(45, 24) Source(24, 37) + SourceIndex(3) -5 >Emitted(45, 33) Source(24, 46) + SourceIndex(3) -6 >Emitted(45, 34) Source(24, 86) + SourceIndex(3) +1 >Emitted(46, 5) Source(24, 5) + SourceIndex(3) +2 >Emitted(46, 19) Source(24, 19) + SourceIndex(3) +3 >Emitted(46, 20) Source(24, 20) + SourceIndex(3) +4 >Emitted(46, 24) Source(24, 37) + SourceIndex(3) +5 >Emitted(46, 33) Source(24, 46) + SourceIndex(3) +6 >Emitted(46, 34) Source(24, 86) + SourceIndex(3) --- >>> (function (someOther) { 1 >^^^^ @@ -4462,9 +4467,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 > export namespace 3 > someOther -1 >Emitted(46, 5) Source(24, 20) + SourceIndex(3) -2 >Emitted(46, 16) Source(24, 37) + SourceIndex(3) -3 >Emitted(46, 25) Source(24, 46) + SourceIndex(3) +1 >Emitted(47, 5) Source(24, 20) + SourceIndex(3) +2 >Emitted(47, 16) Source(24, 37) + SourceIndex(3) +3 >Emitted(47, 25) Source(24, 46) + SourceIndex(3) --- >>> var something; 1 >^^^^^^^^ @@ -4476,10 +4481,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(47, 9) Source(24, 47) + SourceIndex(3) -2 >Emitted(47, 13) Source(24, 47) + SourceIndex(3) -3 >Emitted(47, 22) Source(24, 56) + SourceIndex(3) -4 >Emitted(47, 23) Source(24, 86) + SourceIndex(3) +1 >Emitted(48, 9) Source(24, 47) + SourceIndex(3) +2 >Emitted(48, 13) Source(24, 47) + SourceIndex(3) +3 >Emitted(48, 22) Source(24, 56) + SourceIndex(3) +4 >Emitted(48, 23) Source(24, 86) + SourceIndex(3) --- >>> (function (something) { 1->^^^^^^^^ @@ -4489,21 +4494,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(48, 9) Source(24, 47) + SourceIndex(3) -2 >Emitted(48, 20) Source(24, 47) + SourceIndex(3) -3 >Emitted(48, 29) Source(24, 56) + SourceIndex(3) +1->Emitted(49, 9) Source(24, 47) + SourceIndex(3) +2 >Emitted(49, 20) Source(24, 47) + SourceIndex(3) +3 >Emitted(49, 29) Source(24, 56) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(49, 13) Source(24, 59) + SourceIndex(3) +1->Emitted(50, 13) Source(24, 59) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(50, 17) Source(24, 59) + SourceIndex(3) +1->Emitted(51, 17) Source(24, 59) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -4511,16 +4516,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(51, 17) Source(24, 83) + SourceIndex(3) -2 >Emitted(51, 18) Source(24, 84) + SourceIndex(3) +1->Emitted(52, 17) Source(24, 83) + SourceIndex(3) +2 >Emitted(52, 18) Source(24, 84) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(52, 17) Source(24, 83) + SourceIndex(3) -2 >Emitted(52, 33) Source(24, 84) + SourceIndex(3) +1->Emitted(53, 17) Source(24, 83) + SourceIndex(3) +2 >Emitted(53, 33) Source(24, 84) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -4532,10 +4537,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(53, 13) Source(24, 83) + SourceIndex(3) -2 >Emitted(53, 14) Source(24, 84) + SourceIndex(3) -3 >Emitted(53, 14) Source(24, 59) + SourceIndex(3) -4 >Emitted(53, 18) Source(24, 84) + SourceIndex(3) +1 >Emitted(54, 13) Source(24, 83) + SourceIndex(3) +2 >Emitted(54, 14) Source(24, 84) + SourceIndex(3) +3 >Emitted(54, 14) Source(24, 59) + SourceIndex(3) +4 >Emitted(54, 18) Source(24, 84) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -4547,10 +4552,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(54, 13) Source(24, 72) + SourceIndex(3) -2 >Emitted(54, 32) Source(24, 81) + SourceIndex(3) -3 >Emitted(54, 44) Source(24, 84) + SourceIndex(3) -4 >Emitted(54, 45) Source(24, 84) + SourceIndex(3) +1->Emitted(55, 13) Source(24, 72) + SourceIndex(3) +2 >Emitted(55, 32) Source(24, 81) + SourceIndex(3) +3 >Emitted(55, 44) Source(24, 84) + SourceIndex(3) +4 >Emitted(55, 45) Source(24, 84) + SourceIndex(3) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^ @@ -4571,15 +4576,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(55, 9) Source(24, 85) + SourceIndex(3) -2 >Emitted(55, 10) Source(24, 86) + SourceIndex(3) -3 >Emitted(55, 12) Source(24, 47) + SourceIndex(3) -4 >Emitted(55, 21) Source(24, 56) + SourceIndex(3) -5 >Emitted(55, 24) Source(24, 47) + SourceIndex(3) -6 >Emitted(55, 43) Source(24, 56) + SourceIndex(3) -7 >Emitted(55, 48) Source(24, 47) + SourceIndex(3) -8 >Emitted(55, 67) Source(24, 56) + SourceIndex(3) -9 >Emitted(55, 75) Source(24, 86) + SourceIndex(3) +1->Emitted(56, 9) Source(24, 85) + SourceIndex(3) +2 >Emitted(56, 10) Source(24, 86) + SourceIndex(3) +3 >Emitted(56, 12) Source(24, 47) + SourceIndex(3) +4 >Emitted(56, 21) Source(24, 56) + SourceIndex(3) +5 >Emitted(56, 24) Source(24, 47) + SourceIndex(3) +6 >Emitted(56, 43) Source(24, 56) + SourceIndex(3) +7 >Emitted(56, 48) Source(24, 47) + SourceIndex(3) +8 >Emitted(56, 67) Source(24, 56) + SourceIndex(3) +9 >Emitted(56, 75) Source(24, 86) + SourceIndex(3) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^ @@ -4600,15 +4605,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(56, 5) Source(24, 85) + SourceIndex(3) -2 >Emitted(56, 6) Source(24, 86) + SourceIndex(3) -3 >Emitted(56, 8) Source(24, 37) + SourceIndex(3) -4 >Emitted(56, 17) Source(24, 46) + SourceIndex(3) -5 >Emitted(56, 20) Source(24, 37) + SourceIndex(3) -6 >Emitted(56, 37) Source(24, 46) + SourceIndex(3) -7 >Emitted(56, 42) Source(24, 37) + SourceIndex(3) -8 >Emitted(56, 59) Source(24, 46) + SourceIndex(3) -9 >Emitted(56, 67) Source(24, 86) + SourceIndex(3) +1 >Emitted(57, 5) Source(24, 85) + SourceIndex(3) +2 >Emitted(57, 6) Source(24, 86) + SourceIndex(3) +3 >Emitted(57, 8) Source(24, 37) + SourceIndex(3) +4 >Emitted(57, 17) Source(24, 46) + SourceIndex(3) +5 >Emitted(57, 20) Source(24, 37) + SourceIndex(3) +6 >Emitted(57, 37) Source(24, 46) + SourceIndex(3) +7 >Emitted(57, 42) Source(24, 37) + SourceIndex(3) +8 >Emitted(57, 59) Source(24, 46) + SourceIndex(3) +9 >Emitted(57, 67) Source(24, 86) + SourceIndex(3) --- >>> /**@internal*/ normalN.someImport = someNamespace.C; 1 >^^^^ @@ -4630,15 +4635,15 @@ sourceFile:../../../second/second_part1.ts 7 > . 8 > C 9 > ; -1 >Emitted(57, 5) Source(25, 5) + SourceIndex(3) -2 >Emitted(57, 19) Source(25, 19) + SourceIndex(3) -3 >Emitted(57, 20) Source(25, 34) + SourceIndex(3) -4 >Emitted(57, 38) Source(25, 44) + SourceIndex(3) -5 >Emitted(57, 41) Source(25, 47) + SourceIndex(3) -6 >Emitted(57, 54) Source(25, 60) + SourceIndex(3) -7 >Emitted(57, 55) Source(25, 61) + SourceIndex(3) -8 >Emitted(57, 56) Source(25, 62) + SourceIndex(3) -9 >Emitted(57, 57) Source(25, 63) + SourceIndex(3) +1 >Emitted(58, 5) Source(25, 5) + SourceIndex(3) +2 >Emitted(58, 19) Source(25, 19) + SourceIndex(3) +3 >Emitted(58, 20) Source(25, 34) + SourceIndex(3) +4 >Emitted(58, 38) Source(25, 44) + SourceIndex(3) +5 >Emitted(58, 41) Source(25, 47) + SourceIndex(3) +6 >Emitted(58, 54) Source(25, 60) + SourceIndex(3) +7 >Emitted(58, 55) Source(25, 61) + SourceIndex(3) +8 >Emitted(58, 56) Source(25, 62) + SourceIndex(3) +9 >Emitted(58, 57) Source(25, 63) + SourceIndex(3) --- >>> /**@internal*/ normalN.internalConst = 10; 1 >^^^^ @@ -4657,13 +4662,13 @@ sourceFile:../../../second/second_part1.ts 5 > = 6 > 10 7 > ; -1 >Emitted(58, 5) Source(27, 5) + SourceIndex(3) -2 >Emitted(58, 19) Source(27, 19) + SourceIndex(3) -3 >Emitted(58, 20) Source(27, 33) + SourceIndex(3) -4 >Emitted(58, 41) Source(27, 46) + SourceIndex(3) -5 >Emitted(58, 44) Source(27, 49) + SourceIndex(3) -6 >Emitted(58, 46) Source(27, 51) + SourceIndex(3) -7 >Emitted(58, 47) Source(27, 52) + SourceIndex(3) +1 >Emitted(59, 5) Source(27, 5) + SourceIndex(3) +2 >Emitted(59, 19) Source(27, 19) + SourceIndex(3) +3 >Emitted(59, 20) Source(27, 33) + SourceIndex(3) +4 >Emitted(59, 41) Source(27, 46) + SourceIndex(3) +5 >Emitted(59, 44) Source(27, 49) + SourceIndex(3) +6 >Emitted(59, 46) Source(27, 51) + SourceIndex(3) +7 >Emitted(59, 47) Source(27, 52) + SourceIndex(3) --- >>> /**@internal*/ var internalEnum; 1 >^^^^ @@ -4677,11 +4682,11 @@ sourceFile:../../../second/second_part1.ts 3 > 4 > export enum 5 > internalEnum { a, b, c } -1 >Emitted(59, 5) Source(28, 5) + SourceIndex(3) -2 >Emitted(59, 19) Source(28, 19) + SourceIndex(3) -3 >Emitted(59, 20) Source(28, 20) + SourceIndex(3) -4 >Emitted(59, 24) Source(28, 32) + SourceIndex(3) -5 >Emitted(59, 36) Source(28, 56) + SourceIndex(3) +1 >Emitted(60, 5) Source(28, 5) + SourceIndex(3) +2 >Emitted(60, 19) Source(28, 19) + SourceIndex(3) +3 >Emitted(60, 20) Source(28, 20) + SourceIndex(3) +4 >Emitted(60, 24) Source(28, 32) + SourceIndex(3) +5 >Emitted(60, 36) Source(28, 56) + SourceIndex(3) --- >>> (function (internalEnum) { 1 >^^^^ @@ -4691,9 +4696,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 > export enum 3 > internalEnum -1 >Emitted(60, 5) Source(28, 20) + SourceIndex(3) -2 >Emitted(60, 16) Source(28, 32) + SourceIndex(3) -3 >Emitted(60, 28) Source(28, 44) + SourceIndex(3) +1 >Emitted(61, 5) Source(28, 20) + SourceIndex(3) +2 >Emitted(61, 16) Source(28, 32) + SourceIndex(3) +3 >Emitted(61, 28) Source(28, 44) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -4703,9 +4708,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(61, 9) Source(28, 47) + SourceIndex(3) -2 >Emitted(61, 50) Source(28, 48) + SourceIndex(3) -3 >Emitted(61, 51) Source(28, 48) + SourceIndex(3) +1->Emitted(62, 9) Source(28, 47) + SourceIndex(3) +2 >Emitted(62, 50) Source(28, 48) + SourceIndex(3) +3 >Emitted(62, 51) Source(28, 48) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -4715,9 +4720,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(62, 9) Source(28, 50) + SourceIndex(3) -2 >Emitted(62, 50) Source(28, 51) + SourceIndex(3) -3 >Emitted(62, 51) Source(28, 51) + SourceIndex(3) +1->Emitted(63, 9) Source(28, 50) + SourceIndex(3) +2 >Emitted(63, 50) Source(28, 51) + SourceIndex(3) +3 >Emitted(63, 51) Source(28, 51) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -4727,9 +4732,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(63, 9) Source(28, 53) + SourceIndex(3) -2 >Emitted(63, 50) Source(28, 54) + SourceIndex(3) -3 >Emitted(63, 51) Source(28, 54) + SourceIndex(3) +1->Emitted(64, 9) Source(28, 53) + SourceIndex(3) +2 >Emitted(64, 50) Source(28, 54) + SourceIndex(3) +3 >Emitted(64, 51) Source(28, 54) + SourceIndex(3) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^ @@ -4750,15 +4755,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(64, 5) Source(28, 55) + SourceIndex(3) -2 >Emitted(64, 6) Source(28, 56) + SourceIndex(3) -3 >Emitted(64, 8) Source(28, 32) + SourceIndex(3) -4 >Emitted(64, 20) Source(28, 44) + SourceIndex(3) -5 >Emitted(64, 23) Source(28, 32) + SourceIndex(3) -6 >Emitted(64, 43) Source(28, 44) + SourceIndex(3) -7 >Emitted(64, 48) Source(28, 32) + SourceIndex(3) -8 >Emitted(64, 68) Source(28, 44) + SourceIndex(3) -9 >Emitted(64, 76) Source(28, 56) + SourceIndex(3) +1->Emitted(65, 5) Source(28, 55) + SourceIndex(3) +2 >Emitted(65, 6) Source(28, 56) + SourceIndex(3) +3 >Emitted(65, 8) Source(28, 32) + SourceIndex(3) +4 >Emitted(65, 20) Source(28, 44) + SourceIndex(3) +5 >Emitted(65, 23) Source(28, 32) + SourceIndex(3) +6 >Emitted(65, 43) Source(28, 44) + SourceIndex(3) +7 >Emitted(65, 48) Source(28, 32) + SourceIndex(3) +8 >Emitted(65, 68) Source(28, 44) + SourceIndex(3) +9 >Emitted(65, 76) Source(28, 56) + SourceIndex(3) --- >>>})(normalN || (normalN = {})); 1 > @@ -4786,13 +4791,13 @@ sourceFile:../../../second/second_part1.ts > /**@internal*/ export const internalConst = 10; > /**@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(65, 1) Source(29, 1) + SourceIndex(3) -2 >Emitted(65, 2) Source(29, 2) + SourceIndex(3) -3 >Emitted(65, 4) Source(20, 11) + SourceIndex(3) -4 >Emitted(65, 11) Source(20, 18) + SourceIndex(3) -5 >Emitted(65, 16) Source(20, 11) + SourceIndex(3) -6 >Emitted(65, 23) Source(20, 18) + SourceIndex(3) -7 >Emitted(65, 31) Source(29, 2) + SourceIndex(3) +1 >Emitted(66, 1) Source(29, 1) + SourceIndex(3) +2 >Emitted(66, 2) Source(29, 2) + SourceIndex(3) +3 >Emitted(66, 4) Source(20, 11) + SourceIndex(3) +4 >Emitted(66, 11) Source(20, 18) + SourceIndex(3) +5 >Emitted(66, 16) Source(20, 11) + SourceIndex(3) +6 >Emitted(66, 23) Source(20, 18) + SourceIndex(3) +7 >Emitted(66, 31) Source(29, 2) + SourceIndex(3) --- >>>/**@internal*/ var internalC = /** @class */ (function () { 1-> @@ -4803,15 +4808,15 @@ sourceFile:../../../second/second_part1.ts > 2 >/**@internal*/ 3 > -1->Emitted(66, 1) Source(30, 1) + SourceIndex(3) -2 >Emitted(66, 15) Source(30, 15) + SourceIndex(3) -3 >Emitted(66, 16) Source(30, 16) + SourceIndex(3) +1->Emitted(67, 1) Source(30, 1) + SourceIndex(3) +2 >Emitted(67, 15) Source(30, 15) + SourceIndex(3) +3 >Emitted(67, 16) Source(30, 16) + SourceIndex(3) --- >>> function internalC() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(67, 5) Source(30, 16) + SourceIndex(3) +1->Emitted(68, 5) Source(30, 16) + SourceIndex(3) --- >>> } 1->^^^^ @@ -4819,16 +4824,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->class internalC { 2 > } -1->Emitted(68, 5) Source(30, 33) + SourceIndex(3) -2 >Emitted(68, 6) Source(30, 34) + SourceIndex(3) +1->Emitted(69, 5) Source(30, 33) + SourceIndex(3) +2 >Emitted(69, 6) Source(30, 34) + SourceIndex(3) --- >>> return internalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(69, 5) Source(30, 33) + SourceIndex(3) -2 >Emitted(69, 21) Source(30, 34) + SourceIndex(3) +1->Emitted(70, 5) Source(30, 33) + SourceIndex(3) +2 >Emitted(70, 21) Source(30, 34) + SourceIndex(3) --- >>>}()); 1 > @@ -4840,10 +4845,10 @@ sourceFile:../../../second/second_part1.ts 2 >} 3 > 4 > class internalC {} -1 >Emitted(70, 1) Source(30, 33) + SourceIndex(3) -2 >Emitted(70, 2) Source(30, 34) + SourceIndex(3) -3 >Emitted(70, 2) Source(30, 16) + SourceIndex(3) -4 >Emitted(70, 6) Source(30, 34) + SourceIndex(3) +1 >Emitted(71, 1) Source(30, 33) + SourceIndex(3) +2 >Emitted(71, 2) Source(30, 34) + SourceIndex(3) +3 >Emitted(71, 2) Source(30, 16) + SourceIndex(3) +4 >Emitted(71, 6) Source(30, 34) + SourceIndex(3) --- >>>/**@internal*/ function internalfoo() { } 1-> @@ -4861,13 +4866,13 @@ sourceFile:../../../second/second_part1.ts 5 > internalfoo 6 > () { 7 > } -1->Emitted(71, 1) Source(31, 1) + SourceIndex(3) -2 >Emitted(71, 15) Source(31, 15) + SourceIndex(3) -3 >Emitted(71, 16) Source(31, 16) + SourceIndex(3) -4 >Emitted(71, 25) Source(31, 25) + SourceIndex(3) -5 >Emitted(71, 36) Source(31, 36) + SourceIndex(3) -6 >Emitted(71, 41) Source(31, 40) + SourceIndex(3) -7 >Emitted(71, 42) Source(31, 41) + SourceIndex(3) +1->Emitted(72, 1) Source(31, 1) + SourceIndex(3) +2 >Emitted(72, 15) Source(31, 15) + SourceIndex(3) +3 >Emitted(72, 16) Source(31, 16) + SourceIndex(3) +4 >Emitted(72, 25) Source(31, 25) + SourceIndex(3) +5 >Emitted(72, 36) Source(31, 36) + SourceIndex(3) +6 >Emitted(72, 41) Source(31, 40) + SourceIndex(3) +7 >Emitted(72, 42) Source(31, 41) + SourceIndex(3) --- >>>/**@internal*/ var internalNamespace; 1 > @@ -4883,12 +4888,12 @@ sourceFile:../../../second/second_part1.ts 4 > namespace 5 > internalNamespace 6 > { export class someClass {} } -1 >Emitted(72, 1) Source(32, 1) + SourceIndex(3) -2 >Emitted(72, 15) Source(32, 15) + SourceIndex(3) -3 >Emitted(72, 16) Source(32, 16) + SourceIndex(3) -4 >Emitted(72, 20) Source(32, 26) + SourceIndex(3) -5 >Emitted(72, 37) Source(32, 43) + SourceIndex(3) -6 >Emitted(72, 38) Source(32, 73) + SourceIndex(3) +1 >Emitted(73, 1) Source(32, 1) + SourceIndex(3) +2 >Emitted(73, 15) Source(32, 15) + SourceIndex(3) +3 >Emitted(73, 16) Source(32, 16) + SourceIndex(3) +4 >Emitted(73, 20) Source(32, 26) + SourceIndex(3) +5 >Emitted(73, 37) Source(32, 43) + SourceIndex(3) +6 >Emitted(73, 38) Source(32, 73) + SourceIndex(3) --- >>>(function (internalNamespace) { 1 > @@ -4898,21 +4903,21 @@ sourceFile:../../../second/second_part1.ts 1 > 2 >namespace 3 > internalNamespace -1 >Emitted(73, 1) Source(32, 16) + SourceIndex(3) -2 >Emitted(73, 12) Source(32, 26) + SourceIndex(3) -3 >Emitted(73, 29) Source(32, 43) + SourceIndex(3) +1 >Emitted(74, 1) Source(32, 16) + SourceIndex(3) +2 >Emitted(74, 12) Source(32, 26) + SourceIndex(3) +3 >Emitted(74, 29) Source(32, 43) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(74, 5) Source(32, 46) + SourceIndex(3) +1->Emitted(75, 5) Source(32, 46) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(75, 9) Source(32, 46) + SourceIndex(3) +1->Emitted(76, 9) Source(32, 46) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -4920,16 +4925,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(76, 9) Source(32, 70) + SourceIndex(3) -2 >Emitted(76, 10) Source(32, 71) + SourceIndex(3) +1->Emitted(77, 9) Source(32, 70) + SourceIndex(3) +2 >Emitted(77, 10) Source(32, 71) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(77, 9) Source(32, 70) + SourceIndex(3) -2 >Emitted(77, 25) Source(32, 71) + SourceIndex(3) +1->Emitted(78, 9) Source(32, 70) + SourceIndex(3) +2 >Emitted(78, 25) Source(32, 71) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -4941,10 +4946,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(78, 5) Source(32, 70) + SourceIndex(3) -2 >Emitted(78, 6) Source(32, 71) + SourceIndex(3) -3 >Emitted(78, 6) Source(32, 46) + SourceIndex(3) -4 >Emitted(78, 10) Source(32, 71) + SourceIndex(3) +1 >Emitted(79, 5) Source(32, 70) + SourceIndex(3) +2 >Emitted(79, 6) Source(32, 71) + SourceIndex(3) +3 >Emitted(79, 6) Source(32, 46) + SourceIndex(3) +4 >Emitted(79, 10) Source(32, 71) + SourceIndex(3) --- >>> internalNamespace.someClass = someClass; 1->^^^^ @@ -4956,10 +4961,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(79, 5) Source(32, 59) + SourceIndex(3) -2 >Emitted(79, 32) Source(32, 68) + SourceIndex(3) -3 >Emitted(79, 44) Source(32, 71) + SourceIndex(3) -4 >Emitted(79, 45) Source(32, 71) + SourceIndex(3) +1->Emitted(80, 5) Source(32, 59) + SourceIndex(3) +2 >Emitted(80, 32) Source(32, 68) + SourceIndex(3) +3 >Emitted(80, 44) Source(32, 71) + SourceIndex(3) +4 >Emitted(80, 45) Source(32, 71) + SourceIndex(3) --- >>>})(internalNamespace || (internalNamespace = {})); 1-> @@ -4976,13 +4981,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalNamespace 7 > { export class someClass {} } -1->Emitted(80, 1) Source(32, 72) + SourceIndex(3) -2 >Emitted(80, 2) Source(32, 73) + SourceIndex(3) -3 >Emitted(80, 4) Source(32, 26) + SourceIndex(3) -4 >Emitted(80, 21) Source(32, 43) + SourceIndex(3) -5 >Emitted(80, 26) Source(32, 26) + SourceIndex(3) -6 >Emitted(80, 43) Source(32, 43) + SourceIndex(3) -7 >Emitted(80, 51) Source(32, 73) + SourceIndex(3) +1->Emitted(81, 1) Source(32, 72) + SourceIndex(3) +2 >Emitted(81, 2) Source(32, 73) + SourceIndex(3) +3 >Emitted(81, 4) Source(32, 26) + SourceIndex(3) +4 >Emitted(81, 21) Source(32, 43) + SourceIndex(3) +5 >Emitted(81, 26) Source(32, 26) + SourceIndex(3) +6 >Emitted(81, 43) Source(32, 43) + SourceIndex(3) +7 >Emitted(81, 51) Source(32, 73) + SourceIndex(3) --- >>>/**@internal*/ var internalOther; 1 > @@ -4998,12 +5003,12 @@ sourceFile:../../../second/second_part1.ts 4 > namespace 5 > internalOther 6 > .something { export class someClass {} } -1 >Emitted(81, 1) Source(33, 1) + SourceIndex(3) -2 >Emitted(81, 15) Source(33, 15) + SourceIndex(3) -3 >Emitted(81, 16) Source(33, 16) + SourceIndex(3) -4 >Emitted(81, 20) Source(33, 26) + SourceIndex(3) -5 >Emitted(81, 33) Source(33, 39) + SourceIndex(3) -6 >Emitted(81, 34) Source(33, 79) + SourceIndex(3) +1 >Emitted(82, 1) Source(33, 1) + SourceIndex(3) +2 >Emitted(82, 15) Source(33, 15) + SourceIndex(3) +3 >Emitted(82, 16) Source(33, 16) + SourceIndex(3) +4 >Emitted(82, 20) Source(33, 26) + SourceIndex(3) +5 >Emitted(82, 33) Source(33, 39) + SourceIndex(3) +6 >Emitted(82, 34) Source(33, 79) + SourceIndex(3) --- >>>(function (internalOther) { 1 > @@ -5012,9 +5017,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 >namespace 3 > internalOther -1 >Emitted(82, 1) Source(33, 16) + SourceIndex(3) -2 >Emitted(82, 12) Source(33, 26) + SourceIndex(3) -3 >Emitted(82, 25) Source(33, 39) + SourceIndex(3) +1 >Emitted(83, 1) Source(33, 16) + SourceIndex(3) +2 >Emitted(83, 12) Source(33, 26) + SourceIndex(3) +3 >Emitted(83, 25) Source(33, 39) + SourceIndex(3) --- >>> var something; 1 >^^^^ @@ -5026,10 +5031,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(83, 5) Source(33, 40) + SourceIndex(3) -2 >Emitted(83, 9) Source(33, 40) + SourceIndex(3) -3 >Emitted(83, 18) Source(33, 49) + SourceIndex(3) -4 >Emitted(83, 19) Source(33, 79) + SourceIndex(3) +1 >Emitted(84, 5) Source(33, 40) + SourceIndex(3) +2 >Emitted(84, 9) Source(33, 40) + SourceIndex(3) +3 >Emitted(84, 18) Source(33, 49) + SourceIndex(3) +4 >Emitted(84, 19) Source(33, 79) + SourceIndex(3) --- >>> (function (something) { 1->^^^^ @@ -5039,21 +5044,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(84, 5) Source(33, 40) + SourceIndex(3) -2 >Emitted(84, 16) Source(33, 40) + SourceIndex(3) -3 >Emitted(84, 25) Source(33, 49) + SourceIndex(3) +1->Emitted(85, 5) Source(33, 40) + SourceIndex(3) +2 >Emitted(85, 16) Source(33, 40) + SourceIndex(3) +3 >Emitted(85, 25) Source(33, 49) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(85, 9) Source(33, 52) + SourceIndex(3) +1->Emitted(86, 9) Source(33, 52) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(86, 13) Source(33, 52) + SourceIndex(3) +1->Emitted(87, 13) Source(33, 52) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -5061,16 +5066,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(87, 13) Source(33, 76) + SourceIndex(3) -2 >Emitted(87, 14) Source(33, 77) + SourceIndex(3) +1->Emitted(88, 13) Source(33, 76) + SourceIndex(3) +2 >Emitted(88, 14) Source(33, 77) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(88, 13) Source(33, 76) + SourceIndex(3) -2 >Emitted(88, 29) Source(33, 77) + SourceIndex(3) +1->Emitted(89, 13) Source(33, 76) + SourceIndex(3) +2 >Emitted(89, 29) Source(33, 77) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -5082,10 +5087,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(89, 9) Source(33, 76) + SourceIndex(3) -2 >Emitted(89, 10) Source(33, 77) + SourceIndex(3) -3 >Emitted(89, 10) Source(33, 52) + SourceIndex(3) -4 >Emitted(89, 14) Source(33, 77) + SourceIndex(3) +1 >Emitted(90, 9) Source(33, 76) + SourceIndex(3) +2 >Emitted(90, 10) Source(33, 77) + SourceIndex(3) +3 >Emitted(90, 10) Source(33, 52) + SourceIndex(3) +4 >Emitted(90, 14) Source(33, 77) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^ @@ -5097,10 +5102,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(90, 9) Source(33, 65) + SourceIndex(3) -2 >Emitted(90, 28) Source(33, 74) + SourceIndex(3) -3 >Emitted(90, 40) Source(33, 77) + SourceIndex(3) -4 >Emitted(90, 41) Source(33, 77) + SourceIndex(3) +1->Emitted(91, 9) Source(33, 65) + SourceIndex(3) +2 >Emitted(91, 28) Source(33, 74) + SourceIndex(3) +3 >Emitted(91, 40) Source(33, 77) + SourceIndex(3) +4 >Emitted(91, 41) Source(33, 77) + SourceIndex(3) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^ @@ -5121,15 +5126,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(91, 5) Source(33, 78) + SourceIndex(3) -2 >Emitted(91, 6) Source(33, 79) + SourceIndex(3) -3 >Emitted(91, 8) Source(33, 40) + SourceIndex(3) -4 >Emitted(91, 17) Source(33, 49) + SourceIndex(3) -5 >Emitted(91, 20) Source(33, 40) + SourceIndex(3) -6 >Emitted(91, 43) Source(33, 49) + SourceIndex(3) -7 >Emitted(91, 48) Source(33, 40) + SourceIndex(3) -8 >Emitted(91, 71) Source(33, 49) + SourceIndex(3) -9 >Emitted(91, 79) Source(33, 79) + SourceIndex(3) +1->Emitted(92, 5) Source(33, 78) + SourceIndex(3) +2 >Emitted(92, 6) Source(33, 79) + SourceIndex(3) +3 >Emitted(92, 8) Source(33, 40) + SourceIndex(3) +4 >Emitted(92, 17) Source(33, 49) + SourceIndex(3) +5 >Emitted(92, 20) Source(33, 40) + SourceIndex(3) +6 >Emitted(92, 43) Source(33, 49) + SourceIndex(3) +7 >Emitted(92, 48) Source(33, 40) + SourceIndex(3) +8 >Emitted(92, 71) Source(33, 49) + SourceIndex(3) +9 >Emitted(92, 79) Source(33, 79) + SourceIndex(3) --- >>>})(internalOther || (internalOther = {})); 1 > @@ -5147,13 +5152,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalOther 7 > .something { export class someClass {} } -1 >Emitted(92, 1) Source(33, 78) + SourceIndex(3) -2 >Emitted(92, 2) Source(33, 79) + SourceIndex(3) -3 >Emitted(92, 4) Source(33, 26) + SourceIndex(3) -4 >Emitted(92, 17) Source(33, 39) + SourceIndex(3) -5 >Emitted(92, 22) Source(33, 26) + SourceIndex(3) -6 >Emitted(92, 35) Source(33, 39) + SourceIndex(3) -7 >Emitted(92, 43) Source(33, 79) + SourceIndex(3) +1 >Emitted(93, 1) Source(33, 78) + SourceIndex(3) +2 >Emitted(93, 2) Source(33, 79) + SourceIndex(3) +3 >Emitted(93, 4) Source(33, 26) + SourceIndex(3) +4 >Emitted(93, 17) Source(33, 39) + SourceIndex(3) +5 >Emitted(93, 22) Source(33, 26) + SourceIndex(3) +6 >Emitted(93, 35) Source(33, 39) + SourceIndex(3) +7 >Emitted(93, 43) Source(33, 79) + SourceIndex(3) --- >>>/**@internal*/ var internalImport = internalNamespace.someClass; 1-> @@ -5177,16 +5182,16 @@ sourceFile:../../../second/second_part1.ts 8 > . 9 > someClass 10> ; -1->Emitted(93, 1) Source(34, 1) + SourceIndex(3) -2 >Emitted(93, 15) Source(34, 15) + SourceIndex(3) -3 >Emitted(93, 16) Source(34, 16) + SourceIndex(3) -4 >Emitted(93, 20) Source(34, 23) + SourceIndex(3) -5 >Emitted(93, 34) Source(34, 37) + SourceIndex(3) -6 >Emitted(93, 37) Source(34, 40) + SourceIndex(3) -7 >Emitted(93, 54) Source(34, 57) + SourceIndex(3) -8 >Emitted(93, 55) Source(34, 58) + SourceIndex(3) -9 >Emitted(93, 64) Source(34, 67) + SourceIndex(3) -10>Emitted(93, 65) Source(34, 68) + SourceIndex(3) +1->Emitted(94, 1) Source(34, 1) + SourceIndex(3) +2 >Emitted(94, 15) Source(34, 15) + SourceIndex(3) +3 >Emitted(94, 16) Source(34, 16) + SourceIndex(3) +4 >Emitted(94, 20) Source(34, 23) + SourceIndex(3) +5 >Emitted(94, 34) Source(34, 37) + SourceIndex(3) +6 >Emitted(94, 37) Source(34, 40) + SourceIndex(3) +7 >Emitted(94, 54) Source(34, 57) + SourceIndex(3) +8 >Emitted(94, 55) Source(34, 58) + SourceIndex(3) +9 >Emitted(94, 64) Source(34, 67) + SourceIndex(3) +10>Emitted(94, 65) Source(34, 68) + SourceIndex(3) --- >>>/**@internal*/ var internalConst = 10; 1 > @@ -5207,14 +5212,14 @@ sourceFile:../../../second/second_part1.ts 6 > = 7 > 10 8 > ; -1 >Emitted(94, 1) Source(36, 1) + SourceIndex(3) -2 >Emitted(94, 15) Source(36, 15) + SourceIndex(3) -3 >Emitted(94, 16) Source(36, 16) + SourceIndex(3) -4 >Emitted(94, 20) Source(36, 22) + SourceIndex(3) -5 >Emitted(94, 33) Source(36, 35) + SourceIndex(3) -6 >Emitted(94, 36) Source(36, 38) + SourceIndex(3) -7 >Emitted(94, 38) Source(36, 40) + SourceIndex(3) -8 >Emitted(94, 39) Source(36, 41) + SourceIndex(3) +1 >Emitted(95, 1) Source(36, 1) + SourceIndex(3) +2 >Emitted(95, 15) Source(36, 15) + SourceIndex(3) +3 >Emitted(95, 16) Source(36, 16) + SourceIndex(3) +4 >Emitted(95, 20) Source(36, 22) + SourceIndex(3) +5 >Emitted(95, 33) Source(36, 35) + SourceIndex(3) +6 >Emitted(95, 36) Source(36, 38) + SourceIndex(3) +7 >Emitted(95, 38) Source(36, 40) + SourceIndex(3) +8 >Emitted(95, 39) Source(36, 41) + SourceIndex(3) --- >>>/**@internal*/ var internalEnum; 1 > @@ -5228,11 +5233,11 @@ sourceFile:../../../second/second_part1.ts 3 > 4 > enum 5 > internalEnum { a, b, c } -1 >Emitted(95, 1) Source(37, 1) + SourceIndex(3) -2 >Emitted(95, 15) Source(37, 15) + SourceIndex(3) -3 >Emitted(95, 16) Source(37, 16) + SourceIndex(3) -4 >Emitted(95, 20) Source(37, 21) + SourceIndex(3) -5 >Emitted(95, 32) Source(37, 45) + SourceIndex(3) +1 >Emitted(96, 1) Source(37, 1) + SourceIndex(3) +2 >Emitted(96, 15) Source(37, 15) + SourceIndex(3) +3 >Emitted(96, 16) Source(37, 16) + SourceIndex(3) +4 >Emitted(96, 20) Source(37, 21) + SourceIndex(3) +5 >Emitted(96, 32) Source(37, 45) + SourceIndex(3) --- >>>(function (internalEnum) { 1 > @@ -5242,9 +5247,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 >enum 3 > internalEnum -1 >Emitted(96, 1) Source(37, 16) + SourceIndex(3) -2 >Emitted(96, 12) Source(37, 21) + SourceIndex(3) -3 >Emitted(96, 24) Source(37, 33) + SourceIndex(3) +1 >Emitted(97, 1) Source(37, 16) + SourceIndex(3) +2 >Emitted(97, 12) Source(37, 21) + SourceIndex(3) +3 >Emitted(97, 24) Source(37, 33) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^ @@ -5254,9 +5259,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(97, 5) Source(37, 36) + SourceIndex(3) -2 >Emitted(97, 46) Source(37, 37) + SourceIndex(3) -3 >Emitted(97, 47) Source(37, 37) + SourceIndex(3) +1->Emitted(98, 5) Source(37, 36) + SourceIndex(3) +2 >Emitted(98, 46) Source(37, 37) + SourceIndex(3) +3 >Emitted(98, 47) Source(37, 37) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^ @@ -5266,9 +5271,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(98, 5) Source(37, 39) + SourceIndex(3) -2 >Emitted(98, 46) Source(37, 40) + SourceIndex(3) -3 >Emitted(98, 47) Source(37, 40) + SourceIndex(3) +1->Emitted(99, 5) Source(37, 39) + SourceIndex(3) +2 >Emitted(99, 46) Source(37, 40) + SourceIndex(3) +3 >Emitted(99, 47) Source(37, 40) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^ @@ -5277,9 +5282,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(99, 5) Source(37, 42) + SourceIndex(3) -2 >Emitted(99, 46) Source(37, 43) + SourceIndex(3) -3 >Emitted(99, 47) Source(37, 43) + SourceIndex(3) +1->Emitted(100, 5) Source(37, 42) + SourceIndex(3) +2 >Emitted(100, 46) Source(37, 43) + SourceIndex(3) +3 >Emitted(100, 47) Source(37, 43) + SourceIndex(3) --- >>>})(internalEnum || (internalEnum = {})); 1 > @@ -5296,13 +5301,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalEnum 7 > { a, b, c } -1 >Emitted(100, 1) Source(37, 44) + SourceIndex(3) -2 >Emitted(100, 2) Source(37, 45) + SourceIndex(3) -3 >Emitted(100, 4) Source(37, 21) + SourceIndex(3) -4 >Emitted(100, 16) Source(37, 33) + SourceIndex(3) -5 >Emitted(100, 21) Source(37, 21) + SourceIndex(3) -6 >Emitted(100, 33) Source(37, 33) + SourceIndex(3) -7 >Emitted(100, 41) Source(37, 45) + SourceIndex(3) +1 >Emitted(101, 1) Source(37, 44) + SourceIndex(3) +2 >Emitted(101, 2) Source(37, 45) + SourceIndex(3) +3 >Emitted(101, 4) Source(37, 21) + SourceIndex(3) +4 >Emitted(101, 16) Source(37, 33) + SourceIndex(3) +5 >Emitted(101, 21) Source(37, 21) + SourceIndex(3) +6 >Emitted(101, 33) Source(37, 33) + SourceIndex(3) +7 >Emitted(101, 41) Source(37, 45) + SourceIndex(3) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -5312,13 +5317,13 @@ sourceFile:../../../second/second_part2.ts 1 > 2 >^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(101, 1) Source(1, 1) + SourceIndex(4) +1 >Emitted(102, 1) Source(1, 1) + SourceIndex(4) --- >>> function C() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(102, 5) Source(1, 1) + SourceIndex(4) +1->Emitted(103, 5) Source(1, 1) + SourceIndex(4) --- >>> } 1->^^^^ @@ -5330,8 +5335,8 @@ sourceFile:../../../second/second_part2.ts > } > 2 > } -1->Emitted(103, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(103, 6) Source(5, 2) + SourceIndex(4) +1->Emitted(104, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(104, 6) Source(5, 2) + SourceIndex(4) --- >>> C.prototype.doSomething = function () { 1->^^^^ @@ -5341,9 +5346,9 @@ sourceFile:../../../second/second_part2.ts 1-> 2 > doSomething 3 > -1->Emitted(104, 5) Source(2, 5) + SourceIndex(4) -2 >Emitted(104, 28) Source(2, 16) + SourceIndex(4) -3 >Emitted(104, 31) Source(2, 5) + SourceIndex(4) +1->Emitted(105, 5) Source(2, 5) + SourceIndex(4) +2 >Emitted(105, 28) Source(2, 16) + SourceIndex(4) +3 >Emitted(105, 31) Source(2, 5) + SourceIndex(4) --- >>> console.log("something got done"); 1->^^^^^^^^ @@ -5363,14 +5368,14 @@ sourceFile:../../../second/second_part2.ts 6 > "something got done" 7 > ) 8 > ; -1->Emitted(105, 9) Source(3, 9) + SourceIndex(4) -2 >Emitted(105, 16) Source(3, 16) + SourceIndex(4) -3 >Emitted(105, 17) Source(3, 17) + SourceIndex(4) -4 >Emitted(105, 20) Source(3, 20) + SourceIndex(4) -5 >Emitted(105, 21) Source(3, 21) + SourceIndex(4) -6 >Emitted(105, 41) Source(3, 41) + SourceIndex(4) -7 >Emitted(105, 42) Source(3, 42) + SourceIndex(4) -8 >Emitted(105, 43) Source(3, 43) + SourceIndex(4) +1->Emitted(106, 9) Source(3, 9) + SourceIndex(4) +2 >Emitted(106, 16) Source(3, 16) + SourceIndex(4) +3 >Emitted(106, 17) Source(3, 17) + SourceIndex(4) +4 >Emitted(106, 20) Source(3, 20) + SourceIndex(4) +5 >Emitted(106, 21) Source(3, 21) + SourceIndex(4) +6 >Emitted(106, 41) Source(3, 41) + SourceIndex(4) +7 >Emitted(106, 42) Source(3, 42) + SourceIndex(4) +8 >Emitted(106, 43) Source(3, 43) + SourceIndex(4) --- >>> }; 1 >^^^^ @@ -5379,8 +5384,8 @@ sourceFile:../../../second/second_part2.ts 1 > > 2 > } -1 >Emitted(106, 5) Source(4, 5) + SourceIndex(4) -2 >Emitted(106, 6) Source(4, 6) + SourceIndex(4) +1 >Emitted(107, 5) Source(4, 5) + SourceIndex(4) +2 >Emitted(107, 6) Source(4, 6) + SourceIndex(4) --- >>> return C; 1->^^^^ @@ -5388,8 +5393,8 @@ sourceFile:../../../second/second_part2.ts 1-> > 2 > } -1->Emitted(107, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(107, 13) Source(5, 2) + SourceIndex(4) +1->Emitted(108, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(108, 13) Source(5, 2) + SourceIndex(4) --- >>>}()); 1 > @@ -5405,10 +5410,10 @@ sourceFile:../../../second/second_part2.ts > console.log("something got done"); > } > } -1 >Emitted(108, 1) Source(5, 1) + SourceIndex(4) -2 >Emitted(108, 2) Source(5, 2) + SourceIndex(4) -3 >Emitted(108, 2) Source(1, 1) + SourceIndex(4) -4 >Emitted(108, 6) Source(5, 2) + SourceIndex(4) +1 >Emitted(109, 1) Source(5, 1) + SourceIndex(4) +2 >Emitted(109, 2) Source(5, 2) + SourceIndex(4) +3 >Emitted(109, 2) Source(1, 1) + SourceIndex(4) +4 >Emitted(109, 6) Source(5, 2) + SourceIndex(4) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -5432,14 +5437,14 @@ sourceFile:../../third_part1.ts 6 > C 7 > () 8 > ; -1->Emitted(109, 1) Source(1, 1) + SourceIndex(5) -2 >Emitted(109, 5) Source(1, 5) + SourceIndex(5) -3 >Emitted(109, 6) Source(1, 6) + SourceIndex(5) -4 >Emitted(109, 9) Source(1, 9) + SourceIndex(5) -5 >Emitted(109, 13) Source(1, 13) + SourceIndex(5) -6 >Emitted(109, 14) Source(1, 14) + SourceIndex(5) -7 >Emitted(109, 16) Source(1, 16) + SourceIndex(5) -8 >Emitted(109, 17) Source(1, 17) + SourceIndex(5) +1->Emitted(110, 1) Source(1, 1) + SourceIndex(5) +2 >Emitted(110, 5) Source(1, 5) + SourceIndex(5) +3 >Emitted(110, 6) Source(1, 6) + SourceIndex(5) +4 >Emitted(110, 9) Source(1, 9) + SourceIndex(5) +5 >Emitted(110, 13) Source(1, 13) + SourceIndex(5) +6 >Emitted(110, 14) Source(1, 14) + SourceIndex(5) +7 >Emitted(110, 16) Source(1, 16) + SourceIndex(5) +8 >Emitted(110, 17) Source(1, 17) + SourceIndex(5) --- >>>c.doSomething(); 1-> @@ -5456,12 +5461,12 @@ sourceFile:../../third_part1.ts 4 > doSomething 5 > () 6 > ; -1->Emitted(110, 1) Source(2, 1) + SourceIndex(5) -2 >Emitted(110, 2) Source(2, 2) + SourceIndex(5) -3 >Emitted(110, 3) Source(2, 3) + SourceIndex(5) -4 >Emitted(110, 14) Source(2, 14) + SourceIndex(5) -5 >Emitted(110, 16) Source(2, 16) + SourceIndex(5) -6 >Emitted(110, 17) Source(2, 17) + SourceIndex(5) +1->Emitted(111, 1) Source(2, 1) + SourceIndex(5) +2 >Emitted(111, 2) Source(2, 2) + SourceIndex(5) +3 >Emitted(111, 3) Source(2, 3) + SourceIndex(5) +4 >Emitted(111, 14) Source(2, 14) + SourceIndex(5) +5 >Emitted(111, 16) Source(2, 16) + SourceIndex(5) +6 >Emitted(111, 17) Source(2, 17) + SourceIndex(5) --- >>>//# sourceMappingURL=third-output.js.map @@ -5489,20 +5494,20 @@ sourceFile:../../third_part1.ts }, { "pos": 110, - "end": 3545, + "end": 3593, "kind": "prepend", "data": "../../../2/second-output.js", "texts": [ { "pos": 110, - "end": 3545, + "end": 3593, "kind": "text" } ] }, { - "pos": 3545, - "end": 3581, + "pos": 3593, + "end": 3629, "kind": "text" } ] @@ -5561,9 +5566,9 @@ function f() { } ---------------------------------------------------------------------- -prepend: (110-3545):: ../../../2/second-output.js texts:: 1 +prepend: (110-3593):: ../../../2/second-output.js texts:: 1 >>-------------------------------------------------------------------- -text: (110-3545) +text: (110-3593) var N; (function (N) { function f() { @@ -5574,8 +5579,9 @@ var N; var normalC = /** @class */ (function () { /**@internal*/ function normalC() { } - /**@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /**@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /**@internal*/ get: function () { return 10; }, /**@internal*/ set: function (val) { }, enumerable: false, @@ -5668,7 +5674,7 @@ var C = /** @class */ (function () { }()); ---------------------------------------------------------------------- -text: (3545-3581) +text: (3593-3629) var c = new C(); c.doSomething(); diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-when-one-two-three-are-prepended-in-order.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-when-one-two-three-are-prepended-in-order.js index 812a307add2b9..ad8e3bc7dc553 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-when-one-two-three-are-prepended-in-order.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-when-one-two-three-are-prepended-in-order.js @@ -1094,8 +1094,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -1189,7 +1190,7 @@ var C = (function () { //# sourceMappingURL=second-output.js.map //// [/src/2/second-output.js.map] -{"version":3,"file":"second-output.js","sourceRoot":"","sources":["../first/first_PART1.ts","../first/first_part2.ts","../first/first_part3.ts","../second/second_part1.ts","../second/second_part2.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"second-output.js","sourceRoot":"","sources":["../first/first_PART1.ts","../first/first_part2.ts","../first/first_part3.ts","../second/second_part1.ts","../second/second_part2.ts"],"names":[],"mappings":"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"} //// [/src/2/second-output.js.map.baseline.txt] =================================================================== @@ -1490,13 +1491,14 @@ sourceFile:../second/second_part1.ts >>> } 1->^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1->constructor() { 2 > } 1->Emitted(16, 5) Source(14, 35) + SourceIndex(3) 2 >Emitted(16, 6) Source(14, 36) + SourceIndex(3) --- ->>> normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> normalC_prototype.method = function () { }; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^ @@ -1510,13 +1512,13 @@ sourceFile:../second/second_part1.ts 3 > 4 > method() { 5 > } -1->Emitted(17, 5) Source(16, 19) + SourceIndex(3) -2 >Emitted(17, 29) Source(16, 25) + SourceIndex(3) -3 >Emitted(17, 32) Source(16, 19) + SourceIndex(3) -4 >Emitted(17, 46) Source(16, 30) + SourceIndex(3) -5 >Emitted(17, 47) Source(16, 31) + SourceIndex(3) +1->Emitted(18, 5) Source(16, 19) + SourceIndex(3) +2 >Emitted(18, 29) Source(16, 25) + SourceIndex(3) +3 >Emitted(18, 32) Source(16, 19) + SourceIndex(3) +4 >Emitted(18, 46) Source(16, 30) + SourceIndex(3) +5 >Emitted(18, 47) Source(16, 31) + SourceIndex(3) --- ->>> Object.defineProperty(normalC.prototype, "c", { +>>> Object.defineProperty(normalC_prototype, "c", { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -1524,9 +1526,9 @@ sourceFile:../second/second_part1.ts > /*@internal*/ 2 > get 3 > c -1->Emitted(18, 5) Source(17, 19) + SourceIndex(3) -2 >Emitted(18, 27) Source(17, 23) + SourceIndex(3) -3 >Emitted(18, 49) Source(17, 24) + SourceIndex(3) +1->Emitted(19, 5) Source(17, 19) + SourceIndex(3) +2 >Emitted(19, 27) Source(17, 23) + SourceIndex(3) +3 >Emitted(19, 49) Source(17, 24) + SourceIndex(3) --- >>> get: function () { return 10; }, 1 >^^^^^^^^^^^^^ @@ -1543,13 +1545,13 @@ sourceFile:../second/second_part1.ts 5 > ; 6 > 7 > } -1 >Emitted(19, 14) Source(17, 19) + SourceIndex(3) -2 >Emitted(19, 28) Source(17, 29) + SourceIndex(3) -3 >Emitted(19, 35) Source(17, 36) + SourceIndex(3) -4 >Emitted(19, 37) Source(17, 38) + SourceIndex(3) -5 >Emitted(19, 38) Source(17, 39) + SourceIndex(3) -6 >Emitted(19, 39) Source(17, 40) + SourceIndex(3) -7 >Emitted(19, 40) Source(17, 41) + SourceIndex(3) +1 >Emitted(20, 14) Source(17, 19) + SourceIndex(3) +2 >Emitted(20, 28) Source(17, 29) + SourceIndex(3) +3 >Emitted(20, 35) Source(17, 36) + SourceIndex(3) +4 >Emitted(20, 37) Source(17, 38) + SourceIndex(3) +5 >Emitted(20, 38) Source(17, 39) + SourceIndex(3) +6 >Emitted(20, 39) Source(17, 40) + SourceIndex(3) +7 >Emitted(20, 40) Source(17, 41) + SourceIndex(3) --- >>> set: function (val) { }, 1 >^^^^^^^^^^^^^ @@ -1563,11 +1565,11 @@ sourceFile:../second/second_part1.ts 3 > val: number 4 > ) { 5 > } -1 >Emitted(20, 14) Source(18, 19) + SourceIndex(3) -2 >Emitted(20, 24) Source(18, 25) + SourceIndex(3) -3 >Emitted(20, 27) Source(18, 36) + SourceIndex(3) -4 >Emitted(20, 31) Source(18, 40) + SourceIndex(3) -5 >Emitted(20, 32) Source(18, 41) + SourceIndex(3) +1 >Emitted(21, 14) Source(18, 19) + SourceIndex(3) +2 >Emitted(21, 24) Source(18, 25) + SourceIndex(3) +3 >Emitted(21, 27) Source(18, 36) + SourceIndex(3) +4 >Emitted(21, 31) Source(18, 40) + SourceIndex(3) +5 >Emitted(21, 32) Source(18, 41) + SourceIndex(3) --- >>> enumerable: false, >>> configurable: true @@ -1575,7 +1577,7 @@ sourceFile:../second/second_part1.ts 1 >^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(23, 8) Source(17, 41) + SourceIndex(3) +1 >Emitted(24, 8) Source(17, 41) + SourceIndex(3) --- >>> return normalC; 1->^^^^ @@ -1584,8 +1586,8 @@ sourceFile:../second/second_part1.ts > /*@internal*/ set c(val: number) { } > 2 > } -1->Emitted(24, 5) Source(19, 1) + SourceIndex(3) -2 >Emitted(24, 19) Source(19, 2) + SourceIndex(3) +1->Emitted(25, 5) Source(19, 1) + SourceIndex(3) +2 >Emitted(25, 19) Source(19, 2) + SourceIndex(3) --- >>>}()); 1 > @@ -1603,10 +1605,10 @@ sourceFile:../second/second_part1.ts > /*@internal*/ get c() { return 10; } > /*@internal*/ set c(val: number) { } > } -1 >Emitted(25, 1) Source(19, 1) + SourceIndex(3) -2 >Emitted(25, 2) Source(19, 2) + SourceIndex(3) -3 >Emitted(25, 2) Source(13, 1) + SourceIndex(3) -4 >Emitted(25, 6) Source(19, 2) + SourceIndex(3) +1 >Emitted(26, 1) Source(19, 1) + SourceIndex(3) +2 >Emitted(26, 2) Source(19, 2) + SourceIndex(3) +3 >Emitted(26, 2) Source(13, 1) + SourceIndex(3) +4 >Emitted(26, 6) Source(19, 2) + SourceIndex(3) --- >>>var normalN; 1-> @@ -1628,10 +1630,10 @@ sourceFile:../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1->Emitted(26, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(26, 5) Source(20, 11) + SourceIndex(3) -3 >Emitted(26, 12) Source(20, 18) + SourceIndex(3) -4 >Emitted(26, 13) Source(29, 2) + SourceIndex(3) +1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(27, 5) Source(20, 11) + SourceIndex(3) +3 >Emitted(27, 12) Source(20, 18) + SourceIndex(3) +4 >Emitted(27, 13) Source(29, 2) + SourceIndex(3) --- >>>(function (normalN) { 1-> @@ -1641,22 +1643,22 @@ sourceFile:../second/second_part1.ts 1-> 2 >namespace 3 > normalN -1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(27, 12) Source(20, 11) + SourceIndex(3) -3 >Emitted(27, 19) Source(20, 18) + SourceIndex(3) +1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(28, 12) Source(20, 11) + SourceIndex(3) +3 >Emitted(28, 19) Source(20, 18) + SourceIndex(3) --- >>> var C = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { > /*@internal*/ -1->Emitted(28, 5) Source(21, 19) + SourceIndex(3) +1->Emitted(29, 5) Source(21, 19) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(29, 9) Source(21, 19) + SourceIndex(3) +1->Emitted(30, 9) Source(21, 19) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -1664,16 +1666,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(30, 9) Source(21, 36) + SourceIndex(3) -2 >Emitted(30, 10) Source(21, 37) + SourceIndex(3) +1->Emitted(31, 9) Source(21, 36) + SourceIndex(3) +2 >Emitted(31, 10) Source(21, 37) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(31, 9) Source(21, 36) + SourceIndex(3) -2 >Emitted(31, 17) Source(21, 37) + SourceIndex(3) +1->Emitted(32, 9) Source(21, 36) + SourceIndex(3) +2 >Emitted(32, 17) Source(21, 37) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -1685,10 +1687,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(32, 5) Source(21, 36) + SourceIndex(3) -2 >Emitted(32, 6) Source(21, 37) + SourceIndex(3) -3 >Emitted(32, 6) Source(21, 19) + SourceIndex(3) -4 >Emitted(32, 10) Source(21, 37) + SourceIndex(3) +1 >Emitted(33, 5) Source(21, 36) + SourceIndex(3) +2 >Emitted(33, 6) Source(21, 37) + SourceIndex(3) +3 >Emitted(33, 6) Source(21, 19) + SourceIndex(3) +4 >Emitted(33, 10) Source(21, 37) + SourceIndex(3) --- >>> normalN.C = C; 1->^^^^ @@ -1700,10 +1702,10 @@ sourceFile:../second/second_part1.ts 2 > C 3 > { } 4 > -1->Emitted(33, 5) Source(21, 32) + SourceIndex(3) -2 >Emitted(33, 14) Source(21, 33) + SourceIndex(3) -3 >Emitted(33, 18) Source(21, 37) + SourceIndex(3) -4 >Emitted(33, 19) Source(21, 37) + SourceIndex(3) +1->Emitted(34, 5) Source(21, 32) + SourceIndex(3) +2 >Emitted(34, 14) Source(21, 33) + SourceIndex(3) +3 >Emitted(34, 18) Source(21, 37) + SourceIndex(3) +4 >Emitted(34, 19) Source(21, 37) + SourceIndex(3) --- >>> function foo() { } 1->^^^^ @@ -1718,11 +1720,11 @@ sourceFile:../second/second_part1.ts 3 > foo 4 > () { 5 > } -1->Emitted(34, 5) Source(22, 19) + SourceIndex(3) -2 >Emitted(34, 14) Source(22, 35) + SourceIndex(3) -3 >Emitted(34, 17) Source(22, 38) + SourceIndex(3) -4 >Emitted(34, 22) Source(22, 42) + SourceIndex(3) -5 >Emitted(34, 23) Source(22, 43) + SourceIndex(3) +1->Emitted(35, 5) Source(22, 19) + SourceIndex(3) +2 >Emitted(35, 14) Source(22, 35) + SourceIndex(3) +3 >Emitted(35, 17) Source(22, 38) + SourceIndex(3) +4 >Emitted(35, 22) Source(22, 42) + SourceIndex(3) +5 >Emitted(35, 23) Source(22, 43) + SourceIndex(3) --- >>> normalN.foo = foo; 1->^^^^ @@ -1734,10 +1736,10 @@ sourceFile:../second/second_part1.ts 2 > foo 3 > () {} 4 > -1->Emitted(35, 5) Source(22, 35) + SourceIndex(3) -2 >Emitted(35, 16) Source(22, 38) + SourceIndex(3) -3 >Emitted(35, 22) Source(22, 43) + SourceIndex(3) -4 >Emitted(35, 23) Source(22, 43) + SourceIndex(3) +1->Emitted(36, 5) Source(22, 35) + SourceIndex(3) +2 >Emitted(36, 16) Source(22, 38) + SourceIndex(3) +3 >Emitted(36, 22) Source(22, 43) + SourceIndex(3) +4 >Emitted(36, 23) Source(22, 43) + SourceIndex(3) --- >>> var someNamespace; 1->^^^^ @@ -1750,10 +1752,10 @@ sourceFile:../second/second_part1.ts 2 > export namespace 3 > someNamespace 4 > { export class C {} } -1->Emitted(36, 5) Source(23, 19) + SourceIndex(3) -2 >Emitted(36, 9) Source(23, 36) + SourceIndex(3) -3 >Emitted(36, 22) Source(23, 49) + SourceIndex(3) -4 >Emitted(36, 23) Source(23, 71) + SourceIndex(3) +1->Emitted(37, 5) Source(23, 19) + SourceIndex(3) +2 >Emitted(37, 9) Source(23, 36) + SourceIndex(3) +3 >Emitted(37, 22) Source(23, 49) + SourceIndex(3) +4 >Emitted(37, 23) Source(23, 71) + SourceIndex(3) --- >>> (function (someNamespace) { 1->^^^^ @@ -1763,21 +1765,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > export namespace 3 > someNamespace -1->Emitted(37, 5) Source(23, 19) + SourceIndex(3) -2 >Emitted(37, 16) Source(23, 36) + SourceIndex(3) -3 >Emitted(37, 29) Source(23, 49) + SourceIndex(3) +1->Emitted(38, 5) Source(23, 19) + SourceIndex(3) +2 >Emitted(38, 16) Source(23, 36) + SourceIndex(3) +3 >Emitted(38, 29) Source(23, 49) + SourceIndex(3) --- >>> var C = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(38, 9) Source(23, 52) + SourceIndex(3) +1->Emitted(39, 9) Source(23, 52) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(39, 13) Source(23, 52) + SourceIndex(3) +1->Emitted(40, 13) Source(23, 52) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -1785,16 +1787,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(40, 13) Source(23, 68) + SourceIndex(3) -2 >Emitted(40, 14) Source(23, 69) + SourceIndex(3) +1->Emitted(41, 13) Source(23, 68) + SourceIndex(3) +2 >Emitted(41, 14) Source(23, 69) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(41, 13) Source(23, 68) + SourceIndex(3) -2 >Emitted(41, 21) Source(23, 69) + SourceIndex(3) +1->Emitted(42, 13) Source(23, 68) + SourceIndex(3) +2 >Emitted(42, 21) Source(23, 69) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -1806,10 +1808,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(42, 9) Source(23, 68) + SourceIndex(3) -2 >Emitted(42, 10) Source(23, 69) + SourceIndex(3) -3 >Emitted(42, 10) Source(23, 52) + SourceIndex(3) -4 >Emitted(42, 14) Source(23, 69) + SourceIndex(3) +1 >Emitted(43, 9) Source(23, 68) + SourceIndex(3) +2 >Emitted(43, 10) Source(23, 69) + SourceIndex(3) +3 >Emitted(43, 10) Source(23, 52) + SourceIndex(3) +4 >Emitted(43, 14) Source(23, 69) + SourceIndex(3) --- >>> someNamespace.C = C; 1->^^^^^^^^ @@ -1821,10 +1823,10 @@ sourceFile:../second/second_part1.ts 2 > C 3 > {} 4 > -1->Emitted(43, 9) Source(23, 65) + SourceIndex(3) -2 >Emitted(43, 24) Source(23, 66) + SourceIndex(3) -3 >Emitted(43, 28) Source(23, 69) + SourceIndex(3) -4 >Emitted(43, 29) Source(23, 69) + SourceIndex(3) +1->Emitted(44, 9) Source(23, 65) + SourceIndex(3) +2 >Emitted(44, 24) Source(23, 66) + SourceIndex(3) +3 >Emitted(44, 28) Source(23, 69) + SourceIndex(3) +4 >Emitted(44, 29) Source(23, 69) + SourceIndex(3) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^ @@ -1845,15 +1847,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(44, 5) Source(23, 70) + SourceIndex(3) -2 >Emitted(44, 6) Source(23, 71) + SourceIndex(3) -3 >Emitted(44, 8) Source(23, 36) + SourceIndex(3) -4 >Emitted(44, 21) Source(23, 49) + SourceIndex(3) -5 >Emitted(44, 24) Source(23, 36) + SourceIndex(3) -6 >Emitted(44, 45) Source(23, 49) + SourceIndex(3) -7 >Emitted(44, 50) Source(23, 36) + SourceIndex(3) -8 >Emitted(44, 71) Source(23, 49) + SourceIndex(3) -9 >Emitted(44, 79) Source(23, 71) + SourceIndex(3) +1->Emitted(45, 5) Source(23, 70) + SourceIndex(3) +2 >Emitted(45, 6) Source(23, 71) + SourceIndex(3) +3 >Emitted(45, 8) Source(23, 36) + SourceIndex(3) +4 >Emitted(45, 21) Source(23, 49) + SourceIndex(3) +5 >Emitted(45, 24) Source(23, 36) + SourceIndex(3) +6 >Emitted(45, 45) Source(23, 49) + SourceIndex(3) +7 >Emitted(45, 50) Source(23, 36) + SourceIndex(3) +8 >Emitted(45, 71) Source(23, 49) + SourceIndex(3) +9 >Emitted(45, 79) Source(23, 71) + SourceIndex(3) --- >>> var someOther; 1 >^^^^ @@ -1866,10 +1868,10 @@ sourceFile:../second/second_part1.ts 2 > export namespace 3 > someOther 4 > .something { export class someClass {} } -1 >Emitted(45, 5) Source(24, 19) + SourceIndex(3) -2 >Emitted(45, 9) Source(24, 36) + SourceIndex(3) -3 >Emitted(45, 18) Source(24, 45) + SourceIndex(3) -4 >Emitted(45, 19) Source(24, 85) + SourceIndex(3) +1 >Emitted(46, 5) Source(24, 19) + SourceIndex(3) +2 >Emitted(46, 9) Source(24, 36) + SourceIndex(3) +3 >Emitted(46, 18) Source(24, 45) + SourceIndex(3) +4 >Emitted(46, 19) Source(24, 85) + SourceIndex(3) --- >>> (function (someOther) { 1->^^^^ @@ -1878,9 +1880,9 @@ sourceFile:../second/second_part1.ts 1-> 2 > export namespace 3 > someOther -1->Emitted(46, 5) Source(24, 19) + SourceIndex(3) -2 >Emitted(46, 16) Source(24, 36) + SourceIndex(3) -3 >Emitted(46, 25) Source(24, 45) + SourceIndex(3) +1->Emitted(47, 5) Source(24, 19) + SourceIndex(3) +2 >Emitted(47, 16) Source(24, 36) + SourceIndex(3) +3 >Emitted(47, 25) Source(24, 45) + SourceIndex(3) --- >>> var something; 1 >^^^^^^^^ @@ -1892,10 +1894,10 @@ sourceFile:../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(47, 9) Source(24, 46) + SourceIndex(3) -2 >Emitted(47, 13) Source(24, 46) + SourceIndex(3) -3 >Emitted(47, 22) Source(24, 55) + SourceIndex(3) -4 >Emitted(47, 23) Source(24, 85) + SourceIndex(3) +1 >Emitted(48, 9) Source(24, 46) + SourceIndex(3) +2 >Emitted(48, 13) Source(24, 46) + SourceIndex(3) +3 >Emitted(48, 22) Source(24, 55) + SourceIndex(3) +4 >Emitted(48, 23) Source(24, 85) + SourceIndex(3) --- >>> (function (something) { 1->^^^^^^^^ @@ -1905,21 +1907,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(48, 9) Source(24, 46) + SourceIndex(3) -2 >Emitted(48, 20) Source(24, 46) + SourceIndex(3) -3 >Emitted(48, 29) Source(24, 55) + SourceIndex(3) +1->Emitted(49, 9) Source(24, 46) + SourceIndex(3) +2 >Emitted(49, 20) Source(24, 46) + SourceIndex(3) +3 >Emitted(49, 29) Source(24, 55) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(49, 13) Source(24, 58) + SourceIndex(3) +1->Emitted(50, 13) Source(24, 58) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(50, 17) Source(24, 58) + SourceIndex(3) +1->Emitted(51, 17) Source(24, 58) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -1927,16 +1929,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(51, 17) Source(24, 82) + SourceIndex(3) -2 >Emitted(51, 18) Source(24, 83) + SourceIndex(3) +1->Emitted(52, 17) Source(24, 82) + SourceIndex(3) +2 >Emitted(52, 18) Source(24, 83) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(52, 17) Source(24, 82) + SourceIndex(3) -2 >Emitted(52, 33) Source(24, 83) + SourceIndex(3) +1->Emitted(53, 17) Source(24, 82) + SourceIndex(3) +2 >Emitted(53, 33) Source(24, 83) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -1948,10 +1950,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(53, 13) Source(24, 82) + SourceIndex(3) -2 >Emitted(53, 14) Source(24, 83) + SourceIndex(3) -3 >Emitted(53, 14) Source(24, 58) + SourceIndex(3) -4 >Emitted(53, 18) Source(24, 83) + SourceIndex(3) +1 >Emitted(54, 13) Source(24, 82) + SourceIndex(3) +2 >Emitted(54, 14) Source(24, 83) + SourceIndex(3) +3 >Emitted(54, 14) Source(24, 58) + SourceIndex(3) +4 >Emitted(54, 18) Source(24, 83) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -1963,10 +1965,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(54, 13) Source(24, 71) + SourceIndex(3) -2 >Emitted(54, 32) Source(24, 80) + SourceIndex(3) -3 >Emitted(54, 44) Source(24, 83) + SourceIndex(3) -4 >Emitted(54, 45) Source(24, 83) + SourceIndex(3) +1->Emitted(55, 13) Source(24, 71) + SourceIndex(3) +2 >Emitted(55, 32) Source(24, 80) + SourceIndex(3) +3 >Emitted(55, 44) Source(24, 83) + SourceIndex(3) +4 >Emitted(55, 45) Source(24, 83) + SourceIndex(3) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^ @@ -1987,15 +1989,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(55, 9) Source(24, 84) + SourceIndex(3) -2 >Emitted(55, 10) Source(24, 85) + SourceIndex(3) -3 >Emitted(55, 12) Source(24, 46) + SourceIndex(3) -4 >Emitted(55, 21) Source(24, 55) + SourceIndex(3) -5 >Emitted(55, 24) Source(24, 46) + SourceIndex(3) -6 >Emitted(55, 43) Source(24, 55) + SourceIndex(3) -7 >Emitted(55, 48) Source(24, 46) + SourceIndex(3) -8 >Emitted(55, 67) Source(24, 55) + SourceIndex(3) -9 >Emitted(55, 75) Source(24, 85) + SourceIndex(3) +1->Emitted(56, 9) Source(24, 84) + SourceIndex(3) +2 >Emitted(56, 10) Source(24, 85) + SourceIndex(3) +3 >Emitted(56, 12) Source(24, 46) + SourceIndex(3) +4 >Emitted(56, 21) Source(24, 55) + SourceIndex(3) +5 >Emitted(56, 24) Source(24, 46) + SourceIndex(3) +6 >Emitted(56, 43) Source(24, 55) + SourceIndex(3) +7 >Emitted(56, 48) Source(24, 46) + SourceIndex(3) +8 >Emitted(56, 67) Source(24, 55) + SourceIndex(3) +9 >Emitted(56, 75) Source(24, 85) + SourceIndex(3) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^ @@ -2016,15 +2018,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(56, 5) Source(24, 84) + SourceIndex(3) -2 >Emitted(56, 6) Source(24, 85) + SourceIndex(3) -3 >Emitted(56, 8) Source(24, 36) + SourceIndex(3) -4 >Emitted(56, 17) Source(24, 45) + SourceIndex(3) -5 >Emitted(56, 20) Source(24, 36) + SourceIndex(3) -6 >Emitted(56, 37) Source(24, 45) + SourceIndex(3) -7 >Emitted(56, 42) Source(24, 36) + SourceIndex(3) -8 >Emitted(56, 59) Source(24, 45) + SourceIndex(3) -9 >Emitted(56, 67) Source(24, 85) + SourceIndex(3) +1 >Emitted(57, 5) Source(24, 84) + SourceIndex(3) +2 >Emitted(57, 6) Source(24, 85) + SourceIndex(3) +3 >Emitted(57, 8) Source(24, 36) + SourceIndex(3) +4 >Emitted(57, 17) Source(24, 45) + SourceIndex(3) +5 >Emitted(57, 20) Source(24, 36) + SourceIndex(3) +6 >Emitted(57, 37) Source(24, 45) + SourceIndex(3) +7 >Emitted(57, 42) Source(24, 36) + SourceIndex(3) +8 >Emitted(57, 59) Source(24, 45) + SourceIndex(3) +9 >Emitted(57, 67) Source(24, 85) + SourceIndex(3) --- >>> normalN.someImport = someNamespace.C; 1 >^^^^ @@ -2042,13 +2044,13 @@ sourceFile:../second/second_part1.ts 5 > . 6 > C 7 > ; -1 >Emitted(57, 5) Source(25, 33) + SourceIndex(3) -2 >Emitted(57, 23) Source(25, 43) + SourceIndex(3) -3 >Emitted(57, 26) Source(25, 46) + SourceIndex(3) -4 >Emitted(57, 39) Source(25, 59) + SourceIndex(3) -5 >Emitted(57, 40) Source(25, 60) + SourceIndex(3) -6 >Emitted(57, 41) Source(25, 61) + SourceIndex(3) -7 >Emitted(57, 42) Source(25, 62) + SourceIndex(3) +1 >Emitted(58, 5) Source(25, 33) + SourceIndex(3) +2 >Emitted(58, 23) Source(25, 43) + SourceIndex(3) +3 >Emitted(58, 26) Source(25, 46) + SourceIndex(3) +4 >Emitted(58, 39) Source(25, 59) + SourceIndex(3) +5 >Emitted(58, 40) Source(25, 60) + SourceIndex(3) +6 >Emitted(58, 41) Source(25, 61) + SourceIndex(3) +7 >Emitted(58, 42) Source(25, 62) + SourceIndex(3) --- >>> normalN.internalConst = 10; 1 >^^^^ @@ -2063,11 +2065,11 @@ sourceFile:../second/second_part1.ts 3 > = 4 > 10 5 > ; -1 >Emitted(58, 5) Source(27, 32) + SourceIndex(3) -2 >Emitted(58, 26) Source(27, 45) + SourceIndex(3) -3 >Emitted(58, 29) Source(27, 48) + SourceIndex(3) -4 >Emitted(58, 31) Source(27, 50) + SourceIndex(3) -5 >Emitted(58, 32) Source(27, 51) + SourceIndex(3) +1 >Emitted(59, 5) Source(27, 32) + SourceIndex(3) +2 >Emitted(59, 26) Source(27, 45) + SourceIndex(3) +3 >Emitted(59, 29) Source(27, 48) + SourceIndex(3) +4 >Emitted(59, 31) Source(27, 50) + SourceIndex(3) +5 >Emitted(59, 32) Source(27, 51) + SourceIndex(3) --- >>> var internalEnum; 1 >^^^^ @@ -2078,9 +2080,9 @@ sourceFile:../second/second_part1.ts > /*@internal*/ 2 > export enum 3 > internalEnum { a, b, c } -1 >Emitted(59, 5) Source(28, 19) + SourceIndex(3) -2 >Emitted(59, 9) Source(28, 31) + SourceIndex(3) -3 >Emitted(59, 21) Source(28, 55) + SourceIndex(3) +1 >Emitted(60, 5) Source(28, 19) + SourceIndex(3) +2 >Emitted(60, 9) Source(28, 31) + SourceIndex(3) +3 >Emitted(60, 21) Source(28, 55) + SourceIndex(3) --- >>> (function (internalEnum) { 1->^^^^ @@ -2090,9 +2092,9 @@ sourceFile:../second/second_part1.ts 1-> 2 > export enum 3 > internalEnum -1->Emitted(60, 5) Source(28, 19) + SourceIndex(3) -2 >Emitted(60, 16) Source(28, 31) + SourceIndex(3) -3 >Emitted(60, 28) Source(28, 43) + SourceIndex(3) +1->Emitted(61, 5) Source(28, 19) + SourceIndex(3) +2 >Emitted(61, 16) Source(28, 31) + SourceIndex(3) +3 >Emitted(61, 28) Source(28, 43) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -2102,9 +2104,9 @@ sourceFile:../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(61, 9) Source(28, 46) + SourceIndex(3) -2 >Emitted(61, 50) Source(28, 47) + SourceIndex(3) -3 >Emitted(61, 51) Source(28, 47) + SourceIndex(3) +1->Emitted(62, 9) Source(28, 46) + SourceIndex(3) +2 >Emitted(62, 50) Source(28, 47) + SourceIndex(3) +3 >Emitted(62, 51) Source(28, 47) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -2114,9 +2116,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(62, 9) Source(28, 49) + SourceIndex(3) -2 >Emitted(62, 50) Source(28, 50) + SourceIndex(3) -3 >Emitted(62, 51) Source(28, 50) + SourceIndex(3) +1->Emitted(63, 9) Source(28, 49) + SourceIndex(3) +2 >Emitted(63, 50) Source(28, 50) + SourceIndex(3) +3 >Emitted(63, 51) Source(28, 50) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -2126,9 +2128,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(63, 9) Source(28, 52) + SourceIndex(3) -2 >Emitted(63, 50) Source(28, 53) + SourceIndex(3) -3 >Emitted(63, 51) Source(28, 53) + SourceIndex(3) +1->Emitted(64, 9) Source(28, 52) + SourceIndex(3) +2 >Emitted(64, 50) Source(28, 53) + SourceIndex(3) +3 >Emitted(64, 51) Source(28, 53) + SourceIndex(3) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^ @@ -2149,15 +2151,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(64, 5) Source(28, 54) + SourceIndex(3) -2 >Emitted(64, 6) Source(28, 55) + SourceIndex(3) -3 >Emitted(64, 8) Source(28, 31) + SourceIndex(3) -4 >Emitted(64, 20) Source(28, 43) + SourceIndex(3) -5 >Emitted(64, 23) Source(28, 31) + SourceIndex(3) -6 >Emitted(64, 43) Source(28, 43) + SourceIndex(3) -7 >Emitted(64, 48) Source(28, 31) + SourceIndex(3) -8 >Emitted(64, 68) Source(28, 43) + SourceIndex(3) -9 >Emitted(64, 76) Source(28, 55) + SourceIndex(3) +1->Emitted(65, 5) Source(28, 54) + SourceIndex(3) +2 >Emitted(65, 6) Source(28, 55) + SourceIndex(3) +3 >Emitted(65, 8) Source(28, 31) + SourceIndex(3) +4 >Emitted(65, 20) Source(28, 43) + SourceIndex(3) +5 >Emitted(65, 23) Source(28, 31) + SourceIndex(3) +6 >Emitted(65, 43) Source(28, 43) + SourceIndex(3) +7 >Emitted(65, 48) Source(28, 31) + SourceIndex(3) +8 >Emitted(65, 68) Source(28, 43) + SourceIndex(3) +9 >Emitted(65, 76) Source(28, 55) + SourceIndex(3) --- >>>})(normalN || (normalN = {})); 1 > @@ -2185,26 +2187,26 @@ sourceFile:../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(65, 1) Source(29, 1) + SourceIndex(3) -2 >Emitted(65, 2) Source(29, 2) + SourceIndex(3) -3 >Emitted(65, 4) Source(20, 11) + SourceIndex(3) -4 >Emitted(65, 11) Source(20, 18) + SourceIndex(3) -5 >Emitted(65, 16) Source(20, 11) + SourceIndex(3) -6 >Emitted(65, 23) Source(20, 18) + SourceIndex(3) -7 >Emitted(65, 31) Source(29, 2) + SourceIndex(3) +1 >Emitted(66, 1) Source(29, 1) + SourceIndex(3) +2 >Emitted(66, 2) Source(29, 2) + SourceIndex(3) +3 >Emitted(66, 4) Source(20, 11) + SourceIndex(3) +4 >Emitted(66, 11) Source(20, 18) + SourceIndex(3) +5 >Emitted(66, 16) Source(20, 11) + SourceIndex(3) +6 >Emitted(66, 23) Source(20, 18) + SourceIndex(3) +7 >Emitted(66, 31) Source(29, 2) + SourceIndex(3) --- >>>var internalC = (function () { 1-> 2 >^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> >/*@internal*/ -1->Emitted(66, 1) Source(30, 15) + SourceIndex(3) +1->Emitted(67, 1) Source(30, 15) + SourceIndex(3) --- >>> function internalC() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(67, 5) Source(30, 15) + SourceIndex(3) +1->Emitted(68, 5) Source(30, 15) + SourceIndex(3) --- >>> } 1->^^^^ @@ -2212,16 +2214,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->class internalC { 2 > } -1->Emitted(68, 5) Source(30, 32) + SourceIndex(3) -2 >Emitted(68, 6) Source(30, 33) + SourceIndex(3) +1->Emitted(69, 5) Source(30, 32) + SourceIndex(3) +2 >Emitted(69, 6) Source(30, 33) + SourceIndex(3) --- >>> return internalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(69, 5) Source(30, 32) + SourceIndex(3) -2 >Emitted(69, 21) Source(30, 33) + SourceIndex(3) +1->Emitted(70, 5) Source(30, 32) + SourceIndex(3) +2 >Emitted(70, 21) Source(30, 33) + SourceIndex(3) --- >>>}()); 1 > @@ -2233,10 +2235,10 @@ sourceFile:../second/second_part1.ts 2 >} 3 > 4 > class internalC {} -1 >Emitted(70, 1) Source(30, 32) + SourceIndex(3) -2 >Emitted(70, 2) Source(30, 33) + SourceIndex(3) -3 >Emitted(70, 2) Source(30, 15) + SourceIndex(3) -4 >Emitted(70, 6) Source(30, 33) + SourceIndex(3) +1 >Emitted(71, 1) Source(30, 32) + SourceIndex(3) +2 >Emitted(71, 2) Source(30, 33) + SourceIndex(3) +3 >Emitted(71, 2) Source(30, 15) + SourceIndex(3) +4 >Emitted(71, 6) Source(30, 33) + SourceIndex(3) --- >>>function internalfoo() { } 1-> @@ -2250,11 +2252,11 @@ sourceFile:../second/second_part1.ts 3 > internalfoo 4 > () { 5 > } -1->Emitted(71, 1) Source(31, 15) + SourceIndex(3) -2 >Emitted(71, 10) Source(31, 24) + SourceIndex(3) -3 >Emitted(71, 21) Source(31, 35) + SourceIndex(3) -4 >Emitted(71, 26) Source(31, 39) + SourceIndex(3) -5 >Emitted(71, 27) Source(31, 40) + SourceIndex(3) +1->Emitted(72, 1) Source(31, 15) + SourceIndex(3) +2 >Emitted(72, 10) Source(31, 24) + SourceIndex(3) +3 >Emitted(72, 21) Source(31, 35) + SourceIndex(3) +4 >Emitted(72, 26) Source(31, 39) + SourceIndex(3) +5 >Emitted(72, 27) Source(31, 40) + SourceIndex(3) --- >>>var internalNamespace; 1 > @@ -2267,10 +2269,10 @@ sourceFile:../second/second_part1.ts 2 >namespace 3 > internalNamespace 4 > { export class someClass {} } -1 >Emitted(72, 1) Source(32, 15) + SourceIndex(3) -2 >Emitted(72, 5) Source(32, 25) + SourceIndex(3) -3 >Emitted(72, 22) Source(32, 42) + SourceIndex(3) -4 >Emitted(72, 23) Source(32, 72) + SourceIndex(3) +1 >Emitted(73, 1) Source(32, 15) + SourceIndex(3) +2 >Emitted(73, 5) Source(32, 25) + SourceIndex(3) +3 >Emitted(73, 22) Source(32, 42) + SourceIndex(3) +4 >Emitted(73, 23) Source(32, 72) + SourceIndex(3) --- >>>(function (internalNamespace) { 1-> @@ -2280,21 +2282,21 @@ sourceFile:../second/second_part1.ts 1-> 2 >namespace 3 > internalNamespace -1->Emitted(73, 1) Source(32, 15) + SourceIndex(3) -2 >Emitted(73, 12) Source(32, 25) + SourceIndex(3) -3 >Emitted(73, 29) Source(32, 42) + SourceIndex(3) +1->Emitted(74, 1) Source(32, 15) + SourceIndex(3) +2 >Emitted(74, 12) Source(32, 25) + SourceIndex(3) +3 >Emitted(74, 29) Source(32, 42) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(74, 5) Source(32, 45) + SourceIndex(3) +1->Emitted(75, 5) Source(32, 45) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(75, 9) Source(32, 45) + SourceIndex(3) +1->Emitted(76, 9) Source(32, 45) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -2302,16 +2304,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(76, 9) Source(32, 69) + SourceIndex(3) -2 >Emitted(76, 10) Source(32, 70) + SourceIndex(3) +1->Emitted(77, 9) Source(32, 69) + SourceIndex(3) +2 >Emitted(77, 10) Source(32, 70) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(77, 9) Source(32, 69) + SourceIndex(3) -2 >Emitted(77, 25) Source(32, 70) + SourceIndex(3) +1->Emitted(78, 9) Source(32, 69) + SourceIndex(3) +2 >Emitted(78, 25) Source(32, 70) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -2323,10 +2325,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(78, 5) Source(32, 69) + SourceIndex(3) -2 >Emitted(78, 6) Source(32, 70) + SourceIndex(3) -3 >Emitted(78, 6) Source(32, 45) + SourceIndex(3) -4 >Emitted(78, 10) Source(32, 70) + SourceIndex(3) +1 >Emitted(79, 5) Source(32, 69) + SourceIndex(3) +2 >Emitted(79, 6) Source(32, 70) + SourceIndex(3) +3 >Emitted(79, 6) Source(32, 45) + SourceIndex(3) +4 >Emitted(79, 10) Source(32, 70) + SourceIndex(3) --- >>> internalNamespace.someClass = someClass; 1->^^^^ @@ -2338,10 +2340,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(79, 5) Source(32, 58) + SourceIndex(3) -2 >Emitted(79, 32) Source(32, 67) + SourceIndex(3) -3 >Emitted(79, 44) Source(32, 70) + SourceIndex(3) -4 >Emitted(79, 45) Source(32, 70) + SourceIndex(3) +1->Emitted(80, 5) Source(32, 58) + SourceIndex(3) +2 >Emitted(80, 32) Source(32, 67) + SourceIndex(3) +3 >Emitted(80, 44) Source(32, 70) + SourceIndex(3) +4 >Emitted(80, 45) Source(32, 70) + SourceIndex(3) --- >>>})(internalNamespace || (internalNamespace = {})); 1-> @@ -2358,13 +2360,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalNamespace 7 > { export class someClass {} } -1->Emitted(80, 1) Source(32, 71) + SourceIndex(3) -2 >Emitted(80, 2) Source(32, 72) + SourceIndex(3) -3 >Emitted(80, 4) Source(32, 25) + SourceIndex(3) -4 >Emitted(80, 21) Source(32, 42) + SourceIndex(3) -5 >Emitted(80, 26) Source(32, 25) + SourceIndex(3) -6 >Emitted(80, 43) Source(32, 42) + SourceIndex(3) -7 >Emitted(80, 51) Source(32, 72) + SourceIndex(3) +1->Emitted(81, 1) Source(32, 71) + SourceIndex(3) +2 >Emitted(81, 2) Source(32, 72) + SourceIndex(3) +3 >Emitted(81, 4) Source(32, 25) + SourceIndex(3) +4 >Emitted(81, 21) Source(32, 42) + SourceIndex(3) +5 >Emitted(81, 26) Source(32, 25) + SourceIndex(3) +6 >Emitted(81, 43) Source(32, 42) + SourceIndex(3) +7 >Emitted(81, 51) Source(32, 72) + SourceIndex(3) --- >>>var internalOther; 1 > @@ -2377,10 +2379,10 @@ sourceFile:../second/second_part1.ts 2 >namespace 3 > internalOther 4 > .something { export class someClass {} } -1 >Emitted(81, 1) Source(33, 15) + SourceIndex(3) -2 >Emitted(81, 5) Source(33, 25) + SourceIndex(3) -3 >Emitted(81, 18) Source(33, 38) + SourceIndex(3) -4 >Emitted(81, 19) Source(33, 78) + SourceIndex(3) +1 >Emitted(82, 1) Source(33, 15) + SourceIndex(3) +2 >Emitted(82, 5) Source(33, 25) + SourceIndex(3) +3 >Emitted(82, 18) Source(33, 38) + SourceIndex(3) +4 >Emitted(82, 19) Source(33, 78) + SourceIndex(3) --- >>>(function (internalOther) { 1-> @@ -2389,9 +2391,9 @@ sourceFile:../second/second_part1.ts 1-> 2 >namespace 3 > internalOther -1->Emitted(82, 1) Source(33, 15) + SourceIndex(3) -2 >Emitted(82, 12) Source(33, 25) + SourceIndex(3) -3 >Emitted(82, 25) Source(33, 38) + SourceIndex(3) +1->Emitted(83, 1) Source(33, 15) + SourceIndex(3) +2 >Emitted(83, 12) Source(33, 25) + SourceIndex(3) +3 >Emitted(83, 25) Source(33, 38) + SourceIndex(3) --- >>> var something; 1 >^^^^ @@ -2403,10 +2405,10 @@ sourceFile:../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(83, 5) Source(33, 39) + SourceIndex(3) -2 >Emitted(83, 9) Source(33, 39) + SourceIndex(3) -3 >Emitted(83, 18) Source(33, 48) + SourceIndex(3) -4 >Emitted(83, 19) Source(33, 78) + SourceIndex(3) +1 >Emitted(84, 5) Source(33, 39) + SourceIndex(3) +2 >Emitted(84, 9) Source(33, 39) + SourceIndex(3) +3 >Emitted(84, 18) Source(33, 48) + SourceIndex(3) +4 >Emitted(84, 19) Source(33, 78) + SourceIndex(3) --- >>> (function (something) { 1->^^^^ @@ -2416,21 +2418,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(84, 5) Source(33, 39) + SourceIndex(3) -2 >Emitted(84, 16) Source(33, 39) + SourceIndex(3) -3 >Emitted(84, 25) Source(33, 48) + SourceIndex(3) +1->Emitted(85, 5) Source(33, 39) + SourceIndex(3) +2 >Emitted(85, 16) Source(33, 39) + SourceIndex(3) +3 >Emitted(85, 25) Source(33, 48) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(85, 9) Source(33, 51) + SourceIndex(3) +1->Emitted(86, 9) Source(33, 51) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(86, 13) Source(33, 51) + SourceIndex(3) +1->Emitted(87, 13) Source(33, 51) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -2438,16 +2440,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(87, 13) Source(33, 75) + SourceIndex(3) -2 >Emitted(87, 14) Source(33, 76) + SourceIndex(3) +1->Emitted(88, 13) Source(33, 75) + SourceIndex(3) +2 >Emitted(88, 14) Source(33, 76) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(88, 13) Source(33, 75) + SourceIndex(3) -2 >Emitted(88, 29) Source(33, 76) + SourceIndex(3) +1->Emitted(89, 13) Source(33, 75) + SourceIndex(3) +2 >Emitted(89, 29) Source(33, 76) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -2459,10 +2461,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(89, 9) Source(33, 75) + SourceIndex(3) -2 >Emitted(89, 10) Source(33, 76) + SourceIndex(3) -3 >Emitted(89, 10) Source(33, 51) + SourceIndex(3) -4 >Emitted(89, 14) Source(33, 76) + SourceIndex(3) +1 >Emitted(90, 9) Source(33, 75) + SourceIndex(3) +2 >Emitted(90, 10) Source(33, 76) + SourceIndex(3) +3 >Emitted(90, 10) Source(33, 51) + SourceIndex(3) +4 >Emitted(90, 14) Source(33, 76) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^ @@ -2474,10 +2476,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(90, 9) Source(33, 64) + SourceIndex(3) -2 >Emitted(90, 28) Source(33, 73) + SourceIndex(3) -3 >Emitted(90, 40) Source(33, 76) + SourceIndex(3) -4 >Emitted(90, 41) Source(33, 76) + SourceIndex(3) +1->Emitted(91, 9) Source(33, 64) + SourceIndex(3) +2 >Emitted(91, 28) Source(33, 73) + SourceIndex(3) +3 >Emitted(91, 40) Source(33, 76) + SourceIndex(3) +4 >Emitted(91, 41) Source(33, 76) + SourceIndex(3) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^ @@ -2498,15 +2500,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(91, 5) Source(33, 77) + SourceIndex(3) -2 >Emitted(91, 6) Source(33, 78) + SourceIndex(3) -3 >Emitted(91, 8) Source(33, 39) + SourceIndex(3) -4 >Emitted(91, 17) Source(33, 48) + SourceIndex(3) -5 >Emitted(91, 20) Source(33, 39) + SourceIndex(3) -6 >Emitted(91, 43) Source(33, 48) + SourceIndex(3) -7 >Emitted(91, 48) Source(33, 39) + SourceIndex(3) -8 >Emitted(91, 71) Source(33, 48) + SourceIndex(3) -9 >Emitted(91, 79) Source(33, 78) + SourceIndex(3) +1->Emitted(92, 5) Source(33, 77) + SourceIndex(3) +2 >Emitted(92, 6) Source(33, 78) + SourceIndex(3) +3 >Emitted(92, 8) Source(33, 39) + SourceIndex(3) +4 >Emitted(92, 17) Source(33, 48) + SourceIndex(3) +5 >Emitted(92, 20) Source(33, 39) + SourceIndex(3) +6 >Emitted(92, 43) Source(33, 48) + SourceIndex(3) +7 >Emitted(92, 48) Source(33, 39) + SourceIndex(3) +8 >Emitted(92, 71) Source(33, 48) + SourceIndex(3) +9 >Emitted(92, 79) Source(33, 78) + SourceIndex(3) --- >>>})(internalOther || (internalOther = {})); 1 > @@ -2524,13 +2526,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalOther 7 > .something { export class someClass {} } -1 >Emitted(92, 1) Source(33, 77) + SourceIndex(3) -2 >Emitted(92, 2) Source(33, 78) + SourceIndex(3) -3 >Emitted(92, 4) Source(33, 25) + SourceIndex(3) -4 >Emitted(92, 17) Source(33, 38) + SourceIndex(3) -5 >Emitted(92, 22) Source(33, 25) + SourceIndex(3) -6 >Emitted(92, 35) Source(33, 38) + SourceIndex(3) -7 >Emitted(92, 43) Source(33, 78) + SourceIndex(3) +1 >Emitted(93, 1) Source(33, 77) + SourceIndex(3) +2 >Emitted(93, 2) Source(33, 78) + SourceIndex(3) +3 >Emitted(93, 4) Source(33, 25) + SourceIndex(3) +4 >Emitted(93, 17) Source(33, 38) + SourceIndex(3) +5 >Emitted(93, 22) Source(33, 25) + SourceIndex(3) +6 >Emitted(93, 35) Source(33, 38) + SourceIndex(3) +7 >Emitted(93, 43) Source(33, 78) + SourceIndex(3) --- >>>var internalImport = internalNamespace.someClass; 1-> @@ -2550,14 +2552,14 @@ sourceFile:../second/second_part1.ts 6 > . 7 > someClass 8 > ; -1->Emitted(93, 1) Source(34, 15) + SourceIndex(3) -2 >Emitted(93, 5) Source(34, 22) + SourceIndex(3) -3 >Emitted(93, 19) Source(34, 36) + SourceIndex(3) -4 >Emitted(93, 22) Source(34, 39) + SourceIndex(3) -5 >Emitted(93, 39) Source(34, 56) + SourceIndex(3) -6 >Emitted(93, 40) Source(34, 57) + SourceIndex(3) -7 >Emitted(93, 49) Source(34, 66) + SourceIndex(3) -8 >Emitted(93, 50) Source(34, 67) + SourceIndex(3) +1->Emitted(94, 1) Source(34, 15) + SourceIndex(3) +2 >Emitted(94, 5) Source(34, 22) + SourceIndex(3) +3 >Emitted(94, 19) Source(34, 36) + SourceIndex(3) +4 >Emitted(94, 22) Source(34, 39) + SourceIndex(3) +5 >Emitted(94, 39) Source(34, 56) + SourceIndex(3) +6 >Emitted(94, 40) Source(34, 57) + SourceIndex(3) +7 >Emitted(94, 49) Source(34, 66) + SourceIndex(3) +8 >Emitted(94, 50) Source(34, 67) + SourceIndex(3) --- >>>var internalConst = 10; 1 > @@ -2574,12 +2576,12 @@ sourceFile:../second/second_part1.ts 4 > = 5 > 10 6 > ; -1 >Emitted(94, 1) Source(36, 15) + SourceIndex(3) -2 >Emitted(94, 5) Source(36, 21) + SourceIndex(3) -3 >Emitted(94, 18) Source(36, 34) + SourceIndex(3) -4 >Emitted(94, 21) Source(36, 37) + SourceIndex(3) -5 >Emitted(94, 23) Source(36, 39) + SourceIndex(3) -6 >Emitted(94, 24) Source(36, 40) + SourceIndex(3) +1 >Emitted(95, 1) Source(36, 15) + SourceIndex(3) +2 >Emitted(95, 5) Source(36, 21) + SourceIndex(3) +3 >Emitted(95, 18) Source(36, 34) + SourceIndex(3) +4 >Emitted(95, 21) Source(36, 37) + SourceIndex(3) +5 >Emitted(95, 23) Source(36, 39) + SourceIndex(3) +6 >Emitted(95, 24) Source(36, 40) + SourceIndex(3) --- >>>var internalEnum; 1 > @@ -2590,9 +2592,9 @@ sourceFile:../second/second_part1.ts >/*@internal*/ 2 >enum 3 > internalEnum { a, b, c } -1 >Emitted(95, 1) Source(37, 15) + SourceIndex(3) -2 >Emitted(95, 5) Source(37, 20) + SourceIndex(3) -3 >Emitted(95, 17) Source(37, 44) + SourceIndex(3) +1 >Emitted(96, 1) Source(37, 15) + SourceIndex(3) +2 >Emitted(96, 5) Source(37, 20) + SourceIndex(3) +3 >Emitted(96, 17) Source(37, 44) + SourceIndex(3) --- >>>(function (internalEnum) { 1-> @@ -2602,9 +2604,9 @@ sourceFile:../second/second_part1.ts 1-> 2 >enum 3 > internalEnum -1->Emitted(96, 1) Source(37, 15) + SourceIndex(3) -2 >Emitted(96, 12) Source(37, 20) + SourceIndex(3) -3 >Emitted(96, 24) Source(37, 32) + SourceIndex(3) +1->Emitted(97, 1) Source(37, 15) + SourceIndex(3) +2 >Emitted(97, 12) Source(37, 20) + SourceIndex(3) +3 >Emitted(97, 24) Source(37, 32) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^ @@ -2614,9 +2616,9 @@ sourceFile:../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(97, 5) Source(37, 35) + SourceIndex(3) -2 >Emitted(97, 46) Source(37, 36) + SourceIndex(3) -3 >Emitted(97, 47) Source(37, 36) + SourceIndex(3) +1->Emitted(98, 5) Source(37, 35) + SourceIndex(3) +2 >Emitted(98, 46) Source(37, 36) + SourceIndex(3) +3 >Emitted(98, 47) Source(37, 36) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^ @@ -2626,9 +2628,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(98, 5) Source(37, 38) + SourceIndex(3) -2 >Emitted(98, 46) Source(37, 39) + SourceIndex(3) -3 >Emitted(98, 47) Source(37, 39) + SourceIndex(3) +1->Emitted(99, 5) Source(37, 38) + SourceIndex(3) +2 >Emitted(99, 46) Source(37, 39) + SourceIndex(3) +3 >Emitted(99, 47) Source(37, 39) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^ @@ -2637,9 +2639,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(99, 5) Source(37, 41) + SourceIndex(3) -2 >Emitted(99, 46) Source(37, 42) + SourceIndex(3) -3 >Emitted(99, 47) Source(37, 42) + SourceIndex(3) +1->Emitted(100, 5) Source(37, 41) + SourceIndex(3) +2 >Emitted(100, 46) Source(37, 42) + SourceIndex(3) +3 >Emitted(100, 47) Source(37, 42) + SourceIndex(3) --- >>>})(internalEnum || (internalEnum = {})); 1 > @@ -2656,13 +2658,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalEnum 7 > { a, b, c } -1 >Emitted(100, 1) Source(37, 43) + SourceIndex(3) -2 >Emitted(100, 2) Source(37, 44) + SourceIndex(3) -3 >Emitted(100, 4) Source(37, 20) + SourceIndex(3) -4 >Emitted(100, 16) Source(37, 32) + SourceIndex(3) -5 >Emitted(100, 21) Source(37, 20) + SourceIndex(3) -6 >Emitted(100, 33) Source(37, 32) + SourceIndex(3) -7 >Emitted(100, 41) Source(37, 44) + SourceIndex(3) +1 >Emitted(101, 1) Source(37, 43) + SourceIndex(3) +2 >Emitted(101, 2) Source(37, 44) + SourceIndex(3) +3 >Emitted(101, 4) Source(37, 20) + SourceIndex(3) +4 >Emitted(101, 16) Source(37, 32) + SourceIndex(3) +5 >Emitted(101, 21) Source(37, 20) + SourceIndex(3) +6 >Emitted(101, 33) Source(37, 32) + SourceIndex(3) +7 >Emitted(101, 41) Source(37, 44) + SourceIndex(3) --- ------------------------------------------------------------------- emittedFile:/src/2/second-output.js @@ -2672,13 +2674,13 @@ sourceFile:../second/second_part2.ts 1 > 2 >^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(101, 1) Source(1, 1) + SourceIndex(4) +1 >Emitted(102, 1) Source(1, 1) + SourceIndex(4) --- >>> function C() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(102, 5) Source(1, 1) + SourceIndex(4) +1->Emitted(103, 5) Source(1, 1) + SourceIndex(4) --- >>> } 1->^^^^ @@ -2690,8 +2692,8 @@ sourceFile:../second/second_part2.ts > } > 2 > } -1->Emitted(103, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(103, 6) Source(5, 2) + SourceIndex(4) +1->Emitted(104, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(104, 6) Source(5, 2) + SourceIndex(4) --- >>> C.prototype.doSomething = function () { 1->^^^^ @@ -2701,9 +2703,9 @@ sourceFile:../second/second_part2.ts 1-> 2 > doSomething 3 > -1->Emitted(104, 5) Source(2, 5) + SourceIndex(4) -2 >Emitted(104, 28) Source(2, 16) + SourceIndex(4) -3 >Emitted(104, 31) Source(2, 5) + SourceIndex(4) +1->Emitted(105, 5) Source(2, 5) + SourceIndex(4) +2 >Emitted(105, 28) Source(2, 16) + SourceIndex(4) +3 >Emitted(105, 31) Source(2, 5) + SourceIndex(4) --- >>> console.log("something got done"); 1->^^^^^^^^ @@ -2723,14 +2725,14 @@ sourceFile:../second/second_part2.ts 6 > "something got done" 7 > ) 8 > ; -1->Emitted(105, 9) Source(3, 9) + SourceIndex(4) -2 >Emitted(105, 16) Source(3, 16) + SourceIndex(4) -3 >Emitted(105, 17) Source(3, 17) + SourceIndex(4) -4 >Emitted(105, 20) Source(3, 20) + SourceIndex(4) -5 >Emitted(105, 21) Source(3, 21) + SourceIndex(4) -6 >Emitted(105, 41) Source(3, 41) + SourceIndex(4) -7 >Emitted(105, 42) Source(3, 42) + SourceIndex(4) -8 >Emitted(105, 43) Source(3, 43) + SourceIndex(4) +1->Emitted(106, 9) Source(3, 9) + SourceIndex(4) +2 >Emitted(106, 16) Source(3, 16) + SourceIndex(4) +3 >Emitted(106, 17) Source(3, 17) + SourceIndex(4) +4 >Emitted(106, 20) Source(3, 20) + SourceIndex(4) +5 >Emitted(106, 21) Source(3, 21) + SourceIndex(4) +6 >Emitted(106, 41) Source(3, 41) + SourceIndex(4) +7 >Emitted(106, 42) Source(3, 42) + SourceIndex(4) +8 >Emitted(106, 43) Source(3, 43) + SourceIndex(4) --- >>> }; 1 >^^^^ @@ -2739,8 +2741,8 @@ sourceFile:../second/second_part2.ts 1 > > 2 > } -1 >Emitted(106, 5) Source(4, 5) + SourceIndex(4) -2 >Emitted(106, 6) Source(4, 6) + SourceIndex(4) +1 >Emitted(107, 5) Source(4, 5) + SourceIndex(4) +2 >Emitted(107, 6) Source(4, 6) + SourceIndex(4) --- >>> return C; 1->^^^^ @@ -2748,8 +2750,8 @@ sourceFile:../second/second_part2.ts 1-> > 2 > } -1->Emitted(107, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(107, 13) Source(5, 2) + SourceIndex(4) +1->Emitted(108, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(108, 13) Source(5, 2) + SourceIndex(4) --- >>>}()); 1 > @@ -2765,10 +2767,10 @@ sourceFile:../second/second_part2.ts > console.log("something got done"); > } > } -1 >Emitted(108, 1) Source(5, 1) + SourceIndex(4) -2 >Emitted(108, 2) Source(5, 2) + SourceIndex(4) -3 >Emitted(108, 2) Source(1, 1) + SourceIndex(4) -4 >Emitted(108, 6) Source(5, 2) + SourceIndex(4) +1 >Emitted(109, 1) Source(5, 1) + SourceIndex(4) +2 >Emitted(109, 2) Source(5, 2) + SourceIndex(4) +3 >Emitted(109, 2) Source(1, 1) + SourceIndex(4) +4 >Emitted(109, 6) Source(5, 2) + SourceIndex(4) --- >>>//# sourceMappingURL=second-output.js.map @@ -2797,7 +2799,7 @@ sourceFile:../second/second_part2.ts }, { "pos": 110, - "end": 3163, + "end": 3211, "kind": "text" } ] @@ -2878,7 +2880,7 @@ function f() { } ---------------------------------------------------------------------- -text: (110-3163) +text: (110-3211) var N; (function (N) { function f() { @@ -2889,8 +2891,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -3743,8 +3746,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -3840,7 +3844,7 @@ c.doSomething(); //# sourceMappingURL=third-output.js.map //// [/src/third/thirdjs/output/third-output.js.map] -{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} //// [/src/third/thirdjs/output/third-output.js.map.baseline.txt] =================================================================== @@ -4141,13 +4145,14 @@ sourceFile:../../../second/second_part1.ts >>> } 1->^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1->constructor() { 2 > } 1->Emitted(16, 5) Source(14, 35) + SourceIndex(3) 2 >Emitted(16, 6) Source(14, 36) + SourceIndex(3) --- ->>> normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> normalC_prototype.method = function () { }; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^ @@ -4161,13 +4166,13 @@ sourceFile:../../../second/second_part1.ts 3 > 4 > method() { 5 > } -1->Emitted(17, 5) Source(16, 19) + SourceIndex(3) -2 >Emitted(17, 29) Source(16, 25) + SourceIndex(3) -3 >Emitted(17, 32) Source(16, 19) + SourceIndex(3) -4 >Emitted(17, 46) Source(16, 30) + SourceIndex(3) -5 >Emitted(17, 47) Source(16, 31) + SourceIndex(3) +1->Emitted(18, 5) Source(16, 19) + SourceIndex(3) +2 >Emitted(18, 29) Source(16, 25) + SourceIndex(3) +3 >Emitted(18, 32) Source(16, 19) + SourceIndex(3) +4 >Emitted(18, 46) Source(16, 30) + SourceIndex(3) +5 >Emitted(18, 47) Source(16, 31) + SourceIndex(3) --- ->>> Object.defineProperty(normalC.prototype, "c", { +>>> Object.defineProperty(normalC_prototype, "c", { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -4175,9 +4180,9 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ 2 > get 3 > c -1->Emitted(18, 5) Source(17, 19) + SourceIndex(3) -2 >Emitted(18, 27) Source(17, 23) + SourceIndex(3) -3 >Emitted(18, 49) Source(17, 24) + SourceIndex(3) +1->Emitted(19, 5) Source(17, 19) + SourceIndex(3) +2 >Emitted(19, 27) Source(17, 23) + SourceIndex(3) +3 >Emitted(19, 49) Source(17, 24) + SourceIndex(3) --- >>> get: function () { return 10; }, 1 >^^^^^^^^^^^^^ @@ -4194,13 +4199,13 @@ sourceFile:../../../second/second_part1.ts 5 > ; 6 > 7 > } -1 >Emitted(19, 14) Source(17, 19) + SourceIndex(3) -2 >Emitted(19, 28) Source(17, 29) + SourceIndex(3) -3 >Emitted(19, 35) Source(17, 36) + SourceIndex(3) -4 >Emitted(19, 37) Source(17, 38) + SourceIndex(3) -5 >Emitted(19, 38) Source(17, 39) + SourceIndex(3) -6 >Emitted(19, 39) Source(17, 40) + SourceIndex(3) -7 >Emitted(19, 40) Source(17, 41) + SourceIndex(3) +1 >Emitted(20, 14) Source(17, 19) + SourceIndex(3) +2 >Emitted(20, 28) Source(17, 29) + SourceIndex(3) +3 >Emitted(20, 35) Source(17, 36) + SourceIndex(3) +4 >Emitted(20, 37) Source(17, 38) + SourceIndex(3) +5 >Emitted(20, 38) Source(17, 39) + SourceIndex(3) +6 >Emitted(20, 39) Source(17, 40) + SourceIndex(3) +7 >Emitted(20, 40) Source(17, 41) + SourceIndex(3) --- >>> set: function (val) { }, 1 >^^^^^^^^^^^^^ @@ -4214,11 +4219,11 @@ sourceFile:../../../second/second_part1.ts 3 > val: number 4 > ) { 5 > } -1 >Emitted(20, 14) Source(18, 19) + SourceIndex(3) -2 >Emitted(20, 24) Source(18, 25) + SourceIndex(3) -3 >Emitted(20, 27) Source(18, 36) + SourceIndex(3) -4 >Emitted(20, 31) Source(18, 40) + SourceIndex(3) -5 >Emitted(20, 32) Source(18, 41) + SourceIndex(3) +1 >Emitted(21, 14) Source(18, 19) + SourceIndex(3) +2 >Emitted(21, 24) Source(18, 25) + SourceIndex(3) +3 >Emitted(21, 27) Source(18, 36) + SourceIndex(3) +4 >Emitted(21, 31) Source(18, 40) + SourceIndex(3) +5 >Emitted(21, 32) Source(18, 41) + SourceIndex(3) --- >>> enumerable: false, >>> configurable: true @@ -4226,7 +4231,7 @@ sourceFile:../../../second/second_part1.ts 1 >^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(23, 8) Source(17, 41) + SourceIndex(3) +1 >Emitted(24, 8) Source(17, 41) + SourceIndex(3) --- >>> return normalC; 1->^^^^ @@ -4235,8 +4240,8 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ set c(val: number) { } > 2 > } -1->Emitted(24, 5) Source(19, 1) + SourceIndex(3) -2 >Emitted(24, 19) Source(19, 2) + SourceIndex(3) +1->Emitted(25, 5) Source(19, 1) + SourceIndex(3) +2 >Emitted(25, 19) Source(19, 2) + SourceIndex(3) --- >>>}()); 1 > @@ -4254,10 +4259,10 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ get c() { return 10; } > /*@internal*/ set c(val: number) { } > } -1 >Emitted(25, 1) Source(19, 1) + SourceIndex(3) -2 >Emitted(25, 2) Source(19, 2) + SourceIndex(3) -3 >Emitted(25, 2) Source(13, 1) + SourceIndex(3) -4 >Emitted(25, 6) Source(19, 2) + SourceIndex(3) +1 >Emitted(26, 1) Source(19, 1) + SourceIndex(3) +2 >Emitted(26, 2) Source(19, 2) + SourceIndex(3) +3 >Emitted(26, 2) Source(13, 1) + SourceIndex(3) +4 >Emitted(26, 6) Source(19, 2) + SourceIndex(3) --- >>>var normalN; 1-> @@ -4279,10 +4284,10 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1->Emitted(26, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(26, 5) Source(20, 11) + SourceIndex(3) -3 >Emitted(26, 12) Source(20, 18) + SourceIndex(3) -4 >Emitted(26, 13) Source(29, 2) + SourceIndex(3) +1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(27, 5) Source(20, 11) + SourceIndex(3) +3 >Emitted(27, 12) Source(20, 18) + SourceIndex(3) +4 >Emitted(27, 13) Source(29, 2) + SourceIndex(3) --- >>>(function (normalN) { 1-> @@ -4292,22 +4297,22 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > normalN -1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(27, 12) Source(20, 11) + SourceIndex(3) -3 >Emitted(27, 19) Source(20, 18) + SourceIndex(3) +1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(28, 12) Source(20, 11) + SourceIndex(3) +3 >Emitted(28, 19) Source(20, 18) + SourceIndex(3) --- >>> var C = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { > /*@internal*/ -1->Emitted(28, 5) Source(21, 19) + SourceIndex(3) +1->Emitted(29, 5) Source(21, 19) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(29, 9) Source(21, 19) + SourceIndex(3) +1->Emitted(30, 9) Source(21, 19) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -4315,16 +4320,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(30, 9) Source(21, 36) + SourceIndex(3) -2 >Emitted(30, 10) Source(21, 37) + SourceIndex(3) +1->Emitted(31, 9) Source(21, 36) + SourceIndex(3) +2 >Emitted(31, 10) Source(21, 37) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(31, 9) Source(21, 36) + SourceIndex(3) -2 >Emitted(31, 17) Source(21, 37) + SourceIndex(3) +1->Emitted(32, 9) Source(21, 36) + SourceIndex(3) +2 >Emitted(32, 17) Source(21, 37) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -4336,10 +4341,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(32, 5) Source(21, 36) + SourceIndex(3) -2 >Emitted(32, 6) Source(21, 37) + SourceIndex(3) -3 >Emitted(32, 6) Source(21, 19) + SourceIndex(3) -4 >Emitted(32, 10) Source(21, 37) + SourceIndex(3) +1 >Emitted(33, 5) Source(21, 36) + SourceIndex(3) +2 >Emitted(33, 6) Source(21, 37) + SourceIndex(3) +3 >Emitted(33, 6) Source(21, 19) + SourceIndex(3) +4 >Emitted(33, 10) Source(21, 37) + SourceIndex(3) --- >>> normalN.C = C; 1->^^^^ @@ -4351,10 +4356,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > { } 4 > -1->Emitted(33, 5) Source(21, 32) + SourceIndex(3) -2 >Emitted(33, 14) Source(21, 33) + SourceIndex(3) -3 >Emitted(33, 18) Source(21, 37) + SourceIndex(3) -4 >Emitted(33, 19) Source(21, 37) + SourceIndex(3) +1->Emitted(34, 5) Source(21, 32) + SourceIndex(3) +2 >Emitted(34, 14) Source(21, 33) + SourceIndex(3) +3 >Emitted(34, 18) Source(21, 37) + SourceIndex(3) +4 >Emitted(34, 19) Source(21, 37) + SourceIndex(3) --- >>> function foo() { } 1->^^^^ @@ -4369,11 +4374,11 @@ sourceFile:../../../second/second_part1.ts 3 > foo 4 > () { 5 > } -1->Emitted(34, 5) Source(22, 19) + SourceIndex(3) -2 >Emitted(34, 14) Source(22, 35) + SourceIndex(3) -3 >Emitted(34, 17) Source(22, 38) + SourceIndex(3) -4 >Emitted(34, 22) Source(22, 42) + SourceIndex(3) -5 >Emitted(34, 23) Source(22, 43) + SourceIndex(3) +1->Emitted(35, 5) Source(22, 19) + SourceIndex(3) +2 >Emitted(35, 14) Source(22, 35) + SourceIndex(3) +3 >Emitted(35, 17) Source(22, 38) + SourceIndex(3) +4 >Emitted(35, 22) Source(22, 42) + SourceIndex(3) +5 >Emitted(35, 23) Source(22, 43) + SourceIndex(3) --- >>> normalN.foo = foo; 1->^^^^ @@ -4385,10 +4390,10 @@ sourceFile:../../../second/second_part1.ts 2 > foo 3 > () {} 4 > -1->Emitted(35, 5) Source(22, 35) + SourceIndex(3) -2 >Emitted(35, 16) Source(22, 38) + SourceIndex(3) -3 >Emitted(35, 22) Source(22, 43) + SourceIndex(3) -4 >Emitted(35, 23) Source(22, 43) + SourceIndex(3) +1->Emitted(36, 5) Source(22, 35) + SourceIndex(3) +2 >Emitted(36, 16) Source(22, 38) + SourceIndex(3) +3 >Emitted(36, 22) Source(22, 43) + SourceIndex(3) +4 >Emitted(36, 23) Source(22, 43) + SourceIndex(3) --- >>> var someNamespace; 1->^^^^ @@ -4401,10 +4406,10 @@ sourceFile:../../../second/second_part1.ts 2 > export namespace 3 > someNamespace 4 > { export class C {} } -1->Emitted(36, 5) Source(23, 19) + SourceIndex(3) -2 >Emitted(36, 9) Source(23, 36) + SourceIndex(3) -3 >Emitted(36, 22) Source(23, 49) + SourceIndex(3) -4 >Emitted(36, 23) Source(23, 71) + SourceIndex(3) +1->Emitted(37, 5) Source(23, 19) + SourceIndex(3) +2 >Emitted(37, 9) Source(23, 36) + SourceIndex(3) +3 >Emitted(37, 22) Source(23, 49) + SourceIndex(3) +4 >Emitted(37, 23) Source(23, 71) + SourceIndex(3) --- >>> (function (someNamespace) { 1->^^^^ @@ -4414,21 +4419,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > export namespace 3 > someNamespace -1->Emitted(37, 5) Source(23, 19) + SourceIndex(3) -2 >Emitted(37, 16) Source(23, 36) + SourceIndex(3) -3 >Emitted(37, 29) Source(23, 49) + SourceIndex(3) +1->Emitted(38, 5) Source(23, 19) + SourceIndex(3) +2 >Emitted(38, 16) Source(23, 36) + SourceIndex(3) +3 >Emitted(38, 29) Source(23, 49) + SourceIndex(3) --- >>> var C = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(38, 9) Source(23, 52) + SourceIndex(3) +1->Emitted(39, 9) Source(23, 52) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(39, 13) Source(23, 52) + SourceIndex(3) +1->Emitted(40, 13) Source(23, 52) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -4436,16 +4441,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(40, 13) Source(23, 68) + SourceIndex(3) -2 >Emitted(40, 14) Source(23, 69) + SourceIndex(3) +1->Emitted(41, 13) Source(23, 68) + SourceIndex(3) +2 >Emitted(41, 14) Source(23, 69) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(41, 13) Source(23, 68) + SourceIndex(3) -2 >Emitted(41, 21) Source(23, 69) + SourceIndex(3) +1->Emitted(42, 13) Source(23, 68) + SourceIndex(3) +2 >Emitted(42, 21) Source(23, 69) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -4457,10 +4462,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(42, 9) Source(23, 68) + SourceIndex(3) -2 >Emitted(42, 10) Source(23, 69) + SourceIndex(3) -3 >Emitted(42, 10) Source(23, 52) + SourceIndex(3) -4 >Emitted(42, 14) Source(23, 69) + SourceIndex(3) +1 >Emitted(43, 9) Source(23, 68) + SourceIndex(3) +2 >Emitted(43, 10) Source(23, 69) + SourceIndex(3) +3 >Emitted(43, 10) Source(23, 52) + SourceIndex(3) +4 >Emitted(43, 14) Source(23, 69) + SourceIndex(3) --- >>> someNamespace.C = C; 1->^^^^^^^^ @@ -4472,10 +4477,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > {} 4 > -1->Emitted(43, 9) Source(23, 65) + SourceIndex(3) -2 >Emitted(43, 24) Source(23, 66) + SourceIndex(3) -3 >Emitted(43, 28) Source(23, 69) + SourceIndex(3) -4 >Emitted(43, 29) Source(23, 69) + SourceIndex(3) +1->Emitted(44, 9) Source(23, 65) + SourceIndex(3) +2 >Emitted(44, 24) Source(23, 66) + SourceIndex(3) +3 >Emitted(44, 28) Source(23, 69) + SourceIndex(3) +4 >Emitted(44, 29) Source(23, 69) + SourceIndex(3) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^ @@ -4496,15 +4501,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(44, 5) Source(23, 70) + SourceIndex(3) -2 >Emitted(44, 6) Source(23, 71) + SourceIndex(3) -3 >Emitted(44, 8) Source(23, 36) + SourceIndex(3) -4 >Emitted(44, 21) Source(23, 49) + SourceIndex(3) -5 >Emitted(44, 24) Source(23, 36) + SourceIndex(3) -6 >Emitted(44, 45) Source(23, 49) + SourceIndex(3) -7 >Emitted(44, 50) Source(23, 36) + SourceIndex(3) -8 >Emitted(44, 71) Source(23, 49) + SourceIndex(3) -9 >Emitted(44, 79) Source(23, 71) + SourceIndex(3) +1->Emitted(45, 5) Source(23, 70) + SourceIndex(3) +2 >Emitted(45, 6) Source(23, 71) + SourceIndex(3) +3 >Emitted(45, 8) Source(23, 36) + SourceIndex(3) +4 >Emitted(45, 21) Source(23, 49) + SourceIndex(3) +5 >Emitted(45, 24) Source(23, 36) + SourceIndex(3) +6 >Emitted(45, 45) Source(23, 49) + SourceIndex(3) +7 >Emitted(45, 50) Source(23, 36) + SourceIndex(3) +8 >Emitted(45, 71) Source(23, 49) + SourceIndex(3) +9 >Emitted(45, 79) Source(23, 71) + SourceIndex(3) --- >>> var someOther; 1 >^^^^ @@ -4517,10 +4522,10 @@ sourceFile:../../../second/second_part1.ts 2 > export namespace 3 > someOther 4 > .something { export class someClass {} } -1 >Emitted(45, 5) Source(24, 19) + SourceIndex(3) -2 >Emitted(45, 9) Source(24, 36) + SourceIndex(3) -3 >Emitted(45, 18) Source(24, 45) + SourceIndex(3) -4 >Emitted(45, 19) Source(24, 85) + SourceIndex(3) +1 >Emitted(46, 5) Source(24, 19) + SourceIndex(3) +2 >Emitted(46, 9) Source(24, 36) + SourceIndex(3) +3 >Emitted(46, 18) Source(24, 45) + SourceIndex(3) +4 >Emitted(46, 19) Source(24, 85) + SourceIndex(3) --- >>> (function (someOther) { 1->^^^^ @@ -4529,9 +4534,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > export namespace 3 > someOther -1->Emitted(46, 5) Source(24, 19) + SourceIndex(3) -2 >Emitted(46, 16) Source(24, 36) + SourceIndex(3) -3 >Emitted(46, 25) Source(24, 45) + SourceIndex(3) +1->Emitted(47, 5) Source(24, 19) + SourceIndex(3) +2 >Emitted(47, 16) Source(24, 36) + SourceIndex(3) +3 >Emitted(47, 25) Source(24, 45) + SourceIndex(3) --- >>> var something; 1 >^^^^^^^^ @@ -4543,10 +4548,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(47, 9) Source(24, 46) + SourceIndex(3) -2 >Emitted(47, 13) Source(24, 46) + SourceIndex(3) -3 >Emitted(47, 22) Source(24, 55) + SourceIndex(3) -4 >Emitted(47, 23) Source(24, 85) + SourceIndex(3) +1 >Emitted(48, 9) Source(24, 46) + SourceIndex(3) +2 >Emitted(48, 13) Source(24, 46) + SourceIndex(3) +3 >Emitted(48, 22) Source(24, 55) + SourceIndex(3) +4 >Emitted(48, 23) Source(24, 85) + SourceIndex(3) --- >>> (function (something) { 1->^^^^^^^^ @@ -4556,21 +4561,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(48, 9) Source(24, 46) + SourceIndex(3) -2 >Emitted(48, 20) Source(24, 46) + SourceIndex(3) -3 >Emitted(48, 29) Source(24, 55) + SourceIndex(3) +1->Emitted(49, 9) Source(24, 46) + SourceIndex(3) +2 >Emitted(49, 20) Source(24, 46) + SourceIndex(3) +3 >Emitted(49, 29) Source(24, 55) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(49, 13) Source(24, 58) + SourceIndex(3) +1->Emitted(50, 13) Source(24, 58) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(50, 17) Source(24, 58) + SourceIndex(3) +1->Emitted(51, 17) Source(24, 58) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -4578,16 +4583,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(51, 17) Source(24, 82) + SourceIndex(3) -2 >Emitted(51, 18) Source(24, 83) + SourceIndex(3) +1->Emitted(52, 17) Source(24, 82) + SourceIndex(3) +2 >Emitted(52, 18) Source(24, 83) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(52, 17) Source(24, 82) + SourceIndex(3) -2 >Emitted(52, 33) Source(24, 83) + SourceIndex(3) +1->Emitted(53, 17) Source(24, 82) + SourceIndex(3) +2 >Emitted(53, 33) Source(24, 83) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -4599,10 +4604,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(53, 13) Source(24, 82) + SourceIndex(3) -2 >Emitted(53, 14) Source(24, 83) + SourceIndex(3) -3 >Emitted(53, 14) Source(24, 58) + SourceIndex(3) -4 >Emitted(53, 18) Source(24, 83) + SourceIndex(3) +1 >Emitted(54, 13) Source(24, 82) + SourceIndex(3) +2 >Emitted(54, 14) Source(24, 83) + SourceIndex(3) +3 >Emitted(54, 14) Source(24, 58) + SourceIndex(3) +4 >Emitted(54, 18) Source(24, 83) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -4614,10 +4619,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(54, 13) Source(24, 71) + SourceIndex(3) -2 >Emitted(54, 32) Source(24, 80) + SourceIndex(3) -3 >Emitted(54, 44) Source(24, 83) + SourceIndex(3) -4 >Emitted(54, 45) Source(24, 83) + SourceIndex(3) +1->Emitted(55, 13) Source(24, 71) + SourceIndex(3) +2 >Emitted(55, 32) Source(24, 80) + SourceIndex(3) +3 >Emitted(55, 44) Source(24, 83) + SourceIndex(3) +4 >Emitted(55, 45) Source(24, 83) + SourceIndex(3) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^ @@ -4638,15 +4643,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(55, 9) Source(24, 84) + SourceIndex(3) -2 >Emitted(55, 10) Source(24, 85) + SourceIndex(3) -3 >Emitted(55, 12) Source(24, 46) + SourceIndex(3) -4 >Emitted(55, 21) Source(24, 55) + SourceIndex(3) -5 >Emitted(55, 24) Source(24, 46) + SourceIndex(3) -6 >Emitted(55, 43) Source(24, 55) + SourceIndex(3) -7 >Emitted(55, 48) Source(24, 46) + SourceIndex(3) -8 >Emitted(55, 67) Source(24, 55) + SourceIndex(3) -9 >Emitted(55, 75) Source(24, 85) + SourceIndex(3) +1->Emitted(56, 9) Source(24, 84) + SourceIndex(3) +2 >Emitted(56, 10) Source(24, 85) + SourceIndex(3) +3 >Emitted(56, 12) Source(24, 46) + SourceIndex(3) +4 >Emitted(56, 21) Source(24, 55) + SourceIndex(3) +5 >Emitted(56, 24) Source(24, 46) + SourceIndex(3) +6 >Emitted(56, 43) Source(24, 55) + SourceIndex(3) +7 >Emitted(56, 48) Source(24, 46) + SourceIndex(3) +8 >Emitted(56, 67) Source(24, 55) + SourceIndex(3) +9 >Emitted(56, 75) Source(24, 85) + SourceIndex(3) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^ @@ -4667,15 +4672,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(56, 5) Source(24, 84) + SourceIndex(3) -2 >Emitted(56, 6) Source(24, 85) + SourceIndex(3) -3 >Emitted(56, 8) Source(24, 36) + SourceIndex(3) -4 >Emitted(56, 17) Source(24, 45) + SourceIndex(3) -5 >Emitted(56, 20) Source(24, 36) + SourceIndex(3) -6 >Emitted(56, 37) Source(24, 45) + SourceIndex(3) -7 >Emitted(56, 42) Source(24, 36) + SourceIndex(3) -8 >Emitted(56, 59) Source(24, 45) + SourceIndex(3) -9 >Emitted(56, 67) Source(24, 85) + SourceIndex(3) +1 >Emitted(57, 5) Source(24, 84) + SourceIndex(3) +2 >Emitted(57, 6) Source(24, 85) + SourceIndex(3) +3 >Emitted(57, 8) Source(24, 36) + SourceIndex(3) +4 >Emitted(57, 17) Source(24, 45) + SourceIndex(3) +5 >Emitted(57, 20) Source(24, 36) + SourceIndex(3) +6 >Emitted(57, 37) Source(24, 45) + SourceIndex(3) +7 >Emitted(57, 42) Source(24, 36) + SourceIndex(3) +8 >Emitted(57, 59) Source(24, 45) + SourceIndex(3) +9 >Emitted(57, 67) Source(24, 85) + SourceIndex(3) --- >>> normalN.someImport = someNamespace.C; 1 >^^^^ @@ -4693,13 +4698,13 @@ sourceFile:../../../second/second_part1.ts 5 > . 6 > C 7 > ; -1 >Emitted(57, 5) Source(25, 33) + SourceIndex(3) -2 >Emitted(57, 23) Source(25, 43) + SourceIndex(3) -3 >Emitted(57, 26) Source(25, 46) + SourceIndex(3) -4 >Emitted(57, 39) Source(25, 59) + SourceIndex(3) -5 >Emitted(57, 40) Source(25, 60) + SourceIndex(3) -6 >Emitted(57, 41) Source(25, 61) + SourceIndex(3) -7 >Emitted(57, 42) Source(25, 62) + SourceIndex(3) +1 >Emitted(58, 5) Source(25, 33) + SourceIndex(3) +2 >Emitted(58, 23) Source(25, 43) + SourceIndex(3) +3 >Emitted(58, 26) Source(25, 46) + SourceIndex(3) +4 >Emitted(58, 39) Source(25, 59) + SourceIndex(3) +5 >Emitted(58, 40) Source(25, 60) + SourceIndex(3) +6 >Emitted(58, 41) Source(25, 61) + SourceIndex(3) +7 >Emitted(58, 42) Source(25, 62) + SourceIndex(3) --- >>> normalN.internalConst = 10; 1 >^^^^ @@ -4714,11 +4719,11 @@ sourceFile:../../../second/second_part1.ts 3 > = 4 > 10 5 > ; -1 >Emitted(58, 5) Source(27, 32) + SourceIndex(3) -2 >Emitted(58, 26) Source(27, 45) + SourceIndex(3) -3 >Emitted(58, 29) Source(27, 48) + SourceIndex(3) -4 >Emitted(58, 31) Source(27, 50) + SourceIndex(3) -5 >Emitted(58, 32) Source(27, 51) + SourceIndex(3) +1 >Emitted(59, 5) Source(27, 32) + SourceIndex(3) +2 >Emitted(59, 26) Source(27, 45) + SourceIndex(3) +3 >Emitted(59, 29) Source(27, 48) + SourceIndex(3) +4 >Emitted(59, 31) Source(27, 50) + SourceIndex(3) +5 >Emitted(59, 32) Source(27, 51) + SourceIndex(3) --- >>> var internalEnum; 1 >^^^^ @@ -4729,9 +4734,9 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ 2 > export enum 3 > internalEnum { a, b, c } -1 >Emitted(59, 5) Source(28, 19) + SourceIndex(3) -2 >Emitted(59, 9) Source(28, 31) + SourceIndex(3) -3 >Emitted(59, 21) Source(28, 55) + SourceIndex(3) +1 >Emitted(60, 5) Source(28, 19) + SourceIndex(3) +2 >Emitted(60, 9) Source(28, 31) + SourceIndex(3) +3 >Emitted(60, 21) Source(28, 55) + SourceIndex(3) --- >>> (function (internalEnum) { 1->^^^^ @@ -4741,9 +4746,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > export enum 3 > internalEnum -1->Emitted(60, 5) Source(28, 19) + SourceIndex(3) -2 >Emitted(60, 16) Source(28, 31) + SourceIndex(3) -3 >Emitted(60, 28) Source(28, 43) + SourceIndex(3) +1->Emitted(61, 5) Source(28, 19) + SourceIndex(3) +2 >Emitted(61, 16) Source(28, 31) + SourceIndex(3) +3 >Emitted(61, 28) Source(28, 43) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -4753,9 +4758,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(61, 9) Source(28, 46) + SourceIndex(3) -2 >Emitted(61, 50) Source(28, 47) + SourceIndex(3) -3 >Emitted(61, 51) Source(28, 47) + SourceIndex(3) +1->Emitted(62, 9) Source(28, 46) + SourceIndex(3) +2 >Emitted(62, 50) Source(28, 47) + SourceIndex(3) +3 >Emitted(62, 51) Source(28, 47) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -4765,9 +4770,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(62, 9) Source(28, 49) + SourceIndex(3) -2 >Emitted(62, 50) Source(28, 50) + SourceIndex(3) -3 >Emitted(62, 51) Source(28, 50) + SourceIndex(3) +1->Emitted(63, 9) Source(28, 49) + SourceIndex(3) +2 >Emitted(63, 50) Source(28, 50) + SourceIndex(3) +3 >Emitted(63, 51) Source(28, 50) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -4777,9 +4782,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(63, 9) Source(28, 52) + SourceIndex(3) -2 >Emitted(63, 50) Source(28, 53) + SourceIndex(3) -3 >Emitted(63, 51) Source(28, 53) + SourceIndex(3) +1->Emitted(64, 9) Source(28, 52) + SourceIndex(3) +2 >Emitted(64, 50) Source(28, 53) + SourceIndex(3) +3 >Emitted(64, 51) Source(28, 53) + SourceIndex(3) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^ @@ -4800,15 +4805,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(64, 5) Source(28, 54) + SourceIndex(3) -2 >Emitted(64, 6) Source(28, 55) + SourceIndex(3) -3 >Emitted(64, 8) Source(28, 31) + SourceIndex(3) -4 >Emitted(64, 20) Source(28, 43) + SourceIndex(3) -5 >Emitted(64, 23) Source(28, 31) + SourceIndex(3) -6 >Emitted(64, 43) Source(28, 43) + SourceIndex(3) -7 >Emitted(64, 48) Source(28, 31) + SourceIndex(3) -8 >Emitted(64, 68) Source(28, 43) + SourceIndex(3) -9 >Emitted(64, 76) Source(28, 55) + SourceIndex(3) +1->Emitted(65, 5) Source(28, 54) + SourceIndex(3) +2 >Emitted(65, 6) Source(28, 55) + SourceIndex(3) +3 >Emitted(65, 8) Source(28, 31) + SourceIndex(3) +4 >Emitted(65, 20) Source(28, 43) + SourceIndex(3) +5 >Emitted(65, 23) Source(28, 31) + SourceIndex(3) +6 >Emitted(65, 43) Source(28, 43) + SourceIndex(3) +7 >Emitted(65, 48) Source(28, 31) + SourceIndex(3) +8 >Emitted(65, 68) Source(28, 43) + SourceIndex(3) +9 >Emitted(65, 76) Source(28, 55) + SourceIndex(3) --- >>>})(normalN || (normalN = {})); 1 > @@ -4836,26 +4841,26 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(65, 1) Source(29, 1) + SourceIndex(3) -2 >Emitted(65, 2) Source(29, 2) + SourceIndex(3) -3 >Emitted(65, 4) Source(20, 11) + SourceIndex(3) -4 >Emitted(65, 11) Source(20, 18) + SourceIndex(3) -5 >Emitted(65, 16) Source(20, 11) + SourceIndex(3) -6 >Emitted(65, 23) Source(20, 18) + SourceIndex(3) -7 >Emitted(65, 31) Source(29, 2) + SourceIndex(3) +1 >Emitted(66, 1) Source(29, 1) + SourceIndex(3) +2 >Emitted(66, 2) Source(29, 2) + SourceIndex(3) +3 >Emitted(66, 4) Source(20, 11) + SourceIndex(3) +4 >Emitted(66, 11) Source(20, 18) + SourceIndex(3) +5 >Emitted(66, 16) Source(20, 11) + SourceIndex(3) +6 >Emitted(66, 23) Source(20, 18) + SourceIndex(3) +7 >Emitted(66, 31) Source(29, 2) + SourceIndex(3) --- >>>var internalC = (function () { 1-> 2 >^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> >/*@internal*/ -1->Emitted(66, 1) Source(30, 15) + SourceIndex(3) +1->Emitted(67, 1) Source(30, 15) + SourceIndex(3) --- >>> function internalC() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(67, 5) Source(30, 15) + SourceIndex(3) +1->Emitted(68, 5) Source(30, 15) + SourceIndex(3) --- >>> } 1->^^^^ @@ -4863,16 +4868,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->class internalC { 2 > } -1->Emitted(68, 5) Source(30, 32) + SourceIndex(3) -2 >Emitted(68, 6) Source(30, 33) + SourceIndex(3) +1->Emitted(69, 5) Source(30, 32) + SourceIndex(3) +2 >Emitted(69, 6) Source(30, 33) + SourceIndex(3) --- >>> return internalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(69, 5) Source(30, 32) + SourceIndex(3) -2 >Emitted(69, 21) Source(30, 33) + SourceIndex(3) +1->Emitted(70, 5) Source(30, 32) + SourceIndex(3) +2 >Emitted(70, 21) Source(30, 33) + SourceIndex(3) --- >>>}()); 1 > @@ -4884,10 +4889,10 @@ sourceFile:../../../second/second_part1.ts 2 >} 3 > 4 > class internalC {} -1 >Emitted(70, 1) Source(30, 32) + SourceIndex(3) -2 >Emitted(70, 2) Source(30, 33) + SourceIndex(3) -3 >Emitted(70, 2) Source(30, 15) + SourceIndex(3) -4 >Emitted(70, 6) Source(30, 33) + SourceIndex(3) +1 >Emitted(71, 1) Source(30, 32) + SourceIndex(3) +2 >Emitted(71, 2) Source(30, 33) + SourceIndex(3) +3 >Emitted(71, 2) Source(30, 15) + SourceIndex(3) +4 >Emitted(71, 6) Source(30, 33) + SourceIndex(3) --- >>>function internalfoo() { } 1-> @@ -4901,11 +4906,11 @@ sourceFile:../../../second/second_part1.ts 3 > internalfoo 4 > () { 5 > } -1->Emitted(71, 1) Source(31, 15) + SourceIndex(3) -2 >Emitted(71, 10) Source(31, 24) + SourceIndex(3) -3 >Emitted(71, 21) Source(31, 35) + SourceIndex(3) -4 >Emitted(71, 26) Source(31, 39) + SourceIndex(3) -5 >Emitted(71, 27) Source(31, 40) + SourceIndex(3) +1->Emitted(72, 1) Source(31, 15) + SourceIndex(3) +2 >Emitted(72, 10) Source(31, 24) + SourceIndex(3) +3 >Emitted(72, 21) Source(31, 35) + SourceIndex(3) +4 >Emitted(72, 26) Source(31, 39) + SourceIndex(3) +5 >Emitted(72, 27) Source(31, 40) + SourceIndex(3) --- >>>var internalNamespace; 1 > @@ -4918,10 +4923,10 @@ sourceFile:../../../second/second_part1.ts 2 >namespace 3 > internalNamespace 4 > { export class someClass {} } -1 >Emitted(72, 1) Source(32, 15) + SourceIndex(3) -2 >Emitted(72, 5) Source(32, 25) + SourceIndex(3) -3 >Emitted(72, 22) Source(32, 42) + SourceIndex(3) -4 >Emitted(72, 23) Source(32, 72) + SourceIndex(3) +1 >Emitted(73, 1) Source(32, 15) + SourceIndex(3) +2 >Emitted(73, 5) Source(32, 25) + SourceIndex(3) +3 >Emitted(73, 22) Source(32, 42) + SourceIndex(3) +4 >Emitted(73, 23) Source(32, 72) + SourceIndex(3) --- >>>(function (internalNamespace) { 1-> @@ -4931,21 +4936,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > internalNamespace -1->Emitted(73, 1) Source(32, 15) + SourceIndex(3) -2 >Emitted(73, 12) Source(32, 25) + SourceIndex(3) -3 >Emitted(73, 29) Source(32, 42) + SourceIndex(3) +1->Emitted(74, 1) Source(32, 15) + SourceIndex(3) +2 >Emitted(74, 12) Source(32, 25) + SourceIndex(3) +3 >Emitted(74, 29) Source(32, 42) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(74, 5) Source(32, 45) + SourceIndex(3) +1->Emitted(75, 5) Source(32, 45) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(75, 9) Source(32, 45) + SourceIndex(3) +1->Emitted(76, 9) Source(32, 45) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -4953,16 +4958,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(76, 9) Source(32, 69) + SourceIndex(3) -2 >Emitted(76, 10) Source(32, 70) + SourceIndex(3) +1->Emitted(77, 9) Source(32, 69) + SourceIndex(3) +2 >Emitted(77, 10) Source(32, 70) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(77, 9) Source(32, 69) + SourceIndex(3) -2 >Emitted(77, 25) Source(32, 70) + SourceIndex(3) +1->Emitted(78, 9) Source(32, 69) + SourceIndex(3) +2 >Emitted(78, 25) Source(32, 70) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -4974,10 +4979,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(78, 5) Source(32, 69) + SourceIndex(3) -2 >Emitted(78, 6) Source(32, 70) + SourceIndex(3) -3 >Emitted(78, 6) Source(32, 45) + SourceIndex(3) -4 >Emitted(78, 10) Source(32, 70) + SourceIndex(3) +1 >Emitted(79, 5) Source(32, 69) + SourceIndex(3) +2 >Emitted(79, 6) Source(32, 70) + SourceIndex(3) +3 >Emitted(79, 6) Source(32, 45) + SourceIndex(3) +4 >Emitted(79, 10) Source(32, 70) + SourceIndex(3) --- >>> internalNamespace.someClass = someClass; 1->^^^^ @@ -4989,10 +4994,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(79, 5) Source(32, 58) + SourceIndex(3) -2 >Emitted(79, 32) Source(32, 67) + SourceIndex(3) -3 >Emitted(79, 44) Source(32, 70) + SourceIndex(3) -4 >Emitted(79, 45) Source(32, 70) + SourceIndex(3) +1->Emitted(80, 5) Source(32, 58) + SourceIndex(3) +2 >Emitted(80, 32) Source(32, 67) + SourceIndex(3) +3 >Emitted(80, 44) Source(32, 70) + SourceIndex(3) +4 >Emitted(80, 45) Source(32, 70) + SourceIndex(3) --- >>>})(internalNamespace || (internalNamespace = {})); 1-> @@ -5009,13 +5014,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalNamespace 7 > { export class someClass {} } -1->Emitted(80, 1) Source(32, 71) + SourceIndex(3) -2 >Emitted(80, 2) Source(32, 72) + SourceIndex(3) -3 >Emitted(80, 4) Source(32, 25) + SourceIndex(3) -4 >Emitted(80, 21) Source(32, 42) + SourceIndex(3) -5 >Emitted(80, 26) Source(32, 25) + SourceIndex(3) -6 >Emitted(80, 43) Source(32, 42) + SourceIndex(3) -7 >Emitted(80, 51) Source(32, 72) + SourceIndex(3) +1->Emitted(81, 1) Source(32, 71) + SourceIndex(3) +2 >Emitted(81, 2) Source(32, 72) + SourceIndex(3) +3 >Emitted(81, 4) Source(32, 25) + SourceIndex(3) +4 >Emitted(81, 21) Source(32, 42) + SourceIndex(3) +5 >Emitted(81, 26) Source(32, 25) + SourceIndex(3) +6 >Emitted(81, 43) Source(32, 42) + SourceIndex(3) +7 >Emitted(81, 51) Source(32, 72) + SourceIndex(3) --- >>>var internalOther; 1 > @@ -5028,10 +5033,10 @@ sourceFile:../../../second/second_part1.ts 2 >namespace 3 > internalOther 4 > .something { export class someClass {} } -1 >Emitted(81, 1) Source(33, 15) + SourceIndex(3) -2 >Emitted(81, 5) Source(33, 25) + SourceIndex(3) -3 >Emitted(81, 18) Source(33, 38) + SourceIndex(3) -4 >Emitted(81, 19) Source(33, 78) + SourceIndex(3) +1 >Emitted(82, 1) Source(33, 15) + SourceIndex(3) +2 >Emitted(82, 5) Source(33, 25) + SourceIndex(3) +3 >Emitted(82, 18) Source(33, 38) + SourceIndex(3) +4 >Emitted(82, 19) Source(33, 78) + SourceIndex(3) --- >>>(function (internalOther) { 1-> @@ -5040,9 +5045,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > internalOther -1->Emitted(82, 1) Source(33, 15) + SourceIndex(3) -2 >Emitted(82, 12) Source(33, 25) + SourceIndex(3) -3 >Emitted(82, 25) Source(33, 38) + SourceIndex(3) +1->Emitted(83, 1) Source(33, 15) + SourceIndex(3) +2 >Emitted(83, 12) Source(33, 25) + SourceIndex(3) +3 >Emitted(83, 25) Source(33, 38) + SourceIndex(3) --- >>> var something; 1 >^^^^ @@ -5054,10 +5059,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(83, 5) Source(33, 39) + SourceIndex(3) -2 >Emitted(83, 9) Source(33, 39) + SourceIndex(3) -3 >Emitted(83, 18) Source(33, 48) + SourceIndex(3) -4 >Emitted(83, 19) Source(33, 78) + SourceIndex(3) +1 >Emitted(84, 5) Source(33, 39) + SourceIndex(3) +2 >Emitted(84, 9) Source(33, 39) + SourceIndex(3) +3 >Emitted(84, 18) Source(33, 48) + SourceIndex(3) +4 >Emitted(84, 19) Source(33, 78) + SourceIndex(3) --- >>> (function (something) { 1->^^^^ @@ -5067,21 +5072,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(84, 5) Source(33, 39) + SourceIndex(3) -2 >Emitted(84, 16) Source(33, 39) + SourceIndex(3) -3 >Emitted(84, 25) Source(33, 48) + SourceIndex(3) +1->Emitted(85, 5) Source(33, 39) + SourceIndex(3) +2 >Emitted(85, 16) Source(33, 39) + SourceIndex(3) +3 >Emitted(85, 25) Source(33, 48) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(85, 9) Source(33, 51) + SourceIndex(3) +1->Emitted(86, 9) Source(33, 51) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(86, 13) Source(33, 51) + SourceIndex(3) +1->Emitted(87, 13) Source(33, 51) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -5089,16 +5094,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(87, 13) Source(33, 75) + SourceIndex(3) -2 >Emitted(87, 14) Source(33, 76) + SourceIndex(3) +1->Emitted(88, 13) Source(33, 75) + SourceIndex(3) +2 >Emitted(88, 14) Source(33, 76) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(88, 13) Source(33, 75) + SourceIndex(3) -2 >Emitted(88, 29) Source(33, 76) + SourceIndex(3) +1->Emitted(89, 13) Source(33, 75) + SourceIndex(3) +2 >Emitted(89, 29) Source(33, 76) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -5110,10 +5115,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(89, 9) Source(33, 75) + SourceIndex(3) -2 >Emitted(89, 10) Source(33, 76) + SourceIndex(3) -3 >Emitted(89, 10) Source(33, 51) + SourceIndex(3) -4 >Emitted(89, 14) Source(33, 76) + SourceIndex(3) +1 >Emitted(90, 9) Source(33, 75) + SourceIndex(3) +2 >Emitted(90, 10) Source(33, 76) + SourceIndex(3) +3 >Emitted(90, 10) Source(33, 51) + SourceIndex(3) +4 >Emitted(90, 14) Source(33, 76) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^ @@ -5125,10 +5130,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(90, 9) Source(33, 64) + SourceIndex(3) -2 >Emitted(90, 28) Source(33, 73) + SourceIndex(3) -3 >Emitted(90, 40) Source(33, 76) + SourceIndex(3) -4 >Emitted(90, 41) Source(33, 76) + SourceIndex(3) +1->Emitted(91, 9) Source(33, 64) + SourceIndex(3) +2 >Emitted(91, 28) Source(33, 73) + SourceIndex(3) +3 >Emitted(91, 40) Source(33, 76) + SourceIndex(3) +4 >Emitted(91, 41) Source(33, 76) + SourceIndex(3) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^ @@ -5149,15 +5154,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(91, 5) Source(33, 77) + SourceIndex(3) -2 >Emitted(91, 6) Source(33, 78) + SourceIndex(3) -3 >Emitted(91, 8) Source(33, 39) + SourceIndex(3) -4 >Emitted(91, 17) Source(33, 48) + SourceIndex(3) -5 >Emitted(91, 20) Source(33, 39) + SourceIndex(3) -6 >Emitted(91, 43) Source(33, 48) + SourceIndex(3) -7 >Emitted(91, 48) Source(33, 39) + SourceIndex(3) -8 >Emitted(91, 71) Source(33, 48) + SourceIndex(3) -9 >Emitted(91, 79) Source(33, 78) + SourceIndex(3) +1->Emitted(92, 5) Source(33, 77) + SourceIndex(3) +2 >Emitted(92, 6) Source(33, 78) + SourceIndex(3) +3 >Emitted(92, 8) Source(33, 39) + SourceIndex(3) +4 >Emitted(92, 17) Source(33, 48) + SourceIndex(3) +5 >Emitted(92, 20) Source(33, 39) + SourceIndex(3) +6 >Emitted(92, 43) Source(33, 48) + SourceIndex(3) +7 >Emitted(92, 48) Source(33, 39) + SourceIndex(3) +8 >Emitted(92, 71) Source(33, 48) + SourceIndex(3) +9 >Emitted(92, 79) Source(33, 78) + SourceIndex(3) --- >>>})(internalOther || (internalOther = {})); 1 > @@ -5175,13 +5180,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalOther 7 > .something { export class someClass {} } -1 >Emitted(92, 1) Source(33, 77) + SourceIndex(3) -2 >Emitted(92, 2) Source(33, 78) + SourceIndex(3) -3 >Emitted(92, 4) Source(33, 25) + SourceIndex(3) -4 >Emitted(92, 17) Source(33, 38) + SourceIndex(3) -5 >Emitted(92, 22) Source(33, 25) + SourceIndex(3) -6 >Emitted(92, 35) Source(33, 38) + SourceIndex(3) -7 >Emitted(92, 43) Source(33, 78) + SourceIndex(3) +1 >Emitted(93, 1) Source(33, 77) + SourceIndex(3) +2 >Emitted(93, 2) Source(33, 78) + SourceIndex(3) +3 >Emitted(93, 4) Source(33, 25) + SourceIndex(3) +4 >Emitted(93, 17) Source(33, 38) + SourceIndex(3) +5 >Emitted(93, 22) Source(33, 25) + SourceIndex(3) +6 >Emitted(93, 35) Source(33, 38) + SourceIndex(3) +7 >Emitted(93, 43) Source(33, 78) + SourceIndex(3) --- >>>var internalImport = internalNamespace.someClass; 1-> @@ -5201,14 +5206,14 @@ sourceFile:../../../second/second_part1.ts 6 > . 7 > someClass 8 > ; -1->Emitted(93, 1) Source(34, 15) + SourceIndex(3) -2 >Emitted(93, 5) Source(34, 22) + SourceIndex(3) -3 >Emitted(93, 19) Source(34, 36) + SourceIndex(3) -4 >Emitted(93, 22) Source(34, 39) + SourceIndex(3) -5 >Emitted(93, 39) Source(34, 56) + SourceIndex(3) -6 >Emitted(93, 40) Source(34, 57) + SourceIndex(3) -7 >Emitted(93, 49) Source(34, 66) + SourceIndex(3) -8 >Emitted(93, 50) Source(34, 67) + SourceIndex(3) +1->Emitted(94, 1) Source(34, 15) + SourceIndex(3) +2 >Emitted(94, 5) Source(34, 22) + SourceIndex(3) +3 >Emitted(94, 19) Source(34, 36) + SourceIndex(3) +4 >Emitted(94, 22) Source(34, 39) + SourceIndex(3) +5 >Emitted(94, 39) Source(34, 56) + SourceIndex(3) +6 >Emitted(94, 40) Source(34, 57) + SourceIndex(3) +7 >Emitted(94, 49) Source(34, 66) + SourceIndex(3) +8 >Emitted(94, 50) Source(34, 67) + SourceIndex(3) --- >>>var internalConst = 10; 1 > @@ -5225,12 +5230,12 @@ sourceFile:../../../second/second_part1.ts 4 > = 5 > 10 6 > ; -1 >Emitted(94, 1) Source(36, 15) + SourceIndex(3) -2 >Emitted(94, 5) Source(36, 21) + SourceIndex(3) -3 >Emitted(94, 18) Source(36, 34) + SourceIndex(3) -4 >Emitted(94, 21) Source(36, 37) + SourceIndex(3) -5 >Emitted(94, 23) Source(36, 39) + SourceIndex(3) -6 >Emitted(94, 24) Source(36, 40) + SourceIndex(3) +1 >Emitted(95, 1) Source(36, 15) + SourceIndex(3) +2 >Emitted(95, 5) Source(36, 21) + SourceIndex(3) +3 >Emitted(95, 18) Source(36, 34) + SourceIndex(3) +4 >Emitted(95, 21) Source(36, 37) + SourceIndex(3) +5 >Emitted(95, 23) Source(36, 39) + SourceIndex(3) +6 >Emitted(95, 24) Source(36, 40) + SourceIndex(3) --- >>>var internalEnum; 1 > @@ -5241,9 +5246,9 @@ sourceFile:../../../second/second_part1.ts >/*@internal*/ 2 >enum 3 > internalEnum { a, b, c } -1 >Emitted(95, 1) Source(37, 15) + SourceIndex(3) -2 >Emitted(95, 5) Source(37, 20) + SourceIndex(3) -3 >Emitted(95, 17) Source(37, 44) + SourceIndex(3) +1 >Emitted(96, 1) Source(37, 15) + SourceIndex(3) +2 >Emitted(96, 5) Source(37, 20) + SourceIndex(3) +3 >Emitted(96, 17) Source(37, 44) + SourceIndex(3) --- >>>(function (internalEnum) { 1-> @@ -5253,9 +5258,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >enum 3 > internalEnum -1->Emitted(96, 1) Source(37, 15) + SourceIndex(3) -2 >Emitted(96, 12) Source(37, 20) + SourceIndex(3) -3 >Emitted(96, 24) Source(37, 32) + SourceIndex(3) +1->Emitted(97, 1) Source(37, 15) + SourceIndex(3) +2 >Emitted(97, 12) Source(37, 20) + SourceIndex(3) +3 >Emitted(97, 24) Source(37, 32) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^ @@ -5265,9 +5270,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(97, 5) Source(37, 35) + SourceIndex(3) -2 >Emitted(97, 46) Source(37, 36) + SourceIndex(3) -3 >Emitted(97, 47) Source(37, 36) + SourceIndex(3) +1->Emitted(98, 5) Source(37, 35) + SourceIndex(3) +2 >Emitted(98, 46) Source(37, 36) + SourceIndex(3) +3 >Emitted(98, 47) Source(37, 36) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^ @@ -5277,9 +5282,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(98, 5) Source(37, 38) + SourceIndex(3) -2 >Emitted(98, 46) Source(37, 39) + SourceIndex(3) -3 >Emitted(98, 47) Source(37, 39) + SourceIndex(3) +1->Emitted(99, 5) Source(37, 38) + SourceIndex(3) +2 >Emitted(99, 46) Source(37, 39) + SourceIndex(3) +3 >Emitted(99, 47) Source(37, 39) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^ @@ -5288,9 +5293,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(99, 5) Source(37, 41) + SourceIndex(3) -2 >Emitted(99, 46) Source(37, 42) + SourceIndex(3) -3 >Emitted(99, 47) Source(37, 42) + SourceIndex(3) +1->Emitted(100, 5) Source(37, 41) + SourceIndex(3) +2 >Emitted(100, 46) Source(37, 42) + SourceIndex(3) +3 >Emitted(100, 47) Source(37, 42) + SourceIndex(3) --- >>>})(internalEnum || (internalEnum = {})); 1 > @@ -5307,13 +5312,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalEnum 7 > { a, b, c } -1 >Emitted(100, 1) Source(37, 43) + SourceIndex(3) -2 >Emitted(100, 2) Source(37, 44) + SourceIndex(3) -3 >Emitted(100, 4) Source(37, 20) + SourceIndex(3) -4 >Emitted(100, 16) Source(37, 32) + SourceIndex(3) -5 >Emitted(100, 21) Source(37, 20) + SourceIndex(3) -6 >Emitted(100, 33) Source(37, 32) + SourceIndex(3) -7 >Emitted(100, 41) Source(37, 44) + SourceIndex(3) +1 >Emitted(101, 1) Source(37, 43) + SourceIndex(3) +2 >Emitted(101, 2) Source(37, 44) + SourceIndex(3) +3 >Emitted(101, 4) Source(37, 20) + SourceIndex(3) +4 >Emitted(101, 16) Source(37, 32) + SourceIndex(3) +5 >Emitted(101, 21) Source(37, 20) + SourceIndex(3) +6 >Emitted(101, 33) Source(37, 32) + SourceIndex(3) +7 >Emitted(101, 41) Source(37, 44) + SourceIndex(3) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -5323,13 +5328,13 @@ sourceFile:../../../second/second_part2.ts 1 > 2 >^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(101, 1) Source(1, 1) + SourceIndex(4) +1 >Emitted(102, 1) Source(1, 1) + SourceIndex(4) --- >>> function C() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(102, 5) Source(1, 1) + SourceIndex(4) +1->Emitted(103, 5) Source(1, 1) + SourceIndex(4) --- >>> } 1->^^^^ @@ -5341,8 +5346,8 @@ sourceFile:../../../second/second_part2.ts > } > 2 > } -1->Emitted(103, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(103, 6) Source(5, 2) + SourceIndex(4) +1->Emitted(104, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(104, 6) Source(5, 2) + SourceIndex(4) --- >>> C.prototype.doSomething = function () { 1->^^^^ @@ -5352,9 +5357,9 @@ sourceFile:../../../second/second_part2.ts 1-> 2 > doSomething 3 > -1->Emitted(104, 5) Source(2, 5) + SourceIndex(4) -2 >Emitted(104, 28) Source(2, 16) + SourceIndex(4) -3 >Emitted(104, 31) Source(2, 5) + SourceIndex(4) +1->Emitted(105, 5) Source(2, 5) + SourceIndex(4) +2 >Emitted(105, 28) Source(2, 16) + SourceIndex(4) +3 >Emitted(105, 31) Source(2, 5) + SourceIndex(4) --- >>> console.log("something got done"); 1->^^^^^^^^ @@ -5374,14 +5379,14 @@ sourceFile:../../../second/second_part2.ts 6 > "something got done" 7 > ) 8 > ; -1->Emitted(105, 9) Source(3, 9) + SourceIndex(4) -2 >Emitted(105, 16) Source(3, 16) + SourceIndex(4) -3 >Emitted(105, 17) Source(3, 17) + SourceIndex(4) -4 >Emitted(105, 20) Source(3, 20) + SourceIndex(4) -5 >Emitted(105, 21) Source(3, 21) + SourceIndex(4) -6 >Emitted(105, 41) Source(3, 41) + SourceIndex(4) -7 >Emitted(105, 42) Source(3, 42) + SourceIndex(4) -8 >Emitted(105, 43) Source(3, 43) + SourceIndex(4) +1->Emitted(106, 9) Source(3, 9) + SourceIndex(4) +2 >Emitted(106, 16) Source(3, 16) + SourceIndex(4) +3 >Emitted(106, 17) Source(3, 17) + SourceIndex(4) +4 >Emitted(106, 20) Source(3, 20) + SourceIndex(4) +5 >Emitted(106, 21) Source(3, 21) + SourceIndex(4) +6 >Emitted(106, 41) Source(3, 41) + SourceIndex(4) +7 >Emitted(106, 42) Source(3, 42) + SourceIndex(4) +8 >Emitted(106, 43) Source(3, 43) + SourceIndex(4) --- >>> }; 1 >^^^^ @@ -5390,8 +5395,8 @@ sourceFile:../../../second/second_part2.ts 1 > > 2 > } -1 >Emitted(106, 5) Source(4, 5) + SourceIndex(4) -2 >Emitted(106, 6) Source(4, 6) + SourceIndex(4) +1 >Emitted(107, 5) Source(4, 5) + SourceIndex(4) +2 >Emitted(107, 6) Source(4, 6) + SourceIndex(4) --- >>> return C; 1->^^^^ @@ -5399,8 +5404,8 @@ sourceFile:../../../second/second_part2.ts 1-> > 2 > } -1->Emitted(107, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(107, 13) Source(5, 2) + SourceIndex(4) +1->Emitted(108, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(108, 13) Source(5, 2) + SourceIndex(4) --- >>>}()); 1 > @@ -5416,10 +5421,10 @@ sourceFile:../../../second/second_part2.ts > console.log("something got done"); > } > } -1 >Emitted(108, 1) Source(5, 1) + SourceIndex(4) -2 >Emitted(108, 2) Source(5, 2) + SourceIndex(4) -3 >Emitted(108, 2) Source(1, 1) + SourceIndex(4) -4 >Emitted(108, 6) Source(5, 2) + SourceIndex(4) +1 >Emitted(109, 1) Source(5, 1) + SourceIndex(4) +2 >Emitted(109, 2) Source(5, 2) + SourceIndex(4) +3 >Emitted(109, 2) Source(1, 1) + SourceIndex(4) +4 >Emitted(109, 6) Source(5, 2) + SourceIndex(4) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -5443,14 +5448,14 @@ sourceFile:../../third_part1.ts 6 > C 7 > () 8 > ; -1->Emitted(109, 1) Source(1, 1) + SourceIndex(5) -2 >Emitted(109, 5) Source(1, 5) + SourceIndex(5) -3 >Emitted(109, 6) Source(1, 6) + SourceIndex(5) -4 >Emitted(109, 9) Source(1, 9) + SourceIndex(5) -5 >Emitted(109, 13) Source(1, 13) + SourceIndex(5) -6 >Emitted(109, 14) Source(1, 14) + SourceIndex(5) -7 >Emitted(109, 16) Source(1, 16) + SourceIndex(5) -8 >Emitted(109, 17) Source(1, 17) + SourceIndex(5) +1->Emitted(110, 1) Source(1, 1) + SourceIndex(5) +2 >Emitted(110, 5) Source(1, 5) + SourceIndex(5) +3 >Emitted(110, 6) Source(1, 6) + SourceIndex(5) +4 >Emitted(110, 9) Source(1, 9) + SourceIndex(5) +5 >Emitted(110, 13) Source(1, 13) + SourceIndex(5) +6 >Emitted(110, 14) Source(1, 14) + SourceIndex(5) +7 >Emitted(110, 16) Source(1, 16) + SourceIndex(5) +8 >Emitted(110, 17) Source(1, 17) + SourceIndex(5) --- >>>c.doSomething(); 1-> @@ -5467,12 +5472,12 @@ sourceFile:../../third_part1.ts 4 > doSomething 5 > () 6 > ; -1->Emitted(110, 1) Source(2, 1) + SourceIndex(5) -2 >Emitted(110, 2) Source(2, 2) + SourceIndex(5) -3 >Emitted(110, 3) Source(2, 3) + SourceIndex(5) -4 >Emitted(110, 14) Source(2, 14) + SourceIndex(5) -5 >Emitted(110, 16) Source(2, 16) + SourceIndex(5) -6 >Emitted(110, 17) Source(2, 17) + SourceIndex(5) +1->Emitted(111, 1) Source(2, 1) + SourceIndex(5) +2 >Emitted(111, 2) Source(2, 2) + SourceIndex(5) +3 >Emitted(111, 3) Source(2, 3) + SourceIndex(5) +4 >Emitted(111, 14) Source(2, 14) + SourceIndex(5) +5 >Emitted(111, 16) Source(2, 16) + SourceIndex(5) +6 >Emitted(111, 17) Source(2, 17) + SourceIndex(5) --- >>>//# sourceMappingURL=third-output.js.map @@ -5487,20 +5492,20 @@ sourceFile:../../third_part1.ts "sections": [ { "pos": 0, - "end": 3163, + "end": 3211, "kind": "prepend", "data": "../../../2/second-output.js", "texts": [ { "pos": 0, - "end": 3163, + "end": 3211, "kind": "text" } ] }, { - "pos": 3163, - "end": 3199, + "pos": 3211, + "end": 3247, "kind": "text" } ] @@ -5535,9 +5540,9 @@ sourceFile:../../third_part1.ts ====================================================================== File:: /src/third/thirdjs/output/third-output.js ---------------------------------------------------------------------- -prepend: (0-3163):: ../../../2/second-output.js texts:: 1 +prepend: (0-3211):: ../../../2/second-output.js texts:: 1 >>-------------------------------------------------------------------- -text: (0-3163) +text: (0-3211) var s = "Hello, world"; console.log(s); console.log(f()); @@ -5554,8 +5559,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -5648,7 +5654,7 @@ var C = (function () { }()); ---------------------------------------------------------------------- -text: (3163-3199) +text: (3211-3247) var c = new C(); c.doSomething(); diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js index c36b89c2c6e64..06a6fd9d30e9c 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-with-comments-emit-enabled-when-one-two-three-are-prepended-in-order.js @@ -1074,8 +1074,9 @@ var N; var normalC = /** @class */ (function () { /*@internal*/ function normalC() { } - /*@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /*@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /*@internal*/ get: function () { return 10; }, /*@internal*/ set: function (val) { }, enumerable: false, @@ -1169,7 +1170,7 @@ var C = /** @class */ (function () { //# sourceMappingURL=second-output.js.map //// [/src/2/second-output.js.map] -{"version":3,"file":"second-output.js","sourceRoot":"","sources":["../first/first_PART1.ts","../first/first_part2.ts","../first/first_part3.ts","../second/second_part1.ts","../second/second_part2.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"second-output.js","sourceRoot":"","sources":["../first/first_PART1.ts","../first/first_part2.ts","../first/first_part3.ts","../second/second_part1.ts","../second/second_part2.ts"],"names":[],"mappings":"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"} //// [/src/2/second-output.js.map.baseline.txt] =================================================================== @@ -1475,13 +1476,14 @@ sourceFile:../second/second_part1.ts >>> } 1 >^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 >constructor() { 2 > } 1 >Emitted(16, 5) Source(14, 35) + SourceIndex(3) 2 >Emitted(16, 6) Source(14, 36) + SourceIndex(3) --- ->>> /*@internal*/ normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> /*@internal*/ normalC_prototype.method = function () { }; 1->^^^^ 2 > ^^^^^^^^^^^^^ 3 > ^ @@ -1498,15 +1500,15 @@ sourceFile:../second/second_part1.ts 5 > 6 > method() { 7 > } -1->Emitted(17, 5) Source(16, 5) + SourceIndex(3) -2 >Emitted(17, 18) Source(16, 18) + SourceIndex(3) -3 >Emitted(17, 19) Source(16, 19) + SourceIndex(3) -4 >Emitted(17, 43) Source(16, 25) + SourceIndex(3) -5 >Emitted(17, 46) Source(16, 19) + SourceIndex(3) -6 >Emitted(17, 60) Source(16, 30) + SourceIndex(3) -7 >Emitted(17, 61) Source(16, 31) + SourceIndex(3) ---- ->>> Object.defineProperty(normalC.prototype, "c", { +1->Emitted(18, 5) Source(16, 5) + SourceIndex(3) +2 >Emitted(18, 18) Source(16, 18) + SourceIndex(3) +3 >Emitted(18, 19) Source(16, 19) + SourceIndex(3) +4 >Emitted(18, 43) Source(16, 25) + SourceIndex(3) +5 >Emitted(18, 46) Source(16, 19) + SourceIndex(3) +6 >Emitted(18, 60) Source(16, 30) + SourceIndex(3) +7 >Emitted(18, 61) Source(16, 31) + SourceIndex(3) +--- +>>> Object.defineProperty(normalC_prototype, "c", { 1 >^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -1515,9 +1517,9 @@ sourceFile:../second/second_part1.ts > /*@internal*/ 2 > get 3 > c -1 >Emitted(18, 5) Source(17, 19) + SourceIndex(3) -2 >Emitted(18, 27) Source(17, 23) + SourceIndex(3) -3 >Emitted(18, 49) Source(17, 24) + SourceIndex(3) +1 >Emitted(19, 5) Source(17, 19) + SourceIndex(3) +2 >Emitted(19, 27) Source(17, 23) + SourceIndex(3) +3 >Emitted(19, 49) Source(17, 24) + SourceIndex(3) --- >>> /*@internal*/ get: function () { return 10; }, 1->^^^^^^^^ @@ -1538,15 +1540,15 @@ sourceFile:../second/second_part1.ts 7 > ; 8 > 9 > } -1->Emitted(19, 9) Source(17, 5) + SourceIndex(3) -2 >Emitted(19, 22) Source(17, 18) + SourceIndex(3) -3 >Emitted(19, 28) Source(17, 19) + SourceIndex(3) -4 >Emitted(19, 42) Source(17, 29) + SourceIndex(3) -5 >Emitted(19, 49) Source(17, 36) + SourceIndex(3) -6 >Emitted(19, 51) Source(17, 38) + SourceIndex(3) -7 >Emitted(19, 52) Source(17, 39) + SourceIndex(3) -8 >Emitted(19, 53) Source(17, 40) + SourceIndex(3) -9 >Emitted(19, 54) Source(17, 41) + SourceIndex(3) +1->Emitted(20, 9) Source(17, 5) + SourceIndex(3) +2 >Emitted(20, 22) Source(17, 18) + SourceIndex(3) +3 >Emitted(20, 28) Source(17, 19) + SourceIndex(3) +4 >Emitted(20, 42) Source(17, 29) + SourceIndex(3) +5 >Emitted(20, 49) Source(17, 36) + SourceIndex(3) +6 >Emitted(20, 51) Source(17, 38) + SourceIndex(3) +7 >Emitted(20, 52) Source(17, 39) + SourceIndex(3) +8 >Emitted(20, 53) Source(17, 40) + SourceIndex(3) +9 >Emitted(20, 54) Source(17, 41) + SourceIndex(3) --- >>> /*@internal*/ set: function (val) { }, 1 >^^^^^^^^ @@ -1564,13 +1566,13 @@ sourceFile:../second/second_part1.ts 5 > val: number 6 > ) { 7 > } -1 >Emitted(20, 9) Source(18, 5) + SourceIndex(3) -2 >Emitted(20, 22) Source(18, 18) + SourceIndex(3) -3 >Emitted(20, 28) Source(18, 19) + SourceIndex(3) -4 >Emitted(20, 38) Source(18, 25) + SourceIndex(3) -5 >Emitted(20, 41) Source(18, 36) + SourceIndex(3) -6 >Emitted(20, 45) Source(18, 40) + SourceIndex(3) -7 >Emitted(20, 46) Source(18, 41) + SourceIndex(3) +1 >Emitted(21, 9) Source(18, 5) + SourceIndex(3) +2 >Emitted(21, 22) Source(18, 18) + SourceIndex(3) +3 >Emitted(21, 28) Source(18, 19) + SourceIndex(3) +4 >Emitted(21, 38) Source(18, 25) + SourceIndex(3) +5 >Emitted(21, 41) Source(18, 36) + SourceIndex(3) +6 >Emitted(21, 45) Source(18, 40) + SourceIndex(3) +7 >Emitted(21, 46) Source(18, 41) + SourceIndex(3) --- >>> enumerable: false, >>> configurable: true @@ -1578,7 +1580,7 @@ sourceFile:../second/second_part1.ts 1 >^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(23, 8) Source(17, 41) + SourceIndex(3) +1 >Emitted(24, 8) Source(17, 41) + SourceIndex(3) --- >>> return normalC; 1->^^^^ @@ -1587,8 +1589,8 @@ sourceFile:../second/second_part1.ts > /*@internal*/ set c(val: number) { } > 2 > } -1->Emitted(24, 5) Source(19, 1) + SourceIndex(3) -2 >Emitted(24, 19) Source(19, 2) + SourceIndex(3) +1->Emitted(25, 5) Source(19, 1) + SourceIndex(3) +2 >Emitted(25, 19) Source(19, 2) + SourceIndex(3) --- >>>}()); 1 > @@ -1606,10 +1608,10 @@ sourceFile:../second/second_part1.ts > /*@internal*/ get c() { return 10; } > /*@internal*/ set c(val: number) { } > } -1 >Emitted(25, 1) Source(19, 1) + SourceIndex(3) -2 >Emitted(25, 2) Source(19, 2) + SourceIndex(3) -3 >Emitted(25, 2) Source(13, 1) + SourceIndex(3) -4 >Emitted(25, 6) Source(19, 2) + SourceIndex(3) +1 >Emitted(26, 1) Source(19, 1) + SourceIndex(3) +2 >Emitted(26, 2) Source(19, 2) + SourceIndex(3) +3 >Emitted(26, 2) Source(13, 1) + SourceIndex(3) +4 >Emitted(26, 6) Source(19, 2) + SourceIndex(3) --- >>>var normalN; 1-> @@ -1631,10 +1633,10 @@ sourceFile:../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1->Emitted(26, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(26, 5) Source(20, 11) + SourceIndex(3) -3 >Emitted(26, 12) Source(20, 18) + SourceIndex(3) -4 >Emitted(26, 13) Source(29, 2) + SourceIndex(3) +1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(27, 5) Source(20, 11) + SourceIndex(3) +3 >Emitted(27, 12) Source(20, 18) + SourceIndex(3) +4 >Emitted(27, 13) Source(29, 2) + SourceIndex(3) --- >>>(function (normalN) { 1-> @@ -1644,9 +1646,9 @@ sourceFile:../second/second_part1.ts 1-> 2 >namespace 3 > normalN -1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(27, 12) Source(20, 11) + SourceIndex(3) -3 >Emitted(27, 19) Source(20, 18) + SourceIndex(3) +1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(28, 12) Source(20, 11) + SourceIndex(3) +3 >Emitted(28, 19) Source(20, 18) + SourceIndex(3) --- >>> /*@internal*/ var C = /** @class */ (function () { 1->^^^^ @@ -1657,15 +1659,15 @@ sourceFile:../second/second_part1.ts > 2 > /*@internal*/ 3 > -1->Emitted(28, 5) Source(21, 5) + SourceIndex(3) -2 >Emitted(28, 18) Source(21, 18) + SourceIndex(3) -3 >Emitted(28, 19) Source(21, 19) + SourceIndex(3) +1->Emitted(29, 5) Source(21, 5) + SourceIndex(3) +2 >Emitted(29, 18) Source(21, 18) + SourceIndex(3) +3 >Emitted(29, 19) Source(21, 19) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(29, 9) Source(21, 19) + SourceIndex(3) +1->Emitted(30, 9) Source(21, 19) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -1673,16 +1675,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(30, 9) Source(21, 36) + SourceIndex(3) -2 >Emitted(30, 10) Source(21, 37) + SourceIndex(3) +1->Emitted(31, 9) Source(21, 36) + SourceIndex(3) +2 >Emitted(31, 10) Source(21, 37) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(31, 9) Source(21, 36) + SourceIndex(3) -2 >Emitted(31, 17) Source(21, 37) + SourceIndex(3) +1->Emitted(32, 9) Source(21, 36) + SourceIndex(3) +2 >Emitted(32, 17) Source(21, 37) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -1694,10 +1696,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(32, 5) Source(21, 36) + SourceIndex(3) -2 >Emitted(32, 6) Source(21, 37) + SourceIndex(3) -3 >Emitted(32, 6) Source(21, 19) + SourceIndex(3) -4 >Emitted(32, 10) Source(21, 37) + SourceIndex(3) +1 >Emitted(33, 5) Source(21, 36) + SourceIndex(3) +2 >Emitted(33, 6) Source(21, 37) + SourceIndex(3) +3 >Emitted(33, 6) Source(21, 19) + SourceIndex(3) +4 >Emitted(33, 10) Source(21, 37) + SourceIndex(3) --- >>> normalN.C = C; 1->^^^^ @@ -1709,10 +1711,10 @@ sourceFile:../second/second_part1.ts 2 > C 3 > { } 4 > -1->Emitted(33, 5) Source(21, 32) + SourceIndex(3) -2 >Emitted(33, 14) Source(21, 33) + SourceIndex(3) -3 >Emitted(33, 18) Source(21, 37) + SourceIndex(3) -4 >Emitted(33, 19) Source(21, 37) + SourceIndex(3) +1->Emitted(34, 5) Source(21, 32) + SourceIndex(3) +2 >Emitted(34, 14) Source(21, 33) + SourceIndex(3) +3 >Emitted(34, 18) Source(21, 37) + SourceIndex(3) +4 >Emitted(34, 19) Source(21, 37) + SourceIndex(3) --- >>> /*@internal*/ function foo() { } 1->^^^^ @@ -1730,13 +1732,13 @@ sourceFile:../second/second_part1.ts 5 > foo 6 > () { 7 > } -1->Emitted(34, 5) Source(22, 5) + SourceIndex(3) -2 >Emitted(34, 18) Source(22, 18) + SourceIndex(3) -3 >Emitted(34, 19) Source(22, 19) + SourceIndex(3) -4 >Emitted(34, 28) Source(22, 35) + SourceIndex(3) -5 >Emitted(34, 31) Source(22, 38) + SourceIndex(3) -6 >Emitted(34, 36) Source(22, 42) + SourceIndex(3) -7 >Emitted(34, 37) Source(22, 43) + SourceIndex(3) +1->Emitted(35, 5) Source(22, 5) + SourceIndex(3) +2 >Emitted(35, 18) Source(22, 18) + SourceIndex(3) +3 >Emitted(35, 19) Source(22, 19) + SourceIndex(3) +4 >Emitted(35, 28) Source(22, 35) + SourceIndex(3) +5 >Emitted(35, 31) Source(22, 38) + SourceIndex(3) +6 >Emitted(35, 36) Source(22, 42) + SourceIndex(3) +7 >Emitted(35, 37) Source(22, 43) + SourceIndex(3) --- >>> normalN.foo = foo; 1 >^^^^ @@ -1748,10 +1750,10 @@ sourceFile:../second/second_part1.ts 2 > foo 3 > () {} 4 > -1 >Emitted(35, 5) Source(22, 35) + SourceIndex(3) -2 >Emitted(35, 16) Source(22, 38) + SourceIndex(3) -3 >Emitted(35, 22) Source(22, 43) + SourceIndex(3) -4 >Emitted(35, 23) Source(22, 43) + SourceIndex(3) +1 >Emitted(36, 5) Source(22, 35) + SourceIndex(3) +2 >Emitted(36, 16) Source(22, 38) + SourceIndex(3) +3 >Emitted(36, 22) Source(22, 43) + SourceIndex(3) +4 >Emitted(36, 23) Source(22, 43) + SourceIndex(3) --- >>> /*@internal*/ var someNamespace; 1->^^^^ @@ -1767,12 +1769,12 @@ sourceFile:../second/second_part1.ts 4 > export namespace 5 > someNamespace 6 > { export class C {} } -1->Emitted(36, 5) Source(23, 5) + SourceIndex(3) -2 >Emitted(36, 18) Source(23, 18) + SourceIndex(3) -3 >Emitted(36, 19) Source(23, 19) + SourceIndex(3) -4 >Emitted(36, 23) Source(23, 36) + SourceIndex(3) -5 >Emitted(36, 36) Source(23, 49) + SourceIndex(3) -6 >Emitted(36, 37) Source(23, 71) + SourceIndex(3) +1->Emitted(37, 5) Source(23, 5) + SourceIndex(3) +2 >Emitted(37, 18) Source(23, 18) + SourceIndex(3) +3 >Emitted(37, 19) Source(23, 19) + SourceIndex(3) +4 >Emitted(37, 23) Source(23, 36) + SourceIndex(3) +5 >Emitted(37, 36) Source(23, 49) + SourceIndex(3) +6 >Emitted(37, 37) Source(23, 71) + SourceIndex(3) --- >>> (function (someNamespace) { 1 >^^^^ @@ -1782,21 +1784,21 @@ sourceFile:../second/second_part1.ts 1 > 2 > export namespace 3 > someNamespace -1 >Emitted(37, 5) Source(23, 19) + SourceIndex(3) -2 >Emitted(37, 16) Source(23, 36) + SourceIndex(3) -3 >Emitted(37, 29) Source(23, 49) + SourceIndex(3) +1 >Emitted(38, 5) Source(23, 19) + SourceIndex(3) +2 >Emitted(38, 16) Source(23, 36) + SourceIndex(3) +3 >Emitted(38, 29) Source(23, 49) + SourceIndex(3) --- >>> var C = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(38, 9) Source(23, 52) + SourceIndex(3) +1->Emitted(39, 9) Source(23, 52) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(39, 13) Source(23, 52) + SourceIndex(3) +1->Emitted(40, 13) Source(23, 52) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -1804,16 +1806,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(40, 13) Source(23, 68) + SourceIndex(3) -2 >Emitted(40, 14) Source(23, 69) + SourceIndex(3) +1->Emitted(41, 13) Source(23, 68) + SourceIndex(3) +2 >Emitted(41, 14) Source(23, 69) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(41, 13) Source(23, 68) + SourceIndex(3) -2 >Emitted(41, 21) Source(23, 69) + SourceIndex(3) +1->Emitted(42, 13) Source(23, 68) + SourceIndex(3) +2 >Emitted(42, 21) Source(23, 69) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -1825,10 +1827,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(42, 9) Source(23, 68) + SourceIndex(3) -2 >Emitted(42, 10) Source(23, 69) + SourceIndex(3) -3 >Emitted(42, 10) Source(23, 52) + SourceIndex(3) -4 >Emitted(42, 14) Source(23, 69) + SourceIndex(3) +1 >Emitted(43, 9) Source(23, 68) + SourceIndex(3) +2 >Emitted(43, 10) Source(23, 69) + SourceIndex(3) +3 >Emitted(43, 10) Source(23, 52) + SourceIndex(3) +4 >Emitted(43, 14) Source(23, 69) + SourceIndex(3) --- >>> someNamespace.C = C; 1->^^^^^^^^ @@ -1840,10 +1842,10 @@ sourceFile:../second/second_part1.ts 2 > C 3 > {} 4 > -1->Emitted(43, 9) Source(23, 65) + SourceIndex(3) -2 >Emitted(43, 24) Source(23, 66) + SourceIndex(3) -3 >Emitted(43, 28) Source(23, 69) + SourceIndex(3) -4 >Emitted(43, 29) Source(23, 69) + SourceIndex(3) +1->Emitted(44, 9) Source(23, 65) + SourceIndex(3) +2 >Emitted(44, 24) Source(23, 66) + SourceIndex(3) +3 >Emitted(44, 28) Source(23, 69) + SourceIndex(3) +4 >Emitted(44, 29) Source(23, 69) + SourceIndex(3) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^ @@ -1864,15 +1866,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(44, 5) Source(23, 70) + SourceIndex(3) -2 >Emitted(44, 6) Source(23, 71) + SourceIndex(3) -3 >Emitted(44, 8) Source(23, 36) + SourceIndex(3) -4 >Emitted(44, 21) Source(23, 49) + SourceIndex(3) -5 >Emitted(44, 24) Source(23, 36) + SourceIndex(3) -6 >Emitted(44, 45) Source(23, 49) + SourceIndex(3) -7 >Emitted(44, 50) Source(23, 36) + SourceIndex(3) -8 >Emitted(44, 71) Source(23, 49) + SourceIndex(3) -9 >Emitted(44, 79) Source(23, 71) + SourceIndex(3) +1->Emitted(45, 5) Source(23, 70) + SourceIndex(3) +2 >Emitted(45, 6) Source(23, 71) + SourceIndex(3) +3 >Emitted(45, 8) Source(23, 36) + SourceIndex(3) +4 >Emitted(45, 21) Source(23, 49) + SourceIndex(3) +5 >Emitted(45, 24) Source(23, 36) + SourceIndex(3) +6 >Emitted(45, 45) Source(23, 49) + SourceIndex(3) +7 >Emitted(45, 50) Source(23, 36) + SourceIndex(3) +8 >Emitted(45, 71) Source(23, 49) + SourceIndex(3) +9 >Emitted(45, 79) Source(23, 71) + SourceIndex(3) --- >>> /*@internal*/ var someOther; 1 >^^^^ @@ -1888,12 +1890,12 @@ sourceFile:../second/second_part1.ts 4 > export namespace 5 > someOther 6 > .something { export class someClass {} } -1 >Emitted(45, 5) Source(24, 5) + SourceIndex(3) -2 >Emitted(45, 18) Source(24, 18) + SourceIndex(3) -3 >Emitted(45, 19) Source(24, 19) + SourceIndex(3) -4 >Emitted(45, 23) Source(24, 36) + SourceIndex(3) -5 >Emitted(45, 32) Source(24, 45) + SourceIndex(3) -6 >Emitted(45, 33) Source(24, 85) + SourceIndex(3) +1 >Emitted(46, 5) Source(24, 5) + SourceIndex(3) +2 >Emitted(46, 18) Source(24, 18) + SourceIndex(3) +3 >Emitted(46, 19) Source(24, 19) + SourceIndex(3) +4 >Emitted(46, 23) Source(24, 36) + SourceIndex(3) +5 >Emitted(46, 32) Source(24, 45) + SourceIndex(3) +6 >Emitted(46, 33) Source(24, 85) + SourceIndex(3) --- >>> (function (someOther) { 1 >^^^^ @@ -1902,9 +1904,9 @@ sourceFile:../second/second_part1.ts 1 > 2 > export namespace 3 > someOther -1 >Emitted(46, 5) Source(24, 19) + SourceIndex(3) -2 >Emitted(46, 16) Source(24, 36) + SourceIndex(3) -3 >Emitted(46, 25) Source(24, 45) + SourceIndex(3) +1 >Emitted(47, 5) Source(24, 19) + SourceIndex(3) +2 >Emitted(47, 16) Source(24, 36) + SourceIndex(3) +3 >Emitted(47, 25) Source(24, 45) + SourceIndex(3) --- >>> var something; 1 >^^^^^^^^ @@ -1916,10 +1918,10 @@ sourceFile:../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(47, 9) Source(24, 46) + SourceIndex(3) -2 >Emitted(47, 13) Source(24, 46) + SourceIndex(3) -3 >Emitted(47, 22) Source(24, 55) + SourceIndex(3) -4 >Emitted(47, 23) Source(24, 85) + SourceIndex(3) +1 >Emitted(48, 9) Source(24, 46) + SourceIndex(3) +2 >Emitted(48, 13) Source(24, 46) + SourceIndex(3) +3 >Emitted(48, 22) Source(24, 55) + SourceIndex(3) +4 >Emitted(48, 23) Source(24, 85) + SourceIndex(3) --- >>> (function (something) { 1->^^^^^^^^ @@ -1929,21 +1931,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(48, 9) Source(24, 46) + SourceIndex(3) -2 >Emitted(48, 20) Source(24, 46) + SourceIndex(3) -3 >Emitted(48, 29) Source(24, 55) + SourceIndex(3) +1->Emitted(49, 9) Source(24, 46) + SourceIndex(3) +2 >Emitted(49, 20) Source(24, 46) + SourceIndex(3) +3 >Emitted(49, 29) Source(24, 55) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(49, 13) Source(24, 58) + SourceIndex(3) +1->Emitted(50, 13) Source(24, 58) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(50, 17) Source(24, 58) + SourceIndex(3) +1->Emitted(51, 17) Source(24, 58) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -1951,16 +1953,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(51, 17) Source(24, 82) + SourceIndex(3) -2 >Emitted(51, 18) Source(24, 83) + SourceIndex(3) +1->Emitted(52, 17) Source(24, 82) + SourceIndex(3) +2 >Emitted(52, 18) Source(24, 83) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(52, 17) Source(24, 82) + SourceIndex(3) -2 >Emitted(52, 33) Source(24, 83) + SourceIndex(3) +1->Emitted(53, 17) Source(24, 82) + SourceIndex(3) +2 >Emitted(53, 33) Source(24, 83) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -1972,10 +1974,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(53, 13) Source(24, 82) + SourceIndex(3) -2 >Emitted(53, 14) Source(24, 83) + SourceIndex(3) -3 >Emitted(53, 14) Source(24, 58) + SourceIndex(3) -4 >Emitted(53, 18) Source(24, 83) + SourceIndex(3) +1 >Emitted(54, 13) Source(24, 82) + SourceIndex(3) +2 >Emitted(54, 14) Source(24, 83) + SourceIndex(3) +3 >Emitted(54, 14) Source(24, 58) + SourceIndex(3) +4 >Emitted(54, 18) Source(24, 83) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -1987,10 +1989,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(54, 13) Source(24, 71) + SourceIndex(3) -2 >Emitted(54, 32) Source(24, 80) + SourceIndex(3) -3 >Emitted(54, 44) Source(24, 83) + SourceIndex(3) -4 >Emitted(54, 45) Source(24, 83) + SourceIndex(3) +1->Emitted(55, 13) Source(24, 71) + SourceIndex(3) +2 >Emitted(55, 32) Source(24, 80) + SourceIndex(3) +3 >Emitted(55, 44) Source(24, 83) + SourceIndex(3) +4 >Emitted(55, 45) Source(24, 83) + SourceIndex(3) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^ @@ -2011,15 +2013,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(55, 9) Source(24, 84) + SourceIndex(3) -2 >Emitted(55, 10) Source(24, 85) + SourceIndex(3) -3 >Emitted(55, 12) Source(24, 46) + SourceIndex(3) -4 >Emitted(55, 21) Source(24, 55) + SourceIndex(3) -5 >Emitted(55, 24) Source(24, 46) + SourceIndex(3) -6 >Emitted(55, 43) Source(24, 55) + SourceIndex(3) -7 >Emitted(55, 48) Source(24, 46) + SourceIndex(3) -8 >Emitted(55, 67) Source(24, 55) + SourceIndex(3) -9 >Emitted(55, 75) Source(24, 85) + SourceIndex(3) +1->Emitted(56, 9) Source(24, 84) + SourceIndex(3) +2 >Emitted(56, 10) Source(24, 85) + SourceIndex(3) +3 >Emitted(56, 12) Source(24, 46) + SourceIndex(3) +4 >Emitted(56, 21) Source(24, 55) + SourceIndex(3) +5 >Emitted(56, 24) Source(24, 46) + SourceIndex(3) +6 >Emitted(56, 43) Source(24, 55) + SourceIndex(3) +7 >Emitted(56, 48) Source(24, 46) + SourceIndex(3) +8 >Emitted(56, 67) Source(24, 55) + SourceIndex(3) +9 >Emitted(56, 75) Source(24, 85) + SourceIndex(3) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^ @@ -2040,15 +2042,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(56, 5) Source(24, 84) + SourceIndex(3) -2 >Emitted(56, 6) Source(24, 85) + SourceIndex(3) -3 >Emitted(56, 8) Source(24, 36) + SourceIndex(3) -4 >Emitted(56, 17) Source(24, 45) + SourceIndex(3) -5 >Emitted(56, 20) Source(24, 36) + SourceIndex(3) -6 >Emitted(56, 37) Source(24, 45) + SourceIndex(3) -7 >Emitted(56, 42) Source(24, 36) + SourceIndex(3) -8 >Emitted(56, 59) Source(24, 45) + SourceIndex(3) -9 >Emitted(56, 67) Source(24, 85) + SourceIndex(3) +1 >Emitted(57, 5) Source(24, 84) + SourceIndex(3) +2 >Emitted(57, 6) Source(24, 85) + SourceIndex(3) +3 >Emitted(57, 8) Source(24, 36) + SourceIndex(3) +4 >Emitted(57, 17) Source(24, 45) + SourceIndex(3) +5 >Emitted(57, 20) Source(24, 36) + SourceIndex(3) +6 >Emitted(57, 37) Source(24, 45) + SourceIndex(3) +7 >Emitted(57, 42) Source(24, 36) + SourceIndex(3) +8 >Emitted(57, 59) Source(24, 45) + SourceIndex(3) +9 >Emitted(57, 67) Source(24, 85) + SourceIndex(3) --- >>> /*@internal*/ normalN.someImport = someNamespace.C; 1 >^^^^ @@ -2070,15 +2072,15 @@ sourceFile:../second/second_part1.ts 7 > . 8 > C 9 > ; -1 >Emitted(57, 5) Source(25, 5) + SourceIndex(3) -2 >Emitted(57, 18) Source(25, 18) + SourceIndex(3) -3 >Emitted(57, 19) Source(25, 33) + SourceIndex(3) -4 >Emitted(57, 37) Source(25, 43) + SourceIndex(3) -5 >Emitted(57, 40) Source(25, 46) + SourceIndex(3) -6 >Emitted(57, 53) Source(25, 59) + SourceIndex(3) -7 >Emitted(57, 54) Source(25, 60) + SourceIndex(3) -8 >Emitted(57, 55) Source(25, 61) + SourceIndex(3) -9 >Emitted(57, 56) Source(25, 62) + SourceIndex(3) +1 >Emitted(58, 5) Source(25, 5) + SourceIndex(3) +2 >Emitted(58, 18) Source(25, 18) + SourceIndex(3) +3 >Emitted(58, 19) Source(25, 33) + SourceIndex(3) +4 >Emitted(58, 37) Source(25, 43) + SourceIndex(3) +5 >Emitted(58, 40) Source(25, 46) + SourceIndex(3) +6 >Emitted(58, 53) Source(25, 59) + SourceIndex(3) +7 >Emitted(58, 54) Source(25, 60) + SourceIndex(3) +8 >Emitted(58, 55) Source(25, 61) + SourceIndex(3) +9 >Emitted(58, 56) Source(25, 62) + SourceIndex(3) --- >>> /*@internal*/ normalN.internalConst = 10; 1 >^^^^ @@ -2097,13 +2099,13 @@ sourceFile:../second/second_part1.ts 5 > = 6 > 10 7 > ; -1 >Emitted(58, 5) Source(27, 5) + SourceIndex(3) -2 >Emitted(58, 18) Source(27, 18) + SourceIndex(3) -3 >Emitted(58, 19) Source(27, 32) + SourceIndex(3) -4 >Emitted(58, 40) Source(27, 45) + SourceIndex(3) -5 >Emitted(58, 43) Source(27, 48) + SourceIndex(3) -6 >Emitted(58, 45) Source(27, 50) + SourceIndex(3) -7 >Emitted(58, 46) Source(27, 51) + SourceIndex(3) +1 >Emitted(59, 5) Source(27, 5) + SourceIndex(3) +2 >Emitted(59, 18) Source(27, 18) + SourceIndex(3) +3 >Emitted(59, 19) Source(27, 32) + SourceIndex(3) +4 >Emitted(59, 40) Source(27, 45) + SourceIndex(3) +5 >Emitted(59, 43) Source(27, 48) + SourceIndex(3) +6 >Emitted(59, 45) Source(27, 50) + SourceIndex(3) +7 >Emitted(59, 46) Source(27, 51) + SourceIndex(3) --- >>> /*@internal*/ var internalEnum; 1 >^^^^ @@ -2117,11 +2119,11 @@ sourceFile:../second/second_part1.ts 3 > 4 > export enum 5 > internalEnum { a, b, c } -1 >Emitted(59, 5) Source(28, 5) + SourceIndex(3) -2 >Emitted(59, 18) Source(28, 18) + SourceIndex(3) -3 >Emitted(59, 19) Source(28, 19) + SourceIndex(3) -4 >Emitted(59, 23) Source(28, 31) + SourceIndex(3) -5 >Emitted(59, 35) Source(28, 55) + SourceIndex(3) +1 >Emitted(60, 5) Source(28, 5) + SourceIndex(3) +2 >Emitted(60, 18) Source(28, 18) + SourceIndex(3) +3 >Emitted(60, 19) Source(28, 19) + SourceIndex(3) +4 >Emitted(60, 23) Source(28, 31) + SourceIndex(3) +5 >Emitted(60, 35) Source(28, 55) + SourceIndex(3) --- >>> (function (internalEnum) { 1 >^^^^ @@ -2131,9 +2133,9 @@ sourceFile:../second/second_part1.ts 1 > 2 > export enum 3 > internalEnum -1 >Emitted(60, 5) Source(28, 19) + SourceIndex(3) -2 >Emitted(60, 16) Source(28, 31) + SourceIndex(3) -3 >Emitted(60, 28) Source(28, 43) + SourceIndex(3) +1 >Emitted(61, 5) Source(28, 19) + SourceIndex(3) +2 >Emitted(61, 16) Source(28, 31) + SourceIndex(3) +3 >Emitted(61, 28) Source(28, 43) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -2143,9 +2145,9 @@ sourceFile:../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(61, 9) Source(28, 46) + SourceIndex(3) -2 >Emitted(61, 50) Source(28, 47) + SourceIndex(3) -3 >Emitted(61, 51) Source(28, 47) + SourceIndex(3) +1->Emitted(62, 9) Source(28, 46) + SourceIndex(3) +2 >Emitted(62, 50) Source(28, 47) + SourceIndex(3) +3 >Emitted(62, 51) Source(28, 47) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -2155,9 +2157,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(62, 9) Source(28, 49) + SourceIndex(3) -2 >Emitted(62, 50) Source(28, 50) + SourceIndex(3) -3 >Emitted(62, 51) Source(28, 50) + SourceIndex(3) +1->Emitted(63, 9) Source(28, 49) + SourceIndex(3) +2 >Emitted(63, 50) Source(28, 50) + SourceIndex(3) +3 >Emitted(63, 51) Source(28, 50) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -2167,9 +2169,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(63, 9) Source(28, 52) + SourceIndex(3) -2 >Emitted(63, 50) Source(28, 53) + SourceIndex(3) -3 >Emitted(63, 51) Source(28, 53) + SourceIndex(3) +1->Emitted(64, 9) Source(28, 52) + SourceIndex(3) +2 >Emitted(64, 50) Source(28, 53) + SourceIndex(3) +3 >Emitted(64, 51) Source(28, 53) + SourceIndex(3) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^ @@ -2190,15 +2192,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(64, 5) Source(28, 54) + SourceIndex(3) -2 >Emitted(64, 6) Source(28, 55) + SourceIndex(3) -3 >Emitted(64, 8) Source(28, 31) + SourceIndex(3) -4 >Emitted(64, 20) Source(28, 43) + SourceIndex(3) -5 >Emitted(64, 23) Source(28, 31) + SourceIndex(3) -6 >Emitted(64, 43) Source(28, 43) + SourceIndex(3) -7 >Emitted(64, 48) Source(28, 31) + SourceIndex(3) -8 >Emitted(64, 68) Source(28, 43) + SourceIndex(3) -9 >Emitted(64, 76) Source(28, 55) + SourceIndex(3) +1->Emitted(65, 5) Source(28, 54) + SourceIndex(3) +2 >Emitted(65, 6) Source(28, 55) + SourceIndex(3) +3 >Emitted(65, 8) Source(28, 31) + SourceIndex(3) +4 >Emitted(65, 20) Source(28, 43) + SourceIndex(3) +5 >Emitted(65, 23) Source(28, 31) + SourceIndex(3) +6 >Emitted(65, 43) Source(28, 43) + SourceIndex(3) +7 >Emitted(65, 48) Source(28, 31) + SourceIndex(3) +8 >Emitted(65, 68) Source(28, 43) + SourceIndex(3) +9 >Emitted(65, 76) Source(28, 55) + SourceIndex(3) --- >>>})(normalN || (normalN = {})); 1 > @@ -2226,13 +2228,13 @@ sourceFile:../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(65, 1) Source(29, 1) + SourceIndex(3) -2 >Emitted(65, 2) Source(29, 2) + SourceIndex(3) -3 >Emitted(65, 4) Source(20, 11) + SourceIndex(3) -4 >Emitted(65, 11) Source(20, 18) + SourceIndex(3) -5 >Emitted(65, 16) Source(20, 11) + SourceIndex(3) -6 >Emitted(65, 23) Source(20, 18) + SourceIndex(3) -7 >Emitted(65, 31) Source(29, 2) + SourceIndex(3) +1 >Emitted(66, 1) Source(29, 1) + SourceIndex(3) +2 >Emitted(66, 2) Source(29, 2) + SourceIndex(3) +3 >Emitted(66, 4) Source(20, 11) + SourceIndex(3) +4 >Emitted(66, 11) Source(20, 18) + SourceIndex(3) +5 >Emitted(66, 16) Source(20, 11) + SourceIndex(3) +6 >Emitted(66, 23) Source(20, 18) + SourceIndex(3) +7 >Emitted(66, 31) Source(29, 2) + SourceIndex(3) --- >>>/*@internal*/ var internalC = /** @class */ (function () { 1-> @@ -2243,15 +2245,15 @@ sourceFile:../second/second_part1.ts > 2 >/*@internal*/ 3 > -1->Emitted(66, 1) Source(30, 1) + SourceIndex(3) -2 >Emitted(66, 14) Source(30, 14) + SourceIndex(3) -3 >Emitted(66, 15) Source(30, 15) + SourceIndex(3) +1->Emitted(67, 1) Source(30, 1) + SourceIndex(3) +2 >Emitted(67, 14) Source(30, 14) + SourceIndex(3) +3 >Emitted(67, 15) Source(30, 15) + SourceIndex(3) --- >>> function internalC() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(67, 5) Source(30, 15) + SourceIndex(3) +1->Emitted(68, 5) Source(30, 15) + SourceIndex(3) --- >>> } 1->^^^^ @@ -2259,16 +2261,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->class internalC { 2 > } -1->Emitted(68, 5) Source(30, 32) + SourceIndex(3) -2 >Emitted(68, 6) Source(30, 33) + SourceIndex(3) +1->Emitted(69, 5) Source(30, 32) + SourceIndex(3) +2 >Emitted(69, 6) Source(30, 33) + SourceIndex(3) --- >>> return internalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(69, 5) Source(30, 32) + SourceIndex(3) -2 >Emitted(69, 21) Source(30, 33) + SourceIndex(3) +1->Emitted(70, 5) Source(30, 32) + SourceIndex(3) +2 >Emitted(70, 21) Source(30, 33) + SourceIndex(3) --- >>>}()); 1 > @@ -2280,10 +2282,10 @@ sourceFile:../second/second_part1.ts 2 >} 3 > 4 > class internalC {} -1 >Emitted(70, 1) Source(30, 32) + SourceIndex(3) -2 >Emitted(70, 2) Source(30, 33) + SourceIndex(3) -3 >Emitted(70, 2) Source(30, 15) + SourceIndex(3) -4 >Emitted(70, 6) Source(30, 33) + SourceIndex(3) +1 >Emitted(71, 1) Source(30, 32) + SourceIndex(3) +2 >Emitted(71, 2) Source(30, 33) + SourceIndex(3) +3 >Emitted(71, 2) Source(30, 15) + SourceIndex(3) +4 >Emitted(71, 6) Source(30, 33) + SourceIndex(3) --- >>>/*@internal*/ function internalfoo() { } 1-> @@ -2301,13 +2303,13 @@ sourceFile:../second/second_part1.ts 5 > internalfoo 6 > () { 7 > } -1->Emitted(71, 1) Source(31, 1) + SourceIndex(3) -2 >Emitted(71, 14) Source(31, 14) + SourceIndex(3) -3 >Emitted(71, 15) Source(31, 15) + SourceIndex(3) -4 >Emitted(71, 24) Source(31, 24) + SourceIndex(3) -5 >Emitted(71, 35) Source(31, 35) + SourceIndex(3) -6 >Emitted(71, 40) Source(31, 39) + SourceIndex(3) -7 >Emitted(71, 41) Source(31, 40) + SourceIndex(3) +1->Emitted(72, 1) Source(31, 1) + SourceIndex(3) +2 >Emitted(72, 14) Source(31, 14) + SourceIndex(3) +3 >Emitted(72, 15) Source(31, 15) + SourceIndex(3) +4 >Emitted(72, 24) Source(31, 24) + SourceIndex(3) +5 >Emitted(72, 35) Source(31, 35) + SourceIndex(3) +6 >Emitted(72, 40) Source(31, 39) + SourceIndex(3) +7 >Emitted(72, 41) Source(31, 40) + SourceIndex(3) --- >>>/*@internal*/ var internalNamespace; 1 > @@ -2323,12 +2325,12 @@ sourceFile:../second/second_part1.ts 4 > namespace 5 > internalNamespace 6 > { export class someClass {} } -1 >Emitted(72, 1) Source(32, 1) + SourceIndex(3) -2 >Emitted(72, 14) Source(32, 14) + SourceIndex(3) -3 >Emitted(72, 15) Source(32, 15) + SourceIndex(3) -4 >Emitted(72, 19) Source(32, 25) + SourceIndex(3) -5 >Emitted(72, 36) Source(32, 42) + SourceIndex(3) -6 >Emitted(72, 37) Source(32, 72) + SourceIndex(3) +1 >Emitted(73, 1) Source(32, 1) + SourceIndex(3) +2 >Emitted(73, 14) Source(32, 14) + SourceIndex(3) +3 >Emitted(73, 15) Source(32, 15) + SourceIndex(3) +4 >Emitted(73, 19) Source(32, 25) + SourceIndex(3) +5 >Emitted(73, 36) Source(32, 42) + SourceIndex(3) +6 >Emitted(73, 37) Source(32, 72) + SourceIndex(3) --- >>>(function (internalNamespace) { 1 > @@ -2338,21 +2340,21 @@ sourceFile:../second/second_part1.ts 1 > 2 >namespace 3 > internalNamespace -1 >Emitted(73, 1) Source(32, 15) + SourceIndex(3) -2 >Emitted(73, 12) Source(32, 25) + SourceIndex(3) -3 >Emitted(73, 29) Source(32, 42) + SourceIndex(3) +1 >Emitted(74, 1) Source(32, 15) + SourceIndex(3) +2 >Emitted(74, 12) Source(32, 25) + SourceIndex(3) +3 >Emitted(74, 29) Source(32, 42) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(74, 5) Source(32, 45) + SourceIndex(3) +1->Emitted(75, 5) Source(32, 45) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(75, 9) Source(32, 45) + SourceIndex(3) +1->Emitted(76, 9) Source(32, 45) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -2360,16 +2362,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(76, 9) Source(32, 69) + SourceIndex(3) -2 >Emitted(76, 10) Source(32, 70) + SourceIndex(3) +1->Emitted(77, 9) Source(32, 69) + SourceIndex(3) +2 >Emitted(77, 10) Source(32, 70) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(77, 9) Source(32, 69) + SourceIndex(3) -2 >Emitted(77, 25) Source(32, 70) + SourceIndex(3) +1->Emitted(78, 9) Source(32, 69) + SourceIndex(3) +2 >Emitted(78, 25) Source(32, 70) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -2381,10 +2383,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(78, 5) Source(32, 69) + SourceIndex(3) -2 >Emitted(78, 6) Source(32, 70) + SourceIndex(3) -3 >Emitted(78, 6) Source(32, 45) + SourceIndex(3) -4 >Emitted(78, 10) Source(32, 70) + SourceIndex(3) +1 >Emitted(79, 5) Source(32, 69) + SourceIndex(3) +2 >Emitted(79, 6) Source(32, 70) + SourceIndex(3) +3 >Emitted(79, 6) Source(32, 45) + SourceIndex(3) +4 >Emitted(79, 10) Source(32, 70) + SourceIndex(3) --- >>> internalNamespace.someClass = someClass; 1->^^^^ @@ -2396,10 +2398,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(79, 5) Source(32, 58) + SourceIndex(3) -2 >Emitted(79, 32) Source(32, 67) + SourceIndex(3) -3 >Emitted(79, 44) Source(32, 70) + SourceIndex(3) -4 >Emitted(79, 45) Source(32, 70) + SourceIndex(3) +1->Emitted(80, 5) Source(32, 58) + SourceIndex(3) +2 >Emitted(80, 32) Source(32, 67) + SourceIndex(3) +3 >Emitted(80, 44) Source(32, 70) + SourceIndex(3) +4 >Emitted(80, 45) Source(32, 70) + SourceIndex(3) --- >>>})(internalNamespace || (internalNamespace = {})); 1-> @@ -2416,13 +2418,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalNamespace 7 > { export class someClass {} } -1->Emitted(80, 1) Source(32, 71) + SourceIndex(3) -2 >Emitted(80, 2) Source(32, 72) + SourceIndex(3) -3 >Emitted(80, 4) Source(32, 25) + SourceIndex(3) -4 >Emitted(80, 21) Source(32, 42) + SourceIndex(3) -5 >Emitted(80, 26) Source(32, 25) + SourceIndex(3) -6 >Emitted(80, 43) Source(32, 42) + SourceIndex(3) -7 >Emitted(80, 51) Source(32, 72) + SourceIndex(3) +1->Emitted(81, 1) Source(32, 71) + SourceIndex(3) +2 >Emitted(81, 2) Source(32, 72) + SourceIndex(3) +3 >Emitted(81, 4) Source(32, 25) + SourceIndex(3) +4 >Emitted(81, 21) Source(32, 42) + SourceIndex(3) +5 >Emitted(81, 26) Source(32, 25) + SourceIndex(3) +6 >Emitted(81, 43) Source(32, 42) + SourceIndex(3) +7 >Emitted(81, 51) Source(32, 72) + SourceIndex(3) --- >>>/*@internal*/ var internalOther; 1 > @@ -2438,12 +2440,12 @@ sourceFile:../second/second_part1.ts 4 > namespace 5 > internalOther 6 > .something { export class someClass {} } -1 >Emitted(81, 1) Source(33, 1) + SourceIndex(3) -2 >Emitted(81, 14) Source(33, 14) + SourceIndex(3) -3 >Emitted(81, 15) Source(33, 15) + SourceIndex(3) -4 >Emitted(81, 19) Source(33, 25) + SourceIndex(3) -5 >Emitted(81, 32) Source(33, 38) + SourceIndex(3) -6 >Emitted(81, 33) Source(33, 78) + SourceIndex(3) +1 >Emitted(82, 1) Source(33, 1) + SourceIndex(3) +2 >Emitted(82, 14) Source(33, 14) + SourceIndex(3) +3 >Emitted(82, 15) Source(33, 15) + SourceIndex(3) +4 >Emitted(82, 19) Source(33, 25) + SourceIndex(3) +5 >Emitted(82, 32) Source(33, 38) + SourceIndex(3) +6 >Emitted(82, 33) Source(33, 78) + SourceIndex(3) --- >>>(function (internalOther) { 1 > @@ -2452,9 +2454,9 @@ sourceFile:../second/second_part1.ts 1 > 2 >namespace 3 > internalOther -1 >Emitted(82, 1) Source(33, 15) + SourceIndex(3) -2 >Emitted(82, 12) Source(33, 25) + SourceIndex(3) -3 >Emitted(82, 25) Source(33, 38) + SourceIndex(3) +1 >Emitted(83, 1) Source(33, 15) + SourceIndex(3) +2 >Emitted(83, 12) Source(33, 25) + SourceIndex(3) +3 >Emitted(83, 25) Source(33, 38) + SourceIndex(3) --- >>> var something; 1 >^^^^ @@ -2466,10 +2468,10 @@ sourceFile:../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(83, 5) Source(33, 39) + SourceIndex(3) -2 >Emitted(83, 9) Source(33, 39) + SourceIndex(3) -3 >Emitted(83, 18) Source(33, 48) + SourceIndex(3) -4 >Emitted(83, 19) Source(33, 78) + SourceIndex(3) +1 >Emitted(84, 5) Source(33, 39) + SourceIndex(3) +2 >Emitted(84, 9) Source(33, 39) + SourceIndex(3) +3 >Emitted(84, 18) Source(33, 48) + SourceIndex(3) +4 >Emitted(84, 19) Source(33, 78) + SourceIndex(3) --- >>> (function (something) { 1->^^^^ @@ -2479,21 +2481,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(84, 5) Source(33, 39) + SourceIndex(3) -2 >Emitted(84, 16) Source(33, 39) + SourceIndex(3) -3 >Emitted(84, 25) Source(33, 48) + SourceIndex(3) +1->Emitted(85, 5) Source(33, 39) + SourceIndex(3) +2 >Emitted(85, 16) Source(33, 39) + SourceIndex(3) +3 >Emitted(85, 25) Source(33, 48) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(85, 9) Source(33, 51) + SourceIndex(3) +1->Emitted(86, 9) Source(33, 51) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(86, 13) Source(33, 51) + SourceIndex(3) +1->Emitted(87, 13) Source(33, 51) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -2501,16 +2503,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(87, 13) Source(33, 75) + SourceIndex(3) -2 >Emitted(87, 14) Source(33, 76) + SourceIndex(3) +1->Emitted(88, 13) Source(33, 75) + SourceIndex(3) +2 >Emitted(88, 14) Source(33, 76) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(88, 13) Source(33, 75) + SourceIndex(3) -2 >Emitted(88, 29) Source(33, 76) + SourceIndex(3) +1->Emitted(89, 13) Source(33, 75) + SourceIndex(3) +2 >Emitted(89, 29) Source(33, 76) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -2522,10 +2524,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(89, 9) Source(33, 75) + SourceIndex(3) -2 >Emitted(89, 10) Source(33, 76) + SourceIndex(3) -3 >Emitted(89, 10) Source(33, 51) + SourceIndex(3) -4 >Emitted(89, 14) Source(33, 76) + SourceIndex(3) +1 >Emitted(90, 9) Source(33, 75) + SourceIndex(3) +2 >Emitted(90, 10) Source(33, 76) + SourceIndex(3) +3 >Emitted(90, 10) Source(33, 51) + SourceIndex(3) +4 >Emitted(90, 14) Source(33, 76) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^ @@ -2537,10 +2539,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(90, 9) Source(33, 64) + SourceIndex(3) -2 >Emitted(90, 28) Source(33, 73) + SourceIndex(3) -3 >Emitted(90, 40) Source(33, 76) + SourceIndex(3) -4 >Emitted(90, 41) Source(33, 76) + SourceIndex(3) +1->Emitted(91, 9) Source(33, 64) + SourceIndex(3) +2 >Emitted(91, 28) Source(33, 73) + SourceIndex(3) +3 >Emitted(91, 40) Source(33, 76) + SourceIndex(3) +4 >Emitted(91, 41) Source(33, 76) + SourceIndex(3) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^ @@ -2561,15 +2563,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(91, 5) Source(33, 77) + SourceIndex(3) -2 >Emitted(91, 6) Source(33, 78) + SourceIndex(3) -3 >Emitted(91, 8) Source(33, 39) + SourceIndex(3) -4 >Emitted(91, 17) Source(33, 48) + SourceIndex(3) -5 >Emitted(91, 20) Source(33, 39) + SourceIndex(3) -6 >Emitted(91, 43) Source(33, 48) + SourceIndex(3) -7 >Emitted(91, 48) Source(33, 39) + SourceIndex(3) -8 >Emitted(91, 71) Source(33, 48) + SourceIndex(3) -9 >Emitted(91, 79) Source(33, 78) + SourceIndex(3) +1->Emitted(92, 5) Source(33, 77) + SourceIndex(3) +2 >Emitted(92, 6) Source(33, 78) + SourceIndex(3) +3 >Emitted(92, 8) Source(33, 39) + SourceIndex(3) +4 >Emitted(92, 17) Source(33, 48) + SourceIndex(3) +5 >Emitted(92, 20) Source(33, 39) + SourceIndex(3) +6 >Emitted(92, 43) Source(33, 48) + SourceIndex(3) +7 >Emitted(92, 48) Source(33, 39) + SourceIndex(3) +8 >Emitted(92, 71) Source(33, 48) + SourceIndex(3) +9 >Emitted(92, 79) Source(33, 78) + SourceIndex(3) --- >>>})(internalOther || (internalOther = {})); 1 > @@ -2587,13 +2589,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalOther 7 > .something { export class someClass {} } -1 >Emitted(92, 1) Source(33, 77) + SourceIndex(3) -2 >Emitted(92, 2) Source(33, 78) + SourceIndex(3) -3 >Emitted(92, 4) Source(33, 25) + SourceIndex(3) -4 >Emitted(92, 17) Source(33, 38) + SourceIndex(3) -5 >Emitted(92, 22) Source(33, 25) + SourceIndex(3) -6 >Emitted(92, 35) Source(33, 38) + SourceIndex(3) -7 >Emitted(92, 43) Source(33, 78) + SourceIndex(3) +1 >Emitted(93, 1) Source(33, 77) + SourceIndex(3) +2 >Emitted(93, 2) Source(33, 78) + SourceIndex(3) +3 >Emitted(93, 4) Source(33, 25) + SourceIndex(3) +4 >Emitted(93, 17) Source(33, 38) + SourceIndex(3) +5 >Emitted(93, 22) Source(33, 25) + SourceIndex(3) +6 >Emitted(93, 35) Source(33, 38) + SourceIndex(3) +7 >Emitted(93, 43) Source(33, 78) + SourceIndex(3) --- >>>/*@internal*/ var internalImport = internalNamespace.someClass; 1-> @@ -2617,16 +2619,16 @@ sourceFile:../second/second_part1.ts 8 > . 9 > someClass 10> ; -1->Emitted(93, 1) Source(34, 1) + SourceIndex(3) -2 >Emitted(93, 14) Source(34, 14) + SourceIndex(3) -3 >Emitted(93, 15) Source(34, 15) + SourceIndex(3) -4 >Emitted(93, 19) Source(34, 22) + SourceIndex(3) -5 >Emitted(93, 33) Source(34, 36) + SourceIndex(3) -6 >Emitted(93, 36) Source(34, 39) + SourceIndex(3) -7 >Emitted(93, 53) Source(34, 56) + SourceIndex(3) -8 >Emitted(93, 54) Source(34, 57) + SourceIndex(3) -9 >Emitted(93, 63) Source(34, 66) + SourceIndex(3) -10>Emitted(93, 64) Source(34, 67) + SourceIndex(3) +1->Emitted(94, 1) Source(34, 1) + SourceIndex(3) +2 >Emitted(94, 14) Source(34, 14) + SourceIndex(3) +3 >Emitted(94, 15) Source(34, 15) + SourceIndex(3) +4 >Emitted(94, 19) Source(34, 22) + SourceIndex(3) +5 >Emitted(94, 33) Source(34, 36) + SourceIndex(3) +6 >Emitted(94, 36) Source(34, 39) + SourceIndex(3) +7 >Emitted(94, 53) Source(34, 56) + SourceIndex(3) +8 >Emitted(94, 54) Source(34, 57) + SourceIndex(3) +9 >Emitted(94, 63) Source(34, 66) + SourceIndex(3) +10>Emitted(94, 64) Source(34, 67) + SourceIndex(3) --- >>>/*@internal*/ var internalConst = 10; 1 > @@ -2647,14 +2649,14 @@ sourceFile:../second/second_part1.ts 6 > = 7 > 10 8 > ; -1 >Emitted(94, 1) Source(36, 1) + SourceIndex(3) -2 >Emitted(94, 14) Source(36, 14) + SourceIndex(3) -3 >Emitted(94, 15) Source(36, 15) + SourceIndex(3) -4 >Emitted(94, 19) Source(36, 21) + SourceIndex(3) -5 >Emitted(94, 32) Source(36, 34) + SourceIndex(3) -6 >Emitted(94, 35) Source(36, 37) + SourceIndex(3) -7 >Emitted(94, 37) Source(36, 39) + SourceIndex(3) -8 >Emitted(94, 38) Source(36, 40) + SourceIndex(3) +1 >Emitted(95, 1) Source(36, 1) + SourceIndex(3) +2 >Emitted(95, 14) Source(36, 14) + SourceIndex(3) +3 >Emitted(95, 15) Source(36, 15) + SourceIndex(3) +4 >Emitted(95, 19) Source(36, 21) + SourceIndex(3) +5 >Emitted(95, 32) Source(36, 34) + SourceIndex(3) +6 >Emitted(95, 35) Source(36, 37) + SourceIndex(3) +7 >Emitted(95, 37) Source(36, 39) + SourceIndex(3) +8 >Emitted(95, 38) Source(36, 40) + SourceIndex(3) --- >>>/*@internal*/ var internalEnum; 1 > @@ -2668,11 +2670,11 @@ sourceFile:../second/second_part1.ts 3 > 4 > enum 5 > internalEnum { a, b, c } -1 >Emitted(95, 1) Source(37, 1) + SourceIndex(3) -2 >Emitted(95, 14) Source(37, 14) + SourceIndex(3) -3 >Emitted(95, 15) Source(37, 15) + SourceIndex(3) -4 >Emitted(95, 19) Source(37, 20) + SourceIndex(3) -5 >Emitted(95, 31) Source(37, 44) + SourceIndex(3) +1 >Emitted(96, 1) Source(37, 1) + SourceIndex(3) +2 >Emitted(96, 14) Source(37, 14) + SourceIndex(3) +3 >Emitted(96, 15) Source(37, 15) + SourceIndex(3) +4 >Emitted(96, 19) Source(37, 20) + SourceIndex(3) +5 >Emitted(96, 31) Source(37, 44) + SourceIndex(3) --- >>>(function (internalEnum) { 1 > @@ -2682,9 +2684,9 @@ sourceFile:../second/second_part1.ts 1 > 2 >enum 3 > internalEnum -1 >Emitted(96, 1) Source(37, 15) + SourceIndex(3) -2 >Emitted(96, 12) Source(37, 20) + SourceIndex(3) -3 >Emitted(96, 24) Source(37, 32) + SourceIndex(3) +1 >Emitted(97, 1) Source(37, 15) + SourceIndex(3) +2 >Emitted(97, 12) Source(37, 20) + SourceIndex(3) +3 >Emitted(97, 24) Source(37, 32) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^ @@ -2694,9 +2696,9 @@ sourceFile:../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(97, 5) Source(37, 35) + SourceIndex(3) -2 >Emitted(97, 46) Source(37, 36) + SourceIndex(3) -3 >Emitted(97, 47) Source(37, 36) + SourceIndex(3) +1->Emitted(98, 5) Source(37, 35) + SourceIndex(3) +2 >Emitted(98, 46) Source(37, 36) + SourceIndex(3) +3 >Emitted(98, 47) Source(37, 36) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^ @@ -2706,9 +2708,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(98, 5) Source(37, 38) + SourceIndex(3) -2 >Emitted(98, 46) Source(37, 39) + SourceIndex(3) -3 >Emitted(98, 47) Source(37, 39) + SourceIndex(3) +1->Emitted(99, 5) Source(37, 38) + SourceIndex(3) +2 >Emitted(99, 46) Source(37, 39) + SourceIndex(3) +3 >Emitted(99, 47) Source(37, 39) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^ @@ -2717,9 +2719,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(99, 5) Source(37, 41) + SourceIndex(3) -2 >Emitted(99, 46) Source(37, 42) + SourceIndex(3) -3 >Emitted(99, 47) Source(37, 42) + SourceIndex(3) +1->Emitted(100, 5) Source(37, 41) + SourceIndex(3) +2 >Emitted(100, 46) Source(37, 42) + SourceIndex(3) +3 >Emitted(100, 47) Source(37, 42) + SourceIndex(3) --- >>>})(internalEnum || (internalEnum = {})); 1 > @@ -2736,13 +2738,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalEnum 7 > { a, b, c } -1 >Emitted(100, 1) Source(37, 43) + SourceIndex(3) -2 >Emitted(100, 2) Source(37, 44) + SourceIndex(3) -3 >Emitted(100, 4) Source(37, 20) + SourceIndex(3) -4 >Emitted(100, 16) Source(37, 32) + SourceIndex(3) -5 >Emitted(100, 21) Source(37, 20) + SourceIndex(3) -6 >Emitted(100, 33) Source(37, 32) + SourceIndex(3) -7 >Emitted(100, 41) Source(37, 44) + SourceIndex(3) +1 >Emitted(101, 1) Source(37, 43) + SourceIndex(3) +2 >Emitted(101, 2) Source(37, 44) + SourceIndex(3) +3 >Emitted(101, 4) Source(37, 20) + SourceIndex(3) +4 >Emitted(101, 16) Source(37, 32) + SourceIndex(3) +5 >Emitted(101, 21) Source(37, 20) + SourceIndex(3) +6 >Emitted(101, 33) Source(37, 32) + SourceIndex(3) +7 >Emitted(101, 41) Source(37, 44) + SourceIndex(3) --- ------------------------------------------------------------------- emittedFile:/src/2/second-output.js @@ -2752,13 +2754,13 @@ sourceFile:../second/second_part2.ts 1 > 2 >^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(101, 1) Source(1, 1) + SourceIndex(4) +1 >Emitted(102, 1) Source(1, 1) + SourceIndex(4) --- >>> function C() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(102, 5) Source(1, 1) + SourceIndex(4) +1->Emitted(103, 5) Source(1, 1) + SourceIndex(4) --- >>> } 1->^^^^ @@ -2770,8 +2772,8 @@ sourceFile:../second/second_part2.ts > } > 2 > } -1->Emitted(103, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(103, 6) Source(5, 2) + SourceIndex(4) +1->Emitted(104, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(104, 6) Source(5, 2) + SourceIndex(4) --- >>> C.prototype.doSomething = function () { 1->^^^^ @@ -2781,9 +2783,9 @@ sourceFile:../second/second_part2.ts 1-> 2 > doSomething 3 > -1->Emitted(104, 5) Source(2, 5) + SourceIndex(4) -2 >Emitted(104, 28) Source(2, 16) + SourceIndex(4) -3 >Emitted(104, 31) Source(2, 5) + SourceIndex(4) +1->Emitted(105, 5) Source(2, 5) + SourceIndex(4) +2 >Emitted(105, 28) Source(2, 16) + SourceIndex(4) +3 >Emitted(105, 31) Source(2, 5) + SourceIndex(4) --- >>> console.log("something got done"); 1->^^^^^^^^ @@ -2803,14 +2805,14 @@ sourceFile:../second/second_part2.ts 6 > "something got done" 7 > ) 8 > ; -1->Emitted(105, 9) Source(3, 9) + SourceIndex(4) -2 >Emitted(105, 16) Source(3, 16) + SourceIndex(4) -3 >Emitted(105, 17) Source(3, 17) + SourceIndex(4) -4 >Emitted(105, 20) Source(3, 20) + SourceIndex(4) -5 >Emitted(105, 21) Source(3, 21) + SourceIndex(4) -6 >Emitted(105, 41) Source(3, 41) + SourceIndex(4) -7 >Emitted(105, 42) Source(3, 42) + SourceIndex(4) -8 >Emitted(105, 43) Source(3, 43) + SourceIndex(4) +1->Emitted(106, 9) Source(3, 9) + SourceIndex(4) +2 >Emitted(106, 16) Source(3, 16) + SourceIndex(4) +3 >Emitted(106, 17) Source(3, 17) + SourceIndex(4) +4 >Emitted(106, 20) Source(3, 20) + SourceIndex(4) +5 >Emitted(106, 21) Source(3, 21) + SourceIndex(4) +6 >Emitted(106, 41) Source(3, 41) + SourceIndex(4) +7 >Emitted(106, 42) Source(3, 42) + SourceIndex(4) +8 >Emitted(106, 43) Source(3, 43) + SourceIndex(4) --- >>> }; 1 >^^^^ @@ -2819,8 +2821,8 @@ sourceFile:../second/second_part2.ts 1 > > 2 > } -1 >Emitted(106, 5) Source(4, 5) + SourceIndex(4) -2 >Emitted(106, 6) Source(4, 6) + SourceIndex(4) +1 >Emitted(107, 5) Source(4, 5) + SourceIndex(4) +2 >Emitted(107, 6) Source(4, 6) + SourceIndex(4) --- >>> return C; 1->^^^^ @@ -2828,8 +2830,8 @@ sourceFile:../second/second_part2.ts 1-> > 2 > } -1->Emitted(107, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(107, 13) Source(5, 2) + SourceIndex(4) +1->Emitted(108, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(108, 13) Source(5, 2) + SourceIndex(4) --- >>>}()); 1 > @@ -2845,10 +2847,10 @@ sourceFile:../second/second_part2.ts > console.log("something got done"); > } > } -1 >Emitted(108, 1) Source(5, 1) + SourceIndex(4) -2 >Emitted(108, 2) Source(5, 2) + SourceIndex(4) -3 >Emitted(108, 2) Source(1, 1) + SourceIndex(4) -4 >Emitted(108, 6) Source(5, 2) + SourceIndex(4) +1 >Emitted(109, 1) Source(5, 1) + SourceIndex(4) +2 >Emitted(109, 2) Source(5, 2) + SourceIndex(4) +3 >Emitted(109, 2) Source(1, 1) + SourceIndex(4) +4 >Emitted(109, 6) Source(5, 2) + SourceIndex(4) --- >>>//# sourceMappingURL=second-output.js.map @@ -2877,7 +2879,7 @@ sourceFile:../second/second_part2.ts }, { "pos": 110, - "end": 3527, + "end": 3575, "kind": "text" } ] @@ -2958,7 +2960,7 @@ function f() { } ---------------------------------------------------------------------- -text: (110-3527) +text: (110-3575) var N; (function (N) { function f() { @@ -2969,8 +2971,9 @@ var N; var normalC = /** @class */ (function () { /*@internal*/ function normalC() { } - /*@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /*@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /*@internal*/ get: function () { return 10; }, /*@internal*/ set: function (val) { }, enumerable: false, @@ -3823,8 +3826,9 @@ var N; var normalC = /** @class */ (function () { /*@internal*/ function normalC() { } - /*@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /*@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /*@internal*/ get: function () { return 10; }, /*@internal*/ set: function (val) { }, enumerable: false, @@ -3920,7 +3924,7 @@ c.doSomething(); //# sourceMappingURL=third-output.js.map //// [/src/third/thirdjs/output/third-output.js.map] -{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} //// [/src/third/thirdjs/output/third-output.js.map.baseline.txt] =================================================================== @@ -4226,13 +4230,14 @@ sourceFile:../../../second/second_part1.ts >>> } 1 >^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 >constructor() { 2 > } 1 >Emitted(16, 5) Source(14, 35) + SourceIndex(3) 2 >Emitted(16, 6) Source(14, 36) + SourceIndex(3) --- ->>> /*@internal*/ normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> /*@internal*/ normalC_prototype.method = function () { }; 1->^^^^ 2 > ^^^^^^^^^^^^^ 3 > ^ @@ -4249,15 +4254,15 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > method() { 7 > } -1->Emitted(17, 5) Source(16, 5) + SourceIndex(3) -2 >Emitted(17, 18) Source(16, 18) + SourceIndex(3) -3 >Emitted(17, 19) Source(16, 19) + SourceIndex(3) -4 >Emitted(17, 43) Source(16, 25) + SourceIndex(3) -5 >Emitted(17, 46) Source(16, 19) + SourceIndex(3) -6 >Emitted(17, 60) Source(16, 30) + SourceIndex(3) -7 >Emitted(17, 61) Source(16, 31) + SourceIndex(3) ---- ->>> Object.defineProperty(normalC.prototype, "c", { +1->Emitted(18, 5) Source(16, 5) + SourceIndex(3) +2 >Emitted(18, 18) Source(16, 18) + SourceIndex(3) +3 >Emitted(18, 19) Source(16, 19) + SourceIndex(3) +4 >Emitted(18, 43) Source(16, 25) + SourceIndex(3) +5 >Emitted(18, 46) Source(16, 19) + SourceIndex(3) +6 >Emitted(18, 60) Source(16, 30) + SourceIndex(3) +7 >Emitted(18, 61) Source(16, 31) + SourceIndex(3) +--- +>>> Object.defineProperty(normalC_prototype, "c", { 1 >^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -4266,9 +4271,9 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ 2 > get 3 > c -1 >Emitted(18, 5) Source(17, 19) + SourceIndex(3) -2 >Emitted(18, 27) Source(17, 23) + SourceIndex(3) -3 >Emitted(18, 49) Source(17, 24) + SourceIndex(3) +1 >Emitted(19, 5) Source(17, 19) + SourceIndex(3) +2 >Emitted(19, 27) Source(17, 23) + SourceIndex(3) +3 >Emitted(19, 49) Source(17, 24) + SourceIndex(3) --- >>> /*@internal*/ get: function () { return 10; }, 1->^^^^^^^^ @@ -4289,15 +4294,15 @@ sourceFile:../../../second/second_part1.ts 7 > ; 8 > 9 > } -1->Emitted(19, 9) Source(17, 5) + SourceIndex(3) -2 >Emitted(19, 22) Source(17, 18) + SourceIndex(3) -3 >Emitted(19, 28) Source(17, 19) + SourceIndex(3) -4 >Emitted(19, 42) Source(17, 29) + SourceIndex(3) -5 >Emitted(19, 49) Source(17, 36) + SourceIndex(3) -6 >Emitted(19, 51) Source(17, 38) + SourceIndex(3) -7 >Emitted(19, 52) Source(17, 39) + SourceIndex(3) -8 >Emitted(19, 53) Source(17, 40) + SourceIndex(3) -9 >Emitted(19, 54) Source(17, 41) + SourceIndex(3) +1->Emitted(20, 9) Source(17, 5) + SourceIndex(3) +2 >Emitted(20, 22) Source(17, 18) + SourceIndex(3) +3 >Emitted(20, 28) Source(17, 19) + SourceIndex(3) +4 >Emitted(20, 42) Source(17, 29) + SourceIndex(3) +5 >Emitted(20, 49) Source(17, 36) + SourceIndex(3) +6 >Emitted(20, 51) Source(17, 38) + SourceIndex(3) +7 >Emitted(20, 52) Source(17, 39) + SourceIndex(3) +8 >Emitted(20, 53) Source(17, 40) + SourceIndex(3) +9 >Emitted(20, 54) Source(17, 41) + SourceIndex(3) --- >>> /*@internal*/ set: function (val) { }, 1 >^^^^^^^^ @@ -4315,13 +4320,13 @@ sourceFile:../../../second/second_part1.ts 5 > val: number 6 > ) { 7 > } -1 >Emitted(20, 9) Source(18, 5) + SourceIndex(3) -2 >Emitted(20, 22) Source(18, 18) + SourceIndex(3) -3 >Emitted(20, 28) Source(18, 19) + SourceIndex(3) -4 >Emitted(20, 38) Source(18, 25) + SourceIndex(3) -5 >Emitted(20, 41) Source(18, 36) + SourceIndex(3) -6 >Emitted(20, 45) Source(18, 40) + SourceIndex(3) -7 >Emitted(20, 46) Source(18, 41) + SourceIndex(3) +1 >Emitted(21, 9) Source(18, 5) + SourceIndex(3) +2 >Emitted(21, 22) Source(18, 18) + SourceIndex(3) +3 >Emitted(21, 28) Source(18, 19) + SourceIndex(3) +4 >Emitted(21, 38) Source(18, 25) + SourceIndex(3) +5 >Emitted(21, 41) Source(18, 36) + SourceIndex(3) +6 >Emitted(21, 45) Source(18, 40) + SourceIndex(3) +7 >Emitted(21, 46) Source(18, 41) + SourceIndex(3) --- >>> enumerable: false, >>> configurable: true @@ -4329,7 +4334,7 @@ sourceFile:../../../second/second_part1.ts 1 >^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(23, 8) Source(17, 41) + SourceIndex(3) +1 >Emitted(24, 8) Source(17, 41) + SourceIndex(3) --- >>> return normalC; 1->^^^^ @@ -4338,8 +4343,8 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ set c(val: number) { } > 2 > } -1->Emitted(24, 5) Source(19, 1) + SourceIndex(3) -2 >Emitted(24, 19) Source(19, 2) + SourceIndex(3) +1->Emitted(25, 5) Source(19, 1) + SourceIndex(3) +2 >Emitted(25, 19) Source(19, 2) + SourceIndex(3) --- >>>}()); 1 > @@ -4357,10 +4362,10 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ get c() { return 10; } > /*@internal*/ set c(val: number) { } > } -1 >Emitted(25, 1) Source(19, 1) + SourceIndex(3) -2 >Emitted(25, 2) Source(19, 2) + SourceIndex(3) -3 >Emitted(25, 2) Source(13, 1) + SourceIndex(3) -4 >Emitted(25, 6) Source(19, 2) + SourceIndex(3) +1 >Emitted(26, 1) Source(19, 1) + SourceIndex(3) +2 >Emitted(26, 2) Source(19, 2) + SourceIndex(3) +3 >Emitted(26, 2) Source(13, 1) + SourceIndex(3) +4 >Emitted(26, 6) Source(19, 2) + SourceIndex(3) --- >>>var normalN; 1-> @@ -4382,10 +4387,10 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1->Emitted(26, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(26, 5) Source(20, 11) + SourceIndex(3) -3 >Emitted(26, 12) Source(20, 18) + SourceIndex(3) -4 >Emitted(26, 13) Source(29, 2) + SourceIndex(3) +1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(27, 5) Source(20, 11) + SourceIndex(3) +3 >Emitted(27, 12) Source(20, 18) + SourceIndex(3) +4 >Emitted(27, 13) Source(29, 2) + SourceIndex(3) --- >>>(function (normalN) { 1-> @@ -4395,9 +4400,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > normalN -1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(27, 12) Source(20, 11) + SourceIndex(3) -3 >Emitted(27, 19) Source(20, 18) + SourceIndex(3) +1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(28, 12) Source(20, 11) + SourceIndex(3) +3 >Emitted(28, 19) Source(20, 18) + SourceIndex(3) --- >>> /*@internal*/ var C = /** @class */ (function () { 1->^^^^ @@ -4408,15 +4413,15 @@ sourceFile:../../../second/second_part1.ts > 2 > /*@internal*/ 3 > -1->Emitted(28, 5) Source(21, 5) + SourceIndex(3) -2 >Emitted(28, 18) Source(21, 18) + SourceIndex(3) -3 >Emitted(28, 19) Source(21, 19) + SourceIndex(3) +1->Emitted(29, 5) Source(21, 5) + SourceIndex(3) +2 >Emitted(29, 18) Source(21, 18) + SourceIndex(3) +3 >Emitted(29, 19) Source(21, 19) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(29, 9) Source(21, 19) + SourceIndex(3) +1->Emitted(30, 9) Source(21, 19) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -4424,16 +4429,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(30, 9) Source(21, 36) + SourceIndex(3) -2 >Emitted(30, 10) Source(21, 37) + SourceIndex(3) +1->Emitted(31, 9) Source(21, 36) + SourceIndex(3) +2 >Emitted(31, 10) Source(21, 37) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(31, 9) Source(21, 36) + SourceIndex(3) -2 >Emitted(31, 17) Source(21, 37) + SourceIndex(3) +1->Emitted(32, 9) Source(21, 36) + SourceIndex(3) +2 >Emitted(32, 17) Source(21, 37) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -4445,10 +4450,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(32, 5) Source(21, 36) + SourceIndex(3) -2 >Emitted(32, 6) Source(21, 37) + SourceIndex(3) -3 >Emitted(32, 6) Source(21, 19) + SourceIndex(3) -4 >Emitted(32, 10) Source(21, 37) + SourceIndex(3) +1 >Emitted(33, 5) Source(21, 36) + SourceIndex(3) +2 >Emitted(33, 6) Source(21, 37) + SourceIndex(3) +3 >Emitted(33, 6) Source(21, 19) + SourceIndex(3) +4 >Emitted(33, 10) Source(21, 37) + SourceIndex(3) --- >>> normalN.C = C; 1->^^^^ @@ -4460,10 +4465,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > { } 4 > -1->Emitted(33, 5) Source(21, 32) + SourceIndex(3) -2 >Emitted(33, 14) Source(21, 33) + SourceIndex(3) -3 >Emitted(33, 18) Source(21, 37) + SourceIndex(3) -4 >Emitted(33, 19) Source(21, 37) + SourceIndex(3) +1->Emitted(34, 5) Source(21, 32) + SourceIndex(3) +2 >Emitted(34, 14) Source(21, 33) + SourceIndex(3) +3 >Emitted(34, 18) Source(21, 37) + SourceIndex(3) +4 >Emitted(34, 19) Source(21, 37) + SourceIndex(3) --- >>> /*@internal*/ function foo() { } 1->^^^^ @@ -4481,13 +4486,13 @@ sourceFile:../../../second/second_part1.ts 5 > foo 6 > () { 7 > } -1->Emitted(34, 5) Source(22, 5) + SourceIndex(3) -2 >Emitted(34, 18) Source(22, 18) + SourceIndex(3) -3 >Emitted(34, 19) Source(22, 19) + SourceIndex(3) -4 >Emitted(34, 28) Source(22, 35) + SourceIndex(3) -5 >Emitted(34, 31) Source(22, 38) + SourceIndex(3) -6 >Emitted(34, 36) Source(22, 42) + SourceIndex(3) -7 >Emitted(34, 37) Source(22, 43) + SourceIndex(3) +1->Emitted(35, 5) Source(22, 5) + SourceIndex(3) +2 >Emitted(35, 18) Source(22, 18) + SourceIndex(3) +3 >Emitted(35, 19) Source(22, 19) + SourceIndex(3) +4 >Emitted(35, 28) Source(22, 35) + SourceIndex(3) +5 >Emitted(35, 31) Source(22, 38) + SourceIndex(3) +6 >Emitted(35, 36) Source(22, 42) + SourceIndex(3) +7 >Emitted(35, 37) Source(22, 43) + SourceIndex(3) --- >>> normalN.foo = foo; 1 >^^^^ @@ -4499,10 +4504,10 @@ sourceFile:../../../second/second_part1.ts 2 > foo 3 > () {} 4 > -1 >Emitted(35, 5) Source(22, 35) + SourceIndex(3) -2 >Emitted(35, 16) Source(22, 38) + SourceIndex(3) -3 >Emitted(35, 22) Source(22, 43) + SourceIndex(3) -4 >Emitted(35, 23) Source(22, 43) + SourceIndex(3) +1 >Emitted(36, 5) Source(22, 35) + SourceIndex(3) +2 >Emitted(36, 16) Source(22, 38) + SourceIndex(3) +3 >Emitted(36, 22) Source(22, 43) + SourceIndex(3) +4 >Emitted(36, 23) Source(22, 43) + SourceIndex(3) --- >>> /*@internal*/ var someNamespace; 1->^^^^ @@ -4518,12 +4523,12 @@ sourceFile:../../../second/second_part1.ts 4 > export namespace 5 > someNamespace 6 > { export class C {} } -1->Emitted(36, 5) Source(23, 5) + SourceIndex(3) -2 >Emitted(36, 18) Source(23, 18) + SourceIndex(3) -3 >Emitted(36, 19) Source(23, 19) + SourceIndex(3) -4 >Emitted(36, 23) Source(23, 36) + SourceIndex(3) -5 >Emitted(36, 36) Source(23, 49) + SourceIndex(3) -6 >Emitted(36, 37) Source(23, 71) + SourceIndex(3) +1->Emitted(37, 5) Source(23, 5) + SourceIndex(3) +2 >Emitted(37, 18) Source(23, 18) + SourceIndex(3) +3 >Emitted(37, 19) Source(23, 19) + SourceIndex(3) +4 >Emitted(37, 23) Source(23, 36) + SourceIndex(3) +5 >Emitted(37, 36) Source(23, 49) + SourceIndex(3) +6 >Emitted(37, 37) Source(23, 71) + SourceIndex(3) --- >>> (function (someNamespace) { 1 >^^^^ @@ -4533,21 +4538,21 @@ sourceFile:../../../second/second_part1.ts 1 > 2 > export namespace 3 > someNamespace -1 >Emitted(37, 5) Source(23, 19) + SourceIndex(3) -2 >Emitted(37, 16) Source(23, 36) + SourceIndex(3) -3 >Emitted(37, 29) Source(23, 49) + SourceIndex(3) +1 >Emitted(38, 5) Source(23, 19) + SourceIndex(3) +2 >Emitted(38, 16) Source(23, 36) + SourceIndex(3) +3 >Emitted(38, 29) Source(23, 49) + SourceIndex(3) --- >>> var C = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(38, 9) Source(23, 52) + SourceIndex(3) +1->Emitted(39, 9) Source(23, 52) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(39, 13) Source(23, 52) + SourceIndex(3) +1->Emitted(40, 13) Source(23, 52) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -4555,16 +4560,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(40, 13) Source(23, 68) + SourceIndex(3) -2 >Emitted(40, 14) Source(23, 69) + SourceIndex(3) +1->Emitted(41, 13) Source(23, 68) + SourceIndex(3) +2 >Emitted(41, 14) Source(23, 69) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(41, 13) Source(23, 68) + SourceIndex(3) -2 >Emitted(41, 21) Source(23, 69) + SourceIndex(3) +1->Emitted(42, 13) Source(23, 68) + SourceIndex(3) +2 >Emitted(42, 21) Source(23, 69) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -4576,10 +4581,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(42, 9) Source(23, 68) + SourceIndex(3) -2 >Emitted(42, 10) Source(23, 69) + SourceIndex(3) -3 >Emitted(42, 10) Source(23, 52) + SourceIndex(3) -4 >Emitted(42, 14) Source(23, 69) + SourceIndex(3) +1 >Emitted(43, 9) Source(23, 68) + SourceIndex(3) +2 >Emitted(43, 10) Source(23, 69) + SourceIndex(3) +3 >Emitted(43, 10) Source(23, 52) + SourceIndex(3) +4 >Emitted(43, 14) Source(23, 69) + SourceIndex(3) --- >>> someNamespace.C = C; 1->^^^^^^^^ @@ -4591,10 +4596,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > {} 4 > -1->Emitted(43, 9) Source(23, 65) + SourceIndex(3) -2 >Emitted(43, 24) Source(23, 66) + SourceIndex(3) -3 >Emitted(43, 28) Source(23, 69) + SourceIndex(3) -4 >Emitted(43, 29) Source(23, 69) + SourceIndex(3) +1->Emitted(44, 9) Source(23, 65) + SourceIndex(3) +2 >Emitted(44, 24) Source(23, 66) + SourceIndex(3) +3 >Emitted(44, 28) Source(23, 69) + SourceIndex(3) +4 >Emitted(44, 29) Source(23, 69) + SourceIndex(3) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^ @@ -4615,15 +4620,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(44, 5) Source(23, 70) + SourceIndex(3) -2 >Emitted(44, 6) Source(23, 71) + SourceIndex(3) -3 >Emitted(44, 8) Source(23, 36) + SourceIndex(3) -4 >Emitted(44, 21) Source(23, 49) + SourceIndex(3) -5 >Emitted(44, 24) Source(23, 36) + SourceIndex(3) -6 >Emitted(44, 45) Source(23, 49) + SourceIndex(3) -7 >Emitted(44, 50) Source(23, 36) + SourceIndex(3) -8 >Emitted(44, 71) Source(23, 49) + SourceIndex(3) -9 >Emitted(44, 79) Source(23, 71) + SourceIndex(3) +1->Emitted(45, 5) Source(23, 70) + SourceIndex(3) +2 >Emitted(45, 6) Source(23, 71) + SourceIndex(3) +3 >Emitted(45, 8) Source(23, 36) + SourceIndex(3) +4 >Emitted(45, 21) Source(23, 49) + SourceIndex(3) +5 >Emitted(45, 24) Source(23, 36) + SourceIndex(3) +6 >Emitted(45, 45) Source(23, 49) + SourceIndex(3) +7 >Emitted(45, 50) Source(23, 36) + SourceIndex(3) +8 >Emitted(45, 71) Source(23, 49) + SourceIndex(3) +9 >Emitted(45, 79) Source(23, 71) + SourceIndex(3) --- >>> /*@internal*/ var someOther; 1 >^^^^ @@ -4639,12 +4644,12 @@ sourceFile:../../../second/second_part1.ts 4 > export namespace 5 > someOther 6 > .something { export class someClass {} } -1 >Emitted(45, 5) Source(24, 5) + SourceIndex(3) -2 >Emitted(45, 18) Source(24, 18) + SourceIndex(3) -3 >Emitted(45, 19) Source(24, 19) + SourceIndex(3) -4 >Emitted(45, 23) Source(24, 36) + SourceIndex(3) -5 >Emitted(45, 32) Source(24, 45) + SourceIndex(3) -6 >Emitted(45, 33) Source(24, 85) + SourceIndex(3) +1 >Emitted(46, 5) Source(24, 5) + SourceIndex(3) +2 >Emitted(46, 18) Source(24, 18) + SourceIndex(3) +3 >Emitted(46, 19) Source(24, 19) + SourceIndex(3) +4 >Emitted(46, 23) Source(24, 36) + SourceIndex(3) +5 >Emitted(46, 32) Source(24, 45) + SourceIndex(3) +6 >Emitted(46, 33) Source(24, 85) + SourceIndex(3) --- >>> (function (someOther) { 1 >^^^^ @@ -4653,9 +4658,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 > export namespace 3 > someOther -1 >Emitted(46, 5) Source(24, 19) + SourceIndex(3) -2 >Emitted(46, 16) Source(24, 36) + SourceIndex(3) -3 >Emitted(46, 25) Source(24, 45) + SourceIndex(3) +1 >Emitted(47, 5) Source(24, 19) + SourceIndex(3) +2 >Emitted(47, 16) Source(24, 36) + SourceIndex(3) +3 >Emitted(47, 25) Source(24, 45) + SourceIndex(3) --- >>> var something; 1 >^^^^^^^^ @@ -4667,10 +4672,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(47, 9) Source(24, 46) + SourceIndex(3) -2 >Emitted(47, 13) Source(24, 46) + SourceIndex(3) -3 >Emitted(47, 22) Source(24, 55) + SourceIndex(3) -4 >Emitted(47, 23) Source(24, 85) + SourceIndex(3) +1 >Emitted(48, 9) Source(24, 46) + SourceIndex(3) +2 >Emitted(48, 13) Source(24, 46) + SourceIndex(3) +3 >Emitted(48, 22) Source(24, 55) + SourceIndex(3) +4 >Emitted(48, 23) Source(24, 85) + SourceIndex(3) --- >>> (function (something) { 1->^^^^^^^^ @@ -4680,21 +4685,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(48, 9) Source(24, 46) + SourceIndex(3) -2 >Emitted(48, 20) Source(24, 46) + SourceIndex(3) -3 >Emitted(48, 29) Source(24, 55) + SourceIndex(3) +1->Emitted(49, 9) Source(24, 46) + SourceIndex(3) +2 >Emitted(49, 20) Source(24, 46) + SourceIndex(3) +3 >Emitted(49, 29) Source(24, 55) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(49, 13) Source(24, 58) + SourceIndex(3) +1->Emitted(50, 13) Source(24, 58) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(50, 17) Source(24, 58) + SourceIndex(3) +1->Emitted(51, 17) Source(24, 58) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -4702,16 +4707,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(51, 17) Source(24, 82) + SourceIndex(3) -2 >Emitted(51, 18) Source(24, 83) + SourceIndex(3) +1->Emitted(52, 17) Source(24, 82) + SourceIndex(3) +2 >Emitted(52, 18) Source(24, 83) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(52, 17) Source(24, 82) + SourceIndex(3) -2 >Emitted(52, 33) Source(24, 83) + SourceIndex(3) +1->Emitted(53, 17) Source(24, 82) + SourceIndex(3) +2 >Emitted(53, 33) Source(24, 83) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -4723,10 +4728,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(53, 13) Source(24, 82) + SourceIndex(3) -2 >Emitted(53, 14) Source(24, 83) + SourceIndex(3) -3 >Emitted(53, 14) Source(24, 58) + SourceIndex(3) -4 >Emitted(53, 18) Source(24, 83) + SourceIndex(3) +1 >Emitted(54, 13) Source(24, 82) + SourceIndex(3) +2 >Emitted(54, 14) Source(24, 83) + SourceIndex(3) +3 >Emitted(54, 14) Source(24, 58) + SourceIndex(3) +4 >Emitted(54, 18) Source(24, 83) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -4738,10 +4743,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(54, 13) Source(24, 71) + SourceIndex(3) -2 >Emitted(54, 32) Source(24, 80) + SourceIndex(3) -3 >Emitted(54, 44) Source(24, 83) + SourceIndex(3) -4 >Emitted(54, 45) Source(24, 83) + SourceIndex(3) +1->Emitted(55, 13) Source(24, 71) + SourceIndex(3) +2 >Emitted(55, 32) Source(24, 80) + SourceIndex(3) +3 >Emitted(55, 44) Source(24, 83) + SourceIndex(3) +4 >Emitted(55, 45) Source(24, 83) + SourceIndex(3) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^ @@ -4762,15 +4767,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(55, 9) Source(24, 84) + SourceIndex(3) -2 >Emitted(55, 10) Source(24, 85) + SourceIndex(3) -3 >Emitted(55, 12) Source(24, 46) + SourceIndex(3) -4 >Emitted(55, 21) Source(24, 55) + SourceIndex(3) -5 >Emitted(55, 24) Source(24, 46) + SourceIndex(3) -6 >Emitted(55, 43) Source(24, 55) + SourceIndex(3) -7 >Emitted(55, 48) Source(24, 46) + SourceIndex(3) -8 >Emitted(55, 67) Source(24, 55) + SourceIndex(3) -9 >Emitted(55, 75) Source(24, 85) + SourceIndex(3) +1->Emitted(56, 9) Source(24, 84) + SourceIndex(3) +2 >Emitted(56, 10) Source(24, 85) + SourceIndex(3) +3 >Emitted(56, 12) Source(24, 46) + SourceIndex(3) +4 >Emitted(56, 21) Source(24, 55) + SourceIndex(3) +5 >Emitted(56, 24) Source(24, 46) + SourceIndex(3) +6 >Emitted(56, 43) Source(24, 55) + SourceIndex(3) +7 >Emitted(56, 48) Source(24, 46) + SourceIndex(3) +8 >Emitted(56, 67) Source(24, 55) + SourceIndex(3) +9 >Emitted(56, 75) Source(24, 85) + SourceIndex(3) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^ @@ -4791,15 +4796,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(56, 5) Source(24, 84) + SourceIndex(3) -2 >Emitted(56, 6) Source(24, 85) + SourceIndex(3) -3 >Emitted(56, 8) Source(24, 36) + SourceIndex(3) -4 >Emitted(56, 17) Source(24, 45) + SourceIndex(3) -5 >Emitted(56, 20) Source(24, 36) + SourceIndex(3) -6 >Emitted(56, 37) Source(24, 45) + SourceIndex(3) -7 >Emitted(56, 42) Source(24, 36) + SourceIndex(3) -8 >Emitted(56, 59) Source(24, 45) + SourceIndex(3) -9 >Emitted(56, 67) Source(24, 85) + SourceIndex(3) +1 >Emitted(57, 5) Source(24, 84) + SourceIndex(3) +2 >Emitted(57, 6) Source(24, 85) + SourceIndex(3) +3 >Emitted(57, 8) Source(24, 36) + SourceIndex(3) +4 >Emitted(57, 17) Source(24, 45) + SourceIndex(3) +5 >Emitted(57, 20) Source(24, 36) + SourceIndex(3) +6 >Emitted(57, 37) Source(24, 45) + SourceIndex(3) +7 >Emitted(57, 42) Source(24, 36) + SourceIndex(3) +8 >Emitted(57, 59) Source(24, 45) + SourceIndex(3) +9 >Emitted(57, 67) Source(24, 85) + SourceIndex(3) --- >>> /*@internal*/ normalN.someImport = someNamespace.C; 1 >^^^^ @@ -4821,15 +4826,15 @@ sourceFile:../../../second/second_part1.ts 7 > . 8 > C 9 > ; -1 >Emitted(57, 5) Source(25, 5) + SourceIndex(3) -2 >Emitted(57, 18) Source(25, 18) + SourceIndex(3) -3 >Emitted(57, 19) Source(25, 33) + SourceIndex(3) -4 >Emitted(57, 37) Source(25, 43) + SourceIndex(3) -5 >Emitted(57, 40) Source(25, 46) + SourceIndex(3) -6 >Emitted(57, 53) Source(25, 59) + SourceIndex(3) -7 >Emitted(57, 54) Source(25, 60) + SourceIndex(3) -8 >Emitted(57, 55) Source(25, 61) + SourceIndex(3) -9 >Emitted(57, 56) Source(25, 62) + SourceIndex(3) +1 >Emitted(58, 5) Source(25, 5) + SourceIndex(3) +2 >Emitted(58, 18) Source(25, 18) + SourceIndex(3) +3 >Emitted(58, 19) Source(25, 33) + SourceIndex(3) +4 >Emitted(58, 37) Source(25, 43) + SourceIndex(3) +5 >Emitted(58, 40) Source(25, 46) + SourceIndex(3) +6 >Emitted(58, 53) Source(25, 59) + SourceIndex(3) +7 >Emitted(58, 54) Source(25, 60) + SourceIndex(3) +8 >Emitted(58, 55) Source(25, 61) + SourceIndex(3) +9 >Emitted(58, 56) Source(25, 62) + SourceIndex(3) --- >>> /*@internal*/ normalN.internalConst = 10; 1 >^^^^ @@ -4848,13 +4853,13 @@ sourceFile:../../../second/second_part1.ts 5 > = 6 > 10 7 > ; -1 >Emitted(58, 5) Source(27, 5) + SourceIndex(3) -2 >Emitted(58, 18) Source(27, 18) + SourceIndex(3) -3 >Emitted(58, 19) Source(27, 32) + SourceIndex(3) -4 >Emitted(58, 40) Source(27, 45) + SourceIndex(3) -5 >Emitted(58, 43) Source(27, 48) + SourceIndex(3) -6 >Emitted(58, 45) Source(27, 50) + SourceIndex(3) -7 >Emitted(58, 46) Source(27, 51) + SourceIndex(3) +1 >Emitted(59, 5) Source(27, 5) + SourceIndex(3) +2 >Emitted(59, 18) Source(27, 18) + SourceIndex(3) +3 >Emitted(59, 19) Source(27, 32) + SourceIndex(3) +4 >Emitted(59, 40) Source(27, 45) + SourceIndex(3) +5 >Emitted(59, 43) Source(27, 48) + SourceIndex(3) +6 >Emitted(59, 45) Source(27, 50) + SourceIndex(3) +7 >Emitted(59, 46) Source(27, 51) + SourceIndex(3) --- >>> /*@internal*/ var internalEnum; 1 >^^^^ @@ -4868,11 +4873,11 @@ sourceFile:../../../second/second_part1.ts 3 > 4 > export enum 5 > internalEnum { a, b, c } -1 >Emitted(59, 5) Source(28, 5) + SourceIndex(3) -2 >Emitted(59, 18) Source(28, 18) + SourceIndex(3) -3 >Emitted(59, 19) Source(28, 19) + SourceIndex(3) -4 >Emitted(59, 23) Source(28, 31) + SourceIndex(3) -5 >Emitted(59, 35) Source(28, 55) + SourceIndex(3) +1 >Emitted(60, 5) Source(28, 5) + SourceIndex(3) +2 >Emitted(60, 18) Source(28, 18) + SourceIndex(3) +3 >Emitted(60, 19) Source(28, 19) + SourceIndex(3) +4 >Emitted(60, 23) Source(28, 31) + SourceIndex(3) +5 >Emitted(60, 35) Source(28, 55) + SourceIndex(3) --- >>> (function (internalEnum) { 1 >^^^^ @@ -4882,9 +4887,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 > export enum 3 > internalEnum -1 >Emitted(60, 5) Source(28, 19) + SourceIndex(3) -2 >Emitted(60, 16) Source(28, 31) + SourceIndex(3) -3 >Emitted(60, 28) Source(28, 43) + SourceIndex(3) +1 >Emitted(61, 5) Source(28, 19) + SourceIndex(3) +2 >Emitted(61, 16) Source(28, 31) + SourceIndex(3) +3 >Emitted(61, 28) Source(28, 43) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -4894,9 +4899,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(61, 9) Source(28, 46) + SourceIndex(3) -2 >Emitted(61, 50) Source(28, 47) + SourceIndex(3) -3 >Emitted(61, 51) Source(28, 47) + SourceIndex(3) +1->Emitted(62, 9) Source(28, 46) + SourceIndex(3) +2 >Emitted(62, 50) Source(28, 47) + SourceIndex(3) +3 >Emitted(62, 51) Source(28, 47) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -4906,9 +4911,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(62, 9) Source(28, 49) + SourceIndex(3) -2 >Emitted(62, 50) Source(28, 50) + SourceIndex(3) -3 >Emitted(62, 51) Source(28, 50) + SourceIndex(3) +1->Emitted(63, 9) Source(28, 49) + SourceIndex(3) +2 >Emitted(63, 50) Source(28, 50) + SourceIndex(3) +3 >Emitted(63, 51) Source(28, 50) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -4918,9 +4923,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(63, 9) Source(28, 52) + SourceIndex(3) -2 >Emitted(63, 50) Source(28, 53) + SourceIndex(3) -3 >Emitted(63, 51) Source(28, 53) + SourceIndex(3) +1->Emitted(64, 9) Source(28, 52) + SourceIndex(3) +2 >Emitted(64, 50) Source(28, 53) + SourceIndex(3) +3 >Emitted(64, 51) Source(28, 53) + SourceIndex(3) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^ @@ -4941,15 +4946,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(64, 5) Source(28, 54) + SourceIndex(3) -2 >Emitted(64, 6) Source(28, 55) + SourceIndex(3) -3 >Emitted(64, 8) Source(28, 31) + SourceIndex(3) -4 >Emitted(64, 20) Source(28, 43) + SourceIndex(3) -5 >Emitted(64, 23) Source(28, 31) + SourceIndex(3) -6 >Emitted(64, 43) Source(28, 43) + SourceIndex(3) -7 >Emitted(64, 48) Source(28, 31) + SourceIndex(3) -8 >Emitted(64, 68) Source(28, 43) + SourceIndex(3) -9 >Emitted(64, 76) Source(28, 55) + SourceIndex(3) +1->Emitted(65, 5) Source(28, 54) + SourceIndex(3) +2 >Emitted(65, 6) Source(28, 55) + SourceIndex(3) +3 >Emitted(65, 8) Source(28, 31) + SourceIndex(3) +4 >Emitted(65, 20) Source(28, 43) + SourceIndex(3) +5 >Emitted(65, 23) Source(28, 31) + SourceIndex(3) +6 >Emitted(65, 43) Source(28, 43) + SourceIndex(3) +7 >Emitted(65, 48) Source(28, 31) + SourceIndex(3) +8 >Emitted(65, 68) Source(28, 43) + SourceIndex(3) +9 >Emitted(65, 76) Source(28, 55) + SourceIndex(3) --- >>>})(normalN || (normalN = {})); 1 > @@ -4977,13 +4982,13 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(65, 1) Source(29, 1) + SourceIndex(3) -2 >Emitted(65, 2) Source(29, 2) + SourceIndex(3) -3 >Emitted(65, 4) Source(20, 11) + SourceIndex(3) -4 >Emitted(65, 11) Source(20, 18) + SourceIndex(3) -5 >Emitted(65, 16) Source(20, 11) + SourceIndex(3) -6 >Emitted(65, 23) Source(20, 18) + SourceIndex(3) -7 >Emitted(65, 31) Source(29, 2) + SourceIndex(3) +1 >Emitted(66, 1) Source(29, 1) + SourceIndex(3) +2 >Emitted(66, 2) Source(29, 2) + SourceIndex(3) +3 >Emitted(66, 4) Source(20, 11) + SourceIndex(3) +4 >Emitted(66, 11) Source(20, 18) + SourceIndex(3) +5 >Emitted(66, 16) Source(20, 11) + SourceIndex(3) +6 >Emitted(66, 23) Source(20, 18) + SourceIndex(3) +7 >Emitted(66, 31) Source(29, 2) + SourceIndex(3) --- >>>/*@internal*/ var internalC = /** @class */ (function () { 1-> @@ -4994,15 +4999,15 @@ sourceFile:../../../second/second_part1.ts > 2 >/*@internal*/ 3 > -1->Emitted(66, 1) Source(30, 1) + SourceIndex(3) -2 >Emitted(66, 14) Source(30, 14) + SourceIndex(3) -3 >Emitted(66, 15) Source(30, 15) + SourceIndex(3) +1->Emitted(67, 1) Source(30, 1) + SourceIndex(3) +2 >Emitted(67, 14) Source(30, 14) + SourceIndex(3) +3 >Emitted(67, 15) Source(30, 15) + SourceIndex(3) --- >>> function internalC() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(67, 5) Source(30, 15) + SourceIndex(3) +1->Emitted(68, 5) Source(30, 15) + SourceIndex(3) --- >>> } 1->^^^^ @@ -5010,16 +5015,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->class internalC { 2 > } -1->Emitted(68, 5) Source(30, 32) + SourceIndex(3) -2 >Emitted(68, 6) Source(30, 33) + SourceIndex(3) +1->Emitted(69, 5) Source(30, 32) + SourceIndex(3) +2 >Emitted(69, 6) Source(30, 33) + SourceIndex(3) --- >>> return internalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(69, 5) Source(30, 32) + SourceIndex(3) -2 >Emitted(69, 21) Source(30, 33) + SourceIndex(3) +1->Emitted(70, 5) Source(30, 32) + SourceIndex(3) +2 >Emitted(70, 21) Source(30, 33) + SourceIndex(3) --- >>>}()); 1 > @@ -5031,10 +5036,10 @@ sourceFile:../../../second/second_part1.ts 2 >} 3 > 4 > class internalC {} -1 >Emitted(70, 1) Source(30, 32) + SourceIndex(3) -2 >Emitted(70, 2) Source(30, 33) + SourceIndex(3) -3 >Emitted(70, 2) Source(30, 15) + SourceIndex(3) -4 >Emitted(70, 6) Source(30, 33) + SourceIndex(3) +1 >Emitted(71, 1) Source(30, 32) + SourceIndex(3) +2 >Emitted(71, 2) Source(30, 33) + SourceIndex(3) +3 >Emitted(71, 2) Source(30, 15) + SourceIndex(3) +4 >Emitted(71, 6) Source(30, 33) + SourceIndex(3) --- >>>/*@internal*/ function internalfoo() { } 1-> @@ -5052,13 +5057,13 @@ sourceFile:../../../second/second_part1.ts 5 > internalfoo 6 > () { 7 > } -1->Emitted(71, 1) Source(31, 1) + SourceIndex(3) -2 >Emitted(71, 14) Source(31, 14) + SourceIndex(3) -3 >Emitted(71, 15) Source(31, 15) + SourceIndex(3) -4 >Emitted(71, 24) Source(31, 24) + SourceIndex(3) -5 >Emitted(71, 35) Source(31, 35) + SourceIndex(3) -6 >Emitted(71, 40) Source(31, 39) + SourceIndex(3) -7 >Emitted(71, 41) Source(31, 40) + SourceIndex(3) +1->Emitted(72, 1) Source(31, 1) + SourceIndex(3) +2 >Emitted(72, 14) Source(31, 14) + SourceIndex(3) +3 >Emitted(72, 15) Source(31, 15) + SourceIndex(3) +4 >Emitted(72, 24) Source(31, 24) + SourceIndex(3) +5 >Emitted(72, 35) Source(31, 35) + SourceIndex(3) +6 >Emitted(72, 40) Source(31, 39) + SourceIndex(3) +7 >Emitted(72, 41) Source(31, 40) + SourceIndex(3) --- >>>/*@internal*/ var internalNamespace; 1 > @@ -5074,12 +5079,12 @@ sourceFile:../../../second/second_part1.ts 4 > namespace 5 > internalNamespace 6 > { export class someClass {} } -1 >Emitted(72, 1) Source(32, 1) + SourceIndex(3) -2 >Emitted(72, 14) Source(32, 14) + SourceIndex(3) -3 >Emitted(72, 15) Source(32, 15) + SourceIndex(3) -4 >Emitted(72, 19) Source(32, 25) + SourceIndex(3) -5 >Emitted(72, 36) Source(32, 42) + SourceIndex(3) -6 >Emitted(72, 37) Source(32, 72) + SourceIndex(3) +1 >Emitted(73, 1) Source(32, 1) + SourceIndex(3) +2 >Emitted(73, 14) Source(32, 14) + SourceIndex(3) +3 >Emitted(73, 15) Source(32, 15) + SourceIndex(3) +4 >Emitted(73, 19) Source(32, 25) + SourceIndex(3) +5 >Emitted(73, 36) Source(32, 42) + SourceIndex(3) +6 >Emitted(73, 37) Source(32, 72) + SourceIndex(3) --- >>>(function (internalNamespace) { 1 > @@ -5089,21 +5094,21 @@ sourceFile:../../../second/second_part1.ts 1 > 2 >namespace 3 > internalNamespace -1 >Emitted(73, 1) Source(32, 15) + SourceIndex(3) -2 >Emitted(73, 12) Source(32, 25) + SourceIndex(3) -3 >Emitted(73, 29) Source(32, 42) + SourceIndex(3) +1 >Emitted(74, 1) Source(32, 15) + SourceIndex(3) +2 >Emitted(74, 12) Source(32, 25) + SourceIndex(3) +3 >Emitted(74, 29) Source(32, 42) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(74, 5) Source(32, 45) + SourceIndex(3) +1->Emitted(75, 5) Source(32, 45) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(75, 9) Source(32, 45) + SourceIndex(3) +1->Emitted(76, 9) Source(32, 45) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -5111,16 +5116,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(76, 9) Source(32, 69) + SourceIndex(3) -2 >Emitted(76, 10) Source(32, 70) + SourceIndex(3) +1->Emitted(77, 9) Source(32, 69) + SourceIndex(3) +2 >Emitted(77, 10) Source(32, 70) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(77, 9) Source(32, 69) + SourceIndex(3) -2 >Emitted(77, 25) Source(32, 70) + SourceIndex(3) +1->Emitted(78, 9) Source(32, 69) + SourceIndex(3) +2 >Emitted(78, 25) Source(32, 70) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -5132,10 +5137,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(78, 5) Source(32, 69) + SourceIndex(3) -2 >Emitted(78, 6) Source(32, 70) + SourceIndex(3) -3 >Emitted(78, 6) Source(32, 45) + SourceIndex(3) -4 >Emitted(78, 10) Source(32, 70) + SourceIndex(3) +1 >Emitted(79, 5) Source(32, 69) + SourceIndex(3) +2 >Emitted(79, 6) Source(32, 70) + SourceIndex(3) +3 >Emitted(79, 6) Source(32, 45) + SourceIndex(3) +4 >Emitted(79, 10) Source(32, 70) + SourceIndex(3) --- >>> internalNamespace.someClass = someClass; 1->^^^^ @@ -5147,10 +5152,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(79, 5) Source(32, 58) + SourceIndex(3) -2 >Emitted(79, 32) Source(32, 67) + SourceIndex(3) -3 >Emitted(79, 44) Source(32, 70) + SourceIndex(3) -4 >Emitted(79, 45) Source(32, 70) + SourceIndex(3) +1->Emitted(80, 5) Source(32, 58) + SourceIndex(3) +2 >Emitted(80, 32) Source(32, 67) + SourceIndex(3) +3 >Emitted(80, 44) Source(32, 70) + SourceIndex(3) +4 >Emitted(80, 45) Source(32, 70) + SourceIndex(3) --- >>>})(internalNamespace || (internalNamespace = {})); 1-> @@ -5167,13 +5172,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalNamespace 7 > { export class someClass {} } -1->Emitted(80, 1) Source(32, 71) + SourceIndex(3) -2 >Emitted(80, 2) Source(32, 72) + SourceIndex(3) -3 >Emitted(80, 4) Source(32, 25) + SourceIndex(3) -4 >Emitted(80, 21) Source(32, 42) + SourceIndex(3) -5 >Emitted(80, 26) Source(32, 25) + SourceIndex(3) -6 >Emitted(80, 43) Source(32, 42) + SourceIndex(3) -7 >Emitted(80, 51) Source(32, 72) + SourceIndex(3) +1->Emitted(81, 1) Source(32, 71) + SourceIndex(3) +2 >Emitted(81, 2) Source(32, 72) + SourceIndex(3) +3 >Emitted(81, 4) Source(32, 25) + SourceIndex(3) +4 >Emitted(81, 21) Source(32, 42) + SourceIndex(3) +5 >Emitted(81, 26) Source(32, 25) + SourceIndex(3) +6 >Emitted(81, 43) Source(32, 42) + SourceIndex(3) +7 >Emitted(81, 51) Source(32, 72) + SourceIndex(3) --- >>>/*@internal*/ var internalOther; 1 > @@ -5189,12 +5194,12 @@ sourceFile:../../../second/second_part1.ts 4 > namespace 5 > internalOther 6 > .something { export class someClass {} } -1 >Emitted(81, 1) Source(33, 1) + SourceIndex(3) -2 >Emitted(81, 14) Source(33, 14) + SourceIndex(3) -3 >Emitted(81, 15) Source(33, 15) + SourceIndex(3) -4 >Emitted(81, 19) Source(33, 25) + SourceIndex(3) -5 >Emitted(81, 32) Source(33, 38) + SourceIndex(3) -6 >Emitted(81, 33) Source(33, 78) + SourceIndex(3) +1 >Emitted(82, 1) Source(33, 1) + SourceIndex(3) +2 >Emitted(82, 14) Source(33, 14) + SourceIndex(3) +3 >Emitted(82, 15) Source(33, 15) + SourceIndex(3) +4 >Emitted(82, 19) Source(33, 25) + SourceIndex(3) +5 >Emitted(82, 32) Source(33, 38) + SourceIndex(3) +6 >Emitted(82, 33) Source(33, 78) + SourceIndex(3) --- >>>(function (internalOther) { 1 > @@ -5203,9 +5208,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 >namespace 3 > internalOther -1 >Emitted(82, 1) Source(33, 15) + SourceIndex(3) -2 >Emitted(82, 12) Source(33, 25) + SourceIndex(3) -3 >Emitted(82, 25) Source(33, 38) + SourceIndex(3) +1 >Emitted(83, 1) Source(33, 15) + SourceIndex(3) +2 >Emitted(83, 12) Source(33, 25) + SourceIndex(3) +3 >Emitted(83, 25) Source(33, 38) + SourceIndex(3) --- >>> var something; 1 >^^^^ @@ -5217,10 +5222,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(83, 5) Source(33, 39) + SourceIndex(3) -2 >Emitted(83, 9) Source(33, 39) + SourceIndex(3) -3 >Emitted(83, 18) Source(33, 48) + SourceIndex(3) -4 >Emitted(83, 19) Source(33, 78) + SourceIndex(3) +1 >Emitted(84, 5) Source(33, 39) + SourceIndex(3) +2 >Emitted(84, 9) Source(33, 39) + SourceIndex(3) +3 >Emitted(84, 18) Source(33, 48) + SourceIndex(3) +4 >Emitted(84, 19) Source(33, 78) + SourceIndex(3) --- >>> (function (something) { 1->^^^^ @@ -5230,21 +5235,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(84, 5) Source(33, 39) + SourceIndex(3) -2 >Emitted(84, 16) Source(33, 39) + SourceIndex(3) -3 >Emitted(84, 25) Source(33, 48) + SourceIndex(3) +1->Emitted(85, 5) Source(33, 39) + SourceIndex(3) +2 >Emitted(85, 16) Source(33, 39) + SourceIndex(3) +3 >Emitted(85, 25) Source(33, 48) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(85, 9) Source(33, 51) + SourceIndex(3) +1->Emitted(86, 9) Source(33, 51) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(86, 13) Source(33, 51) + SourceIndex(3) +1->Emitted(87, 13) Source(33, 51) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -5252,16 +5257,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(87, 13) Source(33, 75) + SourceIndex(3) -2 >Emitted(87, 14) Source(33, 76) + SourceIndex(3) +1->Emitted(88, 13) Source(33, 75) + SourceIndex(3) +2 >Emitted(88, 14) Source(33, 76) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(88, 13) Source(33, 75) + SourceIndex(3) -2 >Emitted(88, 29) Source(33, 76) + SourceIndex(3) +1->Emitted(89, 13) Source(33, 75) + SourceIndex(3) +2 >Emitted(89, 29) Source(33, 76) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -5273,10 +5278,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(89, 9) Source(33, 75) + SourceIndex(3) -2 >Emitted(89, 10) Source(33, 76) + SourceIndex(3) -3 >Emitted(89, 10) Source(33, 51) + SourceIndex(3) -4 >Emitted(89, 14) Source(33, 76) + SourceIndex(3) +1 >Emitted(90, 9) Source(33, 75) + SourceIndex(3) +2 >Emitted(90, 10) Source(33, 76) + SourceIndex(3) +3 >Emitted(90, 10) Source(33, 51) + SourceIndex(3) +4 >Emitted(90, 14) Source(33, 76) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^ @@ -5288,10 +5293,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(90, 9) Source(33, 64) + SourceIndex(3) -2 >Emitted(90, 28) Source(33, 73) + SourceIndex(3) -3 >Emitted(90, 40) Source(33, 76) + SourceIndex(3) -4 >Emitted(90, 41) Source(33, 76) + SourceIndex(3) +1->Emitted(91, 9) Source(33, 64) + SourceIndex(3) +2 >Emitted(91, 28) Source(33, 73) + SourceIndex(3) +3 >Emitted(91, 40) Source(33, 76) + SourceIndex(3) +4 >Emitted(91, 41) Source(33, 76) + SourceIndex(3) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^ @@ -5312,15 +5317,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(91, 5) Source(33, 77) + SourceIndex(3) -2 >Emitted(91, 6) Source(33, 78) + SourceIndex(3) -3 >Emitted(91, 8) Source(33, 39) + SourceIndex(3) -4 >Emitted(91, 17) Source(33, 48) + SourceIndex(3) -5 >Emitted(91, 20) Source(33, 39) + SourceIndex(3) -6 >Emitted(91, 43) Source(33, 48) + SourceIndex(3) -7 >Emitted(91, 48) Source(33, 39) + SourceIndex(3) -8 >Emitted(91, 71) Source(33, 48) + SourceIndex(3) -9 >Emitted(91, 79) Source(33, 78) + SourceIndex(3) +1->Emitted(92, 5) Source(33, 77) + SourceIndex(3) +2 >Emitted(92, 6) Source(33, 78) + SourceIndex(3) +3 >Emitted(92, 8) Source(33, 39) + SourceIndex(3) +4 >Emitted(92, 17) Source(33, 48) + SourceIndex(3) +5 >Emitted(92, 20) Source(33, 39) + SourceIndex(3) +6 >Emitted(92, 43) Source(33, 48) + SourceIndex(3) +7 >Emitted(92, 48) Source(33, 39) + SourceIndex(3) +8 >Emitted(92, 71) Source(33, 48) + SourceIndex(3) +9 >Emitted(92, 79) Source(33, 78) + SourceIndex(3) --- >>>})(internalOther || (internalOther = {})); 1 > @@ -5338,13 +5343,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalOther 7 > .something { export class someClass {} } -1 >Emitted(92, 1) Source(33, 77) + SourceIndex(3) -2 >Emitted(92, 2) Source(33, 78) + SourceIndex(3) -3 >Emitted(92, 4) Source(33, 25) + SourceIndex(3) -4 >Emitted(92, 17) Source(33, 38) + SourceIndex(3) -5 >Emitted(92, 22) Source(33, 25) + SourceIndex(3) -6 >Emitted(92, 35) Source(33, 38) + SourceIndex(3) -7 >Emitted(92, 43) Source(33, 78) + SourceIndex(3) +1 >Emitted(93, 1) Source(33, 77) + SourceIndex(3) +2 >Emitted(93, 2) Source(33, 78) + SourceIndex(3) +3 >Emitted(93, 4) Source(33, 25) + SourceIndex(3) +4 >Emitted(93, 17) Source(33, 38) + SourceIndex(3) +5 >Emitted(93, 22) Source(33, 25) + SourceIndex(3) +6 >Emitted(93, 35) Source(33, 38) + SourceIndex(3) +7 >Emitted(93, 43) Source(33, 78) + SourceIndex(3) --- >>>/*@internal*/ var internalImport = internalNamespace.someClass; 1-> @@ -5368,16 +5373,16 @@ sourceFile:../../../second/second_part1.ts 8 > . 9 > someClass 10> ; -1->Emitted(93, 1) Source(34, 1) + SourceIndex(3) -2 >Emitted(93, 14) Source(34, 14) + SourceIndex(3) -3 >Emitted(93, 15) Source(34, 15) + SourceIndex(3) -4 >Emitted(93, 19) Source(34, 22) + SourceIndex(3) -5 >Emitted(93, 33) Source(34, 36) + SourceIndex(3) -6 >Emitted(93, 36) Source(34, 39) + SourceIndex(3) -7 >Emitted(93, 53) Source(34, 56) + SourceIndex(3) -8 >Emitted(93, 54) Source(34, 57) + SourceIndex(3) -9 >Emitted(93, 63) Source(34, 66) + SourceIndex(3) -10>Emitted(93, 64) Source(34, 67) + SourceIndex(3) +1->Emitted(94, 1) Source(34, 1) + SourceIndex(3) +2 >Emitted(94, 14) Source(34, 14) + SourceIndex(3) +3 >Emitted(94, 15) Source(34, 15) + SourceIndex(3) +4 >Emitted(94, 19) Source(34, 22) + SourceIndex(3) +5 >Emitted(94, 33) Source(34, 36) + SourceIndex(3) +6 >Emitted(94, 36) Source(34, 39) + SourceIndex(3) +7 >Emitted(94, 53) Source(34, 56) + SourceIndex(3) +8 >Emitted(94, 54) Source(34, 57) + SourceIndex(3) +9 >Emitted(94, 63) Source(34, 66) + SourceIndex(3) +10>Emitted(94, 64) Source(34, 67) + SourceIndex(3) --- >>>/*@internal*/ var internalConst = 10; 1 > @@ -5398,14 +5403,14 @@ sourceFile:../../../second/second_part1.ts 6 > = 7 > 10 8 > ; -1 >Emitted(94, 1) Source(36, 1) + SourceIndex(3) -2 >Emitted(94, 14) Source(36, 14) + SourceIndex(3) -3 >Emitted(94, 15) Source(36, 15) + SourceIndex(3) -4 >Emitted(94, 19) Source(36, 21) + SourceIndex(3) -5 >Emitted(94, 32) Source(36, 34) + SourceIndex(3) -6 >Emitted(94, 35) Source(36, 37) + SourceIndex(3) -7 >Emitted(94, 37) Source(36, 39) + SourceIndex(3) -8 >Emitted(94, 38) Source(36, 40) + SourceIndex(3) +1 >Emitted(95, 1) Source(36, 1) + SourceIndex(3) +2 >Emitted(95, 14) Source(36, 14) + SourceIndex(3) +3 >Emitted(95, 15) Source(36, 15) + SourceIndex(3) +4 >Emitted(95, 19) Source(36, 21) + SourceIndex(3) +5 >Emitted(95, 32) Source(36, 34) + SourceIndex(3) +6 >Emitted(95, 35) Source(36, 37) + SourceIndex(3) +7 >Emitted(95, 37) Source(36, 39) + SourceIndex(3) +8 >Emitted(95, 38) Source(36, 40) + SourceIndex(3) --- >>>/*@internal*/ var internalEnum; 1 > @@ -5419,11 +5424,11 @@ sourceFile:../../../second/second_part1.ts 3 > 4 > enum 5 > internalEnum { a, b, c } -1 >Emitted(95, 1) Source(37, 1) + SourceIndex(3) -2 >Emitted(95, 14) Source(37, 14) + SourceIndex(3) -3 >Emitted(95, 15) Source(37, 15) + SourceIndex(3) -4 >Emitted(95, 19) Source(37, 20) + SourceIndex(3) -5 >Emitted(95, 31) Source(37, 44) + SourceIndex(3) +1 >Emitted(96, 1) Source(37, 1) + SourceIndex(3) +2 >Emitted(96, 14) Source(37, 14) + SourceIndex(3) +3 >Emitted(96, 15) Source(37, 15) + SourceIndex(3) +4 >Emitted(96, 19) Source(37, 20) + SourceIndex(3) +5 >Emitted(96, 31) Source(37, 44) + SourceIndex(3) --- >>>(function (internalEnum) { 1 > @@ -5433,9 +5438,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 >enum 3 > internalEnum -1 >Emitted(96, 1) Source(37, 15) + SourceIndex(3) -2 >Emitted(96, 12) Source(37, 20) + SourceIndex(3) -3 >Emitted(96, 24) Source(37, 32) + SourceIndex(3) +1 >Emitted(97, 1) Source(37, 15) + SourceIndex(3) +2 >Emitted(97, 12) Source(37, 20) + SourceIndex(3) +3 >Emitted(97, 24) Source(37, 32) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^ @@ -5445,9 +5450,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(97, 5) Source(37, 35) + SourceIndex(3) -2 >Emitted(97, 46) Source(37, 36) + SourceIndex(3) -3 >Emitted(97, 47) Source(37, 36) + SourceIndex(3) +1->Emitted(98, 5) Source(37, 35) + SourceIndex(3) +2 >Emitted(98, 46) Source(37, 36) + SourceIndex(3) +3 >Emitted(98, 47) Source(37, 36) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^ @@ -5457,9 +5462,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(98, 5) Source(37, 38) + SourceIndex(3) -2 >Emitted(98, 46) Source(37, 39) + SourceIndex(3) -3 >Emitted(98, 47) Source(37, 39) + SourceIndex(3) +1->Emitted(99, 5) Source(37, 38) + SourceIndex(3) +2 >Emitted(99, 46) Source(37, 39) + SourceIndex(3) +3 >Emitted(99, 47) Source(37, 39) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^ @@ -5468,9 +5473,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(99, 5) Source(37, 41) + SourceIndex(3) -2 >Emitted(99, 46) Source(37, 42) + SourceIndex(3) -3 >Emitted(99, 47) Source(37, 42) + SourceIndex(3) +1->Emitted(100, 5) Source(37, 41) + SourceIndex(3) +2 >Emitted(100, 46) Source(37, 42) + SourceIndex(3) +3 >Emitted(100, 47) Source(37, 42) + SourceIndex(3) --- >>>})(internalEnum || (internalEnum = {})); 1 > @@ -5487,13 +5492,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalEnum 7 > { a, b, c } -1 >Emitted(100, 1) Source(37, 43) + SourceIndex(3) -2 >Emitted(100, 2) Source(37, 44) + SourceIndex(3) -3 >Emitted(100, 4) Source(37, 20) + SourceIndex(3) -4 >Emitted(100, 16) Source(37, 32) + SourceIndex(3) -5 >Emitted(100, 21) Source(37, 20) + SourceIndex(3) -6 >Emitted(100, 33) Source(37, 32) + SourceIndex(3) -7 >Emitted(100, 41) Source(37, 44) + SourceIndex(3) +1 >Emitted(101, 1) Source(37, 43) + SourceIndex(3) +2 >Emitted(101, 2) Source(37, 44) + SourceIndex(3) +3 >Emitted(101, 4) Source(37, 20) + SourceIndex(3) +4 >Emitted(101, 16) Source(37, 32) + SourceIndex(3) +5 >Emitted(101, 21) Source(37, 20) + SourceIndex(3) +6 >Emitted(101, 33) Source(37, 32) + SourceIndex(3) +7 >Emitted(101, 41) Source(37, 44) + SourceIndex(3) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -5503,13 +5508,13 @@ sourceFile:../../../second/second_part2.ts 1 > 2 >^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(101, 1) Source(1, 1) + SourceIndex(4) +1 >Emitted(102, 1) Source(1, 1) + SourceIndex(4) --- >>> function C() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(102, 5) Source(1, 1) + SourceIndex(4) +1->Emitted(103, 5) Source(1, 1) + SourceIndex(4) --- >>> } 1->^^^^ @@ -5521,8 +5526,8 @@ sourceFile:../../../second/second_part2.ts > } > 2 > } -1->Emitted(103, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(103, 6) Source(5, 2) + SourceIndex(4) +1->Emitted(104, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(104, 6) Source(5, 2) + SourceIndex(4) --- >>> C.prototype.doSomething = function () { 1->^^^^ @@ -5532,9 +5537,9 @@ sourceFile:../../../second/second_part2.ts 1-> 2 > doSomething 3 > -1->Emitted(104, 5) Source(2, 5) + SourceIndex(4) -2 >Emitted(104, 28) Source(2, 16) + SourceIndex(4) -3 >Emitted(104, 31) Source(2, 5) + SourceIndex(4) +1->Emitted(105, 5) Source(2, 5) + SourceIndex(4) +2 >Emitted(105, 28) Source(2, 16) + SourceIndex(4) +3 >Emitted(105, 31) Source(2, 5) + SourceIndex(4) --- >>> console.log("something got done"); 1->^^^^^^^^ @@ -5554,14 +5559,14 @@ sourceFile:../../../second/second_part2.ts 6 > "something got done" 7 > ) 8 > ; -1->Emitted(105, 9) Source(3, 9) + SourceIndex(4) -2 >Emitted(105, 16) Source(3, 16) + SourceIndex(4) -3 >Emitted(105, 17) Source(3, 17) + SourceIndex(4) -4 >Emitted(105, 20) Source(3, 20) + SourceIndex(4) -5 >Emitted(105, 21) Source(3, 21) + SourceIndex(4) -6 >Emitted(105, 41) Source(3, 41) + SourceIndex(4) -7 >Emitted(105, 42) Source(3, 42) + SourceIndex(4) -8 >Emitted(105, 43) Source(3, 43) + SourceIndex(4) +1->Emitted(106, 9) Source(3, 9) + SourceIndex(4) +2 >Emitted(106, 16) Source(3, 16) + SourceIndex(4) +3 >Emitted(106, 17) Source(3, 17) + SourceIndex(4) +4 >Emitted(106, 20) Source(3, 20) + SourceIndex(4) +5 >Emitted(106, 21) Source(3, 21) + SourceIndex(4) +6 >Emitted(106, 41) Source(3, 41) + SourceIndex(4) +7 >Emitted(106, 42) Source(3, 42) + SourceIndex(4) +8 >Emitted(106, 43) Source(3, 43) + SourceIndex(4) --- >>> }; 1 >^^^^ @@ -5570,8 +5575,8 @@ sourceFile:../../../second/second_part2.ts 1 > > 2 > } -1 >Emitted(106, 5) Source(4, 5) + SourceIndex(4) -2 >Emitted(106, 6) Source(4, 6) + SourceIndex(4) +1 >Emitted(107, 5) Source(4, 5) + SourceIndex(4) +2 >Emitted(107, 6) Source(4, 6) + SourceIndex(4) --- >>> return C; 1->^^^^ @@ -5579,8 +5584,8 @@ sourceFile:../../../second/second_part2.ts 1-> > 2 > } -1->Emitted(107, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(107, 13) Source(5, 2) + SourceIndex(4) +1->Emitted(108, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(108, 13) Source(5, 2) + SourceIndex(4) --- >>>}()); 1 > @@ -5596,10 +5601,10 @@ sourceFile:../../../second/second_part2.ts > console.log("something got done"); > } > } -1 >Emitted(108, 1) Source(5, 1) + SourceIndex(4) -2 >Emitted(108, 2) Source(5, 2) + SourceIndex(4) -3 >Emitted(108, 2) Source(1, 1) + SourceIndex(4) -4 >Emitted(108, 6) Source(5, 2) + SourceIndex(4) +1 >Emitted(109, 1) Source(5, 1) + SourceIndex(4) +2 >Emitted(109, 2) Source(5, 2) + SourceIndex(4) +3 >Emitted(109, 2) Source(1, 1) + SourceIndex(4) +4 >Emitted(109, 6) Source(5, 2) + SourceIndex(4) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -5623,14 +5628,14 @@ sourceFile:../../third_part1.ts 6 > C 7 > () 8 > ; -1->Emitted(109, 1) Source(1, 1) + SourceIndex(5) -2 >Emitted(109, 5) Source(1, 5) + SourceIndex(5) -3 >Emitted(109, 6) Source(1, 6) + SourceIndex(5) -4 >Emitted(109, 9) Source(1, 9) + SourceIndex(5) -5 >Emitted(109, 13) Source(1, 13) + SourceIndex(5) -6 >Emitted(109, 14) Source(1, 14) + SourceIndex(5) -7 >Emitted(109, 16) Source(1, 16) + SourceIndex(5) -8 >Emitted(109, 17) Source(1, 17) + SourceIndex(5) +1->Emitted(110, 1) Source(1, 1) + SourceIndex(5) +2 >Emitted(110, 5) Source(1, 5) + SourceIndex(5) +3 >Emitted(110, 6) Source(1, 6) + SourceIndex(5) +4 >Emitted(110, 9) Source(1, 9) + SourceIndex(5) +5 >Emitted(110, 13) Source(1, 13) + SourceIndex(5) +6 >Emitted(110, 14) Source(1, 14) + SourceIndex(5) +7 >Emitted(110, 16) Source(1, 16) + SourceIndex(5) +8 >Emitted(110, 17) Source(1, 17) + SourceIndex(5) --- >>>c.doSomething(); 1-> @@ -5647,12 +5652,12 @@ sourceFile:../../third_part1.ts 4 > doSomething 5 > () 6 > ; -1->Emitted(110, 1) Source(2, 1) + SourceIndex(5) -2 >Emitted(110, 2) Source(2, 2) + SourceIndex(5) -3 >Emitted(110, 3) Source(2, 3) + SourceIndex(5) -4 >Emitted(110, 14) Source(2, 14) + SourceIndex(5) -5 >Emitted(110, 16) Source(2, 16) + SourceIndex(5) -6 >Emitted(110, 17) Source(2, 17) + SourceIndex(5) +1->Emitted(111, 1) Source(2, 1) + SourceIndex(5) +2 >Emitted(111, 2) Source(2, 2) + SourceIndex(5) +3 >Emitted(111, 3) Source(2, 3) + SourceIndex(5) +4 >Emitted(111, 14) Source(2, 14) + SourceIndex(5) +5 >Emitted(111, 16) Source(2, 16) + SourceIndex(5) +6 >Emitted(111, 17) Source(2, 17) + SourceIndex(5) --- >>>//# sourceMappingURL=third-output.js.map @@ -5667,20 +5672,20 @@ sourceFile:../../third_part1.ts "sections": [ { "pos": 0, - "end": 3527, + "end": 3575, "kind": "prepend", "data": "../../../2/second-output.js", "texts": [ { "pos": 0, - "end": 3527, + "end": 3575, "kind": "text" } ] }, { - "pos": 3527, - "end": 3563, + "pos": 3575, + "end": 3611, "kind": "text" } ] @@ -5715,9 +5720,9 @@ sourceFile:../../third_part1.ts ====================================================================== File:: /src/third/thirdjs/output/third-output.js ---------------------------------------------------------------------- -prepend: (0-3527):: ../../../2/second-output.js texts:: 1 +prepend: (0-3575):: ../../../2/second-output.js texts:: 1 >>-------------------------------------------------------------------- -text: (0-3527) +text: (0-3575) var s = "Hello, world"; console.log(s); console.log(f()); @@ -5734,8 +5739,9 @@ var N; var normalC = /** @class */ (function () { /*@internal*/ function normalC() { } - /*@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /*@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /*@internal*/ get: function () { return 10; }, /*@internal*/ set: function (val) { }, enumerable: false, @@ -5828,7 +5834,7 @@ var C = /** @class */ (function () { }()); ---------------------------------------------------------------------- -text: (3527-3563) +text: (3575-3611) var c = new C(); c.doSomething(); diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-with-comments-emit-enabled.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-with-comments-emit-enabled.js index 1675d3b90c58c..ab846cc257248 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-with-comments-emit-enabled.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal-with-comments-emit-enabled.js @@ -939,8 +939,9 @@ var N; var normalC = /** @class */ (function () { /*@internal*/ function normalC() { } - /*@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /*@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /*@internal*/ get: function () { return 10; }, /*@internal*/ set: function (val) { }, enumerable: false, @@ -1034,7 +1035,7 @@ var C = /** @class */ (function () { //# sourceMappingURL=second-output.js.map //// [/src/2/second-output.js.map] -{"version":3,"file":"second-output.js","sourceRoot":"","sources":["../second/second_part1.ts","../second/second_part2.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"second-output.js","sourceRoot":"","sources":["../second/second_part1.ts","../second/second_part2.ts"],"names":[],"mappings":"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"} //// [/src/2/second-output.js.map.baseline.txt] =================================================================== @@ -1205,13 +1206,14 @@ sourceFile:../second/second_part1.ts >>> } 1 >^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 >constructor() { 2 > } 1 >Emitted(10, 5) Source(14, 35) + SourceIndex(0) 2 >Emitted(10, 6) Source(14, 36) + SourceIndex(0) --- ->>> /*@internal*/ normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> /*@internal*/ normalC_prototype.method = function () { }; 1->^^^^ 2 > ^^^^^^^^^^^^^ 3 > ^ @@ -1228,15 +1230,15 @@ sourceFile:../second/second_part1.ts 5 > 6 > method() { 7 > } -1->Emitted(11, 5) Source(16, 5) + SourceIndex(0) -2 >Emitted(11, 18) Source(16, 18) + SourceIndex(0) -3 >Emitted(11, 19) Source(16, 19) + SourceIndex(0) -4 >Emitted(11, 43) Source(16, 25) + SourceIndex(0) -5 >Emitted(11, 46) Source(16, 19) + SourceIndex(0) -6 >Emitted(11, 60) Source(16, 30) + SourceIndex(0) -7 >Emitted(11, 61) Source(16, 31) + SourceIndex(0) ---- ->>> Object.defineProperty(normalC.prototype, "c", { +1->Emitted(12, 5) Source(16, 5) + SourceIndex(0) +2 >Emitted(12, 18) Source(16, 18) + SourceIndex(0) +3 >Emitted(12, 19) Source(16, 19) + SourceIndex(0) +4 >Emitted(12, 43) Source(16, 25) + SourceIndex(0) +5 >Emitted(12, 46) Source(16, 19) + SourceIndex(0) +6 >Emitted(12, 60) Source(16, 30) + SourceIndex(0) +7 >Emitted(12, 61) Source(16, 31) + SourceIndex(0) +--- +>>> Object.defineProperty(normalC_prototype, "c", { 1 >^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -1245,9 +1247,9 @@ sourceFile:../second/second_part1.ts > /*@internal*/ 2 > get 3 > c -1 >Emitted(12, 5) Source(17, 19) + SourceIndex(0) -2 >Emitted(12, 27) Source(17, 23) + SourceIndex(0) -3 >Emitted(12, 49) Source(17, 24) + SourceIndex(0) +1 >Emitted(13, 5) Source(17, 19) + SourceIndex(0) +2 >Emitted(13, 27) Source(17, 23) + SourceIndex(0) +3 >Emitted(13, 49) Source(17, 24) + SourceIndex(0) --- >>> /*@internal*/ get: function () { return 10; }, 1->^^^^^^^^ @@ -1268,15 +1270,15 @@ sourceFile:../second/second_part1.ts 7 > ; 8 > 9 > } -1->Emitted(13, 9) Source(17, 5) + SourceIndex(0) -2 >Emitted(13, 22) Source(17, 18) + SourceIndex(0) -3 >Emitted(13, 28) Source(17, 19) + SourceIndex(0) -4 >Emitted(13, 42) Source(17, 29) + SourceIndex(0) -5 >Emitted(13, 49) Source(17, 36) + SourceIndex(0) -6 >Emitted(13, 51) Source(17, 38) + SourceIndex(0) -7 >Emitted(13, 52) Source(17, 39) + SourceIndex(0) -8 >Emitted(13, 53) Source(17, 40) + SourceIndex(0) -9 >Emitted(13, 54) Source(17, 41) + SourceIndex(0) +1->Emitted(14, 9) Source(17, 5) + SourceIndex(0) +2 >Emitted(14, 22) Source(17, 18) + SourceIndex(0) +3 >Emitted(14, 28) Source(17, 19) + SourceIndex(0) +4 >Emitted(14, 42) Source(17, 29) + SourceIndex(0) +5 >Emitted(14, 49) Source(17, 36) + SourceIndex(0) +6 >Emitted(14, 51) Source(17, 38) + SourceIndex(0) +7 >Emitted(14, 52) Source(17, 39) + SourceIndex(0) +8 >Emitted(14, 53) Source(17, 40) + SourceIndex(0) +9 >Emitted(14, 54) Source(17, 41) + SourceIndex(0) --- >>> /*@internal*/ set: function (val) { }, 1 >^^^^^^^^ @@ -1294,13 +1296,13 @@ sourceFile:../second/second_part1.ts 5 > val: number 6 > ) { 7 > } -1 >Emitted(14, 9) Source(18, 5) + SourceIndex(0) -2 >Emitted(14, 22) Source(18, 18) + SourceIndex(0) -3 >Emitted(14, 28) Source(18, 19) + SourceIndex(0) -4 >Emitted(14, 38) Source(18, 25) + SourceIndex(0) -5 >Emitted(14, 41) Source(18, 36) + SourceIndex(0) -6 >Emitted(14, 45) Source(18, 40) + SourceIndex(0) -7 >Emitted(14, 46) Source(18, 41) + SourceIndex(0) +1 >Emitted(15, 9) Source(18, 5) + SourceIndex(0) +2 >Emitted(15, 22) Source(18, 18) + SourceIndex(0) +3 >Emitted(15, 28) Source(18, 19) + SourceIndex(0) +4 >Emitted(15, 38) Source(18, 25) + SourceIndex(0) +5 >Emitted(15, 41) Source(18, 36) + SourceIndex(0) +6 >Emitted(15, 45) Source(18, 40) + SourceIndex(0) +7 >Emitted(15, 46) Source(18, 41) + SourceIndex(0) --- >>> enumerable: false, >>> configurable: true @@ -1308,7 +1310,7 @@ sourceFile:../second/second_part1.ts 1 >^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(17, 8) Source(17, 41) + SourceIndex(0) +1 >Emitted(18, 8) Source(17, 41) + SourceIndex(0) --- >>> return normalC; 1->^^^^ @@ -1317,8 +1319,8 @@ sourceFile:../second/second_part1.ts > /*@internal*/ set c(val: number) { } > 2 > } -1->Emitted(18, 5) Source(19, 1) + SourceIndex(0) -2 >Emitted(18, 19) Source(19, 2) + SourceIndex(0) +1->Emitted(19, 5) Source(19, 1) + SourceIndex(0) +2 >Emitted(19, 19) Source(19, 2) + SourceIndex(0) --- >>>}()); 1 > @@ -1336,10 +1338,10 @@ sourceFile:../second/second_part1.ts > /*@internal*/ get c() { return 10; } > /*@internal*/ set c(val: number) { } > } -1 >Emitted(19, 1) Source(19, 1) + SourceIndex(0) -2 >Emitted(19, 2) Source(19, 2) + SourceIndex(0) -3 >Emitted(19, 2) Source(13, 1) + SourceIndex(0) -4 >Emitted(19, 6) Source(19, 2) + SourceIndex(0) +1 >Emitted(20, 1) Source(19, 1) + SourceIndex(0) +2 >Emitted(20, 2) Source(19, 2) + SourceIndex(0) +3 >Emitted(20, 2) Source(13, 1) + SourceIndex(0) +4 >Emitted(20, 6) Source(19, 2) + SourceIndex(0) --- >>>var normalN; 1-> @@ -1361,10 +1363,10 @@ sourceFile:../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1->Emitted(20, 1) Source(20, 1) + SourceIndex(0) -2 >Emitted(20, 5) Source(20, 11) + SourceIndex(0) -3 >Emitted(20, 12) Source(20, 18) + SourceIndex(0) -4 >Emitted(20, 13) Source(29, 2) + SourceIndex(0) +1->Emitted(21, 1) Source(20, 1) + SourceIndex(0) +2 >Emitted(21, 5) Source(20, 11) + SourceIndex(0) +3 >Emitted(21, 12) Source(20, 18) + SourceIndex(0) +4 >Emitted(21, 13) Source(29, 2) + SourceIndex(0) --- >>>(function (normalN) { 1-> @@ -1374,9 +1376,9 @@ sourceFile:../second/second_part1.ts 1-> 2 >namespace 3 > normalN -1->Emitted(21, 1) Source(20, 1) + SourceIndex(0) -2 >Emitted(21, 12) Source(20, 11) + SourceIndex(0) -3 >Emitted(21, 19) Source(20, 18) + SourceIndex(0) +1->Emitted(22, 1) Source(20, 1) + SourceIndex(0) +2 >Emitted(22, 12) Source(20, 11) + SourceIndex(0) +3 >Emitted(22, 19) Source(20, 18) + SourceIndex(0) --- >>> /*@internal*/ var C = /** @class */ (function () { 1->^^^^ @@ -1387,15 +1389,15 @@ sourceFile:../second/second_part1.ts > 2 > /*@internal*/ 3 > -1->Emitted(22, 5) Source(21, 5) + SourceIndex(0) -2 >Emitted(22, 18) Source(21, 18) + SourceIndex(0) -3 >Emitted(22, 19) Source(21, 19) + SourceIndex(0) +1->Emitted(23, 5) Source(21, 5) + SourceIndex(0) +2 >Emitted(23, 18) Source(21, 18) + SourceIndex(0) +3 >Emitted(23, 19) Source(21, 19) + SourceIndex(0) --- >>> function C() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(23, 9) Source(21, 19) + SourceIndex(0) +1->Emitted(24, 9) Source(21, 19) + SourceIndex(0) --- >>> } 1->^^^^^^^^ @@ -1403,16 +1405,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(24, 9) Source(21, 36) + SourceIndex(0) -2 >Emitted(24, 10) Source(21, 37) + SourceIndex(0) +1->Emitted(25, 9) Source(21, 36) + SourceIndex(0) +2 >Emitted(25, 10) Source(21, 37) + SourceIndex(0) --- >>> return C; 1->^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(25, 9) Source(21, 36) + SourceIndex(0) -2 >Emitted(25, 17) Source(21, 37) + SourceIndex(0) +1->Emitted(26, 9) Source(21, 36) + SourceIndex(0) +2 >Emitted(26, 17) Source(21, 37) + SourceIndex(0) --- >>> }()); 1 >^^^^ @@ -1424,10 +1426,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(26, 5) Source(21, 36) + SourceIndex(0) -2 >Emitted(26, 6) Source(21, 37) + SourceIndex(0) -3 >Emitted(26, 6) Source(21, 19) + SourceIndex(0) -4 >Emitted(26, 10) Source(21, 37) + SourceIndex(0) +1 >Emitted(27, 5) Source(21, 36) + SourceIndex(0) +2 >Emitted(27, 6) Source(21, 37) + SourceIndex(0) +3 >Emitted(27, 6) Source(21, 19) + SourceIndex(0) +4 >Emitted(27, 10) Source(21, 37) + SourceIndex(0) --- >>> normalN.C = C; 1->^^^^ @@ -1439,10 +1441,10 @@ sourceFile:../second/second_part1.ts 2 > C 3 > { } 4 > -1->Emitted(27, 5) Source(21, 32) + SourceIndex(0) -2 >Emitted(27, 14) Source(21, 33) + SourceIndex(0) -3 >Emitted(27, 18) Source(21, 37) + SourceIndex(0) -4 >Emitted(27, 19) Source(21, 37) + SourceIndex(0) +1->Emitted(28, 5) Source(21, 32) + SourceIndex(0) +2 >Emitted(28, 14) Source(21, 33) + SourceIndex(0) +3 >Emitted(28, 18) Source(21, 37) + SourceIndex(0) +4 >Emitted(28, 19) Source(21, 37) + SourceIndex(0) --- >>> /*@internal*/ function foo() { } 1->^^^^ @@ -1460,13 +1462,13 @@ sourceFile:../second/second_part1.ts 5 > foo 6 > () { 7 > } -1->Emitted(28, 5) Source(22, 5) + SourceIndex(0) -2 >Emitted(28, 18) Source(22, 18) + SourceIndex(0) -3 >Emitted(28, 19) Source(22, 19) + SourceIndex(0) -4 >Emitted(28, 28) Source(22, 35) + SourceIndex(0) -5 >Emitted(28, 31) Source(22, 38) + SourceIndex(0) -6 >Emitted(28, 36) Source(22, 42) + SourceIndex(0) -7 >Emitted(28, 37) Source(22, 43) + SourceIndex(0) +1->Emitted(29, 5) Source(22, 5) + SourceIndex(0) +2 >Emitted(29, 18) Source(22, 18) + SourceIndex(0) +3 >Emitted(29, 19) Source(22, 19) + SourceIndex(0) +4 >Emitted(29, 28) Source(22, 35) + SourceIndex(0) +5 >Emitted(29, 31) Source(22, 38) + SourceIndex(0) +6 >Emitted(29, 36) Source(22, 42) + SourceIndex(0) +7 >Emitted(29, 37) Source(22, 43) + SourceIndex(0) --- >>> normalN.foo = foo; 1 >^^^^ @@ -1478,10 +1480,10 @@ sourceFile:../second/second_part1.ts 2 > foo 3 > () {} 4 > -1 >Emitted(29, 5) Source(22, 35) + SourceIndex(0) -2 >Emitted(29, 16) Source(22, 38) + SourceIndex(0) -3 >Emitted(29, 22) Source(22, 43) + SourceIndex(0) -4 >Emitted(29, 23) Source(22, 43) + SourceIndex(0) +1 >Emitted(30, 5) Source(22, 35) + SourceIndex(0) +2 >Emitted(30, 16) Source(22, 38) + SourceIndex(0) +3 >Emitted(30, 22) Source(22, 43) + SourceIndex(0) +4 >Emitted(30, 23) Source(22, 43) + SourceIndex(0) --- >>> /*@internal*/ var someNamespace; 1->^^^^ @@ -1497,12 +1499,12 @@ sourceFile:../second/second_part1.ts 4 > export namespace 5 > someNamespace 6 > { export class C {} } -1->Emitted(30, 5) Source(23, 5) + SourceIndex(0) -2 >Emitted(30, 18) Source(23, 18) + SourceIndex(0) -3 >Emitted(30, 19) Source(23, 19) + SourceIndex(0) -4 >Emitted(30, 23) Source(23, 36) + SourceIndex(0) -5 >Emitted(30, 36) Source(23, 49) + SourceIndex(0) -6 >Emitted(30, 37) Source(23, 71) + SourceIndex(0) +1->Emitted(31, 5) Source(23, 5) + SourceIndex(0) +2 >Emitted(31, 18) Source(23, 18) + SourceIndex(0) +3 >Emitted(31, 19) Source(23, 19) + SourceIndex(0) +4 >Emitted(31, 23) Source(23, 36) + SourceIndex(0) +5 >Emitted(31, 36) Source(23, 49) + SourceIndex(0) +6 >Emitted(31, 37) Source(23, 71) + SourceIndex(0) --- >>> (function (someNamespace) { 1 >^^^^ @@ -1512,21 +1514,21 @@ sourceFile:../second/second_part1.ts 1 > 2 > export namespace 3 > someNamespace -1 >Emitted(31, 5) Source(23, 19) + SourceIndex(0) -2 >Emitted(31, 16) Source(23, 36) + SourceIndex(0) -3 >Emitted(31, 29) Source(23, 49) + SourceIndex(0) +1 >Emitted(32, 5) Source(23, 19) + SourceIndex(0) +2 >Emitted(32, 16) Source(23, 36) + SourceIndex(0) +3 >Emitted(32, 29) Source(23, 49) + SourceIndex(0) --- >>> var C = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(32, 9) Source(23, 52) + SourceIndex(0) +1->Emitted(33, 9) Source(23, 52) + SourceIndex(0) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(33, 13) Source(23, 52) + SourceIndex(0) +1->Emitted(34, 13) Source(23, 52) + SourceIndex(0) --- >>> } 1->^^^^^^^^^^^^ @@ -1534,16 +1536,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(34, 13) Source(23, 68) + SourceIndex(0) -2 >Emitted(34, 14) Source(23, 69) + SourceIndex(0) +1->Emitted(35, 13) Source(23, 68) + SourceIndex(0) +2 >Emitted(35, 14) Source(23, 69) + SourceIndex(0) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(35, 13) Source(23, 68) + SourceIndex(0) -2 >Emitted(35, 21) Source(23, 69) + SourceIndex(0) +1->Emitted(36, 13) Source(23, 68) + SourceIndex(0) +2 >Emitted(36, 21) Source(23, 69) + SourceIndex(0) --- >>> }()); 1 >^^^^^^^^ @@ -1555,10 +1557,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(36, 9) Source(23, 68) + SourceIndex(0) -2 >Emitted(36, 10) Source(23, 69) + SourceIndex(0) -3 >Emitted(36, 10) Source(23, 52) + SourceIndex(0) -4 >Emitted(36, 14) Source(23, 69) + SourceIndex(0) +1 >Emitted(37, 9) Source(23, 68) + SourceIndex(0) +2 >Emitted(37, 10) Source(23, 69) + SourceIndex(0) +3 >Emitted(37, 10) Source(23, 52) + SourceIndex(0) +4 >Emitted(37, 14) Source(23, 69) + SourceIndex(0) --- >>> someNamespace.C = C; 1->^^^^^^^^ @@ -1570,10 +1572,10 @@ sourceFile:../second/second_part1.ts 2 > C 3 > {} 4 > -1->Emitted(37, 9) Source(23, 65) + SourceIndex(0) -2 >Emitted(37, 24) Source(23, 66) + SourceIndex(0) -3 >Emitted(37, 28) Source(23, 69) + SourceIndex(0) -4 >Emitted(37, 29) Source(23, 69) + SourceIndex(0) +1->Emitted(38, 9) Source(23, 65) + SourceIndex(0) +2 >Emitted(38, 24) Source(23, 66) + SourceIndex(0) +3 >Emitted(38, 28) Source(23, 69) + SourceIndex(0) +4 >Emitted(38, 29) Source(23, 69) + SourceIndex(0) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^ @@ -1594,15 +1596,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(38, 5) Source(23, 70) + SourceIndex(0) -2 >Emitted(38, 6) Source(23, 71) + SourceIndex(0) -3 >Emitted(38, 8) Source(23, 36) + SourceIndex(0) -4 >Emitted(38, 21) Source(23, 49) + SourceIndex(0) -5 >Emitted(38, 24) Source(23, 36) + SourceIndex(0) -6 >Emitted(38, 45) Source(23, 49) + SourceIndex(0) -7 >Emitted(38, 50) Source(23, 36) + SourceIndex(0) -8 >Emitted(38, 71) Source(23, 49) + SourceIndex(0) -9 >Emitted(38, 79) Source(23, 71) + SourceIndex(0) +1->Emitted(39, 5) Source(23, 70) + SourceIndex(0) +2 >Emitted(39, 6) Source(23, 71) + SourceIndex(0) +3 >Emitted(39, 8) Source(23, 36) + SourceIndex(0) +4 >Emitted(39, 21) Source(23, 49) + SourceIndex(0) +5 >Emitted(39, 24) Source(23, 36) + SourceIndex(0) +6 >Emitted(39, 45) Source(23, 49) + SourceIndex(0) +7 >Emitted(39, 50) Source(23, 36) + SourceIndex(0) +8 >Emitted(39, 71) Source(23, 49) + SourceIndex(0) +9 >Emitted(39, 79) Source(23, 71) + SourceIndex(0) --- >>> /*@internal*/ var someOther; 1 >^^^^ @@ -1618,12 +1620,12 @@ sourceFile:../second/second_part1.ts 4 > export namespace 5 > someOther 6 > .something { export class someClass {} } -1 >Emitted(39, 5) Source(24, 5) + SourceIndex(0) -2 >Emitted(39, 18) Source(24, 18) + SourceIndex(0) -3 >Emitted(39, 19) Source(24, 19) + SourceIndex(0) -4 >Emitted(39, 23) Source(24, 36) + SourceIndex(0) -5 >Emitted(39, 32) Source(24, 45) + SourceIndex(0) -6 >Emitted(39, 33) Source(24, 85) + SourceIndex(0) +1 >Emitted(40, 5) Source(24, 5) + SourceIndex(0) +2 >Emitted(40, 18) Source(24, 18) + SourceIndex(0) +3 >Emitted(40, 19) Source(24, 19) + SourceIndex(0) +4 >Emitted(40, 23) Source(24, 36) + SourceIndex(0) +5 >Emitted(40, 32) Source(24, 45) + SourceIndex(0) +6 >Emitted(40, 33) Source(24, 85) + SourceIndex(0) --- >>> (function (someOther) { 1 >^^^^ @@ -1632,9 +1634,9 @@ sourceFile:../second/second_part1.ts 1 > 2 > export namespace 3 > someOther -1 >Emitted(40, 5) Source(24, 19) + SourceIndex(0) -2 >Emitted(40, 16) Source(24, 36) + SourceIndex(0) -3 >Emitted(40, 25) Source(24, 45) + SourceIndex(0) +1 >Emitted(41, 5) Source(24, 19) + SourceIndex(0) +2 >Emitted(41, 16) Source(24, 36) + SourceIndex(0) +3 >Emitted(41, 25) Source(24, 45) + SourceIndex(0) --- >>> var something; 1 >^^^^^^^^ @@ -1646,10 +1648,10 @@ sourceFile:../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(41, 9) Source(24, 46) + SourceIndex(0) -2 >Emitted(41, 13) Source(24, 46) + SourceIndex(0) -3 >Emitted(41, 22) Source(24, 55) + SourceIndex(0) -4 >Emitted(41, 23) Source(24, 85) + SourceIndex(0) +1 >Emitted(42, 9) Source(24, 46) + SourceIndex(0) +2 >Emitted(42, 13) Source(24, 46) + SourceIndex(0) +3 >Emitted(42, 22) Source(24, 55) + SourceIndex(0) +4 >Emitted(42, 23) Source(24, 85) + SourceIndex(0) --- >>> (function (something) { 1->^^^^^^^^ @@ -1659,21 +1661,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(42, 9) Source(24, 46) + SourceIndex(0) -2 >Emitted(42, 20) Source(24, 46) + SourceIndex(0) -3 >Emitted(42, 29) Source(24, 55) + SourceIndex(0) +1->Emitted(43, 9) Source(24, 46) + SourceIndex(0) +2 >Emitted(43, 20) Source(24, 46) + SourceIndex(0) +3 >Emitted(43, 29) Source(24, 55) + SourceIndex(0) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(43, 13) Source(24, 58) + SourceIndex(0) +1->Emitted(44, 13) Source(24, 58) + SourceIndex(0) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(44, 17) Source(24, 58) + SourceIndex(0) +1->Emitted(45, 17) Source(24, 58) + SourceIndex(0) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -1681,16 +1683,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(45, 17) Source(24, 82) + SourceIndex(0) -2 >Emitted(45, 18) Source(24, 83) + SourceIndex(0) +1->Emitted(46, 17) Source(24, 82) + SourceIndex(0) +2 >Emitted(46, 18) Source(24, 83) + SourceIndex(0) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(46, 17) Source(24, 82) + SourceIndex(0) -2 >Emitted(46, 33) Source(24, 83) + SourceIndex(0) +1->Emitted(47, 17) Source(24, 82) + SourceIndex(0) +2 >Emitted(47, 33) Source(24, 83) + SourceIndex(0) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -1702,10 +1704,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(47, 13) Source(24, 82) + SourceIndex(0) -2 >Emitted(47, 14) Source(24, 83) + SourceIndex(0) -3 >Emitted(47, 14) Source(24, 58) + SourceIndex(0) -4 >Emitted(47, 18) Source(24, 83) + SourceIndex(0) +1 >Emitted(48, 13) Source(24, 82) + SourceIndex(0) +2 >Emitted(48, 14) Source(24, 83) + SourceIndex(0) +3 >Emitted(48, 14) Source(24, 58) + SourceIndex(0) +4 >Emitted(48, 18) Source(24, 83) + SourceIndex(0) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -1717,10 +1719,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(48, 13) Source(24, 71) + SourceIndex(0) -2 >Emitted(48, 32) Source(24, 80) + SourceIndex(0) -3 >Emitted(48, 44) Source(24, 83) + SourceIndex(0) -4 >Emitted(48, 45) Source(24, 83) + SourceIndex(0) +1->Emitted(49, 13) Source(24, 71) + SourceIndex(0) +2 >Emitted(49, 32) Source(24, 80) + SourceIndex(0) +3 >Emitted(49, 44) Source(24, 83) + SourceIndex(0) +4 >Emitted(49, 45) Source(24, 83) + SourceIndex(0) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^ @@ -1741,15 +1743,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(49, 9) Source(24, 84) + SourceIndex(0) -2 >Emitted(49, 10) Source(24, 85) + SourceIndex(0) -3 >Emitted(49, 12) Source(24, 46) + SourceIndex(0) -4 >Emitted(49, 21) Source(24, 55) + SourceIndex(0) -5 >Emitted(49, 24) Source(24, 46) + SourceIndex(0) -6 >Emitted(49, 43) Source(24, 55) + SourceIndex(0) -7 >Emitted(49, 48) Source(24, 46) + SourceIndex(0) -8 >Emitted(49, 67) Source(24, 55) + SourceIndex(0) -9 >Emitted(49, 75) Source(24, 85) + SourceIndex(0) +1->Emitted(50, 9) Source(24, 84) + SourceIndex(0) +2 >Emitted(50, 10) Source(24, 85) + SourceIndex(0) +3 >Emitted(50, 12) Source(24, 46) + SourceIndex(0) +4 >Emitted(50, 21) Source(24, 55) + SourceIndex(0) +5 >Emitted(50, 24) Source(24, 46) + SourceIndex(0) +6 >Emitted(50, 43) Source(24, 55) + SourceIndex(0) +7 >Emitted(50, 48) Source(24, 46) + SourceIndex(0) +8 >Emitted(50, 67) Source(24, 55) + SourceIndex(0) +9 >Emitted(50, 75) Source(24, 85) + SourceIndex(0) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^ @@ -1770,15 +1772,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(50, 5) Source(24, 84) + SourceIndex(0) -2 >Emitted(50, 6) Source(24, 85) + SourceIndex(0) -3 >Emitted(50, 8) Source(24, 36) + SourceIndex(0) -4 >Emitted(50, 17) Source(24, 45) + SourceIndex(0) -5 >Emitted(50, 20) Source(24, 36) + SourceIndex(0) -6 >Emitted(50, 37) Source(24, 45) + SourceIndex(0) -7 >Emitted(50, 42) Source(24, 36) + SourceIndex(0) -8 >Emitted(50, 59) Source(24, 45) + SourceIndex(0) -9 >Emitted(50, 67) Source(24, 85) + SourceIndex(0) +1 >Emitted(51, 5) Source(24, 84) + SourceIndex(0) +2 >Emitted(51, 6) Source(24, 85) + SourceIndex(0) +3 >Emitted(51, 8) Source(24, 36) + SourceIndex(0) +4 >Emitted(51, 17) Source(24, 45) + SourceIndex(0) +5 >Emitted(51, 20) Source(24, 36) + SourceIndex(0) +6 >Emitted(51, 37) Source(24, 45) + SourceIndex(0) +7 >Emitted(51, 42) Source(24, 36) + SourceIndex(0) +8 >Emitted(51, 59) Source(24, 45) + SourceIndex(0) +9 >Emitted(51, 67) Source(24, 85) + SourceIndex(0) --- >>> /*@internal*/ normalN.someImport = someNamespace.C; 1 >^^^^ @@ -1800,15 +1802,15 @@ sourceFile:../second/second_part1.ts 7 > . 8 > C 9 > ; -1 >Emitted(51, 5) Source(25, 5) + SourceIndex(0) -2 >Emitted(51, 18) Source(25, 18) + SourceIndex(0) -3 >Emitted(51, 19) Source(25, 33) + SourceIndex(0) -4 >Emitted(51, 37) Source(25, 43) + SourceIndex(0) -5 >Emitted(51, 40) Source(25, 46) + SourceIndex(0) -6 >Emitted(51, 53) Source(25, 59) + SourceIndex(0) -7 >Emitted(51, 54) Source(25, 60) + SourceIndex(0) -8 >Emitted(51, 55) Source(25, 61) + SourceIndex(0) -9 >Emitted(51, 56) Source(25, 62) + SourceIndex(0) +1 >Emitted(52, 5) Source(25, 5) + SourceIndex(0) +2 >Emitted(52, 18) Source(25, 18) + SourceIndex(0) +3 >Emitted(52, 19) Source(25, 33) + SourceIndex(0) +4 >Emitted(52, 37) Source(25, 43) + SourceIndex(0) +5 >Emitted(52, 40) Source(25, 46) + SourceIndex(0) +6 >Emitted(52, 53) Source(25, 59) + SourceIndex(0) +7 >Emitted(52, 54) Source(25, 60) + SourceIndex(0) +8 >Emitted(52, 55) Source(25, 61) + SourceIndex(0) +9 >Emitted(52, 56) Source(25, 62) + SourceIndex(0) --- >>> /*@internal*/ normalN.internalConst = 10; 1 >^^^^ @@ -1827,13 +1829,13 @@ sourceFile:../second/second_part1.ts 5 > = 6 > 10 7 > ; -1 >Emitted(52, 5) Source(27, 5) + SourceIndex(0) -2 >Emitted(52, 18) Source(27, 18) + SourceIndex(0) -3 >Emitted(52, 19) Source(27, 32) + SourceIndex(0) -4 >Emitted(52, 40) Source(27, 45) + SourceIndex(0) -5 >Emitted(52, 43) Source(27, 48) + SourceIndex(0) -6 >Emitted(52, 45) Source(27, 50) + SourceIndex(0) -7 >Emitted(52, 46) Source(27, 51) + SourceIndex(0) +1 >Emitted(53, 5) Source(27, 5) + SourceIndex(0) +2 >Emitted(53, 18) Source(27, 18) + SourceIndex(0) +3 >Emitted(53, 19) Source(27, 32) + SourceIndex(0) +4 >Emitted(53, 40) Source(27, 45) + SourceIndex(0) +5 >Emitted(53, 43) Source(27, 48) + SourceIndex(0) +6 >Emitted(53, 45) Source(27, 50) + SourceIndex(0) +7 >Emitted(53, 46) Source(27, 51) + SourceIndex(0) --- >>> /*@internal*/ var internalEnum; 1 >^^^^ @@ -1847,11 +1849,11 @@ sourceFile:../second/second_part1.ts 3 > 4 > export enum 5 > internalEnum { a, b, c } -1 >Emitted(53, 5) Source(28, 5) + SourceIndex(0) -2 >Emitted(53, 18) Source(28, 18) + SourceIndex(0) -3 >Emitted(53, 19) Source(28, 19) + SourceIndex(0) -4 >Emitted(53, 23) Source(28, 31) + SourceIndex(0) -5 >Emitted(53, 35) Source(28, 55) + SourceIndex(0) +1 >Emitted(54, 5) Source(28, 5) + SourceIndex(0) +2 >Emitted(54, 18) Source(28, 18) + SourceIndex(0) +3 >Emitted(54, 19) Source(28, 19) + SourceIndex(0) +4 >Emitted(54, 23) Source(28, 31) + SourceIndex(0) +5 >Emitted(54, 35) Source(28, 55) + SourceIndex(0) --- >>> (function (internalEnum) { 1 >^^^^ @@ -1861,9 +1863,9 @@ sourceFile:../second/second_part1.ts 1 > 2 > export enum 3 > internalEnum -1 >Emitted(54, 5) Source(28, 19) + SourceIndex(0) -2 >Emitted(54, 16) Source(28, 31) + SourceIndex(0) -3 >Emitted(54, 28) Source(28, 43) + SourceIndex(0) +1 >Emitted(55, 5) Source(28, 19) + SourceIndex(0) +2 >Emitted(55, 16) Source(28, 31) + SourceIndex(0) +3 >Emitted(55, 28) Source(28, 43) + SourceIndex(0) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -1873,9 +1875,9 @@ sourceFile:../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(55, 9) Source(28, 46) + SourceIndex(0) -2 >Emitted(55, 50) Source(28, 47) + SourceIndex(0) -3 >Emitted(55, 51) Source(28, 47) + SourceIndex(0) +1->Emitted(56, 9) Source(28, 46) + SourceIndex(0) +2 >Emitted(56, 50) Source(28, 47) + SourceIndex(0) +3 >Emitted(56, 51) Source(28, 47) + SourceIndex(0) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -1885,9 +1887,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(56, 9) Source(28, 49) + SourceIndex(0) -2 >Emitted(56, 50) Source(28, 50) + SourceIndex(0) -3 >Emitted(56, 51) Source(28, 50) + SourceIndex(0) +1->Emitted(57, 9) Source(28, 49) + SourceIndex(0) +2 >Emitted(57, 50) Source(28, 50) + SourceIndex(0) +3 >Emitted(57, 51) Source(28, 50) + SourceIndex(0) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -1897,9 +1899,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(57, 9) Source(28, 52) + SourceIndex(0) -2 >Emitted(57, 50) Source(28, 53) + SourceIndex(0) -3 >Emitted(57, 51) Source(28, 53) + SourceIndex(0) +1->Emitted(58, 9) Source(28, 52) + SourceIndex(0) +2 >Emitted(58, 50) Source(28, 53) + SourceIndex(0) +3 >Emitted(58, 51) Source(28, 53) + SourceIndex(0) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^ @@ -1920,15 +1922,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(58, 5) Source(28, 54) + SourceIndex(0) -2 >Emitted(58, 6) Source(28, 55) + SourceIndex(0) -3 >Emitted(58, 8) Source(28, 31) + SourceIndex(0) -4 >Emitted(58, 20) Source(28, 43) + SourceIndex(0) -5 >Emitted(58, 23) Source(28, 31) + SourceIndex(0) -6 >Emitted(58, 43) Source(28, 43) + SourceIndex(0) -7 >Emitted(58, 48) Source(28, 31) + SourceIndex(0) -8 >Emitted(58, 68) Source(28, 43) + SourceIndex(0) -9 >Emitted(58, 76) Source(28, 55) + SourceIndex(0) +1->Emitted(59, 5) Source(28, 54) + SourceIndex(0) +2 >Emitted(59, 6) Source(28, 55) + SourceIndex(0) +3 >Emitted(59, 8) Source(28, 31) + SourceIndex(0) +4 >Emitted(59, 20) Source(28, 43) + SourceIndex(0) +5 >Emitted(59, 23) Source(28, 31) + SourceIndex(0) +6 >Emitted(59, 43) Source(28, 43) + SourceIndex(0) +7 >Emitted(59, 48) Source(28, 31) + SourceIndex(0) +8 >Emitted(59, 68) Source(28, 43) + SourceIndex(0) +9 >Emitted(59, 76) Source(28, 55) + SourceIndex(0) --- >>>})(normalN || (normalN = {})); 1 > @@ -1956,13 +1958,13 @@ sourceFile:../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(59, 1) Source(29, 1) + SourceIndex(0) -2 >Emitted(59, 2) Source(29, 2) + SourceIndex(0) -3 >Emitted(59, 4) Source(20, 11) + SourceIndex(0) -4 >Emitted(59, 11) Source(20, 18) + SourceIndex(0) -5 >Emitted(59, 16) Source(20, 11) + SourceIndex(0) -6 >Emitted(59, 23) Source(20, 18) + SourceIndex(0) -7 >Emitted(59, 31) Source(29, 2) + SourceIndex(0) +1 >Emitted(60, 1) Source(29, 1) + SourceIndex(0) +2 >Emitted(60, 2) Source(29, 2) + SourceIndex(0) +3 >Emitted(60, 4) Source(20, 11) + SourceIndex(0) +4 >Emitted(60, 11) Source(20, 18) + SourceIndex(0) +5 >Emitted(60, 16) Source(20, 11) + SourceIndex(0) +6 >Emitted(60, 23) Source(20, 18) + SourceIndex(0) +7 >Emitted(60, 31) Source(29, 2) + SourceIndex(0) --- >>>/*@internal*/ var internalC = /** @class */ (function () { 1-> @@ -1973,15 +1975,15 @@ sourceFile:../second/second_part1.ts > 2 >/*@internal*/ 3 > -1->Emitted(60, 1) Source(30, 1) + SourceIndex(0) -2 >Emitted(60, 14) Source(30, 14) + SourceIndex(0) -3 >Emitted(60, 15) Source(30, 15) + SourceIndex(0) +1->Emitted(61, 1) Source(30, 1) + SourceIndex(0) +2 >Emitted(61, 14) Source(30, 14) + SourceIndex(0) +3 >Emitted(61, 15) Source(30, 15) + SourceIndex(0) --- >>> function internalC() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(61, 5) Source(30, 15) + SourceIndex(0) +1->Emitted(62, 5) Source(30, 15) + SourceIndex(0) --- >>> } 1->^^^^ @@ -1989,16 +1991,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->class internalC { 2 > } -1->Emitted(62, 5) Source(30, 32) + SourceIndex(0) -2 >Emitted(62, 6) Source(30, 33) + SourceIndex(0) +1->Emitted(63, 5) Source(30, 32) + SourceIndex(0) +2 >Emitted(63, 6) Source(30, 33) + SourceIndex(0) --- >>> return internalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(63, 5) Source(30, 32) + SourceIndex(0) -2 >Emitted(63, 21) Source(30, 33) + SourceIndex(0) +1->Emitted(64, 5) Source(30, 32) + SourceIndex(0) +2 >Emitted(64, 21) Source(30, 33) + SourceIndex(0) --- >>>}()); 1 > @@ -2010,10 +2012,10 @@ sourceFile:../second/second_part1.ts 2 >} 3 > 4 > class internalC {} -1 >Emitted(64, 1) Source(30, 32) + SourceIndex(0) -2 >Emitted(64, 2) Source(30, 33) + SourceIndex(0) -3 >Emitted(64, 2) Source(30, 15) + SourceIndex(0) -4 >Emitted(64, 6) Source(30, 33) + SourceIndex(0) +1 >Emitted(65, 1) Source(30, 32) + SourceIndex(0) +2 >Emitted(65, 2) Source(30, 33) + SourceIndex(0) +3 >Emitted(65, 2) Source(30, 15) + SourceIndex(0) +4 >Emitted(65, 6) Source(30, 33) + SourceIndex(0) --- >>>/*@internal*/ function internalfoo() { } 1-> @@ -2031,13 +2033,13 @@ sourceFile:../second/second_part1.ts 5 > internalfoo 6 > () { 7 > } -1->Emitted(65, 1) Source(31, 1) + SourceIndex(0) -2 >Emitted(65, 14) Source(31, 14) + SourceIndex(0) -3 >Emitted(65, 15) Source(31, 15) + SourceIndex(0) -4 >Emitted(65, 24) Source(31, 24) + SourceIndex(0) -5 >Emitted(65, 35) Source(31, 35) + SourceIndex(0) -6 >Emitted(65, 40) Source(31, 39) + SourceIndex(0) -7 >Emitted(65, 41) Source(31, 40) + SourceIndex(0) +1->Emitted(66, 1) Source(31, 1) + SourceIndex(0) +2 >Emitted(66, 14) Source(31, 14) + SourceIndex(0) +3 >Emitted(66, 15) Source(31, 15) + SourceIndex(0) +4 >Emitted(66, 24) Source(31, 24) + SourceIndex(0) +5 >Emitted(66, 35) Source(31, 35) + SourceIndex(0) +6 >Emitted(66, 40) Source(31, 39) + SourceIndex(0) +7 >Emitted(66, 41) Source(31, 40) + SourceIndex(0) --- >>>/*@internal*/ var internalNamespace; 1 > @@ -2053,12 +2055,12 @@ sourceFile:../second/second_part1.ts 4 > namespace 5 > internalNamespace 6 > { export class someClass {} } -1 >Emitted(66, 1) Source(32, 1) + SourceIndex(0) -2 >Emitted(66, 14) Source(32, 14) + SourceIndex(0) -3 >Emitted(66, 15) Source(32, 15) + SourceIndex(0) -4 >Emitted(66, 19) Source(32, 25) + SourceIndex(0) -5 >Emitted(66, 36) Source(32, 42) + SourceIndex(0) -6 >Emitted(66, 37) Source(32, 72) + SourceIndex(0) +1 >Emitted(67, 1) Source(32, 1) + SourceIndex(0) +2 >Emitted(67, 14) Source(32, 14) + SourceIndex(0) +3 >Emitted(67, 15) Source(32, 15) + SourceIndex(0) +4 >Emitted(67, 19) Source(32, 25) + SourceIndex(0) +5 >Emitted(67, 36) Source(32, 42) + SourceIndex(0) +6 >Emitted(67, 37) Source(32, 72) + SourceIndex(0) --- >>>(function (internalNamespace) { 1 > @@ -2068,21 +2070,21 @@ sourceFile:../second/second_part1.ts 1 > 2 >namespace 3 > internalNamespace -1 >Emitted(67, 1) Source(32, 15) + SourceIndex(0) -2 >Emitted(67, 12) Source(32, 25) + SourceIndex(0) -3 >Emitted(67, 29) Source(32, 42) + SourceIndex(0) +1 >Emitted(68, 1) Source(32, 15) + SourceIndex(0) +2 >Emitted(68, 12) Source(32, 25) + SourceIndex(0) +3 >Emitted(68, 29) Source(32, 42) + SourceIndex(0) --- >>> var someClass = /** @class */ (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(68, 5) Source(32, 45) + SourceIndex(0) +1->Emitted(69, 5) Source(32, 45) + SourceIndex(0) --- >>> function someClass() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(69, 9) Source(32, 45) + SourceIndex(0) +1->Emitted(70, 9) Source(32, 45) + SourceIndex(0) --- >>> } 1->^^^^^^^^ @@ -2090,16 +2092,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(70, 9) Source(32, 69) + SourceIndex(0) -2 >Emitted(70, 10) Source(32, 70) + SourceIndex(0) +1->Emitted(71, 9) Source(32, 69) + SourceIndex(0) +2 >Emitted(71, 10) Source(32, 70) + SourceIndex(0) --- >>> return someClass; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(71, 9) Source(32, 69) + SourceIndex(0) -2 >Emitted(71, 25) Source(32, 70) + SourceIndex(0) +1->Emitted(72, 9) Source(32, 69) + SourceIndex(0) +2 >Emitted(72, 25) Source(32, 70) + SourceIndex(0) --- >>> }()); 1 >^^^^ @@ -2111,10 +2113,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(72, 5) Source(32, 69) + SourceIndex(0) -2 >Emitted(72, 6) Source(32, 70) + SourceIndex(0) -3 >Emitted(72, 6) Source(32, 45) + SourceIndex(0) -4 >Emitted(72, 10) Source(32, 70) + SourceIndex(0) +1 >Emitted(73, 5) Source(32, 69) + SourceIndex(0) +2 >Emitted(73, 6) Source(32, 70) + SourceIndex(0) +3 >Emitted(73, 6) Source(32, 45) + SourceIndex(0) +4 >Emitted(73, 10) Source(32, 70) + SourceIndex(0) --- >>> internalNamespace.someClass = someClass; 1->^^^^ @@ -2126,10 +2128,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(73, 5) Source(32, 58) + SourceIndex(0) -2 >Emitted(73, 32) Source(32, 67) + SourceIndex(0) -3 >Emitted(73, 44) Source(32, 70) + SourceIndex(0) -4 >Emitted(73, 45) Source(32, 70) + SourceIndex(0) +1->Emitted(74, 5) Source(32, 58) + SourceIndex(0) +2 >Emitted(74, 32) Source(32, 67) + SourceIndex(0) +3 >Emitted(74, 44) Source(32, 70) + SourceIndex(0) +4 >Emitted(74, 45) Source(32, 70) + SourceIndex(0) --- >>>})(internalNamespace || (internalNamespace = {})); 1-> @@ -2146,13 +2148,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalNamespace 7 > { export class someClass {} } -1->Emitted(74, 1) Source(32, 71) + SourceIndex(0) -2 >Emitted(74, 2) Source(32, 72) + SourceIndex(0) -3 >Emitted(74, 4) Source(32, 25) + SourceIndex(0) -4 >Emitted(74, 21) Source(32, 42) + SourceIndex(0) -5 >Emitted(74, 26) Source(32, 25) + SourceIndex(0) -6 >Emitted(74, 43) Source(32, 42) + SourceIndex(0) -7 >Emitted(74, 51) Source(32, 72) + SourceIndex(0) +1->Emitted(75, 1) Source(32, 71) + SourceIndex(0) +2 >Emitted(75, 2) Source(32, 72) + SourceIndex(0) +3 >Emitted(75, 4) Source(32, 25) + SourceIndex(0) +4 >Emitted(75, 21) Source(32, 42) + SourceIndex(0) +5 >Emitted(75, 26) Source(32, 25) + SourceIndex(0) +6 >Emitted(75, 43) Source(32, 42) + SourceIndex(0) +7 >Emitted(75, 51) Source(32, 72) + SourceIndex(0) --- >>>/*@internal*/ var internalOther; 1 > @@ -2168,12 +2170,12 @@ sourceFile:../second/second_part1.ts 4 > namespace 5 > internalOther 6 > .something { export class someClass {} } -1 >Emitted(75, 1) Source(33, 1) + SourceIndex(0) -2 >Emitted(75, 14) Source(33, 14) + SourceIndex(0) -3 >Emitted(75, 15) Source(33, 15) + SourceIndex(0) -4 >Emitted(75, 19) Source(33, 25) + SourceIndex(0) -5 >Emitted(75, 32) Source(33, 38) + SourceIndex(0) -6 >Emitted(75, 33) Source(33, 78) + SourceIndex(0) +1 >Emitted(76, 1) Source(33, 1) + SourceIndex(0) +2 >Emitted(76, 14) Source(33, 14) + SourceIndex(0) +3 >Emitted(76, 15) Source(33, 15) + SourceIndex(0) +4 >Emitted(76, 19) Source(33, 25) + SourceIndex(0) +5 >Emitted(76, 32) Source(33, 38) + SourceIndex(0) +6 >Emitted(76, 33) Source(33, 78) + SourceIndex(0) --- >>>(function (internalOther) { 1 > @@ -2182,9 +2184,9 @@ sourceFile:../second/second_part1.ts 1 > 2 >namespace 3 > internalOther -1 >Emitted(76, 1) Source(33, 15) + SourceIndex(0) -2 >Emitted(76, 12) Source(33, 25) + SourceIndex(0) -3 >Emitted(76, 25) Source(33, 38) + SourceIndex(0) +1 >Emitted(77, 1) Source(33, 15) + SourceIndex(0) +2 >Emitted(77, 12) Source(33, 25) + SourceIndex(0) +3 >Emitted(77, 25) Source(33, 38) + SourceIndex(0) --- >>> var something; 1 >^^^^ @@ -2196,10 +2198,10 @@ sourceFile:../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(77, 5) Source(33, 39) + SourceIndex(0) -2 >Emitted(77, 9) Source(33, 39) + SourceIndex(0) -3 >Emitted(77, 18) Source(33, 48) + SourceIndex(0) -4 >Emitted(77, 19) Source(33, 78) + SourceIndex(0) +1 >Emitted(78, 5) Source(33, 39) + SourceIndex(0) +2 >Emitted(78, 9) Source(33, 39) + SourceIndex(0) +3 >Emitted(78, 18) Source(33, 48) + SourceIndex(0) +4 >Emitted(78, 19) Source(33, 78) + SourceIndex(0) --- >>> (function (something) { 1->^^^^ @@ -2209,21 +2211,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(78, 5) Source(33, 39) + SourceIndex(0) -2 >Emitted(78, 16) Source(33, 39) + SourceIndex(0) -3 >Emitted(78, 25) Source(33, 48) + SourceIndex(0) +1->Emitted(79, 5) Source(33, 39) + SourceIndex(0) +2 >Emitted(79, 16) Source(33, 39) + SourceIndex(0) +3 >Emitted(79, 25) Source(33, 48) + SourceIndex(0) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(79, 9) Source(33, 51) + SourceIndex(0) +1->Emitted(80, 9) Source(33, 51) + SourceIndex(0) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(80, 13) Source(33, 51) + SourceIndex(0) +1->Emitted(81, 13) Source(33, 51) + SourceIndex(0) --- >>> } 1->^^^^^^^^^^^^ @@ -2231,16 +2233,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(81, 13) Source(33, 75) + SourceIndex(0) -2 >Emitted(81, 14) Source(33, 76) + SourceIndex(0) +1->Emitted(82, 13) Source(33, 75) + SourceIndex(0) +2 >Emitted(82, 14) Source(33, 76) + SourceIndex(0) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(82, 13) Source(33, 75) + SourceIndex(0) -2 >Emitted(82, 29) Source(33, 76) + SourceIndex(0) +1->Emitted(83, 13) Source(33, 75) + SourceIndex(0) +2 >Emitted(83, 29) Source(33, 76) + SourceIndex(0) --- >>> }()); 1 >^^^^^^^^ @@ -2252,10 +2254,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(83, 9) Source(33, 75) + SourceIndex(0) -2 >Emitted(83, 10) Source(33, 76) + SourceIndex(0) -3 >Emitted(83, 10) Source(33, 51) + SourceIndex(0) -4 >Emitted(83, 14) Source(33, 76) + SourceIndex(0) +1 >Emitted(84, 9) Source(33, 75) + SourceIndex(0) +2 >Emitted(84, 10) Source(33, 76) + SourceIndex(0) +3 >Emitted(84, 10) Source(33, 51) + SourceIndex(0) +4 >Emitted(84, 14) Source(33, 76) + SourceIndex(0) --- >>> something.someClass = someClass; 1->^^^^^^^^ @@ -2267,10 +2269,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(84, 9) Source(33, 64) + SourceIndex(0) -2 >Emitted(84, 28) Source(33, 73) + SourceIndex(0) -3 >Emitted(84, 40) Source(33, 76) + SourceIndex(0) -4 >Emitted(84, 41) Source(33, 76) + SourceIndex(0) +1->Emitted(85, 9) Source(33, 64) + SourceIndex(0) +2 >Emitted(85, 28) Source(33, 73) + SourceIndex(0) +3 >Emitted(85, 40) Source(33, 76) + SourceIndex(0) +4 >Emitted(85, 41) Source(33, 76) + SourceIndex(0) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^ @@ -2291,15 +2293,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(85, 5) Source(33, 77) + SourceIndex(0) -2 >Emitted(85, 6) Source(33, 78) + SourceIndex(0) -3 >Emitted(85, 8) Source(33, 39) + SourceIndex(0) -4 >Emitted(85, 17) Source(33, 48) + SourceIndex(0) -5 >Emitted(85, 20) Source(33, 39) + SourceIndex(0) -6 >Emitted(85, 43) Source(33, 48) + SourceIndex(0) -7 >Emitted(85, 48) Source(33, 39) + SourceIndex(0) -8 >Emitted(85, 71) Source(33, 48) + SourceIndex(0) -9 >Emitted(85, 79) Source(33, 78) + SourceIndex(0) +1->Emitted(86, 5) Source(33, 77) + SourceIndex(0) +2 >Emitted(86, 6) Source(33, 78) + SourceIndex(0) +3 >Emitted(86, 8) Source(33, 39) + SourceIndex(0) +4 >Emitted(86, 17) Source(33, 48) + SourceIndex(0) +5 >Emitted(86, 20) Source(33, 39) + SourceIndex(0) +6 >Emitted(86, 43) Source(33, 48) + SourceIndex(0) +7 >Emitted(86, 48) Source(33, 39) + SourceIndex(0) +8 >Emitted(86, 71) Source(33, 48) + SourceIndex(0) +9 >Emitted(86, 79) Source(33, 78) + SourceIndex(0) --- >>>})(internalOther || (internalOther = {})); 1 > @@ -2317,13 +2319,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalOther 7 > .something { export class someClass {} } -1 >Emitted(86, 1) Source(33, 77) + SourceIndex(0) -2 >Emitted(86, 2) Source(33, 78) + SourceIndex(0) -3 >Emitted(86, 4) Source(33, 25) + SourceIndex(0) -4 >Emitted(86, 17) Source(33, 38) + SourceIndex(0) -5 >Emitted(86, 22) Source(33, 25) + SourceIndex(0) -6 >Emitted(86, 35) Source(33, 38) + SourceIndex(0) -7 >Emitted(86, 43) Source(33, 78) + SourceIndex(0) +1 >Emitted(87, 1) Source(33, 77) + SourceIndex(0) +2 >Emitted(87, 2) Source(33, 78) + SourceIndex(0) +3 >Emitted(87, 4) Source(33, 25) + SourceIndex(0) +4 >Emitted(87, 17) Source(33, 38) + SourceIndex(0) +5 >Emitted(87, 22) Source(33, 25) + SourceIndex(0) +6 >Emitted(87, 35) Source(33, 38) + SourceIndex(0) +7 >Emitted(87, 43) Source(33, 78) + SourceIndex(0) --- >>>/*@internal*/ var internalImport = internalNamespace.someClass; 1-> @@ -2347,16 +2349,16 @@ sourceFile:../second/second_part1.ts 8 > . 9 > someClass 10> ; -1->Emitted(87, 1) Source(34, 1) + SourceIndex(0) -2 >Emitted(87, 14) Source(34, 14) + SourceIndex(0) -3 >Emitted(87, 15) Source(34, 15) + SourceIndex(0) -4 >Emitted(87, 19) Source(34, 22) + SourceIndex(0) -5 >Emitted(87, 33) Source(34, 36) + SourceIndex(0) -6 >Emitted(87, 36) Source(34, 39) + SourceIndex(0) -7 >Emitted(87, 53) Source(34, 56) + SourceIndex(0) -8 >Emitted(87, 54) Source(34, 57) + SourceIndex(0) -9 >Emitted(87, 63) Source(34, 66) + SourceIndex(0) -10>Emitted(87, 64) Source(34, 67) + SourceIndex(0) +1->Emitted(88, 1) Source(34, 1) + SourceIndex(0) +2 >Emitted(88, 14) Source(34, 14) + SourceIndex(0) +3 >Emitted(88, 15) Source(34, 15) + SourceIndex(0) +4 >Emitted(88, 19) Source(34, 22) + SourceIndex(0) +5 >Emitted(88, 33) Source(34, 36) + SourceIndex(0) +6 >Emitted(88, 36) Source(34, 39) + SourceIndex(0) +7 >Emitted(88, 53) Source(34, 56) + SourceIndex(0) +8 >Emitted(88, 54) Source(34, 57) + SourceIndex(0) +9 >Emitted(88, 63) Source(34, 66) + SourceIndex(0) +10>Emitted(88, 64) Source(34, 67) + SourceIndex(0) --- >>>/*@internal*/ var internalConst = 10; 1 > @@ -2377,14 +2379,14 @@ sourceFile:../second/second_part1.ts 6 > = 7 > 10 8 > ; -1 >Emitted(88, 1) Source(36, 1) + SourceIndex(0) -2 >Emitted(88, 14) Source(36, 14) + SourceIndex(0) -3 >Emitted(88, 15) Source(36, 15) + SourceIndex(0) -4 >Emitted(88, 19) Source(36, 21) + SourceIndex(0) -5 >Emitted(88, 32) Source(36, 34) + SourceIndex(0) -6 >Emitted(88, 35) Source(36, 37) + SourceIndex(0) -7 >Emitted(88, 37) Source(36, 39) + SourceIndex(0) -8 >Emitted(88, 38) Source(36, 40) + SourceIndex(0) +1 >Emitted(89, 1) Source(36, 1) + SourceIndex(0) +2 >Emitted(89, 14) Source(36, 14) + SourceIndex(0) +3 >Emitted(89, 15) Source(36, 15) + SourceIndex(0) +4 >Emitted(89, 19) Source(36, 21) + SourceIndex(0) +5 >Emitted(89, 32) Source(36, 34) + SourceIndex(0) +6 >Emitted(89, 35) Source(36, 37) + SourceIndex(0) +7 >Emitted(89, 37) Source(36, 39) + SourceIndex(0) +8 >Emitted(89, 38) Source(36, 40) + SourceIndex(0) --- >>>/*@internal*/ var internalEnum; 1 > @@ -2398,11 +2400,11 @@ sourceFile:../second/second_part1.ts 3 > 4 > enum 5 > internalEnum { a, b, c } -1 >Emitted(89, 1) Source(37, 1) + SourceIndex(0) -2 >Emitted(89, 14) Source(37, 14) + SourceIndex(0) -3 >Emitted(89, 15) Source(37, 15) + SourceIndex(0) -4 >Emitted(89, 19) Source(37, 20) + SourceIndex(0) -5 >Emitted(89, 31) Source(37, 44) + SourceIndex(0) +1 >Emitted(90, 1) Source(37, 1) + SourceIndex(0) +2 >Emitted(90, 14) Source(37, 14) + SourceIndex(0) +3 >Emitted(90, 15) Source(37, 15) + SourceIndex(0) +4 >Emitted(90, 19) Source(37, 20) + SourceIndex(0) +5 >Emitted(90, 31) Source(37, 44) + SourceIndex(0) --- >>>(function (internalEnum) { 1 > @@ -2412,9 +2414,9 @@ sourceFile:../second/second_part1.ts 1 > 2 >enum 3 > internalEnum -1 >Emitted(90, 1) Source(37, 15) + SourceIndex(0) -2 >Emitted(90, 12) Source(37, 20) + SourceIndex(0) -3 >Emitted(90, 24) Source(37, 32) + SourceIndex(0) +1 >Emitted(91, 1) Source(37, 15) + SourceIndex(0) +2 >Emitted(91, 12) Source(37, 20) + SourceIndex(0) +3 >Emitted(91, 24) Source(37, 32) + SourceIndex(0) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^ @@ -2424,9 +2426,9 @@ sourceFile:../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(91, 5) Source(37, 35) + SourceIndex(0) -2 >Emitted(91, 46) Source(37, 36) + SourceIndex(0) -3 >Emitted(91, 47) Source(37, 36) + SourceIndex(0) +1->Emitted(92, 5) Source(37, 35) + SourceIndex(0) +2 >Emitted(92, 46) Source(37, 36) + SourceIndex(0) +3 >Emitted(92, 47) Source(37, 36) + SourceIndex(0) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^ @@ -2436,9 +2438,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(92, 5) Source(37, 38) + SourceIndex(0) -2 >Emitted(92, 46) Source(37, 39) + SourceIndex(0) -3 >Emitted(92, 47) Source(37, 39) + SourceIndex(0) +1->Emitted(93, 5) Source(37, 38) + SourceIndex(0) +2 >Emitted(93, 46) Source(37, 39) + SourceIndex(0) +3 >Emitted(93, 47) Source(37, 39) + SourceIndex(0) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^ @@ -2447,9 +2449,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(93, 5) Source(37, 41) + SourceIndex(0) -2 >Emitted(93, 46) Source(37, 42) + SourceIndex(0) -3 >Emitted(93, 47) Source(37, 42) + SourceIndex(0) +1->Emitted(94, 5) Source(37, 41) + SourceIndex(0) +2 >Emitted(94, 46) Source(37, 42) + SourceIndex(0) +3 >Emitted(94, 47) Source(37, 42) + SourceIndex(0) --- >>>})(internalEnum || (internalEnum = {})); 1 > @@ -2466,13 +2468,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalEnum 7 > { a, b, c } -1 >Emitted(94, 1) Source(37, 43) + SourceIndex(0) -2 >Emitted(94, 2) Source(37, 44) + SourceIndex(0) -3 >Emitted(94, 4) Source(37, 20) + SourceIndex(0) -4 >Emitted(94, 16) Source(37, 32) + SourceIndex(0) -5 >Emitted(94, 21) Source(37, 20) + SourceIndex(0) -6 >Emitted(94, 33) Source(37, 32) + SourceIndex(0) -7 >Emitted(94, 41) Source(37, 44) + SourceIndex(0) +1 >Emitted(95, 1) Source(37, 43) + SourceIndex(0) +2 >Emitted(95, 2) Source(37, 44) + SourceIndex(0) +3 >Emitted(95, 4) Source(37, 20) + SourceIndex(0) +4 >Emitted(95, 16) Source(37, 32) + SourceIndex(0) +5 >Emitted(95, 21) Source(37, 20) + SourceIndex(0) +6 >Emitted(95, 33) Source(37, 32) + SourceIndex(0) +7 >Emitted(95, 41) Source(37, 44) + SourceIndex(0) --- ------------------------------------------------------------------- emittedFile:/src/2/second-output.js @@ -2482,13 +2484,13 @@ sourceFile:../second/second_part2.ts 1 > 2 >^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(95, 1) Source(1, 1) + SourceIndex(1) +1 >Emitted(96, 1) Source(1, 1) + SourceIndex(1) --- >>> function C() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(96, 5) Source(1, 1) + SourceIndex(1) +1->Emitted(97, 5) Source(1, 1) + SourceIndex(1) --- >>> } 1->^^^^ @@ -2500,8 +2502,8 @@ sourceFile:../second/second_part2.ts > } > 2 > } -1->Emitted(97, 5) Source(5, 1) + SourceIndex(1) -2 >Emitted(97, 6) Source(5, 2) + SourceIndex(1) +1->Emitted(98, 5) Source(5, 1) + SourceIndex(1) +2 >Emitted(98, 6) Source(5, 2) + SourceIndex(1) --- >>> C.prototype.doSomething = function () { 1->^^^^ @@ -2511,9 +2513,9 @@ sourceFile:../second/second_part2.ts 1-> 2 > doSomething 3 > -1->Emitted(98, 5) Source(2, 5) + SourceIndex(1) -2 >Emitted(98, 28) Source(2, 16) + SourceIndex(1) -3 >Emitted(98, 31) Source(2, 5) + SourceIndex(1) +1->Emitted(99, 5) Source(2, 5) + SourceIndex(1) +2 >Emitted(99, 28) Source(2, 16) + SourceIndex(1) +3 >Emitted(99, 31) Source(2, 5) + SourceIndex(1) --- >>> console.log("something got done"); 1->^^^^^^^^ @@ -2533,14 +2535,14 @@ sourceFile:../second/second_part2.ts 6 > "something got done" 7 > ) 8 > ; -1->Emitted(99, 9) Source(3, 9) + SourceIndex(1) -2 >Emitted(99, 16) Source(3, 16) + SourceIndex(1) -3 >Emitted(99, 17) Source(3, 17) + SourceIndex(1) -4 >Emitted(99, 20) Source(3, 20) + SourceIndex(1) -5 >Emitted(99, 21) Source(3, 21) + SourceIndex(1) -6 >Emitted(99, 41) Source(3, 41) + SourceIndex(1) -7 >Emitted(99, 42) Source(3, 42) + SourceIndex(1) -8 >Emitted(99, 43) Source(3, 43) + SourceIndex(1) +1->Emitted(100, 9) Source(3, 9) + SourceIndex(1) +2 >Emitted(100, 16) Source(3, 16) + SourceIndex(1) +3 >Emitted(100, 17) Source(3, 17) + SourceIndex(1) +4 >Emitted(100, 20) Source(3, 20) + SourceIndex(1) +5 >Emitted(100, 21) Source(3, 21) + SourceIndex(1) +6 >Emitted(100, 41) Source(3, 41) + SourceIndex(1) +7 >Emitted(100, 42) Source(3, 42) + SourceIndex(1) +8 >Emitted(100, 43) Source(3, 43) + SourceIndex(1) --- >>> }; 1 >^^^^ @@ -2549,8 +2551,8 @@ sourceFile:../second/second_part2.ts 1 > > 2 > } -1 >Emitted(100, 5) Source(4, 5) + SourceIndex(1) -2 >Emitted(100, 6) Source(4, 6) + SourceIndex(1) +1 >Emitted(101, 5) Source(4, 5) + SourceIndex(1) +2 >Emitted(101, 6) Source(4, 6) + SourceIndex(1) --- >>> return C; 1->^^^^ @@ -2558,8 +2560,8 @@ sourceFile:../second/second_part2.ts 1-> > 2 > } -1->Emitted(101, 5) Source(5, 1) + SourceIndex(1) -2 >Emitted(101, 13) Source(5, 2) + SourceIndex(1) +1->Emitted(102, 5) Source(5, 1) + SourceIndex(1) +2 >Emitted(102, 13) Source(5, 2) + SourceIndex(1) --- >>>}()); 1 > @@ -2575,10 +2577,10 @@ sourceFile:../second/second_part2.ts > console.log("something got done"); > } > } -1 >Emitted(102, 1) Source(5, 1) + SourceIndex(1) -2 >Emitted(102, 2) Source(5, 2) + SourceIndex(1) -3 >Emitted(102, 2) Source(1, 1) + SourceIndex(1) -4 >Emitted(102, 6) Source(5, 2) + SourceIndex(1) +1 >Emitted(103, 1) Source(5, 1) + SourceIndex(1) +2 >Emitted(103, 2) Source(5, 2) + SourceIndex(1) +3 >Emitted(103, 2) Source(1, 1) + SourceIndex(1) +4 >Emitted(103, 6) Source(5, 2) + SourceIndex(1) --- >>>//# sourceMappingURL=second-output.js.map @@ -2594,7 +2596,7 @@ sourceFile:../second/second_part2.ts "sections": [ { "pos": 0, - "end": 3417, + "end": 3465, "kind": "text" } ] @@ -2646,7 +2648,7 @@ sourceFile:../second/second_part2.ts ====================================================================== File:: /src/2/second-output.js ---------------------------------------------------------------------- -text: (0-3417) +text: (0-3465) var N; (function (N) { function f() { @@ -2657,8 +2659,9 @@ var N; var normalC = /** @class */ (function () { /*@internal*/ function normalC() { } - /*@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /*@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /*@internal*/ get: function () { return 10; }, /*@internal*/ set: function (val) { }, enumerable: false, @@ -3496,8 +3499,9 @@ var N; var normalC = /** @class */ (function () { /*@internal*/ function normalC() { } - /*@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /*@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /*@internal*/ get: function () { return 10; }, /*@internal*/ set: function (val) { }, enumerable: false, @@ -3593,7 +3597,7 @@ c.doSomething(); //# sourceMappingURL=third-output.js.map //// [/src/third/thirdjs/output/third-output.js.map] -{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} //// [/src/third/thirdjs/output/third-output.js.map.baseline.txt] =================================================================== @@ -3899,13 +3903,14 @@ sourceFile:../../../second/second_part1.ts >>> } 1 >^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 >constructor() { 2 > } 1 >Emitted(16, 5) Source(14, 35) + SourceIndex(3) 2 >Emitted(16, 6) Source(14, 36) + SourceIndex(3) --- ->>> /*@internal*/ normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> /*@internal*/ normalC_prototype.method = function () { }; 1->^^^^ 2 > ^^^^^^^^^^^^^ 3 > ^ @@ -3922,15 +3927,15 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > method() { 7 > } -1->Emitted(17, 5) Source(16, 5) + SourceIndex(3) -2 >Emitted(17, 18) Source(16, 18) + SourceIndex(3) -3 >Emitted(17, 19) Source(16, 19) + SourceIndex(3) -4 >Emitted(17, 43) Source(16, 25) + SourceIndex(3) -5 >Emitted(17, 46) Source(16, 19) + SourceIndex(3) -6 >Emitted(17, 60) Source(16, 30) + SourceIndex(3) -7 >Emitted(17, 61) Source(16, 31) + SourceIndex(3) ---- ->>> Object.defineProperty(normalC.prototype, "c", { +1->Emitted(18, 5) Source(16, 5) + SourceIndex(3) +2 >Emitted(18, 18) Source(16, 18) + SourceIndex(3) +3 >Emitted(18, 19) Source(16, 19) + SourceIndex(3) +4 >Emitted(18, 43) Source(16, 25) + SourceIndex(3) +5 >Emitted(18, 46) Source(16, 19) + SourceIndex(3) +6 >Emitted(18, 60) Source(16, 30) + SourceIndex(3) +7 >Emitted(18, 61) Source(16, 31) + SourceIndex(3) +--- +>>> Object.defineProperty(normalC_prototype, "c", { 1 >^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -3939,9 +3944,9 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ 2 > get 3 > c -1 >Emitted(18, 5) Source(17, 19) + SourceIndex(3) -2 >Emitted(18, 27) Source(17, 23) + SourceIndex(3) -3 >Emitted(18, 49) Source(17, 24) + SourceIndex(3) +1 >Emitted(19, 5) Source(17, 19) + SourceIndex(3) +2 >Emitted(19, 27) Source(17, 23) + SourceIndex(3) +3 >Emitted(19, 49) Source(17, 24) + SourceIndex(3) --- >>> /*@internal*/ get: function () { return 10; }, 1->^^^^^^^^ @@ -3962,15 +3967,15 @@ sourceFile:../../../second/second_part1.ts 7 > ; 8 > 9 > } -1->Emitted(19, 9) Source(17, 5) + SourceIndex(3) -2 >Emitted(19, 22) Source(17, 18) + SourceIndex(3) -3 >Emitted(19, 28) Source(17, 19) + SourceIndex(3) -4 >Emitted(19, 42) Source(17, 29) + SourceIndex(3) -5 >Emitted(19, 49) Source(17, 36) + SourceIndex(3) -6 >Emitted(19, 51) Source(17, 38) + SourceIndex(3) -7 >Emitted(19, 52) Source(17, 39) + SourceIndex(3) -8 >Emitted(19, 53) Source(17, 40) + SourceIndex(3) -9 >Emitted(19, 54) Source(17, 41) + SourceIndex(3) +1->Emitted(20, 9) Source(17, 5) + SourceIndex(3) +2 >Emitted(20, 22) Source(17, 18) + SourceIndex(3) +3 >Emitted(20, 28) Source(17, 19) + SourceIndex(3) +4 >Emitted(20, 42) Source(17, 29) + SourceIndex(3) +5 >Emitted(20, 49) Source(17, 36) + SourceIndex(3) +6 >Emitted(20, 51) Source(17, 38) + SourceIndex(3) +7 >Emitted(20, 52) Source(17, 39) + SourceIndex(3) +8 >Emitted(20, 53) Source(17, 40) + SourceIndex(3) +9 >Emitted(20, 54) Source(17, 41) + SourceIndex(3) --- >>> /*@internal*/ set: function (val) { }, 1 >^^^^^^^^ @@ -3988,13 +3993,13 @@ sourceFile:../../../second/second_part1.ts 5 > val: number 6 > ) { 7 > } -1 >Emitted(20, 9) Source(18, 5) + SourceIndex(3) -2 >Emitted(20, 22) Source(18, 18) + SourceIndex(3) -3 >Emitted(20, 28) Source(18, 19) + SourceIndex(3) -4 >Emitted(20, 38) Source(18, 25) + SourceIndex(3) -5 >Emitted(20, 41) Source(18, 36) + SourceIndex(3) -6 >Emitted(20, 45) Source(18, 40) + SourceIndex(3) -7 >Emitted(20, 46) Source(18, 41) + SourceIndex(3) +1 >Emitted(21, 9) Source(18, 5) + SourceIndex(3) +2 >Emitted(21, 22) Source(18, 18) + SourceIndex(3) +3 >Emitted(21, 28) Source(18, 19) + SourceIndex(3) +4 >Emitted(21, 38) Source(18, 25) + SourceIndex(3) +5 >Emitted(21, 41) Source(18, 36) + SourceIndex(3) +6 >Emitted(21, 45) Source(18, 40) + SourceIndex(3) +7 >Emitted(21, 46) Source(18, 41) + SourceIndex(3) --- >>> enumerable: false, >>> configurable: true @@ -4002,7 +4007,7 @@ sourceFile:../../../second/second_part1.ts 1 >^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(23, 8) Source(17, 41) + SourceIndex(3) +1 >Emitted(24, 8) Source(17, 41) + SourceIndex(3) --- >>> return normalC; 1->^^^^ @@ -4011,8 +4016,8 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ set c(val: number) { } > 2 > } -1->Emitted(24, 5) Source(19, 1) + SourceIndex(3) -2 >Emitted(24, 19) Source(19, 2) + SourceIndex(3) +1->Emitted(25, 5) Source(19, 1) + SourceIndex(3) +2 >Emitted(25, 19) Source(19, 2) + SourceIndex(3) --- >>>}()); 1 > @@ -4030,10 +4035,10 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ get c() { return 10; } > /*@internal*/ set c(val: number) { } > } -1 >Emitted(25, 1) Source(19, 1) + SourceIndex(3) -2 >Emitted(25, 2) Source(19, 2) + SourceIndex(3) -3 >Emitted(25, 2) Source(13, 1) + SourceIndex(3) -4 >Emitted(25, 6) Source(19, 2) + SourceIndex(3) +1 >Emitted(26, 1) Source(19, 1) + SourceIndex(3) +2 >Emitted(26, 2) Source(19, 2) + SourceIndex(3) +3 >Emitted(26, 2) Source(13, 1) + SourceIndex(3) +4 >Emitted(26, 6) Source(19, 2) + SourceIndex(3) --- >>>var normalN; 1-> @@ -4055,10 +4060,10 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1->Emitted(26, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(26, 5) Source(20, 11) + SourceIndex(3) -3 >Emitted(26, 12) Source(20, 18) + SourceIndex(3) -4 >Emitted(26, 13) Source(29, 2) + SourceIndex(3) +1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(27, 5) Source(20, 11) + SourceIndex(3) +3 >Emitted(27, 12) Source(20, 18) + SourceIndex(3) +4 >Emitted(27, 13) Source(29, 2) + SourceIndex(3) --- >>>(function (normalN) { 1-> @@ -4068,9 +4073,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > normalN -1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(27, 12) Source(20, 11) + SourceIndex(3) -3 >Emitted(27, 19) Source(20, 18) + SourceIndex(3) +1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(28, 12) Source(20, 11) + SourceIndex(3) +3 >Emitted(28, 19) Source(20, 18) + SourceIndex(3) --- >>> /*@internal*/ var C = /** @class */ (function () { 1->^^^^ @@ -4081,15 +4086,15 @@ sourceFile:../../../second/second_part1.ts > 2 > /*@internal*/ 3 > -1->Emitted(28, 5) Source(21, 5) + SourceIndex(3) -2 >Emitted(28, 18) Source(21, 18) + SourceIndex(3) -3 >Emitted(28, 19) Source(21, 19) + SourceIndex(3) +1->Emitted(29, 5) Source(21, 5) + SourceIndex(3) +2 >Emitted(29, 18) Source(21, 18) + SourceIndex(3) +3 >Emitted(29, 19) Source(21, 19) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(29, 9) Source(21, 19) + SourceIndex(3) +1->Emitted(30, 9) Source(21, 19) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -4097,16 +4102,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(30, 9) Source(21, 36) + SourceIndex(3) -2 >Emitted(30, 10) Source(21, 37) + SourceIndex(3) +1->Emitted(31, 9) Source(21, 36) + SourceIndex(3) +2 >Emitted(31, 10) Source(21, 37) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(31, 9) Source(21, 36) + SourceIndex(3) -2 >Emitted(31, 17) Source(21, 37) + SourceIndex(3) +1->Emitted(32, 9) Source(21, 36) + SourceIndex(3) +2 >Emitted(32, 17) Source(21, 37) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -4118,10 +4123,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(32, 5) Source(21, 36) + SourceIndex(3) -2 >Emitted(32, 6) Source(21, 37) + SourceIndex(3) -3 >Emitted(32, 6) Source(21, 19) + SourceIndex(3) -4 >Emitted(32, 10) Source(21, 37) + SourceIndex(3) +1 >Emitted(33, 5) Source(21, 36) + SourceIndex(3) +2 >Emitted(33, 6) Source(21, 37) + SourceIndex(3) +3 >Emitted(33, 6) Source(21, 19) + SourceIndex(3) +4 >Emitted(33, 10) Source(21, 37) + SourceIndex(3) --- >>> normalN.C = C; 1->^^^^ @@ -4133,10 +4138,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > { } 4 > -1->Emitted(33, 5) Source(21, 32) + SourceIndex(3) -2 >Emitted(33, 14) Source(21, 33) + SourceIndex(3) -3 >Emitted(33, 18) Source(21, 37) + SourceIndex(3) -4 >Emitted(33, 19) Source(21, 37) + SourceIndex(3) +1->Emitted(34, 5) Source(21, 32) + SourceIndex(3) +2 >Emitted(34, 14) Source(21, 33) + SourceIndex(3) +3 >Emitted(34, 18) Source(21, 37) + SourceIndex(3) +4 >Emitted(34, 19) Source(21, 37) + SourceIndex(3) --- >>> /*@internal*/ function foo() { } 1->^^^^ @@ -4154,13 +4159,13 @@ sourceFile:../../../second/second_part1.ts 5 > foo 6 > () { 7 > } -1->Emitted(34, 5) Source(22, 5) + SourceIndex(3) -2 >Emitted(34, 18) Source(22, 18) + SourceIndex(3) -3 >Emitted(34, 19) Source(22, 19) + SourceIndex(3) -4 >Emitted(34, 28) Source(22, 35) + SourceIndex(3) -5 >Emitted(34, 31) Source(22, 38) + SourceIndex(3) -6 >Emitted(34, 36) Source(22, 42) + SourceIndex(3) -7 >Emitted(34, 37) Source(22, 43) + SourceIndex(3) +1->Emitted(35, 5) Source(22, 5) + SourceIndex(3) +2 >Emitted(35, 18) Source(22, 18) + SourceIndex(3) +3 >Emitted(35, 19) Source(22, 19) + SourceIndex(3) +4 >Emitted(35, 28) Source(22, 35) + SourceIndex(3) +5 >Emitted(35, 31) Source(22, 38) + SourceIndex(3) +6 >Emitted(35, 36) Source(22, 42) + SourceIndex(3) +7 >Emitted(35, 37) Source(22, 43) + SourceIndex(3) --- >>> normalN.foo = foo; 1 >^^^^ @@ -4172,10 +4177,10 @@ sourceFile:../../../second/second_part1.ts 2 > foo 3 > () {} 4 > -1 >Emitted(35, 5) Source(22, 35) + SourceIndex(3) -2 >Emitted(35, 16) Source(22, 38) + SourceIndex(3) -3 >Emitted(35, 22) Source(22, 43) + SourceIndex(3) -4 >Emitted(35, 23) Source(22, 43) + SourceIndex(3) +1 >Emitted(36, 5) Source(22, 35) + SourceIndex(3) +2 >Emitted(36, 16) Source(22, 38) + SourceIndex(3) +3 >Emitted(36, 22) Source(22, 43) + SourceIndex(3) +4 >Emitted(36, 23) Source(22, 43) + SourceIndex(3) --- >>> /*@internal*/ var someNamespace; 1->^^^^ @@ -4191,12 +4196,12 @@ sourceFile:../../../second/second_part1.ts 4 > export namespace 5 > someNamespace 6 > { export class C {} } -1->Emitted(36, 5) Source(23, 5) + SourceIndex(3) -2 >Emitted(36, 18) Source(23, 18) + SourceIndex(3) -3 >Emitted(36, 19) Source(23, 19) + SourceIndex(3) -4 >Emitted(36, 23) Source(23, 36) + SourceIndex(3) -5 >Emitted(36, 36) Source(23, 49) + SourceIndex(3) -6 >Emitted(36, 37) Source(23, 71) + SourceIndex(3) +1->Emitted(37, 5) Source(23, 5) + SourceIndex(3) +2 >Emitted(37, 18) Source(23, 18) + SourceIndex(3) +3 >Emitted(37, 19) Source(23, 19) + SourceIndex(3) +4 >Emitted(37, 23) Source(23, 36) + SourceIndex(3) +5 >Emitted(37, 36) Source(23, 49) + SourceIndex(3) +6 >Emitted(37, 37) Source(23, 71) + SourceIndex(3) --- >>> (function (someNamespace) { 1 >^^^^ @@ -4206,21 +4211,21 @@ sourceFile:../../../second/second_part1.ts 1 > 2 > export namespace 3 > someNamespace -1 >Emitted(37, 5) Source(23, 19) + SourceIndex(3) -2 >Emitted(37, 16) Source(23, 36) + SourceIndex(3) -3 >Emitted(37, 29) Source(23, 49) + SourceIndex(3) +1 >Emitted(38, 5) Source(23, 19) + SourceIndex(3) +2 >Emitted(38, 16) Source(23, 36) + SourceIndex(3) +3 >Emitted(38, 29) Source(23, 49) + SourceIndex(3) --- >>> var C = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(38, 9) Source(23, 52) + SourceIndex(3) +1->Emitted(39, 9) Source(23, 52) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(39, 13) Source(23, 52) + SourceIndex(3) +1->Emitted(40, 13) Source(23, 52) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -4228,16 +4233,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(40, 13) Source(23, 68) + SourceIndex(3) -2 >Emitted(40, 14) Source(23, 69) + SourceIndex(3) +1->Emitted(41, 13) Source(23, 68) + SourceIndex(3) +2 >Emitted(41, 14) Source(23, 69) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(41, 13) Source(23, 68) + SourceIndex(3) -2 >Emitted(41, 21) Source(23, 69) + SourceIndex(3) +1->Emitted(42, 13) Source(23, 68) + SourceIndex(3) +2 >Emitted(42, 21) Source(23, 69) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -4249,10 +4254,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(42, 9) Source(23, 68) + SourceIndex(3) -2 >Emitted(42, 10) Source(23, 69) + SourceIndex(3) -3 >Emitted(42, 10) Source(23, 52) + SourceIndex(3) -4 >Emitted(42, 14) Source(23, 69) + SourceIndex(3) +1 >Emitted(43, 9) Source(23, 68) + SourceIndex(3) +2 >Emitted(43, 10) Source(23, 69) + SourceIndex(3) +3 >Emitted(43, 10) Source(23, 52) + SourceIndex(3) +4 >Emitted(43, 14) Source(23, 69) + SourceIndex(3) --- >>> someNamespace.C = C; 1->^^^^^^^^ @@ -4264,10 +4269,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > {} 4 > -1->Emitted(43, 9) Source(23, 65) + SourceIndex(3) -2 >Emitted(43, 24) Source(23, 66) + SourceIndex(3) -3 >Emitted(43, 28) Source(23, 69) + SourceIndex(3) -4 >Emitted(43, 29) Source(23, 69) + SourceIndex(3) +1->Emitted(44, 9) Source(23, 65) + SourceIndex(3) +2 >Emitted(44, 24) Source(23, 66) + SourceIndex(3) +3 >Emitted(44, 28) Source(23, 69) + SourceIndex(3) +4 >Emitted(44, 29) Source(23, 69) + SourceIndex(3) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^ @@ -4288,15 +4293,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(44, 5) Source(23, 70) + SourceIndex(3) -2 >Emitted(44, 6) Source(23, 71) + SourceIndex(3) -3 >Emitted(44, 8) Source(23, 36) + SourceIndex(3) -4 >Emitted(44, 21) Source(23, 49) + SourceIndex(3) -5 >Emitted(44, 24) Source(23, 36) + SourceIndex(3) -6 >Emitted(44, 45) Source(23, 49) + SourceIndex(3) -7 >Emitted(44, 50) Source(23, 36) + SourceIndex(3) -8 >Emitted(44, 71) Source(23, 49) + SourceIndex(3) -9 >Emitted(44, 79) Source(23, 71) + SourceIndex(3) +1->Emitted(45, 5) Source(23, 70) + SourceIndex(3) +2 >Emitted(45, 6) Source(23, 71) + SourceIndex(3) +3 >Emitted(45, 8) Source(23, 36) + SourceIndex(3) +4 >Emitted(45, 21) Source(23, 49) + SourceIndex(3) +5 >Emitted(45, 24) Source(23, 36) + SourceIndex(3) +6 >Emitted(45, 45) Source(23, 49) + SourceIndex(3) +7 >Emitted(45, 50) Source(23, 36) + SourceIndex(3) +8 >Emitted(45, 71) Source(23, 49) + SourceIndex(3) +9 >Emitted(45, 79) Source(23, 71) + SourceIndex(3) --- >>> /*@internal*/ var someOther; 1 >^^^^ @@ -4312,12 +4317,12 @@ sourceFile:../../../second/second_part1.ts 4 > export namespace 5 > someOther 6 > .something { export class someClass {} } -1 >Emitted(45, 5) Source(24, 5) + SourceIndex(3) -2 >Emitted(45, 18) Source(24, 18) + SourceIndex(3) -3 >Emitted(45, 19) Source(24, 19) + SourceIndex(3) -4 >Emitted(45, 23) Source(24, 36) + SourceIndex(3) -5 >Emitted(45, 32) Source(24, 45) + SourceIndex(3) -6 >Emitted(45, 33) Source(24, 85) + SourceIndex(3) +1 >Emitted(46, 5) Source(24, 5) + SourceIndex(3) +2 >Emitted(46, 18) Source(24, 18) + SourceIndex(3) +3 >Emitted(46, 19) Source(24, 19) + SourceIndex(3) +4 >Emitted(46, 23) Source(24, 36) + SourceIndex(3) +5 >Emitted(46, 32) Source(24, 45) + SourceIndex(3) +6 >Emitted(46, 33) Source(24, 85) + SourceIndex(3) --- >>> (function (someOther) { 1 >^^^^ @@ -4326,9 +4331,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 > export namespace 3 > someOther -1 >Emitted(46, 5) Source(24, 19) + SourceIndex(3) -2 >Emitted(46, 16) Source(24, 36) + SourceIndex(3) -3 >Emitted(46, 25) Source(24, 45) + SourceIndex(3) +1 >Emitted(47, 5) Source(24, 19) + SourceIndex(3) +2 >Emitted(47, 16) Source(24, 36) + SourceIndex(3) +3 >Emitted(47, 25) Source(24, 45) + SourceIndex(3) --- >>> var something; 1 >^^^^^^^^ @@ -4340,10 +4345,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(47, 9) Source(24, 46) + SourceIndex(3) -2 >Emitted(47, 13) Source(24, 46) + SourceIndex(3) -3 >Emitted(47, 22) Source(24, 55) + SourceIndex(3) -4 >Emitted(47, 23) Source(24, 85) + SourceIndex(3) +1 >Emitted(48, 9) Source(24, 46) + SourceIndex(3) +2 >Emitted(48, 13) Source(24, 46) + SourceIndex(3) +3 >Emitted(48, 22) Source(24, 55) + SourceIndex(3) +4 >Emitted(48, 23) Source(24, 85) + SourceIndex(3) --- >>> (function (something) { 1->^^^^^^^^ @@ -4353,21 +4358,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(48, 9) Source(24, 46) + SourceIndex(3) -2 >Emitted(48, 20) Source(24, 46) + SourceIndex(3) -3 >Emitted(48, 29) Source(24, 55) + SourceIndex(3) +1->Emitted(49, 9) Source(24, 46) + SourceIndex(3) +2 >Emitted(49, 20) Source(24, 46) + SourceIndex(3) +3 >Emitted(49, 29) Source(24, 55) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(49, 13) Source(24, 58) + SourceIndex(3) +1->Emitted(50, 13) Source(24, 58) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(50, 17) Source(24, 58) + SourceIndex(3) +1->Emitted(51, 17) Source(24, 58) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -4375,16 +4380,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(51, 17) Source(24, 82) + SourceIndex(3) -2 >Emitted(51, 18) Source(24, 83) + SourceIndex(3) +1->Emitted(52, 17) Source(24, 82) + SourceIndex(3) +2 >Emitted(52, 18) Source(24, 83) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(52, 17) Source(24, 82) + SourceIndex(3) -2 >Emitted(52, 33) Source(24, 83) + SourceIndex(3) +1->Emitted(53, 17) Source(24, 82) + SourceIndex(3) +2 >Emitted(53, 33) Source(24, 83) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -4396,10 +4401,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(53, 13) Source(24, 82) + SourceIndex(3) -2 >Emitted(53, 14) Source(24, 83) + SourceIndex(3) -3 >Emitted(53, 14) Source(24, 58) + SourceIndex(3) -4 >Emitted(53, 18) Source(24, 83) + SourceIndex(3) +1 >Emitted(54, 13) Source(24, 82) + SourceIndex(3) +2 >Emitted(54, 14) Source(24, 83) + SourceIndex(3) +3 >Emitted(54, 14) Source(24, 58) + SourceIndex(3) +4 >Emitted(54, 18) Source(24, 83) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -4411,10 +4416,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(54, 13) Source(24, 71) + SourceIndex(3) -2 >Emitted(54, 32) Source(24, 80) + SourceIndex(3) -3 >Emitted(54, 44) Source(24, 83) + SourceIndex(3) -4 >Emitted(54, 45) Source(24, 83) + SourceIndex(3) +1->Emitted(55, 13) Source(24, 71) + SourceIndex(3) +2 >Emitted(55, 32) Source(24, 80) + SourceIndex(3) +3 >Emitted(55, 44) Source(24, 83) + SourceIndex(3) +4 >Emitted(55, 45) Source(24, 83) + SourceIndex(3) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^ @@ -4435,15 +4440,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(55, 9) Source(24, 84) + SourceIndex(3) -2 >Emitted(55, 10) Source(24, 85) + SourceIndex(3) -3 >Emitted(55, 12) Source(24, 46) + SourceIndex(3) -4 >Emitted(55, 21) Source(24, 55) + SourceIndex(3) -5 >Emitted(55, 24) Source(24, 46) + SourceIndex(3) -6 >Emitted(55, 43) Source(24, 55) + SourceIndex(3) -7 >Emitted(55, 48) Source(24, 46) + SourceIndex(3) -8 >Emitted(55, 67) Source(24, 55) + SourceIndex(3) -9 >Emitted(55, 75) Source(24, 85) + SourceIndex(3) +1->Emitted(56, 9) Source(24, 84) + SourceIndex(3) +2 >Emitted(56, 10) Source(24, 85) + SourceIndex(3) +3 >Emitted(56, 12) Source(24, 46) + SourceIndex(3) +4 >Emitted(56, 21) Source(24, 55) + SourceIndex(3) +5 >Emitted(56, 24) Source(24, 46) + SourceIndex(3) +6 >Emitted(56, 43) Source(24, 55) + SourceIndex(3) +7 >Emitted(56, 48) Source(24, 46) + SourceIndex(3) +8 >Emitted(56, 67) Source(24, 55) + SourceIndex(3) +9 >Emitted(56, 75) Source(24, 85) + SourceIndex(3) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^ @@ -4464,15 +4469,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(56, 5) Source(24, 84) + SourceIndex(3) -2 >Emitted(56, 6) Source(24, 85) + SourceIndex(3) -3 >Emitted(56, 8) Source(24, 36) + SourceIndex(3) -4 >Emitted(56, 17) Source(24, 45) + SourceIndex(3) -5 >Emitted(56, 20) Source(24, 36) + SourceIndex(3) -6 >Emitted(56, 37) Source(24, 45) + SourceIndex(3) -7 >Emitted(56, 42) Source(24, 36) + SourceIndex(3) -8 >Emitted(56, 59) Source(24, 45) + SourceIndex(3) -9 >Emitted(56, 67) Source(24, 85) + SourceIndex(3) +1 >Emitted(57, 5) Source(24, 84) + SourceIndex(3) +2 >Emitted(57, 6) Source(24, 85) + SourceIndex(3) +3 >Emitted(57, 8) Source(24, 36) + SourceIndex(3) +4 >Emitted(57, 17) Source(24, 45) + SourceIndex(3) +5 >Emitted(57, 20) Source(24, 36) + SourceIndex(3) +6 >Emitted(57, 37) Source(24, 45) + SourceIndex(3) +7 >Emitted(57, 42) Source(24, 36) + SourceIndex(3) +8 >Emitted(57, 59) Source(24, 45) + SourceIndex(3) +9 >Emitted(57, 67) Source(24, 85) + SourceIndex(3) --- >>> /*@internal*/ normalN.someImport = someNamespace.C; 1 >^^^^ @@ -4494,15 +4499,15 @@ sourceFile:../../../second/second_part1.ts 7 > . 8 > C 9 > ; -1 >Emitted(57, 5) Source(25, 5) + SourceIndex(3) -2 >Emitted(57, 18) Source(25, 18) + SourceIndex(3) -3 >Emitted(57, 19) Source(25, 33) + SourceIndex(3) -4 >Emitted(57, 37) Source(25, 43) + SourceIndex(3) -5 >Emitted(57, 40) Source(25, 46) + SourceIndex(3) -6 >Emitted(57, 53) Source(25, 59) + SourceIndex(3) -7 >Emitted(57, 54) Source(25, 60) + SourceIndex(3) -8 >Emitted(57, 55) Source(25, 61) + SourceIndex(3) -9 >Emitted(57, 56) Source(25, 62) + SourceIndex(3) +1 >Emitted(58, 5) Source(25, 5) + SourceIndex(3) +2 >Emitted(58, 18) Source(25, 18) + SourceIndex(3) +3 >Emitted(58, 19) Source(25, 33) + SourceIndex(3) +4 >Emitted(58, 37) Source(25, 43) + SourceIndex(3) +5 >Emitted(58, 40) Source(25, 46) + SourceIndex(3) +6 >Emitted(58, 53) Source(25, 59) + SourceIndex(3) +7 >Emitted(58, 54) Source(25, 60) + SourceIndex(3) +8 >Emitted(58, 55) Source(25, 61) + SourceIndex(3) +9 >Emitted(58, 56) Source(25, 62) + SourceIndex(3) --- >>> /*@internal*/ normalN.internalConst = 10; 1 >^^^^ @@ -4521,13 +4526,13 @@ sourceFile:../../../second/second_part1.ts 5 > = 6 > 10 7 > ; -1 >Emitted(58, 5) Source(27, 5) + SourceIndex(3) -2 >Emitted(58, 18) Source(27, 18) + SourceIndex(3) -3 >Emitted(58, 19) Source(27, 32) + SourceIndex(3) -4 >Emitted(58, 40) Source(27, 45) + SourceIndex(3) -5 >Emitted(58, 43) Source(27, 48) + SourceIndex(3) -6 >Emitted(58, 45) Source(27, 50) + SourceIndex(3) -7 >Emitted(58, 46) Source(27, 51) + SourceIndex(3) +1 >Emitted(59, 5) Source(27, 5) + SourceIndex(3) +2 >Emitted(59, 18) Source(27, 18) + SourceIndex(3) +3 >Emitted(59, 19) Source(27, 32) + SourceIndex(3) +4 >Emitted(59, 40) Source(27, 45) + SourceIndex(3) +5 >Emitted(59, 43) Source(27, 48) + SourceIndex(3) +6 >Emitted(59, 45) Source(27, 50) + SourceIndex(3) +7 >Emitted(59, 46) Source(27, 51) + SourceIndex(3) --- >>> /*@internal*/ var internalEnum; 1 >^^^^ @@ -4541,11 +4546,11 @@ sourceFile:../../../second/second_part1.ts 3 > 4 > export enum 5 > internalEnum { a, b, c } -1 >Emitted(59, 5) Source(28, 5) + SourceIndex(3) -2 >Emitted(59, 18) Source(28, 18) + SourceIndex(3) -3 >Emitted(59, 19) Source(28, 19) + SourceIndex(3) -4 >Emitted(59, 23) Source(28, 31) + SourceIndex(3) -5 >Emitted(59, 35) Source(28, 55) + SourceIndex(3) +1 >Emitted(60, 5) Source(28, 5) + SourceIndex(3) +2 >Emitted(60, 18) Source(28, 18) + SourceIndex(3) +3 >Emitted(60, 19) Source(28, 19) + SourceIndex(3) +4 >Emitted(60, 23) Source(28, 31) + SourceIndex(3) +5 >Emitted(60, 35) Source(28, 55) + SourceIndex(3) --- >>> (function (internalEnum) { 1 >^^^^ @@ -4555,9 +4560,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 > export enum 3 > internalEnum -1 >Emitted(60, 5) Source(28, 19) + SourceIndex(3) -2 >Emitted(60, 16) Source(28, 31) + SourceIndex(3) -3 >Emitted(60, 28) Source(28, 43) + SourceIndex(3) +1 >Emitted(61, 5) Source(28, 19) + SourceIndex(3) +2 >Emitted(61, 16) Source(28, 31) + SourceIndex(3) +3 >Emitted(61, 28) Source(28, 43) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -4567,9 +4572,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(61, 9) Source(28, 46) + SourceIndex(3) -2 >Emitted(61, 50) Source(28, 47) + SourceIndex(3) -3 >Emitted(61, 51) Source(28, 47) + SourceIndex(3) +1->Emitted(62, 9) Source(28, 46) + SourceIndex(3) +2 >Emitted(62, 50) Source(28, 47) + SourceIndex(3) +3 >Emitted(62, 51) Source(28, 47) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -4579,9 +4584,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(62, 9) Source(28, 49) + SourceIndex(3) -2 >Emitted(62, 50) Source(28, 50) + SourceIndex(3) -3 >Emitted(62, 51) Source(28, 50) + SourceIndex(3) +1->Emitted(63, 9) Source(28, 49) + SourceIndex(3) +2 >Emitted(63, 50) Source(28, 50) + SourceIndex(3) +3 >Emitted(63, 51) Source(28, 50) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -4591,9 +4596,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(63, 9) Source(28, 52) + SourceIndex(3) -2 >Emitted(63, 50) Source(28, 53) + SourceIndex(3) -3 >Emitted(63, 51) Source(28, 53) + SourceIndex(3) +1->Emitted(64, 9) Source(28, 52) + SourceIndex(3) +2 >Emitted(64, 50) Source(28, 53) + SourceIndex(3) +3 >Emitted(64, 51) Source(28, 53) + SourceIndex(3) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^ @@ -4614,15 +4619,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(64, 5) Source(28, 54) + SourceIndex(3) -2 >Emitted(64, 6) Source(28, 55) + SourceIndex(3) -3 >Emitted(64, 8) Source(28, 31) + SourceIndex(3) -4 >Emitted(64, 20) Source(28, 43) + SourceIndex(3) -5 >Emitted(64, 23) Source(28, 31) + SourceIndex(3) -6 >Emitted(64, 43) Source(28, 43) + SourceIndex(3) -7 >Emitted(64, 48) Source(28, 31) + SourceIndex(3) -8 >Emitted(64, 68) Source(28, 43) + SourceIndex(3) -9 >Emitted(64, 76) Source(28, 55) + SourceIndex(3) +1->Emitted(65, 5) Source(28, 54) + SourceIndex(3) +2 >Emitted(65, 6) Source(28, 55) + SourceIndex(3) +3 >Emitted(65, 8) Source(28, 31) + SourceIndex(3) +4 >Emitted(65, 20) Source(28, 43) + SourceIndex(3) +5 >Emitted(65, 23) Source(28, 31) + SourceIndex(3) +6 >Emitted(65, 43) Source(28, 43) + SourceIndex(3) +7 >Emitted(65, 48) Source(28, 31) + SourceIndex(3) +8 >Emitted(65, 68) Source(28, 43) + SourceIndex(3) +9 >Emitted(65, 76) Source(28, 55) + SourceIndex(3) --- >>>})(normalN || (normalN = {})); 1 > @@ -4650,13 +4655,13 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(65, 1) Source(29, 1) + SourceIndex(3) -2 >Emitted(65, 2) Source(29, 2) + SourceIndex(3) -3 >Emitted(65, 4) Source(20, 11) + SourceIndex(3) -4 >Emitted(65, 11) Source(20, 18) + SourceIndex(3) -5 >Emitted(65, 16) Source(20, 11) + SourceIndex(3) -6 >Emitted(65, 23) Source(20, 18) + SourceIndex(3) -7 >Emitted(65, 31) Source(29, 2) + SourceIndex(3) +1 >Emitted(66, 1) Source(29, 1) + SourceIndex(3) +2 >Emitted(66, 2) Source(29, 2) + SourceIndex(3) +3 >Emitted(66, 4) Source(20, 11) + SourceIndex(3) +4 >Emitted(66, 11) Source(20, 18) + SourceIndex(3) +5 >Emitted(66, 16) Source(20, 11) + SourceIndex(3) +6 >Emitted(66, 23) Source(20, 18) + SourceIndex(3) +7 >Emitted(66, 31) Source(29, 2) + SourceIndex(3) --- >>>/*@internal*/ var internalC = /** @class */ (function () { 1-> @@ -4667,15 +4672,15 @@ sourceFile:../../../second/second_part1.ts > 2 >/*@internal*/ 3 > -1->Emitted(66, 1) Source(30, 1) + SourceIndex(3) -2 >Emitted(66, 14) Source(30, 14) + SourceIndex(3) -3 >Emitted(66, 15) Source(30, 15) + SourceIndex(3) +1->Emitted(67, 1) Source(30, 1) + SourceIndex(3) +2 >Emitted(67, 14) Source(30, 14) + SourceIndex(3) +3 >Emitted(67, 15) Source(30, 15) + SourceIndex(3) --- >>> function internalC() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(67, 5) Source(30, 15) + SourceIndex(3) +1->Emitted(68, 5) Source(30, 15) + SourceIndex(3) --- >>> } 1->^^^^ @@ -4683,16 +4688,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->class internalC { 2 > } -1->Emitted(68, 5) Source(30, 32) + SourceIndex(3) -2 >Emitted(68, 6) Source(30, 33) + SourceIndex(3) +1->Emitted(69, 5) Source(30, 32) + SourceIndex(3) +2 >Emitted(69, 6) Source(30, 33) + SourceIndex(3) --- >>> return internalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(69, 5) Source(30, 32) + SourceIndex(3) -2 >Emitted(69, 21) Source(30, 33) + SourceIndex(3) +1->Emitted(70, 5) Source(30, 32) + SourceIndex(3) +2 >Emitted(70, 21) Source(30, 33) + SourceIndex(3) --- >>>}()); 1 > @@ -4704,10 +4709,10 @@ sourceFile:../../../second/second_part1.ts 2 >} 3 > 4 > class internalC {} -1 >Emitted(70, 1) Source(30, 32) + SourceIndex(3) -2 >Emitted(70, 2) Source(30, 33) + SourceIndex(3) -3 >Emitted(70, 2) Source(30, 15) + SourceIndex(3) -4 >Emitted(70, 6) Source(30, 33) + SourceIndex(3) +1 >Emitted(71, 1) Source(30, 32) + SourceIndex(3) +2 >Emitted(71, 2) Source(30, 33) + SourceIndex(3) +3 >Emitted(71, 2) Source(30, 15) + SourceIndex(3) +4 >Emitted(71, 6) Source(30, 33) + SourceIndex(3) --- >>>/*@internal*/ function internalfoo() { } 1-> @@ -4725,13 +4730,13 @@ sourceFile:../../../second/second_part1.ts 5 > internalfoo 6 > () { 7 > } -1->Emitted(71, 1) Source(31, 1) + SourceIndex(3) -2 >Emitted(71, 14) Source(31, 14) + SourceIndex(3) -3 >Emitted(71, 15) Source(31, 15) + SourceIndex(3) -4 >Emitted(71, 24) Source(31, 24) + SourceIndex(3) -5 >Emitted(71, 35) Source(31, 35) + SourceIndex(3) -6 >Emitted(71, 40) Source(31, 39) + SourceIndex(3) -7 >Emitted(71, 41) Source(31, 40) + SourceIndex(3) +1->Emitted(72, 1) Source(31, 1) + SourceIndex(3) +2 >Emitted(72, 14) Source(31, 14) + SourceIndex(3) +3 >Emitted(72, 15) Source(31, 15) + SourceIndex(3) +4 >Emitted(72, 24) Source(31, 24) + SourceIndex(3) +5 >Emitted(72, 35) Source(31, 35) + SourceIndex(3) +6 >Emitted(72, 40) Source(31, 39) + SourceIndex(3) +7 >Emitted(72, 41) Source(31, 40) + SourceIndex(3) --- >>>/*@internal*/ var internalNamespace; 1 > @@ -4747,12 +4752,12 @@ sourceFile:../../../second/second_part1.ts 4 > namespace 5 > internalNamespace 6 > { export class someClass {} } -1 >Emitted(72, 1) Source(32, 1) + SourceIndex(3) -2 >Emitted(72, 14) Source(32, 14) + SourceIndex(3) -3 >Emitted(72, 15) Source(32, 15) + SourceIndex(3) -4 >Emitted(72, 19) Source(32, 25) + SourceIndex(3) -5 >Emitted(72, 36) Source(32, 42) + SourceIndex(3) -6 >Emitted(72, 37) Source(32, 72) + SourceIndex(3) +1 >Emitted(73, 1) Source(32, 1) + SourceIndex(3) +2 >Emitted(73, 14) Source(32, 14) + SourceIndex(3) +3 >Emitted(73, 15) Source(32, 15) + SourceIndex(3) +4 >Emitted(73, 19) Source(32, 25) + SourceIndex(3) +5 >Emitted(73, 36) Source(32, 42) + SourceIndex(3) +6 >Emitted(73, 37) Source(32, 72) + SourceIndex(3) --- >>>(function (internalNamespace) { 1 > @@ -4762,21 +4767,21 @@ sourceFile:../../../second/second_part1.ts 1 > 2 >namespace 3 > internalNamespace -1 >Emitted(73, 1) Source(32, 15) + SourceIndex(3) -2 >Emitted(73, 12) Source(32, 25) + SourceIndex(3) -3 >Emitted(73, 29) Source(32, 42) + SourceIndex(3) +1 >Emitted(74, 1) Source(32, 15) + SourceIndex(3) +2 >Emitted(74, 12) Source(32, 25) + SourceIndex(3) +3 >Emitted(74, 29) Source(32, 42) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(74, 5) Source(32, 45) + SourceIndex(3) +1->Emitted(75, 5) Source(32, 45) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(75, 9) Source(32, 45) + SourceIndex(3) +1->Emitted(76, 9) Source(32, 45) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -4784,16 +4789,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(76, 9) Source(32, 69) + SourceIndex(3) -2 >Emitted(76, 10) Source(32, 70) + SourceIndex(3) +1->Emitted(77, 9) Source(32, 69) + SourceIndex(3) +2 >Emitted(77, 10) Source(32, 70) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(77, 9) Source(32, 69) + SourceIndex(3) -2 >Emitted(77, 25) Source(32, 70) + SourceIndex(3) +1->Emitted(78, 9) Source(32, 69) + SourceIndex(3) +2 >Emitted(78, 25) Source(32, 70) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -4805,10 +4810,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(78, 5) Source(32, 69) + SourceIndex(3) -2 >Emitted(78, 6) Source(32, 70) + SourceIndex(3) -3 >Emitted(78, 6) Source(32, 45) + SourceIndex(3) -4 >Emitted(78, 10) Source(32, 70) + SourceIndex(3) +1 >Emitted(79, 5) Source(32, 69) + SourceIndex(3) +2 >Emitted(79, 6) Source(32, 70) + SourceIndex(3) +3 >Emitted(79, 6) Source(32, 45) + SourceIndex(3) +4 >Emitted(79, 10) Source(32, 70) + SourceIndex(3) --- >>> internalNamespace.someClass = someClass; 1->^^^^ @@ -4820,10 +4825,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(79, 5) Source(32, 58) + SourceIndex(3) -2 >Emitted(79, 32) Source(32, 67) + SourceIndex(3) -3 >Emitted(79, 44) Source(32, 70) + SourceIndex(3) -4 >Emitted(79, 45) Source(32, 70) + SourceIndex(3) +1->Emitted(80, 5) Source(32, 58) + SourceIndex(3) +2 >Emitted(80, 32) Source(32, 67) + SourceIndex(3) +3 >Emitted(80, 44) Source(32, 70) + SourceIndex(3) +4 >Emitted(80, 45) Source(32, 70) + SourceIndex(3) --- >>>})(internalNamespace || (internalNamespace = {})); 1-> @@ -4840,13 +4845,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalNamespace 7 > { export class someClass {} } -1->Emitted(80, 1) Source(32, 71) + SourceIndex(3) -2 >Emitted(80, 2) Source(32, 72) + SourceIndex(3) -3 >Emitted(80, 4) Source(32, 25) + SourceIndex(3) -4 >Emitted(80, 21) Source(32, 42) + SourceIndex(3) -5 >Emitted(80, 26) Source(32, 25) + SourceIndex(3) -6 >Emitted(80, 43) Source(32, 42) + SourceIndex(3) -7 >Emitted(80, 51) Source(32, 72) + SourceIndex(3) +1->Emitted(81, 1) Source(32, 71) + SourceIndex(3) +2 >Emitted(81, 2) Source(32, 72) + SourceIndex(3) +3 >Emitted(81, 4) Source(32, 25) + SourceIndex(3) +4 >Emitted(81, 21) Source(32, 42) + SourceIndex(3) +5 >Emitted(81, 26) Source(32, 25) + SourceIndex(3) +6 >Emitted(81, 43) Source(32, 42) + SourceIndex(3) +7 >Emitted(81, 51) Source(32, 72) + SourceIndex(3) --- >>>/*@internal*/ var internalOther; 1 > @@ -4862,12 +4867,12 @@ sourceFile:../../../second/second_part1.ts 4 > namespace 5 > internalOther 6 > .something { export class someClass {} } -1 >Emitted(81, 1) Source(33, 1) + SourceIndex(3) -2 >Emitted(81, 14) Source(33, 14) + SourceIndex(3) -3 >Emitted(81, 15) Source(33, 15) + SourceIndex(3) -4 >Emitted(81, 19) Source(33, 25) + SourceIndex(3) -5 >Emitted(81, 32) Source(33, 38) + SourceIndex(3) -6 >Emitted(81, 33) Source(33, 78) + SourceIndex(3) +1 >Emitted(82, 1) Source(33, 1) + SourceIndex(3) +2 >Emitted(82, 14) Source(33, 14) + SourceIndex(3) +3 >Emitted(82, 15) Source(33, 15) + SourceIndex(3) +4 >Emitted(82, 19) Source(33, 25) + SourceIndex(3) +5 >Emitted(82, 32) Source(33, 38) + SourceIndex(3) +6 >Emitted(82, 33) Source(33, 78) + SourceIndex(3) --- >>>(function (internalOther) { 1 > @@ -4876,9 +4881,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 >namespace 3 > internalOther -1 >Emitted(82, 1) Source(33, 15) + SourceIndex(3) -2 >Emitted(82, 12) Source(33, 25) + SourceIndex(3) -3 >Emitted(82, 25) Source(33, 38) + SourceIndex(3) +1 >Emitted(83, 1) Source(33, 15) + SourceIndex(3) +2 >Emitted(83, 12) Source(33, 25) + SourceIndex(3) +3 >Emitted(83, 25) Source(33, 38) + SourceIndex(3) --- >>> var something; 1 >^^^^ @@ -4890,10 +4895,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(83, 5) Source(33, 39) + SourceIndex(3) -2 >Emitted(83, 9) Source(33, 39) + SourceIndex(3) -3 >Emitted(83, 18) Source(33, 48) + SourceIndex(3) -4 >Emitted(83, 19) Source(33, 78) + SourceIndex(3) +1 >Emitted(84, 5) Source(33, 39) + SourceIndex(3) +2 >Emitted(84, 9) Source(33, 39) + SourceIndex(3) +3 >Emitted(84, 18) Source(33, 48) + SourceIndex(3) +4 >Emitted(84, 19) Source(33, 78) + SourceIndex(3) --- >>> (function (something) { 1->^^^^ @@ -4903,21 +4908,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(84, 5) Source(33, 39) + SourceIndex(3) -2 >Emitted(84, 16) Source(33, 39) + SourceIndex(3) -3 >Emitted(84, 25) Source(33, 48) + SourceIndex(3) +1->Emitted(85, 5) Source(33, 39) + SourceIndex(3) +2 >Emitted(85, 16) Source(33, 39) + SourceIndex(3) +3 >Emitted(85, 25) Source(33, 48) + SourceIndex(3) --- >>> var someClass = /** @class */ (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(85, 9) Source(33, 51) + SourceIndex(3) +1->Emitted(86, 9) Source(33, 51) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(86, 13) Source(33, 51) + SourceIndex(3) +1->Emitted(87, 13) Source(33, 51) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -4925,16 +4930,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(87, 13) Source(33, 75) + SourceIndex(3) -2 >Emitted(87, 14) Source(33, 76) + SourceIndex(3) +1->Emitted(88, 13) Source(33, 75) + SourceIndex(3) +2 >Emitted(88, 14) Source(33, 76) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(88, 13) Source(33, 75) + SourceIndex(3) -2 >Emitted(88, 29) Source(33, 76) + SourceIndex(3) +1->Emitted(89, 13) Source(33, 75) + SourceIndex(3) +2 >Emitted(89, 29) Source(33, 76) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -4946,10 +4951,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(89, 9) Source(33, 75) + SourceIndex(3) -2 >Emitted(89, 10) Source(33, 76) + SourceIndex(3) -3 >Emitted(89, 10) Source(33, 51) + SourceIndex(3) -4 >Emitted(89, 14) Source(33, 76) + SourceIndex(3) +1 >Emitted(90, 9) Source(33, 75) + SourceIndex(3) +2 >Emitted(90, 10) Source(33, 76) + SourceIndex(3) +3 >Emitted(90, 10) Source(33, 51) + SourceIndex(3) +4 >Emitted(90, 14) Source(33, 76) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^ @@ -4961,10 +4966,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(90, 9) Source(33, 64) + SourceIndex(3) -2 >Emitted(90, 28) Source(33, 73) + SourceIndex(3) -3 >Emitted(90, 40) Source(33, 76) + SourceIndex(3) -4 >Emitted(90, 41) Source(33, 76) + SourceIndex(3) +1->Emitted(91, 9) Source(33, 64) + SourceIndex(3) +2 >Emitted(91, 28) Source(33, 73) + SourceIndex(3) +3 >Emitted(91, 40) Source(33, 76) + SourceIndex(3) +4 >Emitted(91, 41) Source(33, 76) + SourceIndex(3) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^ @@ -4985,15 +4990,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(91, 5) Source(33, 77) + SourceIndex(3) -2 >Emitted(91, 6) Source(33, 78) + SourceIndex(3) -3 >Emitted(91, 8) Source(33, 39) + SourceIndex(3) -4 >Emitted(91, 17) Source(33, 48) + SourceIndex(3) -5 >Emitted(91, 20) Source(33, 39) + SourceIndex(3) -6 >Emitted(91, 43) Source(33, 48) + SourceIndex(3) -7 >Emitted(91, 48) Source(33, 39) + SourceIndex(3) -8 >Emitted(91, 71) Source(33, 48) + SourceIndex(3) -9 >Emitted(91, 79) Source(33, 78) + SourceIndex(3) +1->Emitted(92, 5) Source(33, 77) + SourceIndex(3) +2 >Emitted(92, 6) Source(33, 78) + SourceIndex(3) +3 >Emitted(92, 8) Source(33, 39) + SourceIndex(3) +4 >Emitted(92, 17) Source(33, 48) + SourceIndex(3) +5 >Emitted(92, 20) Source(33, 39) + SourceIndex(3) +6 >Emitted(92, 43) Source(33, 48) + SourceIndex(3) +7 >Emitted(92, 48) Source(33, 39) + SourceIndex(3) +8 >Emitted(92, 71) Source(33, 48) + SourceIndex(3) +9 >Emitted(92, 79) Source(33, 78) + SourceIndex(3) --- >>>})(internalOther || (internalOther = {})); 1 > @@ -5011,13 +5016,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalOther 7 > .something { export class someClass {} } -1 >Emitted(92, 1) Source(33, 77) + SourceIndex(3) -2 >Emitted(92, 2) Source(33, 78) + SourceIndex(3) -3 >Emitted(92, 4) Source(33, 25) + SourceIndex(3) -4 >Emitted(92, 17) Source(33, 38) + SourceIndex(3) -5 >Emitted(92, 22) Source(33, 25) + SourceIndex(3) -6 >Emitted(92, 35) Source(33, 38) + SourceIndex(3) -7 >Emitted(92, 43) Source(33, 78) + SourceIndex(3) +1 >Emitted(93, 1) Source(33, 77) + SourceIndex(3) +2 >Emitted(93, 2) Source(33, 78) + SourceIndex(3) +3 >Emitted(93, 4) Source(33, 25) + SourceIndex(3) +4 >Emitted(93, 17) Source(33, 38) + SourceIndex(3) +5 >Emitted(93, 22) Source(33, 25) + SourceIndex(3) +6 >Emitted(93, 35) Source(33, 38) + SourceIndex(3) +7 >Emitted(93, 43) Source(33, 78) + SourceIndex(3) --- >>>/*@internal*/ var internalImport = internalNamespace.someClass; 1-> @@ -5041,16 +5046,16 @@ sourceFile:../../../second/second_part1.ts 8 > . 9 > someClass 10> ; -1->Emitted(93, 1) Source(34, 1) + SourceIndex(3) -2 >Emitted(93, 14) Source(34, 14) + SourceIndex(3) -3 >Emitted(93, 15) Source(34, 15) + SourceIndex(3) -4 >Emitted(93, 19) Source(34, 22) + SourceIndex(3) -5 >Emitted(93, 33) Source(34, 36) + SourceIndex(3) -6 >Emitted(93, 36) Source(34, 39) + SourceIndex(3) -7 >Emitted(93, 53) Source(34, 56) + SourceIndex(3) -8 >Emitted(93, 54) Source(34, 57) + SourceIndex(3) -9 >Emitted(93, 63) Source(34, 66) + SourceIndex(3) -10>Emitted(93, 64) Source(34, 67) + SourceIndex(3) +1->Emitted(94, 1) Source(34, 1) + SourceIndex(3) +2 >Emitted(94, 14) Source(34, 14) + SourceIndex(3) +3 >Emitted(94, 15) Source(34, 15) + SourceIndex(3) +4 >Emitted(94, 19) Source(34, 22) + SourceIndex(3) +5 >Emitted(94, 33) Source(34, 36) + SourceIndex(3) +6 >Emitted(94, 36) Source(34, 39) + SourceIndex(3) +7 >Emitted(94, 53) Source(34, 56) + SourceIndex(3) +8 >Emitted(94, 54) Source(34, 57) + SourceIndex(3) +9 >Emitted(94, 63) Source(34, 66) + SourceIndex(3) +10>Emitted(94, 64) Source(34, 67) + SourceIndex(3) --- >>>/*@internal*/ var internalConst = 10; 1 > @@ -5071,14 +5076,14 @@ sourceFile:../../../second/second_part1.ts 6 > = 7 > 10 8 > ; -1 >Emitted(94, 1) Source(36, 1) + SourceIndex(3) -2 >Emitted(94, 14) Source(36, 14) + SourceIndex(3) -3 >Emitted(94, 15) Source(36, 15) + SourceIndex(3) -4 >Emitted(94, 19) Source(36, 21) + SourceIndex(3) -5 >Emitted(94, 32) Source(36, 34) + SourceIndex(3) -6 >Emitted(94, 35) Source(36, 37) + SourceIndex(3) -7 >Emitted(94, 37) Source(36, 39) + SourceIndex(3) -8 >Emitted(94, 38) Source(36, 40) + SourceIndex(3) +1 >Emitted(95, 1) Source(36, 1) + SourceIndex(3) +2 >Emitted(95, 14) Source(36, 14) + SourceIndex(3) +3 >Emitted(95, 15) Source(36, 15) + SourceIndex(3) +4 >Emitted(95, 19) Source(36, 21) + SourceIndex(3) +5 >Emitted(95, 32) Source(36, 34) + SourceIndex(3) +6 >Emitted(95, 35) Source(36, 37) + SourceIndex(3) +7 >Emitted(95, 37) Source(36, 39) + SourceIndex(3) +8 >Emitted(95, 38) Source(36, 40) + SourceIndex(3) --- >>>/*@internal*/ var internalEnum; 1 > @@ -5092,11 +5097,11 @@ sourceFile:../../../second/second_part1.ts 3 > 4 > enum 5 > internalEnum { a, b, c } -1 >Emitted(95, 1) Source(37, 1) + SourceIndex(3) -2 >Emitted(95, 14) Source(37, 14) + SourceIndex(3) -3 >Emitted(95, 15) Source(37, 15) + SourceIndex(3) -4 >Emitted(95, 19) Source(37, 20) + SourceIndex(3) -5 >Emitted(95, 31) Source(37, 44) + SourceIndex(3) +1 >Emitted(96, 1) Source(37, 1) + SourceIndex(3) +2 >Emitted(96, 14) Source(37, 14) + SourceIndex(3) +3 >Emitted(96, 15) Source(37, 15) + SourceIndex(3) +4 >Emitted(96, 19) Source(37, 20) + SourceIndex(3) +5 >Emitted(96, 31) Source(37, 44) + SourceIndex(3) --- >>>(function (internalEnum) { 1 > @@ -5106,9 +5111,9 @@ sourceFile:../../../second/second_part1.ts 1 > 2 >enum 3 > internalEnum -1 >Emitted(96, 1) Source(37, 15) + SourceIndex(3) -2 >Emitted(96, 12) Source(37, 20) + SourceIndex(3) -3 >Emitted(96, 24) Source(37, 32) + SourceIndex(3) +1 >Emitted(97, 1) Source(37, 15) + SourceIndex(3) +2 >Emitted(97, 12) Source(37, 20) + SourceIndex(3) +3 >Emitted(97, 24) Source(37, 32) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^ @@ -5118,9 +5123,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(97, 5) Source(37, 35) + SourceIndex(3) -2 >Emitted(97, 46) Source(37, 36) + SourceIndex(3) -3 >Emitted(97, 47) Source(37, 36) + SourceIndex(3) +1->Emitted(98, 5) Source(37, 35) + SourceIndex(3) +2 >Emitted(98, 46) Source(37, 36) + SourceIndex(3) +3 >Emitted(98, 47) Source(37, 36) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^ @@ -5130,9 +5135,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(98, 5) Source(37, 38) + SourceIndex(3) -2 >Emitted(98, 46) Source(37, 39) + SourceIndex(3) -3 >Emitted(98, 47) Source(37, 39) + SourceIndex(3) +1->Emitted(99, 5) Source(37, 38) + SourceIndex(3) +2 >Emitted(99, 46) Source(37, 39) + SourceIndex(3) +3 >Emitted(99, 47) Source(37, 39) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^ @@ -5141,9 +5146,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(99, 5) Source(37, 41) + SourceIndex(3) -2 >Emitted(99, 46) Source(37, 42) + SourceIndex(3) -3 >Emitted(99, 47) Source(37, 42) + SourceIndex(3) +1->Emitted(100, 5) Source(37, 41) + SourceIndex(3) +2 >Emitted(100, 46) Source(37, 42) + SourceIndex(3) +3 >Emitted(100, 47) Source(37, 42) + SourceIndex(3) --- >>>})(internalEnum || (internalEnum = {})); 1 > @@ -5160,13 +5165,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalEnum 7 > { a, b, c } -1 >Emitted(100, 1) Source(37, 43) + SourceIndex(3) -2 >Emitted(100, 2) Source(37, 44) + SourceIndex(3) -3 >Emitted(100, 4) Source(37, 20) + SourceIndex(3) -4 >Emitted(100, 16) Source(37, 32) + SourceIndex(3) -5 >Emitted(100, 21) Source(37, 20) + SourceIndex(3) -6 >Emitted(100, 33) Source(37, 32) + SourceIndex(3) -7 >Emitted(100, 41) Source(37, 44) + SourceIndex(3) +1 >Emitted(101, 1) Source(37, 43) + SourceIndex(3) +2 >Emitted(101, 2) Source(37, 44) + SourceIndex(3) +3 >Emitted(101, 4) Source(37, 20) + SourceIndex(3) +4 >Emitted(101, 16) Source(37, 32) + SourceIndex(3) +5 >Emitted(101, 21) Source(37, 20) + SourceIndex(3) +6 >Emitted(101, 33) Source(37, 32) + SourceIndex(3) +7 >Emitted(101, 41) Source(37, 44) + SourceIndex(3) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -5176,13 +5181,13 @@ sourceFile:../../../second/second_part2.ts 1 > 2 >^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(101, 1) Source(1, 1) + SourceIndex(4) +1 >Emitted(102, 1) Source(1, 1) + SourceIndex(4) --- >>> function C() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(102, 5) Source(1, 1) + SourceIndex(4) +1->Emitted(103, 5) Source(1, 1) + SourceIndex(4) --- >>> } 1->^^^^ @@ -5194,8 +5199,8 @@ sourceFile:../../../second/second_part2.ts > } > 2 > } -1->Emitted(103, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(103, 6) Source(5, 2) + SourceIndex(4) +1->Emitted(104, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(104, 6) Source(5, 2) + SourceIndex(4) --- >>> C.prototype.doSomething = function () { 1->^^^^ @@ -5205,9 +5210,9 @@ sourceFile:../../../second/second_part2.ts 1-> 2 > doSomething 3 > -1->Emitted(104, 5) Source(2, 5) + SourceIndex(4) -2 >Emitted(104, 28) Source(2, 16) + SourceIndex(4) -3 >Emitted(104, 31) Source(2, 5) + SourceIndex(4) +1->Emitted(105, 5) Source(2, 5) + SourceIndex(4) +2 >Emitted(105, 28) Source(2, 16) + SourceIndex(4) +3 >Emitted(105, 31) Source(2, 5) + SourceIndex(4) --- >>> console.log("something got done"); 1->^^^^^^^^ @@ -5227,14 +5232,14 @@ sourceFile:../../../second/second_part2.ts 6 > "something got done" 7 > ) 8 > ; -1->Emitted(105, 9) Source(3, 9) + SourceIndex(4) -2 >Emitted(105, 16) Source(3, 16) + SourceIndex(4) -3 >Emitted(105, 17) Source(3, 17) + SourceIndex(4) -4 >Emitted(105, 20) Source(3, 20) + SourceIndex(4) -5 >Emitted(105, 21) Source(3, 21) + SourceIndex(4) -6 >Emitted(105, 41) Source(3, 41) + SourceIndex(4) -7 >Emitted(105, 42) Source(3, 42) + SourceIndex(4) -8 >Emitted(105, 43) Source(3, 43) + SourceIndex(4) +1->Emitted(106, 9) Source(3, 9) + SourceIndex(4) +2 >Emitted(106, 16) Source(3, 16) + SourceIndex(4) +3 >Emitted(106, 17) Source(3, 17) + SourceIndex(4) +4 >Emitted(106, 20) Source(3, 20) + SourceIndex(4) +5 >Emitted(106, 21) Source(3, 21) + SourceIndex(4) +6 >Emitted(106, 41) Source(3, 41) + SourceIndex(4) +7 >Emitted(106, 42) Source(3, 42) + SourceIndex(4) +8 >Emitted(106, 43) Source(3, 43) + SourceIndex(4) --- >>> }; 1 >^^^^ @@ -5243,8 +5248,8 @@ sourceFile:../../../second/second_part2.ts 1 > > 2 > } -1 >Emitted(106, 5) Source(4, 5) + SourceIndex(4) -2 >Emitted(106, 6) Source(4, 6) + SourceIndex(4) +1 >Emitted(107, 5) Source(4, 5) + SourceIndex(4) +2 >Emitted(107, 6) Source(4, 6) + SourceIndex(4) --- >>> return C; 1->^^^^ @@ -5252,8 +5257,8 @@ sourceFile:../../../second/second_part2.ts 1-> > 2 > } -1->Emitted(107, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(107, 13) Source(5, 2) + SourceIndex(4) +1->Emitted(108, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(108, 13) Source(5, 2) + SourceIndex(4) --- >>>}()); 1 > @@ -5269,10 +5274,10 @@ sourceFile:../../../second/second_part2.ts > console.log("something got done"); > } > } -1 >Emitted(108, 1) Source(5, 1) + SourceIndex(4) -2 >Emitted(108, 2) Source(5, 2) + SourceIndex(4) -3 >Emitted(108, 2) Source(1, 1) + SourceIndex(4) -4 >Emitted(108, 6) Source(5, 2) + SourceIndex(4) +1 >Emitted(109, 1) Source(5, 1) + SourceIndex(4) +2 >Emitted(109, 2) Source(5, 2) + SourceIndex(4) +3 >Emitted(109, 2) Source(1, 1) + SourceIndex(4) +4 >Emitted(109, 6) Source(5, 2) + SourceIndex(4) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -5296,14 +5301,14 @@ sourceFile:../../third_part1.ts 6 > C 7 > () 8 > ; -1->Emitted(109, 1) Source(1, 1) + SourceIndex(5) -2 >Emitted(109, 5) Source(1, 5) + SourceIndex(5) -3 >Emitted(109, 6) Source(1, 6) + SourceIndex(5) -4 >Emitted(109, 9) Source(1, 9) + SourceIndex(5) -5 >Emitted(109, 13) Source(1, 13) + SourceIndex(5) -6 >Emitted(109, 14) Source(1, 14) + SourceIndex(5) -7 >Emitted(109, 16) Source(1, 16) + SourceIndex(5) -8 >Emitted(109, 17) Source(1, 17) + SourceIndex(5) +1->Emitted(110, 1) Source(1, 1) + SourceIndex(5) +2 >Emitted(110, 5) Source(1, 5) + SourceIndex(5) +3 >Emitted(110, 6) Source(1, 6) + SourceIndex(5) +4 >Emitted(110, 9) Source(1, 9) + SourceIndex(5) +5 >Emitted(110, 13) Source(1, 13) + SourceIndex(5) +6 >Emitted(110, 14) Source(1, 14) + SourceIndex(5) +7 >Emitted(110, 16) Source(1, 16) + SourceIndex(5) +8 >Emitted(110, 17) Source(1, 17) + SourceIndex(5) --- >>>c.doSomething(); 1-> @@ -5320,12 +5325,12 @@ sourceFile:../../third_part1.ts 4 > doSomething 5 > () 6 > ; -1->Emitted(110, 1) Source(2, 1) + SourceIndex(5) -2 >Emitted(110, 2) Source(2, 2) + SourceIndex(5) -3 >Emitted(110, 3) Source(2, 3) + SourceIndex(5) -4 >Emitted(110, 14) Source(2, 14) + SourceIndex(5) -5 >Emitted(110, 16) Source(2, 16) + SourceIndex(5) -6 >Emitted(110, 17) Source(2, 17) + SourceIndex(5) +1->Emitted(111, 1) Source(2, 1) + SourceIndex(5) +2 >Emitted(111, 2) Source(2, 2) + SourceIndex(5) +3 >Emitted(111, 3) Source(2, 3) + SourceIndex(5) +4 >Emitted(111, 14) Source(2, 14) + SourceIndex(5) +5 >Emitted(111, 16) Source(2, 16) + SourceIndex(5) +6 >Emitted(111, 17) Source(2, 17) + SourceIndex(5) --- >>>//# sourceMappingURL=third-output.js.map @@ -5353,20 +5358,20 @@ sourceFile:../../third_part1.ts }, { "pos": 110, - "end": 3527, + "end": 3575, "kind": "prepend", "data": "../../../2/second-output.js", "texts": [ { "pos": 110, - "end": 3527, + "end": 3575, "kind": "text" } ] }, { - "pos": 3527, - "end": 3563, + "pos": 3575, + "end": 3611, "kind": "text" } ] @@ -5425,9 +5430,9 @@ function f() { } ---------------------------------------------------------------------- -prepend: (110-3527):: ../../../2/second-output.js texts:: 1 +prepend: (110-3575):: ../../../2/second-output.js texts:: 1 >>-------------------------------------------------------------------- -text: (110-3527) +text: (110-3575) var N; (function (N) { function f() { @@ -5438,8 +5443,9 @@ var N; var normalC = /** @class */ (function () { /*@internal*/ function normalC() { } - /*@internal*/ normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + /*@internal*/ normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { /*@internal*/ get: function () { return 10; }, /*@internal*/ set: function (val) { }, enumerable: false, @@ -5532,7 +5538,7 @@ var C = /** @class */ (function () { }()); ---------------------------------------------------------------------- -text: (3527-3563) +text: (3575-3611) var c = new C(); c.doSomething(); diff --git a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal.js b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal.js index 908424fc5fee1..32e5253c5171b 100644 --- a/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal.js +++ b/tests/baselines/reference/tsbuild/outfile-concat/initial-build/stripInternal.js @@ -959,8 +959,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -1054,7 +1055,7 @@ var C = (function () { //# sourceMappingURL=second-output.js.map //// [/src/2/second-output.js.map] -{"version":3,"file":"second-output.js","sourceRoot":"","sources":["../second/second_part1.ts","../second/second_part2.ts"],"names":[],"mappings":"AAIA,IAAU,CAAC,CAMV;AAND,WAAU,CAAC;IACP,SAAS,CAAC;QACN,OAAO,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;IAC3B,CAAC;IAED,CAAC,EAAE,CAAC;AACR,CAAC,EANS,CAAC,KAAD,CAAC,QAMV;AAED;IACkB;IAAgB,CAAC;IAEjB,wBAAM,GAAN,cAAW,CAAC;IACZ,sBAAI,sBAAC;aAAL,cAAU,OAAO,EAAE,CAAC,CAAC,CAAC;aACtB,UAAM,GAAW,IAAI,CAAC;;;OADA;IAExC,cAAC;AAAD,CAAC,AAND,IAMC;AACD,IAAU,OAAO,CAShB;AATD,WAAU,OAAO;IACC;QAAA;QAAiB,CAAC;QAAD,QAAC;IAAD,CAAC,AAAlB,IAAkB;IAAL,SAAC,IAAI,CAAA;IAClB,SAAgB,GAAG,KAAI,CAAC;IAAR,WAAG,MAAK,CAAA;IACxB,IAAiB,aAAa,CAAsB;IAApD,WAAiB,aAAa;QAAG;YAAA;YAAgB,CAAC;YAAD,QAAC;QAAD,CAAC,AAAjB,IAAiB;QAAJ,eAAC,IAAG,CAAA;IAAC,CAAC,EAAnC,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAAsB;IACpD,IAAiB,SAAS,CAAwC;IAAlE,WAAiB,SAAS;QAAC,IAAA,SAAS,CAA8B;QAAvC,WAAA,SAAS;YAAG;gBAAA;gBAAwB,CAAC;gBAAD,gBAAC;YAAD,CAAC,AAAzB,IAAyB;YAAZ,mBAAS,YAAG,CAAA;QAAC,CAAC,EAAvC,SAAS,GAAT,mBAAS,KAAT,mBAAS,QAA8B;IAAD,CAAC,EAAjD,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAAwC;IACpD,kBAAU,GAAG,aAAa,CAAC,CAAC,CAAC;IAE9B,qBAAa,GAAG,EAAE,CAAC;IAChC,IAAY,YAAwB;IAApC,WAAY,YAAY;QAAG,yCAAC,CAAA;QAAE,yCAAC,CAAA;QAAE,yCAAC,CAAA;IAAC,CAAC,EAAxB,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAAY;AACtD,CAAC,EATS,OAAO,KAAP,OAAO,QAShB;AACa;IAAA;IAAiB,CAAC;IAAD,gBAAC;AAAD,CAAC,AAAlB,IAAkB;AAClB,SAAS,WAAW,KAAI,CAAC;AACzB,IAAU,iBAAiB,CAA8B;AAAzD,WAAU,iBAAiB;IAAG;QAAA;QAAwB,CAAC;QAAD,gBAAC;IAAD,CAAC,AAAzB,IAAyB;IAAZ,2BAAS,YAAG,CAAA;AAAC,CAAC,EAA/C,iBAAiB,KAAjB,iBAAiB,QAA8B;AACzD,IAAU,aAAa,CAAwC;AAA/D,WAAU,aAAa;IAAC,IAAA,SAAS,CAA8B;IAAvC,WAAA,SAAS;QAAG;YAAA;YAAwB,CAAC;YAAD,gBAAC;QAAD,CAAC,AAAzB,IAAyB;QAAZ,mBAAS,YAAG,CAAA;IAAC,CAAC,EAAvC,SAAS,GAAT,uBAAS,KAAT,uBAAS,QAA8B;AAAD,CAAC,EAArD,aAAa,KAAb,aAAa,QAAwC;AAC/D,IAAO,cAAc,GAAG,iBAAiB,CAAC,SAAS,CAAC;AAEpD,IAAM,aAAa,GAAG,EAAE,CAAC;AACzB,IAAK,YAAwB;AAA7B,WAAK,YAAY;IAAG,yCAAC,CAAA;IAAE,yCAAC,CAAA;IAAE,yCAAC,CAAA;AAAC,CAAC,EAAxB,YAAY,KAAZ,YAAY,QAAY;ACpC3C;IAAA;IAIA,CAAC;IAHG,uBAAW,GAAX;QACI,OAAO,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAC;IACtC,CAAC;IACL,QAAC;AAAD,CAAC,AAJD,IAIC"} +{"version":3,"file":"second-output.js","sourceRoot":"","sources":["../second/second_part1.ts","../second/second_part2.ts"],"names":[],"mappings":"AAIA,IAAU,CAAC,CAMV;AAND,WAAU,CAAC;IACP,SAAS,CAAC;QACN,OAAO,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;IAC3B,CAAC;IAED,CAAC,EAAE,CAAC;AACR,CAAC,EANS,CAAC,KAAD,CAAC,QAMV;AAED;IACkB;IAAgB,CAAC;;IAEjB,wBAAM,GAAN,cAAW,CAAC;IACZ,sBAAI,sBAAC;aAAL,cAAU,OAAO,EAAE,CAAC,CAAC,CAAC;aACtB,UAAM,GAAW,IAAI,CAAC;;;OADA;IAExC,cAAC;AAAD,CAAC,AAND,IAMC;AACD,IAAU,OAAO,CAShB;AATD,WAAU,OAAO;IACC;QAAA;QAAiB,CAAC;QAAD,QAAC;IAAD,CAAC,AAAlB,IAAkB;IAAL,SAAC,IAAI,CAAA;IAClB,SAAgB,GAAG,KAAI,CAAC;IAAR,WAAG,MAAK,CAAA;IACxB,IAAiB,aAAa,CAAsB;IAApD,WAAiB,aAAa;QAAG;YAAA;YAAgB,CAAC;YAAD,QAAC;QAAD,CAAC,AAAjB,IAAiB;QAAJ,eAAC,IAAG,CAAA;IAAC,CAAC,EAAnC,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAAsB;IACpD,IAAiB,SAAS,CAAwC;IAAlE,WAAiB,SAAS;QAAC,IAAA,SAAS,CAA8B;QAAvC,WAAA,SAAS;YAAG;gBAAA;gBAAwB,CAAC;gBAAD,gBAAC;YAAD,CAAC,AAAzB,IAAyB;YAAZ,mBAAS,YAAG,CAAA;QAAC,CAAC,EAAvC,SAAS,GAAT,mBAAS,KAAT,mBAAS,QAA8B;IAAD,CAAC,EAAjD,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAAwC;IACpD,kBAAU,GAAG,aAAa,CAAC,CAAC,CAAC;IAE9B,qBAAa,GAAG,EAAE,CAAC;IAChC,IAAY,YAAwB;IAApC,WAAY,YAAY;QAAG,yCAAC,CAAA;QAAE,yCAAC,CAAA;QAAE,yCAAC,CAAA;IAAC,CAAC,EAAxB,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAAY;AACtD,CAAC,EATS,OAAO,KAAP,OAAO,QAShB;AACa;IAAA;IAAiB,CAAC;IAAD,gBAAC;AAAD,CAAC,AAAlB,IAAkB;AAClB,SAAS,WAAW,KAAI,CAAC;AACzB,IAAU,iBAAiB,CAA8B;AAAzD,WAAU,iBAAiB;IAAG;QAAA;QAAwB,CAAC;QAAD,gBAAC;IAAD,CAAC,AAAzB,IAAyB;IAAZ,2BAAS,YAAG,CAAA;AAAC,CAAC,EAA/C,iBAAiB,KAAjB,iBAAiB,QAA8B;AACzD,IAAU,aAAa,CAAwC;AAA/D,WAAU,aAAa;IAAC,IAAA,SAAS,CAA8B;IAAvC,WAAA,SAAS;QAAG;YAAA;YAAwB,CAAC;YAAD,gBAAC;QAAD,CAAC,AAAzB,IAAyB;QAAZ,mBAAS,YAAG,CAAA;IAAC,CAAC,EAAvC,SAAS,GAAT,uBAAS,KAAT,uBAAS,QAA8B;AAAD,CAAC,EAArD,aAAa,KAAb,aAAa,QAAwC;AAC/D,IAAO,cAAc,GAAG,iBAAiB,CAAC,SAAS,CAAC;AAEpD,IAAM,aAAa,GAAG,EAAE,CAAC;AACzB,IAAK,YAAwB;AAA7B,WAAK,YAAY;IAAG,yCAAC,CAAA;IAAE,yCAAC,CAAA;IAAE,yCAAC,CAAA;AAAC,CAAC,EAAxB,YAAY,KAAZ,YAAY,QAAY;ACpC3C;IAAA;IAIA,CAAC;IAHG,uBAAW,GAAX;QACI,OAAO,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAC;IACtC,CAAC;IACL,QAAC;AAAD,CAAC,AAJD,IAIC"} //// [/src/2/second-output.js.map.baseline.txt] =================================================================== @@ -1220,13 +1221,14 @@ sourceFile:../second/second_part1.ts >>> } 1->^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1->constructor() { 2 > } 1->Emitted(10, 5) Source(14, 35) + SourceIndex(0) 2 >Emitted(10, 6) Source(14, 36) + SourceIndex(0) --- ->>> normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> normalC_prototype.method = function () { }; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^ @@ -1240,13 +1242,13 @@ sourceFile:../second/second_part1.ts 3 > 4 > method() { 5 > } -1->Emitted(11, 5) Source(16, 19) + SourceIndex(0) -2 >Emitted(11, 29) Source(16, 25) + SourceIndex(0) -3 >Emitted(11, 32) Source(16, 19) + SourceIndex(0) -4 >Emitted(11, 46) Source(16, 30) + SourceIndex(0) -5 >Emitted(11, 47) Source(16, 31) + SourceIndex(0) +1->Emitted(12, 5) Source(16, 19) + SourceIndex(0) +2 >Emitted(12, 29) Source(16, 25) + SourceIndex(0) +3 >Emitted(12, 32) Source(16, 19) + SourceIndex(0) +4 >Emitted(12, 46) Source(16, 30) + SourceIndex(0) +5 >Emitted(12, 47) Source(16, 31) + SourceIndex(0) --- ->>> Object.defineProperty(normalC.prototype, "c", { +>>> Object.defineProperty(normalC_prototype, "c", { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -1254,9 +1256,9 @@ sourceFile:../second/second_part1.ts > /*@internal*/ 2 > get 3 > c -1->Emitted(12, 5) Source(17, 19) + SourceIndex(0) -2 >Emitted(12, 27) Source(17, 23) + SourceIndex(0) -3 >Emitted(12, 49) Source(17, 24) + SourceIndex(0) +1->Emitted(13, 5) Source(17, 19) + SourceIndex(0) +2 >Emitted(13, 27) Source(17, 23) + SourceIndex(0) +3 >Emitted(13, 49) Source(17, 24) + SourceIndex(0) --- >>> get: function () { return 10; }, 1 >^^^^^^^^^^^^^ @@ -1273,13 +1275,13 @@ sourceFile:../second/second_part1.ts 5 > ; 6 > 7 > } -1 >Emitted(13, 14) Source(17, 19) + SourceIndex(0) -2 >Emitted(13, 28) Source(17, 29) + SourceIndex(0) -3 >Emitted(13, 35) Source(17, 36) + SourceIndex(0) -4 >Emitted(13, 37) Source(17, 38) + SourceIndex(0) -5 >Emitted(13, 38) Source(17, 39) + SourceIndex(0) -6 >Emitted(13, 39) Source(17, 40) + SourceIndex(0) -7 >Emitted(13, 40) Source(17, 41) + SourceIndex(0) +1 >Emitted(14, 14) Source(17, 19) + SourceIndex(0) +2 >Emitted(14, 28) Source(17, 29) + SourceIndex(0) +3 >Emitted(14, 35) Source(17, 36) + SourceIndex(0) +4 >Emitted(14, 37) Source(17, 38) + SourceIndex(0) +5 >Emitted(14, 38) Source(17, 39) + SourceIndex(0) +6 >Emitted(14, 39) Source(17, 40) + SourceIndex(0) +7 >Emitted(14, 40) Source(17, 41) + SourceIndex(0) --- >>> set: function (val) { }, 1 >^^^^^^^^^^^^^ @@ -1293,11 +1295,11 @@ sourceFile:../second/second_part1.ts 3 > val: number 4 > ) { 5 > } -1 >Emitted(14, 14) Source(18, 19) + SourceIndex(0) -2 >Emitted(14, 24) Source(18, 25) + SourceIndex(0) -3 >Emitted(14, 27) Source(18, 36) + SourceIndex(0) -4 >Emitted(14, 31) Source(18, 40) + SourceIndex(0) -5 >Emitted(14, 32) Source(18, 41) + SourceIndex(0) +1 >Emitted(15, 14) Source(18, 19) + SourceIndex(0) +2 >Emitted(15, 24) Source(18, 25) + SourceIndex(0) +3 >Emitted(15, 27) Source(18, 36) + SourceIndex(0) +4 >Emitted(15, 31) Source(18, 40) + SourceIndex(0) +5 >Emitted(15, 32) Source(18, 41) + SourceIndex(0) --- >>> enumerable: false, >>> configurable: true @@ -1305,7 +1307,7 @@ sourceFile:../second/second_part1.ts 1 >^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(17, 8) Source(17, 41) + SourceIndex(0) +1 >Emitted(18, 8) Source(17, 41) + SourceIndex(0) --- >>> return normalC; 1->^^^^ @@ -1314,8 +1316,8 @@ sourceFile:../second/second_part1.ts > /*@internal*/ set c(val: number) { } > 2 > } -1->Emitted(18, 5) Source(19, 1) + SourceIndex(0) -2 >Emitted(18, 19) Source(19, 2) + SourceIndex(0) +1->Emitted(19, 5) Source(19, 1) + SourceIndex(0) +2 >Emitted(19, 19) Source(19, 2) + SourceIndex(0) --- >>>}()); 1 > @@ -1333,10 +1335,10 @@ sourceFile:../second/second_part1.ts > /*@internal*/ get c() { return 10; } > /*@internal*/ set c(val: number) { } > } -1 >Emitted(19, 1) Source(19, 1) + SourceIndex(0) -2 >Emitted(19, 2) Source(19, 2) + SourceIndex(0) -3 >Emitted(19, 2) Source(13, 1) + SourceIndex(0) -4 >Emitted(19, 6) Source(19, 2) + SourceIndex(0) +1 >Emitted(20, 1) Source(19, 1) + SourceIndex(0) +2 >Emitted(20, 2) Source(19, 2) + SourceIndex(0) +3 >Emitted(20, 2) Source(13, 1) + SourceIndex(0) +4 >Emitted(20, 6) Source(19, 2) + SourceIndex(0) --- >>>var normalN; 1-> @@ -1358,10 +1360,10 @@ sourceFile:../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1->Emitted(20, 1) Source(20, 1) + SourceIndex(0) -2 >Emitted(20, 5) Source(20, 11) + SourceIndex(0) -3 >Emitted(20, 12) Source(20, 18) + SourceIndex(0) -4 >Emitted(20, 13) Source(29, 2) + SourceIndex(0) +1->Emitted(21, 1) Source(20, 1) + SourceIndex(0) +2 >Emitted(21, 5) Source(20, 11) + SourceIndex(0) +3 >Emitted(21, 12) Source(20, 18) + SourceIndex(0) +4 >Emitted(21, 13) Source(29, 2) + SourceIndex(0) --- >>>(function (normalN) { 1-> @@ -1371,22 +1373,22 @@ sourceFile:../second/second_part1.ts 1-> 2 >namespace 3 > normalN -1->Emitted(21, 1) Source(20, 1) + SourceIndex(0) -2 >Emitted(21, 12) Source(20, 11) + SourceIndex(0) -3 >Emitted(21, 19) Source(20, 18) + SourceIndex(0) +1->Emitted(22, 1) Source(20, 1) + SourceIndex(0) +2 >Emitted(22, 12) Source(20, 11) + SourceIndex(0) +3 >Emitted(22, 19) Source(20, 18) + SourceIndex(0) --- >>> var C = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { > /*@internal*/ -1->Emitted(22, 5) Source(21, 19) + SourceIndex(0) +1->Emitted(23, 5) Source(21, 19) + SourceIndex(0) --- >>> function C() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(23, 9) Source(21, 19) + SourceIndex(0) +1->Emitted(24, 9) Source(21, 19) + SourceIndex(0) --- >>> } 1->^^^^^^^^ @@ -1394,16 +1396,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(24, 9) Source(21, 36) + SourceIndex(0) -2 >Emitted(24, 10) Source(21, 37) + SourceIndex(0) +1->Emitted(25, 9) Source(21, 36) + SourceIndex(0) +2 >Emitted(25, 10) Source(21, 37) + SourceIndex(0) --- >>> return C; 1->^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(25, 9) Source(21, 36) + SourceIndex(0) -2 >Emitted(25, 17) Source(21, 37) + SourceIndex(0) +1->Emitted(26, 9) Source(21, 36) + SourceIndex(0) +2 >Emitted(26, 17) Source(21, 37) + SourceIndex(0) --- >>> }()); 1 >^^^^ @@ -1415,10 +1417,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(26, 5) Source(21, 36) + SourceIndex(0) -2 >Emitted(26, 6) Source(21, 37) + SourceIndex(0) -3 >Emitted(26, 6) Source(21, 19) + SourceIndex(0) -4 >Emitted(26, 10) Source(21, 37) + SourceIndex(0) +1 >Emitted(27, 5) Source(21, 36) + SourceIndex(0) +2 >Emitted(27, 6) Source(21, 37) + SourceIndex(0) +3 >Emitted(27, 6) Source(21, 19) + SourceIndex(0) +4 >Emitted(27, 10) Source(21, 37) + SourceIndex(0) --- >>> normalN.C = C; 1->^^^^ @@ -1430,10 +1432,10 @@ sourceFile:../second/second_part1.ts 2 > C 3 > { } 4 > -1->Emitted(27, 5) Source(21, 32) + SourceIndex(0) -2 >Emitted(27, 14) Source(21, 33) + SourceIndex(0) -3 >Emitted(27, 18) Source(21, 37) + SourceIndex(0) -4 >Emitted(27, 19) Source(21, 37) + SourceIndex(0) +1->Emitted(28, 5) Source(21, 32) + SourceIndex(0) +2 >Emitted(28, 14) Source(21, 33) + SourceIndex(0) +3 >Emitted(28, 18) Source(21, 37) + SourceIndex(0) +4 >Emitted(28, 19) Source(21, 37) + SourceIndex(0) --- >>> function foo() { } 1->^^^^ @@ -1448,11 +1450,11 @@ sourceFile:../second/second_part1.ts 3 > foo 4 > () { 5 > } -1->Emitted(28, 5) Source(22, 19) + SourceIndex(0) -2 >Emitted(28, 14) Source(22, 35) + SourceIndex(0) -3 >Emitted(28, 17) Source(22, 38) + SourceIndex(0) -4 >Emitted(28, 22) Source(22, 42) + SourceIndex(0) -5 >Emitted(28, 23) Source(22, 43) + SourceIndex(0) +1->Emitted(29, 5) Source(22, 19) + SourceIndex(0) +2 >Emitted(29, 14) Source(22, 35) + SourceIndex(0) +3 >Emitted(29, 17) Source(22, 38) + SourceIndex(0) +4 >Emitted(29, 22) Source(22, 42) + SourceIndex(0) +5 >Emitted(29, 23) Source(22, 43) + SourceIndex(0) --- >>> normalN.foo = foo; 1->^^^^ @@ -1464,10 +1466,10 @@ sourceFile:../second/second_part1.ts 2 > foo 3 > () {} 4 > -1->Emitted(29, 5) Source(22, 35) + SourceIndex(0) -2 >Emitted(29, 16) Source(22, 38) + SourceIndex(0) -3 >Emitted(29, 22) Source(22, 43) + SourceIndex(0) -4 >Emitted(29, 23) Source(22, 43) + SourceIndex(0) +1->Emitted(30, 5) Source(22, 35) + SourceIndex(0) +2 >Emitted(30, 16) Source(22, 38) + SourceIndex(0) +3 >Emitted(30, 22) Source(22, 43) + SourceIndex(0) +4 >Emitted(30, 23) Source(22, 43) + SourceIndex(0) --- >>> var someNamespace; 1->^^^^ @@ -1480,10 +1482,10 @@ sourceFile:../second/second_part1.ts 2 > export namespace 3 > someNamespace 4 > { export class C {} } -1->Emitted(30, 5) Source(23, 19) + SourceIndex(0) -2 >Emitted(30, 9) Source(23, 36) + SourceIndex(0) -3 >Emitted(30, 22) Source(23, 49) + SourceIndex(0) -4 >Emitted(30, 23) Source(23, 71) + SourceIndex(0) +1->Emitted(31, 5) Source(23, 19) + SourceIndex(0) +2 >Emitted(31, 9) Source(23, 36) + SourceIndex(0) +3 >Emitted(31, 22) Source(23, 49) + SourceIndex(0) +4 >Emitted(31, 23) Source(23, 71) + SourceIndex(0) --- >>> (function (someNamespace) { 1->^^^^ @@ -1493,21 +1495,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > export namespace 3 > someNamespace -1->Emitted(31, 5) Source(23, 19) + SourceIndex(0) -2 >Emitted(31, 16) Source(23, 36) + SourceIndex(0) -3 >Emitted(31, 29) Source(23, 49) + SourceIndex(0) +1->Emitted(32, 5) Source(23, 19) + SourceIndex(0) +2 >Emitted(32, 16) Source(23, 36) + SourceIndex(0) +3 >Emitted(32, 29) Source(23, 49) + SourceIndex(0) --- >>> var C = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(32, 9) Source(23, 52) + SourceIndex(0) +1->Emitted(33, 9) Source(23, 52) + SourceIndex(0) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(33, 13) Source(23, 52) + SourceIndex(0) +1->Emitted(34, 13) Source(23, 52) + SourceIndex(0) --- >>> } 1->^^^^^^^^^^^^ @@ -1515,16 +1517,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(34, 13) Source(23, 68) + SourceIndex(0) -2 >Emitted(34, 14) Source(23, 69) + SourceIndex(0) +1->Emitted(35, 13) Source(23, 68) + SourceIndex(0) +2 >Emitted(35, 14) Source(23, 69) + SourceIndex(0) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(35, 13) Source(23, 68) + SourceIndex(0) -2 >Emitted(35, 21) Source(23, 69) + SourceIndex(0) +1->Emitted(36, 13) Source(23, 68) + SourceIndex(0) +2 >Emitted(36, 21) Source(23, 69) + SourceIndex(0) --- >>> }()); 1 >^^^^^^^^ @@ -1536,10 +1538,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(36, 9) Source(23, 68) + SourceIndex(0) -2 >Emitted(36, 10) Source(23, 69) + SourceIndex(0) -3 >Emitted(36, 10) Source(23, 52) + SourceIndex(0) -4 >Emitted(36, 14) Source(23, 69) + SourceIndex(0) +1 >Emitted(37, 9) Source(23, 68) + SourceIndex(0) +2 >Emitted(37, 10) Source(23, 69) + SourceIndex(0) +3 >Emitted(37, 10) Source(23, 52) + SourceIndex(0) +4 >Emitted(37, 14) Source(23, 69) + SourceIndex(0) --- >>> someNamespace.C = C; 1->^^^^^^^^ @@ -1551,10 +1553,10 @@ sourceFile:../second/second_part1.ts 2 > C 3 > {} 4 > -1->Emitted(37, 9) Source(23, 65) + SourceIndex(0) -2 >Emitted(37, 24) Source(23, 66) + SourceIndex(0) -3 >Emitted(37, 28) Source(23, 69) + SourceIndex(0) -4 >Emitted(37, 29) Source(23, 69) + SourceIndex(0) +1->Emitted(38, 9) Source(23, 65) + SourceIndex(0) +2 >Emitted(38, 24) Source(23, 66) + SourceIndex(0) +3 >Emitted(38, 28) Source(23, 69) + SourceIndex(0) +4 >Emitted(38, 29) Source(23, 69) + SourceIndex(0) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^ @@ -1575,15 +1577,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(38, 5) Source(23, 70) + SourceIndex(0) -2 >Emitted(38, 6) Source(23, 71) + SourceIndex(0) -3 >Emitted(38, 8) Source(23, 36) + SourceIndex(0) -4 >Emitted(38, 21) Source(23, 49) + SourceIndex(0) -5 >Emitted(38, 24) Source(23, 36) + SourceIndex(0) -6 >Emitted(38, 45) Source(23, 49) + SourceIndex(0) -7 >Emitted(38, 50) Source(23, 36) + SourceIndex(0) -8 >Emitted(38, 71) Source(23, 49) + SourceIndex(0) -9 >Emitted(38, 79) Source(23, 71) + SourceIndex(0) +1->Emitted(39, 5) Source(23, 70) + SourceIndex(0) +2 >Emitted(39, 6) Source(23, 71) + SourceIndex(0) +3 >Emitted(39, 8) Source(23, 36) + SourceIndex(0) +4 >Emitted(39, 21) Source(23, 49) + SourceIndex(0) +5 >Emitted(39, 24) Source(23, 36) + SourceIndex(0) +6 >Emitted(39, 45) Source(23, 49) + SourceIndex(0) +7 >Emitted(39, 50) Source(23, 36) + SourceIndex(0) +8 >Emitted(39, 71) Source(23, 49) + SourceIndex(0) +9 >Emitted(39, 79) Source(23, 71) + SourceIndex(0) --- >>> var someOther; 1 >^^^^ @@ -1596,10 +1598,10 @@ sourceFile:../second/second_part1.ts 2 > export namespace 3 > someOther 4 > .something { export class someClass {} } -1 >Emitted(39, 5) Source(24, 19) + SourceIndex(0) -2 >Emitted(39, 9) Source(24, 36) + SourceIndex(0) -3 >Emitted(39, 18) Source(24, 45) + SourceIndex(0) -4 >Emitted(39, 19) Source(24, 85) + SourceIndex(0) +1 >Emitted(40, 5) Source(24, 19) + SourceIndex(0) +2 >Emitted(40, 9) Source(24, 36) + SourceIndex(0) +3 >Emitted(40, 18) Source(24, 45) + SourceIndex(0) +4 >Emitted(40, 19) Source(24, 85) + SourceIndex(0) --- >>> (function (someOther) { 1->^^^^ @@ -1608,9 +1610,9 @@ sourceFile:../second/second_part1.ts 1-> 2 > export namespace 3 > someOther -1->Emitted(40, 5) Source(24, 19) + SourceIndex(0) -2 >Emitted(40, 16) Source(24, 36) + SourceIndex(0) -3 >Emitted(40, 25) Source(24, 45) + SourceIndex(0) +1->Emitted(41, 5) Source(24, 19) + SourceIndex(0) +2 >Emitted(41, 16) Source(24, 36) + SourceIndex(0) +3 >Emitted(41, 25) Source(24, 45) + SourceIndex(0) --- >>> var something; 1 >^^^^^^^^ @@ -1622,10 +1624,10 @@ sourceFile:../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(41, 9) Source(24, 46) + SourceIndex(0) -2 >Emitted(41, 13) Source(24, 46) + SourceIndex(0) -3 >Emitted(41, 22) Source(24, 55) + SourceIndex(0) -4 >Emitted(41, 23) Source(24, 85) + SourceIndex(0) +1 >Emitted(42, 9) Source(24, 46) + SourceIndex(0) +2 >Emitted(42, 13) Source(24, 46) + SourceIndex(0) +3 >Emitted(42, 22) Source(24, 55) + SourceIndex(0) +4 >Emitted(42, 23) Source(24, 85) + SourceIndex(0) --- >>> (function (something) { 1->^^^^^^^^ @@ -1635,21 +1637,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(42, 9) Source(24, 46) + SourceIndex(0) -2 >Emitted(42, 20) Source(24, 46) + SourceIndex(0) -3 >Emitted(42, 29) Source(24, 55) + SourceIndex(0) +1->Emitted(43, 9) Source(24, 46) + SourceIndex(0) +2 >Emitted(43, 20) Source(24, 46) + SourceIndex(0) +3 >Emitted(43, 29) Source(24, 55) + SourceIndex(0) --- >>> var someClass = (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(43, 13) Source(24, 58) + SourceIndex(0) +1->Emitted(44, 13) Source(24, 58) + SourceIndex(0) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(44, 17) Source(24, 58) + SourceIndex(0) +1->Emitted(45, 17) Source(24, 58) + SourceIndex(0) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -1657,16 +1659,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(45, 17) Source(24, 82) + SourceIndex(0) -2 >Emitted(45, 18) Source(24, 83) + SourceIndex(0) +1->Emitted(46, 17) Source(24, 82) + SourceIndex(0) +2 >Emitted(46, 18) Source(24, 83) + SourceIndex(0) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(46, 17) Source(24, 82) + SourceIndex(0) -2 >Emitted(46, 33) Source(24, 83) + SourceIndex(0) +1->Emitted(47, 17) Source(24, 82) + SourceIndex(0) +2 >Emitted(47, 33) Source(24, 83) + SourceIndex(0) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -1678,10 +1680,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(47, 13) Source(24, 82) + SourceIndex(0) -2 >Emitted(47, 14) Source(24, 83) + SourceIndex(0) -3 >Emitted(47, 14) Source(24, 58) + SourceIndex(0) -4 >Emitted(47, 18) Source(24, 83) + SourceIndex(0) +1 >Emitted(48, 13) Source(24, 82) + SourceIndex(0) +2 >Emitted(48, 14) Source(24, 83) + SourceIndex(0) +3 >Emitted(48, 14) Source(24, 58) + SourceIndex(0) +4 >Emitted(48, 18) Source(24, 83) + SourceIndex(0) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -1693,10 +1695,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(48, 13) Source(24, 71) + SourceIndex(0) -2 >Emitted(48, 32) Source(24, 80) + SourceIndex(0) -3 >Emitted(48, 44) Source(24, 83) + SourceIndex(0) -4 >Emitted(48, 45) Source(24, 83) + SourceIndex(0) +1->Emitted(49, 13) Source(24, 71) + SourceIndex(0) +2 >Emitted(49, 32) Source(24, 80) + SourceIndex(0) +3 >Emitted(49, 44) Source(24, 83) + SourceIndex(0) +4 >Emitted(49, 45) Source(24, 83) + SourceIndex(0) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^ @@ -1717,15 +1719,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(49, 9) Source(24, 84) + SourceIndex(0) -2 >Emitted(49, 10) Source(24, 85) + SourceIndex(0) -3 >Emitted(49, 12) Source(24, 46) + SourceIndex(0) -4 >Emitted(49, 21) Source(24, 55) + SourceIndex(0) -5 >Emitted(49, 24) Source(24, 46) + SourceIndex(0) -6 >Emitted(49, 43) Source(24, 55) + SourceIndex(0) -7 >Emitted(49, 48) Source(24, 46) + SourceIndex(0) -8 >Emitted(49, 67) Source(24, 55) + SourceIndex(0) -9 >Emitted(49, 75) Source(24, 85) + SourceIndex(0) +1->Emitted(50, 9) Source(24, 84) + SourceIndex(0) +2 >Emitted(50, 10) Source(24, 85) + SourceIndex(0) +3 >Emitted(50, 12) Source(24, 46) + SourceIndex(0) +4 >Emitted(50, 21) Source(24, 55) + SourceIndex(0) +5 >Emitted(50, 24) Source(24, 46) + SourceIndex(0) +6 >Emitted(50, 43) Source(24, 55) + SourceIndex(0) +7 >Emitted(50, 48) Source(24, 46) + SourceIndex(0) +8 >Emitted(50, 67) Source(24, 55) + SourceIndex(0) +9 >Emitted(50, 75) Source(24, 85) + SourceIndex(0) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^ @@ -1746,15 +1748,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(50, 5) Source(24, 84) + SourceIndex(0) -2 >Emitted(50, 6) Source(24, 85) + SourceIndex(0) -3 >Emitted(50, 8) Source(24, 36) + SourceIndex(0) -4 >Emitted(50, 17) Source(24, 45) + SourceIndex(0) -5 >Emitted(50, 20) Source(24, 36) + SourceIndex(0) -6 >Emitted(50, 37) Source(24, 45) + SourceIndex(0) -7 >Emitted(50, 42) Source(24, 36) + SourceIndex(0) -8 >Emitted(50, 59) Source(24, 45) + SourceIndex(0) -9 >Emitted(50, 67) Source(24, 85) + SourceIndex(0) +1 >Emitted(51, 5) Source(24, 84) + SourceIndex(0) +2 >Emitted(51, 6) Source(24, 85) + SourceIndex(0) +3 >Emitted(51, 8) Source(24, 36) + SourceIndex(0) +4 >Emitted(51, 17) Source(24, 45) + SourceIndex(0) +5 >Emitted(51, 20) Source(24, 36) + SourceIndex(0) +6 >Emitted(51, 37) Source(24, 45) + SourceIndex(0) +7 >Emitted(51, 42) Source(24, 36) + SourceIndex(0) +8 >Emitted(51, 59) Source(24, 45) + SourceIndex(0) +9 >Emitted(51, 67) Source(24, 85) + SourceIndex(0) --- >>> normalN.someImport = someNamespace.C; 1 >^^^^ @@ -1772,13 +1774,13 @@ sourceFile:../second/second_part1.ts 5 > . 6 > C 7 > ; -1 >Emitted(51, 5) Source(25, 33) + SourceIndex(0) -2 >Emitted(51, 23) Source(25, 43) + SourceIndex(0) -3 >Emitted(51, 26) Source(25, 46) + SourceIndex(0) -4 >Emitted(51, 39) Source(25, 59) + SourceIndex(0) -5 >Emitted(51, 40) Source(25, 60) + SourceIndex(0) -6 >Emitted(51, 41) Source(25, 61) + SourceIndex(0) -7 >Emitted(51, 42) Source(25, 62) + SourceIndex(0) +1 >Emitted(52, 5) Source(25, 33) + SourceIndex(0) +2 >Emitted(52, 23) Source(25, 43) + SourceIndex(0) +3 >Emitted(52, 26) Source(25, 46) + SourceIndex(0) +4 >Emitted(52, 39) Source(25, 59) + SourceIndex(0) +5 >Emitted(52, 40) Source(25, 60) + SourceIndex(0) +6 >Emitted(52, 41) Source(25, 61) + SourceIndex(0) +7 >Emitted(52, 42) Source(25, 62) + SourceIndex(0) --- >>> normalN.internalConst = 10; 1 >^^^^ @@ -1793,11 +1795,11 @@ sourceFile:../second/second_part1.ts 3 > = 4 > 10 5 > ; -1 >Emitted(52, 5) Source(27, 32) + SourceIndex(0) -2 >Emitted(52, 26) Source(27, 45) + SourceIndex(0) -3 >Emitted(52, 29) Source(27, 48) + SourceIndex(0) -4 >Emitted(52, 31) Source(27, 50) + SourceIndex(0) -5 >Emitted(52, 32) Source(27, 51) + SourceIndex(0) +1 >Emitted(53, 5) Source(27, 32) + SourceIndex(0) +2 >Emitted(53, 26) Source(27, 45) + SourceIndex(0) +3 >Emitted(53, 29) Source(27, 48) + SourceIndex(0) +4 >Emitted(53, 31) Source(27, 50) + SourceIndex(0) +5 >Emitted(53, 32) Source(27, 51) + SourceIndex(0) --- >>> var internalEnum; 1 >^^^^ @@ -1808,9 +1810,9 @@ sourceFile:../second/second_part1.ts > /*@internal*/ 2 > export enum 3 > internalEnum { a, b, c } -1 >Emitted(53, 5) Source(28, 19) + SourceIndex(0) -2 >Emitted(53, 9) Source(28, 31) + SourceIndex(0) -3 >Emitted(53, 21) Source(28, 55) + SourceIndex(0) +1 >Emitted(54, 5) Source(28, 19) + SourceIndex(0) +2 >Emitted(54, 9) Source(28, 31) + SourceIndex(0) +3 >Emitted(54, 21) Source(28, 55) + SourceIndex(0) --- >>> (function (internalEnum) { 1->^^^^ @@ -1820,9 +1822,9 @@ sourceFile:../second/second_part1.ts 1-> 2 > export enum 3 > internalEnum -1->Emitted(54, 5) Source(28, 19) + SourceIndex(0) -2 >Emitted(54, 16) Source(28, 31) + SourceIndex(0) -3 >Emitted(54, 28) Source(28, 43) + SourceIndex(0) +1->Emitted(55, 5) Source(28, 19) + SourceIndex(0) +2 >Emitted(55, 16) Source(28, 31) + SourceIndex(0) +3 >Emitted(55, 28) Source(28, 43) + SourceIndex(0) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -1832,9 +1834,9 @@ sourceFile:../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(55, 9) Source(28, 46) + SourceIndex(0) -2 >Emitted(55, 50) Source(28, 47) + SourceIndex(0) -3 >Emitted(55, 51) Source(28, 47) + SourceIndex(0) +1->Emitted(56, 9) Source(28, 46) + SourceIndex(0) +2 >Emitted(56, 50) Source(28, 47) + SourceIndex(0) +3 >Emitted(56, 51) Source(28, 47) + SourceIndex(0) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -1844,9 +1846,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(56, 9) Source(28, 49) + SourceIndex(0) -2 >Emitted(56, 50) Source(28, 50) + SourceIndex(0) -3 >Emitted(56, 51) Source(28, 50) + SourceIndex(0) +1->Emitted(57, 9) Source(28, 49) + SourceIndex(0) +2 >Emitted(57, 50) Source(28, 50) + SourceIndex(0) +3 >Emitted(57, 51) Source(28, 50) + SourceIndex(0) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -1856,9 +1858,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(57, 9) Source(28, 52) + SourceIndex(0) -2 >Emitted(57, 50) Source(28, 53) + SourceIndex(0) -3 >Emitted(57, 51) Source(28, 53) + SourceIndex(0) +1->Emitted(58, 9) Source(28, 52) + SourceIndex(0) +2 >Emitted(58, 50) Source(28, 53) + SourceIndex(0) +3 >Emitted(58, 51) Source(28, 53) + SourceIndex(0) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^ @@ -1879,15 +1881,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(58, 5) Source(28, 54) + SourceIndex(0) -2 >Emitted(58, 6) Source(28, 55) + SourceIndex(0) -3 >Emitted(58, 8) Source(28, 31) + SourceIndex(0) -4 >Emitted(58, 20) Source(28, 43) + SourceIndex(0) -5 >Emitted(58, 23) Source(28, 31) + SourceIndex(0) -6 >Emitted(58, 43) Source(28, 43) + SourceIndex(0) -7 >Emitted(58, 48) Source(28, 31) + SourceIndex(0) -8 >Emitted(58, 68) Source(28, 43) + SourceIndex(0) -9 >Emitted(58, 76) Source(28, 55) + SourceIndex(0) +1->Emitted(59, 5) Source(28, 54) + SourceIndex(0) +2 >Emitted(59, 6) Source(28, 55) + SourceIndex(0) +3 >Emitted(59, 8) Source(28, 31) + SourceIndex(0) +4 >Emitted(59, 20) Source(28, 43) + SourceIndex(0) +5 >Emitted(59, 23) Source(28, 31) + SourceIndex(0) +6 >Emitted(59, 43) Source(28, 43) + SourceIndex(0) +7 >Emitted(59, 48) Source(28, 31) + SourceIndex(0) +8 >Emitted(59, 68) Source(28, 43) + SourceIndex(0) +9 >Emitted(59, 76) Source(28, 55) + SourceIndex(0) --- >>>})(normalN || (normalN = {})); 1 > @@ -1915,26 +1917,26 @@ sourceFile:../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(59, 1) Source(29, 1) + SourceIndex(0) -2 >Emitted(59, 2) Source(29, 2) + SourceIndex(0) -3 >Emitted(59, 4) Source(20, 11) + SourceIndex(0) -4 >Emitted(59, 11) Source(20, 18) + SourceIndex(0) -5 >Emitted(59, 16) Source(20, 11) + SourceIndex(0) -6 >Emitted(59, 23) Source(20, 18) + SourceIndex(0) -7 >Emitted(59, 31) Source(29, 2) + SourceIndex(0) +1 >Emitted(60, 1) Source(29, 1) + SourceIndex(0) +2 >Emitted(60, 2) Source(29, 2) + SourceIndex(0) +3 >Emitted(60, 4) Source(20, 11) + SourceIndex(0) +4 >Emitted(60, 11) Source(20, 18) + SourceIndex(0) +5 >Emitted(60, 16) Source(20, 11) + SourceIndex(0) +6 >Emitted(60, 23) Source(20, 18) + SourceIndex(0) +7 >Emitted(60, 31) Source(29, 2) + SourceIndex(0) --- >>>var internalC = (function () { 1-> 2 >^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> >/*@internal*/ -1->Emitted(60, 1) Source(30, 15) + SourceIndex(0) +1->Emitted(61, 1) Source(30, 15) + SourceIndex(0) --- >>> function internalC() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(61, 5) Source(30, 15) + SourceIndex(0) +1->Emitted(62, 5) Source(30, 15) + SourceIndex(0) --- >>> } 1->^^^^ @@ -1942,16 +1944,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->class internalC { 2 > } -1->Emitted(62, 5) Source(30, 32) + SourceIndex(0) -2 >Emitted(62, 6) Source(30, 33) + SourceIndex(0) +1->Emitted(63, 5) Source(30, 32) + SourceIndex(0) +2 >Emitted(63, 6) Source(30, 33) + SourceIndex(0) --- >>> return internalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(63, 5) Source(30, 32) + SourceIndex(0) -2 >Emitted(63, 21) Source(30, 33) + SourceIndex(0) +1->Emitted(64, 5) Source(30, 32) + SourceIndex(0) +2 >Emitted(64, 21) Source(30, 33) + SourceIndex(0) --- >>>}()); 1 > @@ -1963,10 +1965,10 @@ sourceFile:../second/second_part1.ts 2 >} 3 > 4 > class internalC {} -1 >Emitted(64, 1) Source(30, 32) + SourceIndex(0) -2 >Emitted(64, 2) Source(30, 33) + SourceIndex(0) -3 >Emitted(64, 2) Source(30, 15) + SourceIndex(0) -4 >Emitted(64, 6) Source(30, 33) + SourceIndex(0) +1 >Emitted(65, 1) Source(30, 32) + SourceIndex(0) +2 >Emitted(65, 2) Source(30, 33) + SourceIndex(0) +3 >Emitted(65, 2) Source(30, 15) + SourceIndex(0) +4 >Emitted(65, 6) Source(30, 33) + SourceIndex(0) --- >>>function internalfoo() { } 1-> @@ -1980,11 +1982,11 @@ sourceFile:../second/second_part1.ts 3 > internalfoo 4 > () { 5 > } -1->Emitted(65, 1) Source(31, 15) + SourceIndex(0) -2 >Emitted(65, 10) Source(31, 24) + SourceIndex(0) -3 >Emitted(65, 21) Source(31, 35) + SourceIndex(0) -4 >Emitted(65, 26) Source(31, 39) + SourceIndex(0) -5 >Emitted(65, 27) Source(31, 40) + SourceIndex(0) +1->Emitted(66, 1) Source(31, 15) + SourceIndex(0) +2 >Emitted(66, 10) Source(31, 24) + SourceIndex(0) +3 >Emitted(66, 21) Source(31, 35) + SourceIndex(0) +4 >Emitted(66, 26) Source(31, 39) + SourceIndex(0) +5 >Emitted(66, 27) Source(31, 40) + SourceIndex(0) --- >>>var internalNamespace; 1 > @@ -1997,10 +1999,10 @@ sourceFile:../second/second_part1.ts 2 >namespace 3 > internalNamespace 4 > { export class someClass {} } -1 >Emitted(66, 1) Source(32, 15) + SourceIndex(0) -2 >Emitted(66, 5) Source(32, 25) + SourceIndex(0) -3 >Emitted(66, 22) Source(32, 42) + SourceIndex(0) -4 >Emitted(66, 23) Source(32, 72) + SourceIndex(0) +1 >Emitted(67, 1) Source(32, 15) + SourceIndex(0) +2 >Emitted(67, 5) Source(32, 25) + SourceIndex(0) +3 >Emitted(67, 22) Source(32, 42) + SourceIndex(0) +4 >Emitted(67, 23) Source(32, 72) + SourceIndex(0) --- >>>(function (internalNamespace) { 1-> @@ -2010,21 +2012,21 @@ sourceFile:../second/second_part1.ts 1-> 2 >namespace 3 > internalNamespace -1->Emitted(67, 1) Source(32, 15) + SourceIndex(0) -2 >Emitted(67, 12) Source(32, 25) + SourceIndex(0) -3 >Emitted(67, 29) Source(32, 42) + SourceIndex(0) +1->Emitted(68, 1) Source(32, 15) + SourceIndex(0) +2 >Emitted(68, 12) Source(32, 25) + SourceIndex(0) +3 >Emitted(68, 29) Source(32, 42) + SourceIndex(0) --- >>> var someClass = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(68, 5) Source(32, 45) + SourceIndex(0) +1->Emitted(69, 5) Source(32, 45) + SourceIndex(0) --- >>> function someClass() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(69, 9) Source(32, 45) + SourceIndex(0) +1->Emitted(70, 9) Source(32, 45) + SourceIndex(0) --- >>> } 1->^^^^^^^^ @@ -2032,16 +2034,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(70, 9) Source(32, 69) + SourceIndex(0) -2 >Emitted(70, 10) Source(32, 70) + SourceIndex(0) +1->Emitted(71, 9) Source(32, 69) + SourceIndex(0) +2 >Emitted(71, 10) Source(32, 70) + SourceIndex(0) --- >>> return someClass; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(71, 9) Source(32, 69) + SourceIndex(0) -2 >Emitted(71, 25) Source(32, 70) + SourceIndex(0) +1->Emitted(72, 9) Source(32, 69) + SourceIndex(0) +2 >Emitted(72, 25) Source(32, 70) + SourceIndex(0) --- >>> }()); 1 >^^^^ @@ -2053,10 +2055,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(72, 5) Source(32, 69) + SourceIndex(0) -2 >Emitted(72, 6) Source(32, 70) + SourceIndex(0) -3 >Emitted(72, 6) Source(32, 45) + SourceIndex(0) -4 >Emitted(72, 10) Source(32, 70) + SourceIndex(0) +1 >Emitted(73, 5) Source(32, 69) + SourceIndex(0) +2 >Emitted(73, 6) Source(32, 70) + SourceIndex(0) +3 >Emitted(73, 6) Source(32, 45) + SourceIndex(0) +4 >Emitted(73, 10) Source(32, 70) + SourceIndex(0) --- >>> internalNamespace.someClass = someClass; 1->^^^^ @@ -2068,10 +2070,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(73, 5) Source(32, 58) + SourceIndex(0) -2 >Emitted(73, 32) Source(32, 67) + SourceIndex(0) -3 >Emitted(73, 44) Source(32, 70) + SourceIndex(0) -4 >Emitted(73, 45) Source(32, 70) + SourceIndex(0) +1->Emitted(74, 5) Source(32, 58) + SourceIndex(0) +2 >Emitted(74, 32) Source(32, 67) + SourceIndex(0) +3 >Emitted(74, 44) Source(32, 70) + SourceIndex(0) +4 >Emitted(74, 45) Source(32, 70) + SourceIndex(0) --- >>>})(internalNamespace || (internalNamespace = {})); 1-> @@ -2088,13 +2090,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalNamespace 7 > { export class someClass {} } -1->Emitted(74, 1) Source(32, 71) + SourceIndex(0) -2 >Emitted(74, 2) Source(32, 72) + SourceIndex(0) -3 >Emitted(74, 4) Source(32, 25) + SourceIndex(0) -4 >Emitted(74, 21) Source(32, 42) + SourceIndex(0) -5 >Emitted(74, 26) Source(32, 25) + SourceIndex(0) -6 >Emitted(74, 43) Source(32, 42) + SourceIndex(0) -7 >Emitted(74, 51) Source(32, 72) + SourceIndex(0) +1->Emitted(75, 1) Source(32, 71) + SourceIndex(0) +2 >Emitted(75, 2) Source(32, 72) + SourceIndex(0) +3 >Emitted(75, 4) Source(32, 25) + SourceIndex(0) +4 >Emitted(75, 21) Source(32, 42) + SourceIndex(0) +5 >Emitted(75, 26) Source(32, 25) + SourceIndex(0) +6 >Emitted(75, 43) Source(32, 42) + SourceIndex(0) +7 >Emitted(75, 51) Source(32, 72) + SourceIndex(0) --- >>>var internalOther; 1 > @@ -2107,10 +2109,10 @@ sourceFile:../second/second_part1.ts 2 >namespace 3 > internalOther 4 > .something { export class someClass {} } -1 >Emitted(75, 1) Source(33, 15) + SourceIndex(0) -2 >Emitted(75, 5) Source(33, 25) + SourceIndex(0) -3 >Emitted(75, 18) Source(33, 38) + SourceIndex(0) -4 >Emitted(75, 19) Source(33, 78) + SourceIndex(0) +1 >Emitted(76, 1) Source(33, 15) + SourceIndex(0) +2 >Emitted(76, 5) Source(33, 25) + SourceIndex(0) +3 >Emitted(76, 18) Source(33, 38) + SourceIndex(0) +4 >Emitted(76, 19) Source(33, 78) + SourceIndex(0) --- >>>(function (internalOther) { 1-> @@ -2119,9 +2121,9 @@ sourceFile:../second/second_part1.ts 1-> 2 >namespace 3 > internalOther -1->Emitted(76, 1) Source(33, 15) + SourceIndex(0) -2 >Emitted(76, 12) Source(33, 25) + SourceIndex(0) -3 >Emitted(76, 25) Source(33, 38) + SourceIndex(0) +1->Emitted(77, 1) Source(33, 15) + SourceIndex(0) +2 >Emitted(77, 12) Source(33, 25) + SourceIndex(0) +3 >Emitted(77, 25) Source(33, 38) + SourceIndex(0) --- >>> var something; 1 >^^^^ @@ -2133,10 +2135,10 @@ sourceFile:../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(77, 5) Source(33, 39) + SourceIndex(0) -2 >Emitted(77, 9) Source(33, 39) + SourceIndex(0) -3 >Emitted(77, 18) Source(33, 48) + SourceIndex(0) -4 >Emitted(77, 19) Source(33, 78) + SourceIndex(0) +1 >Emitted(78, 5) Source(33, 39) + SourceIndex(0) +2 >Emitted(78, 9) Source(33, 39) + SourceIndex(0) +3 >Emitted(78, 18) Source(33, 48) + SourceIndex(0) +4 >Emitted(78, 19) Source(33, 78) + SourceIndex(0) --- >>> (function (something) { 1->^^^^ @@ -2146,21 +2148,21 @@ sourceFile:../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(78, 5) Source(33, 39) + SourceIndex(0) -2 >Emitted(78, 16) Source(33, 39) + SourceIndex(0) -3 >Emitted(78, 25) Source(33, 48) + SourceIndex(0) +1->Emitted(79, 5) Source(33, 39) + SourceIndex(0) +2 >Emitted(79, 16) Source(33, 39) + SourceIndex(0) +3 >Emitted(79, 25) Source(33, 48) + SourceIndex(0) --- >>> var someClass = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(79, 9) Source(33, 51) + SourceIndex(0) +1->Emitted(80, 9) Source(33, 51) + SourceIndex(0) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(80, 13) Source(33, 51) + SourceIndex(0) +1->Emitted(81, 13) Source(33, 51) + SourceIndex(0) --- >>> } 1->^^^^^^^^^^^^ @@ -2168,16 +2170,16 @@ sourceFile:../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(81, 13) Source(33, 75) + SourceIndex(0) -2 >Emitted(81, 14) Source(33, 76) + SourceIndex(0) +1->Emitted(82, 13) Source(33, 75) + SourceIndex(0) +2 >Emitted(82, 14) Source(33, 76) + SourceIndex(0) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(82, 13) Source(33, 75) + SourceIndex(0) -2 >Emitted(82, 29) Source(33, 76) + SourceIndex(0) +1->Emitted(83, 13) Source(33, 75) + SourceIndex(0) +2 >Emitted(83, 29) Source(33, 76) + SourceIndex(0) --- >>> }()); 1 >^^^^^^^^ @@ -2189,10 +2191,10 @@ sourceFile:../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(83, 9) Source(33, 75) + SourceIndex(0) -2 >Emitted(83, 10) Source(33, 76) + SourceIndex(0) -3 >Emitted(83, 10) Source(33, 51) + SourceIndex(0) -4 >Emitted(83, 14) Source(33, 76) + SourceIndex(0) +1 >Emitted(84, 9) Source(33, 75) + SourceIndex(0) +2 >Emitted(84, 10) Source(33, 76) + SourceIndex(0) +3 >Emitted(84, 10) Source(33, 51) + SourceIndex(0) +4 >Emitted(84, 14) Source(33, 76) + SourceIndex(0) --- >>> something.someClass = someClass; 1->^^^^^^^^ @@ -2204,10 +2206,10 @@ sourceFile:../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(84, 9) Source(33, 64) + SourceIndex(0) -2 >Emitted(84, 28) Source(33, 73) + SourceIndex(0) -3 >Emitted(84, 40) Source(33, 76) + SourceIndex(0) -4 >Emitted(84, 41) Source(33, 76) + SourceIndex(0) +1->Emitted(85, 9) Source(33, 64) + SourceIndex(0) +2 >Emitted(85, 28) Source(33, 73) + SourceIndex(0) +3 >Emitted(85, 40) Source(33, 76) + SourceIndex(0) +4 >Emitted(85, 41) Source(33, 76) + SourceIndex(0) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^ @@ -2228,15 +2230,15 @@ sourceFile:../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(85, 5) Source(33, 77) + SourceIndex(0) -2 >Emitted(85, 6) Source(33, 78) + SourceIndex(0) -3 >Emitted(85, 8) Source(33, 39) + SourceIndex(0) -4 >Emitted(85, 17) Source(33, 48) + SourceIndex(0) -5 >Emitted(85, 20) Source(33, 39) + SourceIndex(0) -6 >Emitted(85, 43) Source(33, 48) + SourceIndex(0) -7 >Emitted(85, 48) Source(33, 39) + SourceIndex(0) -8 >Emitted(85, 71) Source(33, 48) + SourceIndex(0) -9 >Emitted(85, 79) Source(33, 78) + SourceIndex(0) +1->Emitted(86, 5) Source(33, 77) + SourceIndex(0) +2 >Emitted(86, 6) Source(33, 78) + SourceIndex(0) +3 >Emitted(86, 8) Source(33, 39) + SourceIndex(0) +4 >Emitted(86, 17) Source(33, 48) + SourceIndex(0) +5 >Emitted(86, 20) Source(33, 39) + SourceIndex(0) +6 >Emitted(86, 43) Source(33, 48) + SourceIndex(0) +7 >Emitted(86, 48) Source(33, 39) + SourceIndex(0) +8 >Emitted(86, 71) Source(33, 48) + SourceIndex(0) +9 >Emitted(86, 79) Source(33, 78) + SourceIndex(0) --- >>>})(internalOther || (internalOther = {})); 1 > @@ -2254,13 +2256,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalOther 7 > .something { export class someClass {} } -1 >Emitted(86, 1) Source(33, 77) + SourceIndex(0) -2 >Emitted(86, 2) Source(33, 78) + SourceIndex(0) -3 >Emitted(86, 4) Source(33, 25) + SourceIndex(0) -4 >Emitted(86, 17) Source(33, 38) + SourceIndex(0) -5 >Emitted(86, 22) Source(33, 25) + SourceIndex(0) -6 >Emitted(86, 35) Source(33, 38) + SourceIndex(0) -7 >Emitted(86, 43) Source(33, 78) + SourceIndex(0) +1 >Emitted(87, 1) Source(33, 77) + SourceIndex(0) +2 >Emitted(87, 2) Source(33, 78) + SourceIndex(0) +3 >Emitted(87, 4) Source(33, 25) + SourceIndex(0) +4 >Emitted(87, 17) Source(33, 38) + SourceIndex(0) +5 >Emitted(87, 22) Source(33, 25) + SourceIndex(0) +6 >Emitted(87, 35) Source(33, 38) + SourceIndex(0) +7 >Emitted(87, 43) Source(33, 78) + SourceIndex(0) --- >>>var internalImport = internalNamespace.someClass; 1-> @@ -2280,14 +2282,14 @@ sourceFile:../second/second_part1.ts 6 > . 7 > someClass 8 > ; -1->Emitted(87, 1) Source(34, 15) + SourceIndex(0) -2 >Emitted(87, 5) Source(34, 22) + SourceIndex(0) -3 >Emitted(87, 19) Source(34, 36) + SourceIndex(0) -4 >Emitted(87, 22) Source(34, 39) + SourceIndex(0) -5 >Emitted(87, 39) Source(34, 56) + SourceIndex(0) -6 >Emitted(87, 40) Source(34, 57) + SourceIndex(0) -7 >Emitted(87, 49) Source(34, 66) + SourceIndex(0) -8 >Emitted(87, 50) Source(34, 67) + SourceIndex(0) +1->Emitted(88, 1) Source(34, 15) + SourceIndex(0) +2 >Emitted(88, 5) Source(34, 22) + SourceIndex(0) +3 >Emitted(88, 19) Source(34, 36) + SourceIndex(0) +4 >Emitted(88, 22) Source(34, 39) + SourceIndex(0) +5 >Emitted(88, 39) Source(34, 56) + SourceIndex(0) +6 >Emitted(88, 40) Source(34, 57) + SourceIndex(0) +7 >Emitted(88, 49) Source(34, 66) + SourceIndex(0) +8 >Emitted(88, 50) Source(34, 67) + SourceIndex(0) --- >>>var internalConst = 10; 1 > @@ -2304,12 +2306,12 @@ sourceFile:../second/second_part1.ts 4 > = 5 > 10 6 > ; -1 >Emitted(88, 1) Source(36, 15) + SourceIndex(0) -2 >Emitted(88, 5) Source(36, 21) + SourceIndex(0) -3 >Emitted(88, 18) Source(36, 34) + SourceIndex(0) -4 >Emitted(88, 21) Source(36, 37) + SourceIndex(0) -5 >Emitted(88, 23) Source(36, 39) + SourceIndex(0) -6 >Emitted(88, 24) Source(36, 40) + SourceIndex(0) +1 >Emitted(89, 1) Source(36, 15) + SourceIndex(0) +2 >Emitted(89, 5) Source(36, 21) + SourceIndex(0) +3 >Emitted(89, 18) Source(36, 34) + SourceIndex(0) +4 >Emitted(89, 21) Source(36, 37) + SourceIndex(0) +5 >Emitted(89, 23) Source(36, 39) + SourceIndex(0) +6 >Emitted(89, 24) Source(36, 40) + SourceIndex(0) --- >>>var internalEnum; 1 > @@ -2320,9 +2322,9 @@ sourceFile:../second/second_part1.ts >/*@internal*/ 2 >enum 3 > internalEnum { a, b, c } -1 >Emitted(89, 1) Source(37, 15) + SourceIndex(0) -2 >Emitted(89, 5) Source(37, 20) + SourceIndex(0) -3 >Emitted(89, 17) Source(37, 44) + SourceIndex(0) +1 >Emitted(90, 1) Source(37, 15) + SourceIndex(0) +2 >Emitted(90, 5) Source(37, 20) + SourceIndex(0) +3 >Emitted(90, 17) Source(37, 44) + SourceIndex(0) --- >>>(function (internalEnum) { 1-> @@ -2332,9 +2334,9 @@ sourceFile:../second/second_part1.ts 1-> 2 >enum 3 > internalEnum -1->Emitted(90, 1) Source(37, 15) + SourceIndex(0) -2 >Emitted(90, 12) Source(37, 20) + SourceIndex(0) -3 >Emitted(90, 24) Source(37, 32) + SourceIndex(0) +1->Emitted(91, 1) Source(37, 15) + SourceIndex(0) +2 >Emitted(91, 12) Source(37, 20) + SourceIndex(0) +3 >Emitted(91, 24) Source(37, 32) + SourceIndex(0) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^ @@ -2344,9 +2346,9 @@ sourceFile:../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(91, 5) Source(37, 35) + SourceIndex(0) -2 >Emitted(91, 46) Source(37, 36) + SourceIndex(0) -3 >Emitted(91, 47) Source(37, 36) + SourceIndex(0) +1->Emitted(92, 5) Source(37, 35) + SourceIndex(0) +2 >Emitted(92, 46) Source(37, 36) + SourceIndex(0) +3 >Emitted(92, 47) Source(37, 36) + SourceIndex(0) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^ @@ -2356,9 +2358,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(92, 5) Source(37, 38) + SourceIndex(0) -2 >Emitted(92, 46) Source(37, 39) + SourceIndex(0) -3 >Emitted(92, 47) Source(37, 39) + SourceIndex(0) +1->Emitted(93, 5) Source(37, 38) + SourceIndex(0) +2 >Emitted(93, 46) Source(37, 39) + SourceIndex(0) +3 >Emitted(93, 47) Source(37, 39) + SourceIndex(0) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^ @@ -2367,9 +2369,9 @@ sourceFile:../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(93, 5) Source(37, 41) + SourceIndex(0) -2 >Emitted(93, 46) Source(37, 42) + SourceIndex(0) -3 >Emitted(93, 47) Source(37, 42) + SourceIndex(0) +1->Emitted(94, 5) Source(37, 41) + SourceIndex(0) +2 >Emitted(94, 46) Source(37, 42) + SourceIndex(0) +3 >Emitted(94, 47) Source(37, 42) + SourceIndex(0) --- >>>})(internalEnum || (internalEnum = {})); 1 > @@ -2386,13 +2388,13 @@ sourceFile:../second/second_part1.ts 5 > 6 > internalEnum 7 > { a, b, c } -1 >Emitted(94, 1) Source(37, 43) + SourceIndex(0) -2 >Emitted(94, 2) Source(37, 44) + SourceIndex(0) -3 >Emitted(94, 4) Source(37, 20) + SourceIndex(0) -4 >Emitted(94, 16) Source(37, 32) + SourceIndex(0) -5 >Emitted(94, 21) Source(37, 20) + SourceIndex(0) -6 >Emitted(94, 33) Source(37, 32) + SourceIndex(0) -7 >Emitted(94, 41) Source(37, 44) + SourceIndex(0) +1 >Emitted(95, 1) Source(37, 43) + SourceIndex(0) +2 >Emitted(95, 2) Source(37, 44) + SourceIndex(0) +3 >Emitted(95, 4) Source(37, 20) + SourceIndex(0) +4 >Emitted(95, 16) Source(37, 32) + SourceIndex(0) +5 >Emitted(95, 21) Source(37, 20) + SourceIndex(0) +6 >Emitted(95, 33) Source(37, 32) + SourceIndex(0) +7 >Emitted(95, 41) Source(37, 44) + SourceIndex(0) --- ------------------------------------------------------------------- emittedFile:/src/2/second-output.js @@ -2402,13 +2404,13 @@ sourceFile:../second/second_part2.ts 1 > 2 >^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(95, 1) Source(1, 1) + SourceIndex(1) +1 >Emitted(96, 1) Source(1, 1) + SourceIndex(1) --- >>> function C() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(96, 5) Source(1, 1) + SourceIndex(1) +1->Emitted(97, 5) Source(1, 1) + SourceIndex(1) --- >>> } 1->^^^^ @@ -2420,8 +2422,8 @@ sourceFile:../second/second_part2.ts > } > 2 > } -1->Emitted(97, 5) Source(5, 1) + SourceIndex(1) -2 >Emitted(97, 6) Source(5, 2) + SourceIndex(1) +1->Emitted(98, 5) Source(5, 1) + SourceIndex(1) +2 >Emitted(98, 6) Source(5, 2) + SourceIndex(1) --- >>> C.prototype.doSomething = function () { 1->^^^^ @@ -2431,9 +2433,9 @@ sourceFile:../second/second_part2.ts 1-> 2 > doSomething 3 > -1->Emitted(98, 5) Source(2, 5) + SourceIndex(1) -2 >Emitted(98, 28) Source(2, 16) + SourceIndex(1) -3 >Emitted(98, 31) Source(2, 5) + SourceIndex(1) +1->Emitted(99, 5) Source(2, 5) + SourceIndex(1) +2 >Emitted(99, 28) Source(2, 16) + SourceIndex(1) +3 >Emitted(99, 31) Source(2, 5) + SourceIndex(1) --- >>> console.log("something got done"); 1->^^^^^^^^ @@ -2453,14 +2455,14 @@ sourceFile:../second/second_part2.ts 6 > "something got done" 7 > ) 8 > ; -1->Emitted(99, 9) Source(3, 9) + SourceIndex(1) -2 >Emitted(99, 16) Source(3, 16) + SourceIndex(1) -3 >Emitted(99, 17) Source(3, 17) + SourceIndex(1) -4 >Emitted(99, 20) Source(3, 20) + SourceIndex(1) -5 >Emitted(99, 21) Source(3, 21) + SourceIndex(1) -6 >Emitted(99, 41) Source(3, 41) + SourceIndex(1) -7 >Emitted(99, 42) Source(3, 42) + SourceIndex(1) -8 >Emitted(99, 43) Source(3, 43) + SourceIndex(1) +1->Emitted(100, 9) Source(3, 9) + SourceIndex(1) +2 >Emitted(100, 16) Source(3, 16) + SourceIndex(1) +3 >Emitted(100, 17) Source(3, 17) + SourceIndex(1) +4 >Emitted(100, 20) Source(3, 20) + SourceIndex(1) +5 >Emitted(100, 21) Source(3, 21) + SourceIndex(1) +6 >Emitted(100, 41) Source(3, 41) + SourceIndex(1) +7 >Emitted(100, 42) Source(3, 42) + SourceIndex(1) +8 >Emitted(100, 43) Source(3, 43) + SourceIndex(1) --- >>> }; 1 >^^^^ @@ -2469,8 +2471,8 @@ sourceFile:../second/second_part2.ts 1 > > 2 > } -1 >Emitted(100, 5) Source(4, 5) + SourceIndex(1) -2 >Emitted(100, 6) Source(4, 6) + SourceIndex(1) +1 >Emitted(101, 5) Source(4, 5) + SourceIndex(1) +2 >Emitted(101, 6) Source(4, 6) + SourceIndex(1) --- >>> return C; 1->^^^^ @@ -2478,8 +2480,8 @@ sourceFile:../second/second_part2.ts 1-> > 2 > } -1->Emitted(101, 5) Source(5, 1) + SourceIndex(1) -2 >Emitted(101, 13) Source(5, 2) + SourceIndex(1) +1->Emitted(102, 5) Source(5, 1) + SourceIndex(1) +2 >Emitted(102, 13) Source(5, 2) + SourceIndex(1) --- >>>}()); 1 > @@ -2495,10 +2497,10 @@ sourceFile:../second/second_part2.ts > console.log("something got done"); > } > } -1 >Emitted(102, 1) Source(5, 1) + SourceIndex(1) -2 >Emitted(102, 2) Source(5, 2) + SourceIndex(1) -3 >Emitted(102, 2) Source(1, 1) + SourceIndex(1) -4 >Emitted(102, 6) Source(5, 2) + SourceIndex(1) +1 >Emitted(103, 1) Source(5, 1) + SourceIndex(1) +2 >Emitted(103, 2) Source(5, 2) + SourceIndex(1) +3 >Emitted(103, 2) Source(1, 1) + SourceIndex(1) +4 >Emitted(103, 6) Source(5, 2) + SourceIndex(1) --- >>>//# sourceMappingURL=second-output.js.map @@ -2514,7 +2516,7 @@ sourceFile:../second/second_part2.ts "sections": [ { "pos": 0, - "end": 3053, + "end": 3101, "kind": "text" } ] @@ -2566,7 +2568,7 @@ sourceFile:../second/second_part2.ts ====================================================================== File:: /src/2/second-output.js ---------------------------------------------------------------------- -text: (0-3053) +text: (0-3101) var N; (function (N) { function f() { @@ -2577,8 +2579,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -3416,8 +3419,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -3513,7 +3517,7 @@ c.doSomething(); //# sourceMappingURL=third-output.js.map //// [/src/third/thirdjs/output/third-output.js.map] -{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} +{"version":3,"file":"third-output.js","sourceRoot":"","sources":["../../../first/first_PART1.ts","../../../first/first_part2.ts","../../../first/first_part3.ts","../../../second/second_part1.ts","../../../second/second_part2.ts","../../third_part1.ts"],"names":[],"mappings":"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"} //// [/src/third/thirdjs/output/third-output.js.map.baseline.txt] =================================================================== @@ -3814,13 +3818,14 @@ sourceFile:../../../second/second_part1.ts >>> } 1->^^^^ 2 > ^ -3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1->constructor() { 2 > } 1->Emitted(16, 5) Source(14, 35) + SourceIndex(3) 2 >Emitted(16, 6) Source(14, 36) + SourceIndex(3) --- ->>> normalC.prototype.method = function () { }; +>>> var normalC_prototype = normalC.prototype; +>>> normalC_prototype.method = function () { }; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^ @@ -3834,13 +3839,13 @@ sourceFile:../../../second/second_part1.ts 3 > 4 > method() { 5 > } -1->Emitted(17, 5) Source(16, 19) + SourceIndex(3) -2 >Emitted(17, 29) Source(16, 25) + SourceIndex(3) -3 >Emitted(17, 32) Source(16, 19) + SourceIndex(3) -4 >Emitted(17, 46) Source(16, 30) + SourceIndex(3) -5 >Emitted(17, 47) Source(16, 31) + SourceIndex(3) +1->Emitted(18, 5) Source(16, 19) + SourceIndex(3) +2 >Emitted(18, 29) Source(16, 25) + SourceIndex(3) +3 >Emitted(18, 32) Source(16, 19) + SourceIndex(3) +4 >Emitted(18, 46) Source(16, 30) + SourceIndex(3) +5 >Emitted(18, 47) Source(16, 31) + SourceIndex(3) --- ->>> Object.defineProperty(normalC.prototype, "c", { +>>> Object.defineProperty(normalC_prototype, "c", { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^ @@ -3848,9 +3853,9 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ 2 > get 3 > c -1->Emitted(18, 5) Source(17, 19) + SourceIndex(3) -2 >Emitted(18, 27) Source(17, 23) + SourceIndex(3) -3 >Emitted(18, 49) Source(17, 24) + SourceIndex(3) +1->Emitted(19, 5) Source(17, 19) + SourceIndex(3) +2 >Emitted(19, 27) Source(17, 23) + SourceIndex(3) +3 >Emitted(19, 49) Source(17, 24) + SourceIndex(3) --- >>> get: function () { return 10; }, 1 >^^^^^^^^^^^^^ @@ -3867,13 +3872,13 @@ sourceFile:../../../second/second_part1.ts 5 > ; 6 > 7 > } -1 >Emitted(19, 14) Source(17, 19) + SourceIndex(3) -2 >Emitted(19, 28) Source(17, 29) + SourceIndex(3) -3 >Emitted(19, 35) Source(17, 36) + SourceIndex(3) -4 >Emitted(19, 37) Source(17, 38) + SourceIndex(3) -5 >Emitted(19, 38) Source(17, 39) + SourceIndex(3) -6 >Emitted(19, 39) Source(17, 40) + SourceIndex(3) -7 >Emitted(19, 40) Source(17, 41) + SourceIndex(3) +1 >Emitted(20, 14) Source(17, 19) + SourceIndex(3) +2 >Emitted(20, 28) Source(17, 29) + SourceIndex(3) +3 >Emitted(20, 35) Source(17, 36) + SourceIndex(3) +4 >Emitted(20, 37) Source(17, 38) + SourceIndex(3) +5 >Emitted(20, 38) Source(17, 39) + SourceIndex(3) +6 >Emitted(20, 39) Source(17, 40) + SourceIndex(3) +7 >Emitted(20, 40) Source(17, 41) + SourceIndex(3) --- >>> set: function (val) { }, 1 >^^^^^^^^^^^^^ @@ -3887,11 +3892,11 @@ sourceFile:../../../second/second_part1.ts 3 > val: number 4 > ) { 5 > } -1 >Emitted(20, 14) Source(18, 19) + SourceIndex(3) -2 >Emitted(20, 24) Source(18, 25) + SourceIndex(3) -3 >Emitted(20, 27) Source(18, 36) + SourceIndex(3) -4 >Emitted(20, 31) Source(18, 40) + SourceIndex(3) -5 >Emitted(20, 32) Source(18, 41) + SourceIndex(3) +1 >Emitted(21, 14) Source(18, 19) + SourceIndex(3) +2 >Emitted(21, 24) Source(18, 25) + SourceIndex(3) +3 >Emitted(21, 27) Source(18, 36) + SourceIndex(3) +4 >Emitted(21, 31) Source(18, 40) + SourceIndex(3) +5 >Emitted(21, 32) Source(18, 41) + SourceIndex(3) --- >>> enumerable: false, >>> configurable: true @@ -3899,7 +3904,7 @@ sourceFile:../../../second/second_part1.ts 1 >^^^^^^^ 2 > ^^^^^^^^^^^^^-> 1 > -1 >Emitted(23, 8) Source(17, 41) + SourceIndex(3) +1 >Emitted(24, 8) Source(17, 41) + SourceIndex(3) --- >>> return normalC; 1->^^^^ @@ -3908,8 +3913,8 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ set c(val: number) { } > 2 > } -1->Emitted(24, 5) Source(19, 1) + SourceIndex(3) -2 >Emitted(24, 19) Source(19, 2) + SourceIndex(3) +1->Emitted(25, 5) Source(19, 1) + SourceIndex(3) +2 >Emitted(25, 19) Source(19, 2) + SourceIndex(3) --- >>>}()); 1 > @@ -3927,10 +3932,10 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ get c() { return 10; } > /*@internal*/ set c(val: number) { } > } -1 >Emitted(25, 1) Source(19, 1) + SourceIndex(3) -2 >Emitted(25, 2) Source(19, 2) + SourceIndex(3) -3 >Emitted(25, 2) Source(13, 1) + SourceIndex(3) -4 >Emitted(25, 6) Source(19, 2) + SourceIndex(3) +1 >Emitted(26, 1) Source(19, 1) + SourceIndex(3) +2 >Emitted(26, 2) Source(19, 2) + SourceIndex(3) +3 >Emitted(26, 2) Source(13, 1) + SourceIndex(3) +4 >Emitted(26, 6) Source(19, 2) + SourceIndex(3) --- >>>var normalN; 1-> @@ -3952,10 +3957,10 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1->Emitted(26, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(26, 5) Source(20, 11) + SourceIndex(3) -3 >Emitted(26, 12) Source(20, 18) + SourceIndex(3) -4 >Emitted(26, 13) Source(29, 2) + SourceIndex(3) +1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(27, 5) Source(20, 11) + SourceIndex(3) +3 >Emitted(27, 12) Source(20, 18) + SourceIndex(3) +4 >Emitted(27, 13) Source(29, 2) + SourceIndex(3) --- >>>(function (normalN) { 1-> @@ -3965,22 +3970,22 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > normalN -1->Emitted(27, 1) Source(20, 1) + SourceIndex(3) -2 >Emitted(27, 12) Source(20, 11) + SourceIndex(3) -3 >Emitted(27, 19) Source(20, 18) + SourceIndex(3) +1->Emitted(28, 1) Source(20, 1) + SourceIndex(3) +2 >Emitted(28, 12) Source(20, 11) + SourceIndex(3) +3 >Emitted(28, 19) Source(20, 18) + SourceIndex(3) --- >>> var C = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { > /*@internal*/ -1->Emitted(28, 5) Source(21, 19) + SourceIndex(3) +1->Emitted(29, 5) Source(21, 19) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(29, 9) Source(21, 19) + SourceIndex(3) +1->Emitted(30, 9) Source(21, 19) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -3988,16 +3993,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(30, 9) Source(21, 36) + SourceIndex(3) -2 >Emitted(30, 10) Source(21, 37) + SourceIndex(3) +1->Emitted(31, 9) Source(21, 36) + SourceIndex(3) +2 >Emitted(31, 10) Source(21, 37) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(31, 9) Source(21, 36) + SourceIndex(3) -2 >Emitted(31, 17) Source(21, 37) + SourceIndex(3) +1->Emitted(32, 9) Source(21, 36) + SourceIndex(3) +2 >Emitted(32, 17) Source(21, 37) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -4009,10 +4014,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C { } -1 >Emitted(32, 5) Source(21, 36) + SourceIndex(3) -2 >Emitted(32, 6) Source(21, 37) + SourceIndex(3) -3 >Emitted(32, 6) Source(21, 19) + SourceIndex(3) -4 >Emitted(32, 10) Source(21, 37) + SourceIndex(3) +1 >Emitted(33, 5) Source(21, 36) + SourceIndex(3) +2 >Emitted(33, 6) Source(21, 37) + SourceIndex(3) +3 >Emitted(33, 6) Source(21, 19) + SourceIndex(3) +4 >Emitted(33, 10) Source(21, 37) + SourceIndex(3) --- >>> normalN.C = C; 1->^^^^ @@ -4024,10 +4029,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > { } 4 > -1->Emitted(33, 5) Source(21, 32) + SourceIndex(3) -2 >Emitted(33, 14) Source(21, 33) + SourceIndex(3) -3 >Emitted(33, 18) Source(21, 37) + SourceIndex(3) -4 >Emitted(33, 19) Source(21, 37) + SourceIndex(3) +1->Emitted(34, 5) Source(21, 32) + SourceIndex(3) +2 >Emitted(34, 14) Source(21, 33) + SourceIndex(3) +3 >Emitted(34, 18) Source(21, 37) + SourceIndex(3) +4 >Emitted(34, 19) Source(21, 37) + SourceIndex(3) --- >>> function foo() { } 1->^^^^ @@ -4042,11 +4047,11 @@ sourceFile:../../../second/second_part1.ts 3 > foo 4 > () { 5 > } -1->Emitted(34, 5) Source(22, 19) + SourceIndex(3) -2 >Emitted(34, 14) Source(22, 35) + SourceIndex(3) -3 >Emitted(34, 17) Source(22, 38) + SourceIndex(3) -4 >Emitted(34, 22) Source(22, 42) + SourceIndex(3) -5 >Emitted(34, 23) Source(22, 43) + SourceIndex(3) +1->Emitted(35, 5) Source(22, 19) + SourceIndex(3) +2 >Emitted(35, 14) Source(22, 35) + SourceIndex(3) +3 >Emitted(35, 17) Source(22, 38) + SourceIndex(3) +4 >Emitted(35, 22) Source(22, 42) + SourceIndex(3) +5 >Emitted(35, 23) Source(22, 43) + SourceIndex(3) --- >>> normalN.foo = foo; 1->^^^^ @@ -4058,10 +4063,10 @@ sourceFile:../../../second/second_part1.ts 2 > foo 3 > () {} 4 > -1->Emitted(35, 5) Source(22, 35) + SourceIndex(3) -2 >Emitted(35, 16) Source(22, 38) + SourceIndex(3) -3 >Emitted(35, 22) Source(22, 43) + SourceIndex(3) -4 >Emitted(35, 23) Source(22, 43) + SourceIndex(3) +1->Emitted(36, 5) Source(22, 35) + SourceIndex(3) +2 >Emitted(36, 16) Source(22, 38) + SourceIndex(3) +3 >Emitted(36, 22) Source(22, 43) + SourceIndex(3) +4 >Emitted(36, 23) Source(22, 43) + SourceIndex(3) --- >>> var someNamespace; 1->^^^^ @@ -4074,10 +4079,10 @@ sourceFile:../../../second/second_part1.ts 2 > export namespace 3 > someNamespace 4 > { export class C {} } -1->Emitted(36, 5) Source(23, 19) + SourceIndex(3) -2 >Emitted(36, 9) Source(23, 36) + SourceIndex(3) -3 >Emitted(36, 22) Source(23, 49) + SourceIndex(3) -4 >Emitted(36, 23) Source(23, 71) + SourceIndex(3) +1->Emitted(37, 5) Source(23, 19) + SourceIndex(3) +2 >Emitted(37, 9) Source(23, 36) + SourceIndex(3) +3 >Emitted(37, 22) Source(23, 49) + SourceIndex(3) +4 >Emitted(37, 23) Source(23, 71) + SourceIndex(3) --- >>> (function (someNamespace) { 1->^^^^ @@ -4087,21 +4092,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > export namespace 3 > someNamespace -1->Emitted(37, 5) Source(23, 19) + SourceIndex(3) -2 >Emitted(37, 16) Source(23, 36) + SourceIndex(3) -3 >Emitted(37, 29) Source(23, 49) + SourceIndex(3) +1->Emitted(38, 5) Source(23, 19) + SourceIndex(3) +2 >Emitted(38, 16) Source(23, 36) + SourceIndex(3) +3 >Emitted(38, 29) Source(23, 49) + SourceIndex(3) --- >>> var C = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(38, 9) Source(23, 52) + SourceIndex(3) +1->Emitted(39, 9) Source(23, 52) + SourceIndex(3) --- >>> function C() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(39, 13) Source(23, 52) + SourceIndex(3) +1->Emitted(40, 13) Source(23, 52) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -4109,16 +4114,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^-> 1->export class C { 2 > } -1->Emitted(40, 13) Source(23, 68) + SourceIndex(3) -2 >Emitted(40, 14) Source(23, 69) + SourceIndex(3) +1->Emitted(41, 13) Source(23, 68) + SourceIndex(3) +2 >Emitted(41, 14) Source(23, 69) + SourceIndex(3) --- >>> return C; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^ 1-> 2 > } -1->Emitted(41, 13) Source(23, 68) + SourceIndex(3) -2 >Emitted(41, 21) Source(23, 69) + SourceIndex(3) +1->Emitted(42, 13) Source(23, 68) + SourceIndex(3) +2 >Emitted(42, 21) Source(23, 69) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -4130,10 +4135,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class C {} -1 >Emitted(42, 9) Source(23, 68) + SourceIndex(3) -2 >Emitted(42, 10) Source(23, 69) + SourceIndex(3) -3 >Emitted(42, 10) Source(23, 52) + SourceIndex(3) -4 >Emitted(42, 14) Source(23, 69) + SourceIndex(3) +1 >Emitted(43, 9) Source(23, 68) + SourceIndex(3) +2 >Emitted(43, 10) Source(23, 69) + SourceIndex(3) +3 >Emitted(43, 10) Source(23, 52) + SourceIndex(3) +4 >Emitted(43, 14) Source(23, 69) + SourceIndex(3) --- >>> someNamespace.C = C; 1->^^^^^^^^ @@ -4145,10 +4150,10 @@ sourceFile:../../../second/second_part1.ts 2 > C 3 > {} 4 > -1->Emitted(43, 9) Source(23, 65) + SourceIndex(3) -2 >Emitted(43, 24) Source(23, 66) + SourceIndex(3) -3 >Emitted(43, 28) Source(23, 69) + SourceIndex(3) -4 >Emitted(43, 29) Source(23, 69) + SourceIndex(3) +1->Emitted(44, 9) Source(23, 65) + SourceIndex(3) +2 >Emitted(44, 24) Source(23, 66) + SourceIndex(3) +3 >Emitted(44, 28) Source(23, 69) + SourceIndex(3) +4 >Emitted(44, 29) Source(23, 69) + SourceIndex(3) --- >>> })(someNamespace = normalN.someNamespace || (normalN.someNamespace = {})); 1->^^^^ @@ -4169,15 +4174,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someNamespace 9 > { export class C {} } -1->Emitted(44, 5) Source(23, 70) + SourceIndex(3) -2 >Emitted(44, 6) Source(23, 71) + SourceIndex(3) -3 >Emitted(44, 8) Source(23, 36) + SourceIndex(3) -4 >Emitted(44, 21) Source(23, 49) + SourceIndex(3) -5 >Emitted(44, 24) Source(23, 36) + SourceIndex(3) -6 >Emitted(44, 45) Source(23, 49) + SourceIndex(3) -7 >Emitted(44, 50) Source(23, 36) + SourceIndex(3) -8 >Emitted(44, 71) Source(23, 49) + SourceIndex(3) -9 >Emitted(44, 79) Source(23, 71) + SourceIndex(3) +1->Emitted(45, 5) Source(23, 70) + SourceIndex(3) +2 >Emitted(45, 6) Source(23, 71) + SourceIndex(3) +3 >Emitted(45, 8) Source(23, 36) + SourceIndex(3) +4 >Emitted(45, 21) Source(23, 49) + SourceIndex(3) +5 >Emitted(45, 24) Source(23, 36) + SourceIndex(3) +6 >Emitted(45, 45) Source(23, 49) + SourceIndex(3) +7 >Emitted(45, 50) Source(23, 36) + SourceIndex(3) +8 >Emitted(45, 71) Source(23, 49) + SourceIndex(3) +9 >Emitted(45, 79) Source(23, 71) + SourceIndex(3) --- >>> var someOther; 1 >^^^^ @@ -4190,10 +4195,10 @@ sourceFile:../../../second/second_part1.ts 2 > export namespace 3 > someOther 4 > .something { export class someClass {} } -1 >Emitted(45, 5) Source(24, 19) + SourceIndex(3) -2 >Emitted(45, 9) Source(24, 36) + SourceIndex(3) -3 >Emitted(45, 18) Source(24, 45) + SourceIndex(3) -4 >Emitted(45, 19) Source(24, 85) + SourceIndex(3) +1 >Emitted(46, 5) Source(24, 19) + SourceIndex(3) +2 >Emitted(46, 9) Source(24, 36) + SourceIndex(3) +3 >Emitted(46, 18) Source(24, 45) + SourceIndex(3) +4 >Emitted(46, 19) Source(24, 85) + SourceIndex(3) --- >>> (function (someOther) { 1->^^^^ @@ -4202,9 +4207,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > export namespace 3 > someOther -1->Emitted(46, 5) Source(24, 19) + SourceIndex(3) -2 >Emitted(46, 16) Source(24, 36) + SourceIndex(3) -3 >Emitted(46, 25) Source(24, 45) + SourceIndex(3) +1->Emitted(47, 5) Source(24, 19) + SourceIndex(3) +2 >Emitted(47, 16) Source(24, 36) + SourceIndex(3) +3 >Emitted(47, 25) Source(24, 45) + SourceIndex(3) --- >>> var something; 1 >^^^^^^^^ @@ -4216,10 +4221,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(47, 9) Source(24, 46) + SourceIndex(3) -2 >Emitted(47, 13) Source(24, 46) + SourceIndex(3) -3 >Emitted(47, 22) Source(24, 55) + SourceIndex(3) -4 >Emitted(47, 23) Source(24, 85) + SourceIndex(3) +1 >Emitted(48, 9) Source(24, 46) + SourceIndex(3) +2 >Emitted(48, 13) Source(24, 46) + SourceIndex(3) +3 >Emitted(48, 22) Source(24, 55) + SourceIndex(3) +4 >Emitted(48, 23) Source(24, 85) + SourceIndex(3) --- >>> (function (something) { 1->^^^^^^^^ @@ -4229,21 +4234,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(48, 9) Source(24, 46) + SourceIndex(3) -2 >Emitted(48, 20) Source(24, 46) + SourceIndex(3) -3 >Emitted(48, 29) Source(24, 55) + SourceIndex(3) +1->Emitted(49, 9) Source(24, 46) + SourceIndex(3) +2 >Emitted(49, 20) Source(24, 46) + SourceIndex(3) +3 >Emitted(49, 29) Source(24, 55) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(49, 13) Source(24, 58) + SourceIndex(3) +1->Emitted(50, 13) Source(24, 58) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(50, 17) Source(24, 58) + SourceIndex(3) +1->Emitted(51, 17) Source(24, 58) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^^^^^ @@ -4251,16 +4256,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(51, 17) Source(24, 82) + SourceIndex(3) -2 >Emitted(51, 18) Source(24, 83) + SourceIndex(3) +1->Emitted(52, 17) Source(24, 82) + SourceIndex(3) +2 >Emitted(52, 18) Source(24, 83) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(52, 17) Source(24, 82) + SourceIndex(3) -2 >Emitted(52, 33) Source(24, 83) + SourceIndex(3) +1->Emitted(53, 17) Source(24, 82) + SourceIndex(3) +2 >Emitted(53, 33) Source(24, 83) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^^^^^ @@ -4272,10 +4277,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(53, 13) Source(24, 82) + SourceIndex(3) -2 >Emitted(53, 14) Source(24, 83) + SourceIndex(3) -3 >Emitted(53, 14) Source(24, 58) + SourceIndex(3) -4 >Emitted(53, 18) Source(24, 83) + SourceIndex(3) +1 >Emitted(54, 13) Source(24, 82) + SourceIndex(3) +2 >Emitted(54, 14) Source(24, 83) + SourceIndex(3) +3 >Emitted(54, 14) Source(24, 58) + SourceIndex(3) +4 >Emitted(54, 18) Source(24, 83) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^^^^^ @@ -4287,10 +4292,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(54, 13) Source(24, 71) + SourceIndex(3) -2 >Emitted(54, 32) Source(24, 80) + SourceIndex(3) -3 >Emitted(54, 44) Source(24, 83) + SourceIndex(3) -4 >Emitted(54, 45) Source(24, 83) + SourceIndex(3) +1->Emitted(55, 13) Source(24, 71) + SourceIndex(3) +2 >Emitted(55, 32) Source(24, 80) + SourceIndex(3) +3 >Emitted(55, 44) Source(24, 83) + SourceIndex(3) +4 >Emitted(55, 45) Source(24, 83) + SourceIndex(3) --- >>> })(something = someOther.something || (someOther.something = {})); 1->^^^^^^^^ @@ -4311,15 +4316,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(55, 9) Source(24, 84) + SourceIndex(3) -2 >Emitted(55, 10) Source(24, 85) + SourceIndex(3) -3 >Emitted(55, 12) Source(24, 46) + SourceIndex(3) -4 >Emitted(55, 21) Source(24, 55) + SourceIndex(3) -5 >Emitted(55, 24) Source(24, 46) + SourceIndex(3) -6 >Emitted(55, 43) Source(24, 55) + SourceIndex(3) -7 >Emitted(55, 48) Source(24, 46) + SourceIndex(3) -8 >Emitted(55, 67) Source(24, 55) + SourceIndex(3) -9 >Emitted(55, 75) Source(24, 85) + SourceIndex(3) +1->Emitted(56, 9) Source(24, 84) + SourceIndex(3) +2 >Emitted(56, 10) Source(24, 85) + SourceIndex(3) +3 >Emitted(56, 12) Source(24, 46) + SourceIndex(3) +4 >Emitted(56, 21) Source(24, 55) + SourceIndex(3) +5 >Emitted(56, 24) Source(24, 46) + SourceIndex(3) +6 >Emitted(56, 43) Source(24, 55) + SourceIndex(3) +7 >Emitted(56, 48) Source(24, 46) + SourceIndex(3) +8 >Emitted(56, 67) Source(24, 55) + SourceIndex(3) +9 >Emitted(56, 75) Source(24, 85) + SourceIndex(3) --- >>> })(someOther = normalN.someOther || (normalN.someOther = {})); 1 >^^^^ @@ -4340,15 +4345,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > someOther 9 > .something { export class someClass {} } -1 >Emitted(56, 5) Source(24, 84) + SourceIndex(3) -2 >Emitted(56, 6) Source(24, 85) + SourceIndex(3) -3 >Emitted(56, 8) Source(24, 36) + SourceIndex(3) -4 >Emitted(56, 17) Source(24, 45) + SourceIndex(3) -5 >Emitted(56, 20) Source(24, 36) + SourceIndex(3) -6 >Emitted(56, 37) Source(24, 45) + SourceIndex(3) -7 >Emitted(56, 42) Source(24, 36) + SourceIndex(3) -8 >Emitted(56, 59) Source(24, 45) + SourceIndex(3) -9 >Emitted(56, 67) Source(24, 85) + SourceIndex(3) +1 >Emitted(57, 5) Source(24, 84) + SourceIndex(3) +2 >Emitted(57, 6) Source(24, 85) + SourceIndex(3) +3 >Emitted(57, 8) Source(24, 36) + SourceIndex(3) +4 >Emitted(57, 17) Source(24, 45) + SourceIndex(3) +5 >Emitted(57, 20) Source(24, 36) + SourceIndex(3) +6 >Emitted(57, 37) Source(24, 45) + SourceIndex(3) +7 >Emitted(57, 42) Source(24, 36) + SourceIndex(3) +8 >Emitted(57, 59) Source(24, 45) + SourceIndex(3) +9 >Emitted(57, 67) Source(24, 85) + SourceIndex(3) --- >>> normalN.someImport = someNamespace.C; 1 >^^^^ @@ -4366,13 +4371,13 @@ sourceFile:../../../second/second_part1.ts 5 > . 6 > C 7 > ; -1 >Emitted(57, 5) Source(25, 33) + SourceIndex(3) -2 >Emitted(57, 23) Source(25, 43) + SourceIndex(3) -3 >Emitted(57, 26) Source(25, 46) + SourceIndex(3) -4 >Emitted(57, 39) Source(25, 59) + SourceIndex(3) -5 >Emitted(57, 40) Source(25, 60) + SourceIndex(3) -6 >Emitted(57, 41) Source(25, 61) + SourceIndex(3) -7 >Emitted(57, 42) Source(25, 62) + SourceIndex(3) +1 >Emitted(58, 5) Source(25, 33) + SourceIndex(3) +2 >Emitted(58, 23) Source(25, 43) + SourceIndex(3) +3 >Emitted(58, 26) Source(25, 46) + SourceIndex(3) +4 >Emitted(58, 39) Source(25, 59) + SourceIndex(3) +5 >Emitted(58, 40) Source(25, 60) + SourceIndex(3) +6 >Emitted(58, 41) Source(25, 61) + SourceIndex(3) +7 >Emitted(58, 42) Source(25, 62) + SourceIndex(3) --- >>> normalN.internalConst = 10; 1 >^^^^ @@ -4387,11 +4392,11 @@ sourceFile:../../../second/second_part1.ts 3 > = 4 > 10 5 > ; -1 >Emitted(58, 5) Source(27, 32) + SourceIndex(3) -2 >Emitted(58, 26) Source(27, 45) + SourceIndex(3) -3 >Emitted(58, 29) Source(27, 48) + SourceIndex(3) -4 >Emitted(58, 31) Source(27, 50) + SourceIndex(3) -5 >Emitted(58, 32) Source(27, 51) + SourceIndex(3) +1 >Emitted(59, 5) Source(27, 32) + SourceIndex(3) +2 >Emitted(59, 26) Source(27, 45) + SourceIndex(3) +3 >Emitted(59, 29) Source(27, 48) + SourceIndex(3) +4 >Emitted(59, 31) Source(27, 50) + SourceIndex(3) +5 >Emitted(59, 32) Source(27, 51) + SourceIndex(3) --- >>> var internalEnum; 1 >^^^^ @@ -4402,9 +4407,9 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ 2 > export enum 3 > internalEnum { a, b, c } -1 >Emitted(59, 5) Source(28, 19) + SourceIndex(3) -2 >Emitted(59, 9) Source(28, 31) + SourceIndex(3) -3 >Emitted(59, 21) Source(28, 55) + SourceIndex(3) +1 >Emitted(60, 5) Source(28, 19) + SourceIndex(3) +2 >Emitted(60, 9) Source(28, 31) + SourceIndex(3) +3 >Emitted(60, 21) Source(28, 55) + SourceIndex(3) --- >>> (function (internalEnum) { 1->^^^^ @@ -4414,9 +4419,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > export enum 3 > internalEnum -1->Emitted(60, 5) Source(28, 19) + SourceIndex(3) -2 >Emitted(60, 16) Source(28, 31) + SourceIndex(3) -3 >Emitted(60, 28) Source(28, 43) + SourceIndex(3) +1->Emitted(61, 5) Source(28, 19) + SourceIndex(3) +2 >Emitted(61, 16) Source(28, 31) + SourceIndex(3) +3 >Emitted(61, 28) Source(28, 43) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^^^^^ @@ -4426,9 +4431,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(61, 9) Source(28, 46) + SourceIndex(3) -2 >Emitted(61, 50) Source(28, 47) + SourceIndex(3) -3 >Emitted(61, 51) Source(28, 47) + SourceIndex(3) +1->Emitted(62, 9) Source(28, 46) + SourceIndex(3) +2 >Emitted(62, 50) Source(28, 47) + SourceIndex(3) +3 >Emitted(62, 51) Source(28, 47) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^^^^^ @@ -4438,9 +4443,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(62, 9) Source(28, 49) + SourceIndex(3) -2 >Emitted(62, 50) Source(28, 50) + SourceIndex(3) -3 >Emitted(62, 51) Source(28, 50) + SourceIndex(3) +1->Emitted(63, 9) Source(28, 49) + SourceIndex(3) +2 >Emitted(63, 50) Source(28, 50) + SourceIndex(3) +3 >Emitted(63, 51) Source(28, 50) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^^^^^ @@ -4450,9 +4455,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(63, 9) Source(28, 52) + SourceIndex(3) -2 >Emitted(63, 50) Source(28, 53) + SourceIndex(3) -3 >Emitted(63, 51) Source(28, 53) + SourceIndex(3) +1->Emitted(64, 9) Source(28, 52) + SourceIndex(3) +2 >Emitted(64, 50) Source(28, 53) + SourceIndex(3) +3 >Emitted(64, 51) Source(28, 53) + SourceIndex(3) --- >>> })(internalEnum = normalN.internalEnum || (normalN.internalEnum = {})); 1->^^^^ @@ -4473,15 +4478,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > internalEnum 9 > { a, b, c } -1->Emitted(64, 5) Source(28, 54) + SourceIndex(3) -2 >Emitted(64, 6) Source(28, 55) + SourceIndex(3) -3 >Emitted(64, 8) Source(28, 31) + SourceIndex(3) -4 >Emitted(64, 20) Source(28, 43) + SourceIndex(3) -5 >Emitted(64, 23) Source(28, 31) + SourceIndex(3) -6 >Emitted(64, 43) Source(28, 43) + SourceIndex(3) -7 >Emitted(64, 48) Source(28, 31) + SourceIndex(3) -8 >Emitted(64, 68) Source(28, 43) + SourceIndex(3) -9 >Emitted(64, 76) Source(28, 55) + SourceIndex(3) +1->Emitted(65, 5) Source(28, 54) + SourceIndex(3) +2 >Emitted(65, 6) Source(28, 55) + SourceIndex(3) +3 >Emitted(65, 8) Source(28, 31) + SourceIndex(3) +4 >Emitted(65, 20) Source(28, 43) + SourceIndex(3) +5 >Emitted(65, 23) Source(28, 31) + SourceIndex(3) +6 >Emitted(65, 43) Source(28, 43) + SourceIndex(3) +7 >Emitted(65, 48) Source(28, 31) + SourceIndex(3) +8 >Emitted(65, 68) Source(28, 43) + SourceIndex(3) +9 >Emitted(65, 76) Source(28, 55) + SourceIndex(3) --- >>>})(normalN || (normalN = {})); 1 > @@ -4509,26 +4514,26 @@ sourceFile:../../../second/second_part1.ts > /*@internal*/ export const internalConst = 10; > /*@internal*/ export enum internalEnum { a, b, c } > } -1 >Emitted(65, 1) Source(29, 1) + SourceIndex(3) -2 >Emitted(65, 2) Source(29, 2) + SourceIndex(3) -3 >Emitted(65, 4) Source(20, 11) + SourceIndex(3) -4 >Emitted(65, 11) Source(20, 18) + SourceIndex(3) -5 >Emitted(65, 16) Source(20, 11) + SourceIndex(3) -6 >Emitted(65, 23) Source(20, 18) + SourceIndex(3) -7 >Emitted(65, 31) Source(29, 2) + SourceIndex(3) +1 >Emitted(66, 1) Source(29, 1) + SourceIndex(3) +2 >Emitted(66, 2) Source(29, 2) + SourceIndex(3) +3 >Emitted(66, 4) Source(20, 11) + SourceIndex(3) +4 >Emitted(66, 11) Source(20, 18) + SourceIndex(3) +5 >Emitted(66, 16) Source(20, 11) + SourceIndex(3) +6 >Emitted(66, 23) Source(20, 18) + SourceIndex(3) +7 >Emitted(66, 31) Source(29, 2) + SourceIndex(3) --- >>>var internalC = (function () { 1-> 2 >^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> >/*@internal*/ -1->Emitted(66, 1) Source(30, 15) + SourceIndex(3) +1->Emitted(67, 1) Source(30, 15) + SourceIndex(3) --- >>> function internalC() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(67, 5) Source(30, 15) + SourceIndex(3) +1->Emitted(68, 5) Source(30, 15) + SourceIndex(3) --- >>> } 1->^^^^ @@ -4536,16 +4541,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->class internalC { 2 > } -1->Emitted(68, 5) Source(30, 32) + SourceIndex(3) -2 >Emitted(68, 6) Source(30, 33) + SourceIndex(3) +1->Emitted(69, 5) Source(30, 32) + SourceIndex(3) +2 >Emitted(69, 6) Source(30, 33) + SourceIndex(3) --- >>> return internalC; 1->^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(69, 5) Source(30, 32) + SourceIndex(3) -2 >Emitted(69, 21) Source(30, 33) + SourceIndex(3) +1->Emitted(70, 5) Source(30, 32) + SourceIndex(3) +2 >Emitted(70, 21) Source(30, 33) + SourceIndex(3) --- >>>}()); 1 > @@ -4557,10 +4562,10 @@ sourceFile:../../../second/second_part1.ts 2 >} 3 > 4 > class internalC {} -1 >Emitted(70, 1) Source(30, 32) + SourceIndex(3) -2 >Emitted(70, 2) Source(30, 33) + SourceIndex(3) -3 >Emitted(70, 2) Source(30, 15) + SourceIndex(3) -4 >Emitted(70, 6) Source(30, 33) + SourceIndex(3) +1 >Emitted(71, 1) Source(30, 32) + SourceIndex(3) +2 >Emitted(71, 2) Source(30, 33) + SourceIndex(3) +3 >Emitted(71, 2) Source(30, 15) + SourceIndex(3) +4 >Emitted(71, 6) Source(30, 33) + SourceIndex(3) --- >>>function internalfoo() { } 1-> @@ -4574,11 +4579,11 @@ sourceFile:../../../second/second_part1.ts 3 > internalfoo 4 > () { 5 > } -1->Emitted(71, 1) Source(31, 15) + SourceIndex(3) -2 >Emitted(71, 10) Source(31, 24) + SourceIndex(3) -3 >Emitted(71, 21) Source(31, 35) + SourceIndex(3) -4 >Emitted(71, 26) Source(31, 39) + SourceIndex(3) -5 >Emitted(71, 27) Source(31, 40) + SourceIndex(3) +1->Emitted(72, 1) Source(31, 15) + SourceIndex(3) +2 >Emitted(72, 10) Source(31, 24) + SourceIndex(3) +3 >Emitted(72, 21) Source(31, 35) + SourceIndex(3) +4 >Emitted(72, 26) Source(31, 39) + SourceIndex(3) +5 >Emitted(72, 27) Source(31, 40) + SourceIndex(3) --- >>>var internalNamespace; 1 > @@ -4591,10 +4596,10 @@ sourceFile:../../../second/second_part1.ts 2 >namespace 3 > internalNamespace 4 > { export class someClass {} } -1 >Emitted(72, 1) Source(32, 15) + SourceIndex(3) -2 >Emitted(72, 5) Source(32, 25) + SourceIndex(3) -3 >Emitted(72, 22) Source(32, 42) + SourceIndex(3) -4 >Emitted(72, 23) Source(32, 72) + SourceIndex(3) +1 >Emitted(73, 1) Source(32, 15) + SourceIndex(3) +2 >Emitted(73, 5) Source(32, 25) + SourceIndex(3) +3 >Emitted(73, 22) Source(32, 42) + SourceIndex(3) +4 >Emitted(73, 23) Source(32, 72) + SourceIndex(3) --- >>>(function (internalNamespace) { 1-> @@ -4604,21 +4609,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > internalNamespace -1->Emitted(73, 1) Source(32, 15) + SourceIndex(3) -2 >Emitted(73, 12) Source(32, 25) + SourceIndex(3) -3 >Emitted(73, 29) Source(32, 42) + SourceIndex(3) +1->Emitted(74, 1) Source(32, 15) + SourceIndex(3) +2 >Emitted(74, 12) Source(32, 25) + SourceIndex(3) +3 >Emitted(74, 29) Source(32, 42) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(74, 5) Source(32, 45) + SourceIndex(3) +1->Emitted(75, 5) Source(32, 45) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(75, 9) Source(32, 45) + SourceIndex(3) +1->Emitted(76, 9) Source(32, 45) + SourceIndex(3) --- >>> } 1->^^^^^^^^ @@ -4626,16 +4631,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(76, 9) Source(32, 69) + SourceIndex(3) -2 >Emitted(76, 10) Source(32, 70) + SourceIndex(3) +1->Emitted(77, 9) Source(32, 69) + SourceIndex(3) +2 >Emitted(77, 10) Source(32, 70) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(77, 9) Source(32, 69) + SourceIndex(3) -2 >Emitted(77, 25) Source(32, 70) + SourceIndex(3) +1->Emitted(78, 9) Source(32, 69) + SourceIndex(3) +2 >Emitted(78, 25) Source(32, 70) + SourceIndex(3) --- >>> }()); 1 >^^^^ @@ -4647,10 +4652,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(78, 5) Source(32, 69) + SourceIndex(3) -2 >Emitted(78, 6) Source(32, 70) + SourceIndex(3) -3 >Emitted(78, 6) Source(32, 45) + SourceIndex(3) -4 >Emitted(78, 10) Source(32, 70) + SourceIndex(3) +1 >Emitted(79, 5) Source(32, 69) + SourceIndex(3) +2 >Emitted(79, 6) Source(32, 70) + SourceIndex(3) +3 >Emitted(79, 6) Source(32, 45) + SourceIndex(3) +4 >Emitted(79, 10) Source(32, 70) + SourceIndex(3) --- >>> internalNamespace.someClass = someClass; 1->^^^^ @@ -4662,10 +4667,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(79, 5) Source(32, 58) + SourceIndex(3) -2 >Emitted(79, 32) Source(32, 67) + SourceIndex(3) -3 >Emitted(79, 44) Source(32, 70) + SourceIndex(3) -4 >Emitted(79, 45) Source(32, 70) + SourceIndex(3) +1->Emitted(80, 5) Source(32, 58) + SourceIndex(3) +2 >Emitted(80, 32) Source(32, 67) + SourceIndex(3) +3 >Emitted(80, 44) Source(32, 70) + SourceIndex(3) +4 >Emitted(80, 45) Source(32, 70) + SourceIndex(3) --- >>>})(internalNamespace || (internalNamespace = {})); 1-> @@ -4682,13 +4687,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalNamespace 7 > { export class someClass {} } -1->Emitted(80, 1) Source(32, 71) + SourceIndex(3) -2 >Emitted(80, 2) Source(32, 72) + SourceIndex(3) -3 >Emitted(80, 4) Source(32, 25) + SourceIndex(3) -4 >Emitted(80, 21) Source(32, 42) + SourceIndex(3) -5 >Emitted(80, 26) Source(32, 25) + SourceIndex(3) -6 >Emitted(80, 43) Source(32, 42) + SourceIndex(3) -7 >Emitted(80, 51) Source(32, 72) + SourceIndex(3) +1->Emitted(81, 1) Source(32, 71) + SourceIndex(3) +2 >Emitted(81, 2) Source(32, 72) + SourceIndex(3) +3 >Emitted(81, 4) Source(32, 25) + SourceIndex(3) +4 >Emitted(81, 21) Source(32, 42) + SourceIndex(3) +5 >Emitted(81, 26) Source(32, 25) + SourceIndex(3) +6 >Emitted(81, 43) Source(32, 42) + SourceIndex(3) +7 >Emitted(81, 51) Source(32, 72) + SourceIndex(3) --- >>>var internalOther; 1 > @@ -4701,10 +4706,10 @@ sourceFile:../../../second/second_part1.ts 2 >namespace 3 > internalOther 4 > .something { export class someClass {} } -1 >Emitted(81, 1) Source(33, 15) + SourceIndex(3) -2 >Emitted(81, 5) Source(33, 25) + SourceIndex(3) -3 >Emitted(81, 18) Source(33, 38) + SourceIndex(3) -4 >Emitted(81, 19) Source(33, 78) + SourceIndex(3) +1 >Emitted(82, 1) Source(33, 15) + SourceIndex(3) +2 >Emitted(82, 5) Source(33, 25) + SourceIndex(3) +3 >Emitted(82, 18) Source(33, 38) + SourceIndex(3) +4 >Emitted(82, 19) Source(33, 78) + SourceIndex(3) --- >>>(function (internalOther) { 1-> @@ -4713,9 +4718,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >namespace 3 > internalOther -1->Emitted(82, 1) Source(33, 15) + SourceIndex(3) -2 >Emitted(82, 12) Source(33, 25) + SourceIndex(3) -3 >Emitted(82, 25) Source(33, 38) + SourceIndex(3) +1->Emitted(83, 1) Source(33, 15) + SourceIndex(3) +2 >Emitted(83, 12) Source(33, 25) + SourceIndex(3) +3 >Emitted(83, 25) Source(33, 38) + SourceIndex(3) --- >>> var something; 1 >^^^^ @@ -4727,10 +4732,10 @@ sourceFile:../../../second/second_part1.ts 2 > 3 > something 4 > { export class someClass {} } -1 >Emitted(83, 5) Source(33, 39) + SourceIndex(3) -2 >Emitted(83, 9) Source(33, 39) + SourceIndex(3) -3 >Emitted(83, 18) Source(33, 48) + SourceIndex(3) -4 >Emitted(83, 19) Source(33, 78) + SourceIndex(3) +1 >Emitted(84, 5) Source(33, 39) + SourceIndex(3) +2 >Emitted(84, 9) Source(33, 39) + SourceIndex(3) +3 >Emitted(84, 18) Source(33, 48) + SourceIndex(3) +4 >Emitted(84, 19) Source(33, 78) + SourceIndex(3) --- >>> (function (something) { 1->^^^^ @@ -4740,21 +4745,21 @@ sourceFile:../../../second/second_part1.ts 1-> 2 > 3 > something -1->Emitted(84, 5) Source(33, 39) + SourceIndex(3) -2 >Emitted(84, 16) Source(33, 39) + SourceIndex(3) -3 >Emitted(84, 25) Source(33, 48) + SourceIndex(3) +1->Emitted(85, 5) Source(33, 39) + SourceIndex(3) +2 >Emitted(85, 16) Source(33, 39) + SourceIndex(3) +3 >Emitted(85, 25) Source(33, 48) + SourceIndex(3) --- >>> var someClass = (function () { 1->^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> { -1->Emitted(85, 9) Source(33, 51) + SourceIndex(3) +1->Emitted(86, 9) Source(33, 51) + SourceIndex(3) --- >>> function someClass() { 1->^^^^^^^^^^^^ 2 > ^^-> 1-> -1->Emitted(86, 13) Source(33, 51) + SourceIndex(3) +1->Emitted(87, 13) Source(33, 51) + SourceIndex(3) --- >>> } 1->^^^^^^^^^^^^ @@ -4762,16 +4767,16 @@ sourceFile:../../../second/second_part1.ts 3 > ^^^^^^^^^^^^^^^^^-> 1->export class someClass { 2 > } -1->Emitted(87, 13) Source(33, 75) + SourceIndex(3) -2 >Emitted(87, 14) Source(33, 76) + SourceIndex(3) +1->Emitted(88, 13) Source(33, 75) + SourceIndex(3) +2 >Emitted(88, 14) Source(33, 76) + SourceIndex(3) --- >>> return someClass; 1->^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 1-> 2 > } -1->Emitted(88, 13) Source(33, 75) + SourceIndex(3) -2 >Emitted(88, 29) Source(33, 76) + SourceIndex(3) +1->Emitted(89, 13) Source(33, 75) + SourceIndex(3) +2 >Emitted(89, 29) Source(33, 76) + SourceIndex(3) --- >>> }()); 1 >^^^^^^^^ @@ -4783,10 +4788,10 @@ sourceFile:../../../second/second_part1.ts 2 > } 3 > 4 > export class someClass {} -1 >Emitted(89, 9) Source(33, 75) + SourceIndex(3) -2 >Emitted(89, 10) Source(33, 76) + SourceIndex(3) -3 >Emitted(89, 10) Source(33, 51) + SourceIndex(3) -4 >Emitted(89, 14) Source(33, 76) + SourceIndex(3) +1 >Emitted(90, 9) Source(33, 75) + SourceIndex(3) +2 >Emitted(90, 10) Source(33, 76) + SourceIndex(3) +3 >Emitted(90, 10) Source(33, 51) + SourceIndex(3) +4 >Emitted(90, 14) Source(33, 76) + SourceIndex(3) --- >>> something.someClass = someClass; 1->^^^^^^^^ @@ -4798,10 +4803,10 @@ sourceFile:../../../second/second_part1.ts 2 > someClass 3 > {} 4 > -1->Emitted(90, 9) Source(33, 64) + SourceIndex(3) -2 >Emitted(90, 28) Source(33, 73) + SourceIndex(3) -3 >Emitted(90, 40) Source(33, 76) + SourceIndex(3) -4 >Emitted(90, 41) Source(33, 76) + SourceIndex(3) +1->Emitted(91, 9) Source(33, 64) + SourceIndex(3) +2 >Emitted(91, 28) Source(33, 73) + SourceIndex(3) +3 >Emitted(91, 40) Source(33, 76) + SourceIndex(3) +4 >Emitted(91, 41) Source(33, 76) + SourceIndex(3) --- >>> })(something = internalOther.something || (internalOther.something = {})); 1->^^^^ @@ -4822,15 +4827,15 @@ sourceFile:../../../second/second_part1.ts 7 > 8 > something 9 > { export class someClass {} } -1->Emitted(91, 5) Source(33, 77) + SourceIndex(3) -2 >Emitted(91, 6) Source(33, 78) + SourceIndex(3) -3 >Emitted(91, 8) Source(33, 39) + SourceIndex(3) -4 >Emitted(91, 17) Source(33, 48) + SourceIndex(3) -5 >Emitted(91, 20) Source(33, 39) + SourceIndex(3) -6 >Emitted(91, 43) Source(33, 48) + SourceIndex(3) -7 >Emitted(91, 48) Source(33, 39) + SourceIndex(3) -8 >Emitted(91, 71) Source(33, 48) + SourceIndex(3) -9 >Emitted(91, 79) Source(33, 78) + SourceIndex(3) +1->Emitted(92, 5) Source(33, 77) + SourceIndex(3) +2 >Emitted(92, 6) Source(33, 78) + SourceIndex(3) +3 >Emitted(92, 8) Source(33, 39) + SourceIndex(3) +4 >Emitted(92, 17) Source(33, 48) + SourceIndex(3) +5 >Emitted(92, 20) Source(33, 39) + SourceIndex(3) +6 >Emitted(92, 43) Source(33, 48) + SourceIndex(3) +7 >Emitted(92, 48) Source(33, 39) + SourceIndex(3) +8 >Emitted(92, 71) Source(33, 48) + SourceIndex(3) +9 >Emitted(92, 79) Source(33, 78) + SourceIndex(3) --- >>>})(internalOther || (internalOther = {})); 1 > @@ -4848,13 +4853,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalOther 7 > .something { export class someClass {} } -1 >Emitted(92, 1) Source(33, 77) + SourceIndex(3) -2 >Emitted(92, 2) Source(33, 78) + SourceIndex(3) -3 >Emitted(92, 4) Source(33, 25) + SourceIndex(3) -4 >Emitted(92, 17) Source(33, 38) + SourceIndex(3) -5 >Emitted(92, 22) Source(33, 25) + SourceIndex(3) -6 >Emitted(92, 35) Source(33, 38) + SourceIndex(3) -7 >Emitted(92, 43) Source(33, 78) + SourceIndex(3) +1 >Emitted(93, 1) Source(33, 77) + SourceIndex(3) +2 >Emitted(93, 2) Source(33, 78) + SourceIndex(3) +3 >Emitted(93, 4) Source(33, 25) + SourceIndex(3) +4 >Emitted(93, 17) Source(33, 38) + SourceIndex(3) +5 >Emitted(93, 22) Source(33, 25) + SourceIndex(3) +6 >Emitted(93, 35) Source(33, 38) + SourceIndex(3) +7 >Emitted(93, 43) Source(33, 78) + SourceIndex(3) --- >>>var internalImport = internalNamespace.someClass; 1-> @@ -4874,14 +4879,14 @@ sourceFile:../../../second/second_part1.ts 6 > . 7 > someClass 8 > ; -1->Emitted(93, 1) Source(34, 15) + SourceIndex(3) -2 >Emitted(93, 5) Source(34, 22) + SourceIndex(3) -3 >Emitted(93, 19) Source(34, 36) + SourceIndex(3) -4 >Emitted(93, 22) Source(34, 39) + SourceIndex(3) -5 >Emitted(93, 39) Source(34, 56) + SourceIndex(3) -6 >Emitted(93, 40) Source(34, 57) + SourceIndex(3) -7 >Emitted(93, 49) Source(34, 66) + SourceIndex(3) -8 >Emitted(93, 50) Source(34, 67) + SourceIndex(3) +1->Emitted(94, 1) Source(34, 15) + SourceIndex(3) +2 >Emitted(94, 5) Source(34, 22) + SourceIndex(3) +3 >Emitted(94, 19) Source(34, 36) + SourceIndex(3) +4 >Emitted(94, 22) Source(34, 39) + SourceIndex(3) +5 >Emitted(94, 39) Source(34, 56) + SourceIndex(3) +6 >Emitted(94, 40) Source(34, 57) + SourceIndex(3) +7 >Emitted(94, 49) Source(34, 66) + SourceIndex(3) +8 >Emitted(94, 50) Source(34, 67) + SourceIndex(3) --- >>>var internalConst = 10; 1 > @@ -4898,12 +4903,12 @@ sourceFile:../../../second/second_part1.ts 4 > = 5 > 10 6 > ; -1 >Emitted(94, 1) Source(36, 15) + SourceIndex(3) -2 >Emitted(94, 5) Source(36, 21) + SourceIndex(3) -3 >Emitted(94, 18) Source(36, 34) + SourceIndex(3) -4 >Emitted(94, 21) Source(36, 37) + SourceIndex(3) -5 >Emitted(94, 23) Source(36, 39) + SourceIndex(3) -6 >Emitted(94, 24) Source(36, 40) + SourceIndex(3) +1 >Emitted(95, 1) Source(36, 15) + SourceIndex(3) +2 >Emitted(95, 5) Source(36, 21) + SourceIndex(3) +3 >Emitted(95, 18) Source(36, 34) + SourceIndex(3) +4 >Emitted(95, 21) Source(36, 37) + SourceIndex(3) +5 >Emitted(95, 23) Source(36, 39) + SourceIndex(3) +6 >Emitted(95, 24) Source(36, 40) + SourceIndex(3) --- >>>var internalEnum; 1 > @@ -4914,9 +4919,9 @@ sourceFile:../../../second/second_part1.ts >/*@internal*/ 2 >enum 3 > internalEnum { a, b, c } -1 >Emitted(95, 1) Source(37, 15) + SourceIndex(3) -2 >Emitted(95, 5) Source(37, 20) + SourceIndex(3) -3 >Emitted(95, 17) Source(37, 44) + SourceIndex(3) +1 >Emitted(96, 1) Source(37, 15) + SourceIndex(3) +2 >Emitted(96, 5) Source(37, 20) + SourceIndex(3) +3 >Emitted(96, 17) Source(37, 44) + SourceIndex(3) --- >>>(function (internalEnum) { 1-> @@ -4926,9 +4931,9 @@ sourceFile:../../../second/second_part1.ts 1-> 2 >enum 3 > internalEnum -1->Emitted(96, 1) Source(37, 15) + SourceIndex(3) -2 >Emitted(96, 12) Source(37, 20) + SourceIndex(3) -3 >Emitted(96, 24) Source(37, 32) + SourceIndex(3) +1->Emitted(97, 1) Source(37, 15) + SourceIndex(3) +2 >Emitted(97, 12) Source(37, 20) + SourceIndex(3) +3 >Emitted(97, 24) Source(37, 32) + SourceIndex(3) --- >>> internalEnum[internalEnum["a"] = 0] = "a"; 1->^^^^ @@ -4938,9 +4943,9 @@ sourceFile:../../../second/second_part1.ts 1-> { 2 > a 3 > -1->Emitted(97, 5) Source(37, 35) + SourceIndex(3) -2 >Emitted(97, 46) Source(37, 36) + SourceIndex(3) -3 >Emitted(97, 47) Source(37, 36) + SourceIndex(3) +1->Emitted(98, 5) Source(37, 35) + SourceIndex(3) +2 >Emitted(98, 46) Source(37, 36) + SourceIndex(3) +3 >Emitted(98, 47) Source(37, 36) + SourceIndex(3) --- >>> internalEnum[internalEnum["b"] = 1] = "b"; 1->^^^^ @@ -4950,9 +4955,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > b 3 > -1->Emitted(98, 5) Source(37, 38) + SourceIndex(3) -2 >Emitted(98, 46) Source(37, 39) + SourceIndex(3) -3 >Emitted(98, 47) Source(37, 39) + SourceIndex(3) +1->Emitted(99, 5) Source(37, 38) + SourceIndex(3) +2 >Emitted(99, 46) Source(37, 39) + SourceIndex(3) +3 >Emitted(99, 47) Source(37, 39) + SourceIndex(3) --- >>> internalEnum[internalEnum["c"] = 2] = "c"; 1->^^^^ @@ -4961,9 +4966,9 @@ sourceFile:../../../second/second_part1.ts 1->, 2 > c 3 > -1->Emitted(99, 5) Source(37, 41) + SourceIndex(3) -2 >Emitted(99, 46) Source(37, 42) + SourceIndex(3) -3 >Emitted(99, 47) Source(37, 42) + SourceIndex(3) +1->Emitted(100, 5) Source(37, 41) + SourceIndex(3) +2 >Emitted(100, 46) Source(37, 42) + SourceIndex(3) +3 >Emitted(100, 47) Source(37, 42) + SourceIndex(3) --- >>>})(internalEnum || (internalEnum = {})); 1 > @@ -4980,13 +4985,13 @@ sourceFile:../../../second/second_part1.ts 5 > 6 > internalEnum 7 > { a, b, c } -1 >Emitted(100, 1) Source(37, 43) + SourceIndex(3) -2 >Emitted(100, 2) Source(37, 44) + SourceIndex(3) -3 >Emitted(100, 4) Source(37, 20) + SourceIndex(3) -4 >Emitted(100, 16) Source(37, 32) + SourceIndex(3) -5 >Emitted(100, 21) Source(37, 20) + SourceIndex(3) -6 >Emitted(100, 33) Source(37, 32) + SourceIndex(3) -7 >Emitted(100, 41) Source(37, 44) + SourceIndex(3) +1 >Emitted(101, 1) Source(37, 43) + SourceIndex(3) +2 >Emitted(101, 2) Source(37, 44) + SourceIndex(3) +3 >Emitted(101, 4) Source(37, 20) + SourceIndex(3) +4 >Emitted(101, 16) Source(37, 32) + SourceIndex(3) +5 >Emitted(101, 21) Source(37, 20) + SourceIndex(3) +6 >Emitted(101, 33) Source(37, 32) + SourceIndex(3) +7 >Emitted(101, 41) Source(37, 44) + SourceIndex(3) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -4996,13 +5001,13 @@ sourceFile:../../../second/second_part2.ts 1 > 2 >^^^^^^^^^^^^^^^^^^^-> 1 > -1 >Emitted(101, 1) Source(1, 1) + SourceIndex(4) +1 >Emitted(102, 1) Source(1, 1) + SourceIndex(4) --- >>> function C() { 1->^^^^ 2 > ^^-> 1-> -1->Emitted(102, 5) Source(1, 1) + SourceIndex(4) +1->Emitted(103, 5) Source(1, 1) + SourceIndex(4) --- >>> } 1->^^^^ @@ -5014,8 +5019,8 @@ sourceFile:../../../second/second_part2.ts > } > 2 > } -1->Emitted(103, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(103, 6) Source(5, 2) + SourceIndex(4) +1->Emitted(104, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(104, 6) Source(5, 2) + SourceIndex(4) --- >>> C.prototype.doSomething = function () { 1->^^^^ @@ -5025,9 +5030,9 @@ sourceFile:../../../second/second_part2.ts 1-> 2 > doSomething 3 > -1->Emitted(104, 5) Source(2, 5) + SourceIndex(4) -2 >Emitted(104, 28) Source(2, 16) + SourceIndex(4) -3 >Emitted(104, 31) Source(2, 5) + SourceIndex(4) +1->Emitted(105, 5) Source(2, 5) + SourceIndex(4) +2 >Emitted(105, 28) Source(2, 16) + SourceIndex(4) +3 >Emitted(105, 31) Source(2, 5) + SourceIndex(4) --- >>> console.log("something got done"); 1->^^^^^^^^ @@ -5047,14 +5052,14 @@ sourceFile:../../../second/second_part2.ts 6 > "something got done" 7 > ) 8 > ; -1->Emitted(105, 9) Source(3, 9) + SourceIndex(4) -2 >Emitted(105, 16) Source(3, 16) + SourceIndex(4) -3 >Emitted(105, 17) Source(3, 17) + SourceIndex(4) -4 >Emitted(105, 20) Source(3, 20) + SourceIndex(4) -5 >Emitted(105, 21) Source(3, 21) + SourceIndex(4) -6 >Emitted(105, 41) Source(3, 41) + SourceIndex(4) -7 >Emitted(105, 42) Source(3, 42) + SourceIndex(4) -8 >Emitted(105, 43) Source(3, 43) + SourceIndex(4) +1->Emitted(106, 9) Source(3, 9) + SourceIndex(4) +2 >Emitted(106, 16) Source(3, 16) + SourceIndex(4) +3 >Emitted(106, 17) Source(3, 17) + SourceIndex(4) +4 >Emitted(106, 20) Source(3, 20) + SourceIndex(4) +5 >Emitted(106, 21) Source(3, 21) + SourceIndex(4) +6 >Emitted(106, 41) Source(3, 41) + SourceIndex(4) +7 >Emitted(106, 42) Source(3, 42) + SourceIndex(4) +8 >Emitted(106, 43) Source(3, 43) + SourceIndex(4) --- >>> }; 1 >^^^^ @@ -5063,8 +5068,8 @@ sourceFile:../../../second/second_part2.ts 1 > > 2 > } -1 >Emitted(106, 5) Source(4, 5) + SourceIndex(4) -2 >Emitted(106, 6) Source(4, 6) + SourceIndex(4) +1 >Emitted(107, 5) Source(4, 5) + SourceIndex(4) +2 >Emitted(107, 6) Source(4, 6) + SourceIndex(4) --- >>> return C; 1->^^^^ @@ -5072,8 +5077,8 @@ sourceFile:../../../second/second_part2.ts 1-> > 2 > } -1->Emitted(107, 5) Source(5, 1) + SourceIndex(4) -2 >Emitted(107, 13) Source(5, 2) + SourceIndex(4) +1->Emitted(108, 5) Source(5, 1) + SourceIndex(4) +2 >Emitted(108, 13) Source(5, 2) + SourceIndex(4) --- >>>}()); 1 > @@ -5089,10 +5094,10 @@ sourceFile:../../../second/second_part2.ts > console.log("something got done"); > } > } -1 >Emitted(108, 1) Source(5, 1) + SourceIndex(4) -2 >Emitted(108, 2) Source(5, 2) + SourceIndex(4) -3 >Emitted(108, 2) Source(1, 1) + SourceIndex(4) -4 >Emitted(108, 6) Source(5, 2) + SourceIndex(4) +1 >Emitted(109, 1) Source(5, 1) + SourceIndex(4) +2 >Emitted(109, 2) Source(5, 2) + SourceIndex(4) +3 >Emitted(109, 2) Source(1, 1) + SourceIndex(4) +4 >Emitted(109, 6) Source(5, 2) + SourceIndex(4) --- ------------------------------------------------------------------- emittedFile:/src/third/thirdjs/output/third-output.js @@ -5116,14 +5121,14 @@ sourceFile:../../third_part1.ts 6 > C 7 > () 8 > ; -1->Emitted(109, 1) Source(1, 1) + SourceIndex(5) -2 >Emitted(109, 5) Source(1, 5) + SourceIndex(5) -3 >Emitted(109, 6) Source(1, 6) + SourceIndex(5) -4 >Emitted(109, 9) Source(1, 9) + SourceIndex(5) -5 >Emitted(109, 13) Source(1, 13) + SourceIndex(5) -6 >Emitted(109, 14) Source(1, 14) + SourceIndex(5) -7 >Emitted(109, 16) Source(1, 16) + SourceIndex(5) -8 >Emitted(109, 17) Source(1, 17) + SourceIndex(5) +1->Emitted(110, 1) Source(1, 1) + SourceIndex(5) +2 >Emitted(110, 5) Source(1, 5) + SourceIndex(5) +3 >Emitted(110, 6) Source(1, 6) + SourceIndex(5) +4 >Emitted(110, 9) Source(1, 9) + SourceIndex(5) +5 >Emitted(110, 13) Source(1, 13) + SourceIndex(5) +6 >Emitted(110, 14) Source(1, 14) + SourceIndex(5) +7 >Emitted(110, 16) Source(1, 16) + SourceIndex(5) +8 >Emitted(110, 17) Source(1, 17) + SourceIndex(5) --- >>>c.doSomething(); 1-> @@ -5140,12 +5145,12 @@ sourceFile:../../third_part1.ts 4 > doSomething 5 > () 6 > ; -1->Emitted(110, 1) Source(2, 1) + SourceIndex(5) -2 >Emitted(110, 2) Source(2, 2) + SourceIndex(5) -3 >Emitted(110, 3) Source(2, 3) + SourceIndex(5) -4 >Emitted(110, 14) Source(2, 14) + SourceIndex(5) -5 >Emitted(110, 16) Source(2, 16) + SourceIndex(5) -6 >Emitted(110, 17) Source(2, 17) + SourceIndex(5) +1->Emitted(111, 1) Source(2, 1) + SourceIndex(5) +2 >Emitted(111, 2) Source(2, 2) + SourceIndex(5) +3 >Emitted(111, 3) Source(2, 3) + SourceIndex(5) +4 >Emitted(111, 14) Source(2, 14) + SourceIndex(5) +5 >Emitted(111, 16) Source(2, 16) + SourceIndex(5) +6 >Emitted(111, 17) Source(2, 17) + SourceIndex(5) --- >>>//# sourceMappingURL=third-output.js.map @@ -5173,20 +5178,20 @@ sourceFile:../../third_part1.ts }, { "pos": 110, - "end": 3163, + "end": 3211, "kind": "prepend", "data": "../../../2/second-output.js", "texts": [ { "pos": 110, - "end": 3163, + "end": 3211, "kind": "text" } ] }, { - "pos": 3163, - "end": 3199, + "pos": 3211, + "end": 3247, "kind": "text" } ] @@ -5245,9 +5250,9 @@ function f() { } ---------------------------------------------------------------------- -prepend: (110-3163):: ../../../2/second-output.js texts:: 1 +prepend: (110-3211):: ../../../2/second-output.js texts:: 1 >>-------------------------------------------------------------------- -text: (110-3163) +text: (110-3211) var N; (function (N) { function f() { @@ -5258,8 +5263,9 @@ var N; var normalC = (function () { function normalC() { } - normalC.prototype.method = function () { }; - Object.defineProperty(normalC.prototype, "c", { + var normalC_prototype = normalC.prototype; + normalC_prototype.method = function () { }; + Object.defineProperty(normalC_prototype, "c", { get: function () { return 10; }, set: function (val) { }, enumerable: false, @@ -5352,7 +5358,7 @@ var C = (function () { }()); ---------------------------------------------------------------------- -text: (3163-3199) +text: (3211-3247) var c = new C(); c.doSomething(); diff --git a/tests/baselines/reference/tsxUnionElementType3.js b/tests/baselines/reference/tsxUnionElementType3.js index 98ded85f5100b..34d8deeefa7e5 100644 --- a/tests/baselines/reference/tsxUnionElementType3.js +++ b/tests/baselines/reference/tsxUnionElementType3.js @@ -70,10 +70,11 @@ var RC2 = /** @class */ (function (_super) { function RC2() { return _super !== null && _super.apply(this, arguments) || this; } - RC2.prototype.render = function () { + var RC2_prototype = RC2.prototype; + RC2_prototype.render = function () { return null; }; - RC2.prototype.method = function () { }; + RC2_prototype.method = function () { }; return RC2; }(React.Component)); var RC3 = /** @class */ (function (_super) { diff --git a/tests/baselines/reference/tsxUnionElementType4.js b/tests/baselines/reference/tsxUnionElementType4.js index eab01d689f731..fd4782b4aca12 100644 --- a/tests/baselines/reference/tsxUnionElementType4.js +++ b/tests/baselines/reference/tsxUnionElementType4.js @@ -69,10 +69,11 @@ var RC2 = /** @class */ (function (_super) { function RC2() { return _super !== null && _super.apply(this, arguments) || this; } - RC2.prototype.render = function () { + var RC2_prototype = RC2.prototype; + RC2_prototype.render = function () { return null; }; - RC2.prototype.method = function () { }; + RC2_prototype.method = function () { }; return RC2; }(React.Component)); var RC3 = /** @class */ (function (_super) { diff --git a/tests/baselines/reference/typeGuardFunctionErrors.js b/tests/baselines/reference/typeGuardFunctionErrors.js index 00e7e673b4a23..fe76f880c98dd 100644 --- a/tests/baselines/reference/typeGuardFunctionErrors.js +++ b/tests/baselines/reference/typeGuardFunctionErrors.js @@ -272,14 +272,15 @@ var D = /** @class */ (function () { function D(p1) { return true; } - Object.defineProperty(D.prototype, "m1", { + var D_prototype = D.prototype; + Object.defineProperty(D_prototype, "m1", { get: function (p1) { return true; }, enumerable: false, configurable: true }); - Object.defineProperty(D.prototype, "m2", { + Object.defineProperty(D_prototype, "m2", { set: function (p1) { return true; }, diff --git a/tests/baselines/reference/typeGuardFunctionOfFormThis.js b/tests/baselines/reference/typeGuardFunctionOfFormThis.js index 20709fb2ab80b..f1af886f61386 100644 --- a/tests/baselines/reference/typeGuardFunctionOfFormThis.js +++ b/tests/baselines/reference/typeGuardFunctionOfFormThis.js @@ -160,10 +160,11 @@ var __extends = (this && this.__extends) || (function () { var RoyalGuard = /** @class */ (function () { function RoyalGuard() { } - RoyalGuard.prototype.isLeader = function () { + var RoyalGuard_prototype = RoyalGuard.prototype; + RoyalGuard_prototype.isLeader = function () { return this instanceof LeadGuard; }; - RoyalGuard.prototype.isFollower = function () { + RoyalGuard_prototype.isFollower = function () { return this instanceof FollowerGuard; }; return RoyalGuard; @@ -173,7 +174,8 @@ var LeadGuard = /** @class */ (function (_super) { function LeadGuard() { return _super !== null && _super.apply(this, arguments) || this; } - LeadGuard.prototype.lead = function () { }; + var LeadGuard_prototype = LeadGuard.prototype; + LeadGuard_prototype.lead = function () { }; ; return LeadGuard; }(RoyalGuard)); @@ -182,7 +184,8 @@ var FollowerGuard = /** @class */ (function (_super) { function FollowerGuard() { return _super !== null && _super.apply(this, arguments) || this; } - FollowerGuard.prototype.follow = function () { }; + var FollowerGuard_prototype = FollowerGuard.prototype; + FollowerGuard_prototype.follow = function () { }; ; return FollowerGuard; }(RoyalGuard)); @@ -267,9 +270,10 @@ a.isLeader = b.isLeader; var MimicGuard = /** @class */ (function () { function MimicGuard() { } - MimicGuard.prototype.isLeader = function () { return this instanceof MimicLeader; }; + var MimicGuard_prototype = MimicGuard.prototype; + MimicGuard_prototype.isLeader = function () { return this instanceof MimicLeader; }; ; - MimicGuard.prototype.isFollower = function () { return this instanceof MimicFollower; }; + MimicGuard_prototype.isFollower = function () { return this instanceof MimicFollower; }; ; return MimicGuard; }()); diff --git a/tests/baselines/reference/typeGuardFunctionOfFormThisErrors.js b/tests/baselines/reference/typeGuardFunctionOfFormThisErrors.js index aed57e46ebb0e..746227063688a 100644 --- a/tests/baselines/reference/typeGuardFunctionOfFormThisErrors.js +++ b/tests/baselines/reference/typeGuardFunctionOfFormThisErrors.js @@ -78,10 +78,11 @@ var __extends = (this && this.__extends) || (function () { var RoyalGuard = /** @class */ (function () { function RoyalGuard() { } - RoyalGuard.prototype.isLeader = function () { + var RoyalGuard_prototype = RoyalGuard.prototype; + RoyalGuard_prototype.isLeader = function () { return this instanceof LeadGuard; }; - RoyalGuard.prototype.isFollower = function () { + RoyalGuard_prototype.isFollower = function () { return this instanceof FollowerGuard; }; return RoyalGuard; @@ -91,7 +92,8 @@ var LeadGuard = /** @class */ (function (_super) { function LeadGuard() { return _super !== null && _super.apply(this, arguments) || this; } - LeadGuard.prototype.lead = function () { }; + var LeadGuard_prototype = LeadGuard.prototype; + LeadGuard_prototype.lead = function () { }; ; return LeadGuard; }(RoyalGuard)); @@ -100,7 +102,8 @@ var FollowerGuard = /** @class */ (function (_super) { function FollowerGuard() { return _super !== null && _super.apply(this, arguments) || this; } - FollowerGuard.prototype.follow = function () { }; + var FollowerGuard_prototype = FollowerGuard.prototype; + FollowerGuard_prototype.follow = function () { }; ; return FollowerGuard; }(RoyalGuard)); diff --git a/tests/baselines/reference/typeGuardOfFormThisMember.js b/tests/baselines/reference/typeGuardOfFormThisMember.js index a3943eefb29df..0fc58eb0e47f6 100644 --- a/tests/baselines/reference/typeGuardOfFormThisMember.js +++ b/tests/baselines/reference/typeGuardOfFormThisMember.js @@ -105,7 +105,8 @@ var Test; function FileSystemObject(path) { this.path = path; } - Object.defineProperty(FileSystemObject.prototype, "isFile", { + var FileSystemObject_prototype = FileSystemObject.prototype; + Object.defineProperty(FileSystemObject_prototype, "isFile", { get: function () { return this instanceof File; }, @@ -115,7 +116,7 @@ var Test; enumerable: false, configurable: true }); - Object.defineProperty(FileSystemObject.prototype, "isDirectory", { + Object.defineProperty(FileSystemObject_prototype, "isDirectory", { get: function () { return this instanceof Directory; }, diff --git a/tests/baselines/reference/typeGuardOfFormThisMemberErrors.js b/tests/baselines/reference/typeGuardOfFormThisMemberErrors.js index b474e0fbf65f9..8d849677a0afa 100644 --- a/tests/baselines/reference/typeGuardOfFormThisMemberErrors.js +++ b/tests/baselines/reference/typeGuardOfFormThisMemberErrors.js @@ -55,7 +55,8 @@ var Test; function FileSystemObject(path) { this.path = path; } - Object.defineProperty(FileSystemObject.prototype, "isFile", { + var FileSystemObject_prototype = FileSystemObject.prototype; + Object.defineProperty(FileSystemObject_prototype, "isFile", { get: function () { return this instanceof File; }, @@ -65,7 +66,7 @@ var Test; enumerable: false, configurable: true }); - Object.defineProperty(FileSystemObject.prototype, "isDirectory", { + Object.defineProperty(FileSystemObject_prototype, "isDirectory", { get: function () { return this instanceof Directory; }, diff --git a/tests/baselines/reference/typeGuardsInClassAccessors.js b/tests/baselines/reference/typeGuardsInClassAccessors.js index 9ed4288805fc5..420832270c214 100644 --- a/tests/baselines/reference/typeGuardsInClassAccessors.js +++ b/tests/baselines/reference/typeGuardsInClassAccessors.js @@ -112,7 +112,8 @@ var var1; var ClassWithAccessors = /** @class */ (function () { function ClassWithAccessors() { } - Object.defineProperty(ClassWithAccessors.prototype, "p1", { + var ClassWithAccessors_prototype = ClassWithAccessors.prototype; + Object.defineProperty(ClassWithAccessors_prototype, "p1", { // Inside public accessor getter get: function () { // global vars in function declaration @@ -135,7 +136,7 @@ var ClassWithAccessors = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(ClassWithAccessors.prototype, "pp1", { + Object.defineProperty(ClassWithAccessors_prototype, "pp1", { // Inside private accessor getter get: function () { // global vars in function declaration diff --git a/tests/baselines/reference/typeGuardsInClassMethods.js b/tests/baselines/reference/typeGuardsInClassMethods.js index 2e978d960d0d7..5dfa45246ee7b 100644 --- a/tests/baselines/reference/typeGuardsInClassMethods.js +++ b/tests/baselines/reference/typeGuardsInClassMethods.js @@ -84,8 +84,9 @@ var C1 = /** @class */ (function () { // parameters in function declaration num = typeof param === "string" && param.length; // string } + var C1_prototype = C1.prototype; // Inside function declaration - C1.prototype.p1 = function (param) { + C1_prototype.p1 = function (param) { // global vars in function declaration num = typeof var1 === "string" && var1.length; // string // variables in function declaration @@ -95,7 +96,7 @@ var C1 = /** @class */ (function () { num = typeof param === "string" && param.length; // string }; // Inside function declaration - C1.prototype.p2 = function (param) { + C1_prototype.p2 = function (param) { // global vars in function declaration num = typeof var1 === "string" && var1.length; // string // variables in function declaration diff --git a/tests/baselines/reference/typeGuardsInProperties.js b/tests/baselines/reference/typeGuardsInProperties.js index b1f9f57da5ebf..f3748214ab944 100644 --- a/tests/baselines/reference/typeGuardsInProperties.js +++ b/tests/baselines/reference/typeGuardsInProperties.js @@ -33,7 +33,8 @@ var strOrNum; var C1 = /** @class */ (function () { function C1() { } - Object.defineProperty(C1.prototype, "pp3", { + var C1_prototype = C1.prototype; + Object.defineProperty(C1_prototype, "pp3", { // Inside public accessor getter get: function () { return strOrNum; @@ -41,7 +42,7 @@ var C1 = /** @class */ (function () { enumerable: false, configurable: true }); - C1.prototype.method = function () { + C1_prototype.method = function () { strOrNum = typeof this.pp1 === "string" && this.pp1; // string | number strOrNum = typeof this.pp2 === "string" && this.pp2; // string | number strOrNum = typeof this.pp3 === "string" && this.pp3; // string | number diff --git a/tests/baselines/reference/typeGuardsOnClassProperty.js b/tests/baselines/reference/typeGuardsOnClassProperty.js index accc61a3deb49..941b48548b078 100644 --- a/tests/baselines/reference/typeGuardsOnClassProperty.js +++ b/tests/baselines/reference/typeGuardsOnClassProperty.js @@ -36,11 +36,12 @@ if (typeof prop1 === "string" && prop1.toLocaleLowerCase()) { } var D = /** @class */ (function () { function D() { } - D.prototype.getData = function () { + var D_prototype = D.prototype; + D_prototype.getData = function () { var data = this.data; return typeof data === "string" ? data : data.join(" "); }; - D.prototype.getData1 = function () { + D_prototype.getData1 = function () { return typeof this.data === "string" ? this.data : this.data.join(" "); }; return D; diff --git a/tests/baselines/reference/typeInferenceReturnTypeCallback.js b/tests/baselines/reference/typeInferenceReturnTypeCallback.js index 54e4d85aab13d..ab9c14856d8df 100644 --- a/tests/baselines/reference/typeInferenceReturnTypeCallback.js +++ b/tests/baselines/reference/typeInferenceReturnTypeCallback.js @@ -33,12 +33,13 @@ var Nil = /** @class */ (function () { var Cons = /** @class */ (function () { function Cons() { } - Cons.prototype.map = function (f) { + var Cons_prototype = Cons.prototype; + Cons_prototype.map = function (f) { return this.foldRight(new Nil(), function (t, acc) { return new Cons(); }); }; - Cons.prototype.foldRight = function (z, f) { + Cons_prototype.foldRight = function (z, f) { return null; }; return Cons; diff --git a/tests/baselines/reference/typeOfThisInInstanceMember.js b/tests/baselines/reference/typeOfThisInInstanceMember.js index 7e7f13c03310a..890ea9378c8d7 100644 --- a/tests/baselines/reference/typeOfThisInInstanceMember.js +++ b/tests/baselines/reference/typeOfThisInInstanceMember.js @@ -41,10 +41,11 @@ var C = /** @class */ (function () { t.z; var r = t.foo(); } - C.prototype.foo = function () { + var C_prototype = C.prototype; + C_prototype.foo = function () { return this; }; - Object.defineProperty(C.prototype, "y", { + Object.defineProperty(C_prototype, "y", { get: function () { return this; }, diff --git a/tests/baselines/reference/typeOfThisInInstanceMember2.js b/tests/baselines/reference/typeOfThisInInstanceMember2.js index c168319b979b4..172ba2b274783 100644 --- a/tests/baselines/reference/typeOfThisInInstanceMember2.js +++ b/tests/baselines/reference/typeOfThisInInstanceMember2.js @@ -45,10 +45,11 @@ var C = /** @class */ (function () { t.z; var r = t.foo(); } - C.prototype.foo = function () { + var C_prototype = C.prototype; + C_prototype.foo = function () { return this; }; - Object.defineProperty(C.prototype, "y", { + Object.defineProperty(C_prototype, "y", { get: function () { return this; }, diff --git a/tests/baselines/reference/typeParametersAreIdenticalToThemselves.js b/tests/baselines/reference/typeParametersAreIdenticalToThemselves.js index 58f07dd085be8..77692325c56d9 100644 --- a/tests/baselines/reference/typeParametersAreIdenticalToThemselves.js +++ b/tests/baselines/reference/typeParametersAreIdenticalToThemselves.js @@ -87,17 +87,19 @@ function foo3(x, y) { var C = /** @class */ (function () { function C() { } - C.prototype.foo1 = function (x) { }; - C.prototype.foo2 = function (a, x) { }; - C.prototype.foo3 = function (x) { }; - C.prototype.foo4 = function (x) { }; + var C_prototype = C.prototype; + C_prototype.foo1 = function (x) { }; + C_prototype.foo2 = function (a, x) { }; + C_prototype.foo3 = function (x) { }; + C_prototype.foo4 = function (x) { }; return C; }()); var C2 = /** @class */ (function () { function C2() { } - C2.prototype.foo1 = function (x) { }; - C2.prototype.foo2 = function (a, x) { }; - C2.prototype.foo3 = function (x) { }; + var C2_prototype = C2.prototype; + C2_prototype.foo1 = function (x) { }; + C2_prototype.foo2 = function (a, x) { }; + C2_prototype.foo3 = function (x) { }; return C2; }()); diff --git a/tests/baselines/reference/typeQueryOnClass.js b/tests/baselines/reference/typeQueryOnClass.js index 2e99e21a1f26f..d80ca1ce42778 100644 --- a/tests/baselines/reference/typeQueryOnClass.js +++ b/tests/baselines/reference/typeQueryOnClass.js @@ -64,6 +64,7 @@ var C = /** @class */ (function () { this.ia = 1; this.ib = function () { return _this.ia; }; } + var C_prototype = C.prototype; C.foo = function (x) { }; C.bar = function (x) { }; Object.defineProperty(C, "sc", { @@ -82,8 +83,8 @@ var C = /** @class */ (function () { enumerable: false, configurable: true }); - C.prototype.baz = function (x) { return ''; }; - Object.defineProperty(C.prototype, "ic", { + C_prototype.baz = function (x) { return ''; }; + Object.defineProperty(C_prototype, "ic", { get: function () { return 1; }, @@ -92,7 +93,7 @@ var C = /** @class */ (function () { enumerable: false, configurable: true }); - Object.defineProperty(C.prototype, "id", { + Object.defineProperty(C_prototype, "id", { get: function () { return 1; }, diff --git a/tests/baselines/reference/typeQueryWithReservedWords.js b/tests/baselines/reference/typeQueryWithReservedWords.js index 092f359d29595..b60347f6bba04 100644 --- a/tests/baselines/reference/typeQueryWithReservedWords.js +++ b/tests/baselines/reference/typeQueryWithReservedWords.js @@ -19,11 +19,12 @@ interface IScope { var Controller = /** @class */ (function () { function Controller() { } - Controller.prototype.create = function () { + var Controller_prototype = Controller.prototype; + Controller_prototype.create = function () { }; - Controller.prototype["delete"] = function () { + Controller_prototype["delete"] = function () { }; - Controller.prototype["var"] = function () { + Controller_prototype["var"] = function () { }; return Controller; }()); diff --git a/tests/baselines/reference/typeRelationships.js b/tests/baselines/reference/typeRelationships.js index 66bae80bf0afe..bab1c02e7138a 100644 --- a/tests/baselines/reference/typeRelationships.js +++ b/tests/baselines/reference/typeRelationships.js @@ -61,20 +61,21 @@ var C = /** @class */ (function () { this.self = this; this.c = new C(); } - C.prototype.foo = function () { + var C_prototype = C.prototype; + C_prototype.foo = function () { return this; }; - C.prototype.f1 = function () { + C_prototype.f1 = function () { this.c = this.self; this.self = this.c; // Error }; - C.prototype.f2 = function () { + C_prototype.f2 = function () { var a; var a = [this, this.c]; // C[] since this is subtype of C var b; var b = [this, this.self, null, undefined]; }; - C.prototype.f3 = function (b) { + C_prototype.f3 = function (b) { return b ? this.c : this.self; // Should be C }; return C; diff --git a/tests/baselines/reference/unspecializedConstraints.js b/tests/baselines/reference/unspecializedConstraints.js index e5a745ed026bf..be90d292a291f 100644 --- a/tests/baselines/reference/unspecializedConstraints.js +++ b/tests/baselines/reference/unspecializedConstraints.js @@ -181,7 +181,8 @@ var ts; function Type() { return _super !== null && _super.apply(this, arguments) || this; } - Type.prototype.equals = function (that) { + var Type_prototype = Type.prototype; + Type_prototype.equals = function (that) { if (this === that) return true; if (!(this.isObjectType() && that.isObjectType())) @@ -206,37 +207,37 @@ var ts; } return true; }; - Type.prototype.getProperties = function () { + Type_prototype.getProperties = function () { return []; }; - Type.prototype.getProperty = function (index) { + Type_prototype.getProperty = function (index) { return undefined; }; - Type.prototype.getPropertyByName = function (name) { + Type_prototype.getPropertyByName = function (name) { return undefined; }; - Type.prototype.getPropertyCount = function () { + Type_prototype.getPropertyCount = function () { return 0; }; - Type.prototype.getSignature = function (index) { + Type_prototype.getSignature = function (index) { return undefined; }; - Type.prototype.getSignatureCount = function () { + Type_prototype.getSignatureCount = function () { return 0; }; - Type.prototype.getSignatures = function () { + Type_prototype.getSignatures = function () { return []; }; - Type.prototype.isPrimitive = function () { + Type_prototype.isPrimitive = function () { return false; }; - Type.prototype.isObjectType = function () { + Type_prototype.isObjectType = function () { return false; }; - Type.prototype.isTypeParameter = function () { + Type_prototype.isTypeParameter = function () { return false; }; - Type.prototype.isSubTypeOf = function (type) { + Type_prototype.isSubTypeOf = function (type) { }; return Type; }(Symbol)); @@ -270,13 +271,14 @@ var ts; _this.returnType = returnType; return _this; } - Signature.prototype.equalsNoReturn = function (other) { + var Signature_prototype = Signature.prototype; + Signature_prototype.equalsNoReturn = function (other) { return this.parameters.length === other.parameters.length && this.typeParameters.length === other.typeParameters.length && arrayEquals(this.parameters, other.parameters) && arrayEquals(this.typeParameters, other.typeParameters); }; - Signature.prototype.equals = function (other) { + Signature_prototype.equals = function (other) { return this.equalsNoReturn(other) && this.returnType.equals(other.returnType); }; diff --git a/tests/baselines/reference/unusedIdentifiersConsolidated1.js b/tests/baselines/reference/unusedIdentifiersConsolidated1.js index d2d7b9fb37da9..53b53beb0e5f6 100644 --- a/tests/baselines/reference/unusedIdentifiersConsolidated1.js +++ b/tests/baselines/reference/unusedIdentifiersConsolidated1.js @@ -125,13 +125,14 @@ var Dummy = /** @class */ (function () { var unused2 = 22; this.greeting = "Dummy Message"; } - Dummy.prototype.greeter = function (person) { + var Dummy_prototype = Dummy.prototype; + Dummy_prototype.greeter = function (person) { var unused = 20; this.usedPrivateFunction(); }; - Dummy.prototype.usedPrivateFunction = function () { + Dummy_prototype.usedPrivateFunction = function () { }; - Dummy.prototype.unUsedPrivateFunction = function () { + Dummy_prototype.unUsedPrivateFunction = function () { }; return Dummy; }()); @@ -144,10 +145,11 @@ var Validation; var LettersOnlyValidator = /** @class */ (function () { function LettersOnlyValidator() { } - LettersOnlyValidator.prototype.isAcceptable = function (s2) { + var LettersOnlyValidator_prototype = LettersOnlyValidator.prototype; + LettersOnlyValidator_prototype.isAcceptable = function (s2) { return lettersRegexp.test(s2); }; - LettersOnlyValidator.prototype.unUsedPrivateFunction = function () { + LettersOnlyValidator_prototype.unUsedPrivateFunction = function () { }; return LettersOnlyValidator; }()); diff --git a/tests/baselines/reference/unusedLocalsAndParameters.js b/tests/baselines/reference/unusedLocalsAndParameters.js index 600dbce98f203..8309cf22afbe3 100644 --- a/tests/baselines/reference/unusedLocalsAndParameters.js +++ b/tests/baselines/reference/unusedLocalsAndParameters.js @@ -103,10 +103,11 @@ var farrow = function (a) { var C = /** @class */ (function () { function C() { } + var C_prototype = C.prototype; // Method declaration paramter - C.prototype.method = function (a) { + C_prototype.method = function (a) { }; - Object.defineProperty(C.prototype, "x", { + Object.defineProperty(C_prototype, "x", { // Accessor declaration paramter set: function (v) { }, @@ -118,10 +119,11 @@ var C = /** @class */ (function () { var E = /** @class */ (function () { function class_1() { } + var proto = class_1.prototype; // Method declaration paramter - class_1.prototype.method = function (a) { + proto.method = function (a) { }; - Object.defineProperty(class_1.prototype, "x", { + Object.defineProperty(proto, "x", { // Accessor declaration paramter set: function (v) { }, diff --git a/tests/baselines/reference/unusedLocalsAndParametersDeferred.js b/tests/baselines/reference/unusedLocalsAndParametersDeferred.js index d17602921677e..a4567e9a1ac07 100644 --- a/tests/baselines/reference/unusedLocalsAndParametersDeferred.js +++ b/tests/baselines/reference/unusedLocalsAndParametersDeferred.js @@ -194,13 +194,14 @@ var C = /** @class */ (function () { prop1; }); } + var C_prototype = C.prototype; // Method declaration paramter - C.prototype.method = function (a) { + C_prototype.method = function (a) { defered(function () { a; }); }; - Object.defineProperty(C.prototype, "x", { + Object.defineProperty(C_prototype, "x", { // Accessor declaration paramter set: function (v) { defered(function () { @@ -221,13 +222,14 @@ var E = /** @class */ (function () { prop2; }); } + var proto = class_1.prototype; // Method declaration paramter - class_1.prototype.method = function (a) { + proto.method = function (a) { defered(function () { a; }); }; - Object.defineProperty(class_1.prototype, "x", { + Object.defineProperty(proto, "x", { // Accessor declaration paramter set: function (v) { defered(function () { diff --git a/tests/baselines/reference/unusedParametersThis.js b/tests/baselines/reference/unusedParametersThis.js index 590fffd7d53c3..76d964faac472 100644 --- a/tests/baselines/reference/unusedParametersThis.js +++ b/tests/baselines/reference/unusedParametersThis.js @@ -37,18 +37,19 @@ var f2 = function f2(this: A): number { var A = /** @class */ (function () { function A() { } - A.prototype.method = function () { + var A_prototype = A.prototype; + A_prototype.method = function () { return this.a; }; - A.prototype.method2 = function () { + A_prototype.method2 = function () { return this.a; }; - A.prototype.method3 = function () { + A_prototype.method3 = function () { var _this = this; var fn = function () { return _this.a; }; return fn(); }; - A.prototype.method4 = function () { + A_prototype.method4 = function () { var _this = this; var fn = function () { return _this.a; }; return fn(); diff --git a/tests/baselines/reference/unusedPrivateMembers.js b/tests/baselines/reference/unusedPrivateMembers.js index 999388416b749..742d46ae6ff53 100644 --- a/tests/baselines/reference/unusedPrivateMembers.js +++ b/tests/baselines/reference/unusedPrivateMembers.js @@ -68,9 +68,10 @@ class Test6 { var Test1 = /** @class */ (function () { function Test1() { } - Test1.prototype.initializeInternal = function () { + var Test1_prototype = Test1.prototype; + Test1_prototype.initializeInternal = function () { }; - Test1.prototype.test = function () { + Test1_prototype.test = function () { var x = new Test1(); x.initializeInternal(); }; @@ -89,14 +90,15 @@ var Test2 = /** @class */ (function () { var Test3 = /** @class */ (function () { function Test3() { } - Object.defineProperty(Test3.prototype, "x", { + var Test3_prototype = Test3.prototype; + Object.defineProperty(Test3_prototype, "x", { get: function () { return 0; }, enumerable: false, configurable: true }); - Test3.prototype.test = function () { + Test3_prototype.test = function () { var x = new Test3(); x.x; }; @@ -105,14 +107,15 @@ var Test3 = /** @class */ (function () { var Test4 = /** @class */ (function () { function Test4() { } - Object.defineProperty(Test4.prototype, "x", { + var Test4_prototype = Test4.prototype; + Object.defineProperty(Test4_prototype, "x", { set: function (v) { v; }, enumerable: false, configurable: true }); - Test4.prototype.test = function () { + Test4_prototype.test = function () { var x = new Test4(); x.x; }; @@ -131,7 +134,8 @@ var Test6 = /** @class */ (function () { function Test6() { this.b = 0; } - Object.defineProperty(Test6.prototype, "a", { + var Test6_prototype = Test6.prototype; + Object.defineProperty(Test6_prototype, "a", { get: function () { return 0; }, @@ -141,7 +145,7 @@ var Test6 = /** @class */ (function () { enumerable: false, configurable: true }); - Test6.prototype.test = function () { + Test6_prototype.test = function () { var x = new Test6(); x.a++; x.b++; diff --git a/tests/baselines/reference/unusedPrivateMethodInClass2.js b/tests/baselines/reference/unusedPrivateMethodInClass2.js index 9095b3be7728f..3a264c18857ac 100644 --- a/tests/baselines/reference/unusedPrivateMethodInClass2.js +++ b/tests/baselines/reference/unusedPrivateMethodInClass2.js @@ -15,11 +15,12 @@ class greeter { var greeter = /** @class */ (function () { function greeter() { } - greeter.prototype.function1 = function () { + var greeter_prototype = greeter.prototype; + greeter_prototype.function1 = function () { var y = 10; y++; }; - greeter.prototype.function2 = function () { + greeter_prototype.function2 = function () { var y = 10; y++; }; diff --git a/tests/baselines/reference/unusedPrivateMethodInClass3.js b/tests/baselines/reference/unusedPrivateMethodInClass3.js index 588ca2162aebc..5e164b83e4cb1 100644 --- a/tests/baselines/reference/unusedPrivateMethodInClass3.js +++ b/tests/baselines/reference/unusedPrivateMethodInClass3.js @@ -20,15 +20,16 @@ class greeter { var greeter = /** @class */ (function () { function greeter() { } - greeter.prototype.function1 = function () { + var greeter_prototype = greeter.prototype; + greeter_prototype.function1 = function () { var y = 10; y++; }; - greeter.prototype.function2 = function () { + greeter_prototype.function2 = function () { var y = 10; y++; }; - greeter.prototype.function3 = function () { + greeter_prototype.function3 = function () { var y = 10; y++; }; diff --git a/tests/baselines/reference/unusedPrivateMethodInClass4.js b/tests/baselines/reference/unusedPrivateMethodInClass4.js index 2bad875fdca08..3c4f77fcc83fe 100644 --- a/tests/baselines/reference/unusedPrivateMethodInClass4.js +++ b/tests/baselines/reference/unusedPrivateMethodInClass4.js @@ -21,15 +21,16 @@ class greeter { var greeter = /** @class */ (function () { function greeter() { } - greeter.prototype.function1 = function () { + var greeter_prototype = greeter.prototype; + greeter_prototype.function1 = function () { var y = 10; y++; }; - greeter.prototype.function2 = function () { + greeter_prototype.function2 = function () { var y = 10; y++; }; - greeter.prototype.function3 = function () { + greeter_prototype.function3 = function () { var y = 10; y++; this.function2(); diff --git a/tests/baselines/reference/unusedSetterInClass2.js b/tests/baselines/reference/unusedSetterInClass2.js index 0978cfcd497ef..8f3e583288b52 100644 --- a/tests/baselines/reference/unusedSetterInClass2.js +++ b/tests/baselines/reference/unusedSetterInClass2.js @@ -13,12 +13,13 @@ class Employee { var Employee = /** @class */ (function () { function Employee() { } - Object.defineProperty(Employee.prototype, "p", { + var Employee_prototype = Employee.prototype; + Object.defineProperty(Employee_prototype, "p", { set: function (_) { }, enumerable: false, configurable: true }); - Employee.prototype.m = function () { + Employee_prototype.m = function () { this.p = 0; }; return Employee; diff --git a/tests/baselines/reference/vararg.js b/tests/baselines/reference/vararg.js index 9e5aa0c797255..06f595a66f1e2 100644 --- a/tests/baselines/reference/vararg.js +++ b/tests/baselines/reference/vararg.js @@ -44,7 +44,8 @@ var M; var C = /** @class */ (function () { function C() { } - C.prototype.f = function (x) { + var C_prototype = C.prototype; + C_prototype.f = function (x) { var rest = []; for (var _i = 1; _i < arguments.length; _i++) { rest[_i - 1] = arguments[_i]; @@ -56,13 +57,13 @@ var M; result += (x + ": " + sum); return result; }; - C.prototype.fnope = function (x) { + C_prototype.fnope = function (x) { var rest = []; for (var _i = 1; _i < arguments.length; _i++) { rest[_i - 1] = arguments[_i]; } }; - C.prototype.fonly = function () { + C_prototype.fonly = function () { var rest = []; for (var _i = 0; _i < arguments.length; _i++) { rest[_i] = arguments[_i]; diff --git a/tests/baselines/reference/variance.js b/tests/baselines/reference/variance.js index df84404b31beb..8749d8ed13ac3 100644 --- a/tests/baselines/reference/variance.js +++ b/tests/baselines/reference/variance.js @@ -37,8 +37,9 @@ var z = x; var Bar = /** @class */ (function () { function Bar() { } - Bar.prototype.cast = function (_name) { }; - Bar.prototype.pushThis = function () { + var Bar_prototype = Bar.prototype; + Bar_prototype.cast = function (_name) { }; + Bar_prototype.pushThis = function () { Bar.instance.push(this); }; return Bar; diff --git a/tests/baselines/reference/varianceProblingAndZeroOrderIndexSignatureRelationsAlign.js b/tests/baselines/reference/varianceProblingAndZeroOrderIndexSignatureRelationsAlign.js index e895cbf5d33f1..e8327f0a6ecb4 100644 --- a/tests/baselines/reference/varianceProblingAndZeroOrderIndexSignatureRelationsAlign.js +++ b/tests/baselines/reference/varianceProblingAndZeroOrderIndexSignatureRelationsAlign.js @@ -90,11 +90,12 @@ var Left = /** @class */ (function () { this.value = value; this._tag = 'Left'; } + var Left_prototype = Left.prototype; /** The given function is applied if this is a `Right` */ - Left.prototype.map = function (f) { + Left_prototype.map = function (f) { return this; }; - Left.prototype.ap = function (fab) { + Left_prototype.ap = function (fab) { return null; }; return Left; @@ -104,10 +105,11 @@ var Right = /** @class */ (function () { this.value = value; this._tag = 'Right'; } - Right.prototype.map = function (f) { + var Right_prototype = Right.prototype; + Right_prototype.map = function (f) { return new Right(f(this.value)); }; - Right.prototype.ap = function (fab) { + Right_prototype.ap = function (fab) { return null; }; return Right; diff --git a/tests/baselines/reference/varianceProblingAndZeroOrderIndexSignatureRelationsAlign2.js b/tests/baselines/reference/varianceProblingAndZeroOrderIndexSignatureRelationsAlign2.js index 95e4f2319027b..2ef76354de06c 100644 --- a/tests/baselines/reference/varianceProblingAndZeroOrderIndexSignatureRelationsAlign2.js +++ b/tests/baselines/reference/varianceProblingAndZeroOrderIndexSignatureRelationsAlign2.js @@ -90,11 +90,12 @@ var Left = /** @class */ (function () { this.value = value; this._tag = 'Left'; } + var Left_prototype = Left.prototype; /** The given function is applied if this is a `Right` */ - Left.prototype.map = function (f) { + Left_prototype.map = function (f) { return this; }; - Left.prototype.ap = function (fab) { + Left_prototype.ap = function (fab) { return null; }; return Left; @@ -104,10 +105,11 @@ var Right = /** @class */ (function () { this.value = value; this._tag = 'Right'; } - Right.prototype.map = function (f) { + var Right_prototype = Right.prototype; + Right_prototype.map = function (f) { return new Right(f(this.value)); }; - Right.prototype.ap = function (fab) { + Right_prototype.ap = function (fab) { return null; }; return Right; diff --git a/tests/baselines/reference/witness.js b/tests/baselines/reference/witness.js index 63ffc45411100..74e25c2921d6c 100644 --- a/tests/baselines/reference/witness.js +++ b/tests/baselines/reference/witness.js @@ -216,13 +216,14 @@ var t = fnArg2(); // t: should be 'any', but is 'string' var C = /** @class */ (function () { function C() { } - C.prototype.fn1 = function () { + var C_prototype = C.prototype; + C_prototype.fn1 = function () { return new (this.fn1())(); }; - C.prototype.fn2 = function () { + C_prototype.fn2 = function () { return new (this.fn2()); }; - C.prototype.fn3 = function () { + C_prototype.fn3 = function () { var a; return new a(this.fn3); }; diff --git a/tests/cases/conformance/classes/protoOverlapVariables.ts b/tests/cases/conformance/classes/protoOverlapVariables.ts new file mode 100644 index 0000000000000..a567ae151d852 --- /dev/null +++ b/tests/cases/conformance/classes/protoOverlapVariables.ts @@ -0,0 +1,27 @@ +let proto = "gotcha!"; + +class DeclarationWithOne { + member() { + return this; + } +} + +class DeclarationWithTwo { + memberOne() { + return this; + } + + memberTwo() { + return this; + } +} + +const Expression = class { + memberOne() { + return this; + } + + memberTwo() { + return this; + } +}; diff --git a/tests/cases/fourslash/server/declarationMapsEnableMapping_NoInline.ts b/tests/cases/fourslash/server/declarationMapsEnableMapping_NoInline.ts index cb96bd22238d3..d76f2f46ef116 100644 --- a/tests/cases/fourslash/server/declarationMapsEnableMapping_NoInline.ts +++ b/tests/cases/fourslash/server/declarationMapsEnableMapping_NoInline.ts @@ -41,8 +41,9 @@ ////var Foo = /** @class */ (function () { //// function Foo() { //// } -//// Foo.prototype.methodName = function (propName) { return propName; }; -//// Foo.prototype.otherMethod = function () { +//// var Foo_prototype = Foo.prototype; +//// Foo_prototype.methodName = function (propName) { return propName; }; +//// Foo_prototype.otherMethod = function () { //// if (Math.random() > 0.5) { //// return { x: 42 }; //// } @@ -51,7 +52,7 @@ //// return Foo; ////}()); ////exports.Foo = Foo; -//////# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQTtJQUFBO0lBU0EsQ0FBQztJQVBHLHdCQUFVLEdBQVYsVUFBVyxRQUFrQixJQUFjLE9BQU8sUUFBUSxDQUFDLENBQUMsQ0FBQztJQUM3RCx5QkFBVyxHQUFYO1FBQ0ksSUFBSSxJQUFJLENBQUMsTUFBTSxFQUFFLEdBQUcsR0FBRyxFQUFFO1lBQ3JCLE9BQU8sRUFBQyxDQUFDLEVBQUUsRUFBRSxFQUFDLENBQUM7U0FDbEI7UUFDRCxPQUFPLEVBQUMsQ0FBQyxFQUFFLEtBQUssRUFBQyxDQUFDO0lBQ3RCLENBQUM7SUFDTCxVQUFDO0FBQUQsQ0FBQyxBQVRELElBU0M7QUFUWSxrQkFBRyJ9 +//////# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQTtJQUFBO0lBU0EsQ0FBQzs7SUFQRyx3QkFBVSxHQUFWLFVBQVcsUUFBa0IsSUFBYyxPQUFPLFFBQVEsQ0FBQyxDQUFDLENBQUM7SUFDN0QseUJBQVcsR0FBWDtRQUNJLElBQUksSUFBSSxDQUFDLE1BQU0sRUFBRSxHQUFHLEdBQUcsRUFBRTtZQUNyQixPQUFPLEVBQUMsQ0FBQyxFQUFFLEVBQUUsRUFBQyxDQUFDO1NBQ2xCO1FBQ0QsT0FBTyxFQUFDLENBQUMsRUFBRSxLQUFLLEVBQUMsQ0FBQztJQUN0QixDQUFDO0lBQ0wsVUFBQztBQUFELENBQUMsQUFURCxJQVNDO0FBVFksa0JBQUcifQ== // @Filename: /dist/index.d.ts.map ////{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,qBAAa,GAAG;IACZ,MAAM,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,QAAQ,EAAE,QAAQ,GAAG,QAAQ;IACxC,WAAW;;;;;;;CAMd;AAED,MAAM,WAAW,QAAQ;IACrB,MAAM,EAAE,MAAM,CAAC;CAClB"} diff --git a/tests/cases/fourslash/server/declarationMapsEnableMapping_NoInlineSources.ts b/tests/cases/fourslash/server/declarationMapsEnableMapping_NoInlineSources.ts index 528613df25071..149b87cea5358 100644 --- a/tests/cases/fourslash/server/declarationMapsEnableMapping_NoInlineSources.ts +++ b/tests/cases/fourslash/server/declarationMapsEnableMapping_NoInlineSources.ts @@ -42,8 +42,9 @@ ////var Foo = /** @class */ (function () { //// function Foo() { //// } -//// Foo.prototype.methodName = function (propName) { return propName; }; -//// Foo.prototype.otherMethod = function () { +//// var Foo_prototype = Foo.prototype; +//// Foo_prototype.methodName = function (propName) { return propName; }; +//// Foo_prototype.otherMethod = function () { //// if (Math.random() > 0.5) { //// return { x: 42 }; //// } @@ -52,7 +53,7 @@ //// return Foo; ////}()); ////exports.Foo = Foo; -//////# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQTtJQUFBO0lBU0EsQ0FBQztJQVBHLHdCQUFVLEdBQVYsVUFBVyxRQUFrQixJQUFjLE9BQU8sUUFBUSxDQUFDLENBQUMsQ0FBQztJQUM3RCx5QkFBVyxHQUFYO1FBQ0ksSUFBSSxJQUFJLENBQUMsTUFBTSxFQUFFLEdBQUcsR0FBRyxFQUFFO1lBQ3JCLE9BQU8sRUFBQyxDQUFDLEVBQUUsRUFBRSxFQUFDLENBQUM7U0FDbEI7UUFDRCxPQUFPLEVBQUMsQ0FBQyxFQUFFLEtBQUssRUFBQyxDQUFDO0lBQ3RCLENBQUM7SUFDTCxVQUFDO0FBQUQsQ0FBQyxBQVRELElBU0M7QUFUWSxrQkFBRyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBjbGFzcyBGb28ge1xuICAgIG1lbWJlcjogc3RyaW5nO1xuICAgIG1ldGhvZE5hbWUocHJvcE5hbWU6IFNvbWVUeXBlKTogU29tZVR5cGUgeyByZXR1cm4gcHJvcE5hbWU7IH1cbiAgICBvdGhlck1ldGhvZCgpIHtcbiAgICAgICAgaWYgKE1hdGgucmFuZG9tKCkgPiAwLjUpIHtcbiAgICAgICAgICAgIHJldHVybiB7eDogNDJ9O1xuICAgICAgICB9XG4gICAgICAgIHJldHVybiB7eTogXCJ5ZXNcIn07XG4gICAgfVxufVxuXG5leHBvcnQgaW50ZXJmYWNlIFNvbWVUeXBlIHtcbiAgICBtZW1iZXI6IG51bWJlcjtcbn0iXX0= +//////# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQTtJQUFBO0lBU0EsQ0FBQzs7SUFQRyx3QkFBVSxHQUFWLFVBQVcsUUFBa0IsSUFBYyxPQUFPLFFBQVEsQ0FBQyxDQUFDLENBQUM7SUFDN0QseUJBQVcsR0FBWDtRQUNJLElBQUksSUFBSSxDQUFDLE1BQU0sRUFBRSxHQUFHLEdBQUcsRUFBRTtZQUNyQixPQUFPLEVBQUMsQ0FBQyxFQUFFLEVBQUUsRUFBQyxDQUFDO1NBQ2xCO1FBQ0QsT0FBTyxFQUFDLENBQUMsRUFBRSxLQUFLLEVBQUMsQ0FBQztJQUN0QixDQUFDO0lBQ0wsVUFBQztBQUFELENBQUMsQUFURCxJQVNDO0FBVFksa0JBQUciLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgY2xhc3MgRm9vIHtcbiAgICBtZW1iZXI6IHN0cmluZztcbiAgICBtZXRob2ROYW1lKHByb3BOYW1lOiBTb21lVHlwZSk6IFNvbWVUeXBlIHsgcmV0dXJuIHByb3BOYW1lOyB9XG4gICAgb3RoZXJNZXRob2QoKSB7XG4gICAgICAgIGlmIChNYXRoLnJhbmRvbSgpID4gMC41KSB7XG4gICAgICAgICAgICByZXR1cm4ge3g6IDQyfTtcbiAgICAgICAgfVxuICAgICAgICByZXR1cm4ge3k6IFwieWVzXCJ9O1xuICAgIH1cbn1cblxuZXhwb3J0IGludGVyZmFjZSBTb21lVHlwZSB7XG4gICAgbWVtYmVyOiBudW1iZXI7XG59Il19 // @Filename: /dist/index.d.ts.map ////{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,qBAAa,GAAG;IACZ,MAAM,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,QAAQ,EAAE,QAAQ,GAAG,QAAQ;IACxC,WAAW;;;;;;;CAMd;AAED,MAAM,WAAW,QAAQ;IACrB,MAAM,EAAE,MAAM,CAAC;CAClB"} diff --git a/tests/cases/fourslash/server/declarationMapsGeneratedMapsEnableMapping.ts b/tests/cases/fourslash/server/declarationMapsGeneratedMapsEnableMapping.ts index 9f7c67413c741..d73f7f15d2f91 100644 --- a/tests/cases/fourslash/server/declarationMapsGeneratedMapsEnableMapping.ts +++ b/tests/cases/fourslash/server/declarationMapsGeneratedMapsEnableMapping.ts @@ -40,8 +40,9 @@ ////var Foo = /** @class */ (function () { //// function Foo() { //// } -//// Foo.prototype.methodName = function (propName) { return propName; }; -//// Foo.prototype.otherMethod = function () { +//// var Foo_prototype = Foo.prototype; +//// Foo_prototype.methodName = function (propName) { return propName; }; +//// Foo_prototype.otherMethod = function () { //// if (Math.random() > 0.5) { //// return { x: 42 }; //// } diff --git a/tests/cases/fourslash/server/declarationMapsGeneratedMapsEnableMapping2.ts b/tests/cases/fourslash/server/declarationMapsGeneratedMapsEnableMapping2.ts index 15b203addb26c..18024a7e96209 100644 --- a/tests/cases/fourslash/server/declarationMapsGeneratedMapsEnableMapping2.ts +++ b/tests/cases/fourslash/server/declarationMapsGeneratedMapsEnableMapping2.ts @@ -36,7 +36,7 @@ ////instance.[|/*1*/methodName|]({member: 12}); // @Filename: /dist/index.js.map -////{"version":3,"file":"index.js","sourceRoot":"/","sources":["index.ts"],"names":[],"mappings":";;;AAAA;IAAA;IASA,CAAC;IAPG,wBAAU,GAAV,UAAW,QAAkB,IAAc,OAAO,QAAQ,CAAC,CAAC,CAAC;IAC7D,yBAAW,GAAX;QACI,IAAI,IAAI,CAAC,MAAM,EAAE,GAAG,GAAG,EAAE;YACrB,OAAO,EAAC,CAAC,EAAE,EAAE,EAAC,CAAC;SAClB;QACD,OAAO,EAAC,CAAC,EAAE,KAAK,EAAC,CAAC;IACtB,CAAC;IACL,UAAC;AAAD,CAAC,AATD,IASC;AATY,kBAAG"} +////{"version":3,"file":"index.js","sourceRoot":"/","sources":["index.ts"],"names":[],"mappings":";;;AAAA;IAAA;IASA,CAAC;;IAPG,wBAAU,GAAV,UAAW,QAAkB,IAAc,OAAO,QAAQ,CAAC,CAAC,CAAC;IAC7D,yBAAW,GAAX;QACI,IAAI,IAAI,CAAC,MAAM,EAAE,GAAG,GAAG,EAAE;YACrB,OAAO,EAAC,CAAC,EAAE,EAAE,EAAC,CAAC;SAClB;QACD,OAAO,EAAC,CAAC,EAAE,KAAK,EAAC,CAAC;IACtB,CAAC;IACL,UAAC;AAAD,CAAC,AATD,IASC;AATY,kBAAG"} // @Filename: /dist/index.js ////"use strict"; @@ -45,8 +45,9 @@ ////var Foo = /** @class */ (function () { //// function Foo() { //// } -//// Foo.prototype.methodName = function (propName) { return propName; }; -//// Foo.prototype.otherMethod = function () { +//// var Foo_prototype = Foo.prototype; +//// Foo_prototype.methodName = function (propName) { return propName; }; +//// Foo_prototype.otherMethod = function () { //// if (Math.random() > 0.5) { //// return { x: 42 }; //// } diff --git a/tests/cases/fourslash/server/declarationMapsGeneratedMapsEnableMapping3.ts b/tests/cases/fourslash/server/declarationMapsGeneratedMapsEnableMapping3.ts index 0d1f20b808fc8..6f363f7e1a45a 100644 --- a/tests/cases/fourslash/server/declarationMapsGeneratedMapsEnableMapping3.ts +++ b/tests/cases/fourslash/server/declarationMapsGeneratedMapsEnableMapping3.ts @@ -41,8 +41,9 @@ ////var Foo = /** @class */ (function () { //// function Foo() { //// } -//// Foo.prototype.methodName = function (propName) { return propName; }; -//// Foo.prototype.otherMethod = function () { +//// var Foo_prototype = Foo.prototype; +//// Foo_prototype.methodName = function (propName) { return propName; }; +//// Foo_prototype.otherMethod = function () { //// if (Math.random() > 0.5) { //// return { x: 42 }; //// }