From ab8c3fa3ac121794e8a5b0be8b5a0a9845288981 Mon Sep 17 00:00:00 2001 From: Ron Buckton Date: Wed, 2 May 2018 13:34:14 -0700 Subject: [PATCH] Pre-generate names ahead of time --- src/compiler/emitter.ts | 131 +- src/compiler/factory.ts | 7 +- src/compiler/transformers/ts.ts | 2 +- src/compiler/types.ts | 7 +- .../bindingPatternOmittedExpressionNesting.js | 4 +- .../blockScopedBindingsReassignedInLoop3.js | 44 +- .../reference/capturedLetConstInLoop8.js | 52 +- .../reference/capturedLetConstInLoop9.js | 30 +- .../capturedParametersInInitializers2.js | 10 +- ...rationShouldBeOutOfScopeInComputedNames.js | 10 +- .../declarationEmitPrivateNameCausesError.js | 10 +- .../decoratorsOnComputedProperties.js | 138 +- .../destructuringReassignsRightHandSide.js | 6 +- ...onentiationAssignmentWithIndexingOnLHS1.js | 6 +- ...onentiationAssignmentWithIndexingOnLHS2.js | 6 +- ...onentiationAssignmentWithIndexingOnLHS3.js | 4 +- ...onentiationAssignmentWithIndexingOnLHS4.js | 4 +- ...onAssignmentWithPropertyAccessingOnLHS1.js | 6 +- ...eclarationBindingPatterns01_ES5iterable.js | 22 +- tests/baselines/reference/objectRest.js | 10 +- .../reference/objectRestAssignment.js | 6 +- ...ingForArrayBindingPatternDefaultValues2.js | 34 +- ...orArrayBindingPatternDefaultValues2.js.map | 2 +- ...BindingPatternDefaultValues2.sourcemap.txt | 518 ++-- ...nDestructuringForOfArrayBindingPattern2.js | 118 +- ...tructuringForOfArrayBindingPattern2.js.map | 2 +- ...ingForOfArrayBindingPattern2.sourcemap.txt | 981 +++---- ...gForOfArrayBindingPatternDefaultValues2.js | 84 +- ...OfArrayBindingPatternDefaultValues2.js.map | 2 +- ...BindingPatternDefaultValues2.sourcemap.txt | 1942 +++++++------- ...DestructuringForOfObjectBindingPattern2.js | 92 +- ...ructuringForOfObjectBindingPattern2.js.map | 2 +- ...ngForOfObjectBindingPattern2.sourcemap.txt | 980 +++---- ...ForOfObjectBindingPatternDefaultValues2.js | 104 +- ...fObjectBindingPatternDefaultValues2.js.map | 2 +- ...BindingPatternDefaultValues2.sourcemap.txt | 2278 ++++++++--------- 36 files changed, 3880 insertions(+), 3776 deletions(-) diff --git a/src/compiler/emitter.ts b/src/compiler/emitter.ts index 53d4e56c301..1c0bf6eff13 100644 --- a/src/compiler/emitter.ts +++ b/src/compiler/emitter.ts @@ -1378,6 +1378,8 @@ namespace ts { } function emitObjectLiteralExpression(node: ObjectLiteralExpression) { + forEach(node.properties, generateMemberNames); + const indentedFlag = getEmitFlags(node) & EmitFlags.Indented; if (indentedFlag) { increaseIndent(); @@ -1481,6 +1483,7 @@ namespace ts { } function emitFunctionExpression(node: FunctionExpression) { + generateNameIfNeeded(node.name); emitFunctionDeclarationOrExpression(node); } @@ -1606,6 +1609,7 @@ namespace ts { } function emitClassExpression(node: ClassExpression) { + generateNameIfNeeded(node.name); emitClassDeclarationOrExpression(node); } @@ -1911,6 +1915,9 @@ namespace ts { } pushNameGenerationScope(node); + forEach(node.parameters, generateNames); + generateNames(node.body); + emitSignatureHead(node); if (onEmitNode) { onEmitNode(EmitHint.Unspecified, body, emitBlockCallback); @@ -2025,6 +2032,8 @@ namespace ts { } function emitClassDeclarationOrExpression(node: ClassDeclaration | ClassExpression) { + forEach(node.members, generateMemberNames); + emitDecorators(node, node.decorators); emitModifiers(node, node.modifiers); writeKeyword("class"); @@ -2113,6 +2122,7 @@ namespace ts { function emitModuleBlock(node: ModuleBlock) { pushNameGenerationScope(node); + forEach(node.statements, generateNames); emitBlockStatements(node, /*forceSingleLine*/ isEmptyBlock(node)); popNameGenerationScope(node); } @@ -2516,6 +2526,7 @@ namespace ts { function emitSourceFileWorker(node: SourceFile) { const statements = node.statements; pushNameGenerationScope(node); + forEach(node.statements, generateNames); emitHelpers(node); const index = findIndex(statements, statement => !isPrologueDirective(statement)); emitTripleSlashDirectivesIfNeeded(node); @@ -3222,6 +3233,114 @@ namespace ts { reservedNames.set(name, true); } + function generateNames(node: Node | undefined) { + if (!node) return; + switch (node.kind) { + case SyntaxKind.Block: + forEach((node).statements, generateNames); + break; + case SyntaxKind.LabeledStatement: + case SyntaxKind.WithStatement: + case SyntaxKind.DoStatement: + case SyntaxKind.WhileStatement: + generateNames((node).statement); + break; + case SyntaxKind.IfStatement: + generateNames((node).thenStatement); + generateNames((node).elseStatement); + break; + case SyntaxKind.ForStatement: + case SyntaxKind.ForOfStatement: + case SyntaxKind.ForInStatement: + generateNames((node).initializer); + generateNames((node).statement); + break; + case SyntaxKind.SwitchStatement: + generateNames((node).caseBlock); + break; + case SyntaxKind.CaseBlock: + forEach((node).clauses, generateNames); + break; + case SyntaxKind.CaseClause: + case SyntaxKind.DefaultClause: + forEach((node).statements, generateNames); + break; + case SyntaxKind.TryStatement: + generateNames((node).tryBlock); + generateNames((node).catchClause); + generateNames((node).finallyBlock); + break; + case SyntaxKind.CatchClause: + generateNames((node).variableDeclaration); + generateNames((node).block); + break; + case SyntaxKind.VariableStatement: + generateNames((node).declarationList); + break; + case SyntaxKind.VariableDeclarationList: + forEach((node).declarations, generateNames); + break; + case SyntaxKind.VariableDeclaration: + case SyntaxKind.Parameter: + case SyntaxKind.BindingElement: + case SyntaxKind.ClassDeclaration: + generateNameIfNeeded((node).name); + break; + case SyntaxKind.FunctionDeclaration: + generateNameIfNeeded((node).name); + if (getEmitFlags(node) & EmitFlags.ReuseTempVariableScope) { + forEach((node).parameters, generateNames); + generateNames((node).body); + } + break; + case SyntaxKind.ObjectBindingPattern: + case SyntaxKind.ArrayBindingPattern: + forEach((node).elements, generateNames); + break; + case SyntaxKind.ImportDeclaration: + generateNames((node).importClause); + break; + case SyntaxKind.ImportClause: + generateNameIfNeeded((node).name); + generateNames((node).namedBindings); + break; + case SyntaxKind.NamespaceImport: + generateNameIfNeeded((node).name); + break; + case SyntaxKind.NamedImports: + forEach((node).elements, generateNames); + break; + case SyntaxKind.ImportSpecifier: + generateNameIfNeeded((node).propertyName || (node).name); + break; + } + } + + function generateMemberNames(node: Node | undefined) { + if (!node) return; + switch (node.kind) { + case SyntaxKind.PropertyAssignment: + case SyntaxKind.ShorthandPropertyAssignment: + case SyntaxKind.PropertyDeclaration: + case SyntaxKind.MethodDeclaration: + case SyntaxKind.GetAccessor: + case SyntaxKind.SetAccessor: + generateNameIfNeeded((node).name); + break; + } + } + + function generateNameIfNeeded(name: DeclarationName | undefined) { + if (name) { + if (isGeneratedIdentifier(name)) { + generateName(name); + } + else if (isBindingPattern(name)) { + generateNames(name); + } + } + } + /** * Generate the text for a generated identifier. */ @@ -3229,17 +3348,7 @@ namespace ts { if ((name.autoGenerateFlags & GeneratedIdentifierFlags.KindMask) === GeneratedIdentifierFlags.Node) { // Node names generate unique names based on their original node // and are cached based on that node's id. - if (name.autoGenerateFlags & GeneratedIdentifierFlags.SkipNameGenerationScope) { - const savedTempFlags = tempFlags; - popNameGenerationScope(/*node*/ undefined); - const result = generateNameCached(getNodeForGeneratedName(name)); - pushNameGenerationScope(/*node*/ undefined); - tempFlags = savedTempFlags; - return result; - } - else { - return generateNameCached(getNodeForGeneratedName(name)); - } + return generateNameCached(getNodeForGeneratedName(name)); } else { // Auto, Loop, and Unique names are cached based on their unique diff --git a/src/compiler/factory.ts b/src/compiler/factory.ts index e3191930c0e..8a7ddf0bc52 100644 --- a/src/compiler/factory.ts +++ b/src/compiler/factory.ts @@ -188,16 +188,11 @@ namespace ts { } /** Create a unique name generated for a node. */ - export function getGeneratedNameForNode(node: Node): Identifier; - /* @internal */ export function getGeneratedNameForNode(node: Node, shouldSkipNameGenerationScope?: boolean): Identifier; // tslint:disable-line unified-signatures - export function getGeneratedNameForNode(node: Node, shouldSkipNameGenerationScope?: boolean): Identifier { + export function getGeneratedNameForNode(node: Node): Identifier { const name = createIdentifier(""); name.autoGenerateFlags = GeneratedIdentifierFlags.Node; name.autoGenerateId = nextAutoGenerateId; name.original = node; - if (shouldSkipNameGenerationScope) { - name.autoGenerateFlags |= GeneratedIdentifierFlags.SkipNameGenerationScope; - } nextAutoGenerateId++; return name; } diff --git a/src/compiler/transformers/ts.ts b/src/compiler/transformers/ts.ts index f29829d4607..7c561e7d696 100644 --- a/src/compiler/transformers/ts.ts +++ b/src/compiler/transformers/ts.ts @@ -1248,7 +1248,7 @@ namespace ts { function transformInitializedProperty(property: PropertyDeclaration, receiver: LeftHandSideExpression) { // We generate a name here in order to reuse the value cached by the relocated computed name expression (which uses the same generated name) const propertyName = isComputedPropertyName(property.name) && !isSimpleInlineableExpression(property.name.expression) - ? updateComputedPropertyName(property.name, getGeneratedNameForNode(property.name, !hasModifier(property, ModifierFlags.Static))) + ? updateComputedPropertyName(property.name, getGeneratedNameForNode(property.name)) : property.name; const initializer = visitNode(property.initializer, visitor, isExpression); const memberAccess = createMemberAccessForPropertyName(receiver, propertyName, /*location*/ propertyName); diff --git a/src/compiler/types.ts b/src/compiler/types.ts index 3608b6b5c32..d7487b34f62 100644 --- a/src/compiler/types.ts +++ b/src/compiler/types.ts @@ -710,10 +710,9 @@ namespace ts { KindMask = 7, // Mask to extract the kind of identifier from its flags. // Flags - SkipNameGenerationScope = 1 << 3, // Should skip a name generation scope when generating the name for this identifier - ReservedInNestedScopes = 1 << 4, // Reserve the generated name in nested scopes - Optimistic = 1 << 5, // First instance won't use '_#' if there's no conflict - FileLevel = 1 << 6, // Use only the file identifiers list and not generated names to search for conflicts + ReservedInNestedScopes = 1 << 3, // Reserve the generated name in nested scopes + Optimistic = 1 << 4, // First instance won't use '_#' if there's no conflict + FileLevel = 1 << 5, // Use only the file identifiers list and not generated names to search for conflicts } export interface Identifier extends PrimaryExpression, Declaration { diff --git a/tests/baselines/reference/bindingPatternOmittedExpressionNesting.js b/tests/baselines/reference/bindingPatternOmittedExpressionNesting.js index 0a8542ee637..cde242c14ea 100644 --- a/tests/baselines/reference/bindingPatternOmittedExpressionNesting.js +++ b/tests/baselines/reference/bindingPatternOmittedExpressionNesting.js @@ -4,8 +4,8 @@ export let [,,[,[],,[],]] = undefined as any; //// [bindingPatternOmittedExpressionNesting.js] "use strict"; exports.__esModule = true; -exports._a = (_b = undefined, _c = _b[2], _d = _c[1], _e = _c[3]); -var _b, _c, _d, _e; +exports._e = (_a = undefined, _b = _a[2], _c = _b[1], _d = _b[3]); +var _a, _b, _c, _d; //// [bindingPatternOmittedExpressionNesting.d.ts] diff --git a/tests/baselines/reference/blockScopedBindingsReassignedInLoop3.js b/tests/baselines/reference/blockScopedBindingsReassignedInLoop3.js index 60ecfad3bc9..bcc16e499a2 100644 --- a/tests/baselines/reference/blockScopedBindingsReassignedInLoop3.js +++ b/tests/baselines/reference/blockScopedBindingsReassignedInLoop3.js @@ -98,7 +98,7 @@ var _loop_1 = function (x, y) { return out_x_1 = x, out_y_1 = y, "break"; } else { - var _loop_2 = function (a_1) { + var _loop_5 = function (a_1) { var f = function () { return a_1; }; if (a_1) { a_1 = x; @@ -111,9 +111,9 @@ var _loop_1 = function (x, y) { }; var out_a_1; for (var a_1 = 1; a_1 < 5; --a_1) { - var state_1 = _loop_2(a_1); + var state_4 = _loop_5(a_1); a_1 = out_a_1; - if (state_1 === "break") + if (state_4 === "break") break; } y = 5; @@ -123,19 +123,19 @@ var _loop_1 = function (x, y) { }; var out_x_1, out_y_1; for (var x = 1, y = 2; x < y; ++x, --y) { - var state_2 = _loop_1(x, y); + var state_1 = _loop_1(x, y); x = out_x_1; y = out_y_1; - if (state_2 === "break") + if (state_1 === "break") break; } -var _loop_3 = function (x, y) { +var _loop_2 = function (x, y) { var a = function () { return x++ + y++; }; if (x == 1) { return out_x_2 = x, out_y_2 = y, "continue"; } else { - var _loop_4 = function (a_2) { + var _loop_6 = function (a_2) { var f = function () { return a_2; }; if (a_2) { a_2 = x; @@ -148,7 +148,7 @@ var _loop_3 = function (x, y) { }; var out_a_2; for (var a_2 = 1; a_2 < 5; --a_2) { - _loop_4(a_2); + _loop_6(a_2); a_2 = out_a_2; } y = 5; @@ -158,17 +158,17 @@ var _loop_3 = function (x, y) { }; var out_x_2, out_y_2; for (var x = 1, y = 2; x < y; ++x, --y) { - _loop_3(x, y); + _loop_2(x, y); x = out_x_2; y = out_y_2; } -var _loop_5 = function (x, y) { +var _loop_3 = function (x, y) { var a = function () { return x++ + y++; }; if (x == 1) { return out_x_3 = x, out_y_3 = y, "break-loop2"; } else { - var _loop_6 = function (a_3) { + var _loop_7 = function (a_3) { var f = function () { return a_3; }; if (a_3) { a_3 = x; @@ -182,11 +182,11 @@ var _loop_5 = function (x, y) { }; var out_a_3; loop1: for (var a_3 = 1; a_3 < 5; --a_3) { - var state_3 = _loop_6(a_3); + var state_5 = _loop_7(a_3); a_3 = out_a_3; - switch (state_3) { + switch (state_5) { case "break-loop1": break loop1; - case "break-loop2": return state_3; + case "break-loop2": return state_5; } } y = 5; @@ -196,14 +196,14 @@ var _loop_5 = function (x, y) { }; var out_x_3, out_y_3; loop2: for (var x = 1, y = 2; x < y; ++x, --y) { - var state_4 = _loop_5(x, y); + var state_2 = _loop_3(x, y); x = out_x_3; y = out_y_3; - switch (state_4) { + switch (state_2) { case "break-loop2": break loop2; } } -var _loop_7 = function (x, y) { +var _loop_4 = function (x, y) { var a = function () { return x++ + y++; }; if (x == 1) { return out_x_4 = x, out_y_4 = y, "continue-loop2"; @@ -223,11 +223,11 @@ var _loop_7 = function (x, y) { }; var out_a_4; loop1: for (var a_4 = 1; a_4 < 5; --a_4) { - var state_5 = _loop_8(a_4); + var state_6 = _loop_8(a_4); a_4 = out_a_4; - switch (state_5) { + switch (state_6) { case "continue-loop1": continue loop1; - case "continue-loop2": return state_5; + case "continue-loop2": return state_6; } } y = 5; @@ -237,10 +237,10 @@ var _loop_7 = function (x, y) { }; var out_x_4, out_y_4; loop2: for (var x = 1, y = 2; x < y; ++x, --y) { - var state_6 = _loop_7(x, y); + var state_3 = _loop_4(x, y); x = out_x_4; y = out_y_4; - switch (state_6) { + switch (state_3) { case "continue-loop2": continue loop2; } } diff --git a/tests/baselines/reference/capturedLetConstInLoop8.js b/tests/baselines/reference/capturedLetConstInLoop8.js index 92087b5efbb..cb13f76ac61 100644 --- a/tests/baselines/reference/capturedLetConstInLoop8.js +++ b/tests/baselines/reference/capturedLetConstInLoop8.js @@ -162,16 +162,16 @@ function foo() { } }; ll1: for (var y = 0; y < 1; ++y) { - var state_1 = _loop_2(y); - if (typeof state_1 === "object") - return state_1; - if (state_1 === "break") + var state_2 = _loop_2(y); + if (typeof state_2 === "object") + return state_2; + if (state_2 === "break") break; - switch (state_1) { - case "break-l1": return state_1; + switch (state_2) { + case "break-l1": return state_2; case "break-ll1": break ll1; - case "continue-l0": return state_1; - case "continue-l1": return state_1; + case "continue-l0": return state_2; + case "continue-l1": return state_2; case "continue-ll1": continue ll1; } } @@ -198,12 +198,12 @@ function foo() { } }; l1: for (var x = 0; x < 1; ++x) { - var state_2 = _loop_1(x); - if (typeof state_2 === "object") - return state_2.value; - if (state_2 === "break") + var state_1 = _loop_1(x); + if (typeof state_1 === "object") + return state_1.value; + if (state_1 === "break") break; - switch (state_2) { + switch (state_1) { case "break-l1": break l1; case "continue-l0": continue l0; case "continue-l1": continue l1; @@ -246,16 +246,16 @@ function foo_c() { } }; ll1: for (var y = 0; y < 1;) { - var state_3 = _loop_4(y); - if (typeof state_3 === "object") - return state_3; - if (state_3 === "break") + var state_4 = _loop_4(y); + if (typeof state_4 === "object") + return state_4; + if (state_4 === "break") break; - switch (state_3) { - case "break-l1": return state_3; + switch (state_4) { + case "break-l1": return state_4; case "break-ll1": break ll1; - case "continue-l0": return state_3; - case "continue-l1": return state_3; + case "continue-l0": return state_4; + case "continue-l1": return state_4; case "continue-ll1": continue ll1; } } @@ -282,12 +282,12 @@ function foo_c() { } }; l1: for (var x = 0; x < 1;) { - var state_4 = _loop_3(x); - if (typeof state_4 === "object") - return state_4.value; - if (state_4 === "break") + var state_3 = _loop_3(x); + if (typeof state_3 === "object") + return state_3.value; + if (state_3 === "break") break; - switch (state_4) { + switch (state_3) { case "break-l1": break l1; case "continue-l0": continue l0; case "continue-l1": continue l1; diff --git a/tests/baselines/reference/capturedLetConstInLoop9.js b/tests/baselines/reference/capturedLetConstInLoop9.js index 00fb878cc7e..3b162215918 100644 --- a/tests/baselines/reference/capturedLetConstInLoop9.js +++ b/tests/baselines/reference/capturedLetConstInLoop9.js @@ -186,7 +186,7 @@ function foo() { } for (var _i = 0, _a = []; _i < _a.length; _i++) { var b = _a[_i]; - _b = [{ x: 1, y: 2 }][0], x = _b.x, z = _b.y; + _d = [{ x: 1, y: 2 }][0], x = _d.x, z = _d.y; if (b === 1) { break; } @@ -210,29 +210,29 @@ function foo() { return { value: 100 }; var _a; }; - for (var _c = 0, _d = []; _c < _d.length; _c++) { - var b = _d[_c]; - var state_1 = _loop_4(b); - if (typeof state_1 === "object") - return state_1; - if (state_1 === "break") + for (var _b = 0, _c = []; _b < _c.length; _b++) { + var b = _c[_b]; + var state_2 = _loop_4(b); + if (typeof state_2 === "object") + return state_2; + if (state_2 === "break") break; - switch (state_1) { - case "break-l0": return state_1; + switch (state_2) { + case "break-l0": return state_2; } } (function () { return a; }); - var _b; + var _d; }; var arguments_1 = arguments, x, z, x1, z1; l0: for (var _i = 0, _a = []; _i < _a.length; _i++) { var a = _a[_i]; - var state_2 = _loop_3(a); - if (typeof state_2 === "object") - return state_2.value; - if (state_2 === "break") + var state_1 = _loop_3(a); + if (typeof state_1 === "object") + return state_1.value; + if (state_1 === "break") break; - switch (state_2) { + switch (state_1) { case "break-l0": break l0; } } diff --git a/tests/baselines/reference/capturedParametersInInitializers2.js b/tests/baselines/reference/capturedParametersInInitializers2.js index 8982862af4f..481bed687bb 100644 --- a/tests/baselines/reference/capturedParametersInInitializers2.js +++ b/tests/baselines/reference/capturedParametersInInitializers2.js @@ -19,14 +19,14 @@ function foo(y, x) { var _a; } function foo2(y, x) { - if (y === void 0) { y = (_a = /** @class */ (function () { + if (y === void 0) { y = (_b = /** @class */ (function () { function class_2() { - this[_b] = x; + this[_a] = x; } return class_2; }()), - _b = x, - _a); } + _a = x, + _b); } if (x === void 0) { x = 1; } - var _b, _a; + var _a, _b; } diff --git a/tests/baselines/reference/classDeclarationShouldBeOutOfScopeInComputedNames.js b/tests/baselines/reference/classDeclarationShouldBeOutOfScopeInComputedNames.js index 2ac05b483c8..2b59b358ffe 100644 --- a/tests/baselines/reference/classDeclarationShouldBeOutOfScopeInComputedNames.js +++ b/tests/baselines/reference/classDeclarationShouldBeOutOfScopeInComputedNames.js @@ -13,16 +13,16 @@ class A { //// [classDeclarationShouldBeOutOfScopeInComputedNames.js] var A = /** @class */ (function () { function A() { - this[_a] = 0; + this[_b] = 0; } - A[(_b = A.p1, A.p2)] = function () { return 0; }; + A[(_a = A.p1, A.p2)] = function () { return 0; }; ; A.prototype[A.p1] = function () { }; - _a = A.p2; + _b = A.p2; A.p1 = Symbol(); A.p2 = Symbol(); // All of the below should be out of scope or TDZ - `A` has not finished being constructed as they are executed - A[_b] = 0; + A[_a] = 0; return A; - var _b, _a; + var _a, _b; }()); diff --git a/tests/baselines/reference/declarationEmitPrivateNameCausesError.js b/tests/baselines/reference/declarationEmitPrivateNameCausesError.js index 74ef886749e..802195e4cca 100644 --- a/tests/baselines/reference/declarationEmitPrivateNameCausesError.js +++ b/tests/baselines/reference/declarationEmitPrivateNameCausesError.js @@ -24,18 +24,18 @@ exports.__esModule = true; var IGNORE_EXTRA_VARIABLES = Symbol(); //Notice how this is unexported //This is exported function ignoreExtraVariables(ctor) { - return _a = /** @class */ (function (_super) { + return _b = /** @class */ (function (_super) { __extends(class_1, _super); function class_1() { var _this = _super !== null && _super.apply(this, arguments) || this; - _this[_b] = true; //An unexported constant is used + _this[_a] = true; //An unexported constant is used return _this; } return class_1; }(ctor)), - _b = IGNORE_EXTRA_VARIABLES, - _a; - var _b, _a; + _a = IGNORE_EXTRA_VARIABLES, + _b; + var _a, _b; } exports.ignoreExtraVariables = ignoreExtraVariables; diff --git a/tests/baselines/reference/decoratorsOnComputedProperties.js b/tests/baselines/reference/decoratorsOnComputedProperties.js index ee7db88503f..4e7cf4a6ac1 100644 --- a/tests/baselines/reference/decoratorsOnComputedProperties.js +++ b/tests/baselines/reference/decoratorsOnComputedProperties.js @@ -208,11 +208,11 @@ class A { this[Symbol.iterator] = null; this["property4"] = 2; this[Symbol.match] = null; - this[_a] = null; this[_b] = null; + this[_d] = null; } } -foo(), _c = foo(), _a = foo(), _d = fieldNameB, _b = fieldNameC; +foo(), _a = foo(), _b = foo(), _c = fieldNameB, _d = fieldNameC; __decorate([ x ], A.prototype, "property", void 0); @@ -225,44 +225,44 @@ __decorate([ __decorate([ x ], A.prototype, Symbol.iterator, void 0); -__decorate([ - x -], A.prototype, _c, void 0); __decorate([ x ], A.prototype, _a, void 0); __decorate([ x -], A.prototype, _d, void 0); +], A.prototype, _b, void 0); __decorate([ x -], A.prototype, _b, void 0); -void (_e = class B { +], A.prototype, _c, void 0); +__decorate([ + x +], A.prototype, _d, void 0); +void (_j = class B { constructor() { this["property2"] = 2; this[Symbol.iterator] = null; this["property4"] = 2; this[Symbol.match] = null; this[_f] = null; - this[_g] = null; + this[_h] = null; } }, foo(), - _h = foo(), + _e = foo(), _f = foo(), - _j = fieldNameB, - _g = fieldNameC, - _e); + _g = fieldNameB, + _h = fieldNameC, + _j); class C { constructor() { this["property2"] = 2; this[Symbol.iterator] = null; this["property4"] = 2; this[Symbol.match] = null; - this[_k] = null; this[_l] = null; + this[_o] = null; } - [(foo(), _m = foo(), _k = foo(), _o = fieldNameB, _l = fieldNameC, "some" + "method")]() { } + [(foo(), _k = foo(), _l = foo(), _m = fieldNameB, _o = fieldNameC, "some" + "method")]() { } } __decorate([ x @@ -276,28 +276,28 @@ __decorate([ __decorate([ x ], C.prototype, Symbol.iterator, void 0); -__decorate([ - x -], C.prototype, _m, void 0); __decorate([ x ], C.prototype, _k, void 0); __decorate([ x -], C.prototype, _o, void 0); +], C.prototype, _l, void 0); __decorate([ x -], C.prototype, _l, void 0); +], C.prototype, _m, void 0); +__decorate([ + x +], C.prototype, _o, void 0); void class D { constructor() { this["property2"] = 2; this[Symbol.iterator] = null; this["property4"] = 2; this[Symbol.match] = null; - this[_p] = null; this[_q] = null; + this[_s] = null; } - [(foo(), _r = foo(), _p = foo(), _s = fieldNameB, _q = fieldNameC, "some" + "method")]() { } + [(foo(), _p = foo(), _q = foo(), _r = fieldNameB, _s = fieldNameC, "some" + "method")]() { } }; class E { constructor() { @@ -305,12 +305,12 @@ class E { this[Symbol.iterator] = null; this["property4"] = 2; this[Symbol.match] = null; - this[_t] = null; this[_u] = null; + this[_w] = null; } - [(foo(), _v = foo(), _t = foo(), "some" + "method")]() { } + [(foo(), _t = foo(), _u = foo(), "some" + "method")]() { } } -_w = fieldNameB, _u = fieldNameC; +_v = fieldNameB, _w = fieldNameC; __decorate([ x ], E.prototype, "property", void 0); @@ -323,45 +323,45 @@ __decorate([ __decorate([ x ], E.prototype, Symbol.iterator, void 0); -__decorate([ - x -], E.prototype, _v, void 0); __decorate([ x ], E.prototype, _t, void 0); __decorate([ x -], E.prototype, _w, void 0); +], E.prototype, _u, void 0); __decorate([ x -], E.prototype, _u, void 0); -void (_x = class F { +], E.prototype, _v, void 0); +__decorate([ + x +], E.prototype, _w, void 0); +void (_1 = class F { constructor() { this["property2"] = 2; this[Symbol.iterator] = null; this["property4"] = 2; this[Symbol.match] = null; this[_y] = null; - this[_z] = null; + this[_0] = null; } - [(foo(), _0 = foo(), _y = foo(), "some" + "method")]() { } + [(foo(), _x = foo(), _y = foo(), "some" + "method")]() { } }, - _1 = fieldNameB, - _z = fieldNameC, - _x); + _z = fieldNameB, + _0 = fieldNameC, + _1); class G { constructor() { this["property2"] = 2; this[Symbol.iterator] = null; this["property4"] = 2; this[Symbol.match] = null; - this[_2] = null; this[_3] = null; + this[_5] = null; } - [(foo(), _4 = foo(), _2 = foo(), "some" + "method")]() { } - [(_5 = fieldNameB, "some" + "method2")]() { } + [(foo(), _2 = foo(), _3 = foo(), "some" + "method")]() { } + [(_4 = fieldNameB, "some" + "method2")]() { } } -_3 = fieldNameC; +_5 = fieldNameC; __decorate([ x ], G.prototype, "property", void 0); @@ -374,45 +374,45 @@ __decorate([ __decorate([ x ], G.prototype, Symbol.iterator, void 0); -__decorate([ - x -], G.prototype, _4, void 0); __decorate([ x ], G.prototype, _2, void 0); __decorate([ x -], G.prototype, _5, void 0); +], G.prototype, _3, void 0); __decorate([ x -], G.prototype, _3, void 0); -void (_6 = class H { +], G.prototype, _4, void 0); +__decorate([ + x +], G.prototype, _5, void 0); +void (_10 = class H { constructor() { this["property2"] = 2; this[Symbol.iterator] = null; this["property4"] = 2; this[Symbol.match] = null; this[_7] = null; - this[_8] = null; + this[_9] = null; } - [(foo(), _9 = foo(), _7 = foo(), "some" + "method")]() { } - [(_10 = fieldNameB, "some" + "method2")]() { } + [(foo(), _6 = foo(), _7 = foo(), "some" + "method")]() { } + [(_8 = fieldNameB, "some" + "method2")]() { } }, - _8 = fieldNameC, - _6); + _9 = fieldNameC, + _10); class I { constructor() { this["property2"] = 2; this[Symbol.iterator] = null; this["property4"] = 2; this[Symbol.match] = null; - this[_11] = null; this[_12] = null; + this[_15] = null; } - [(foo(), _13 = foo(), _11 = foo(), _14 = "some" + "method")]() { } - [(_15 = fieldNameB, "some" + "method2")]() { } + [(foo(), _11 = foo(), _12 = foo(), _13 = "some" + "method")]() { } + [(_14 = fieldNameB, "some" + "method2")]() { } } -_12 = fieldNameC; +_15 = fieldNameC; __decorate([ x ], I.prototype, "property", void 0); @@ -425,33 +425,33 @@ __decorate([ __decorate([ x ], I.prototype, Symbol.iterator, void 0); -__decorate([ - x -], I.prototype, _13, void 0); __decorate([ x ], I.prototype, _11, void 0); __decorate([ x -], I.prototype, _14, null); +], I.prototype, _12, void 0); +__decorate([ + x +], I.prototype, _13, null); +__decorate([ + x +], I.prototype, _14, void 0); __decorate([ x ], I.prototype, _15, void 0); -__decorate([ - x -], I.prototype, _12, void 0); -void (_16 = class J { +void (_21 = class J { constructor() { this["property2"] = 2; this[Symbol.iterator] = null; this["property4"] = 2; this[Symbol.match] = null; this[_17] = null; - this[_18] = null; + this[_20] = null; } - [(foo(), _19 = foo(), _17 = foo(), _20 = "some" + "method")]() { } - [(_21 = fieldNameB, "some" + "method2")]() { } + [(foo(), _16 = foo(), _17 = foo(), _18 = "some" + "method")]() { } + [(_19 = fieldNameB, "some" + "method2")]() { } }, - _18 = fieldNameC, - _16); -var _c, _a, _d, _b, _h, _f, _j, _g, _e, _m, _k, _o, _l, _r, _p, _s, _q, _v, _t, _w, _u, _0, _y, _1, _z, _x, _4, _2, _5, _3, _9, _7, _10, _8, _6, _13, _11, _14, _15, _12, _19, _17, _20, _21, _18, _16; + _20 = fieldNameC, + _21); +var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18, _19, _20, _21; diff --git a/tests/baselines/reference/destructuringReassignsRightHandSide.js b/tests/baselines/reference/destructuringReassignsRightHandSide.js index b893202aa1e..bf24fa937b1 100644 --- a/tests/baselines/reference/destructuringReassignsRightHandSide.js +++ b/tests/baselines/reference/destructuringReassignsRightHandSide.js @@ -12,7 +12,7 @@ var { foo, baz } = foo; var foo = { foo: 1, bar: 2 }; var bar; // reassignment in destructuring pattern -(_a = foo, foo = _a.foo, bar = _a.bar); +(_b = foo, foo = _b.foo, bar = _b.bar); // reassignment in subsequent var -var _b = foo, foo = _b.foo, baz = _b.baz; -var _a; +var _a = foo, foo = _a.foo, baz = _a.baz; +var _b; diff --git a/tests/baselines/reference/emitCompoundExponentiationAssignmentWithIndexingOnLHS1.js b/tests/baselines/reference/emitCompoundExponentiationAssignmentWithIndexingOnLHS1.js index 050e36140de..af13c31ab75 100644 --- a/tests/baselines/reference/emitCompoundExponentiationAssignmentWithIndexingOnLHS1.js +++ b/tests/baselines/reference/emitCompoundExponentiationAssignmentWithIndexingOnLHS1.js @@ -21,11 +21,11 @@ var i0 = 0; (_a = array0)[_b = ++i0] = Math.pow(_a[_b], 2); var array1 = [1, 2, 3]; var i1 = 0; -(_c = array1)[_d = ++i1] = Math.pow(_c[_d], (_e = array1)[_f = ++i1] = Math.pow(_e[_f], 2)); +(_e = array1)[_f = ++i1] = Math.pow(_e[_f], (_c = array1)[_d = ++i1] = Math.pow(_c[_d], 2)); var array2 = [1, 2, 3]; var i2 = 0; (_g = array2)[_h = ++i2] = Math.pow(_g[_h], Math.pow(array2[++i2], 2)); var array3 = [2, 2, 3]; var j0 = 0, j1 = 1; -(_j = array3)[_k = j0++] = Math.pow(_j[_k], (_l = array3)[_m = j1++] = Math.pow(_l[_m], (_o = array3)[_p = j0++] = Math.pow(_o[_p], 1))); -var _a, _b, _e, _f, _c, _d, _g, _h, _o, _p, _l, _m, _j, _k; +(_o = array3)[_p = j0++] = Math.pow(_o[_p], (_l = array3)[_m = j1++] = Math.pow(_l[_m], (_j = array3)[_k = j0++] = Math.pow(_j[_k], 1))); +var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p; diff --git a/tests/baselines/reference/emitCompoundExponentiationAssignmentWithIndexingOnLHS2.js b/tests/baselines/reference/emitCompoundExponentiationAssignmentWithIndexingOnLHS2.js index 54ef77b0467..37da00f81ce 100644 --- a/tests/baselines/reference/emitCompoundExponentiationAssignmentWithIndexingOnLHS2.js +++ b/tests/baselines/reference/emitCompoundExponentiationAssignmentWithIndexingOnLHS2.js @@ -19,8 +19,8 @@ function foo() { } (_a = foo())[_b = 0] = Math.pow(_a[_b], foo()[0]); var result_foo1 = (_c = foo())[_d = 0] = Math.pow(_c[_d], foo()[0]); -(_e = foo())[_f = 0] = Math.pow(_e[_f], (_g = foo())[_h = 0] = Math.pow(_g[_h], 2)); -var result_foo2 = (_j = foo())[_k = 0] = Math.pow(_j[_k], (_l = foo())[_m = 0] = Math.pow(_l[_m], 2)); +(_g = foo())[_h = 0] = Math.pow(_g[_h], (_e = foo())[_f = 0] = Math.pow(_e[_f], 2)); +var result_foo2 = (_l = foo())[_m = 0] = Math.pow(_l[_m], (_j = foo())[_k = 0] = Math.pow(_j[_k], 2)); (_o = foo())[_p = 0] = Math.pow(_o[_p], Math.pow(foo()[0], 2)); var result_foo3 = (_q = foo())[_r = 0] = Math.pow(_q[_r], Math.pow(foo()[0], 2)); -var _a, _b, _c, _d, _g, _h, _e, _f, _l, _m, _j, _k, _o, _p, _q, _r; +var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r; diff --git a/tests/baselines/reference/emitCompoundExponentiationAssignmentWithIndexingOnLHS3.js b/tests/baselines/reference/emitCompoundExponentiationAssignmentWithIndexingOnLHS3.js index 0410f77ad0c..6d09af018f1 100644 --- a/tests/baselines/reference/emitCompoundExponentiationAssignmentWithIndexingOnLHS3.js +++ b/tests/baselines/reference/emitCompoundExponentiationAssignmentWithIndexingOnLHS3.js @@ -23,6 +23,6 @@ var object = { }, }; (_a = object)[_b = 0] = Math.pow(_a[_b], object[0]); -(_c = object)[_d = 0] = Math.pow(_c[_d], (_e = object)[_f = 0] = Math.pow(_e[_f], 2)); +(_e = object)[_f = 0] = Math.pow(_e[_f], (_c = object)[_d = 0] = Math.pow(_c[_d], 2)); (_g = object)[_h = 0] = Math.pow(_g[_h], Math.pow(object[0], 2)); -var _a, _b, _e, _f, _c, _d, _g, _h; +var _a, _b, _c, _d, _e, _f, _g, _h; diff --git a/tests/baselines/reference/emitCompoundExponentiationAssignmentWithIndexingOnLHS4.js b/tests/baselines/reference/emitCompoundExponentiationAssignmentWithIndexingOnLHS4.js index 4ba9cff676d..759dac3c194 100644 --- a/tests/baselines/reference/emitCompoundExponentiationAssignmentWithIndexingOnLHS4.js +++ b/tests/baselines/reference/emitCompoundExponentiationAssignmentWithIndexingOnLHS4.js @@ -23,6 +23,6 @@ function incrementIdx(max) { } var array1 = [1, 2, 3, 4, 5]; (_a = array1)[_b = incrementIdx(array1.length)] = Math.pow(_a[_b], 3); -(_c = array1)[_d = incrementIdx(array1.length)] = Math.pow(_c[_d], (_e = array1)[_f = incrementIdx(array1.length)] = Math.pow(_e[_f], 2)); +(_e = array1)[_f = incrementIdx(array1.length)] = Math.pow(_e[_f], (_c = array1)[_d = incrementIdx(array1.length)] = Math.pow(_c[_d], 2)); (_g = array1)[_h = incrementIdx(array1.length)] = Math.pow(_g[_h], Math.pow(array1[incrementIdx(array1.length)], 2)); -var _a, _b, _e, _f, _c, _d, _g, _h; +var _a, _b, _c, _d, _e, _f, _g, _h; diff --git a/tests/baselines/reference/emitCompoundExponentiationAssignmentWithPropertyAccessingOnLHS1.js b/tests/baselines/reference/emitCompoundExponentiationAssignmentWithPropertyAccessingOnLHS1.js index 90255262e60..9754f0163c2 100644 --- a/tests/baselines/reference/emitCompoundExponentiationAssignmentWithPropertyAccessingOnLHS1.js +++ b/tests/baselines/reference/emitCompoundExponentiationAssignmentWithPropertyAccessingOnLHS1.js @@ -19,8 +19,8 @@ function foo() { } (_a = foo()).prop = Math.pow(_a.prop, 2); var result0 = (_b = foo()).prop = Math.pow(_b.prop, 2); -(_c = foo()).prop = Math.pow(_c.prop, (_d = foo()).prop = Math.pow(_d.prop, 2)); -var result1 = (_e = foo()).prop = Math.pow(_e.prop, (_f = foo()).prop = Math.pow(_f.prop, 2)); +(_d = foo()).prop = Math.pow(_d.prop, (_c = foo()).prop = Math.pow(_c.prop, 2)); +var result1 = (_f = foo()).prop = Math.pow(_f.prop, (_e = foo()).prop = Math.pow(_e.prop, 2)); (_g = foo()).prop = Math.pow(_g.prop, Math.pow(foo().prop, 2)); var result2 = (_h = foo()).prop = Math.pow(_h.prop, Math.pow(foo().prop, 2)); -var _a, _b, _d, _c, _f, _e, _g, _h; +var _a, _b, _c, _d, _e, _f, _g, _h; diff --git a/tests/baselines/reference/emptyVariableDeclarationBindingPatterns01_ES5iterable.js b/tests/baselines/reference/emptyVariableDeclarationBindingPatterns01_ES5iterable.js index d4632999e0c..09d4cb8972b 100644 --- a/tests/baselines/reference/emptyVariableDeclarationBindingPatterns01_ES5iterable.js +++ b/tests/baselines/reference/emptyVariableDeclarationBindingPatterns01_ES5iterable.js @@ -113,61 +113,61 @@ var __values = (this && this.__values) || function (o) { catch (e_1_1) { e_1 = { error: e_1_1 }; } finally { try { - if (ns_1_1 && !ns_1_1.done && (_b = ns_1.return)) _b.call(ns_1); + if (ns_1_1 && !ns_1_1.done && (_g = ns_1.return)) _g.call(ns_1); } finally { if (e_1) throw e_1.error; } } try { for (var ns_2 = __values(ns), ns_2_1 = ns_2.next(); !ns_2_1.done; ns_2_1 = ns_2.next()) { - var _c = ns_2_1.value; + var _b = ns_2_1.value; } } catch (e_2_1) { e_2 = { error: e_2_1 }; } finally { try { - if (ns_2_1 && !ns_2_1.done && (_d = ns_2.return)) _d.call(ns_2); + if (ns_2_1 && !ns_2_1.done && (_h = ns_2.return)) _h.call(ns_2); } finally { if (e_2) throw e_2.error; } } try { for (var ns_3 = __values(ns), ns_3_1 = ns_3.next(); !ns_3_1.done; ns_3_1 = ns_3.next()) { - var _e = ns_3_1.value; + var _c = ns_3_1.value; } } catch (e_3_1) { e_3 = { error: e_3_1 }; } finally { try { - if (ns_3_1 && !ns_3_1.done && (_f = ns_3.return)) _f.call(ns_3); + if (ns_3_1 && !ns_3_1.done && (_j = ns_3.return)) _j.call(ns_3); } finally { if (e_3) throw e_3.error; } } try { for (var ns_4 = __values(ns), ns_4_1 = ns_4.next(); !ns_4_1.done; ns_4_1 = ns_4.next()) { - var _g = __read(ns_4_1.value, 0); + var _d = __read(ns_4_1.value, 0); } } catch (e_4_1) { e_4 = { error: e_4_1 }; } finally { try { - if (ns_4_1 && !ns_4_1.done && (_h = ns_4.return)) _h.call(ns_4); + if (ns_4_1 && !ns_4_1.done && (_k = ns_4.return)) _k.call(ns_4); } finally { if (e_4) throw e_4.error; } } try { for (var ns_5 = __values(ns), ns_5_1 = ns_5.next(); !ns_5_1.done; ns_5_1 = ns_5.next()) { - var _j = __read(ns_5_1.value, 0); + var _e = __read(ns_5_1.value, 0); } } catch (e_5_1) { e_5 = { error: e_5_1 }; } finally { try { - if (ns_5_1 && !ns_5_1.done && (_k = ns_5.return)) _k.call(ns_5); + if (ns_5_1 && !ns_5_1.done && (_l = ns_5.return)) _l.call(ns_5); } finally { if (e_5) throw e_5.error; } } try { for (var ns_6 = __values(ns), ns_6_1 = ns_6.next(); !ns_6_1.done; ns_6_1 = ns_6.next()) { - var _l = __read(ns_6_1.value, 0); + var _f = __read(ns_6_1.value, 0); } } catch (e_6_1) { e_6 = { error: e_6_1 }; } @@ -177,5 +177,5 @@ var __values = (this && this.__values) || function (o) { } finally { if (e_6) throw e_6.error; } } - var e_1, _b, e_2, _d, e_3, _f, e_4, _h, e_5, _k, e_6, _m; + var e_1, _g, e_2, _h, e_3, _j, e_4, _k, e_5, _l, e_6, _m; })(); diff --git a/tests/baselines/reference/objectRest.js b/tests/baselines/reference/objectRest.js index c314377f807..75cf71293a7 100644 --- a/tests/baselines/reference/objectRest.js +++ b/tests/baselines/reference/objectRest.js @@ -70,9 +70,9 @@ let nestedrest; var { x } = nestedrest, _a = nestedrest.n1, { y } = _a, _b = _a.n2, { z } = _b, nr = __rest(_b.n3, []), restrest = __rest(nestedrest, ["x", "n1"]); let complex; var _c = complex.x, { ka } = _c, nested = __rest(_c, ["ka"]), { y: other } = complex, rest = __rest(complex, ["x", "y"]); -(_d = complex.x, { ka } = _d, nested = __rest(_d, ["ka"]), { y: other } = complex, rest = __rest(complex, ["x", "y"])); -var _e = { x: 1, y: 2 }, { x } = _e, fresh = __rest(_e, ["x"]); -(_f = { x: 1, y: 2 }, { x } = _f, fresh = __rest(_f, ["x"])); +(_h = complex.x, { ka } = _h, nested = __rest(_h, ["ka"]), { y: other } = complex, rest = __rest(complex, ["x", "y"])); +var _d = { x: 1, y: 2 }, { x } = _d, fresh = __rest(_d, ["x"]); +(_j = { x: 1, y: 2 }, { x } = _j, fresh = __rest(_j, ["x"])); class Removable { set z(value) { } get both() { return 12; } @@ -85,10 +85,10 @@ var i = removable; var { removed } = i, removableRest2 = __rest(i, ["removed"]); let computed = 'b'; let computed2 = 'a'; -var _g = o, _h = computed, stillNotGreat = _g[_h], _j = computed2, soSo = _g[_j], o = __rest(_g, [typeof _h === "symbol" ? _h : _h + "", typeof _j === "symbol" ? _j : _j + ""]); +var _e = o, _f = computed, stillNotGreat = _e[_f], _g = computed2, soSo = _e[_g], o = __rest(_e, [typeof _f === "symbol" ? _f : _f + "", typeof _g === "symbol" ? _g : _g + ""]); (_k = o, _l = computed, stillNotGreat = _k[_l], _m = computed2, soSo = _k[_m], o = __rest(_k, [typeof _l === "symbol" ? _l : _l + "", typeof _m === "symbol" ? _m : _m + ""])); var noContextualType = (_a) => { var { aNumber = 12 } = _a, notEmptyObject = __rest(_a, ["aNumber"]); return aNumber + notEmptyObject.anythingGoes; }; -var _d, _f, _k, _l, _m; +var _h, _j, _k, _l, _m; diff --git a/tests/baselines/reference/objectRestAssignment.js b/tests/baselines/reference/objectRestAssignment.js index cbdff663c26..4709c39d9fa 100644 --- a/tests/baselines/reference/objectRestAssignment.js +++ b/tests/baselines/reference/objectRestAssignment.js @@ -29,10 +29,10 @@ let nested; let other; let rest; let complex; -(_a = complex.x, { ka } = _a, nested = __rest(_a, ["ka"]), { y: other } = complex, rest = __rest(complex, ["x", "y"])); +(_c = complex.x, { ka } = _c, nested = __rest(_c, ["ka"]), { y: other } = complex, rest = __rest(complex, ["x", "y"])); // should be: let overEmit; // var _g = overEmit.a, [_h, ...y] = _g, nested2 = __rest(_h, []), _j = overEmit.b, { z } = _j, c = __rest(_j, ["z"]), rest2 = __rest(overEmit, ["a", "b"]); -var [_b, ...y] = overEmit.a, nested2 = __rest(_b, []), _c = overEmit.b, { z } = _c, c = __rest(_c, ["z"]), rest2 = __rest(overEmit, ["a", "b"]); +var [_a, ...y] = overEmit.a, nested2 = __rest(_a, []), _b = overEmit.b, { z } = _b, c = __rest(_b, ["z"]), rest2 = __rest(overEmit, ["a", "b"]); ([_d, ...y] = overEmit.a, nested2 = __rest(_d, []), _e = overEmit.b, { z } = _e, c = __rest(_e, ["z"]), rest2 = __rest(overEmit, ["a", "b"])); -var _a, _d, _e; +var _c, _d, _e; diff --git a/tests/baselines/reference/sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2.js b/tests/baselines/reference/sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2.js index 7192ed98dbe..335c2327b7d 100644 --- a/tests/baselines/reference/sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2.js +++ b/tests/baselines/reference/sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2.js @@ -129,52 +129,52 @@ var numberB, nameB; var numberA2, nameA2, skillA2, nameMA; var numberA3, robotAInfo, multiRobotAInfo; var i; -for (_a = robotA[1], nameA = _a === void 0 ? "name" : _a, robotA, i = 0; i < 1; i++) { +for (_f = robotA[1], nameA = _f === void 0 ? "name" : _f, robotA, i = 0; i < 1; i++) { console.log(nameA); } -for (_b = getRobot(), _c = _b[1], nameA = _c === void 0 ? "name" : _c, _b, i = 0; i < 1; i++) { +for (_g = getRobot(), _h = _g[1], nameA = _h === void 0 ? "name" : _h, _g, i = 0; i < 1; i++) { console.log(nameA); } -for (_d = [2, "trimmer", "trimming"], _e = _d[1], nameA = _e === void 0 ? "name" : _e, _d, i = 0; i < 1; i++) { +for (_j = [2, "trimmer", "trimming"], _k = _j[1], nameA = _k === void 0 ? "name" : _k, _j, i = 0; i < 1; i++) { console.log(nameA); } -for (_f = multiRobotA[1], _g = _f === void 0 ? ["none", "none"] : _f, _h = _g[0], primarySkillA = _h === void 0 ? "primary" : _h, _j = _g[1], secondarySkillA = _j === void 0 ? "secondary" : _j, multiRobotA, i = 0; i < 1; i++) { +for (_l = multiRobotA[1], _m = _l === void 0 ? ["none", "none"] : _l, _o = _m[0], primarySkillA = _o === void 0 ? "primary" : _o, _p = _m[1], secondarySkillA = _p === void 0 ? "secondary" : _p, multiRobotA, i = 0; i < 1; i++) { console.log(primarySkillA); } -for (_k = getMultiRobot(), _l = _k[1], _m = _l === void 0 ? ["none", "none"] : _l, _o = _m[0], primarySkillA = _o === void 0 ? "primary" : _o, _p = _m[1], secondarySkillA = _p === void 0 ? "secondary" : _p, _k, i = 0; i < 1; i++) { +for (_q = getMultiRobot(), _r = _q[1], _s = _r === void 0 ? ["none", "none"] : _r, _t = _s[0], primarySkillA = _t === void 0 ? "primary" : _t, _u = _s[1], secondarySkillA = _u === void 0 ? "secondary" : _u, _q, i = 0; i < 1; i++) { console.log(primarySkillA); } -for (_q = ["trimmer", ["trimming", "edging"]], _r = _q[1], _s = _r === void 0 ? ["none", "none"] : _r, _t = _s[0], primarySkillA = _t === void 0 ? "primary" : _t, _u = _s[1], secondarySkillA = _u === void 0 ? "secondary" : _u, _q, i = 0; i < 1; i++) { +for (_v = ["trimmer", ["trimming", "edging"]], _w = _v[1], _x = _w === void 0 ? ["none", "none"] : _w, _y = _x[0], primarySkillA = _y === void 0 ? "primary" : _y, _z = _x[1], secondarySkillA = _z === void 0 ? "secondary" : _z, _v, i = 0; i < 1; i++) { console.log(primarySkillA); } -for (_v = robotA[0], numberB = _v === void 0 ? -1 : _v, robotA, i = 0; i < 1; i++) { +for (_0 = robotA[0], numberB = _0 === void 0 ? -1 : _0, robotA, i = 0; i < 1; i++) { console.log(numberB); } -for (_w = getRobot(), _x = _w[0], numberB = _x === void 0 ? -1 : _x, _w, i = 0; i < 1; i++) { +for (_1 = getRobot(), _2 = _1[0], numberB = _2 === void 0 ? -1 : _2, _1, i = 0; i < 1; i++) { console.log(numberB); } -for (_y = [2, "trimmer", "trimming"], _z = _y[0], numberB = _z === void 0 ? -1 : _z, _y, i = 0; i < 1; i++) { +for (_3 = [2, "trimmer", "trimming"], _4 = _3[0], numberB = _4 === void 0 ? -1 : _4, _3, i = 0; i < 1; i++) { console.log(numberB); } -for (_0 = multiRobotA[0], nameB = _0 === void 0 ? "name" : _0, multiRobotA, i = 0; i < 1; i++) { +for (_5 = multiRobotA[0], nameB = _5 === void 0 ? "name" : _5, multiRobotA, i = 0; i < 1; i++) { console.log(nameB); } -for (_1 = getMultiRobot(), _2 = _1[0], nameB = _2 === void 0 ? "name" : _2, _1, i = 0; i < 1; i++) { +for (_6 = getMultiRobot(), _7 = _6[0], nameB = _7 === void 0 ? "name" : _7, _6, i = 0; i < 1; i++) { console.log(nameB); } -for (_3 = ["trimmer", ["trimming", "edging"]], _4 = _3[0], nameB = _4 === void 0 ? "name" : _4, _3, i = 0; i < 1; i++) { +for (_8 = ["trimmer", ["trimming", "edging"]], _9 = _8[0], nameB = _9 === void 0 ? "name" : _9, _8, i = 0; i < 1; i++) { console.log(nameB); } -for (_5 = robotA[0], numberA2 = _5 === void 0 ? -1 : _5, _6 = robotA[1], nameA2 = _6 === void 0 ? "name" : _6, _7 = robotA[2], skillA2 = _7 === void 0 ? "skill" : _7, robotA, i = 0; i < 1; i++) { +for (_10 = robotA[0], numberA2 = _10 === void 0 ? -1 : _10, _11 = robotA[1], nameA2 = _11 === void 0 ? "name" : _11, _12 = robotA[2], skillA2 = _12 === void 0 ? "skill" : _12, robotA, i = 0; i < 1; i++) { console.log(nameA2); } -for (_8 = getRobot(), _9 = _8[0], numberA2 = _9 === void 0 ? -1 : _9, _10 = _8[1], nameA2 = _10 === void 0 ? "name" : _10, _11 = _8[2], skillA2 = _11 === void 0 ? "skill" : _11, _8, i = 0; i < 1; i++) { +for (_13 = getRobot(), _14 = _13[0], numberA2 = _14 === void 0 ? -1 : _14, _15 = _13[1], nameA2 = _15 === void 0 ? "name" : _15, _16 = _13[2], skillA2 = _16 === void 0 ? "skill" : _16, _13, i = 0; i < 1; i++) { console.log(nameA2); } -for (_12 = [2, "trimmer", "trimming"], _13 = _12[0], numberA2 = _13 === void 0 ? -1 : _13, _14 = _12[1], nameA2 = _14 === void 0 ? "name" : _14, _15 = _12[2], skillA2 = _15 === void 0 ? "skill" : _15, _12, i = 0; i < 1; i++) { +for (_17 = [2, "trimmer", "trimming"], _18 = _17[0], numberA2 = _18 === void 0 ? -1 : _18, _19 = _17[1], nameA2 = _19 === void 0 ? "name" : _19, _20 = _17[2], skillA2 = _20 === void 0 ? "skill" : _20, _17, i = 0; i < 1; i++) { console.log(nameA2); } -for (var _16 = multiRobotA[0], nameMA_1 = _16 === void 0 ? "noName" : _16, _17 = multiRobotA[1], _18 = _17 === void 0 ? ["none", "none"] : _17, _19 = _18[0], primarySkillA_1 = _19 === void 0 ? "primary" : _19, _20 = _18[1], secondarySkillA_1 = _20 === void 0 ? "secondary" : _20, i_1 = 0; i_1 < 1; i_1++) { +for (var _a = multiRobotA[0], nameMA_1 = _a === void 0 ? "noName" : _a, _b = multiRobotA[1], _c = _b === void 0 ? ["none", "none"] : _b, _d = _c[0], primarySkillA_1 = _d === void 0 ? "primary" : _d, _e = _c[1], secondarySkillA_1 = _e === void 0 ? "secondary" : _e, i_1 = 0; i_1 < 1; i_1++) { console.log(nameMA_1); } for (_21 = getMultiRobot(), _22 = _21[0], nameMA = _22 === void 0 ? "noName" : _22, _23 = _21[1], _24 = _23 === void 0 ? ["none", "none"] : _23, _25 = _24[0], primarySkillA = _25 === void 0 ? "primary" : _25, _26 = _24[1], secondarySkillA = _26 === void 0 ? "secondary" : _26, _21, i = 0; i < 1; i++) { @@ -192,5 +192,5 @@ for (_34 = getRobot(), _35 = _34[0], numberA3 = _35 === void 0 ? -1 : _35, robot for (_36 = [2, "trimmer", "trimming"], _37 = _36[0], numberA3 = _37 === void 0 ? -1 : _37, robotAInfo = _36.slice(1), _36, i = 0; i < 1; i++) { console.log(numberA3); } -var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33, _34, _35, _36, _37; +var _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33, _34, _35, _36, _37; //# sourceMappingURL=sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2.js.map \ No newline at end of file diff --git a/tests/baselines/reference/sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2.js.map b/tests/baselines/reference/sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2.js.map index 16da624a97d..99e620f7c78 100644 --- a/tests/baselines/reference/sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2.js.map +++ b/tests/baselines/reference/sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2.js.map @@ -1,2 +1,2 @@ //// [sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2.js.map] -{"version":3,"file":"sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2.js","sourceRoot":"","sources":["sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2.js","sourceRoot":"","sources":["sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/tests/baselines/reference/sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2.sourcemap.txt b/tests/baselines/reference/sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2.sourcemap.txt index 12c73bc4408..8a8b097d084 100644 --- a/tests/baselines/reference/sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2.sourcemap.txt +++ b/tests/baselines/reference/sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2.sourcemap.txt @@ -335,7 +335,7 @@ sourceFile:sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2. 3 >Emitted(14, 6) Source(22, 14) + SourceIndex(0) 4 >Emitted(14, 7) Source(22, 15) + SourceIndex(0) --- ->>>for (_a = robotA[1], nameA = _a === void 0 ? "name" : _a, robotA, i = 0; i < 1; i++) { +>>>for (_f = robotA[1], nameA = _f === void 0 ? "name" : _f, robotA, i = 0; i < 1; i++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^^^^^ @@ -430,7 +430,7 @@ sourceFile:sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2. >} 1 >Emitted(17, 2) Source(26, 2) + SourceIndex(0) --- ->>>for (_b = getRobot(), _c = _b[1], nameA = _c === void 0 ? "name" : _c, _b, i = 0; i < 1; i++) { +>>>for (_g = getRobot(), _h = _g[1], nameA = _h === void 0 ? "name" : _h, _g, i = 0; i < 1; i++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^^^^^^ @@ -524,7 +524,7 @@ sourceFile:sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2. >} 1 >Emitted(20, 2) Source(29, 2) + SourceIndex(0) --- ->>>for (_d = [2, "trimmer", "trimming"], _e = _d[1], nameA = _e === void 0 ? "name" : _e, _d, i = 0; i < 1; i++) { +>>>for (_j = [2, "trimmer", "trimming"], _k = _j[1], nameA = _k === void 0 ? "name" : _k, _j, i = 0; i < 1; i++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -618,7 +618,7 @@ sourceFile:sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2. >} 1 >Emitted(23, 2) Source(32, 2) + SourceIndex(0) --- ->>>for (_f = multiRobotA[1], _g = _f === void 0 ? ["none", "none"] : _f, _h = _g[0], primarySkillA = _h === void 0 ? "primary" : _h, _j = _g[1], secondarySkillA = _j === void 0 ? "secondary" : _j, multiRobotA, i = 0; i < 1; i++) { +>>>for (_l = multiRobotA[1], _m = _l === void 0 ? ["none", "none"] : _l, _o = _m[0], primarySkillA = _o === void 0 ? "primary" : _o, _p = _m[1], secondarySkillA = _p === void 0 ? "secondary" : _p, multiRobotA, i = 0; i < 1; i++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^ @@ -744,7 +744,7 @@ sourceFile:sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2. >} 1 >Emitted(26, 2) Source(38, 2) + SourceIndex(0) --- ->>>for (_k = getMultiRobot(), _l = _k[1], _m = _l === void 0 ? ["none", "none"] : _l, _o = _m[0], primarySkillA = _o === void 0 ? "primary" : _o, _p = _m[1], secondarySkillA = _p === void 0 ? "secondary" : _p, _k, i = 0; i < 1; i++) { +>>>for (_q = getMultiRobot(), _r = _q[1], _s = _r === void 0 ? ["none", "none"] : _r, _t = _s[0], primarySkillA = _t === void 0 ? "primary" : _t, _u = _s[1], secondarySkillA = _u === void 0 ? "secondary" : _u, _q, i = 0; i < 1; i++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^ @@ -873,7 +873,7 @@ sourceFile:sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2. >} 1 >Emitted(29, 2) Source(44, 2) + SourceIndex(0) --- ->>>for (_q = ["trimmer", ["trimming", "edging"]], _r = _q[1], _s = _r === void 0 ? ["none", "none"] : _r, _t = _s[0], primarySkillA = _t === void 0 ? "primary" : _t, _u = _s[1], secondarySkillA = _u === void 0 ? "secondary" : _u, _q, i = 0; i < 1; i++) { +>>>for (_v = ["trimmer", ["trimming", "edging"]], _w = _v[1], _x = _w === void 0 ? ["none", "none"] : _w, _y = _x[0], primarySkillA = _y === void 0 ? "primary" : _y, _z = _x[1], secondarySkillA = _z === void 0 ? "secondary" : _z, _v, i = 0; i < 1; i++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -1002,7 +1002,7 @@ sourceFile:sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2. >} 1 >Emitted(32, 2) Source(50, 2) + SourceIndex(0) --- ->>>for (_v = robotA[0], numberB = _v === void 0 ? -1 : _v, robotA, i = 0; i < 1; i++) { +>>>for (_0 = robotA[0], numberB = _0 === void 0 ? -1 : _0, robotA, i = 0; i < 1; i++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^^^^^ @@ -1097,7 +1097,7 @@ sourceFile:sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2. >} 1 >Emitted(35, 2) Source(54, 2) + SourceIndex(0) --- ->>>for (_w = getRobot(), _x = _w[0], numberB = _x === void 0 ? -1 : _x, _w, i = 0; i < 1; i++) { +>>>for (_1 = getRobot(), _2 = _1[0], numberB = _2 === void 0 ? -1 : _2, _1, i = 0; i < 1; i++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^^^^^^ @@ -1191,7 +1191,7 @@ sourceFile:sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2. >} 1 >Emitted(38, 2) Source(57, 2) + SourceIndex(0) --- ->>>for (_y = [2, "trimmer", "trimming"], _z = _y[0], numberB = _z === void 0 ? -1 : _z, _y, i = 0; i < 1; i++) { +>>>for (_3 = [2, "trimmer", "trimming"], _4 = _3[0], numberB = _4 === void 0 ? -1 : _4, _3, i = 0; i < 1; i++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -1285,7 +1285,7 @@ sourceFile:sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2. >} 1 >Emitted(41, 2) Source(60, 2) + SourceIndex(0) --- ->>>for (_0 = multiRobotA[0], nameB = _0 === void 0 ? "name" : _0, multiRobotA, i = 0; i < 1; i++) { +>>>for (_5 = multiRobotA[0], nameB = _5 === void 0 ? "name" : _5, multiRobotA, i = 0; i < 1; i++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^ @@ -1379,7 +1379,7 @@ sourceFile:sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2. >} 1 >Emitted(44, 2) Source(63, 2) + SourceIndex(0) --- ->>>for (_1 = getMultiRobot(), _2 = _1[0], nameB = _2 === void 0 ? "name" : _2, _1, i = 0; i < 1; i++) { +>>>for (_6 = getMultiRobot(), _7 = _6[0], nameB = _7 === void 0 ? "name" : _7, _6, i = 0; i < 1; i++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^ @@ -1473,7 +1473,7 @@ sourceFile:sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2. >} 1 >Emitted(47, 2) Source(66, 2) + SourceIndex(0) --- ->>>for (_3 = ["trimmer", ["trimming", "edging"]], _4 = _3[0], nameB = _4 === void 0 ? "name" : _4, _3, i = 0; i < 1; i++) { +>>>for (_8 = ["trimmer", ["trimming", "edging"]], _9 = _8[0], nameB = _9 === void 0 ? "name" : _9, _8, i = 0; i < 1; i++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -1562,95 +1562,95 @@ sourceFile:sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2. --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(50, 2) Source(69, 2) + SourceIndex(0) --- ->>>for (_5 = robotA[0], numberA2 = _5 === void 0 ? -1 : _5, _6 = robotA[1], nameA2 = _6 === void 0 ? "name" : _6, _7 = robotA[2], skillA2 = _7 === void 0 ? "skill" : _7, robotA, i = 0; i < 1; i++) { +>>>for (_10 = robotA[0], numberA2 = _10 === void 0 ? -1 : _10, _11 = robotA[1], nameA2 = _11 === void 0 ? "name" : _11, _12 = robotA[2], skillA2 = _12 === void 0 ? "skill" : _12, robotA, i = 0; i < 1; i++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -6 > ^^ -7 > ^^^^^^^^^^^^^^ -8 > ^^ -9 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -10> ^^ -11> ^^^^^^^^^^^^^^ -12> ^^ -13> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -14> ^^ -15> ^^^^^^ -16> ^^ -17> ^ -18> ^^^ -19> ^ -20> ^^ -21> ^ -22> ^^^ -23> ^ -24> ^^ -25> ^ -26> ^^ -27> ^^ +3 > ^^^^^^^^^^^^^^^ +4 > ^^ +5 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +6 > ^^ +7 > ^^^^^^^^^^^^^^^ +8 > ^^ +9 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +10> ^^ +11> ^^^^^^^^^^^^^^^ +12> ^^ +13> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +14> ^^ +15> ^^^^^^ +16> ^^ +17> ^ +18> ^^^ +19> ^ +20> ^^ +21> ^ +22> ^^^ +23> ^ +24> ^^ +25> ^ +26> ^^ +27> ^^ 1-> > > 2 >for ([ 3 > numberA2 = -1 -4 > -5 > numberA2 = -1 -6 > , -7 > nameA2 = "name" -8 > -9 > nameA2 = "name" -10> , -11> skillA2 = "skill" -12> -13> skillA2 = "skill" -14> ] = -15> robotA -16> , -17> i -18> = -19> 0 -20> ; -21> i -22> < -23> 1 -24> ; -25> i -26> ++ -27> ) +4 > +5 > numberA2 = -1 +6 > , +7 > nameA2 = "name" +8 > +9 > nameA2 = "name" +10> , +11> skillA2 = "skill" +12> +13> skillA2 = "skill" +14> ] = +15> robotA +16> , +17> i +18> = +19> 0 +20> ; +21> i +22> < +23> 1 +24> ; +25> i +26> ++ +27> ) 1->Emitted(51, 1) Source(71, 1) + SourceIndex(0) 2 >Emitted(51, 6) Source(71, 7) + SourceIndex(0) -3 >Emitted(51, 20) Source(71, 20) + SourceIndex(0) -4 >Emitted(51, 22) Source(71, 7) + SourceIndex(0) -5 >Emitted(51, 56) Source(71, 20) + SourceIndex(0) -6 >Emitted(51, 58) Source(71, 22) + SourceIndex(0) -7 >Emitted(51, 72) Source(71, 37) + SourceIndex(0) -8 >Emitted(51, 74) Source(71, 22) + SourceIndex(0) -9 >Emitted(51, 110) Source(71, 37) + SourceIndex(0) -10>Emitted(51, 112) Source(71, 39) + SourceIndex(0) -11>Emitted(51, 126) Source(71, 56) + SourceIndex(0) -12>Emitted(51, 128) Source(71, 39) + SourceIndex(0) -13>Emitted(51, 166) Source(71, 56) + SourceIndex(0) -14>Emitted(51, 168) Source(71, 60) + SourceIndex(0) -15>Emitted(51, 174) Source(71, 66) + SourceIndex(0) -16>Emitted(51, 176) Source(71, 68) + SourceIndex(0) -17>Emitted(51, 177) Source(71, 69) + SourceIndex(0) -18>Emitted(51, 180) Source(71, 72) + SourceIndex(0) -19>Emitted(51, 181) Source(71, 73) + SourceIndex(0) -20>Emitted(51, 183) Source(71, 75) + SourceIndex(0) -21>Emitted(51, 184) Source(71, 76) + SourceIndex(0) -22>Emitted(51, 187) Source(71, 79) + SourceIndex(0) -23>Emitted(51, 188) Source(71, 80) + SourceIndex(0) -24>Emitted(51, 190) Source(71, 82) + SourceIndex(0) -25>Emitted(51, 191) Source(71, 83) + SourceIndex(0) -26>Emitted(51, 193) Source(71, 85) + SourceIndex(0) -27>Emitted(51, 195) Source(71, 87) + SourceIndex(0) +3 >Emitted(51, 21) Source(71, 20) + SourceIndex(0) +4 >Emitted(51, 23) Source(71, 7) + SourceIndex(0) +5 >Emitted(51, 59) Source(71, 20) + SourceIndex(0) +6 >Emitted(51, 61) Source(71, 22) + SourceIndex(0) +7 >Emitted(51, 76) Source(71, 37) + SourceIndex(0) +8 >Emitted(51, 78) Source(71, 22) + SourceIndex(0) +9 >Emitted(51, 116) Source(71, 37) + SourceIndex(0) +10>Emitted(51, 118) Source(71, 39) + SourceIndex(0) +11>Emitted(51, 133) Source(71, 56) + SourceIndex(0) +12>Emitted(51, 135) Source(71, 39) + SourceIndex(0) +13>Emitted(51, 175) Source(71, 56) + SourceIndex(0) +14>Emitted(51, 177) Source(71, 60) + SourceIndex(0) +15>Emitted(51, 183) Source(71, 66) + SourceIndex(0) +16>Emitted(51, 185) Source(71, 68) + SourceIndex(0) +17>Emitted(51, 186) Source(71, 69) + SourceIndex(0) +18>Emitted(51, 189) Source(71, 72) + SourceIndex(0) +19>Emitted(51, 190) Source(71, 73) + SourceIndex(0) +20>Emitted(51, 192) Source(71, 75) + SourceIndex(0) +21>Emitted(51, 193) Source(71, 76) + SourceIndex(0) +22>Emitted(51, 196) Source(71, 79) + SourceIndex(0) +23>Emitted(51, 197) Source(71, 80) + SourceIndex(0) +24>Emitted(51, 199) Source(71, 82) + SourceIndex(0) +25>Emitted(51, 200) Source(71, 83) + SourceIndex(0) +26>Emitted(51, 202) Source(71, 85) + SourceIndex(0) +27>Emitted(51, 204) Source(71, 87) + SourceIndex(0) --- >>> console.log(nameA2); 1 >^^^^ @@ -1681,94 +1681,94 @@ sourceFile:sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2. --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(53, 2) Source(73, 2) + SourceIndex(0) --- ->>>for (_8 = getRobot(), _9 = _8[0], numberA2 = _9 === void 0 ? -1 : _9, _10 = _8[1], nameA2 = _10 === void 0 ? "name" : _10, _11 = _8[2], skillA2 = _11 === void 0 ? "skill" : _11, _8, i = 0; i < 1; i++) { +>>>for (_13 = getRobot(), _14 = _13[0], numberA2 = _14 === void 0 ? -1 : _14, _15 = _13[1], nameA2 = _15 === void 0 ? "name" : _15, _16 = _13[2], skillA2 = _16 === void 0 ? "skill" : _16, _13, i = 0; i < 1; i++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^^^^^ -6 > ^^ -7 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -8 > ^^ -9 > ^^^^^^^^^^^ -10> ^^ -11> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -12> ^^ -13> ^^^^^^^^^^^ -14> ^^ -15> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -16> ^^^^^^ -17> ^ -18> ^^^ -19> ^ -20> ^^ -21> ^ -22> ^^^ -23> ^ -24> ^^ -25> ^ -26> ^^ -27> ^^ +3 > ^^^^^^^^^^^^^^^^ +4 > ^^ +5 > ^^^^^^^^^^^^ +6 > ^^ +7 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +8 > ^^ +9 > ^^^^^^^^^^^^ +10> ^^ +11> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +12> ^^ +13> ^^^^^^^^^^^^ +14> ^^ +15> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +16> ^^^^^^^ +17> ^ +18> ^^^ +19> ^ +20> ^^ +21> ^ +22> ^^^ +23> ^ +24> ^^ +25> ^ +26> ^^ +27> ^^ 1-> > 2 >for ( 3 > [numberA2 = -1, nameA2 = "name", skillA2 = "skill"] = getRobot() -4 > -5 > numberA2 = -1 -6 > -7 > numberA2 = -1 -8 > , -9 > nameA2 = "name" -10> -11> nameA2 = "name" -12> , -13> skillA2 = "skill" -14> -15> skillA2 = "skill" -16> ] = getRobot(), -17> i -18> = -19> 0 -20> ; -21> i -22> < -23> 1 -24> ; -25> i -26> ++ -27> ) +4 > +5 > numberA2 = -1 +6 > +7 > numberA2 = -1 +8 > , +9 > nameA2 = "name" +10> +11> nameA2 = "name" +12> , +13> skillA2 = "skill" +14> +15> skillA2 = "skill" +16> ] = getRobot(), +17> i +18> = +19> 0 +20> ; +21> i +22> < +23> 1 +24> ; +25> i +26> ++ +27> ) 1->Emitted(54, 1) Source(74, 1) + SourceIndex(0) 2 >Emitted(54, 6) Source(74, 6) + SourceIndex(0) -3 >Emitted(54, 21) Source(74, 70) + SourceIndex(0) -4 >Emitted(54, 23) Source(74, 7) + SourceIndex(0) -5 >Emitted(54, 33) Source(74, 20) + SourceIndex(0) -6 >Emitted(54, 35) Source(74, 7) + SourceIndex(0) -7 >Emitted(54, 69) Source(74, 20) + SourceIndex(0) -8 >Emitted(54, 71) Source(74, 22) + SourceIndex(0) -9 >Emitted(54, 82) Source(74, 37) + SourceIndex(0) -10>Emitted(54, 84) Source(74, 22) + SourceIndex(0) -11>Emitted(54, 122) Source(74, 37) + SourceIndex(0) -12>Emitted(54, 124) Source(74, 39) + SourceIndex(0) -13>Emitted(54, 135) Source(74, 56) + SourceIndex(0) -14>Emitted(54, 137) Source(74, 39) + SourceIndex(0) -15>Emitted(54, 177) Source(74, 56) + SourceIndex(0) -16>Emitted(54, 183) Source(74, 72) + SourceIndex(0) -17>Emitted(54, 184) Source(74, 73) + SourceIndex(0) -18>Emitted(54, 187) Source(74, 76) + SourceIndex(0) -19>Emitted(54, 188) Source(74, 77) + SourceIndex(0) -20>Emitted(54, 190) Source(74, 79) + SourceIndex(0) -21>Emitted(54, 191) Source(74, 80) + SourceIndex(0) -22>Emitted(54, 194) Source(74, 83) + SourceIndex(0) -23>Emitted(54, 195) Source(74, 84) + SourceIndex(0) -24>Emitted(54, 197) Source(74, 86) + SourceIndex(0) -25>Emitted(54, 198) Source(74, 87) + SourceIndex(0) -26>Emitted(54, 200) Source(74, 89) + SourceIndex(0) -27>Emitted(54, 202) Source(74, 91) + SourceIndex(0) +3 >Emitted(54, 22) Source(74, 70) + SourceIndex(0) +4 >Emitted(54, 24) Source(74, 7) + SourceIndex(0) +5 >Emitted(54, 36) Source(74, 20) + SourceIndex(0) +6 >Emitted(54, 38) Source(74, 7) + SourceIndex(0) +7 >Emitted(54, 74) Source(74, 20) + SourceIndex(0) +8 >Emitted(54, 76) Source(74, 22) + SourceIndex(0) +9 >Emitted(54, 88) Source(74, 37) + SourceIndex(0) +10>Emitted(54, 90) Source(74, 22) + SourceIndex(0) +11>Emitted(54, 128) Source(74, 37) + SourceIndex(0) +12>Emitted(54, 130) Source(74, 39) + SourceIndex(0) +13>Emitted(54, 142) Source(74, 56) + SourceIndex(0) +14>Emitted(54, 144) Source(74, 39) + SourceIndex(0) +15>Emitted(54, 184) Source(74, 56) + SourceIndex(0) +16>Emitted(54, 191) Source(74, 72) + SourceIndex(0) +17>Emitted(54, 192) Source(74, 73) + SourceIndex(0) +18>Emitted(54, 195) Source(74, 76) + SourceIndex(0) +19>Emitted(54, 196) Source(74, 77) + SourceIndex(0) +20>Emitted(54, 198) Source(74, 79) + SourceIndex(0) +21>Emitted(54, 199) Source(74, 80) + SourceIndex(0) +22>Emitted(54, 202) Source(74, 83) + SourceIndex(0) +23>Emitted(54, 203) Source(74, 84) + SourceIndex(0) +24>Emitted(54, 205) Source(74, 86) + SourceIndex(0) +25>Emitted(54, 206) Source(74, 87) + SourceIndex(0) +26>Emitted(54, 208) Source(74, 89) + SourceIndex(0) +27>Emitted(54, 210) Source(74, 91) + SourceIndex(0) --- >>> console.log(nameA2); 1 >^^^^ @@ -1804,7 +1804,7 @@ sourceFile:sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2. >} 1 >Emitted(56, 2) Source(76, 2) + SourceIndex(0) --- ->>>for (_12 = [2, "trimmer", "trimming"], _13 = _12[0], numberA2 = _13 === void 0 ? -1 : _13, _14 = _12[1], nameA2 = _14 === void 0 ? "name" : _14, _15 = _12[2], skillA2 = _15 === void 0 ? "skill" : _15, _12, i = 0; i < 1; i++) { +>>>for (_17 = [2, "trimmer", "trimming"], _18 = _17[0], numberA2 = _18 === void 0 ? -1 : _18, _19 = _17[1], nameA2 = _19 === void 0 ? "name" : _19, _20 = _17[2], skillA2 = _20 === void 0 ? "skill" : _20, _17, i = 0; i < 1; i++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -1917,114 +1917,114 @@ sourceFile:sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2. --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(59, 2) Source(79, 2) + SourceIndex(0) --- ->>>for (var _16 = multiRobotA[0], nameMA_1 = _16 === void 0 ? "noName" : _16, _17 = multiRobotA[1], _18 = _17 === void 0 ? ["none", "none"] : _17, _19 = _18[0], primarySkillA_1 = _19 === void 0 ? "primary" : _19, _20 = _18[1], secondarySkillA_1 = _20 === void 0 ? "secondary" : _20, i_1 = 0; i_1 < 1; i_1++) { +>>>for (var _a = multiRobotA[0], nameMA_1 = _a === void 0 ? "noName" : _a, _b = multiRobotA[1], _c = _b === void 0 ? ["none", "none"] : _b, _d = _c[0], primarySkillA_1 = _d === void 0 ? "primary" : _d, _e = _c[1], secondarySkillA_1 = _e === void 0 ? "secondary" : _e, i_1 = 0; i_1 < 1; i_1++) { 1-> 2 >^^^^^ 3 > ^^^^ -4 > ^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^^^^^^^^^^ -9 > ^^ -10> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -11> ^^ -12> ^^^^^^^^^^^^ -13> ^^ -14> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -15> ^^ -16> ^^^^^^^^^^^^ -17> ^^ -18> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -19> ^^ -20> ^^^ -21> ^^^ -22> ^ -23> ^^ -24> ^^^ -25> ^^^ -26> ^ -27> ^^ -28> ^^^ -29> ^^ -30> ^^ +4 > ^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^^^^^^^^^ +9 > ^^ +10> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +11> ^^ +12> ^^^^^^^^^^ +13> ^^ +14> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +15> ^^ +16> ^^^^^^^^^^ +17> ^^ +18> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +19> ^^ +20> ^^^ +21> ^^^ +22> ^ +23> ^^ +24> ^^^ +25> ^^^ +26> ^ +27> ^^ +28> ^^^ +29> ^^ +30> ^^ 1-> > 2 >for (let > [ 3 > 4 > nameMA = "noName" -5 > -6 > nameMA = "noName" -7 > , - > -8 > [ - > primarySkillA = "primary", - > secondarySkillA = "secondary" - > ] = ["none", "none"] -9 > -10> [ - > primarySkillA = "primary", - > secondarySkillA = "secondary" - > ] = ["none", "none"] -11> -12> primarySkillA = "primary" -13> -14> primarySkillA = "primary" -15> , - > -16> secondarySkillA = "secondary" -17> -18> secondarySkillA = "secondary" -19> - > ] = ["none", "none"] - > ] = multiRobotA, -20> i -21> = -22> 0 -23> ; -24> i -25> < -26> 1 -27> ; -28> i -29> ++ -30> ) +5 > +6 > nameMA = "noName" +7 > , + > +8 > [ + > primarySkillA = "primary", + > secondarySkillA = "secondary" + > ] = ["none", "none"] +9 > +10> [ + > primarySkillA = "primary", + > secondarySkillA = "secondary" + > ] = ["none", "none"] +11> +12> primarySkillA = "primary" +13> +14> primarySkillA = "primary" +15> , + > +16> secondarySkillA = "secondary" +17> +18> secondarySkillA = "secondary" +19> + > ] = ["none", "none"] + > ] = multiRobotA, +20> i +21> = +22> 0 +23> ; +24> i +25> < +26> 1 +27> ; +28> i +29> ++ +30> ) 1->Emitted(60, 1) Source(80, 1) + SourceIndex(0) 2 >Emitted(60, 6) Source(81, 6) + SourceIndex(0) 3 >Emitted(60, 10) Source(81, 6) + SourceIndex(0) -4 >Emitted(60, 30) Source(81, 23) + SourceIndex(0) -5 >Emitted(60, 32) Source(81, 6) + SourceIndex(0) -6 >Emitted(60, 74) Source(81, 23) + SourceIndex(0) -7 >Emitted(60, 76) Source(82, 9) + SourceIndex(0) -8 >Emitted(60, 96) Source(85, 29) + SourceIndex(0) -9 >Emitted(60, 98) Source(82, 9) + SourceIndex(0) -10>Emitted(60, 143) Source(85, 29) + SourceIndex(0) -11>Emitted(60, 145) Source(83, 13) + SourceIndex(0) -12>Emitted(60, 157) Source(83, 38) + SourceIndex(0) -13>Emitted(60, 159) Source(83, 13) + SourceIndex(0) -14>Emitted(60, 209) Source(83, 38) + SourceIndex(0) -15>Emitted(60, 211) Source(84, 13) + SourceIndex(0) -16>Emitted(60, 223) Source(84, 42) + SourceIndex(0) -17>Emitted(60, 225) Source(84, 13) + SourceIndex(0) -18>Emitted(60, 279) Source(84, 42) + SourceIndex(0) -19>Emitted(60, 281) Source(86, 22) + SourceIndex(0) -20>Emitted(60, 284) Source(86, 23) + SourceIndex(0) -21>Emitted(60, 287) Source(86, 26) + SourceIndex(0) -22>Emitted(60, 288) Source(86, 27) + SourceIndex(0) -23>Emitted(60, 290) Source(86, 29) + SourceIndex(0) -24>Emitted(60, 293) Source(86, 30) + SourceIndex(0) -25>Emitted(60, 296) Source(86, 33) + SourceIndex(0) -26>Emitted(60, 297) Source(86, 34) + SourceIndex(0) -27>Emitted(60, 299) Source(86, 36) + SourceIndex(0) -28>Emitted(60, 302) Source(86, 37) + SourceIndex(0) -29>Emitted(60, 304) Source(86, 39) + SourceIndex(0) -30>Emitted(60, 306) Source(86, 41) + SourceIndex(0) +4 >Emitted(60, 29) Source(81, 23) + SourceIndex(0) +5 >Emitted(60, 31) Source(81, 6) + SourceIndex(0) +6 >Emitted(60, 71) Source(81, 23) + SourceIndex(0) +7 >Emitted(60, 73) Source(82, 9) + SourceIndex(0) +8 >Emitted(60, 92) Source(85, 29) + SourceIndex(0) +9 >Emitted(60, 94) Source(82, 9) + SourceIndex(0) +10>Emitted(60, 136) Source(85, 29) + SourceIndex(0) +11>Emitted(60, 138) Source(83, 13) + SourceIndex(0) +12>Emitted(60, 148) Source(83, 38) + SourceIndex(0) +13>Emitted(60, 150) Source(83, 13) + SourceIndex(0) +14>Emitted(60, 198) Source(83, 38) + SourceIndex(0) +15>Emitted(60, 200) Source(84, 13) + SourceIndex(0) +16>Emitted(60, 210) Source(84, 42) + SourceIndex(0) +17>Emitted(60, 212) Source(84, 13) + SourceIndex(0) +18>Emitted(60, 264) Source(84, 42) + SourceIndex(0) +19>Emitted(60, 266) Source(86, 22) + SourceIndex(0) +20>Emitted(60, 269) Source(86, 23) + SourceIndex(0) +21>Emitted(60, 272) Source(86, 26) + SourceIndex(0) +22>Emitted(60, 273) Source(86, 27) + SourceIndex(0) +23>Emitted(60, 275) Source(86, 29) + SourceIndex(0) +24>Emitted(60, 278) Source(86, 30) + SourceIndex(0) +25>Emitted(60, 281) Source(86, 33) + SourceIndex(0) +26>Emitted(60, 282) Source(86, 34) + SourceIndex(0) +27>Emitted(60, 284) Source(86, 36) + SourceIndex(0) +28>Emitted(60, 287) Source(86, 37) + SourceIndex(0) +29>Emitted(60, 289) Source(86, 39) + SourceIndex(0) +30>Emitted(60, 291) Source(86, 41) + SourceIndex(0) --- >>> console.log(nameMA_1); 1 >^^^^ @@ -2646,10 +2646,10 @@ sourceFile:sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2. --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(77, 2) Source(114, 2) + SourceIndex(0) --- ->>>var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33, _34, _35, _36, _37; +>>>var _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33, _34, _35, _36, _37; >>>//# sourceMappingURL=sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2.js.map \ No newline at end of file diff --git a/tests/baselines/reference/sourceMapValidationDestructuringForOfArrayBindingPattern2.js b/tests/baselines/reference/sourceMapValidationDestructuringForOfArrayBindingPattern2.js index 8b21faf3ad9..4167991e07c 100644 --- a/tests/baselines/reference/sourceMapValidationDestructuringForOfArrayBindingPattern2.js +++ b/tests/baselines/reference/sourceMapValidationDestructuringForOfArrayBindingPattern2.js @@ -118,100 +118,100 @@ var numberB, nameB; var numberA2, nameA2, skillA2, nameMA; var numberA3, robotAInfo, multiRobotAInfo; for (var _i = 0, robots_1 = robots; _i < robots_1.length; _i++) { - _a = robots_1[_i], nameA = _a[1]; + _15 = robots_1[_i], nameA = _15[1]; console.log(nameA); } -for (var _b = 0, _c = getRobots(); _b < _c.length; _b++) { - _d = _c[_b], nameA = _d[1]; +for (var _a = 0, _b = getRobots(); _a < _b.length; _a++) { + _16 = _b[_a], nameA = _16[1]; console.log(nameA); } -for (var _e = 0, _f = [robotA, robotB]; _e < _f.length; _e++) { - _g = _f[_e], nameA = _g[1]; +for (var _c = 0, _d = [robotA, robotB]; _c < _d.length; _c++) { + _17 = _d[_c], nameA = _17[1]; console.log(nameA); } -for (var _h = 0, multiRobots_1 = multiRobots; _h < multiRobots_1.length; _h++) { - _j = multiRobots_1[_h], _k = _j[1], primarySkillA = _k[0], secondarySkillA = _k[1]; +for (var _e = 0, multiRobots_1 = multiRobots; _e < multiRobots_1.length; _e++) { + _18 = multiRobots_1[_e], _19 = _18[1], primarySkillA = _19[0], secondarySkillA = _19[1]; console.log(primarySkillA); } -for (var _l = 0, _m = getMultiRobots(); _l < _m.length; _l++) { - _o = _m[_l], _p = _o[1], primarySkillA = _p[0], secondarySkillA = _p[1]; +for (var _f = 0, _g = getMultiRobots(); _f < _g.length; _f++) { + _20 = _g[_f], _21 = _20[1], primarySkillA = _21[0], secondarySkillA = _21[1]; console.log(primarySkillA); } -for (var _q = 0, _r = [multiRobotA, multiRobotB]; _q < _r.length; _q++) { - _s = _r[_q], _t = _s[1], primarySkillA = _t[0], secondarySkillA = _t[1]; +for (var _h = 0, _j = [multiRobotA, multiRobotB]; _h < _j.length; _h++) { + _22 = _j[_h], _23 = _22[1], primarySkillA = _23[0], secondarySkillA = _23[1]; console.log(primarySkillA); } -for (var _u = 0, robots_2 = robots; _u < robots_2.length; _u++) { - numberB = robots_2[_u][0]; +for (var _k = 0, robots_2 = robots; _k < robots_2.length; _k++) { + numberB = robots_2[_k][0]; console.log(numberB); } -for (var _v = 0, _w = getRobots(); _v < _w.length; _v++) { - numberB = _w[_v][0]; +for (var _l = 0, _m = getRobots(); _l < _m.length; _l++) { + numberB = _m[_l][0]; console.log(numberB); } -for (var _x = 0, _y = [robotA, robotB]; _x < _y.length; _x++) { - numberB = _y[_x][0]; +for (var _o = 0, _p = [robotA, robotB]; _o < _p.length; _o++) { + numberB = _p[_o][0]; console.log(numberB); } -for (var _z = 0, multiRobots_2 = multiRobots; _z < multiRobots_2.length; _z++) { - nameB = multiRobots_2[_z][0]; +for (var _q = 0, multiRobots_2 = multiRobots; _q < multiRobots_2.length; _q++) { + nameB = multiRobots_2[_q][0]; console.log(nameB); } -for (var _0 = 0, _1 = getMultiRobots(); _0 < _1.length; _0++) { - nameB = _1[_0][0]; +for (var _r = 0, _s = getMultiRobots(); _r < _s.length; _r++) { + nameB = _s[_r][0]; console.log(nameB); } -for (var _2 = 0, _3 = [multiRobotA, multiRobotB]; _2 < _3.length; _2++) { - nameB = _3[_2][0]; +for (var _t = 0, _u = [multiRobotA, multiRobotB]; _t < _u.length; _t++) { + nameB = _u[_t][0]; console.log(nameB); } -for (var _4 = 0, robots_3 = robots; _4 < robots_3.length; _4++) { - _5 = robots_3[_4], numberA2 = _5[0], nameA2 = _5[1], skillA2 = _5[2]; +for (var _v = 0, robots_3 = robots; _v < robots_3.length; _v++) { + _24 = robots_3[_v], numberA2 = _24[0], nameA2 = _24[1], skillA2 = _24[2]; console.log(nameA2); } +for (var _w = 0, _x = getRobots(); _w < _x.length; _w++) { + _25 = _x[_w], numberA2 = _25[0], nameA2 = _25[1], skillA2 = _25[2]; + console.log(nameA2); +} +for (var _y = 0, _z = [robotA, robotB]; _y < _z.length; _y++) { + _26 = _z[_y], numberA2 = _26[0], nameA2 = _26[1], skillA2 = _26[2]; + console.log(nameA2); +} +for (var _0 = 0, multiRobots_3 = multiRobots; _0 < multiRobots_3.length; _0++) { + _27 = multiRobots_3[_0], nameMA = _27[0], _28 = _27[1], primarySkillA = _28[0], secondarySkillA = _28[1]; + console.log(nameMA); +} +for (var _1 = 0, _2 = getMultiRobots(); _1 < _2.length; _1++) { + _29 = _2[_1], nameMA = _29[0], _30 = _29[1], primarySkillA = _30[0], secondarySkillA = _30[1]; + console.log(nameMA); +} +for (var _3 = 0, _4 = [multiRobotA, multiRobotB]; _3 < _4.length; _3++) { + _31 = _4[_3], nameMA = _31[0], _32 = _31[1], primarySkillA = _32[0], secondarySkillA = _32[1]; + console.log(nameMA); +} +for (var _5 = 0, robots_4 = robots; _5 < robots_4.length; _5++) { + _33 = robots_4[_5], numberA3 = _33[0], robotAInfo = _33.slice(1); + console.log(numberA3); +} for (var _6 = 0, _7 = getRobots(); _6 < _7.length; _6++) { - _8 = _7[_6], numberA2 = _8[0], nameA2 = _8[1], skillA2 = _8[2]; - console.log(nameA2); -} -for (var _9 = 0, _10 = [robotA, robotB]; _9 < _10.length; _9++) { - _11 = _10[_9], numberA2 = _11[0], nameA2 = _11[1], skillA2 = _11[2]; - console.log(nameA2); -} -for (var _12 = 0, multiRobots_3 = multiRobots; _12 < multiRobots_3.length; _12++) { - _13 = multiRobots_3[_12], nameMA = _13[0], _14 = _13[1], primarySkillA = _14[0], secondarySkillA = _14[1]; - console.log(nameMA); -} -for (var _15 = 0, _16 = getMultiRobots(); _15 < _16.length; _15++) { - _17 = _16[_15], nameMA = _17[0], _18 = _17[1], primarySkillA = _18[0], secondarySkillA = _18[1]; - console.log(nameMA); -} -for (var _19 = 0, _20 = [multiRobotA, multiRobotB]; _19 < _20.length; _19++) { - _21 = _20[_19], nameMA = _21[0], _22 = _21[1], primarySkillA = _22[0], secondarySkillA = _22[1]; - console.log(nameMA); -} -for (var _23 = 0, robots_4 = robots; _23 < robots_4.length; _23++) { - _24 = robots_4[_23], numberA3 = _24[0], robotAInfo = _24.slice(1); + _34 = _7[_6], numberA3 = _34[0], robotAInfo = _34.slice(1); console.log(numberA3); } -for (var _25 = 0, _26 = getRobots(); _25 < _26.length; _25++) { - _27 = _26[_25], numberA3 = _27[0], robotAInfo = _27.slice(1); +for (var _8 = 0, _9 = [robotA, robotB]; _8 < _9.length; _8++) { + _35 = _9[_8], numberA3 = _35[0], robotAInfo = _35.slice(1); console.log(numberA3); } -for (var _28 = 0, _29 = [robotA, robotB]; _28 < _29.length; _28++) { - _30 = _29[_28], numberA3 = _30[0], robotAInfo = _30.slice(1); - console.log(numberA3); -} -for (var _31 = 0, multiRobots_4 = multiRobots; _31 < multiRobots_4.length; _31++) { - multiRobotAInfo = multiRobots_4[_31].slice(0); +for (var _10 = 0, multiRobots_4 = multiRobots; _10 < multiRobots_4.length; _10++) { + multiRobotAInfo = multiRobots_4[_10].slice(0); console.log(multiRobotAInfo); } -for (var _32 = 0, _33 = getMultiRobots(); _32 < _33.length; _32++) { - multiRobotAInfo = _33[_32].slice(0); +for (var _11 = 0, _12 = getMultiRobots(); _11 < _12.length; _11++) { + multiRobotAInfo = _12[_11].slice(0); console.log(multiRobotAInfo); } -for (var _34 = 0, _35 = [multiRobotA, multiRobotB]; _34 < _35.length; _34++) { - multiRobotAInfo = _35[_34].slice(0); +for (var _13 = 0, _14 = [multiRobotA, multiRobotB]; _13 < _14.length; _13++) { + multiRobotAInfo = _14[_13].slice(0); console.log(multiRobotAInfo); } -var _a, _d, _g, _j, _k, _o, _p, _s, _t, _5, _8, _11, _13, _14, _17, _18, _21, _22, _24, _27, _30; +var _15, _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33, _34, _35; //# sourceMappingURL=sourceMapValidationDestructuringForOfArrayBindingPattern2.js.map \ No newline at end of file diff --git a/tests/baselines/reference/sourceMapValidationDestructuringForOfArrayBindingPattern2.js.map b/tests/baselines/reference/sourceMapValidationDestructuringForOfArrayBindingPattern2.js.map index 8b6437c0a37..2372260ca49 100644 --- a/tests/baselines/reference/sourceMapValidationDestructuringForOfArrayBindingPattern2.js.map +++ b/tests/baselines/reference/sourceMapValidationDestructuringForOfArrayBindingPattern2.js.map @@ -1,2 +1,2 @@ //// [sourceMapValidationDestructuringForOfArrayBindingPattern2.js.map] -{"version":3,"file":"sourceMapValidationDestructuringForOfArrayBindingPattern2.js","sourceRoot":"","sources":["sourceMapValidationDestructuringForOfArrayBindingPattern2.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"sourceMapValidationDestructuringForOfArrayBindingPattern2.js","sourceRoot":"","sources":["sourceMapValidationDestructuringForOfArrayBindingPattern2.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/tests/baselines/reference/sourceMapValidationDestructuringForOfArrayBindingPattern2.sourcemap.txt b/tests/baselines/reference/sourceMapValidationDestructuringForOfArrayBindingPattern2.sourcemap.txt index 3ee7b19ad37..9c4e284dcb1 100644 --- a/tests/baselines/reference/sourceMapValidationDestructuringForOfArrayBindingPattern2.sourcemap.txt +++ b/tests/baselines/reference/sourceMapValidationDestructuringForOfArrayBindingPattern2.sourcemap.txt @@ -460,13 +460,13 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts 9 >Emitted(17, 63) Source(26, 25) + SourceIndex(0) 10>Emitted(17, 65) Source(26, 27) + SourceIndex(0) --- ->>> _a = robots_1[_i], nameA = _a[1]; -1 >^^^^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^^ +>>> _15 = robots_1[_i], nameA = _15[1]; +1 >^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^ 1 > -2 > nameA -1 >Emitted(18, 24) Source(26, 9) + SourceIndex(0) -2 >Emitted(18, 37) Source(26, 14) + SourceIndex(0) +2 > nameA +1 >Emitted(18, 25) Source(26, 9) + SourceIndex(0) +2 >Emitted(18, 39) Source(26, 14) + SourceIndex(0) --- >>> console.log(nameA); 1 >^^^^ @@ -502,7 +502,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts >} 1 >Emitted(20, 2) Source(28, 2) + SourceIndex(0) --- ->>>for (var _b = 0, _c = getRobots(); _b < _c.length; _b++) { +>>>for (var _a = 0, _b = getRobots(); _a < _b.length; _a++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -541,13 +541,13 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts 11>Emitted(21, 56) Source(29, 30) + SourceIndex(0) 12>Emitted(21, 58) Source(29, 32) + SourceIndex(0) --- ->>> _d = _c[_b], nameA = _d[1]; -1 >^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^^ +>>> _16 = _b[_a], nameA = _16[1]; +1 >^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^ 1 > -2 > nameA -1 >Emitted(22, 18) Source(29, 9) + SourceIndex(0) -2 >Emitted(22, 31) Source(29, 14) + SourceIndex(0) +2 > nameA +1 >Emitted(22, 19) Source(29, 9) + SourceIndex(0) +2 >Emitted(22, 33) Source(29, 14) + SourceIndex(0) --- >>> console.log(nameA); 1 >^^^^ @@ -583,7 +583,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts >} 1 >Emitted(24, 2) Source(31, 2) + SourceIndex(0) --- ->>>for (var _e = 0, _f = [robotA, robotB]; _e < _f.length; _e++) { +>>>for (var _c = 0, _d = [robotA, robotB]; _c < _d.length; _c++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -628,13 +628,13 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts 13>Emitted(25, 61) Source(32, 35) + SourceIndex(0) 14>Emitted(25, 63) Source(32, 37) + SourceIndex(0) --- ->>> _g = _f[_e], nameA = _g[1]; -1 >^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^^ +>>> _17 = _d[_c], nameA = _17[1]; +1 >^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^ 1 > -2 > nameA -1 >Emitted(26, 18) Source(32, 9) + SourceIndex(0) -2 >Emitted(26, 31) Source(32, 14) + SourceIndex(0) +2 > nameA +1 >Emitted(26, 19) Source(32, 9) + SourceIndex(0) +2 >Emitted(26, 33) Source(32, 14) + SourceIndex(0) --- >>> console.log(nameA); 1 >^^^^ @@ -670,7 +670,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts >} 1 >Emitted(28, 2) Source(34, 2) + SourceIndex(0) --- ->>>for (var _h = 0, multiRobots_1 = multiRobots; _h < multiRobots_1.length; _h++) { +>>>for (var _e = 0, multiRobots_1 = multiRobots; _e < multiRobots_1.length; _e++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -681,7 +681,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts 8 > ^^ 9 > ^^^^ 10> ^^ -11> ^^^^^^^^^-> +11> ^^^^^^^^^^^^^^-> 1-> > 2 >for ([, [primarySkillA, secondarySkillA]] of @@ -704,25 +704,25 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts 9 >Emitted(29, 78) Source(35, 57) + SourceIndex(0) 10>Emitted(29, 80) Source(35, 59) + SourceIndex(0) --- ->>> _j = multiRobots_1[_h], _k = _j[1], primarySkillA = _k[0], secondarySkillA = _k[1]; -1->^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^^^^^^^^^ +>>> _18 = multiRobots_1[_e], _19 = _18[1], primarySkillA = _19[0], secondarySkillA = _19[1]; +1->^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > [primarySkillA, secondarySkillA] -3 > -4 > primarySkillA -5 > , -6 > secondarySkillA -1->Emitted(30, 29) Source(35, 9) + SourceIndex(0) -2 >Emitted(30, 39) Source(35, 41) + SourceIndex(0) -3 >Emitted(30, 41) Source(35, 10) + SourceIndex(0) -4 >Emitted(30, 62) Source(35, 23) + SourceIndex(0) -5 >Emitted(30, 64) Source(35, 25) + SourceIndex(0) -6 >Emitted(30, 87) Source(35, 40) + SourceIndex(0) +2 > [primarySkillA, secondarySkillA] +3 > +4 > primarySkillA +5 > , +6 > secondarySkillA +1->Emitted(30, 30) Source(35, 9) + SourceIndex(0) +2 >Emitted(30, 42) Source(35, 41) + SourceIndex(0) +3 >Emitted(30, 44) Source(35, 10) + SourceIndex(0) +4 >Emitted(30, 66) Source(35, 23) + SourceIndex(0) +5 >Emitted(30, 68) Source(35, 25) + SourceIndex(0) +6 >Emitted(30, 92) Source(35, 40) + SourceIndex(0) --- >>> console.log(primarySkillA); 1 >^^^^ @@ -758,7 +758,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts >} 1 >Emitted(32, 2) Source(37, 2) + SourceIndex(0) --- ->>>for (var _l = 0, _m = getMultiRobots(); _l < _m.length; _l++) { +>>>for (var _f = 0, _g = getMultiRobots(); _f < _g.length; _f++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -771,7 +771,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts 10> ^^ 11> ^^^^ 12> ^^ -13> ^^^^^^^^^^^^^^^-> +13> ^^^^^^^^^^^^^^^^^^^^-> 1-> > 2 >for ([, [primarySkillA, secondarySkillA]] of @@ -798,25 +798,25 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts 11>Emitted(33, 61) Source(38, 62) + SourceIndex(0) 12>Emitted(33, 63) Source(38, 64) + SourceIndex(0) --- ->>> _o = _m[_l], _p = _o[1], primarySkillA = _p[0], secondarySkillA = _p[1]; -1->^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^^^^^^^^^ +>>> _20 = _g[_f], _21 = _20[1], primarySkillA = _21[0], secondarySkillA = _21[1]; +1->^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > [primarySkillA, secondarySkillA] -3 > -4 > primarySkillA -5 > , -6 > secondarySkillA -1->Emitted(34, 18) Source(38, 9) + SourceIndex(0) -2 >Emitted(34, 28) Source(38, 41) + SourceIndex(0) -3 >Emitted(34, 30) Source(38, 10) + SourceIndex(0) -4 >Emitted(34, 51) Source(38, 23) + SourceIndex(0) -5 >Emitted(34, 53) Source(38, 25) + SourceIndex(0) -6 >Emitted(34, 76) Source(38, 40) + SourceIndex(0) +2 > [primarySkillA, secondarySkillA] +3 > +4 > primarySkillA +5 > , +6 > secondarySkillA +1->Emitted(34, 19) Source(38, 9) + SourceIndex(0) +2 >Emitted(34, 31) Source(38, 41) + SourceIndex(0) +3 >Emitted(34, 33) Source(38, 10) + SourceIndex(0) +4 >Emitted(34, 55) Source(38, 23) + SourceIndex(0) +5 >Emitted(34, 57) Source(38, 25) + SourceIndex(0) +6 >Emitted(34, 81) Source(38, 40) + SourceIndex(0) --- >>> console.log(primarySkillA); 1 >^^^^ @@ -852,7 +852,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts >} 1 >Emitted(36, 2) Source(40, 2) + SourceIndex(0) --- ->>>for (var _q = 0, _r = [multiRobotA, multiRobotB]; _q < _r.length; _q++) { +>>>for (var _h = 0, _j = [multiRobotA, multiRobotB]; _h < _j.length; _h++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -867,7 +867,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts 12> ^^ 13> ^^^^ 14> ^^ -15> ^^^^^-> +15> ^^^^^^^^^^-> 1-> > 2 >for ([, [primarySkillA, secondarySkillA]] of @@ -898,25 +898,25 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts 13>Emitted(37, 71) Source(41, 72) + SourceIndex(0) 14>Emitted(37, 73) Source(41, 74) + SourceIndex(0) --- ->>> _s = _r[_q], _t = _s[1], primarySkillA = _t[0], secondarySkillA = _t[1]; -1->^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^^^^^^^^^ +>>> _22 = _j[_h], _23 = _22[1], primarySkillA = _23[0], secondarySkillA = _23[1]; +1->^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > [primarySkillA, secondarySkillA] -3 > -4 > primarySkillA -5 > , -6 > secondarySkillA -1->Emitted(38, 18) Source(41, 9) + SourceIndex(0) -2 >Emitted(38, 28) Source(41, 41) + SourceIndex(0) -3 >Emitted(38, 30) Source(41, 10) + SourceIndex(0) -4 >Emitted(38, 51) Source(41, 23) + SourceIndex(0) -5 >Emitted(38, 53) Source(41, 25) + SourceIndex(0) -6 >Emitted(38, 76) Source(41, 40) + SourceIndex(0) +2 > [primarySkillA, secondarySkillA] +3 > +4 > primarySkillA +5 > , +6 > secondarySkillA +1->Emitted(38, 19) Source(41, 9) + SourceIndex(0) +2 >Emitted(38, 31) Source(41, 41) + SourceIndex(0) +3 >Emitted(38, 33) Source(41, 10) + SourceIndex(0) +4 >Emitted(38, 55) Source(41, 23) + SourceIndex(0) +5 >Emitted(38, 57) Source(41, 25) + SourceIndex(0) +6 >Emitted(38, 81) Source(41, 40) + SourceIndex(0) --- >>> console.log(primarySkillA); 1 >^^^^ @@ -952,7 +952,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts >} 1 >Emitted(40, 2) Source(43, 2) + SourceIndex(0) --- ->>>for (var _u = 0, robots_2 = robots; _u < robots_2.length; _u++) { +>>>for (var _k = 0, robots_2 = robots; _k < robots_2.length; _k++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -986,7 +986,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts 9 >Emitted(41, 63) Source(45, 25) + SourceIndex(0) 10>Emitted(41, 65) Source(45, 27) + SourceIndex(0) --- ->>> numberB = robots_2[_u][0]; +>>> numberB = robots_2[_k][0]; 1 >^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^ 1 > @@ -1028,7 +1028,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts >} 1 >Emitted(44, 2) Source(47, 2) + SourceIndex(0) --- ->>>for (var _v = 0, _w = getRobots(); _v < _w.length; _v++) { +>>>for (var _l = 0, _m = getRobots(); _l < _m.length; _l++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -1067,7 +1067,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts 11>Emitted(45, 56) Source(48, 30) + SourceIndex(0) 12>Emitted(45, 58) Source(48, 32) + SourceIndex(0) --- ->>> numberB = _w[_v][0]; +>>> numberB = _m[_l][0]; 1 >^^^^ 2 > ^^^^^^^^^^^^^^^^^^^ 3 > ^^^-> @@ -1110,7 +1110,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts >} 1 >Emitted(48, 2) Source(50, 2) + SourceIndex(0) --- ->>>for (var _x = 0, _y = [robotA, robotB]; _x < _y.length; _x++) { +>>>for (var _o = 0, _p = [robotA, robotB]; _o < _p.length; _o++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -1155,7 +1155,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts 13>Emitted(49, 61) Source(51, 35) + SourceIndex(0) 14>Emitted(49, 63) Source(51, 37) + SourceIndex(0) --- ->>> numberB = _y[_x][0]; +>>> numberB = _p[_o][0]; 1 >^^^^ 2 > ^^^^^^^^^^^^^^^^^^^ 3 > ^^^-> @@ -1198,7 +1198,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts >} 1 >Emitted(52, 2) Source(53, 2) + SourceIndex(0) --- ->>>for (var _z = 0, multiRobots_2 = multiRobots; _z < multiRobots_2.length; _z++) { +>>>for (var _q = 0, multiRobots_2 = multiRobots; _q < multiRobots_2.length; _q++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -1231,7 +1231,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts 9 >Emitted(53, 78) Source(54, 28) + SourceIndex(0) 10>Emitted(53, 80) Source(54, 30) + SourceIndex(0) --- ->>> nameB = multiRobots_2[_z][0]; +>>> nameB = multiRobots_2[_q][0]; 1 >^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1 > @@ -1273,7 +1273,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts >} 1 >Emitted(56, 2) Source(56, 2) + SourceIndex(0) --- ->>>for (var _0 = 0, _1 = getMultiRobots(); _0 < _1.length; _0++) { +>>>for (var _r = 0, _s = getMultiRobots(); _r < _s.length; _r++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -1312,7 +1312,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts 11>Emitted(57, 61) Source(57, 33) + SourceIndex(0) 12>Emitted(57, 63) Source(57, 35) + SourceIndex(0) --- ->>> nameB = _1[_0][0]; +>>> nameB = _s[_r][0]; 1 >^^^^ 2 > ^^^^^^^^^^^^^^^^^ 3 > ^^^-> @@ -1355,7 +1355,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts >} 1 >Emitted(60, 2) Source(59, 2) + SourceIndex(0) --- ->>>for (var _2 = 0, _3 = [multiRobotA, multiRobotB]; _2 < _3.length; _2++) { +>>>for (var _t = 0, _u = [multiRobotA, multiRobotB]; _t < _u.length; _t++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -1400,7 +1400,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts 13>Emitted(61, 71) Source(60, 43) + SourceIndex(0) 14>Emitted(61, 73) Source(60, 45) + SourceIndex(0) --- ->>> nameB = _3[_2][0]; +>>> nameB = _u[_t][0]; 1 >^^^^ 2 > ^^^^^^^^^^^^^^^^^ 3 > ^^^-> @@ -1443,7 +1443,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts >} 1 >Emitted(64, 2) Source(62, 2) + SourceIndex(0) --- ->>>for (var _4 = 0, robots_3 = robots; _4 < robots_3.length; _4++) { +>>>for (var _v = 0, robots_3 = robots; _v < robots_3.length; _v++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -1454,7 +1454,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts 8 > ^^ 9 > ^^^^ 10> ^^ -11> ^^^^^^^^^^-> +11> ^^^^^^^^^^^^^^-> 1-> > > @@ -1478,25 +1478,25 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts 9 >Emitted(65, 63) Source(64, 43) + SourceIndex(0) 10>Emitted(65, 65) Source(64, 45) + SourceIndex(0) --- ->>> _5 = robots_3[_4], numberA2 = _5[0], nameA2 = _5[1], skillA2 = _5[2]; -1->^^^^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^ +>>> _24 = robots_3[_v], numberA2 = _24[0], nameA2 = _24[1], skillA2 = _24[2]; +1->^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^^ 1-> -2 > numberA2 -3 > , -4 > nameA2 -5 > , -6 > skillA2 -1->Emitted(66, 24) Source(64, 7) + SourceIndex(0) -2 >Emitted(66, 40) Source(64, 15) + SourceIndex(0) -3 >Emitted(66, 42) Source(64, 17) + SourceIndex(0) -4 >Emitted(66, 56) Source(64, 23) + SourceIndex(0) -5 >Emitted(66, 58) Source(64, 25) + SourceIndex(0) -6 >Emitted(66, 73) Source(64, 32) + SourceIndex(0) +2 > numberA2 +3 > , +4 > nameA2 +5 > , +6 > skillA2 +1->Emitted(66, 25) Source(64, 7) + SourceIndex(0) +2 >Emitted(66, 42) Source(64, 15) + SourceIndex(0) +3 >Emitted(66, 44) Source(64, 17) + SourceIndex(0) +4 >Emitted(66, 59) Source(64, 23) + SourceIndex(0) +5 >Emitted(66, 61) Source(64, 25) + SourceIndex(0) +6 >Emitted(66, 77) Source(64, 32) + SourceIndex(0) --- >>> console.log(nameA2); 1 >^^^^ @@ -1532,7 +1532,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts >} 1 >Emitted(68, 2) Source(66, 2) + SourceIndex(0) --- ->>>for (var _6 = 0, _7 = getRobots(); _6 < _7.length; _6++) { +>>>for (var _w = 0, _x = getRobots(); _w < _x.length; _w++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -1545,7 +1545,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts 10> ^^ 11> ^^^^ 12> ^^ -13> ^^^^^^^^^^^-> +13> ^^^^^^^^^^^^^^^-> 1-> > 2 >for ([numberA2, nameA2, skillA2] of @@ -1572,25 +1572,25 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts 11>Emitted(69, 56) Source(67, 48) + SourceIndex(0) 12>Emitted(69, 58) Source(67, 50) + SourceIndex(0) --- ->>> _8 = _7[_6], numberA2 = _8[0], nameA2 = _8[1], skillA2 = _8[2]; -1->^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^ +>>> _25 = _x[_w], numberA2 = _25[0], nameA2 = _25[1], skillA2 = _25[2]; +1->^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^^ 1-> -2 > numberA2 -3 > , -4 > nameA2 -5 > , -6 > skillA2 -1->Emitted(70, 18) Source(67, 7) + SourceIndex(0) -2 >Emitted(70, 34) Source(67, 15) + SourceIndex(0) -3 >Emitted(70, 36) Source(67, 17) + SourceIndex(0) -4 >Emitted(70, 50) Source(67, 23) + SourceIndex(0) -5 >Emitted(70, 52) Source(67, 25) + SourceIndex(0) -6 >Emitted(70, 67) Source(67, 32) + SourceIndex(0) +2 > numberA2 +3 > , +4 > nameA2 +5 > , +6 > skillA2 +1->Emitted(70, 19) Source(67, 7) + SourceIndex(0) +2 >Emitted(70, 36) Source(67, 15) + SourceIndex(0) +3 >Emitted(70, 38) Source(67, 17) + SourceIndex(0) +4 >Emitted(70, 53) Source(67, 23) + SourceIndex(0) +5 >Emitted(70, 55) Source(67, 25) + SourceIndex(0) +6 >Emitted(70, 71) Source(67, 32) + SourceIndex(0) --- >>> console.log(nameA2); 1 >^^^^ @@ -1621,76 +1621,76 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(72, 2) Source(69, 2) + SourceIndex(0) --- ->>>for (var _9 = 0, _10 = [robotA, robotB]; _9 < _10.length; _9++) { +>>>for (var _y = 0, _z = [robotA, robotB]; _y < _z.length; _y++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ 4 > ^^ -5 > ^^^^^^^ -6 > ^^^^^^ -7 > ^^ -8 > ^^^^^^ -9 > ^ -10> ^^ -11> ^^^^^^^^^^^^^^^ -12> ^^ -13> ^^^^ -14> ^^ -15> ^^^^^^^^^-> +5 > ^^^^^^ +6 > ^^^^^^ +7 > ^^ +8 > ^^^^^^ +9 > ^ +10> ^^ +11> ^^^^^^^^^^^^^^ +12> ^^ +13> ^^^^ +14> ^^ +15> ^^^^^^^^^^-> 1-> > 2 >for ([numberA2, nameA2, skillA2] of 3 > [robotA, robotB] 4 > 5 > [ -6 > robotA -7 > , -8 > robotB -9 > ] -10> -11> [robotA, robotB] -12> -13> [robotA, robotB] -14> ) +6 > robotA +7 > , +8 > robotB +9 > ] +10> +11> [robotA, robotB] +12> +13> [robotA, robotB] +14> ) 1->Emitted(73, 1) Source(70, 1) + SourceIndex(0) 2 >Emitted(73, 6) Source(70, 37) + SourceIndex(0) 3 >Emitted(73, 16) Source(70, 53) + SourceIndex(0) 4 >Emitted(73, 18) Source(70, 37) + SourceIndex(0) -5 >Emitted(73, 25) Source(70, 38) + SourceIndex(0) -6 >Emitted(73, 31) Source(70, 44) + SourceIndex(0) -7 >Emitted(73, 33) Source(70, 46) + SourceIndex(0) -8 >Emitted(73, 39) Source(70, 52) + SourceIndex(0) -9 >Emitted(73, 40) Source(70, 53) + SourceIndex(0) -10>Emitted(73, 42) Source(70, 37) + SourceIndex(0) -11>Emitted(73, 57) Source(70, 53) + SourceIndex(0) -12>Emitted(73, 59) Source(70, 37) + SourceIndex(0) -13>Emitted(73, 63) Source(70, 53) + SourceIndex(0) -14>Emitted(73, 65) Source(70, 55) + SourceIndex(0) +5 >Emitted(73, 24) Source(70, 38) + SourceIndex(0) +6 >Emitted(73, 30) Source(70, 44) + SourceIndex(0) +7 >Emitted(73, 32) Source(70, 46) + SourceIndex(0) +8 >Emitted(73, 38) Source(70, 52) + SourceIndex(0) +9 >Emitted(73, 39) Source(70, 53) + SourceIndex(0) +10>Emitted(73, 41) Source(70, 37) + SourceIndex(0) +11>Emitted(73, 55) Source(70, 53) + SourceIndex(0) +12>Emitted(73, 57) Source(70, 37) + SourceIndex(0) +13>Emitted(73, 61) Source(70, 53) + SourceIndex(0) +14>Emitted(73, 63) Source(70, 55) + SourceIndex(0) --- ->>> _11 = _10[_9], numberA2 = _11[0], nameA2 = _11[1], skillA2 = _11[2]; -1->^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^^ +>>> _26 = _z[_y], numberA2 = _26[0], nameA2 = _26[1], skillA2 = _26[2]; +1->^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^^ 1-> -2 > numberA2 -3 > , -4 > nameA2 -5 > , -6 > skillA2 -1->Emitted(74, 20) Source(70, 7) + SourceIndex(0) -2 >Emitted(74, 37) Source(70, 15) + SourceIndex(0) -3 >Emitted(74, 39) Source(70, 17) + SourceIndex(0) -4 >Emitted(74, 54) Source(70, 23) + SourceIndex(0) -5 >Emitted(74, 56) Source(70, 25) + SourceIndex(0) -6 >Emitted(74, 72) Source(70, 32) + SourceIndex(0) +2 > numberA2 +3 > , +4 > nameA2 +5 > , +6 > skillA2 +1->Emitted(74, 19) Source(70, 7) + SourceIndex(0) +2 >Emitted(74, 36) Source(70, 15) + SourceIndex(0) +3 >Emitted(74, 38) Source(70, 17) + SourceIndex(0) +4 >Emitted(74, 53) Source(70, 23) + SourceIndex(0) +5 >Emitted(74, 55) Source(70, 25) + SourceIndex(0) +6 >Emitted(74, 71) Source(70, 32) + SourceIndex(0) --- >>> console.log(nameA2); 1 >^^^^ @@ -1721,70 +1721,70 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(76, 2) Source(72, 2) + SourceIndex(0) --- ->>>for (var _12 = 0, multiRobots_3 = multiRobots; _12 < multiRobots_3.length; _12++) { +>>>for (var _0 = 0, multiRobots_3 = multiRobots; _0 < multiRobots_3.length; _0++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^ -6 > ^^ -7 > ^^^^^^^^^^^^^^^^^^^^^^^^^^ -8 > ^^ -9 > ^^^^^ -10> ^^ -11> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^ +6 > ^^ +7 > ^^^^^^^^^^^^^^^^^^^^^^^^^ +8 > ^^ +9 > ^^^^ +10> ^^ +11> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> > 2 >for ([nameMA, [primarySkillA, secondarySkillA]] of 3 > multiRobots -4 > -5 > multiRobots -6 > -7 > multiRobots -8 > -9 > multiRobots -10> ) +4 > +5 > multiRobots +6 > +7 > multiRobots +8 > +9 > multiRobots +10> ) 1->Emitted(77, 1) Source(73, 1) + SourceIndex(0) 2 >Emitted(77, 6) Source(73, 52) + SourceIndex(0) -3 >Emitted(77, 17) Source(73, 63) + SourceIndex(0) -4 >Emitted(77, 19) Source(73, 52) + SourceIndex(0) -5 >Emitted(77, 46) Source(73, 63) + SourceIndex(0) -6 >Emitted(77, 48) Source(73, 52) + SourceIndex(0) -7 >Emitted(77, 74) Source(73, 63) + SourceIndex(0) -8 >Emitted(77, 76) Source(73, 52) + SourceIndex(0) -9 >Emitted(77, 81) Source(73, 63) + SourceIndex(0) -10>Emitted(77, 83) Source(73, 65) + SourceIndex(0) +3 >Emitted(77, 16) Source(73, 63) + SourceIndex(0) +4 >Emitted(77, 18) Source(73, 52) + SourceIndex(0) +5 >Emitted(77, 45) Source(73, 63) + SourceIndex(0) +6 >Emitted(77, 47) Source(73, 52) + SourceIndex(0) +7 >Emitted(77, 72) Source(73, 63) + SourceIndex(0) +8 >Emitted(77, 74) Source(73, 52) + SourceIndex(0) +9 >Emitted(77, 78) Source(73, 63) + SourceIndex(0) +10>Emitted(77, 80) Source(73, 65) + SourceIndex(0) --- ->>> _13 = multiRobots_3[_12], nameMA = _13[0], _14 = _13[1], primarySkillA = _14[0], secondarySkillA = _14[1]; -1->^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^^^^^^^^^^^^^^ +>>> _27 = multiRobots_3[_0], nameMA = _27[0], _28 = _27[1], primarySkillA = _28[0], secondarySkillA = _28[1]; +1->^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > nameMA -3 > , -4 > [primarySkillA, secondarySkillA] -5 > -6 > primarySkillA -7 > , -8 > secondarySkillA -1->Emitted(78, 31) Source(73, 7) + SourceIndex(0) -2 >Emitted(78, 46) Source(73, 13) + SourceIndex(0) -3 >Emitted(78, 48) Source(73, 15) + SourceIndex(0) -4 >Emitted(78, 60) Source(73, 47) + SourceIndex(0) -5 >Emitted(78, 62) Source(73, 16) + SourceIndex(0) -6 >Emitted(78, 84) Source(73, 29) + SourceIndex(0) -7 >Emitted(78, 86) Source(73, 31) + SourceIndex(0) -8 >Emitted(78, 110) Source(73, 46) + SourceIndex(0) +2 > nameMA +3 > , +4 > [primarySkillA, secondarySkillA] +5 > +6 > primarySkillA +7 > , +8 > secondarySkillA +1->Emitted(78, 30) Source(73, 7) + SourceIndex(0) +2 >Emitted(78, 45) Source(73, 13) + SourceIndex(0) +3 >Emitted(78, 47) Source(73, 15) + SourceIndex(0) +4 >Emitted(78, 59) Source(73, 47) + SourceIndex(0) +5 >Emitted(78, 61) Source(73, 16) + SourceIndex(0) +6 >Emitted(78, 83) Source(73, 29) + SourceIndex(0) +7 >Emitted(78, 85) Source(73, 31) + SourceIndex(0) +8 >Emitted(78, 109) Source(73, 46) + SourceIndex(0) --- >>> console.log(nameMA); 1 >^^^^ @@ -1815,76 +1815,76 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(80, 2) Source(75, 2) + SourceIndex(0) --- ->>>for (var _15 = 0, _16 = getMultiRobots(); _15 < _16.length; _15++) { +>>>for (var _1 = 0, _2 = getMultiRobots(); _1 < _2.length; _1++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^ -6 > ^^^^^^^^^^^^^^ -7 > ^^ -8 > ^^ -9 > ^^^^^^^^^^^^^^^^ -10> ^^ -11> ^^^^^ -12> ^^ -13> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^ +6 > ^^^^^^^^^^^^^^ +7 > ^^ +8 > ^^ +9 > ^^^^^^^^^^^^^^ +10> ^^ +11> ^^^^ +12> ^^ +13> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> > 2 >for ([nameMA, [primarySkillA, secondarySkillA]] of 3 > getMultiRobots() -4 > -5 > -6 > getMultiRobots -7 > () -8 > -9 > getMultiRobots() -10> -11> getMultiRobots() -12> ) +4 > +5 > +6 > getMultiRobots +7 > () +8 > +9 > getMultiRobots() +10> +11> getMultiRobots() +12> ) 1->Emitted(81, 1) Source(76, 1) + SourceIndex(0) 2 >Emitted(81, 6) Source(76, 52) + SourceIndex(0) -3 >Emitted(81, 17) Source(76, 68) + SourceIndex(0) -4 >Emitted(81, 19) Source(76, 52) + SourceIndex(0) -5 >Emitted(81, 25) Source(76, 52) + SourceIndex(0) -6 >Emitted(81, 39) Source(76, 66) + SourceIndex(0) -7 >Emitted(81, 41) Source(76, 68) + SourceIndex(0) -8 >Emitted(81, 43) Source(76, 52) + SourceIndex(0) -9 >Emitted(81, 59) Source(76, 68) + SourceIndex(0) -10>Emitted(81, 61) Source(76, 52) + SourceIndex(0) -11>Emitted(81, 66) Source(76, 68) + SourceIndex(0) -12>Emitted(81, 68) Source(76, 70) + SourceIndex(0) +3 >Emitted(81, 16) Source(76, 68) + SourceIndex(0) +4 >Emitted(81, 18) Source(76, 52) + SourceIndex(0) +5 >Emitted(81, 23) Source(76, 52) + SourceIndex(0) +6 >Emitted(81, 37) Source(76, 66) + SourceIndex(0) +7 >Emitted(81, 39) Source(76, 68) + SourceIndex(0) +8 >Emitted(81, 41) Source(76, 52) + SourceIndex(0) +9 >Emitted(81, 55) Source(76, 68) + SourceIndex(0) +10>Emitted(81, 57) Source(76, 52) + SourceIndex(0) +11>Emitted(81, 61) Source(76, 68) + SourceIndex(0) +12>Emitted(81, 63) Source(76, 70) + SourceIndex(0) --- ->>> _17 = _16[_15], nameMA = _17[0], _18 = _17[1], primarySkillA = _18[0], secondarySkillA = _18[1]; -1->^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^^^^^^^^^^^^^^ +>>> _29 = _2[_1], nameMA = _29[0], _30 = _29[1], primarySkillA = _30[0], secondarySkillA = _30[1]; +1->^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > nameMA -3 > , -4 > [primarySkillA, secondarySkillA] -5 > -6 > primarySkillA -7 > , -8 > secondarySkillA -1->Emitted(82, 21) Source(76, 7) + SourceIndex(0) -2 >Emitted(82, 36) Source(76, 13) + SourceIndex(0) -3 >Emitted(82, 38) Source(76, 15) + SourceIndex(0) -4 >Emitted(82, 50) Source(76, 47) + SourceIndex(0) -5 >Emitted(82, 52) Source(76, 16) + SourceIndex(0) -6 >Emitted(82, 74) Source(76, 29) + SourceIndex(0) -7 >Emitted(82, 76) Source(76, 31) + SourceIndex(0) -8 >Emitted(82, 100) Source(76, 46) + SourceIndex(0) +2 > nameMA +3 > , +4 > [primarySkillA, secondarySkillA] +5 > +6 > primarySkillA +7 > , +8 > secondarySkillA +1->Emitted(82, 19) Source(76, 7) + SourceIndex(0) +2 >Emitted(82, 34) Source(76, 13) + SourceIndex(0) +3 >Emitted(82, 36) Source(76, 15) + SourceIndex(0) +4 >Emitted(82, 48) Source(76, 47) + SourceIndex(0) +5 >Emitted(82, 50) Source(76, 16) + SourceIndex(0) +6 >Emitted(82, 72) Source(76, 29) + SourceIndex(0) +7 >Emitted(82, 74) Source(76, 31) + SourceIndex(0) +8 >Emitted(82, 98) Source(76, 46) + SourceIndex(0) --- >>> console.log(nameMA); 1 >^^^^ @@ -1915,82 +1915,82 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(84, 2) Source(78, 2) + SourceIndex(0) --- ->>>for (var _19 = 0, _20 = [multiRobotA, multiRobotB]; _19 < _20.length; _19++) { +>>>for (var _3 = 0, _4 = [multiRobotA, multiRobotB]; _3 < _4.length; _3++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^^ -6 > ^^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^ -9 > ^ -10> ^^ -11> ^^^^^^^^^^^^^^^^ -12> ^^ -13> ^^^^^ -14> ^^ -15> ^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^^ +6 > ^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^ +9 > ^ +10> ^^ +11> ^^^^^^^^^^^^^^ +12> ^^ +13> ^^^^ +14> ^^ +15> ^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> > 2 >for ([nameMA, [primarySkillA, secondarySkillA]] of 3 > [multiRobotA, multiRobotB] -4 > -5 > [ -6 > multiRobotA -7 > , -8 > multiRobotB -9 > ] -10> -11> [multiRobotA, multiRobotB] -12> -13> [multiRobotA, multiRobotB] -14> ) +4 > +5 > [ +6 > multiRobotA +7 > , +8 > multiRobotB +9 > ] +10> +11> [multiRobotA, multiRobotB] +12> +13> [multiRobotA, multiRobotB] +14> ) 1->Emitted(85, 1) Source(79, 1) + SourceIndex(0) 2 >Emitted(85, 6) Source(79, 52) + SourceIndex(0) -3 >Emitted(85, 17) Source(79, 78) + SourceIndex(0) -4 >Emitted(85, 19) Source(79, 52) + SourceIndex(0) -5 >Emitted(85, 26) Source(79, 53) + SourceIndex(0) -6 >Emitted(85, 37) Source(79, 64) + SourceIndex(0) -7 >Emitted(85, 39) Source(79, 66) + SourceIndex(0) -8 >Emitted(85, 50) Source(79, 77) + SourceIndex(0) -9 >Emitted(85, 51) Source(79, 78) + SourceIndex(0) -10>Emitted(85, 53) Source(79, 52) + SourceIndex(0) -11>Emitted(85, 69) Source(79, 78) + SourceIndex(0) -12>Emitted(85, 71) Source(79, 52) + SourceIndex(0) -13>Emitted(85, 76) Source(79, 78) + SourceIndex(0) -14>Emitted(85, 78) Source(79, 80) + SourceIndex(0) +3 >Emitted(85, 16) Source(79, 78) + SourceIndex(0) +4 >Emitted(85, 18) Source(79, 52) + SourceIndex(0) +5 >Emitted(85, 24) Source(79, 53) + SourceIndex(0) +6 >Emitted(85, 35) Source(79, 64) + SourceIndex(0) +7 >Emitted(85, 37) Source(79, 66) + SourceIndex(0) +8 >Emitted(85, 48) Source(79, 77) + SourceIndex(0) +9 >Emitted(85, 49) Source(79, 78) + SourceIndex(0) +10>Emitted(85, 51) Source(79, 52) + SourceIndex(0) +11>Emitted(85, 65) Source(79, 78) + SourceIndex(0) +12>Emitted(85, 67) Source(79, 52) + SourceIndex(0) +13>Emitted(85, 71) Source(79, 78) + SourceIndex(0) +14>Emitted(85, 73) Source(79, 80) + SourceIndex(0) --- ->>> _21 = _20[_19], nameMA = _21[0], _22 = _21[1], primarySkillA = _22[0], secondarySkillA = _22[1]; -1->^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^^^^^^^^^^^^^^ +>>> _31 = _4[_3], nameMA = _31[0], _32 = _31[1], primarySkillA = _32[0], secondarySkillA = _32[1]; +1->^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > nameMA -3 > , -4 > [primarySkillA, secondarySkillA] -5 > -6 > primarySkillA -7 > , -8 > secondarySkillA -1->Emitted(86, 21) Source(79, 7) + SourceIndex(0) -2 >Emitted(86, 36) Source(79, 13) + SourceIndex(0) -3 >Emitted(86, 38) Source(79, 15) + SourceIndex(0) -4 >Emitted(86, 50) Source(79, 47) + SourceIndex(0) -5 >Emitted(86, 52) Source(79, 16) + SourceIndex(0) -6 >Emitted(86, 74) Source(79, 29) + SourceIndex(0) -7 >Emitted(86, 76) Source(79, 31) + SourceIndex(0) -8 >Emitted(86, 100) Source(79, 46) + SourceIndex(0) +2 > nameMA +3 > , +4 > [primarySkillA, secondarySkillA] +5 > +6 > primarySkillA +7 > , +8 > secondarySkillA +1->Emitted(86, 19) Source(79, 7) + SourceIndex(0) +2 >Emitted(86, 34) Source(79, 13) + SourceIndex(0) +3 >Emitted(86, 36) Source(79, 15) + SourceIndex(0) +4 >Emitted(86, 48) Source(79, 47) + SourceIndex(0) +5 >Emitted(86, 50) Source(79, 16) + SourceIndex(0) +6 >Emitted(86, 72) Source(79, 29) + SourceIndex(0) +7 >Emitted(86, 74) Source(79, 31) + SourceIndex(0) +8 >Emitted(86, 98) Source(79, 46) + SourceIndex(0) --- >>> console.log(nameMA); 1 >^^^^ @@ -2021,59 +2021,59 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(88, 2) Source(81, 2) + SourceIndex(0) --- ->>>for (var _23 = 0, robots_4 = robots; _23 < robots_4.length; _23++) { +>>>for (var _5 = 0, robots_4 = robots; _5 < robots_4.length; _5++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^^^^^^^^^^^^ -6 > ^^ -7 > ^^^^^^^^^^^^^^^^^^^^^ -8 > ^^ -9 > ^^^^^ -10> ^^ -11> ^^^^-> +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^^^^^^^^^^^^^ +6 > ^^ +7 > ^^^^^^^^^^^^^^^^^^^^ +8 > ^^ +9 > ^^^^ +10> ^^ +11> ^^^^^^-> 1-> > > 2 >for ([numberA3, ...robotAInfo] of 3 > robots -4 > -5 > robots -6 > -7 > robots -8 > -9 > robots -10> ) +4 > +5 > robots +6 > +7 > robots +8 > +9 > robots +10> ) 1->Emitted(89, 1) Source(83, 1) + SourceIndex(0) 2 >Emitted(89, 6) Source(83, 35) + SourceIndex(0) -3 >Emitted(89, 17) Source(83, 41) + SourceIndex(0) -4 >Emitted(89, 19) Source(83, 35) + SourceIndex(0) -5 >Emitted(89, 36) Source(83, 41) + SourceIndex(0) -6 >Emitted(89, 38) Source(83, 35) + SourceIndex(0) -7 >Emitted(89, 59) Source(83, 41) + SourceIndex(0) -8 >Emitted(89, 61) Source(83, 35) + SourceIndex(0) -9 >Emitted(89, 66) Source(83, 41) + SourceIndex(0) -10>Emitted(89, 68) Source(83, 43) + SourceIndex(0) +3 >Emitted(89, 16) Source(83, 41) + SourceIndex(0) +4 >Emitted(89, 18) Source(83, 35) + SourceIndex(0) +5 >Emitted(89, 35) Source(83, 41) + SourceIndex(0) +6 >Emitted(89, 37) Source(83, 35) + SourceIndex(0) +7 >Emitted(89, 57) Source(83, 41) + SourceIndex(0) +8 >Emitted(89, 59) Source(83, 35) + SourceIndex(0) +9 >Emitted(89, 63) Source(83, 41) + SourceIndex(0) +10>Emitted(89, 65) Source(83, 43) + SourceIndex(0) --- ->>> _24 = robots_4[_23], numberA3 = _24[0], robotAInfo = _24.slice(1); -1->^^^^^^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^ +>>> _33 = robots_4[_5], numberA3 = _33[0], robotAInfo = _33.slice(1); +1->^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > numberA3 -3 > , -4 > ...robotAInfo -1->Emitted(90, 26) Source(83, 7) + SourceIndex(0) -2 >Emitted(90, 43) Source(83, 15) + SourceIndex(0) -3 >Emitted(90, 45) Source(83, 17) + SourceIndex(0) -4 >Emitted(90, 70) Source(83, 30) + SourceIndex(0) +2 > numberA3 +3 > , +4 > ...robotAInfo +1->Emitted(90, 25) Source(83, 7) + SourceIndex(0) +2 >Emitted(90, 42) Source(83, 15) + SourceIndex(0) +3 >Emitted(90, 44) Source(83, 17) + SourceIndex(0) +4 >Emitted(90, 69) Source(83, 30) + SourceIndex(0) --- >>> console.log(numberA3); 1 >^^^^ @@ -2104,64 +2104,64 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(92, 2) Source(85, 2) + SourceIndex(0) --- ->>>for (var _25 = 0, _26 = getRobots(); _25 < _26.length; _25++) { +>>>for (var _6 = 0, _7 = getRobots(); _6 < _7.length; _6++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^ -6 > ^^^^^^^^^ -7 > ^^ -8 > ^^ -9 > ^^^^^^^^^^^^^^^^ -10> ^^ -11> ^^^^^ -12> ^^ -13> ^^^^-> +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^ +6 > ^^^^^^^^^ +7 > ^^ +8 > ^^ +9 > ^^^^^^^^^^^^^^ +10> ^^ +11> ^^^^ +12> ^^ +13> ^^^^^^^-> 1-> > 2 >for ([numberA3, ...robotAInfo] of 3 > getRobots() -4 > -5 > -6 > getRobots -7 > () -8 > -9 > getRobots() -10> -11> getRobots() -12> ) +4 > +5 > +6 > getRobots +7 > () +8 > +9 > getRobots() +10> +11> getRobots() +12> ) 1->Emitted(93, 1) Source(86, 1) + SourceIndex(0) 2 >Emitted(93, 6) Source(86, 35) + SourceIndex(0) -3 >Emitted(93, 17) Source(86, 46) + SourceIndex(0) -4 >Emitted(93, 19) Source(86, 35) + SourceIndex(0) -5 >Emitted(93, 25) Source(86, 35) + SourceIndex(0) -6 >Emitted(93, 34) Source(86, 44) + SourceIndex(0) -7 >Emitted(93, 36) Source(86, 46) + SourceIndex(0) -8 >Emitted(93, 38) Source(86, 35) + SourceIndex(0) -9 >Emitted(93, 54) Source(86, 46) + SourceIndex(0) -10>Emitted(93, 56) Source(86, 35) + SourceIndex(0) -11>Emitted(93, 61) Source(86, 46) + SourceIndex(0) -12>Emitted(93, 63) Source(86, 48) + SourceIndex(0) +3 >Emitted(93, 16) Source(86, 46) + SourceIndex(0) +4 >Emitted(93, 18) Source(86, 35) + SourceIndex(0) +5 >Emitted(93, 23) Source(86, 35) + SourceIndex(0) +6 >Emitted(93, 32) Source(86, 44) + SourceIndex(0) +7 >Emitted(93, 34) Source(86, 46) + SourceIndex(0) +8 >Emitted(93, 36) Source(86, 35) + SourceIndex(0) +9 >Emitted(93, 50) Source(86, 46) + SourceIndex(0) +10>Emitted(93, 52) Source(86, 35) + SourceIndex(0) +11>Emitted(93, 56) Source(86, 46) + SourceIndex(0) +12>Emitted(93, 58) Source(86, 48) + SourceIndex(0) --- ->>> _27 = _26[_25], numberA3 = _27[0], robotAInfo = _27.slice(1); -1->^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^ +>>> _34 = _7[_6], numberA3 = _34[0], robotAInfo = _34.slice(1); +1->^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > numberA3 -3 > , -4 > ...robotAInfo -1->Emitted(94, 21) Source(86, 7) + SourceIndex(0) -2 >Emitted(94, 38) Source(86, 15) + SourceIndex(0) -3 >Emitted(94, 40) Source(86, 17) + SourceIndex(0) -4 >Emitted(94, 65) Source(86, 30) + SourceIndex(0) +2 > numberA3 +3 > , +4 > ...robotAInfo +1->Emitted(94, 19) Source(86, 7) + SourceIndex(0) +2 >Emitted(94, 36) Source(86, 15) + SourceIndex(0) +3 >Emitted(94, 38) Source(86, 17) + SourceIndex(0) +4 >Emitted(94, 63) Source(86, 30) + SourceIndex(0) --- >>> console.log(numberA3); 1 >^^^^ @@ -2192,69 +2192,70 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(96, 2) Source(88, 2) + SourceIndex(0) --- ->>>for (var _28 = 0, _29 = [robotA, robotB]; _28 < _29.length; _28++) { +>>>for (var _8 = 0, _9 = [robotA, robotB]; _8 < _9.length; _8++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^^ -6 > ^^^^^^ -7 > ^^ -8 > ^^^^^^ -9 > ^ -10> ^^ -11> ^^^^^^^^^^^^^^^^ -12> ^^ -13> ^^^^^ -14> ^^ +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^^ +6 > ^^^^^^ +7 > ^^ +8 > ^^^^^^ +9 > ^ +10> ^^ +11> ^^^^^^^^^^^^^^ +12> ^^ +13> ^^^^ +14> ^^ +15> ^^-> 1-> > 2 >for ([numberA3, ...robotAInfo] of 3 > [robotA, robotB] -4 > -5 > [ -6 > robotA -7 > , -8 > robotB -9 > ] -10> -11> [robotA, robotB] -12> -13> [robotA, robotB] -14> ) +4 > +5 > [ +6 > robotA +7 > , +8 > robotB +9 > ] +10> +11> [robotA, robotB] +12> +13> [robotA, robotB] +14> ) 1->Emitted(97, 1) Source(89, 1) + SourceIndex(0) 2 >Emitted(97, 6) Source(89, 35) + SourceIndex(0) -3 >Emitted(97, 17) Source(89, 51) + SourceIndex(0) -4 >Emitted(97, 19) Source(89, 35) + SourceIndex(0) -5 >Emitted(97, 26) Source(89, 36) + SourceIndex(0) -6 >Emitted(97, 32) Source(89, 42) + SourceIndex(0) -7 >Emitted(97, 34) Source(89, 44) + SourceIndex(0) -8 >Emitted(97, 40) Source(89, 50) + SourceIndex(0) -9 >Emitted(97, 41) Source(89, 51) + SourceIndex(0) -10>Emitted(97, 43) Source(89, 35) + SourceIndex(0) -11>Emitted(97, 59) Source(89, 51) + SourceIndex(0) -12>Emitted(97, 61) Source(89, 35) + SourceIndex(0) -13>Emitted(97, 66) Source(89, 51) + SourceIndex(0) -14>Emitted(97, 68) Source(89, 53) + SourceIndex(0) +3 >Emitted(97, 16) Source(89, 51) + SourceIndex(0) +4 >Emitted(97, 18) Source(89, 35) + SourceIndex(0) +5 >Emitted(97, 24) Source(89, 36) + SourceIndex(0) +6 >Emitted(97, 30) Source(89, 42) + SourceIndex(0) +7 >Emitted(97, 32) Source(89, 44) + SourceIndex(0) +8 >Emitted(97, 38) Source(89, 50) + SourceIndex(0) +9 >Emitted(97, 39) Source(89, 51) + SourceIndex(0) +10>Emitted(97, 41) Source(89, 35) + SourceIndex(0) +11>Emitted(97, 55) Source(89, 51) + SourceIndex(0) +12>Emitted(97, 57) Source(89, 35) + SourceIndex(0) +13>Emitted(97, 61) Source(89, 51) + SourceIndex(0) +14>Emitted(97, 63) Source(89, 53) + SourceIndex(0) --- ->>> _30 = _29[_28], numberA3 = _30[0], robotAInfo = _30.slice(1); -1 >^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^ -1 > -2 > numberA3 -3 > , -4 > ...robotAInfo -1 >Emitted(98, 21) Source(89, 7) + SourceIndex(0) -2 >Emitted(98, 38) Source(89, 15) + SourceIndex(0) -3 >Emitted(98, 40) Source(89, 17) + SourceIndex(0) -4 >Emitted(98, 65) Source(89, 30) + SourceIndex(0) +>>> _35 = _9[_8], numberA3 = _35[0], robotAInfo = _35.slice(1); +1->^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^ +1-> +2 > numberA3 +3 > , +4 > ...robotAInfo +1->Emitted(98, 19) Source(89, 7) + SourceIndex(0) +2 >Emitted(98, 36) Source(89, 15) + SourceIndex(0) +3 >Emitted(98, 38) Source(89, 17) + SourceIndex(0) +4 >Emitted(98, 63) Source(89, 30) + SourceIndex(0) --- >>> console.log(numberA3); 1 >^^^^ @@ -2290,7 +2291,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts >} 1 >Emitted(100, 2) Source(91, 2) + SourceIndex(0) --- ->>>for (var _31 = 0, multiRobots_4 = multiRobots; _31 < multiRobots_4.length; _31++) { +>>>for (var _10 = 0, multiRobots_4 = multiRobots; _10 < multiRobots_4.length; _10++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^^ @@ -2323,7 +2324,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts 9 >Emitted(101, 81) Source(92, 41) + SourceIndex(0) 10>Emitted(101, 83) Source(92, 43) + SourceIndex(0) --- ->>> multiRobotAInfo = multiRobots_4[_31].slice(0); +>>> multiRobotAInfo = multiRobots_4[_10].slice(0); 1 >^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1 > @@ -2365,7 +2366,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts >} 1 >Emitted(104, 2) Source(94, 2) + SourceIndex(0) --- ->>>for (var _32 = 0, _33 = getMultiRobots(); _32 < _33.length; _32++) { +>>>for (var _11 = 0, _12 = getMultiRobots(); _11 < _12.length; _11++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^^ @@ -2404,7 +2405,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts 11>Emitted(105, 66) Source(95, 46) + SourceIndex(0) 12>Emitted(105, 68) Source(95, 48) + SourceIndex(0) --- ->>> multiRobotAInfo = _33[_32].slice(0); +>>> multiRobotAInfo = _12[_11].slice(0); 1 >^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1 > @@ -2446,7 +2447,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts >} 1 >Emitted(108, 2) Source(97, 2) + SourceIndex(0) --- ->>>for (var _34 = 0, _35 = [multiRobotA, multiRobotB]; _34 < _35.length; _34++) { +>>>for (var _13 = 0, _14 = [multiRobotA, multiRobotB]; _13 < _14.length; _13++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^^ @@ -2491,7 +2492,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts 13>Emitted(109, 76) Source(98, 56) + SourceIndex(0) 14>Emitted(109, 78) Source(98, 58) + SourceIndex(0) --- ->>> multiRobotAInfo = _35[_34].slice(0); +>>> multiRobotAInfo = _14[_13].slice(0); 1 >^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1 > @@ -2528,10 +2529,10 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPattern2.ts --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(112, 2) Source(100, 2) + SourceIndex(0) --- ->>>var _a, _d, _g, _j, _k, _o, _p, _s, _t, _5, _8, _11, _13, _14, _17, _18, _21, _22, _24, _27, _30; +>>>var _15, _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33, _34, _35; >>>//# sourceMappingURL=sourceMapValidationDestructuringForOfArrayBindingPattern2.js.map \ No newline at end of file diff --git a/tests/baselines/reference/sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2.js b/tests/baselines/reference/sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2.js index 9cff7412ea9..c519f53ff5e 100644 --- a/tests/baselines/reference/sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2.js +++ b/tests/baselines/reference/sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2.js @@ -127,88 +127,88 @@ var numberB, nameB; var numberA2, nameA2, skillA2, nameMA; var numberA3, robotAInfo, multiRobotAInfo; for (var _i = 0, robots_1 = robots; _i < robots_1.length; _i++) { - _a = robots_1[_i], _b = _a[1], nameA = _b === void 0 ? "noName" : _b; + _10 = robots_1[_i], _11 = _10[1], nameA = _11 === void 0 ? "noName" : _11; console.log(nameA); } -for (var _c = 0, _d = getRobots(); _c < _d.length; _c++) { - _e = _d[_c], _f = _e[1], nameA = _f === void 0 ? "noName" : _f; +for (var _a = 0, _b = getRobots(); _a < _b.length; _a++) { + _12 = _b[_a], _13 = _12[1], nameA = _13 === void 0 ? "noName" : _13; console.log(nameA); } -for (var _g = 0, _h = [robotA, robotB]; _g < _h.length; _g++) { - _j = _h[_g], _k = _j[1], nameA = _k === void 0 ? "noName" : _k; +for (var _c = 0, _d = [robotA, robotB]; _c < _d.length; _c++) { + _14 = _d[_c], _15 = _14[1], nameA = _15 === void 0 ? "noName" : _15; console.log(nameA); } -for (var _l = 0, multiRobots_1 = multiRobots; _l < multiRobots_1.length; _l++) { - _m = multiRobots_1[_l], _o = _m[1], _p = _o === void 0 ? ["skill1", "skill2"] : _o, _q = _p[0], primarySkillA = _q === void 0 ? "primary" : _q, _r = _p[1], secondarySkillA = _r === void 0 ? "secondary" : _r; +for (var _e = 0, multiRobots_1 = multiRobots; _e < multiRobots_1.length; _e++) { + _16 = multiRobots_1[_e], _17 = _16[1], _18 = _17 === void 0 ? ["skill1", "skill2"] : _17, _19 = _18[0], primarySkillA = _19 === void 0 ? "primary" : _19, _20 = _18[1], secondarySkillA = _20 === void 0 ? "secondary" : _20; console.log(primarySkillA); } -for (var _s = 0, _t = getMultiRobots(); _s < _t.length; _s++) { - _u = _t[_s], _v = _u[1], _w = _v === void 0 ? ["skill1", "skill2"] : _v, _x = _w[0], primarySkillA = _x === void 0 ? "primary" : _x, _y = _w[1], secondarySkillA = _y === void 0 ? "secondary" : _y; +for (var _f = 0, _g = getMultiRobots(); _f < _g.length; _f++) { + _21 = _g[_f], _22 = _21[1], _23 = _22 === void 0 ? ["skill1", "skill2"] : _22, _24 = _23[0], primarySkillA = _24 === void 0 ? "primary" : _24, _25 = _23[1], secondarySkillA = _25 === void 0 ? "secondary" : _25; console.log(primarySkillA); } -for (var _z = 0, _0 = [multiRobotA, multiRobotB]; _z < _0.length; _z++) { - _1 = _0[_z], _2 = _1[1], _3 = _2 === void 0 ? ["skill1", "skill2"] : _2, _4 = _3[0], primarySkillA = _4 === void 0 ? "primary" : _4, _5 = _3[1], secondarySkillA = _5 === void 0 ? "secondary" : _5; +for (var _h = 0, _j = [multiRobotA, multiRobotB]; _h < _j.length; _h++) { + _26 = _j[_h], _27 = _26[1], _28 = _27 === void 0 ? ["skill1", "skill2"] : _27, _29 = _28[0], primarySkillA = _29 === void 0 ? "primary" : _29, _30 = _28[1], secondarySkillA = _30 === void 0 ? "secondary" : _30; console.log(primarySkillA); } -for (var _6 = 0, robots_2 = robots; _6 < robots_2.length; _6++) { - _7 = robots_2[_6][0], numberB = _7 === void 0 ? -1 : _7; +for (var _k = 0, robots_2 = robots; _k < robots_2.length; _k++) { + _31 = robots_2[_k][0], numberB = _31 === void 0 ? -1 : _31; console.log(numberB); } -for (var _8 = 0, _9 = getRobots(); _8 < _9.length; _8++) { - _10 = _9[_8][0], numberB = _10 === void 0 ? -1 : _10; +for (var _l = 0, _m = getRobots(); _l < _m.length; _l++) { + _32 = _m[_l][0], numberB = _32 === void 0 ? -1 : _32; console.log(numberB); } -for (var _11 = 0, _12 = [robotA, robotB]; _11 < _12.length; _11++) { - _13 = _12[_11][0], numberB = _13 === void 0 ? -1 : _13; +for (var _o = 0, _p = [robotA, robotB]; _o < _p.length; _o++) { + _33 = _p[_o][0], numberB = _33 === void 0 ? -1 : _33; console.log(numberB); } -for (var _14 = 0, multiRobots_2 = multiRobots; _14 < multiRobots_2.length; _14++) { - _15 = multiRobots_2[_14][0], nameB = _15 === void 0 ? "noName" : _15; +for (var _q = 0, multiRobots_2 = multiRobots; _q < multiRobots_2.length; _q++) { + _34 = multiRobots_2[_q][0], nameB = _34 === void 0 ? "noName" : _34; console.log(nameB); } -for (var _16 = 0, _17 = getMultiRobots(); _16 < _17.length; _16++) { - _18 = _17[_16][0], nameB = _18 === void 0 ? "noName" : _18; +for (var _r = 0, _s = getMultiRobots(); _r < _s.length; _r++) { + _35 = _s[_r][0], nameB = _35 === void 0 ? "noName" : _35; console.log(nameB); } -for (var _19 = 0, _20 = [multiRobotA, multiRobotB]; _19 < _20.length; _19++) { - _21 = _20[_19][0], nameB = _21 === void 0 ? "noName" : _21; +for (var _t = 0, _u = [multiRobotA, multiRobotB]; _t < _u.length; _t++) { + _36 = _u[_t][0], nameB = _36 === void 0 ? "noName" : _36; console.log(nameB); } -for (var _22 = 0, robots_3 = robots; _22 < robots_3.length; _22++) { - _23 = robots_3[_22], _24 = _23[0], numberA2 = _24 === void 0 ? -1 : _24, _25 = _23[1], nameA2 = _25 === void 0 ? "noName" : _25, _26 = _23[2], skillA2 = _26 === void 0 ? "skill" : _26; +for (var _v = 0, robots_3 = robots; _v < robots_3.length; _v++) { + _37 = robots_3[_v], _38 = _37[0], numberA2 = _38 === void 0 ? -1 : _38, _39 = _37[1], nameA2 = _39 === void 0 ? "noName" : _39, _40 = _37[2], skillA2 = _40 === void 0 ? "skill" : _40; console.log(nameA2); } -for (var _27 = 0, _28 = getRobots(); _27 < _28.length; _27++) { - _29 = _28[_27], _30 = _29[0], numberA2 = _30 === void 0 ? -1 : _30, _31 = _29[1], nameA2 = _31 === void 0 ? "noName" : _31, _32 = _29[2], skillA2 = _32 === void 0 ? "skill" : _32; +for (var _w = 0, _x = getRobots(); _w < _x.length; _w++) { + _41 = _x[_w], _42 = _41[0], numberA2 = _42 === void 0 ? -1 : _42, _43 = _41[1], nameA2 = _43 === void 0 ? "noName" : _43, _44 = _41[2], skillA2 = _44 === void 0 ? "skill" : _44; console.log(nameA2); } -for (var _33 = 0, _34 = [robotA, robotB]; _33 < _34.length; _33++) { - _35 = _34[_33], _36 = _35[0], numberA2 = _36 === void 0 ? -1 : _36, _37 = _35[1], nameA2 = _37 === void 0 ? "noName" : _37, _38 = _35[2], skillA2 = _38 === void 0 ? "skill" : _38; +for (var _y = 0, _z = [robotA, robotB]; _y < _z.length; _y++) { + _45 = _z[_y], _46 = _45[0], numberA2 = _46 === void 0 ? -1 : _46, _47 = _45[1], nameA2 = _47 === void 0 ? "noName" : _47, _48 = _45[2], skillA2 = _48 === void 0 ? "skill" : _48; console.log(nameA2); } -for (var _39 = 0, multiRobots_3 = multiRobots; _39 < multiRobots_3.length; _39++) { - _40 = multiRobots_3[_39], _41 = _40[0], nameMA = _41 === void 0 ? "noName" : _41, _42 = _40[1], _43 = _42 === void 0 ? ["skill1", "skill2"] : _42, _44 = _43[0], primarySkillA = _44 === void 0 ? "primary" : _44, _45 = _43[1], secondarySkillA = _45 === void 0 ? "secondary" : _45; +for (var _0 = 0, multiRobots_3 = multiRobots; _0 < multiRobots_3.length; _0++) { + _49 = multiRobots_3[_0], _50 = _49[0], nameMA = _50 === void 0 ? "noName" : _50, _51 = _49[1], _52 = _51 === void 0 ? ["skill1", "skill2"] : _51, _53 = _52[0], primarySkillA = _53 === void 0 ? "primary" : _53, _54 = _52[1], secondarySkillA = _54 === void 0 ? "secondary" : _54; console.log(nameMA); } -for (var _46 = 0, _47 = getMultiRobots(); _46 < _47.length; _46++) { - _48 = _47[_46], _49 = _48[0], nameMA = _49 === void 0 ? "noName" : _49, _50 = _48[1], _51 = _50 === void 0 ? ["skill1", "skill2"] : _50, _52 = _51[0], primarySkillA = _52 === void 0 ? "primary" : _52, _53 = _51[1], secondarySkillA = _53 === void 0 ? "secondary" : _53; +for (var _1 = 0, _2 = getMultiRobots(); _1 < _2.length; _1++) { + _55 = _2[_1], _56 = _55[0], nameMA = _56 === void 0 ? "noName" : _56, _57 = _55[1], _58 = _57 === void 0 ? ["skill1", "skill2"] : _57, _59 = _58[0], primarySkillA = _59 === void 0 ? "primary" : _59, _60 = _58[1], secondarySkillA = _60 === void 0 ? "secondary" : _60; console.log(nameMA); } -for (var _54 = 0, _55 = [multiRobotA, multiRobotB]; _54 < _55.length; _54++) { - _56 = _55[_54], _57 = _56[0], nameMA = _57 === void 0 ? "noName" : _57, _58 = _56[1], _59 = _58 === void 0 ? ["skill1", "skill2"] : _58, _60 = _59[0], primarySkillA = _60 === void 0 ? "primary" : _60, _61 = _59[1], secondarySkillA = _61 === void 0 ? "secondary" : _61; +for (var _3 = 0, _4 = [multiRobotA, multiRobotB]; _3 < _4.length; _3++) { + _61 = _4[_3], _62 = _61[0], nameMA = _62 === void 0 ? "noName" : _62, _63 = _61[1], _64 = _63 === void 0 ? ["skill1", "skill2"] : _63, _65 = _64[0], primarySkillA = _65 === void 0 ? "primary" : _65, _66 = _64[1], secondarySkillA = _66 === void 0 ? "secondary" : _66; console.log(nameMA); } -for (var _62 = 0, robots_4 = robots; _62 < robots_4.length; _62++) { - _63 = robots_4[_62], _64 = _63[0], numberA3 = _64 === void 0 ? -1 : _64, robotAInfo = _63.slice(1); +for (var _5 = 0, robots_4 = robots; _5 < robots_4.length; _5++) { + _67 = robots_4[_5], _68 = _67[0], numberA3 = _68 === void 0 ? -1 : _68, robotAInfo = _67.slice(1); console.log(numberA3); } -for (var _65 = 0, _66 = getRobots(); _65 < _66.length; _65++) { - _67 = _66[_65], _68 = _67[0], numberA3 = _68 === void 0 ? -1 : _68, robotAInfo = _67.slice(1); +for (var _6 = 0, _7 = getRobots(); _6 < _7.length; _6++) { + _69 = _7[_6], _70 = _69[0], numberA3 = _70 === void 0 ? -1 : _70, robotAInfo = _69.slice(1); console.log(numberA3); } -for (var _69 = 0, _70 = [robotA, robotB]; _69 < _70.length; _69++) { - _71 = _70[_69], _72 = _71[0], numberA3 = _72 === void 0 ? -1 : _72, robotAInfo = _71.slice(1); +for (var _8 = 0, _9 = [robotA, robotB]; _8 < _9.length; _8++) { + _71 = _9[_8], _72 = _71[0], numberA3 = _72 === void 0 ? -1 : _72, robotAInfo = _71.slice(1); console.log(numberA3); } -var _a, _b, _e, _f, _j, _k, _m, _o, _p, _q, _r, _u, _v, _w, _x, _y, _1, _2, _3, _4, _5, _7, _10, _13, _15, _18, _21, _23, _24, _25, _26, _29, _30, _31, _32, _35, _36, _37, _38, _40, _41, _42, _43, _44, _45, _48, _49, _50, _51, _52, _53, _56, _57, _58, _59, _60, _61, _63, _64, _67, _68, _71, _72; +var _10, _11, _12, _13, _14, _15, _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33, _34, _35, _36, _37, _38, _39, _40, _41, _42, _43, _44, _45, _46, _47, _48, _49, _50, _51, _52, _53, _54, _55, _56, _57, _58, _59, _60, _61, _62, _63, _64, _65, _66, _67, _68, _69, _70, _71, _72; //# sourceMappingURL=sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2.js.map \ No newline at end of file diff --git a/tests/baselines/reference/sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2.js.map b/tests/baselines/reference/sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2.js.map index a125047909f..91f60c6632d 100644 --- a/tests/baselines/reference/sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2.js.map +++ b/tests/baselines/reference/sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2.js.map @@ -1,2 +1,2 @@ //// [sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2.js.map] -{"version":3,"file":"sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2.js","sourceRoot":"","sources":["sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2.js","sourceRoot":"","sources":["sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/tests/baselines/reference/sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2.sourcemap.txt b/tests/baselines/reference/sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2.sourcemap.txt index 8aeba2cd712..80c7d2ddba7 100644 --- a/tests/baselines/reference/sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2.sourcemap.txt +++ b/tests/baselines/reference/sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2.sourcemap.txt @@ -437,7 +437,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues 8 > ^^ 9 > ^^^^ 10> ^^ -11> ^^^^^^^^^^-> +11> ^^^^^^^^^^^^^^^-> 1-> > > @@ -461,19 +461,19 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues 9 >Emitted(17, 63) Source(26, 36) + SourceIndex(0) 10>Emitted(17, 65) Source(26, 38) + SourceIndex(0) --- ->>> _a = robots_1[_i], _b = _a[1], nameA = _b === void 0 ? "noName" : _b; -1->^^^^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +>>> _10 = robots_1[_i], _11 = _10[1], nameA = _11 === void 0 ? "noName" : _11; +1->^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > nameA = "noName" -3 > -4 > nameA = "noName" -1->Emitted(18, 24) Source(26, 9) + SourceIndex(0) -2 >Emitted(18, 34) Source(26, 25) + SourceIndex(0) -3 >Emitted(18, 36) Source(26, 9) + SourceIndex(0) -4 >Emitted(18, 73) Source(26, 25) + SourceIndex(0) +2 > nameA = "noName" +3 > +4 > nameA = "noName" +1->Emitted(18, 25) Source(26, 9) + SourceIndex(0) +2 >Emitted(18, 37) Source(26, 25) + SourceIndex(0) +3 >Emitted(18, 39) Source(26, 9) + SourceIndex(0) +4 >Emitted(18, 78) Source(26, 25) + SourceIndex(0) --- >>> console.log(nameA); 1 >^^^^ @@ -509,7 +509,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues >} 1 >Emitted(20, 2) Source(28, 2) + SourceIndex(0) --- ->>>for (var _c = 0, _d = getRobots(); _c < _d.length; _c++) { +>>>for (var _a = 0, _b = getRobots(); _a < _b.length; _a++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -522,7 +522,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues 10> ^^ 11> ^^^^ 12> ^^ -13> ^^^^^^^^^^^-> +13> ^^^^^^^^^^^^^^^^-> 1-> > 2 >for ([, nameA = "noName"] of @@ -549,19 +549,19 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues 11>Emitted(21, 56) Source(29, 41) + SourceIndex(0) 12>Emitted(21, 58) Source(29, 43) + SourceIndex(0) --- ->>> _e = _d[_c], _f = _e[1], nameA = _f === void 0 ? "noName" : _f; -1->^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +>>> _12 = _b[_a], _13 = _12[1], nameA = _13 === void 0 ? "noName" : _13; +1->^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > nameA = "noName" -3 > -4 > nameA = "noName" -1->Emitted(22, 18) Source(29, 9) + SourceIndex(0) -2 >Emitted(22, 28) Source(29, 25) + SourceIndex(0) -3 >Emitted(22, 30) Source(29, 9) + SourceIndex(0) -4 >Emitted(22, 67) Source(29, 25) + SourceIndex(0) +2 > nameA = "noName" +3 > +4 > nameA = "noName" +1->Emitted(22, 19) Source(29, 9) + SourceIndex(0) +2 >Emitted(22, 31) Source(29, 25) + SourceIndex(0) +3 >Emitted(22, 33) Source(29, 9) + SourceIndex(0) +4 >Emitted(22, 72) Source(29, 25) + SourceIndex(0) --- >>> console.log(nameA); 1 >^^^^ @@ -597,7 +597,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues >} 1 >Emitted(24, 2) Source(31, 2) + SourceIndex(0) --- ->>>for (var _g = 0, _h = [robotA, robotB]; _g < _h.length; _g++) { +>>>for (var _c = 0, _d = [robotA, robotB]; _c < _d.length; _c++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -612,7 +612,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues 12> ^^ 13> ^^^^ 14> ^^ -15> ^^^^^^-> +15> ^^^^^^^^^^^-> 1-> > 2 >for ([, nameA = "noName"] of @@ -643,19 +643,19 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues 13>Emitted(25, 61) Source(32, 46) + SourceIndex(0) 14>Emitted(25, 63) Source(32, 48) + SourceIndex(0) --- ->>> _j = _h[_g], _k = _j[1], nameA = _k === void 0 ? "noName" : _k; -1->^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +>>> _14 = _d[_c], _15 = _14[1], nameA = _15 === void 0 ? "noName" : _15; +1->^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > nameA = "noName" -3 > -4 > nameA = "noName" -1->Emitted(26, 18) Source(32, 9) + SourceIndex(0) -2 >Emitted(26, 28) Source(32, 25) + SourceIndex(0) -3 >Emitted(26, 30) Source(32, 9) + SourceIndex(0) -4 >Emitted(26, 67) Source(32, 25) + SourceIndex(0) +2 > nameA = "noName" +3 > +4 > nameA = "noName" +1->Emitted(26, 19) Source(32, 9) + SourceIndex(0) +2 >Emitted(26, 31) Source(32, 25) + SourceIndex(0) +3 >Emitted(26, 33) Source(32, 9) + SourceIndex(0) +4 >Emitted(26, 72) Source(32, 25) + SourceIndex(0) --- >>> console.log(nameA); 1 >^^^^ @@ -691,7 +691,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues >} 1 >Emitted(28, 2) Source(34, 2) + SourceIndex(0) --- ->>>for (var _l = 0, multiRobots_1 = multiRobots; _l < multiRobots_1.length; _l++) { +>>>for (var _e = 0, multiRobots_1 = multiRobots; _e < multiRobots_1.length; _e++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -702,7 +702,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues 8 > ^^ 9 > ^^^^ 10> ^^ -11> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +11> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> > 2 >for ([, [ @@ -728,50 +728,50 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues 9 >Emitted(29, 78) Source(38, 41) + SourceIndex(0) 10>Emitted(29, 80) Source(38, 43) + SourceIndex(0) --- ->>> _m = multiRobots_1[_l], _o = _m[1], _p = _o === void 0 ? ["skill1", "skill2"] : _o, _q = _p[0], primarySkillA = _q === void 0 ? "primary" : _q, _r = _p[1], secondarySkillA = _r === void 0 ? "secondary" : _r; -1->^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -9 > ^^ -10> ^^^^^^^^^^ -11> ^^ -12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +>>> _16 = multiRobots_1[_e], _17 = _16[1], _18 = _17 === void 0 ? ["skill1", "skill2"] : _17, _19 = _18[0], primarySkillA = _19 === void 0 ? "primary" : _19, _20 = _18[1], secondarySkillA = _20 === void 0 ? "secondary" : _20; +1->^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +9 > ^^ +10> ^^^^^^^^^^^^ +11> ^^ +12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > [ - > primarySkillA = "primary", - > secondarySkillA = "secondary" - > ] = ["skill1", "skill2"] -3 > -4 > [ - > primarySkillA = "primary", - > secondarySkillA = "secondary" - > ] = ["skill1", "skill2"] -5 > -6 > primarySkillA = "primary" -7 > -8 > primarySkillA = "primary" -9 > , - > -10> secondarySkillA = "secondary" -11> -12> secondarySkillA = "secondary" -1->Emitted(30, 29) Source(35, 9) + SourceIndex(0) -2 >Emitted(30, 39) Source(38, 25) + SourceIndex(0) -3 >Emitted(30, 41) Source(35, 9) + SourceIndex(0) -4 >Emitted(30, 87) Source(38, 25) + SourceIndex(0) -5 >Emitted(30, 89) Source(36, 5) + SourceIndex(0) -6 >Emitted(30, 99) Source(36, 30) + SourceIndex(0) -7 >Emitted(30, 101) Source(36, 5) + SourceIndex(0) -8 >Emitted(30, 147) Source(36, 30) + SourceIndex(0) -9 >Emitted(30, 149) Source(37, 5) + SourceIndex(0) -10>Emitted(30, 159) Source(37, 34) + SourceIndex(0) -11>Emitted(30, 161) Source(37, 5) + SourceIndex(0) -12>Emitted(30, 211) Source(37, 34) + SourceIndex(0) +2 > [ + > primarySkillA = "primary", + > secondarySkillA = "secondary" + > ] = ["skill1", "skill2"] +3 > +4 > [ + > primarySkillA = "primary", + > secondarySkillA = "secondary" + > ] = ["skill1", "skill2"] +5 > +6 > primarySkillA = "primary" +7 > +8 > primarySkillA = "primary" +9 > , + > +10> secondarySkillA = "secondary" +11> +12> secondarySkillA = "secondary" +1->Emitted(30, 30) Source(35, 9) + SourceIndex(0) +2 >Emitted(30, 42) Source(38, 25) + SourceIndex(0) +3 >Emitted(30, 44) Source(35, 9) + SourceIndex(0) +4 >Emitted(30, 93) Source(38, 25) + SourceIndex(0) +5 >Emitted(30, 95) Source(36, 5) + SourceIndex(0) +6 >Emitted(30, 107) Source(36, 30) + SourceIndex(0) +7 >Emitted(30, 109) Source(36, 5) + SourceIndex(0) +8 >Emitted(30, 157) Source(36, 30) + SourceIndex(0) +9 >Emitted(30, 159) Source(37, 5) + SourceIndex(0) +10>Emitted(30, 171) Source(37, 34) + SourceIndex(0) +11>Emitted(30, 173) Source(37, 5) + SourceIndex(0) +12>Emitted(30, 225) Source(37, 34) + SourceIndex(0) --- >>> console.log(primarySkillA); 1 >^^^^ @@ -808,7 +808,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues >} 1 >Emitted(32, 2) Source(40, 2) + SourceIndex(0) --- ->>>for (var _s = 0, _t = getMultiRobots(); _s < _t.length; _s++) { +>>>for (var _f = 0, _g = getMultiRobots(); _f < _g.length; _f++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -821,7 +821,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues 10> ^^ 11> ^^^^ 12> ^^ -13> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +13> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> > 2 >for ([, [ @@ -851,50 +851,50 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues 11>Emitted(33, 61) Source(44, 46) + SourceIndex(0) 12>Emitted(33, 63) Source(44, 48) + SourceIndex(0) --- ->>> _u = _t[_s], _v = _u[1], _w = _v === void 0 ? ["skill1", "skill2"] : _v, _x = _w[0], primarySkillA = _x === void 0 ? "primary" : _x, _y = _w[1], secondarySkillA = _y === void 0 ? "secondary" : _y; -1->^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -9 > ^^ -10> ^^^^^^^^^^ -11> ^^ -12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +>>> _21 = _g[_f], _22 = _21[1], _23 = _22 === void 0 ? ["skill1", "skill2"] : _22, _24 = _23[0], primarySkillA = _24 === void 0 ? "primary" : _24, _25 = _23[1], secondarySkillA = _25 === void 0 ? "secondary" : _25; +1->^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +9 > ^^ +10> ^^^^^^^^^^^^ +11> ^^ +12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > [ - > primarySkillA = "primary", - > secondarySkillA = "secondary" - > ] = ["skill1", "skill2"] -3 > -4 > [ - > primarySkillA = "primary", - > secondarySkillA = "secondary" - > ] = ["skill1", "skill2"] -5 > -6 > primarySkillA = "primary" -7 > -8 > primarySkillA = "primary" -9 > , - > -10> secondarySkillA = "secondary" -11> -12> secondarySkillA = "secondary" -1->Emitted(34, 18) Source(41, 9) + SourceIndex(0) -2 >Emitted(34, 28) Source(44, 25) + SourceIndex(0) -3 >Emitted(34, 30) Source(41, 9) + SourceIndex(0) -4 >Emitted(34, 76) Source(44, 25) + SourceIndex(0) -5 >Emitted(34, 78) Source(42, 5) + SourceIndex(0) -6 >Emitted(34, 88) Source(42, 30) + SourceIndex(0) -7 >Emitted(34, 90) Source(42, 5) + SourceIndex(0) -8 >Emitted(34, 136) Source(42, 30) + SourceIndex(0) -9 >Emitted(34, 138) Source(43, 5) + SourceIndex(0) -10>Emitted(34, 148) Source(43, 34) + SourceIndex(0) -11>Emitted(34, 150) Source(43, 5) + SourceIndex(0) -12>Emitted(34, 200) Source(43, 34) + SourceIndex(0) +2 > [ + > primarySkillA = "primary", + > secondarySkillA = "secondary" + > ] = ["skill1", "skill2"] +3 > +4 > [ + > primarySkillA = "primary", + > secondarySkillA = "secondary" + > ] = ["skill1", "skill2"] +5 > +6 > primarySkillA = "primary" +7 > +8 > primarySkillA = "primary" +9 > , + > +10> secondarySkillA = "secondary" +11> +12> secondarySkillA = "secondary" +1->Emitted(34, 19) Source(41, 9) + SourceIndex(0) +2 >Emitted(34, 31) Source(44, 25) + SourceIndex(0) +3 >Emitted(34, 33) Source(41, 9) + SourceIndex(0) +4 >Emitted(34, 82) Source(44, 25) + SourceIndex(0) +5 >Emitted(34, 84) Source(42, 5) + SourceIndex(0) +6 >Emitted(34, 96) Source(42, 30) + SourceIndex(0) +7 >Emitted(34, 98) Source(42, 5) + SourceIndex(0) +8 >Emitted(34, 146) Source(42, 30) + SourceIndex(0) +9 >Emitted(34, 148) Source(43, 5) + SourceIndex(0) +10>Emitted(34, 160) Source(43, 34) + SourceIndex(0) +11>Emitted(34, 162) Source(43, 5) + SourceIndex(0) +12>Emitted(34, 214) Source(43, 34) + SourceIndex(0) --- >>> console.log(primarySkillA); 1 >^^^^ @@ -931,7 +931,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues >} 1 >Emitted(36, 2) Source(46, 2) + SourceIndex(0) --- ->>>for (var _z = 0, _0 = [multiRobotA, multiRobotB]; _z < _0.length; _z++) { +>>>for (var _h = 0, _j = [multiRobotA, multiRobotB]; _h < _j.length; _h++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -946,7 +946,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues 12> ^^ 13> ^^^^ 14> ^^ -15> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +15> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> > 2 >for ([, [ @@ -980,50 +980,50 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues 13>Emitted(37, 71) Source(50, 56) + SourceIndex(0) 14>Emitted(37, 73) Source(50, 58) + SourceIndex(0) --- ->>> _1 = _0[_z], _2 = _1[1], _3 = _2 === void 0 ? ["skill1", "skill2"] : _2, _4 = _3[0], primarySkillA = _4 === void 0 ? "primary" : _4, _5 = _3[1], secondarySkillA = _5 === void 0 ? "secondary" : _5; -1->^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -9 > ^^ -10> ^^^^^^^^^^ -11> ^^ -12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +>>> _26 = _j[_h], _27 = _26[1], _28 = _27 === void 0 ? ["skill1", "skill2"] : _27, _29 = _28[0], primarySkillA = _29 === void 0 ? "primary" : _29, _30 = _28[1], secondarySkillA = _30 === void 0 ? "secondary" : _30; +1->^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +9 > ^^ +10> ^^^^^^^^^^^^ +11> ^^ +12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > [ - > primarySkillA = "primary", - > secondarySkillA = "secondary" - > ] = ["skill1", "skill2"] -3 > -4 > [ - > primarySkillA = "primary", - > secondarySkillA = "secondary" - > ] = ["skill1", "skill2"] -5 > -6 > primarySkillA = "primary" -7 > -8 > primarySkillA = "primary" -9 > , - > -10> secondarySkillA = "secondary" -11> -12> secondarySkillA = "secondary" -1->Emitted(38, 18) Source(47, 9) + SourceIndex(0) -2 >Emitted(38, 28) Source(50, 25) + SourceIndex(0) -3 >Emitted(38, 30) Source(47, 9) + SourceIndex(0) -4 >Emitted(38, 76) Source(50, 25) + SourceIndex(0) -5 >Emitted(38, 78) Source(48, 5) + SourceIndex(0) -6 >Emitted(38, 88) Source(48, 30) + SourceIndex(0) -7 >Emitted(38, 90) Source(48, 5) + SourceIndex(0) -8 >Emitted(38, 136) Source(48, 30) + SourceIndex(0) -9 >Emitted(38, 138) Source(49, 5) + SourceIndex(0) -10>Emitted(38, 148) Source(49, 34) + SourceIndex(0) -11>Emitted(38, 150) Source(49, 5) + SourceIndex(0) -12>Emitted(38, 200) Source(49, 34) + SourceIndex(0) +2 > [ + > primarySkillA = "primary", + > secondarySkillA = "secondary" + > ] = ["skill1", "skill2"] +3 > +4 > [ + > primarySkillA = "primary", + > secondarySkillA = "secondary" + > ] = ["skill1", "skill2"] +5 > +6 > primarySkillA = "primary" +7 > +8 > primarySkillA = "primary" +9 > , + > +10> secondarySkillA = "secondary" +11> +12> secondarySkillA = "secondary" +1->Emitted(38, 19) Source(47, 9) + SourceIndex(0) +2 >Emitted(38, 31) Source(50, 25) + SourceIndex(0) +3 >Emitted(38, 33) Source(47, 9) + SourceIndex(0) +4 >Emitted(38, 82) Source(50, 25) + SourceIndex(0) +5 >Emitted(38, 84) Source(48, 5) + SourceIndex(0) +6 >Emitted(38, 96) Source(48, 30) + SourceIndex(0) +7 >Emitted(38, 98) Source(48, 5) + SourceIndex(0) +8 >Emitted(38, 146) Source(48, 30) + SourceIndex(0) +9 >Emitted(38, 148) Source(49, 5) + SourceIndex(0) +10>Emitted(38, 160) Source(49, 34) + SourceIndex(0) +11>Emitted(38, 162) Source(49, 5) + SourceIndex(0) +12>Emitted(38, 214) Source(49, 34) + SourceIndex(0) --- >>> console.log(primarySkillA); 1 >^^^^ @@ -1060,7 +1060,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues >} 1 >Emitted(40, 2) Source(52, 2) + SourceIndex(0) --- ->>>for (var _6 = 0, robots_2 = robots; _6 < robots_2.length; _6++) { +>>>for (var _k = 0, robots_2 = robots; _k < robots_2.length; _k++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -1094,19 +1094,19 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues 9 >Emitted(41, 63) Source(54, 30) + SourceIndex(0) 10>Emitted(41, 65) Source(54, 32) + SourceIndex(0) --- ->>> _7 = robots_2[_6][0], numberB = _7 === void 0 ? -1 : _7; +>>> _31 = robots_2[_k][0], numberB = _31 === void 0 ? -1 : _31; 1 >^^^^ -2 > ^^^^^^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1 > 2 > numberB = -1 -3 > -4 > numberB = -1 +3 > +4 > numberB = -1 1 >Emitted(42, 5) Source(54, 7) + SourceIndex(0) -2 >Emitted(42, 25) Source(54, 19) + SourceIndex(0) -3 >Emitted(42, 27) Source(54, 7) + SourceIndex(0) -4 >Emitted(42, 60) Source(54, 19) + SourceIndex(0) +2 >Emitted(42, 26) Source(54, 19) + SourceIndex(0) +3 >Emitted(42, 28) Source(54, 7) + SourceIndex(0) +4 >Emitted(42, 63) Source(54, 19) + SourceIndex(0) --- >>> console.log(numberB); 1 >^^^^ @@ -1142,7 +1142,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues >} 1 >Emitted(44, 2) Source(56, 2) + SourceIndex(0) --- ->>>for (var _8 = 0, _9 = getRobots(); _8 < _9.length; _8++) { +>>>for (var _l = 0, _m = getRobots(); _l < _m.length; _l++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -1182,7 +1182,7 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues 11>Emitted(45, 56) Source(57, 35) + SourceIndex(0) 12>Emitted(45, 58) Source(57, 37) + SourceIndex(0) --- ->>> _10 = _9[_8][0], numberB = _10 === void 0 ? -1 : _10; +>>> _32 = _m[_l][0], numberB = _32 === void 0 ? -1 : _32; 1->^^^^ 2 > ^^^^^^^^^^^^^^^ 3 > ^^ @@ -1225,69 +1225,69 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(48, 2) Source(59, 2) + SourceIndex(0) --- ->>>for (var _11 = 0, _12 = [robotA, robotB]; _11 < _12.length; _11++) { +>>>for (var _o = 0, _p = [robotA, robotB]; _o < _p.length; _o++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^^ -6 > ^^^^^^ -7 > ^^ -8 > ^^^^^^ -9 > ^ -10> ^^ -11> ^^^^^^^^^^^^^^^^ -12> ^^ -13> ^^^^^ -14> ^^ +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^^ +6 > ^^^^^^ +7 > ^^ +8 > ^^^^^^ +9 > ^ +10> ^^ +11> ^^^^^^^^^^^^^^ +12> ^^ +13> ^^^^ +14> ^^ 1-> > 2 >for ([numberB = -1] of 3 > [robotA, robotB] -4 > -5 > [ -6 > robotA -7 > , -8 > robotB -9 > ] -10> -11> [robotA, robotB] -12> -13> [robotA, robotB] -14> ) +4 > +5 > [ +6 > robotA +7 > , +8 > robotB +9 > ] +10> +11> [robotA, robotB] +12> +13> [robotA, robotB] +14> ) 1->Emitted(49, 1) Source(60, 1) + SourceIndex(0) 2 >Emitted(49, 6) Source(60, 24) + SourceIndex(0) -3 >Emitted(49, 17) Source(60, 40) + SourceIndex(0) -4 >Emitted(49, 19) Source(60, 24) + SourceIndex(0) -5 >Emitted(49, 26) Source(60, 25) + SourceIndex(0) -6 >Emitted(49, 32) Source(60, 31) + SourceIndex(0) -7 >Emitted(49, 34) Source(60, 33) + SourceIndex(0) -8 >Emitted(49, 40) Source(60, 39) + SourceIndex(0) -9 >Emitted(49, 41) Source(60, 40) + SourceIndex(0) -10>Emitted(49, 43) Source(60, 24) + SourceIndex(0) -11>Emitted(49, 59) Source(60, 40) + SourceIndex(0) -12>Emitted(49, 61) Source(60, 24) + SourceIndex(0) -13>Emitted(49, 66) Source(60, 40) + SourceIndex(0) -14>Emitted(49, 68) Source(60, 42) + SourceIndex(0) +3 >Emitted(49, 16) Source(60, 40) + SourceIndex(0) +4 >Emitted(49, 18) Source(60, 24) + SourceIndex(0) +5 >Emitted(49, 24) Source(60, 25) + SourceIndex(0) +6 >Emitted(49, 30) Source(60, 31) + SourceIndex(0) +7 >Emitted(49, 32) Source(60, 33) + SourceIndex(0) +8 >Emitted(49, 38) Source(60, 39) + SourceIndex(0) +9 >Emitted(49, 39) Source(60, 40) + SourceIndex(0) +10>Emitted(49, 41) Source(60, 24) + SourceIndex(0) +11>Emitted(49, 55) Source(60, 40) + SourceIndex(0) +12>Emitted(49, 57) Source(60, 24) + SourceIndex(0) +13>Emitted(49, 61) Source(60, 40) + SourceIndex(0) +14>Emitted(49, 63) Source(60, 42) + SourceIndex(0) --- ->>> _13 = _12[_11][0], numberB = _13 === void 0 ? -1 : _13; +>>> _33 = _p[_o][0], numberB = _33 === void 0 ? -1 : _33; 1 >^^^^ -2 > ^^^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1 > 2 > numberB = -1 -3 > -4 > numberB = -1 +3 > +4 > numberB = -1 1 >Emitted(50, 5) Source(60, 7) + SourceIndex(0) -2 >Emitted(50, 22) Source(60, 19) + SourceIndex(0) -3 >Emitted(50, 24) Source(60, 7) + SourceIndex(0) -4 >Emitted(50, 59) Source(60, 19) + SourceIndex(0) +2 >Emitted(50, 20) Source(60, 19) + SourceIndex(0) +3 >Emitted(50, 22) Source(60, 7) + SourceIndex(0) +4 >Emitted(50, 57) Source(60, 19) + SourceIndex(0) --- >>> console.log(numberB); 1 >^^^^ @@ -1318,57 +1318,57 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(52, 2) Source(62, 2) + SourceIndex(0) --- ->>>for (var _14 = 0, multiRobots_2 = multiRobots; _14 < multiRobots_2.length; _14++) { +>>>for (var _q = 0, multiRobots_2 = multiRobots; _q < multiRobots_2.length; _q++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^ -6 > ^^ -7 > ^^^^^^^^^^^^^^^^^^^^^^^^^^ -8 > ^^ -9 > ^^^^^ -10> ^^ +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^ +6 > ^^ +7 > ^^^^^^^^^^^^^^^^^^^^^^^^^ +8 > ^^ +9 > ^^^^ +10> ^^ 1-> > 2 >for ([nameB = "noName"] of 3 > multiRobots -4 > -5 > multiRobots -6 > -7 > multiRobots -8 > -9 > multiRobots -10> ) +4 > +5 > multiRobots +6 > +7 > multiRobots +8 > +9 > multiRobots +10> ) 1->Emitted(53, 1) Source(63, 1) + SourceIndex(0) 2 >Emitted(53, 6) Source(63, 28) + SourceIndex(0) -3 >Emitted(53, 17) Source(63, 39) + SourceIndex(0) -4 >Emitted(53, 19) Source(63, 28) + SourceIndex(0) -5 >Emitted(53, 46) Source(63, 39) + SourceIndex(0) -6 >Emitted(53, 48) Source(63, 28) + SourceIndex(0) -7 >Emitted(53, 74) Source(63, 39) + SourceIndex(0) -8 >Emitted(53, 76) Source(63, 28) + SourceIndex(0) -9 >Emitted(53, 81) Source(63, 39) + SourceIndex(0) -10>Emitted(53, 83) Source(63, 41) + SourceIndex(0) +3 >Emitted(53, 16) Source(63, 39) + SourceIndex(0) +4 >Emitted(53, 18) Source(63, 28) + SourceIndex(0) +5 >Emitted(53, 45) Source(63, 39) + SourceIndex(0) +6 >Emitted(53, 47) Source(63, 28) + SourceIndex(0) +7 >Emitted(53, 72) Source(63, 39) + SourceIndex(0) +8 >Emitted(53, 74) Source(63, 28) + SourceIndex(0) +9 >Emitted(53, 78) Source(63, 39) + SourceIndex(0) +10>Emitted(53, 80) Source(63, 41) + SourceIndex(0) --- ->>> _15 = multiRobots_2[_14][0], nameB = _15 === void 0 ? "noName" : _15; +>>> _34 = multiRobots_2[_q][0], nameB = _34 === void 0 ? "noName" : _34; 1 >^^^^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1 > 2 > nameB = "noName" -3 > -4 > nameB = "noName" +3 > +4 > nameB = "noName" 1 >Emitted(54, 5) Source(63, 7) + SourceIndex(0) -2 >Emitted(54, 32) Source(63, 23) + SourceIndex(0) -3 >Emitted(54, 34) Source(63, 7) + SourceIndex(0) -4 >Emitted(54, 73) Source(63, 23) + SourceIndex(0) +2 >Emitted(54, 31) Source(63, 23) + SourceIndex(0) +3 >Emitted(54, 33) Source(63, 7) + SourceIndex(0) +4 >Emitted(54, 72) Source(63, 23) + SourceIndex(0) --- >>> console.log(nameB); 1 >^^^^ @@ -1399,63 +1399,63 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(56, 2) Source(65, 2) + SourceIndex(0) --- ->>>for (var _16 = 0, _17 = getMultiRobots(); _16 < _17.length; _16++) { +>>>for (var _r = 0, _s = getMultiRobots(); _r < _s.length; _r++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^ -6 > ^^^^^^^^^^^^^^ -7 > ^^ -8 > ^^ -9 > ^^^^^^^^^^^^^^^^ -10> ^^ -11> ^^^^^ -12> ^^ +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^ +6 > ^^^^^^^^^^^^^^ +7 > ^^ +8 > ^^ +9 > ^^^^^^^^^^^^^^ +10> ^^ +11> ^^^^ +12> ^^ 1-> > 2 >for ([nameB = "noName"] of 3 > getMultiRobots() -4 > -5 > -6 > getMultiRobots -7 > () -8 > -9 > getMultiRobots() -10> -11> getMultiRobots() -12> ) +4 > +5 > +6 > getMultiRobots +7 > () +8 > +9 > getMultiRobots() +10> +11> getMultiRobots() +12> ) 1->Emitted(57, 1) Source(66, 1) + SourceIndex(0) 2 >Emitted(57, 6) Source(66, 28) + SourceIndex(0) -3 >Emitted(57, 17) Source(66, 44) + SourceIndex(0) -4 >Emitted(57, 19) Source(66, 28) + SourceIndex(0) -5 >Emitted(57, 25) Source(66, 28) + SourceIndex(0) -6 >Emitted(57, 39) Source(66, 42) + SourceIndex(0) -7 >Emitted(57, 41) Source(66, 44) + SourceIndex(0) -8 >Emitted(57, 43) Source(66, 28) + SourceIndex(0) -9 >Emitted(57, 59) Source(66, 44) + SourceIndex(0) -10>Emitted(57, 61) Source(66, 28) + SourceIndex(0) -11>Emitted(57, 66) Source(66, 44) + SourceIndex(0) -12>Emitted(57, 68) Source(66, 46) + SourceIndex(0) +3 >Emitted(57, 16) Source(66, 44) + SourceIndex(0) +4 >Emitted(57, 18) Source(66, 28) + SourceIndex(0) +5 >Emitted(57, 23) Source(66, 28) + SourceIndex(0) +6 >Emitted(57, 37) Source(66, 42) + SourceIndex(0) +7 >Emitted(57, 39) Source(66, 44) + SourceIndex(0) +8 >Emitted(57, 41) Source(66, 28) + SourceIndex(0) +9 >Emitted(57, 55) Source(66, 44) + SourceIndex(0) +10>Emitted(57, 57) Source(66, 28) + SourceIndex(0) +11>Emitted(57, 61) Source(66, 44) + SourceIndex(0) +12>Emitted(57, 63) Source(66, 46) + SourceIndex(0) --- ->>> _18 = _17[_16][0], nameB = _18 === void 0 ? "noName" : _18; +>>> _35 = _s[_r][0], nameB = _35 === void 0 ? "noName" : _35; 1 >^^^^ -2 > ^^^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1 > 2 > nameB = "noName" -3 > -4 > nameB = "noName" +3 > +4 > nameB = "noName" 1 >Emitted(58, 5) Source(66, 7) + SourceIndex(0) -2 >Emitted(58, 22) Source(66, 23) + SourceIndex(0) -3 >Emitted(58, 24) Source(66, 7) + SourceIndex(0) -4 >Emitted(58, 63) Source(66, 23) + SourceIndex(0) +2 >Emitted(58, 20) Source(66, 23) + SourceIndex(0) +3 >Emitted(58, 22) Source(66, 7) + SourceIndex(0) +4 >Emitted(58, 61) Source(66, 23) + SourceIndex(0) --- >>> console.log(nameB); 1 >^^^^ @@ -1486,69 +1486,69 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(60, 2) Source(68, 2) + SourceIndex(0) --- ->>>for (var _19 = 0, _20 = [multiRobotA, multiRobotB]; _19 < _20.length; _19++) { +>>>for (var _t = 0, _u = [multiRobotA, multiRobotB]; _t < _u.length; _t++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^^ -6 > ^^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^ -9 > ^ -10> ^^ -11> ^^^^^^^^^^^^^^^^ -12> ^^ -13> ^^^^^ -14> ^^ +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^^ +6 > ^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^ +9 > ^ +10> ^^ +11> ^^^^^^^^^^^^^^ +12> ^^ +13> ^^^^ +14> ^^ 1-> > 2 >for ([nameB = "noName"] of 3 > [multiRobotA, multiRobotB] -4 > -5 > [ -6 > multiRobotA -7 > , -8 > multiRobotB -9 > ] -10> -11> [multiRobotA, multiRobotB] -12> -13> [multiRobotA, multiRobotB] -14> ) +4 > +5 > [ +6 > multiRobotA +7 > , +8 > multiRobotB +9 > ] +10> +11> [multiRobotA, multiRobotB] +12> +13> [multiRobotA, multiRobotB] +14> ) 1->Emitted(61, 1) Source(69, 1) + SourceIndex(0) 2 >Emitted(61, 6) Source(69, 28) + SourceIndex(0) -3 >Emitted(61, 17) Source(69, 54) + SourceIndex(0) -4 >Emitted(61, 19) Source(69, 28) + SourceIndex(0) -5 >Emitted(61, 26) Source(69, 29) + SourceIndex(0) -6 >Emitted(61, 37) Source(69, 40) + SourceIndex(0) -7 >Emitted(61, 39) Source(69, 42) + SourceIndex(0) -8 >Emitted(61, 50) Source(69, 53) + SourceIndex(0) -9 >Emitted(61, 51) Source(69, 54) + SourceIndex(0) -10>Emitted(61, 53) Source(69, 28) + SourceIndex(0) -11>Emitted(61, 69) Source(69, 54) + SourceIndex(0) -12>Emitted(61, 71) Source(69, 28) + SourceIndex(0) -13>Emitted(61, 76) Source(69, 54) + SourceIndex(0) -14>Emitted(61, 78) Source(69, 56) + SourceIndex(0) +3 >Emitted(61, 16) Source(69, 54) + SourceIndex(0) +4 >Emitted(61, 18) Source(69, 28) + SourceIndex(0) +5 >Emitted(61, 24) Source(69, 29) + SourceIndex(0) +6 >Emitted(61, 35) Source(69, 40) + SourceIndex(0) +7 >Emitted(61, 37) Source(69, 42) + SourceIndex(0) +8 >Emitted(61, 48) Source(69, 53) + SourceIndex(0) +9 >Emitted(61, 49) Source(69, 54) + SourceIndex(0) +10>Emitted(61, 51) Source(69, 28) + SourceIndex(0) +11>Emitted(61, 65) Source(69, 54) + SourceIndex(0) +12>Emitted(61, 67) Source(69, 28) + SourceIndex(0) +13>Emitted(61, 71) Source(69, 54) + SourceIndex(0) +14>Emitted(61, 73) Source(69, 56) + SourceIndex(0) --- ->>> _21 = _20[_19][0], nameB = _21 === void 0 ? "noName" : _21; +>>> _36 = _u[_t][0], nameB = _36 === void 0 ? "noName" : _36; 1 >^^^^ -2 > ^^^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1 > 2 > nameB = "noName" -3 > -4 > nameB = "noName" +3 > +4 > nameB = "noName" 1 >Emitted(62, 5) Source(69, 7) + SourceIndex(0) -2 >Emitted(62, 22) Source(69, 23) + SourceIndex(0) -3 >Emitted(62, 24) Source(69, 7) + SourceIndex(0) -4 >Emitted(62, 63) Source(69, 23) + SourceIndex(0) +2 >Emitted(62, 20) Source(69, 23) + SourceIndex(0) +3 >Emitted(62, 22) Source(69, 7) + SourceIndex(0) +4 >Emitted(62, 61) Source(69, 23) + SourceIndex(0) --- >>> console.log(nameB); 1 >^^^^ @@ -1579,83 +1579,83 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(64, 2) Source(71, 2) + SourceIndex(0) --- ->>>for (var _22 = 0, robots_3 = robots; _22 < robots_3.length; _22++) { +>>>for (var _v = 0, robots_3 = robots; _v < robots_3.length; _v++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^^^^^^^^^^^^ -6 > ^^ -7 > ^^^^^^^^^^^^^^^^^^^^^ -8 > ^^ -9 > ^^^^^ -10> ^^ -11> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^^^^^^^^^^^^^ +6 > ^^ +7 > ^^^^^^^^^^^^^^^^^^^^ +8 > ^^ +9 > ^^^^ +10> ^^ +11> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> > > 2 >for ([numberA2 = -1, nameA2 = "noName", skillA2 = "skill"] of 3 > robots -4 > -5 > robots -6 > -7 > robots -8 > -9 > robots -10> ) +4 > +5 > robots +6 > +7 > robots +8 > +9 > robots +10> ) 1->Emitted(65, 1) Source(73, 1) + SourceIndex(0) 2 >Emitted(65, 6) Source(73, 63) + SourceIndex(0) -3 >Emitted(65, 17) Source(73, 69) + SourceIndex(0) -4 >Emitted(65, 19) Source(73, 63) + SourceIndex(0) -5 >Emitted(65, 36) Source(73, 69) + SourceIndex(0) -6 >Emitted(65, 38) Source(73, 63) + SourceIndex(0) -7 >Emitted(65, 59) Source(73, 69) + SourceIndex(0) -8 >Emitted(65, 61) Source(73, 63) + SourceIndex(0) -9 >Emitted(65, 66) Source(73, 69) + SourceIndex(0) -10>Emitted(65, 68) Source(73, 71) + SourceIndex(0) +3 >Emitted(65, 16) Source(73, 69) + SourceIndex(0) +4 >Emitted(65, 18) Source(73, 63) + SourceIndex(0) +5 >Emitted(65, 35) Source(73, 69) + SourceIndex(0) +6 >Emitted(65, 37) Source(73, 63) + SourceIndex(0) +7 >Emitted(65, 57) Source(73, 69) + SourceIndex(0) +8 >Emitted(65, 59) Source(73, 63) + SourceIndex(0) +9 >Emitted(65, 63) Source(73, 69) + SourceIndex(0) +10>Emitted(65, 65) Source(73, 71) + SourceIndex(0) --- ->>> _23 = robots_3[_22], _24 = _23[0], numberA2 = _24 === void 0 ? -1 : _24, _25 = _23[1], nameA2 = _25 === void 0 ? "noName" : _25, _26 = _23[2], skillA2 = _26 === void 0 ? "skill" : _26; -1->^^^^^^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -9 > ^^ -10> ^^^^^^^^^^^^ -11> ^^ -12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +>>> _37 = robots_3[_v], _38 = _37[0], numberA2 = _38 === void 0 ? -1 : _38, _39 = _37[1], nameA2 = _39 === void 0 ? "noName" : _39, _40 = _37[2], skillA2 = _40 === void 0 ? "skill" : _40; +1->^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +9 > ^^ +10> ^^^^^^^^^^^^ +11> ^^ +12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > numberA2 = -1 -3 > -4 > numberA2 = -1 -5 > , -6 > nameA2 = "noName" -7 > -8 > nameA2 = "noName" -9 > , -10> skillA2 = "skill" -11> -12> skillA2 = "skill" -1->Emitted(66, 26) Source(73, 7) + SourceIndex(0) -2 >Emitted(66, 38) Source(73, 20) + SourceIndex(0) -3 >Emitted(66, 40) Source(73, 7) + SourceIndex(0) -4 >Emitted(66, 76) Source(73, 20) + SourceIndex(0) -5 >Emitted(66, 78) Source(73, 22) + SourceIndex(0) -6 >Emitted(66, 90) Source(73, 39) + SourceIndex(0) -7 >Emitted(66, 92) Source(73, 22) + SourceIndex(0) -8 >Emitted(66, 132) Source(73, 39) + SourceIndex(0) -9 >Emitted(66, 134) Source(73, 41) + SourceIndex(0) -10>Emitted(66, 146) Source(73, 58) + SourceIndex(0) -11>Emitted(66, 148) Source(73, 41) + SourceIndex(0) -12>Emitted(66, 188) Source(73, 58) + SourceIndex(0) +2 > numberA2 = -1 +3 > +4 > numberA2 = -1 +5 > , +6 > nameA2 = "noName" +7 > +8 > nameA2 = "noName" +9 > , +10> skillA2 = "skill" +11> +12> skillA2 = "skill" +1->Emitted(66, 25) Source(73, 7) + SourceIndex(0) +2 >Emitted(66, 37) Source(73, 20) + SourceIndex(0) +3 >Emitted(66, 39) Source(73, 7) + SourceIndex(0) +4 >Emitted(66, 75) Source(73, 20) + SourceIndex(0) +5 >Emitted(66, 77) Source(73, 22) + SourceIndex(0) +6 >Emitted(66, 89) Source(73, 39) + SourceIndex(0) +7 >Emitted(66, 91) Source(73, 22) + SourceIndex(0) +8 >Emitted(66, 131) Source(73, 39) + SourceIndex(0) +9 >Emitted(66, 133) Source(73, 41) + SourceIndex(0) +10>Emitted(66, 145) Source(73, 58) + SourceIndex(0) +11>Emitted(66, 147) Source(73, 41) + SourceIndex(0) +12>Emitted(66, 187) Source(73, 58) + SourceIndex(0) --- >>> console.log(nameA2); 1 >^^^^ @@ -1686,88 +1686,88 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(68, 2) Source(75, 2) + SourceIndex(0) --- ->>>for (var _27 = 0, _28 = getRobots(); _27 < _28.length; _27++) { +>>>for (var _w = 0, _x = getRobots(); _w < _x.length; _w++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^ -6 > ^^^^^^^^^ -7 > ^^ -8 > ^^ -9 > ^^^^^^^^^^^^^^^^ -10> ^^ -11> ^^^^^ -12> ^^ -13> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^ +6 > ^^^^^^^^^ +7 > ^^ +8 > ^^ +9 > ^^^^^^^^^^^^^^ +10> ^^ +11> ^^^^ +12> ^^ +13> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> > 2 >for ([numberA2 = -1, nameA2 = "noName", skillA2 = "skill"] of 3 > getRobots() -4 > -5 > -6 > getRobots -7 > () -8 > -9 > getRobots() -10> -11> getRobots() -12> ) +4 > +5 > +6 > getRobots +7 > () +8 > +9 > getRobots() +10> +11> getRobots() +12> ) 1->Emitted(69, 1) Source(76, 1) + SourceIndex(0) 2 >Emitted(69, 6) Source(76, 63) + SourceIndex(0) -3 >Emitted(69, 17) Source(76, 74) + SourceIndex(0) -4 >Emitted(69, 19) Source(76, 63) + SourceIndex(0) -5 >Emitted(69, 25) Source(76, 63) + SourceIndex(0) -6 >Emitted(69, 34) Source(76, 72) + SourceIndex(0) -7 >Emitted(69, 36) Source(76, 74) + SourceIndex(0) -8 >Emitted(69, 38) Source(76, 63) + SourceIndex(0) -9 >Emitted(69, 54) Source(76, 74) + SourceIndex(0) -10>Emitted(69, 56) Source(76, 63) + SourceIndex(0) -11>Emitted(69, 61) Source(76, 74) + SourceIndex(0) -12>Emitted(69, 63) Source(76, 76) + SourceIndex(0) +3 >Emitted(69, 16) Source(76, 74) + SourceIndex(0) +4 >Emitted(69, 18) Source(76, 63) + SourceIndex(0) +5 >Emitted(69, 23) Source(76, 63) + SourceIndex(0) +6 >Emitted(69, 32) Source(76, 72) + SourceIndex(0) +7 >Emitted(69, 34) Source(76, 74) + SourceIndex(0) +8 >Emitted(69, 36) Source(76, 63) + SourceIndex(0) +9 >Emitted(69, 50) Source(76, 74) + SourceIndex(0) +10>Emitted(69, 52) Source(76, 63) + SourceIndex(0) +11>Emitted(69, 56) Source(76, 74) + SourceIndex(0) +12>Emitted(69, 58) Source(76, 76) + SourceIndex(0) --- ->>> _29 = _28[_27], _30 = _29[0], numberA2 = _30 === void 0 ? -1 : _30, _31 = _29[1], nameA2 = _31 === void 0 ? "noName" : _31, _32 = _29[2], skillA2 = _32 === void 0 ? "skill" : _32; -1->^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -9 > ^^ -10> ^^^^^^^^^^^^ -11> ^^ -12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +>>> _41 = _x[_w], _42 = _41[0], numberA2 = _42 === void 0 ? -1 : _42, _43 = _41[1], nameA2 = _43 === void 0 ? "noName" : _43, _44 = _41[2], skillA2 = _44 === void 0 ? "skill" : _44; +1->^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +9 > ^^ +10> ^^^^^^^^^^^^ +11> ^^ +12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > numberA2 = -1 -3 > -4 > numberA2 = -1 -5 > , -6 > nameA2 = "noName" -7 > -8 > nameA2 = "noName" -9 > , -10> skillA2 = "skill" -11> -12> skillA2 = "skill" -1->Emitted(70, 21) Source(76, 7) + SourceIndex(0) -2 >Emitted(70, 33) Source(76, 20) + SourceIndex(0) -3 >Emitted(70, 35) Source(76, 7) + SourceIndex(0) -4 >Emitted(70, 71) Source(76, 20) + SourceIndex(0) -5 >Emitted(70, 73) Source(76, 22) + SourceIndex(0) -6 >Emitted(70, 85) Source(76, 39) + SourceIndex(0) -7 >Emitted(70, 87) Source(76, 22) + SourceIndex(0) -8 >Emitted(70, 127) Source(76, 39) + SourceIndex(0) -9 >Emitted(70, 129) Source(76, 41) + SourceIndex(0) -10>Emitted(70, 141) Source(76, 58) + SourceIndex(0) -11>Emitted(70, 143) Source(76, 41) + SourceIndex(0) -12>Emitted(70, 183) Source(76, 58) + SourceIndex(0) +2 > numberA2 = -1 +3 > +4 > numberA2 = -1 +5 > , +6 > nameA2 = "noName" +7 > +8 > nameA2 = "noName" +9 > , +10> skillA2 = "skill" +11> +12> skillA2 = "skill" +1->Emitted(70, 19) Source(76, 7) + SourceIndex(0) +2 >Emitted(70, 31) Source(76, 20) + SourceIndex(0) +3 >Emitted(70, 33) Source(76, 7) + SourceIndex(0) +4 >Emitted(70, 69) Source(76, 20) + SourceIndex(0) +5 >Emitted(70, 71) Source(76, 22) + SourceIndex(0) +6 >Emitted(70, 83) Source(76, 39) + SourceIndex(0) +7 >Emitted(70, 85) Source(76, 22) + SourceIndex(0) +8 >Emitted(70, 125) Source(76, 39) + SourceIndex(0) +9 >Emitted(70, 127) Source(76, 41) + SourceIndex(0) +10>Emitted(70, 139) Source(76, 58) + SourceIndex(0) +11>Emitted(70, 141) Source(76, 41) + SourceIndex(0) +12>Emitted(70, 181) Source(76, 58) + SourceIndex(0) --- >>> console.log(nameA2); 1 >^^^^ @@ -1798,94 +1798,94 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(72, 2) Source(78, 2) + SourceIndex(0) --- ->>>for (var _33 = 0, _34 = [robotA, robotB]; _33 < _34.length; _33++) { +>>>for (var _y = 0, _z = [robotA, robotB]; _y < _z.length; _y++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^^ -6 > ^^^^^^ -7 > ^^ -8 > ^^^^^^ -9 > ^ -10> ^^ -11> ^^^^^^^^^^^^^^^^ -12> ^^ -13> ^^^^^ -14> ^^ -15> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^^ +6 > ^^^^^^ +7 > ^^ +8 > ^^^^^^ +9 > ^ +10> ^^ +11> ^^^^^^^^^^^^^^ +12> ^^ +13> ^^^^ +14> ^^ +15> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> > 2 >for ([numberA2 = -1, nameA2 = "noName", skillA2 = "skill"] of 3 > [robotA, robotB] -4 > -5 > [ -6 > robotA -7 > , -8 > robotB -9 > ] -10> -11> [robotA, robotB] -12> -13> [robotA, robotB] -14> ) +4 > +5 > [ +6 > robotA +7 > , +8 > robotB +9 > ] +10> +11> [robotA, robotB] +12> +13> [robotA, robotB] +14> ) 1->Emitted(73, 1) Source(79, 1) + SourceIndex(0) 2 >Emitted(73, 6) Source(79, 63) + SourceIndex(0) -3 >Emitted(73, 17) Source(79, 79) + SourceIndex(0) -4 >Emitted(73, 19) Source(79, 63) + SourceIndex(0) -5 >Emitted(73, 26) Source(79, 64) + SourceIndex(0) -6 >Emitted(73, 32) Source(79, 70) + SourceIndex(0) -7 >Emitted(73, 34) Source(79, 72) + SourceIndex(0) -8 >Emitted(73, 40) Source(79, 78) + SourceIndex(0) -9 >Emitted(73, 41) Source(79, 79) + SourceIndex(0) -10>Emitted(73, 43) Source(79, 63) + SourceIndex(0) -11>Emitted(73, 59) Source(79, 79) + SourceIndex(0) -12>Emitted(73, 61) Source(79, 63) + SourceIndex(0) -13>Emitted(73, 66) Source(79, 79) + SourceIndex(0) -14>Emitted(73, 68) Source(79, 81) + SourceIndex(0) +3 >Emitted(73, 16) Source(79, 79) + SourceIndex(0) +4 >Emitted(73, 18) Source(79, 63) + SourceIndex(0) +5 >Emitted(73, 24) Source(79, 64) + SourceIndex(0) +6 >Emitted(73, 30) Source(79, 70) + SourceIndex(0) +7 >Emitted(73, 32) Source(79, 72) + SourceIndex(0) +8 >Emitted(73, 38) Source(79, 78) + SourceIndex(0) +9 >Emitted(73, 39) Source(79, 79) + SourceIndex(0) +10>Emitted(73, 41) Source(79, 63) + SourceIndex(0) +11>Emitted(73, 55) Source(79, 79) + SourceIndex(0) +12>Emitted(73, 57) Source(79, 63) + SourceIndex(0) +13>Emitted(73, 61) Source(79, 79) + SourceIndex(0) +14>Emitted(73, 63) Source(79, 81) + SourceIndex(0) --- ->>> _35 = _34[_33], _36 = _35[0], numberA2 = _36 === void 0 ? -1 : _36, _37 = _35[1], nameA2 = _37 === void 0 ? "noName" : _37, _38 = _35[2], skillA2 = _38 === void 0 ? "skill" : _38; -1->^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -9 > ^^ -10> ^^^^^^^^^^^^ -11> ^^ -12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +>>> _45 = _z[_y], _46 = _45[0], numberA2 = _46 === void 0 ? -1 : _46, _47 = _45[1], nameA2 = _47 === void 0 ? "noName" : _47, _48 = _45[2], skillA2 = _48 === void 0 ? "skill" : _48; +1->^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +9 > ^^ +10> ^^^^^^^^^^^^ +11> ^^ +12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > numberA2 = -1 -3 > -4 > numberA2 = -1 -5 > , -6 > nameA2 = "noName" -7 > -8 > nameA2 = "noName" -9 > , -10> skillA2 = "skill" -11> -12> skillA2 = "skill" -1->Emitted(74, 21) Source(79, 7) + SourceIndex(0) -2 >Emitted(74, 33) Source(79, 20) + SourceIndex(0) -3 >Emitted(74, 35) Source(79, 7) + SourceIndex(0) -4 >Emitted(74, 71) Source(79, 20) + SourceIndex(0) -5 >Emitted(74, 73) Source(79, 22) + SourceIndex(0) -6 >Emitted(74, 85) Source(79, 39) + SourceIndex(0) -7 >Emitted(74, 87) Source(79, 22) + SourceIndex(0) -8 >Emitted(74, 127) Source(79, 39) + SourceIndex(0) -9 >Emitted(74, 129) Source(79, 41) + SourceIndex(0) -10>Emitted(74, 141) Source(79, 58) + SourceIndex(0) -11>Emitted(74, 143) Source(79, 41) + SourceIndex(0) -12>Emitted(74, 183) Source(79, 58) + SourceIndex(0) +2 > numberA2 = -1 +3 > +4 > numberA2 = -1 +5 > , +6 > nameA2 = "noName" +7 > +8 > nameA2 = "noName" +9 > , +10> skillA2 = "skill" +11> +12> skillA2 = "skill" +1->Emitted(74, 19) Source(79, 7) + SourceIndex(0) +2 >Emitted(74, 31) Source(79, 20) + SourceIndex(0) +3 >Emitted(74, 33) Source(79, 7) + SourceIndex(0) +4 >Emitted(74, 69) Source(79, 20) + SourceIndex(0) +5 >Emitted(74, 71) Source(79, 22) + SourceIndex(0) +6 >Emitted(74, 83) Source(79, 39) + SourceIndex(0) +7 >Emitted(74, 85) Source(79, 22) + SourceIndex(0) +8 >Emitted(74, 125) Source(79, 39) + SourceIndex(0) +9 >Emitted(74, 127) Source(79, 41) + SourceIndex(0) +10>Emitted(74, 139) Source(79, 58) + SourceIndex(0) +11>Emitted(74, 141) Source(79, 41) + SourceIndex(0) +12>Emitted(74, 181) Source(79, 58) + SourceIndex(0) --- >>> console.log(nameA2); 1 >^^^^ @@ -1916,23 +1916,23 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(76, 2) Source(81, 2) + SourceIndex(0) --- ->>>for (var _39 = 0, multiRobots_3 = multiRobots; _39 < multiRobots_3.length; _39++) { +>>>for (var _0 = 0, multiRobots_3 = multiRobots; _0 < multiRobots_3.length; _0++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^ -6 > ^^ -7 > ^^^^^^^^^^^^^^^^^^^^^^^^^^ -8 > ^^ -9 > ^^^^^ -10> ^^ -11> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^ +6 > ^^ +7 > ^^^^^^^^^^^^^^^^^^^^^^^^^ +8 > ^^ +9 > ^^^^ +10> ^^ +11> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> > 2 >for ([nameMA = "noName", [ @@ -1940,80 +1940,80 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues > secondarySkillA = "secondary" >] = ["skill1", "skill2"]] of 3 > multiRobots -4 > -5 > multiRobots -6 > -7 > multiRobots -8 > -9 > multiRobots -10> ) +4 > +5 > multiRobots +6 > +7 > multiRobots +8 > +9 > multiRobots +10> ) 1->Emitted(77, 1) Source(82, 1) + SourceIndex(0) 2 >Emitted(77, 6) Source(85, 30) + SourceIndex(0) -3 >Emitted(77, 17) Source(85, 41) + SourceIndex(0) -4 >Emitted(77, 19) Source(85, 30) + SourceIndex(0) -5 >Emitted(77, 46) Source(85, 41) + SourceIndex(0) -6 >Emitted(77, 48) Source(85, 30) + SourceIndex(0) -7 >Emitted(77, 74) Source(85, 41) + SourceIndex(0) -8 >Emitted(77, 76) Source(85, 30) + SourceIndex(0) -9 >Emitted(77, 81) Source(85, 41) + SourceIndex(0) -10>Emitted(77, 83) Source(85, 43) + SourceIndex(0) +3 >Emitted(77, 16) Source(85, 41) + SourceIndex(0) +4 >Emitted(77, 18) Source(85, 30) + SourceIndex(0) +5 >Emitted(77, 45) Source(85, 41) + SourceIndex(0) +6 >Emitted(77, 47) Source(85, 30) + SourceIndex(0) +7 >Emitted(77, 72) Source(85, 41) + SourceIndex(0) +8 >Emitted(77, 74) Source(85, 30) + SourceIndex(0) +9 >Emitted(77, 78) Source(85, 41) + SourceIndex(0) +10>Emitted(77, 80) Source(85, 43) + SourceIndex(0) --- ->>> _40 = multiRobots_3[_39], _41 = _40[0], nameMA = _41 === void 0 ? "noName" : _41, _42 = _40[1], _43 = _42 === void 0 ? ["skill1", "skill2"] : _42, _44 = _43[0], primarySkillA = _44 === void 0 ? "primary" : _44, _45 = _43[1], secondarySkillA = _45 === void 0 ? "secondary" : _45; -1->^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -9 > ^^ -10> ^^^^^^^^^^^^ -11> ^^ -12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -13> ^^ -14> ^^^^^^^^^^^^ -15> ^^ -16> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +>>> _49 = multiRobots_3[_0], _50 = _49[0], nameMA = _50 === void 0 ? "noName" : _50, _51 = _49[1], _52 = _51 === void 0 ? ["skill1", "skill2"] : _51, _53 = _52[0], primarySkillA = _53 === void 0 ? "primary" : _53, _54 = _52[1], secondarySkillA = _54 === void 0 ? "secondary" : _54; +1->^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +9 > ^^ +10> ^^^^^^^^^^^^ +11> ^^ +12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +13> ^^ +14> ^^^^^^^^^^^^ +15> ^^ +16> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > nameMA = "noName" -3 > -4 > nameMA = "noName" -5 > , -6 > [ - > primarySkillA = "primary", - > secondarySkillA = "secondary" - > ] = ["skill1", "skill2"] -7 > -8 > [ - > primarySkillA = "primary", - > secondarySkillA = "secondary" - > ] = ["skill1", "skill2"] -9 > -10> primarySkillA = "primary" -11> -12> primarySkillA = "primary" -13> , - > -14> secondarySkillA = "secondary" -15> -16> secondarySkillA = "secondary" -1->Emitted(78, 31) Source(82, 7) + SourceIndex(0) -2 >Emitted(78, 43) Source(82, 24) + SourceIndex(0) -3 >Emitted(78, 45) Source(82, 7) + SourceIndex(0) -4 >Emitted(78, 85) Source(82, 24) + SourceIndex(0) -5 >Emitted(78, 87) Source(82, 26) + SourceIndex(0) -6 >Emitted(78, 99) Source(85, 25) + SourceIndex(0) -7 >Emitted(78, 101) Source(82, 26) + SourceIndex(0) -8 >Emitted(78, 150) Source(85, 25) + SourceIndex(0) -9 >Emitted(78, 152) Source(83, 5) + SourceIndex(0) -10>Emitted(78, 164) Source(83, 30) + SourceIndex(0) -11>Emitted(78, 166) Source(83, 5) + SourceIndex(0) -12>Emitted(78, 214) Source(83, 30) + SourceIndex(0) -13>Emitted(78, 216) Source(84, 5) + SourceIndex(0) -14>Emitted(78, 228) Source(84, 34) + SourceIndex(0) -15>Emitted(78, 230) Source(84, 5) + SourceIndex(0) -16>Emitted(78, 282) Source(84, 34) + SourceIndex(0) +2 > nameMA = "noName" +3 > +4 > nameMA = "noName" +5 > , +6 > [ + > primarySkillA = "primary", + > secondarySkillA = "secondary" + > ] = ["skill1", "skill2"] +7 > +8 > [ + > primarySkillA = "primary", + > secondarySkillA = "secondary" + > ] = ["skill1", "skill2"] +9 > +10> primarySkillA = "primary" +11> +12> primarySkillA = "primary" +13> , + > +14> secondarySkillA = "secondary" +15> +16> secondarySkillA = "secondary" +1->Emitted(78, 30) Source(82, 7) + SourceIndex(0) +2 >Emitted(78, 42) Source(82, 24) + SourceIndex(0) +3 >Emitted(78, 44) Source(82, 7) + SourceIndex(0) +4 >Emitted(78, 84) Source(82, 24) + SourceIndex(0) +5 >Emitted(78, 86) Source(82, 26) + SourceIndex(0) +6 >Emitted(78, 98) Source(85, 25) + SourceIndex(0) +7 >Emitted(78, 100) Source(82, 26) + SourceIndex(0) +8 >Emitted(78, 149) Source(85, 25) + SourceIndex(0) +9 >Emitted(78, 151) Source(83, 5) + SourceIndex(0) +10>Emitted(78, 163) Source(83, 30) + SourceIndex(0) +11>Emitted(78, 165) Source(83, 5) + SourceIndex(0) +12>Emitted(78, 213) Source(83, 30) + SourceIndex(0) +13>Emitted(78, 215) Source(84, 5) + SourceIndex(0) +14>Emitted(78, 227) Source(84, 34) + SourceIndex(0) +15>Emitted(78, 229) Source(84, 5) + SourceIndex(0) +16>Emitted(78, 281) Source(84, 34) + SourceIndex(0) --- >>> console.log(nameMA); 1 >^^^^ @@ -2045,25 +2045,25 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(80, 2) Source(87, 2) + SourceIndex(0) --- ->>>for (var _46 = 0, _47 = getMultiRobots(); _46 < _47.length; _46++) { +>>>for (var _1 = 0, _2 = getMultiRobots(); _1 < _2.length; _1++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^ -6 > ^^^^^^^^^^^^^^ -7 > ^^ -8 > ^^ -9 > ^^^^^^^^^^^^^^^^ -10> ^^ -11> ^^^^^ -12> ^^ -13> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^ +6 > ^^^^^^^^^^^^^^ +7 > ^^ +8 > ^^ +9 > ^^^^^^^^^^^^^^ +10> ^^ +11> ^^^^ +12> ^^ +13> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> > 2 >for ([nameMA = "noName", [ @@ -2071,84 +2071,84 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues > secondarySkillA = "secondary" >] = ["skill1", "skill2"]] of 3 > getMultiRobots() -4 > -5 > -6 > getMultiRobots -7 > () -8 > -9 > getMultiRobots() -10> -11> getMultiRobots() -12> ) +4 > +5 > +6 > getMultiRobots +7 > () +8 > +9 > getMultiRobots() +10> +11> getMultiRobots() +12> ) 1->Emitted(81, 1) Source(88, 1) + SourceIndex(0) 2 >Emitted(81, 6) Source(91, 30) + SourceIndex(0) -3 >Emitted(81, 17) Source(91, 46) + SourceIndex(0) -4 >Emitted(81, 19) Source(91, 30) + SourceIndex(0) -5 >Emitted(81, 25) Source(91, 30) + SourceIndex(0) -6 >Emitted(81, 39) Source(91, 44) + SourceIndex(0) -7 >Emitted(81, 41) Source(91, 46) + SourceIndex(0) -8 >Emitted(81, 43) Source(91, 30) + SourceIndex(0) -9 >Emitted(81, 59) Source(91, 46) + SourceIndex(0) -10>Emitted(81, 61) Source(91, 30) + SourceIndex(0) -11>Emitted(81, 66) Source(91, 46) + SourceIndex(0) -12>Emitted(81, 68) Source(91, 48) + SourceIndex(0) +3 >Emitted(81, 16) Source(91, 46) + SourceIndex(0) +4 >Emitted(81, 18) Source(91, 30) + SourceIndex(0) +5 >Emitted(81, 23) Source(91, 30) + SourceIndex(0) +6 >Emitted(81, 37) Source(91, 44) + SourceIndex(0) +7 >Emitted(81, 39) Source(91, 46) + SourceIndex(0) +8 >Emitted(81, 41) Source(91, 30) + SourceIndex(0) +9 >Emitted(81, 55) Source(91, 46) + SourceIndex(0) +10>Emitted(81, 57) Source(91, 30) + SourceIndex(0) +11>Emitted(81, 61) Source(91, 46) + SourceIndex(0) +12>Emitted(81, 63) Source(91, 48) + SourceIndex(0) --- ->>> _48 = _47[_46], _49 = _48[0], nameMA = _49 === void 0 ? "noName" : _49, _50 = _48[1], _51 = _50 === void 0 ? ["skill1", "skill2"] : _50, _52 = _51[0], primarySkillA = _52 === void 0 ? "primary" : _52, _53 = _51[1], secondarySkillA = _53 === void 0 ? "secondary" : _53; -1->^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -9 > ^^ -10> ^^^^^^^^^^^^ -11> ^^ -12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -13> ^^ -14> ^^^^^^^^^^^^ -15> ^^ -16> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +>>> _55 = _2[_1], _56 = _55[0], nameMA = _56 === void 0 ? "noName" : _56, _57 = _55[1], _58 = _57 === void 0 ? ["skill1", "skill2"] : _57, _59 = _58[0], primarySkillA = _59 === void 0 ? "primary" : _59, _60 = _58[1], secondarySkillA = _60 === void 0 ? "secondary" : _60; +1->^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +9 > ^^ +10> ^^^^^^^^^^^^ +11> ^^ +12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +13> ^^ +14> ^^^^^^^^^^^^ +15> ^^ +16> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > nameMA = "noName" -3 > -4 > nameMA = "noName" -5 > , -6 > [ - > primarySkillA = "primary", - > secondarySkillA = "secondary" - > ] = ["skill1", "skill2"] -7 > -8 > [ - > primarySkillA = "primary", - > secondarySkillA = "secondary" - > ] = ["skill1", "skill2"] -9 > -10> primarySkillA = "primary" -11> -12> primarySkillA = "primary" -13> , - > -14> secondarySkillA = "secondary" -15> -16> secondarySkillA = "secondary" -1->Emitted(82, 21) Source(88, 7) + SourceIndex(0) -2 >Emitted(82, 33) Source(88, 24) + SourceIndex(0) -3 >Emitted(82, 35) Source(88, 7) + SourceIndex(0) -4 >Emitted(82, 75) Source(88, 24) + SourceIndex(0) -5 >Emitted(82, 77) Source(88, 26) + SourceIndex(0) -6 >Emitted(82, 89) Source(91, 25) + SourceIndex(0) -7 >Emitted(82, 91) Source(88, 26) + SourceIndex(0) -8 >Emitted(82, 140) Source(91, 25) + SourceIndex(0) -9 >Emitted(82, 142) Source(89, 5) + SourceIndex(0) -10>Emitted(82, 154) Source(89, 30) + SourceIndex(0) -11>Emitted(82, 156) Source(89, 5) + SourceIndex(0) -12>Emitted(82, 204) Source(89, 30) + SourceIndex(0) -13>Emitted(82, 206) Source(90, 5) + SourceIndex(0) -14>Emitted(82, 218) Source(90, 34) + SourceIndex(0) -15>Emitted(82, 220) Source(90, 5) + SourceIndex(0) -16>Emitted(82, 272) Source(90, 34) + SourceIndex(0) +2 > nameMA = "noName" +3 > +4 > nameMA = "noName" +5 > , +6 > [ + > primarySkillA = "primary", + > secondarySkillA = "secondary" + > ] = ["skill1", "skill2"] +7 > +8 > [ + > primarySkillA = "primary", + > secondarySkillA = "secondary" + > ] = ["skill1", "skill2"] +9 > +10> primarySkillA = "primary" +11> +12> primarySkillA = "primary" +13> , + > +14> secondarySkillA = "secondary" +15> +16> secondarySkillA = "secondary" +1->Emitted(82, 19) Source(88, 7) + SourceIndex(0) +2 >Emitted(82, 31) Source(88, 24) + SourceIndex(0) +3 >Emitted(82, 33) Source(88, 7) + SourceIndex(0) +4 >Emitted(82, 73) Source(88, 24) + SourceIndex(0) +5 >Emitted(82, 75) Source(88, 26) + SourceIndex(0) +6 >Emitted(82, 87) Source(91, 25) + SourceIndex(0) +7 >Emitted(82, 89) Source(88, 26) + SourceIndex(0) +8 >Emitted(82, 138) Source(91, 25) + SourceIndex(0) +9 >Emitted(82, 140) Source(89, 5) + SourceIndex(0) +10>Emitted(82, 152) Source(89, 30) + SourceIndex(0) +11>Emitted(82, 154) Source(89, 5) + SourceIndex(0) +12>Emitted(82, 202) Source(89, 30) + SourceIndex(0) +13>Emitted(82, 204) Source(90, 5) + SourceIndex(0) +14>Emitted(82, 216) Source(90, 34) + SourceIndex(0) +15>Emitted(82, 218) Source(90, 5) + SourceIndex(0) +16>Emitted(82, 270) Source(90, 34) + SourceIndex(0) --- >>> console.log(nameMA); 1 >^^^^ @@ -2180,27 +2180,27 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(84, 2) Source(93, 2) + SourceIndex(0) --- ->>>for (var _54 = 0, _55 = [multiRobotA, multiRobotB]; _54 < _55.length; _54++) { +>>>for (var _3 = 0, _4 = [multiRobotA, multiRobotB]; _3 < _4.length; _3++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^^ -6 > ^^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^ -9 > ^ -10> ^^ -11> ^^^^^^^^^^^^^^^^ -12> ^^ -13> ^^^^^ -14> ^^ -15> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^^ +6 > ^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^ +9 > ^ +10> ^^ +11> ^^^^^^^^^^^^^^ +12> ^^ +13> ^^^^ +14> ^^ +15> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> > 2 >for ([nameMA = "noName", [ @@ -2208,88 +2208,88 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues > secondarySkillA = "secondary" >] = ["skill1", "skill2"]] of 3 > [multiRobotA, multiRobotB] -4 > -5 > [ -6 > multiRobotA -7 > , -8 > multiRobotB -9 > ] -10> -11> [multiRobotA, multiRobotB] -12> -13> [multiRobotA, multiRobotB] -14> ) +4 > +5 > [ +6 > multiRobotA +7 > , +8 > multiRobotB +9 > ] +10> +11> [multiRobotA, multiRobotB] +12> +13> [multiRobotA, multiRobotB] +14> ) 1->Emitted(85, 1) Source(94, 1) + SourceIndex(0) 2 >Emitted(85, 6) Source(97, 30) + SourceIndex(0) -3 >Emitted(85, 17) Source(97, 56) + SourceIndex(0) -4 >Emitted(85, 19) Source(97, 30) + SourceIndex(0) -5 >Emitted(85, 26) Source(97, 31) + SourceIndex(0) -6 >Emitted(85, 37) Source(97, 42) + SourceIndex(0) -7 >Emitted(85, 39) Source(97, 44) + SourceIndex(0) -8 >Emitted(85, 50) Source(97, 55) + SourceIndex(0) -9 >Emitted(85, 51) Source(97, 56) + SourceIndex(0) -10>Emitted(85, 53) Source(97, 30) + SourceIndex(0) -11>Emitted(85, 69) Source(97, 56) + SourceIndex(0) -12>Emitted(85, 71) Source(97, 30) + SourceIndex(0) -13>Emitted(85, 76) Source(97, 56) + SourceIndex(0) -14>Emitted(85, 78) Source(97, 58) + SourceIndex(0) +3 >Emitted(85, 16) Source(97, 56) + SourceIndex(0) +4 >Emitted(85, 18) Source(97, 30) + SourceIndex(0) +5 >Emitted(85, 24) Source(97, 31) + SourceIndex(0) +6 >Emitted(85, 35) Source(97, 42) + SourceIndex(0) +7 >Emitted(85, 37) Source(97, 44) + SourceIndex(0) +8 >Emitted(85, 48) Source(97, 55) + SourceIndex(0) +9 >Emitted(85, 49) Source(97, 56) + SourceIndex(0) +10>Emitted(85, 51) Source(97, 30) + SourceIndex(0) +11>Emitted(85, 65) Source(97, 56) + SourceIndex(0) +12>Emitted(85, 67) Source(97, 30) + SourceIndex(0) +13>Emitted(85, 71) Source(97, 56) + SourceIndex(0) +14>Emitted(85, 73) Source(97, 58) + SourceIndex(0) --- ->>> _56 = _55[_54], _57 = _56[0], nameMA = _57 === void 0 ? "noName" : _57, _58 = _56[1], _59 = _58 === void 0 ? ["skill1", "skill2"] : _58, _60 = _59[0], primarySkillA = _60 === void 0 ? "primary" : _60, _61 = _59[1], secondarySkillA = _61 === void 0 ? "secondary" : _61; -1->^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -9 > ^^ -10> ^^^^^^^^^^^^ -11> ^^ -12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -13> ^^ -14> ^^^^^^^^^^^^ -15> ^^ -16> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +>>> _61 = _4[_3], _62 = _61[0], nameMA = _62 === void 0 ? "noName" : _62, _63 = _61[1], _64 = _63 === void 0 ? ["skill1", "skill2"] : _63, _65 = _64[0], primarySkillA = _65 === void 0 ? "primary" : _65, _66 = _64[1], secondarySkillA = _66 === void 0 ? "secondary" : _66; +1->^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +9 > ^^ +10> ^^^^^^^^^^^^ +11> ^^ +12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +13> ^^ +14> ^^^^^^^^^^^^ +15> ^^ +16> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > nameMA = "noName" -3 > -4 > nameMA = "noName" -5 > , -6 > [ - > primarySkillA = "primary", - > secondarySkillA = "secondary" - > ] = ["skill1", "skill2"] -7 > -8 > [ - > primarySkillA = "primary", - > secondarySkillA = "secondary" - > ] = ["skill1", "skill2"] -9 > -10> primarySkillA = "primary" -11> -12> primarySkillA = "primary" -13> , - > -14> secondarySkillA = "secondary" -15> -16> secondarySkillA = "secondary" -1->Emitted(86, 21) Source(94, 7) + SourceIndex(0) -2 >Emitted(86, 33) Source(94, 24) + SourceIndex(0) -3 >Emitted(86, 35) Source(94, 7) + SourceIndex(0) -4 >Emitted(86, 75) Source(94, 24) + SourceIndex(0) -5 >Emitted(86, 77) Source(94, 26) + SourceIndex(0) -6 >Emitted(86, 89) Source(97, 25) + SourceIndex(0) -7 >Emitted(86, 91) Source(94, 26) + SourceIndex(0) -8 >Emitted(86, 140) Source(97, 25) + SourceIndex(0) -9 >Emitted(86, 142) Source(95, 5) + SourceIndex(0) -10>Emitted(86, 154) Source(95, 30) + SourceIndex(0) -11>Emitted(86, 156) Source(95, 5) + SourceIndex(0) -12>Emitted(86, 204) Source(95, 30) + SourceIndex(0) -13>Emitted(86, 206) Source(96, 5) + SourceIndex(0) -14>Emitted(86, 218) Source(96, 34) + SourceIndex(0) -15>Emitted(86, 220) Source(96, 5) + SourceIndex(0) -16>Emitted(86, 272) Source(96, 34) + SourceIndex(0) +2 > nameMA = "noName" +3 > +4 > nameMA = "noName" +5 > , +6 > [ + > primarySkillA = "primary", + > secondarySkillA = "secondary" + > ] = ["skill1", "skill2"] +7 > +8 > [ + > primarySkillA = "primary", + > secondarySkillA = "secondary" + > ] = ["skill1", "skill2"] +9 > +10> primarySkillA = "primary" +11> +12> primarySkillA = "primary" +13> , + > +14> secondarySkillA = "secondary" +15> +16> secondarySkillA = "secondary" +1->Emitted(86, 19) Source(94, 7) + SourceIndex(0) +2 >Emitted(86, 31) Source(94, 24) + SourceIndex(0) +3 >Emitted(86, 33) Source(94, 7) + SourceIndex(0) +4 >Emitted(86, 73) Source(94, 24) + SourceIndex(0) +5 >Emitted(86, 75) Source(94, 26) + SourceIndex(0) +6 >Emitted(86, 87) Source(97, 25) + SourceIndex(0) +7 >Emitted(86, 89) Source(94, 26) + SourceIndex(0) +8 >Emitted(86, 138) Source(97, 25) + SourceIndex(0) +9 >Emitted(86, 140) Source(95, 5) + SourceIndex(0) +10>Emitted(86, 152) Source(95, 30) + SourceIndex(0) +11>Emitted(86, 154) Source(95, 5) + SourceIndex(0) +12>Emitted(86, 202) Source(95, 30) + SourceIndex(0) +13>Emitted(86, 204) Source(96, 5) + SourceIndex(0) +14>Emitted(86, 216) Source(96, 34) + SourceIndex(0) +15>Emitted(86, 218) Source(96, 5) + SourceIndex(0) +16>Emitted(86, 270) Source(96, 34) + SourceIndex(0) --- >>> console.log(nameMA); 1 >^^^^ @@ -2321,65 +2321,65 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(88, 2) Source(99, 2) + SourceIndex(0) --- ->>>for (var _62 = 0, robots_4 = robots; _62 < robots_4.length; _62++) { +>>>for (var _5 = 0, robots_4 = robots; _5 < robots_4.length; _5++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^^^^^^^^^^^^ -6 > ^^ -7 > ^^^^^^^^^^^^^^^^^^^^^ -8 > ^^ -9 > ^^^^^ -10> ^^ -11> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^^^^^^^^^^^^^ +6 > ^^ +7 > ^^^^^^^^^^^^^^^^^^^^ +8 > ^^ +9 > ^^^^ +10> ^^ +11> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> > > 2 >for ([numberA3 = -1, ...robotAInfo] of 3 > robots -4 > -5 > robots -6 > -7 > robots -8 > -9 > robots -10> ) +4 > +5 > robots +6 > +7 > robots +8 > +9 > robots +10> ) 1->Emitted(89, 1) Source(101, 1) + SourceIndex(0) 2 >Emitted(89, 6) Source(101, 40) + SourceIndex(0) -3 >Emitted(89, 17) Source(101, 46) + SourceIndex(0) -4 >Emitted(89, 19) Source(101, 40) + SourceIndex(0) -5 >Emitted(89, 36) Source(101, 46) + SourceIndex(0) -6 >Emitted(89, 38) Source(101, 40) + SourceIndex(0) -7 >Emitted(89, 59) Source(101, 46) + SourceIndex(0) -8 >Emitted(89, 61) Source(101, 40) + SourceIndex(0) -9 >Emitted(89, 66) Source(101, 46) + SourceIndex(0) -10>Emitted(89, 68) Source(101, 48) + SourceIndex(0) +3 >Emitted(89, 16) Source(101, 46) + SourceIndex(0) +4 >Emitted(89, 18) Source(101, 40) + SourceIndex(0) +5 >Emitted(89, 35) Source(101, 46) + SourceIndex(0) +6 >Emitted(89, 37) Source(101, 40) + SourceIndex(0) +7 >Emitted(89, 57) Source(101, 46) + SourceIndex(0) +8 >Emitted(89, 59) Source(101, 40) + SourceIndex(0) +9 >Emitted(89, 63) Source(101, 46) + SourceIndex(0) +10>Emitted(89, 65) Source(101, 48) + SourceIndex(0) --- ->>> _63 = robots_4[_62], _64 = _63[0], numberA3 = _64 === void 0 ? -1 : _64, robotAInfo = _63.slice(1); -1->^^^^^^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^^^^^^^^^^^ +>>> _67 = robots_4[_5], _68 = _67[0], numberA3 = _68 === void 0 ? -1 : _68, robotAInfo = _67.slice(1); +1->^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > numberA3 = -1 -3 > -4 > numberA3 = -1 -5 > , -6 > ...robotAInfo -1->Emitted(90, 26) Source(101, 7) + SourceIndex(0) -2 >Emitted(90, 38) Source(101, 20) + SourceIndex(0) -3 >Emitted(90, 40) Source(101, 7) + SourceIndex(0) -4 >Emitted(90, 76) Source(101, 20) + SourceIndex(0) -5 >Emitted(90, 78) Source(101, 22) + SourceIndex(0) -6 >Emitted(90, 103) Source(101, 35) + SourceIndex(0) +2 > numberA3 = -1 +3 > +4 > numberA3 = -1 +5 > , +6 > ...robotAInfo +1->Emitted(90, 25) Source(101, 7) + SourceIndex(0) +2 >Emitted(90, 37) Source(101, 20) + SourceIndex(0) +3 >Emitted(90, 39) Source(101, 7) + SourceIndex(0) +4 >Emitted(90, 75) Source(101, 20) + SourceIndex(0) +5 >Emitted(90, 77) Source(101, 22) + SourceIndex(0) +6 >Emitted(90, 102) Source(101, 35) + SourceIndex(0) --- >>> console.log(numberA3); 1 >^^^^ @@ -2410,70 +2410,70 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(92, 2) Source(103, 2) + SourceIndex(0) --- ->>>for (var _65 = 0, _66 = getRobots(); _65 < _66.length; _65++) { +>>>for (var _6 = 0, _7 = getRobots(); _6 < _7.length; _6++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^ -6 > ^^^^^^^^^ -7 > ^^ -8 > ^^ -9 > ^^^^^^^^^^^^^^^^ -10> ^^ -11> ^^^^^ -12> ^^ -13> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^ +6 > ^^^^^^^^^ +7 > ^^ +8 > ^^ +9 > ^^^^^^^^^^^^^^ +10> ^^ +11> ^^^^ +12> ^^ +13> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> > 2 >for ([numberA3 = -1, ...robotAInfo] of 3 > getRobots() -4 > -5 > -6 > getRobots -7 > () -8 > -9 > getRobots() -10> -11> getRobots() -12> ) +4 > +5 > +6 > getRobots +7 > () +8 > +9 > getRobots() +10> +11> getRobots() +12> ) 1->Emitted(93, 1) Source(104, 1) + SourceIndex(0) 2 >Emitted(93, 6) Source(104, 40) + SourceIndex(0) -3 >Emitted(93, 17) Source(104, 51) + SourceIndex(0) -4 >Emitted(93, 19) Source(104, 40) + SourceIndex(0) -5 >Emitted(93, 25) Source(104, 40) + SourceIndex(0) -6 >Emitted(93, 34) Source(104, 49) + SourceIndex(0) -7 >Emitted(93, 36) Source(104, 51) + SourceIndex(0) -8 >Emitted(93, 38) Source(104, 40) + SourceIndex(0) -9 >Emitted(93, 54) Source(104, 51) + SourceIndex(0) -10>Emitted(93, 56) Source(104, 40) + SourceIndex(0) -11>Emitted(93, 61) Source(104, 51) + SourceIndex(0) -12>Emitted(93, 63) Source(104, 53) + SourceIndex(0) +3 >Emitted(93, 16) Source(104, 51) + SourceIndex(0) +4 >Emitted(93, 18) Source(104, 40) + SourceIndex(0) +5 >Emitted(93, 23) Source(104, 40) + SourceIndex(0) +6 >Emitted(93, 32) Source(104, 49) + SourceIndex(0) +7 >Emitted(93, 34) Source(104, 51) + SourceIndex(0) +8 >Emitted(93, 36) Source(104, 40) + SourceIndex(0) +9 >Emitted(93, 50) Source(104, 51) + SourceIndex(0) +10>Emitted(93, 52) Source(104, 40) + SourceIndex(0) +11>Emitted(93, 56) Source(104, 51) + SourceIndex(0) +12>Emitted(93, 58) Source(104, 53) + SourceIndex(0) --- ->>> _67 = _66[_65], _68 = _67[0], numberA3 = _68 === void 0 ? -1 : _68, robotAInfo = _67.slice(1); -1->^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^^^^^^^^^^^ +>>> _69 = _7[_6], _70 = _69[0], numberA3 = _70 === void 0 ? -1 : _70, robotAInfo = _69.slice(1); +1->^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > numberA3 = -1 -3 > -4 > numberA3 = -1 -5 > , -6 > ...robotAInfo -1->Emitted(94, 21) Source(104, 7) + SourceIndex(0) -2 >Emitted(94, 33) Source(104, 20) + SourceIndex(0) -3 >Emitted(94, 35) Source(104, 7) + SourceIndex(0) -4 >Emitted(94, 71) Source(104, 20) + SourceIndex(0) -5 >Emitted(94, 73) Source(104, 22) + SourceIndex(0) -6 >Emitted(94, 98) Source(104, 35) + SourceIndex(0) +2 > numberA3 = -1 +3 > +4 > numberA3 = -1 +5 > , +6 > ...robotAInfo +1->Emitted(94, 19) Source(104, 7) + SourceIndex(0) +2 >Emitted(94, 31) Source(104, 20) + SourceIndex(0) +3 >Emitted(94, 33) Source(104, 7) + SourceIndex(0) +4 >Emitted(94, 69) Source(104, 20) + SourceIndex(0) +5 >Emitted(94, 71) Source(104, 22) + SourceIndex(0) +6 >Emitted(94, 96) Source(104, 35) + SourceIndex(0) --- >>> console.log(numberA3); 1 >^^^^ @@ -2504,76 +2504,76 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(96, 2) Source(106, 2) + SourceIndex(0) --- ->>>for (var _69 = 0, _70 = [robotA, robotB]; _69 < _70.length; _69++) { +>>>for (var _8 = 0, _9 = [robotA, robotB]; _8 < _9.length; _8++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^^ -6 > ^^^^^^ -7 > ^^ -8 > ^^^^^^ -9 > ^ -10> ^^ -11> ^^^^^^^^^^^^^^^^ -12> ^^ -13> ^^^^^ -14> ^^ -15> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^^ +6 > ^^^^^^ +7 > ^^ +8 > ^^^^^^ +9 > ^ +10> ^^ +11> ^^^^^^^^^^^^^^ +12> ^^ +13> ^^^^ +14> ^^ +15> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> > 2 >for ([numberA3 = -1, ...robotAInfo] of 3 > [robotA, robotB] -4 > -5 > [ -6 > robotA -7 > , -8 > robotB -9 > ] -10> -11> [robotA, robotB] -12> -13> [robotA, robotB] -14> ) +4 > +5 > [ +6 > robotA +7 > , +8 > robotB +9 > ] +10> +11> [robotA, robotB] +12> +13> [robotA, robotB] +14> ) 1->Emitted(97, 1) Source(107, 1) + SourceIndex(0) 2 >Emitted(97, 6) Source(107, 40) + SourceIndex(0) -3 >Emitted(97, 17) Source(107, 56) + SourceIndex(0) -4 >Emitted(97, 19) Source(107, 40) + SourceIndex(0) -5 >Emitted(97, 26) Source(107, 41) + SourceIndex(0) -6 >Emitted(97, 32) Source(107, 47) + SourceIndex(0) -7 >Emitted(97, 34) Source(107, 49) + SourceIndex(0) -8 >Emitted(97, 40) Source(107, 55) + SourceIndex(0) -9 >Emitted(97, 41) Source(107, 56) + SourceIndex(0) -10>Emitted(97, 43) Source(107, 40) + SourceIndex(0) -11>Emitted(97, 59) Source(107, 56) + SourceIndex(0) -12>Emitted(97, 61) Source(107, 40) + SourceIndex(0) -13>Emitted(97, 66) Source(107, 56) + SourceIndex(0) -14>Emitted(97, 68) Source(107, 58) + SourceIndex(0) +3 >Emitted(97, 16) Source(107, 56) + SourceIndex(0) +4 >Emitted(97, 18) Source(107, 40) + SourceIndex(0) +5 >Emitted(97, 24) Source(107, 41) + SourceIndex(0) +6 >Emitted(97, 30) Source(107, 47) + SourceIndex(0) +7 >Emitted(97, 32) Source(107, 49) + SourceIndex(0) +8 >Emitted(97, 38) Source(107, 55) + SourceIndex(0) +9 >Emitted(97, 39) Source(107, 56) + SourceIndex(0) +10>Emitted(97, 41) Source(107, 40) + SourceIndex(0) +11>Emitted(97, 55) Source(107, 56) + SourceIndex(0) +12>Emitted(97, 57) Source(107, 40) + SourceIndex(0) +13>Emitted(97, 61) Source(107, 56) + SourceIndex(0) +14>Emitted(97, 63) Source(107, 58) + SourceIndex(0) --- ->>> _71 = _70[_69], _72 = _71[0], numberA3 = _72 === void 0 ? -1 : _72, robotAInfo = _71.slice(1); -1->^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^^^^^^^^^^^ +>>> _71 = _9[_8], _72 = _71[0], numberA3 = _72 === void 0 ? -1 : _72, robotAInfo = _71.slice(1); +1->^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > numberA3 = -1 -3 > -4 > numberA3 = -1 -5 > , -6 > ...robotAInfo -1->Emitted(98, 21) Source(107, 7) + SourceIndex(0) -2 >Emitted(98, 33) Source(107, 20) + SourceIndex(0) -3 >Emitted(98, 35) Source(107, 7) + SourceIndex(0) -4 >Emitted(98, 71) Source(107, 20) + SourceIndex(0) -5 >Emitted(98, 73) Source(107, 22) + SourceIndex(0) -6 >Emitted(98, 98) Source(107, 35) + SourceIndex(0) +2 > numberA3 = -1 +3 > +4 > numberA3 = -1 +5 > , +6 > ...robotAInfo +1->Emitted(98, 19) Source(107, 7) + SourceIndex(0) +2 >Emitted(98, 31) Source(107, 20) + SourceIndex(0) +3 >Emitted(98, 33) Source(107, 7) + SourceIndex(0) +4 >Emitted(98, 69) Source(107, 20) + SourceIndex(0) +5 >Emitted(98, 71) Source(107, 22) + SourceIndex(0) +6 >Emitted(98, 96) Source(107, 35) + SourceIndex(0) --- >>> console.log(numberA3); 1 >^^^^ @@ -2604,10 +2604,10 @@ sourceFile:sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(100, 2) Source(109, 2) + SourceIndex(0) --- ->>>var _a, _b, _e, _f, _j, _k, _m, _o, _p, _q, _r, _u, _v, _w, _x, _y, _1, _2, _3, _4, _5, _7, _10, _13, _15, _18, _21, _23, _24, _25, _26, _29, _30, _31, _32, _35, _36, _37, _38, _40, _41, _42, _43, _44, _45, _48, _49, _50, _51, _52, _53, _56, _57, _58, _59, _60, _61, _63, _64, _67, _68, _71, _72; +>>>var _10, _11, _12, _13, _14, _15, _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33, _34, _35, _36, _37, _38, _39, _40, _41, _42, _43, _44, _45, _46, _47, _48, _49, _50, _51, _52, _53, _54, _55, _56, _57, _58, _59, _60, _61, _62, _63, _64, _65, _66, _67, _68, _69, _70, _71, _72; >>>//# sourceMappingURL=sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2.js.map \ No newline at end of file diff --git a/tests/baselines/reference/sourceMapValidationDestructuringForOfObjectBindingPattern2.js b/tests/baselines/reference/sourceMapValidationDestructuringForOfObjectBindingPattern2.js index aebfd11b9db..ef6a4786b70 100644 --- a/tests/baselines/reference/sourceMapValidationDestructuringForOfObjectBindingPattern2.js +++ b/tests/baselines/reference/sourceMapValidationDestructuringForOfObjectBindingPattern2.js @@ -134,92 +134,92 @@ for (var _c = 0, _d = [{ name: "mower", skill: "mowing" }, { name: "trimmer", sk console.log(nameA); } for (var _e = 0, multiRobots_1 = multiRobots; _e < multiRobots_1.length; _e++) { - _f = multiRobots_1[_e].skills, primaryA = _f.primary, secondaryA = _f.secondary; + _15 = multiRobots_1[_e].skills, primaryA = _15.primary, secondaryA = _15.secondary; console.log(primaryA); } -for (var _g = 0, _h = getMultiRobots(); _g < _h.length; _g++) { - _j = _h[_g].skills, primaryA = _j.primary, secondaryA = _j.secondary; +for (var _f = 0, _g = getMultiRobots(); _f < _g.length; _f++) { + _16 = _g[_f].skills, primaryA = _16.primary, secondaryA = _16.secondary; console.log(primaryA); } -for (var _k = 0, _l = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, - { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _k < _l.length; _k++) { - _m = _l[_k].skills, primaryA = _m.primary, secondaryA = _m.secondary; +for (var _h = 0, _j = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, + { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _h < _j.length; _h++) { + _17 = _j[_h].skills, primaryA = _17.primary, secondaryA = _17.secondary; console.log(primaryA); } -for (var _o = 0, robots_2 = robots; _o < robots_2.length; _o++) { - name = robots_2[_o].name; +for (var _k = 0, robots_2 = robots; _k < robots_2.length; _k++) { + name = robots_2[_k].name; console.log(nameA); } -for (var _p = 0, _q = getRobots(); _p < _q.length; _p++) { - name = _q[_p].name; +for (var _l = 0, _m = getRobots(); _l < _m.length; _l++) { + name = _m[_l].name; console.log(nameA); } -for (var _r = 0, _s = [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }]; _r < _s.length; _r++) { - name = _s[_r].name; +for (var _o = 0, _p = [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }]; _o < _p.length; _o++) { + name = _p[_o].name; console.log(nameA); } -for (var _t = 0, multiRobots_2 = multiRobots; _t < multiRobots_2.length; _t++) { - _u = multiRobots_2[_t].skills, primary = _u.primary, secondary = _u.secondary; +for (var _q = 0, multiRobots_2 = multiRobots; _q < multiRobots_2.length; _q++) { + _18 = multiRobots_2[_q].skills, primary = _18.primary, secondary = _18.secondary; console.log(primaryA); } -for (var _v = 0, _w = getMultiRobots(); _v < _w.length; _v++) { - _x = _w[_v].skills, primary = _x.primary, secondary = _x.secondary; +for (var _r = 0, _s = getMultiRobots(); _r < _s.length; _r++) { + _19 = _s[_r].skills, primary = _19.primary, secondary = _19.secondary; console.log(primaryA); } -for (var _y = 0, _z = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, - { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _y < _z.length; _y++) { - _0 = _z[_y].skills, primary = _0.primary, secondary = _0.secondary; +for (var _t = 0, _u = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, + { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _t < _u.length; _t++) { + _20 = _u[_t].skills, primary = _20.primary, secondary = _20.secondary; console.log(primaryA); } -for (var _1 = 0, robots_3 = robots; _1 < robots_3.length; _1++) { - _2 = robots_3[_1], nameA = _2.name, skillA = _2.skill; +for (var _v = 0, robots_3 = robots; _v < robots_3.length; _v++) { + _21 = robots_3[_v], nameA = _21.name, skillA = _21.skill; console.log(nameA); } -for (var _3 = 0, _4 = getRobots(); _3 < _4.length; _3++) { - _5 = _4[_3], nameA = _5.name, skillA = _5.skill; +for (var _w = 0, _x = getRobots(); _w < _x.length; _w++) { + _22 = _x[_w], nameA = _22.name, skillA = _22.skill; console.log(nameA); } -for (var _6 = 0, _7 = [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }]; _6 < _7.length; _6++) { - _8 = _7[_6], nameA = _8.name, skillA = _8.skill; +for (var _y = 0, _z = [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }]; _y < _z.length; _y++) { + _23 = _z[_y], nameA = _23.name, skillA = _23.skill; console.log(nameA); } -for (var _9 = 0, multiRobots_3 = multiRobots; _9 < multiRobots_3.length; _9++) { - _10 = multiRobots_3[_9], nameA = _10.name, _11 = _10.skills, primaryA = _11.primary, secondaryA = _11.secondary; +for (var _0 = 0, multiRobots_3 = multiRobots; _0 < multiRobots_3.length; _0++) { + _24 = multiRobots_3[_0], nameA = _24.name, _25 = _24.skills, primaryA = _25.primary, secondaryA = _25.secondary; console.log(nameA); } -for (var _12 = 0, _13 = getMultiRobots(); _12 < _13.length; _12++) { - _14 = _13[_12], nameA = _14.name, _15 = _14.skills, primaryA = _15.primary, secondaryA = _15.secondary; +for (var _1 = 0, _2 = getMultiRobots(); _1 < _2.length; _1++) { + _26 = _2[_1], nameA = _26.name, _27 = _26.skills, primaryA = _27.primary, secondaryA = _27.secondary; console.log(nameA); } -for (var _16 = 0, _17 = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, - { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _16 < _17.length; _16++) { - _18 = _17[_16], nameA = _18.name, _19 = _18.skills, primaryA = _19.primary, secondaryA = _19.secondary; +for (var _3 = 0, _4 = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, + { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _3 < _4.length; _3++) { + _28 = _4[_3], nameA = _28.name, _29 = _28.skills, primaryA = _29.primary, secondaryA = _29.secondary; console.log(nameA); } -for (var _20 = 0, robots_4 = robots; _20 < robots_4.length; _20++) { - _21 = robots_4[_20], name = _21.name, skill = _21.skill; +for (var _5 = 0, robots_4 = robots; _5 < robots_4.length; _5++) { + _30 = robots_4[_5], name = _30.name, skill = _30.skill; console.log(nameA); } -for (var _22 = 0, _23 = getRobots(); _22 < _23.length; _22++) { - _24 = _23[_22], name = _24.name, skill = _24.skill; +for (var _6 = 0, _7 = getRobots(); _6 < _7.length; _6++) { + _31 = _7[_6], name = _31.name, skill = _31.skill; console.log(nameA); } -for (var _25 = 0, _26 = [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }]; _25 < _26.length; _25++) { - _27 = _26[_25], name = _27.name, skill = _27.skill; +for (var _8 = 0, _9 = [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }]; _8 < _9.length; _8++) { + _32 = _9[_8], name = _32.name, skill = _32.skill; console.log(nameA); } -for (var _28 = 0, multiRobots_4 = multiRobots; _28 < multiRobots_4.length; _28++) { - _29 = multiRobots_4[_28], name = _29.name, _30 = _29.skills, primary = _30.primary, secondary = _30.secondary; +for (var _10 = 0, multiRobots_4 = multiRobots; _10 < multiRobots_4.length; _10++) { + _33 = multiRobots_4[_10], name = _33.name, _34 = _33.skills, primary = _34.primary, secondary = _34.secondary; console.log(nameA); } -for (var _31 = 0, _32 = getMultiRobots(); _31 < _32.length; _31++) { - _33 = _32[_31], name = _33.name, _34 = _33.skills, primary = _34.primary, secondary = _34.secondary; +for (var _11 = 0, _12 = getMultiRobots(); _11 < _12.length; _11++) { + _35 = _12[_11], name = _35.name, _36 = _35.skills, primary = _36.primary, secondary = _36.secondary; console.log(nameA); } -for (var _35 = 0, _36 = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, - { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _35 < _36.length; _35++) { - _37 = _36[_35], name = _37.name, _38 = _37.skills, primary = _38.primary, secondary = _38.secondary; +for (var _13 = 0, _14 = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, + { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _13 < _14.length; _13++) { + _37 = _14[_13], name = _37.name, _38 = _37.skills, primary = _38.primary, secondary = _38.secondary; console.log(nameA); } -var _f, _j, _m, _u, _x, _0, _2, _5, _8, _10, _11, _14, _15, _18, _19, _21, _24, _27, _29, _30, _33, _34, _37, _38; +var _15, _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33, _34, _35, _36, _37, _38; //# sourceMappingURL=sourceMapValidationDestructuringForOfObjectBindingPattern2.js.map \ No newline at end of file diff --git a/tests/baselines/reference/sourceMapValidationDestructuringForOfObjectBindingPattern2.js.map b/tests/baselines/reference/sourceMapValidationDestructuringForOfObjectBindingPattern2.js.map index ea18ccd18a2..c320221331e 100644 --- a/tests/baselines/reference/sourceMapValidationDestructuringForOfObjectBindingPattern2.js.map +++ b/tests/baselines/reference/sourceMapValidationDestructuringForOfObjectBindingPattern2.js.map @@ -1,2 +1,2 @@ //// [sourceMapValidationDestructuringForOfObjectBindingPattern2.js.map] -{"version":3,"file":"sourceMapValidationDestructuringForOfObjectBindingPattern2.js","sourceRoot":"","sources":["sourceMapValidationDestructuringForOfObjectBindingPattern2.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"sourceMapValidationDestructuringForOfObjectBindingPattern2.js","sourceRoot":"","sources":["sourceMapValidationDestructuringForOfObjectBindingPattern2.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/tests/baselines/reference/sourceMapValidationDestructuringForOfObjectBindingPattern2.sourcemap.txt b/tests/baselines/reference/sourceMapValidationDestructuringForOfObjectBindingPattern2.sourcemap.txt index 1d903a10c35..d8e36ccad16 100644 --- a/tests/baselines/reference/sourceMapValidationDestructuringForOfObjectBindingPattern2.sourcemap.txt +++ b/tests/baselines/reference/sourceMapValidationDestructuringForOfObjectBindingPattern2.sourcemap.txt @@ -681,7 +681,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts 8 > ^^ 9 > ^^^^ 10> ^^ -11> ^^^^^^-> +11> ^^^^^^^^^-> 1-> > 2 >for ({ skills: { primary: primaryA, secondary: secondaryA } } of @@ -704,25 +704,25 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts 9 >Emitted(24, 78) Source(41, 77) + SourceIndex(0) 10>Emitted(24, 80) Source(41, 79) + SourceIndex(0) --- ->>> _f = multiRobots_1[_e].skills, primaryA = _f.primary, secondaryA = _f.secondary; +>>> _15 = multiRobots_1[_e].skills, primaryA = _15.primary, secondaryA = _15.secondary; 1->^^^^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> 2 > skills: { primary: primaryA, secondary: secondaryA } -3 > -4 > primary: primaryA -5 > , -6 > secondary: secondaryA +3 > +4 > primary: primaryA +5 > , +6 > secondary: secondaryA 1->Emitted(25, 5) Source(41, 8) + SourceIndex(0) -2 >Emitted(25, 34) Source(41, 60) + SourceIndex(0) -3 >Emitted(25, 36) Source(41, 18) + SourceIndex(0) -4 >Emitted(25, 57) Source(41, 35) + SourceIndex(0) -5 >Emitted(25, 59) Source(41, 37) + SourceIndex(0) -6 >Emitted(25, 84) Source(41, 58) + SourceIndex(0) +2 >Emitted(25, 35) Source(41, 60) + SourceIndex(0) +3 >Emitted(25, 37) Source(41, 18) + SourceIndex(0) +4 >Emitted(25, 59) Source(41, 35) + SourceIndex(0) +5 >Emitted(25, 61) Source(41, 37) + SourceIndex(0) +6 >Emitted(25, 87) Source(41, 58) + SourceIndex(0) --- >>> console.log(primaryA); 1 >^^^^ @@ -758,7 +758,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts >} 1 >Emitted(27, 2) Source(43, 2) + SourceIndex(0) --- ->>>for (var _g = 0, _h = getMultiRobots(); _g < _h.length; _g++) { +>>>for (var _f = 0, _g = getMultiRobots(); _f < _g.length; _f++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -771,7 +771,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts 10> ^^ 11> ^^^^ 12> ^^ -13> ^^^^^^^^^^^^-> +13> ^^^^^^^^^^^^^^^-> 1-> > 2 >for ({ skills: { primary: primaryA, secondary: secondaryA } } of @@ -798,25 +798,25 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts 11>Emitted(28, 61) Source(44, 82) + SourceIndex(0) 12>Emitted(28, 63) Source(44, 84) + SourceIndex(0) --- ->>> _j = _h[_g].skills, primaryA = _j.primary, secondaryA = _j.secondary; +>>> _16 = _g[_f].skills, primaryA = _16.primary, secondaryA = _16.secondary; 1->^^^^ -2 > ^^^^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> 2 > skills: { primary: primaryA, secondary: secondaryA } -3 > -4 > primary: primaryA -5 > , -6 > secondary: secondaryA +3 > +4 > primary: primaryA +5 > , +6 > secondary: secondaryA 1->Emitted(29, 5) Source(44, 8) + SourceIndex(0) -2 >Emitted(29, 23) Source(44, 60) + SourceIndex(0) -3 >Emitted(29, 25) Source(44, 18) + SourceIndex(0) -4 >Emitted(29, 46) Source(44, 35) + SourceIndex(0) -5 >Emitted(29, 48) Source(44, 37) + SourceIndex(0) -6 >Emitted(29, 73) Source(44, 58) + SourceIndex(0) +2 >Emitted(29, 24) Source(44, 60) + SourceIndex(0) +3 >Emitted(29, 26) Source(44, 18) + SourceIndex(0) +4 >Emitted(29, 48) Source(44, 35) + SourceIndex(0) +5 >Emitted(29, 50) Source(44, 37) + SourceIndex(0) +6 >Emitted(29, 76) Source(44, 58) + SourceIndex(0) --- >>> console.log(primaryA); 1 >^^^^ @@ -852,7 +852,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts >} 1 >Emitted(31, 2) Source(46, 2) + SourceIndex(0) --- ->>>for (var _k = 0, _l = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, +>>>for (var _h = 0, _j = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -923,7 +923,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts 21>Emitted(32, 89) Source(47, 132) + SourceIndex(0) 22>Emitted(32, 91) Source(47, 134) + SourceIndex(0) --- ->>> { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _k < _l.length; _k++) { +>>> { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _h < _j.length; _h++) { 1->^^^^ 2 > ^^ 3 > ^^^^ @@ -1000,25 +1000,25 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts 23>Emitted(33, 101) Source(48, 79) + SourceIndex(0) 24>Emitted(33, 103) Source(48, 81) + SourceIndex(0) --- ->>> _m = _l[_k].skills, primaryA = _m.primary, secondaryA = _m.secondary; +>>> _17 = _j[_h].skills, primaryA = _17.primary, secondaryA = _17.secondary; 1 >^^^^ -2 > ^^^^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^^^^^^^^^^^^ 1 > 2 > skills: { primary: primaryA, secondary: secondaryA } -3 > -4 > primary: primaryA -5 > , -6 > secondary: secondaryA +3 > +4 > primary: primaryA +5 > , +6 > secondary: secondaryA 1 >Emitted(34, 5) Source(47, 8) + SourceIndex(0) -2 >Emitted(34, 23) Source(47, 60) + SourceIndex(0) -3 >Emitted(34, 25) Source(47, 18) + SourceIndex(0) -4 >Emitted(34, 46) Source(47, 35) + SourceIndex(0) -5 >Emitted(34, 48) Source(47, 37) + SourceIndex(0) -6 >Emitted(34, 73) Source(47, 58) + SourceIndex(0) +2 >Emitted(34, 24) Source(47, 60) + SourceIndex(0) +3 >Emitted(34, 26) Source(47, 18) + SourceIndex(0) +4 >Emitted(34, 48) Source(47, 35) + SourceIndex(0) +5 >Emitted(34, 50) Source(47, 37) + SourceIndex(0) +6 >Emitted(34, 76) Source(47, 58) + SourceIndex(0) --- >>> console.log(primaryA); 1 >^^^^ @@ -1055,7 +1055,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts >} 1 >Emitted(36, 2) Source(50, 2) + SourceIndex(0) --- ->>>for (var _o = 0, robots_2 = robots; _o < robots_2.length; _o++) { +>>>for (var _k = 0, robots_2 = robots; _k < robots_2.length; _k++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -1088,7 +1088,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts 9 >Emitted(37, 63) Source(51, 23) + SourceIndex(0) 10>Emitted(37, 65) Source(51, 25) + SourceIndex(0) --- ->>> name = robots_2[_o].name; +>>> name = robots_2[_k].name; 1 >^^^^ 2 > ^^^^^^^^^^^^^^^^^^^^^^^^ 1 > @@ -1130,7 +1130,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts >} 1 >Emitted(40, 2) Source(53, 2) + SourceIndex(0) --- ->>>for (var _p = 0, _q = getRobots(); _p < _q.length; _p++) { +>>>for (var _l = 0, _m = getRobots(); _l < _m.length; _l++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -1169,7 +1169,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts 11>Emitted(41, 56) Source(54, 28) + SourceIndex(0) 12>Emitted(41, 58) Source(54, 30) + SourceIndex(0) --- ->>> name = _q[_p].name; +>>> name = _m[_l].name; 1 >^^^^ 2 > ^^^^^^^^^^^^^^^^^^ 3 > ^^-> @@ -1212,7 +1212,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts >} 1 >Emitted(44, 2) Source(56, 2) + SourceIndex(0) --- ->>>for (var _r = 0, _s = [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }]; _r < _s.length; _r++) { +>>>for (var _o = 0, _p = [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }]; _o < _p.length; _o++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -1305,7 +1305,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts 29>Emitted(45, 121) Source(57, 93) + SourceIndex(0) 30>Emitted(45, 123) Source(57, 95) + SourceIndex(0) --- ->>> name = _s[_r].name; +>>> name = _p[_o].name; 1 >^^^^ 2 > ^^^^^^^^^^^^^^^^^^ 3 > ^^-> @@ -1348,7 +1348,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts >} 1 >Emitted(48, 2) Source(59, 2) + SourceIndex(0) --- ->>>for (var _t = 0, multiRobots_2 = multiRobots; _t < multiRobots_2.length; _t++) { +>>>for (var _q = 0, multiRobots_2 = multiRobots; _q < multiRobots_2.length; _q++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -1359,7 +1359,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts 8 > ^^ 9 > ^^^^ 10> ^^ -11> ^^^^-> +11> ^^^^^^^-> 1-> > 2 >for ({ skills: { primary, secondary } } of @@ -1382,25 +1382,25 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts 9 >Emitted(49, 78) Source(60, 55) + SourceIndex(0) 10>Emitted(49, 80) Source(60, 57) + SourceIndex(0) --- ->>> _u = multiRobots_2[_t].skills, primary = _u.primary, secondary = _u.secondary; +>>> _18 = multiRobots_2[_q].skills, primary = _18.primary, secondary = _18.secondary; 1->^^^^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> 2 > skills: { primary, secondary } -3 > -4 > primary -5 > , -6 > secondary +3 > +4 > primary +5 > , +6 > secondary 1->Emitted(50, 5) Source(60, 8) + SourceIndex(0) -2 >Emitted(50, 34) Source(60, 38) + SourceIndex(0) -3 >Emitted(50, 36) Source(60, 18) + SourceIndex(0) -4 >Emitted(50, 56) Source(60, 25) + SourceIndex(0) -5 >Emitted(50, 58) Source(60, 27) + SourceIndex(0) -6 >Emitted(50, 82) Source(60, 36) + SourceIndex(0) +2 >Emitted(50, 35) Source(60, 38) + SourceIndex(0) +3 >Emitted(50, 37) Source(60, 18) + SourceIndex(0) +4 >Emitted(50, 58) Source(60, 25) + SourceIndex(0) +5 >Emitted(50, 60) Source(60, 27) + SourceIndex(0) +6 >Emitted(50, 85) Source(60, 36) + SourceIndex(0) --- >>> console.log(primaryA); 1 >^^^^ @@ -1436,7 +1436,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts >} 1 >Emitted(52, 2) Source(62, 2) + SourceIndex(0) --- ->>>for (var _v = 0, _w = getMultiRobots(); _v < _w.length; _v++) { +>>>for (var _r = 0, _s = getMultiRobots(); _r < _s.length; _r++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -1449,7 +1449,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts 10> ^^ 11> ^^^^ 12> ^^ -13> ^^^^^^^^^^-> +13> ^^^^^^^^^^^^^-> 1-> > 2 >for ({ skills: { primary, secondary } } of @@ -1476,25 +1476,25 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts 11>Emitted(53, 61) Source(63, 60) + SourceIndex(0) 12>Emitted(53, 63) Source(63, 62) + SourceIndex(0) --- ->>> _x = _w[_v].skills, primary = _x.primary, secondary = _x.secondary; +>>> _19 = _s[_r].skills, primary = _19.primary, secondary = _19.secondary; 1->^^^^ -2 > ^^^^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> 2 > skills: { primary, secondary } -3 > -4 > primary -5 > , -6 > secondary +3 > +4 > primary +5 > , +6 > secondary 1->Emitted(54, 5) Source(63, 8) + SourceIndex(0) -2 >Emitted(54, 23) Source(63, 38) + SourceIndex(0) -3 >Emitted(54, 25) Source(63, 18) + SourceIndex(0) -4 >Emitted(54, 45) Source(63, 25) + SourceIndex(0) -5 >Emitted(54, 47) Source(63, 27) + SourceIndex(0) -6 >Emitted(54, 71) Source(63, 36) + SourceIndex(0) +2 >Emitted(54, 24) Source(63, 38) + SourceIndex(0) +3 >Emitted(54, 26) Source(63, 18) + SourceIndex(0) +4 >Emitted(54, 47) Source(63, 25) + SourceIndex(0) +5 >Emitted(54, 49) Source(63, 27) + SourceIndex(0) +6 >Emitted(54, 74) Source(63, 36) + SourceIndex(0) --- >>> console.log(primaryA); 1 >^^^^ @@ -1530,7 +1530,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts >} 1 >Emitted(56, 2) Source(65, 2) + SourceIndex(0) --- ->>>for (var _y = 0, _z = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, +>>>for (var _t = 0, _u = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -1601,7 +1601,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts 21>Emitted(57, 89) Source(66, 110) + SourceIndex(0) 22>Emitted(57, 91) Source(66, 112) + SourceIndex(0) --- ->>> { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _y < _z.length; _y++) { +>>> { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _t < _u.length; _t++) { 1->^^^^ 2 > ^^ 3 > ^^^^ @@ -1678,25 +1678,25 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts 23>Emitted(58, 101) Source(67, 79) + SourceIndex(0) 24>Emitted(58, 103) Source(67, 81) + SourceIndex(0) --- ->>> _0 = _z[_y].skills, primary = _0.primary, secondary = _0.secondary; +>>> _20 = _u[_t].skills, primary = _20.primary, secondary = _20.secondary; 1 >^^^^ -2 > ^^^^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^^^^^^^^^^^ 1 > 2 > skills: { primary, secondary } -3 > -4 > primary -5 > , -6 > secondary +3 > +4 > primary +5 > , +6 > secondary 1 >Emitted(59, 5) Source(66, 8) + SourceIndex(0) -2 >Emitted(59, 23) Source(66, 38) + SourceIndex(0) -3 >Emitted(59, 25) Source(66, 18) + SourceIndex(0) -4 >Emitted(59, 45) Source(66, 25) + SourceIndex(0) -5 >Emitted(59, 47) Source(66, 27) + SourceIndex(0) -6 >Emitted(59, 71) Source(66, 36) + SourceIndex(0) +2 >Emitted(59, 24) Source(66, 38) + SourceIndex(0) +3 >Emitted(59, 26) Source(66, 18) + SourceIndex(0) +4 >Emitted(59, 47) Source(66, 25) + SourceIndex(0) +5 >Emitted(59, 49) Source(66, 27) + SourceIndex(0) +6 >Emitted(59, 74) Source(66, 36) + SourceIndex(0) --- >>> console.log(primaryA); 1 >^^^^ @@ -1733,7 +1733,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts >} 1 >Emitted(61, 2) Source(69, 2) + SourceIndex(0) --- ->>>for (var _1 = 0, robots_3 = robots; _1 < robots_3.length; _1++) { +>>>for (var _v = 0, robots_3 = robots; _v < robots_3.length; _v++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -1768,19 +1768,19 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts 9 >Emitted(62, 63) Source(72, 45) + SourceIndex(0) 10>Emitted(62, 65) Source(72, 47) + SourceIndex(0) --- ->>> _2 = robots_3[_1], nameA = _2.name, skillA = _2.skill; -1 >^^^^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^ +>>> _21 = robots_3[_v], nameA = _21.name, skillA = _21.skill; +1 >^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^ 1 > -2 > name: nameA -3 > , -4 > skill: skillA -1 >Emitted(63, 24) Source(72, 7) + SourceIndex(0) -2 >Emitted(63, 39) Source(72, 18) + SourceIndex(0) -3 >Emitted(63, 41) Source(72, 20) + SourceIndex(0) -4 >Emitted(63, 58) Source(72, 33) + SourceIndex(0) +2 > name: nameA +3 > , +4 > skill: skillA +1 >Emitted(63, 25) Source(72, 7) + SourceIndex(0) +2 >Emitted(63, 41) Source(72, 18) + SourceIndex(0) +3 >Emitted(63, 43) Source(72, 20) + SourceIndex(0) +4 >Emitted(63, 61) Source(72, 33) + SourceIndex(0) --- >>> console.log(nameA); 1 >^^^^ @@ -1816,7 +1816,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts >} 1 >Emitted(65, 2) Source(74, 2) + SourceIndex(0) --- ->>>for (var _3 = 0, _4 = getRobots(); _3 < _4.length; _3++) { +>>>for (var _w = 0, _x = getRobots(); _w < _x.length; _w++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -1855,19 +1855,19 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts 11>Emitted(66, 56) Source(75, 50) + SourceIndex(0) 12>Emitted(66, 58) Source(75, 52) + SourceIndex(0) --- ->>> _5 = _4[_3], nameA = _5.name, skillA = _5.skill; -1 >^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^ +>>> _22 = _x[_w], nameA = _22.name, skillA = _22.skill; +1 >^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^ 1 > -2 > name: nameA -3 > , -4 > skill: skillA -1 >Emitted(67, 18) Source(75, 7) + SourceIndex(0) -2 >Emitted(67, 33) Source(75, 18) + SourceIndex(0) -3 >Emitted(67, 35) Source(75, 20) + SourceIndex(0) -4 >Emitted(67, 52) Source(75, 33) + SourceIndex(0) +2 > name: nameA +3 > , +4 > skill: skillA +1 >Emitted(67, 19) Source(75, 7) + SourceIndex(0) +2 >Emitted(67, 35) Source(75, 18) + SourceIndex(0) +3 >Emitted(67, 37) Source(75, 20) + SourceIndex(0) +4 >Emitted(67, 55) Source(75, 33) + SourceIndex(0) --- >>> console.log(nameA); 1 >^^^^ @@ -1903,7 +1903,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts >} 1 >Emitted(69, 2) Source(77, 2) + SourceIndex(0) --- ->>>for (var _6 = 0, _7 = [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }]; _6 < _7.length; _6++) { +>>>for (var _y = 0, _z = [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }]; _y < _z.length; _y++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -1996,19 +1996,19 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts 29>Emitted(70, 121) Source(78, 115) + SourceIndex(0) 30>Emitted(70, 123) Source(78, 117) + SourceIndex(0) --- ->>> _8 = _7[_6], nameA = _8.name, skillA = _8.skill; -1 >^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^ +>>> _23 = _z[_y], nameA = _23.name, skillA = _23.skill; +1 >^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^ 1 > -2 > name: nameA -3 > , -4 > skill: skillA -1 >Emitted(71, 18) Source(78, 7) + SourceIndex(0) -2 >Emitted(71, 33) Source(78, 18) + SourceIndex(0) -3 >Emitted(71, 35) Source(78, 20) + SourceIndex(0) -4 >Emitted(71, 52) Source(78, 33) + SourceIndex(0) +2 > name: nameA +3 > , +4 > skill: skillA +1 >Emitted(71, 19) Source(78, 7) + SourceIndex(0) +2 >Emitted(71, 35) Source(78, 18) + SourceIndex(0) +3 >Emitted(71, 37) Source(78, 20) + SourceIndex(0) +4 >Emitted(71, 55) Source(78, 33) + SourceIndex(0) --- >>> console.log(nameA); 1 >^^^^ @@ -2044,7 +2044,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts >} 1 >Emitted(73, 2) Source(80, 2) + SourceIndex(0) --- ->>>for (var _9 = 0, multiRobots_3 = multiRobots; _9 < multiRobots_3.length; _9++) { +>>>for (var _0 = 0, multiRobots_3 = multiRobots; _0 < multiRobots_3.length; _0++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -2078,7 +2078,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts 9 >Emitted(74, 78) Source(81, 89) + SourceIndex(0) 10>Emitted(74, 80) Source(81, 91) + SourceIndex(0) --- ->>> _10 = multiRobots_3[_9], nameA = _10.name, _11 = _10.skills, primaryA = _11.primary, secondaryA = _11.secondary; +>>> _24 = multiRobots_3[_0], nameA = _24.name, _25 = _24.skills, primaryA = _25.primary, secondaryA = _25.secondary; 1->^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^^ 3 > ^^ @@ -2133,76 +2133,76 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(77, 2) Source(83, 2) + SourceIndex(0) --- ->>>for (var _12 = 0, _13 = getMultiRobots(); _12 < _13.length; _12++) { +>>>for (var _1 = 0, _2 = getMultiRobots(); _1 < _2.length; _1++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^ -6 > ^^^^^^^^^^^^^^ -7 > ^^ -8 > ^^ -9 > ^^^^^^^^^^^^^^^^ -10> ^^ -11> ^^^^^ -12> ^^ -13> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^ +6 > ^^^^^^^^^^^^^^ +7 > ^^ +8 > ^^ +9 > ^^^^^^^^^^^^^^ +10> ^^ +11> ^^^^ +12> ^^ +13> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> > 2 >for ({name: nameA, skills: { primary: primaryA, secondary: secondaryA } } of 3 > getMultiRobots() -4 > -5 > -6 > getMultiRobots -7 > () -8 > -9 > getMultiRobots() -10> -11> getMultiRobots() -12> ) +4 > +5 > +6 > getMultiRobots +7 > () +8 > +9 > getMultiRobots() +10> +11> getMultiRobots() +12> ) 1->Emitted(78, 1) Source(84, 1) + SourceIndex(0) 2 >Emitted(78, 6) Source(84, 78) + SourceIndex(0) -3 >Emitted(78, 17) Source(84, 94) + SourceIndex(0) -4 >Emitted(78, 19) Source(84, 78) + SourceIndex(0) -5 >Emitted(78, 25) Source(84, 78) + SourceIndex(0) -6 >Emitted(78, 39) Source(84, 92) + SourceIndex(0) -7 >Emitted(78, 41) Source(84, 94) + SourceIndex(0) -8 >Emitted(78, 43) Source(84, 78) + SourceIndex(0) -9 >Emitted(78, 59) Source(84, 94) + SourceIndex(0) -10>Emitted(78, 61) Source(84, 78) + SourceIndex(0) -11>Emitted(78, 66) Source(84, 94) + SourceIndex(0) -12>Emitted(78, 68) Source(84, 96) + SourceIndex(0) +3 >Emitted(78, 16) Source(84, 94) + SourceIndex(0) +4 >Emitted(78, 18) Source(84, 78) + SourceIndex(0) +5 >Emitted(78, 23) Source(84, 78) + SourceIndex(0) +6 >Emitted(78, 37) Source(84, 92) + SourceIndex(0) +7 >Emitted(78, 39) Source(84, 94) + SourceIndex(0) +8 >Emitted(78, 41) Source(84, 78) + SourceIndex(0) +9 >Emitted(78, 55) Source(84, 94) + SourceIndex(0) +10>Emitted(78, 57) Source(84, 78) + SourceIndex(0) +11>Emitted(78, 61) Source(84, 94) + SourceIndex(0) +12>Emitted(78, 63) Source(84, 96) + SourceIndex(0) --- ->>> _14 = _13[_12], nameA = _14.name, _15 = _14.skills, primaryA = _15.primary, secondaryA = _15.secondary; -1->^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^ +>>> _26 = _2[_1], nameA = _26.name, _27 = _26.skills, primaryA = _27.primary, secondaryA = _27.secondary; +1->^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > name: nameA -3 > , -4 > skills: { primary: primaryA, secondary: secondaryA } -5 > -6 > primary: primaryA -7 > , -8 > secondary: secondaryA -1->Emitted(79, 21) Source(84, 7) + SourceIndex(0) -2 >Emitted(79, 37) Source(84, 18) + SourceIndex(0) -3 >Emitted(79, 39) Source(84, 20) + SourceIndex(0) -4 >Emitted(79, 55) Source(84, 72) + SourceIndex(0) -5 >Emitted(79, 57) Source(84, 30) + SourceIndex(0) -6 >Emitted(79, 79) Source(84, 47) + SourceIndex(0) -7 >Emitted(79, 81) Source(84, 49) + SourceIndex(0) -8 >Emitted(79, 107) Source(84, 70) + SourceIndex(0) +2 > name: nameA +3 > , +4 > skills: { primary: primaryA, secondary: secondaryA } +5 > +6 > primary: primaryA +7 > , +8 > secondary: secondaryA +1->Emitted(79, 19) Source(84, 7) + SourceIndex(0) +2 >Emitted(79, 35) Source(84, 18) + SourceIndex(0) +3 >Emitted(79, 37) Source(84, 20) + SourceIndex(0) +4 >Emitted(79, 53) Source(84, 72) + SourceIndex(0) +5 >Emitted(79, 55) Source(84, 30) + SourceIndex(0) +6 >Emitted(79, 77) Source(84, 47) + SourceIndex(0) +7 >Emitted(79, 79) Source(84, 49) + SourceIndex(0) +8 >Emitted(79, 105) Source(84, 70) + SourceIndex(0) --- >>> console.log(nameA); 1 >^^^^ @@ -2233,83 +2233,83 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(81, 2) Source(86, 2) + SourceIndex(0) --- ->>>for (var _16 = 0, _17 = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, +>>>for (var _3 = 0, _4 = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^^ -6 > ^^ -7 > ^^^^ -8 > ^^ -9 > ^^^^^^^ -10> ^^ -11> ^^^^^^ -12> ^^ -13> ^^ -14> ^^^^^^^ -15> ^^ -16> ^^^^^^^^ -17> ^^ -18> ^^^^^^^^^ -19> ^^ -20> ^^^^^^ -21> ^^ -22> ^^ -23> ^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^^ +6 > ^^ +7 > ^^^^ +8 > ^^ +9 > ^^^^^^^ +10> ^^ +11> ^^^^^^ +12> ^^ +13> ^^ +14> ^^^^^^^ +15> ^^ +16> ^^^^^^^^ +17> ^^ +18> ^^^^^^^^^ +19> ^^ +20> ^^^^^^ +21> ^^ +22> ^^ +23> ^^^^^^^^^^^^^^-> 1-> > 2 >for ({name: nameA, skills: { primary: primaryA, secondary: secondaryA } } of 3 > [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, > { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }] -4 > -5 > [ -6 > { -7 > name -8 > : -9 > "mower" -10> , -11> skills -12> : -13> { -14> primary -15> : -16> "mowing" -17> , -18> secondary -19> : -20> "none" -21> } -22> } +4 > +5 > [ +6 > { +7 > name +8 > : +9 > "mower" +10> , +11> skills +12> : +13> { +14> primary +15> : +16> "mowing" +17> , +18> secondary +19> : +20> "none" +21> } +22> } 1->Emitted(82, 1) Source(87, 1) + SourceIndex(0) 2 >Emitted(82, 6) Source(87, 78) + SourceIndex(0) -3 >Emitted(82, 17) Source(88, 79) + SourceIndex(0) -4 >Emitted(82, 19) Source(87, 78) + SourceIndex(0) -5 >Emitted(82, 26) Source(87, 79) + SourceIndex(0) -6 >Emitted(82, 28) Source(87, 81) + SourceIndex(0) -7 >Emitted(82, 32) Source(87, 85) + SourceIndex(0) -8 >Emitted(82, 34) Source(87, 87) + SourceIndex(0) -9 >Emitted(82, 41) Source(87, 94) + SourceIndex(0) -10>Emitted(82, 43) Source(87, 96) + SourceIndex(0) -11>Emitted(82, 49) Source(87, 102) + SourceIndex(0) -12>Emitted(82, 51) Source(87, 104) + SourceIndex(0) -13>Emitted(82, 53) Source(87, 106) + SourceIndex(0) -14>Emitted(82, 60) Source(87, 113) + SourceIndex(0) -15>Emitted(82, 62) Source(87, 115) + SourceIndex(0) -16>Emitted(82, 70) Source(87, 123) + SourceIndex(0) -17>Emitted(82, 72) Source(87, 125) + SourceIndex(0) -18>Emitted(82, 81) Source(87, 134) + SourceIndex(0) -19>Emitted(82, 83) Source(87, 136) + SourceIndex(0) -20>Emitted(82, 89) Source(87, 142) + SourceIndex(0) -21>Emitted(82, 91) Source(87, 144) + SourceIndex(0) -22>Emitted(82, 93) Source(87, 146) + SourceIndex(0) +3 >Emitted(82, 16) Source(88, 79) + SourceIndex(0) +4 >Emitted(82, 18) Source(87, 78) + SourceIndex(0) +5 >Emitted(82, 24) Source(87, 79) + SourceIndex(0) +6 >Emitted(82, 26) Source(87, 81) + SourceIndex(0) +7 >Emitted(82, 30) Source(87, 85) + SourceIndex(0) +8 >Emitted(82, 32) Source(87, 87) + SourceIndex(0) +9 >Emitted(82, 39) Source(87, 94) + SourceIndex(0) +10>Emitted(82, 41) Source(87, 96) + SourceIndex(0) +11>Emitted(82, 47) Source(87, 102) + SourceIndex(0) +12>Emitted(82, 49) Source(87, 104) + SourceIndex(0) +13>Emitted(82, 51) Source(87, 106) + SourceIndex(0) +14>Emitted(82, 58) Source(87, 113) + SourceIndex(0) +15>Emitted(82, 60) Source(87, 115) + SourceIndex(0) +16>Emitted(82, 68) Source(87, 123) + SourceIndex(0) +17>Emitted(82, 70) Source(87, 125) + SourceIndex(0) +18>Emitted(82, 79) Source(87, 134) + SourceIndex(0) +19>Emitted(82, 81) Source(87, 136) + SourceIndex(0) +20>Emitted(82, 87) Source(87, 142) + SourceIndex(0) +21>Emitted(82, 89) Source(87, 144) + SourceIndex(0) +22>Emitted(82, 91) Source(87, 146) + SourceIndex(0) --- ->>> { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _16 < _17.length; _16++) { +>>> { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _3 < _4.length; _3++) { 1->^^^^ 2 > ^^ 3 > ^^^^ @@ -2330,11 +2330,11 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts 18> ^^ 19> ^ 20> ^^ -21> ^^^^^^^^^^^^^^^^ -22> ^^ -23> ^^^^^ -24> ^^ -25> ^^^-> +21> ^^^^^^^^^^^^^^ +22> ^^ +23> ^^^^ +24> ^^ +25> ^^^^-> 1->, > 2 > { @@ -2358,10 +2358,10 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts 20> 21> [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, > { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }] -22> -23> [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, - > { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }] -24> ) +22> +23> [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, + > { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }] +24> ) 1->Emitted(83, 5) Source(88, 5) + SourceIndex(0) 2 >Emitted(83, 7) Source(88, 7) + SourceIndex(0) 3 >Emitted(83, 11) Source(88, 11) + SourceIndex(0) @@ -2382,36 +2382,36 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts 18>Emitted(83, 78) Source(88, 78) + SourceIndex(0) 19>Emitted(83, 79) Source(88, 79) + SourceIndex(0) 20>Emitted(83, 81) Source(87, 78) + SourceIndex(0) -21>Emitted(83, 97) Source(88, 79) + SourceIndex(0) -22>Emitted(83, 99) Source(87, 78) + SourceIndex(0) -23>Emitted(83, 104) Source(88, 79) + SourceIndex(0) -24>Emitted(83, 106) Source(88, 81) + SourceIndex(0) +21>Emitted(83, 95) Source(88, 79) + SourceIndex(0) +22>Emitted(83, 97) Source(87, 78) + SourceIndex(0) +23>Emitted(83, 101) Source(88, 79) + SourceIndex(0) +24>Emitted(83, 103) Source(88, 81) + SourceIndex(0) --- ->>> _18 = _17[_16], nameA = _18.name, _19 = _18.skills, primaryA = _19.primary, secondaryA = _19.secondary; -1->^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^ +>>> _28 = _4[_3], nameA = _28.name, _29 = _28.skills, primaryA = _29.primary, secondaryA = _29.secondary; +1->^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > name: nameA -3 > , -4 > skills: { primary: primaryA, secondary: secondaryA } -5 > -6 > primary: primaryA -7 > , -8 > secondary: secondaryA -1->Emitted(84, 21) Source(87, 7) + SourceIndex(0) -2 >Emitted(84, 37) Source(87, 18) + SourceIndex(0) -3 >Emitted(84, 39) Source(87, 20) + SourceIndex(0) -4 >Emitted(84, 55) Source(87, 72) + SourceIndex(0) -5 >Emitted(84, 57) Source(87, 30) + SourceIndex(0) -6 >Emitted(84, 79) Source(87, 47) + SourceIndex(0) -7 >Emitted(84, 81) Source(87, 49) + SourceIndex(0) -8 >Emitted(84, 107) Source(87, 70) + SourceIndex(0) +2 > name: nameA +3 > , +4 > skills: { primary: primaryA, secondary: secondaryA } +5 > +6 > primary: primaryA +7 > , +8 > secondary: secondaryA +1->Emitted(84, 19) Source(87, 7) + SourceIndex(0) +2 >Emitted(84, 35) Source(87, 18) + SourceIndex(0) +3 >Emitted(84, 37) Source(87, 20) + SourceIndex(0) +4 >Emitted(84, 53) Source(87, 72) + SourceIndex(0) +5 >Emitted(84, 55) Source(87, 30) + SourceIndex(0) +6 >Emitted(84, 77) Source(87, 47) + SourceIndex(0) +7 >Emitted(84, 79) Source(87, 49) + SourceIndex(0) +8 >Emitted(84, 105) Source(87, 70) + SourceIndex(0) --- >>> console.log(nameA); 1 >^^^^ @@ -2443,57 +2443,57 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(86, 2) Source(90, 2) + SourceIndex(0) --- ->>>for (var _20 = 0, robots_4 = robots; _20 < robots_4.length; _20++) { +>>>for (var _5 = 0, robots_4 = robots; _5 < robots_4.length; _5++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^^^^^^^^^^^^ -6 > ^^ -7 > ^^^^^^^^^^^^^^^^^^^^^ -8 > ^^ -9 > ^^^^^ -10> ^^ +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^^^^^^^^^^^^^ +6 > ^^ +7 > ^^^^^^^^^^^^^^^^^^^^ +8 > ^^ +9 > ^^^^ +10> ^^ 1-> > 2 >for ({name, skill } of 3 > robots -4 > -5 > robots -6 > -7 > robots -8 > -9 > robots -10> ) +4 > +5 > robots +6 > +7 > robots +8 > +9 > robots +10> ) 1->Emitted(87, 1) Source(91, 1) + SourceIndex(0) 2 >Emitted(87, 6) Source(91, 24) + SourceIndex(0) -3 >Emitted(87, 17) Source(91, 30) + SourceIndex(0) -4 >Emitted(87, 19) Source(91, 24) + SourceIndex(0) -5 >Emitted(87, 36) Source(91, 30) + SourceIndex(0) -6 >Emitted(87, 38) Source(91, 24) + SourceIndex(0) -7 >Emitted(87, 59) Source(91, 30) + SourceIndex(0) -8 >Emitted(87, 61) Source(91, 24) + SourceIndex(0) -9 >Emitted(87, 66) Source(91, 30) + SourceIndex(0) -10>Emitted(87, 68) Source(91, 32) + SourceIndex(0) +3 >Emitted(87, 16) Source(91, 30) + SourceIndex(0) +4 >Emitted(87, 18) Source(91, 24) + SourceIndex(0) +5 >Emitted(87, 35) Source(91, 30) + SourceIndex(0) +6 >Emitted(87, 37) Source(91, 24) + SourceIndex(0) +7 >Emitted(87, 57) Source(91, 30) + SourceIndex(0) +8 >Emitted(87, 59) Source(91, 24) + SourceIndex(0) +9 >Emitted(87, 63) Source(91, 30) + SourceIndex(0) +10>Emitted(87, 65) Source(91, 32) + SourceIndex(0) --- ->>> _21 = robots_4[_20], name = _21.name, skill = _21.skill; -1 >^^^^^^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^ +>>> _30 = robots_4[_5], name = _30.name, skill = _30.skill; +1 >^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^ 1 > -2 > name -3 > , -4 > skill -1 >Emitted(88, 26) Source(91, 7) + SourceIndex(0) -2 >Emitted(88, 41) Source(91, 11) + SourceIndex(0) -3 >Emitted(88, 43) Source(91, 13) + SourceIndex(0) -4 >Emitted(88, 60) Source(91, 18) + SourceIndex(0) +2 > name +3 > , +4 > skill +1 >Emitted(88, 25) Source(91, 7) + SourceIndex(0) +2 >Emitted(88, 40) Source(91, 11) + SourceIndex(0) +3 >Emitted(88, 42) Source(91, 13) + SourceIndex(0) +4 >Emitted(88, 59) Source(91, 18) + SourceIndex(0) --- >>> console.log(nameA); 1 >^^^^ @@ -2524,63 +2524,63 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(90, 2) Source(93, 2) + SourceIndex(0) --- ->>>for (var _22 = 0, _23 = getRobots(); _22 < _23.length; _22++) { +>>>for (var _6 = 0, _7 = getRobots(); _6 < _7.length; _6++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^ -6 > ^^^^^^^^^ -7 > ^^ -8 > ^^ -9 > ^^^^^^^^^^^^^^^^ -10> ^^ -11> ^^^^^ -12> ^^ +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^ +6 > ^^^^^^^^^ +7 > ^^ +8 > ^^ +9 > ^^^^^^^^^^^^^^ +10> ^^ +11> ^^^^ +12> ^^ 1-> > 2 >for ({name, skill } of 3 > getRobots() -4 > -5 > -6 > getRobots -7 > () -8 > -9 > getRobots() -10> -11> getRobots() -12> ) +4 > +5 > +6 > getRobots +7 > () +8 > +9 > getRobots() +10> +11> getRobots() +12> ) 1->Emitted(91, 1) Source(94, 1) + SourceIndex(0) 2 >Emitted(91, 6) Source(94, 24) + SourceIndex(0) -3 >Emitted(91, 17) Source(94, 35) + SourceIndex(0) -4 >Emitted(91, 19) Source(94, 24) + SourceIndex(0) -5 >Emitted(91, 25) Source(94, 24) + SourceIndex(0) -6 >Emitted(91, 34) Source(94, 33) + SourceIndex(0) -7 >Emitted(91, 36) Source(94, 35) + SourceIndex(0) -8 >Emitted(91, 38) Source(94, 24) + SourceIndex(0) -9 >Emitted(91, 54) Source(94, 35) + SourceIndex(0) -10>Emitted(91, 56) Source(94, 24) + SourceIndex(0) -11>Emitted(91, 61) Source(94, 35) + SourceIndex(0) -12>Emitted(91, 63) Source(94, 37) + SourceIndex(0) +3 >Emitted(91, 16) Source(94, 35) + SourceIndex(0) +4 >Emitted(91, 18) Source(94, 24) + SourceIndex(0) +5 >Emitted(91, 23) Source(94, 24) + SourceIndex(0) +6 >Emitted(91, 32) Source(94, 33) + SourceIndex(0) +7 >Emitted(91, 34) Source(94, 35) + SourceIndex(0) +8 >Emitted(91, 36) Source(94, 24) + SourceIndex(0) +9 >Emitted(91, 50) Source(94, 35) + SourceIndex(0) +10>Emitted(91, 52) Source(94, 24) + SourceIndex(0) +11>Emitted(91, 56) Source(94, 35) + SourceIndex(0) +12>Emitted(91, 58) Source(94, 37) + SourceIndex(0) --- ->>> _24 = _23[_22], name = _24.name, skill = _24.skill; -1 >^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^ +>>> _31 = _7[_6], name = _31.name, skill = _31.skill; +1 >^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^ 1 > -2 > name -3 > , -4 > skill -1 >Emitted(92, 21) Source(94, 7) + SourceIndex(0) -2 >Emitted(92, 36) Source(94, 11) + SourceIndex(0) -3 >Emitted(92, 38) Source(94, 13) + SourceIndex(0) -4 >Emitted(92, 55) Source(94, 18) + SourceIndex(0) +2 > name +3 > , +4 > skill +1 >Emitted(92, 19) Source(94, 7) + SourceIndex(0) +2 >Emitted(92, 34) Source(94, 11) + SourceIndex(0) +3 >Emitted(92, 36) Source(94, 13) + SourceIndex(0) +4 >Emitted(92, 53) Source(94, 18) + SourceIndex(0) --- >>> console.log(nameA); 1 >^^^^ @@ -2611,117 +2611,117 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(94, 2) Source(96, 2) + SourceIndex(0) --- ->>>for (var _25 = 0, _26 = [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }]; _25 < _26.length; _25++) { +>>>for (var _8 = 0, _9 = [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }]; _8 < _9.length; _8++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^^ -6 > ^^ -7 > ^^^^ -8 > ^^ -9 > ^^^^^^^ -10> ^^ -11> ^^^^^ -12> ^^ -13> ^^^^^^^^ -14> ^^ -15> ^^ -16> ^^ -17> ^^^^ -18> ^^ -19> ^^^^^^^^^ -20> ^^ -21> ^^^^^ -22> ^^ -23> ^^^^^^^^^^ -24> ^^ -25> ^ -26> ^^ -27> ^^^^^^^^^^^^^^^^ -28> ^^ -29> ^^^^^ -30> ^^ +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^^ +6 > ^^ +7 > ^^^^ +8 > ^^ +9 > ^^^^^^^ +10> ^^ +11> ^^^^^ +12> ^^ +13> ^^^^^^^^ +14> ^^ +15> ^^ +16> ^^ +17> ^^^^ +18> ^^ +19> ^^^^^^^^^ +20> ^^ +21> ^^^^^ +22> ^^ +23> ^^^^^^^^^^ +24> ^^ +25> ^ +26> ^^ +27> ^^^^^^^^^^^^^^ +28> ^^ +29> ^^^^ +30> ^^ 1-> > 2 >for ({name, skill } of 3 > [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }] -4 > -5 > [ -6 > { -7 > name -8 > : -9 > "mower" -10> , -11> skill -12> : -13> "mowing" -14> } -15> , -16> { -17> name -18> : -19> "trimmer" -20> , -21> skill -22> : -23> "trimming" -24> } -25> ] -26> -27> [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }] -28> -29> [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }] -30> ) +4 > +5 > [ +6 > { +7 > name +8 > : +9 > "mower" +10> , +11> skill +12> : +13> "mowing" +14> } +15> , +16> { +17> name +18> : +19> "trimmer" +20> , +21> skill +22> : +23> "trimming" +24> } +25> ] +26> +27> [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }] +28> +29> [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }] +30> ) 1->Emitted(95, 1) Source(97, 1) + SourceIndex(0) 2 >Emitted(95, 6) Source(97, 24) + SourceIndex(0) -3 >Emitted(95, 17) Source(97, 100) + SourceIndex(0) -4 >Emitted(95, 19) Source(97, 24) + SourceIndex(0) -5 >Emitted(95, 26) Source(97, 25) + SourceIndex(0) -6 >Emitted(95, 28) Source(97, 27) + SourceIndex(0) -7 >Emitted(95, 32) Source(97, 31) + SourceIndex(0) -8 >Emitted(95, 34) Source(97, 33) + SourceIndex(0) -9 >Emitted(95, 41) Source(97, 40) + SourceIndex(0) -10>Emitted(95, 43) Source(97, 42) + SourceIndex(0) -11>Emitted(95, 48) Source(97, 47) + SourceIndex(0) -12>Emitted(95, 50) Source(97, 49) + SourceIndex(0) -13>Emitted(95, 58) Source(97, 57) + SourceIndex(0) -14>Emitted(95, 60) Source(97, 59) + SourceIndex(0) -15>Emitted(95, 62) Source(97, 61) + SourceIndex(0) -16>Emitted(95, 64) Source(97, 63) + SourceIndex(0) -17>Emitted(95, 68) Source(97, 67) + SourceIndex(0) -18>Emitted(95, 70) Source(97, 69) + SourceIndex(0) -19>Emitted(95, 79) Source(97, 78) + SourceIndex(0) -20>Emitted(95, 81) Source(97, 80) + SourceIndex(0) -21>Emitted(95, 86) Source(97, 85) + SourceIndex(0) -22>Emitted(95, 88) Source(97, 87) + SourceIndex(0) -23>Emitted(95, 98) Source(97, 97) + SourceIndex(0) -24>Emitted(95, 100) Source(97, 99) + SourceIndex(0) -25>Emitted(95, 101) Source(97, 100) + SourceIndex(0) -26>Emitted(95, 103) Source(97, 24) + SourceIndex(0) -27>Emitted(95, 119) Source(97, 100) + SourceIndex(0) -28>Emitted(95, 121) Source(97, 24) + SourceIndex(0) -29>Emitted(95, 126) Source(97, 100) + SourceIndex(0) -30>Emitted(95, 128) Source(97, 102) + SourceIndex(0) +3 >Emitted(95, 16) Source(97, 100) + SourceIndex(0) +4 >Emitted(95, 18) Source(97, 24) + SourceIndex(0) +5 >Emitted(95, 24) Source(97, 25) + SourceIndex(0) +6 >Emitted(95, 26) Source(97, 27) + SourceIndex(0) +7 >Emitted(95, 30) Source(97, 31) + SourceIndex(0) +8 >Emitted(95, 32) Source(97, 33) + SourceIndex(0) +9 >Emitted(95, 39) Source(97, 40) + SourceIndex(0) +10>Emitted(95, 41) Source(97, 42) + SourceIndex(0) +11>Emitted(95, 46) Source(97, 47) + SourceIndex(0) +12>Emitted(95, 48) Source(97, 49) + SourceIndex(0) +13>Emitted(95, 56) Source(97, 57) + SourceIndex(0) +14>Emitted(95, 58) Source(97, 59) + SourceIndex(0) +15>Emitted(95, 60) Source(97, 61) + SourceIndex(0) +16>Emitted(95, 62) Source(97, 63) + SourceIndex(0) +17>Emitted(95, 66) Source(97, 67) + SourceIndex(0) +18>Emitted(95, 68) Source(97, 69) + SourceIndex(0) +19>Emitted(95, 77) Source(97, 78) + SourceIndex(0) +20>Emitted(95, 79) Source(97, 80) + SourceIndex(0) +21>Emitted(95, 84) Source(97, 85) + SourceIndex(0) +22>Emitted(95, 86) Source(97, 87) + SourceIndex(0) +23>Emitted(95, 96) Source(97, 97) + SourceIndex(0) +24>Emitted(95, 98) Source(97, 99) + SourceIndex(0) +25>Emitted(95, 99) Source(97, 100) + SourceIndex(0) +26>Emitted(95, 101) Source(97, 24) + SourceIndex(0) +27>Emitted(95, 115) Source(97, 100) + SourceIndex(0) +28>Emitted(95, 117) Source(97, 24) + SourceIndex(0) +29>Emitted(95, 121) Source(97, 100) + SourceIndex(0) +30>Emitted(95, 123) Source(97, 102) + SourceIndex(0) --- ->>> _27 = _26[_25], name = _27.name, skill = _27.skill; -1 >^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^ +>>> _32 = _9[_8], name = _32.name, skill = _32.skill; +1 >^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^ 1 > -2 > name -3 > , -4 > skill -1 >Emitted(96, 21) Source(97, 7) + SourceIndex(0) -2 >Emitted(96, 36) Source(97, 11) + SourceIndex(0) -3 >Emitted(96, 38) Source(97, 13) + SourceIndex(0) -4 >Emitted(96, 55) Source(97, 18) + SourceIndex(0) +2 > name +3 > , +4 > skill +1 >Emitted(96, 19) Source(97, 7) + SourceIndex(0) +2 >Emitted(96, 34) Source(97, 11) + SourceIndex(0) +3 >Emitted(96, 36) Source(97, 13) + SourceIndex(0) +4 >Emitted(96, 53) Source(97, 18) + SourceIndex(0) --- >>> console.log(nameA); 1 >^^^^ @@ -2757,7 +2757,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts >} 1 >Emitted(98, 2) Source(99, 2) + SourceIndex(0) --- ->>>for (var _28 = 0, multiRobots_4 = multiRobots; _28 < multiRobots_4.length; _28++) { +>>>for (var _10 = 0, multiRobots_4 = multiRobots; _10 < multiRobots_4.length; _10++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^^ @@ -2791,7 +2791,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts 9 >Emitted(99, 81) Source(100, 60) + SourceIndex(0) 10>Emitted(99, 83) Source(100, 62) + SourceIndex(0) --- ->>> _29 = multiRobots_4[_28], name = _29.name, _30 = _29.skills, primary = _30.primary, secondary = _30.secondary; +>>> _33 = multiRobots_4[_10], name = _33.name, _34 = _33.skills, primary = _34.primary, secondary = _34.secondary; 1->^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^ 3 > ^^ @@ -2851,7 +2851,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts >} 1 >Emitted(102, 2) Source(102, 2) + SourceIndex(0) --- ->>>for (var _31 = 0, _32 = getMultiRobots(); _31 < _32.length; _31++) { +>>>for (var _11 = 0, _12 = getMultiRobots(); _11 < _12.length; _11++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^^ @@ -2891,7 +2891,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts 11>Emitted(103, 66) Source(103, 65) + SourceIndex(0) 12>Emitted(103, 68) Source(103, 67) + SourceIndex(0) --- ->>> _33 = _32[_31], name = _33.name, _34 = _33.skills, primary = _34.primary, secondary = _34.secondary; +>>> _35 = _12[_11], name = _35.name, _36 = _35.skills, primary = _36.primary, secondary = _36.secondary; 1->^^^^^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^ 3 > ^^ @@ -2951,7 +2951,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts >} 1 >Emitted(106, 2) Source(105, 2) + SourceIndex(0) --- ->>>for (var _35 = 0, _36 = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, +>>>for (var _13 = 0, _14 = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, 1-> 2 >^^^^^ 3 > ^^^^^^^^^^^ @@ -3022,7 +3022,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts 21>Emitted(107, 91) Source(106, 115) + SourceIndex(0) 22>Emitted(107, 93) Source(106, 117) + SourceIndex(0) --- ->>> { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _35 < _36.length; _35++) { +>>> { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _13 < _14.length; _13++) { 1->^^^^ 2 > ^^ 3 > ^^^^ @@ -3099,7 +3099,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts 23>Emitted(108, 104) Source(107, 79) + SourceIndex(0) 24>Emitted(108, 106) Source(107, 81) + SourceIndex(0) --- ->>> _37 = _36[_35], name = _37.name, _38 = _37.skills, primary = _38.primary, secondary = _38.secondary; +>>> _37 = _14[_13], name = _37.name, _38 = _37.skills, primary = _38.primary, secondary = _38.secondary; 1 >^^^^^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^^ 3 > ^^ @@ -3155,10 +3155,10 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPattern2.ts --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(111, 2) Source(109, 2) + SourceIndex(0) --- ->>>var _f, _j, _m, _u, _x, _0, _2, _5, _8, _10, _11, _14, _15, _18, _19, _21, _24, _27, _29, _30, _33, _34, _37, _38; +>>>var _15, _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33, _34, _35, _36, _37, _38; >>>//# sourceMappingURL=sourceMapValidationDestructuringForOfObjectBindingPattern2.js.map \ No newline at end of file diff --git a/tests/baselines/reference/sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2.js b/tests/baselines/reference/sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2.js index 1e18159d3d4..b0f6816ab57 100644 --- a/tests/baselines/reference/sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2.js +++ b/tests/baselines/reference/sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2.js @@ -179,104 +179,104 @@ function getMultiRobots() { var nameA, primaryA, secondaryA, i, skillA; var name, primary, secondary, skill; for (var _i = 0, robots_1 = robots; _i < robots_1.length; _i++) { - _a = robots_1[_i].name, nameA = _a === void 0 ? "noName" : _a; + _15 = robots_1[_i].name, nameA = _15 === void 0 ? "noName" : _15; console.log(nameA); } -for (var _b = 0, _c = getRobots(); _b < _c.length; _b++) { - _d = _c[_b].name, nameA = _d === void 0 ? "noName" : _d; +for (var _a = 0, _b = getRobots(); _a < _b.length; _a++) { + _16 = _b[_a].name, nameA = _16 === void 0 ? "noName" : _16; console.log(nameA); } -for (var _e = 0, _f = [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }]; _e < _f.length; _e++) { - _g = _f[_e].name, nameA = _g === void 0 ? "noName" : _g; +for (var _c = 0, _d = [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }]; _c < _d.length; _c++) { + _17 = _d[_c].name, nameA = _17 === void 0 ? "noName" : _17; console.log(nameA); } -for (var _h = 0, multiRobots_1 = multiRobots; _h < multiRobots_1.length; _h++) { - _j = multiRobots_1[_h].skills, _k = _j === void 0 ? { primary: "nosKill", secondary: "noSkill" } : _j, _l = _k.primary, primaryA = _l === void 0 ? "primary" : _l, _m = _k.secondary, secondaryA = _m === void 0 ? "secondary" : _m; +for (var _e = 0, multiRobots_1 = multiRobots; _e < multiRobots_1.length; _e++) { + _18 = multiRobots_1[_e].skills, _19 = _18 === void 0 ? { primary: "nosKill", secondary: "noSkill" } : _18, _20 = _19.primary, primaryA = _20 === void 0 ? "primary" : _20, _21 = _19.secondary, secondaryA = _21 === void 0 ? "secondary" : _21; console.log(primaryA); } -for (var _o = 0, _p = getMultiRobots(); _o < _p.length; _o++) { - _q = _p[_o].skills, _r = _q === void 0 ? { primary: "nosKill", secondary: "noSkill" } : _q, _s = _r.primary, primaryA = _s === void 0 ? "primary" : _s, _t = _r.secondary, secondaryA = _t === void 0 ? "secondary" : _t; +for (var _f = 0, _g = getMultiRobots(); _f < _g.length; _f++) { + _22 = _g[_f].skills, _23 = _22 === void 0 ? { primary: "nosKill", secondary: "noSkill" } : _22, _24 = _23.primary, primaryA = _24 === void 0 ? "primary" : _24, _25 = _23.secondary, secondaryA = _25 === void 0 ? "secondary" : _25; console.log(primaryA); } -for (var _u = 0, _v = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, - { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _u < _v.length; _u++) { - _w = _v[_u].skills, _x = _w === void 0 ? { primary: "nosKill", secondary: "noSkill" } : _w, _y = _x.primary, primaryA = _y === void 0 ? "primary" : _y, _z = _x.secondary, secondaryA = _z === void 0 ? "secondary" : _z; +for (var _h = 0, _j = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, + { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _h < _j.length; _h++) { + _26 = _j[_h].skills, _27 = _26 === void 0 ? { primary: "nosKill", secondary: "noSkill" } : _26, _28 = _27.primary, primaryA = _28 === void 0 ? "primary" : _28, _29 = _27.secondary, secondaryA = _29 === void 0 ? "secondary" : _29; console.log(primaryA); } -for (var _0 = 0, robots_2 = robots; _0 < robots_2.length; _0++) { - _1 = robots_2[_0].name, name = _1 === void 0 ? "noName" : _1; +for (var _k = 0, robots_2 = robots; _k < robots_2.length; _k++) { + _30 = robots_2[_k].name, name = _30 === void 0 ? "noName" : _30; console.log(nameA); } -for (var _2 = 0, _3 = getRobots(); _2 < _3.length; _2++) { - _4 = _3[_2].name, name = _4 === void 0 ? "noName" : _4; +for (var _l = 0, _m = getRobots(); _l < _m.length; _l++) { + _31 = _m[_l].name, name = _31 === void 0 ? "noName" : _31; console.log(nameA); } -for (var _5 = 0, _6 = [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }]; _5 < _6.length; _5++) { - _7 = _6[_5].name, name = _7 === void 0 ? "noName" : _7; +for (var _o = 0, _p = [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }]; _o < _p.length; _o++) { + _32 = _p[_o].name, name = _32 === void 0 ? "noName" : _32; console.log(nameA); } -for (var _8 = 0, multiRobots_2 = multiRobots; _8 < multiRobots_2.length; _8++) { - _9 = multiRobots_2[_8].skills, _10 = _9 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _9, _11 = _10.primary, primary = _11 === void 0 ? "primary" : _11, _12 = _10.secondary, secondary = _12 === void 0 ? "secondary" : _12; +for (var _q = 0, multiRobots_2 = multiRobots; _q < multiRobots_2.length; _q++) { + _33 = multiRobots_2[_q].skills, _34 = _33 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _33, _35 = _34.primary, primary = _35 === void 0 ? "primary" : _35, _36 = _34.secondary, secondary = _36 === void 0 ? "secondary" : _36; console.log(primaryA); } -for (var _13 = 0, _14 = getMultiRobots(); _13 < _14.length; _13++) { - _15 = _14[_13].skills, _16 = _15 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _15, _17 = _16.primary, primary = _17 === void 0 ? "primary" : _17, _18 = _16.secondary, secondary = _18 === void 0 ? "secondary" : _18; +for (var _r = 0, _s = getMultiRobots(); _r < _s.length; _r++) { + _37 = _s[_r].skills, _38 = _37 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _37, _39 = _38.primary, primary = _39 === void 0 ? "primary" : _39, _40 = _38.secondary, secondary = _40 === void 0 ? "secondary" : _40; console.log(primaryA); } -for (var _19 = 0, _20 = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, - { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _19 < _20.length; _19++) { - _21 = _20[_19].skills, _22 = _21 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _21, _23 = _22.primary, primary = _23 === void 0 ? "primary" : _23, _24 = _22.secondary, secondary = _24 === void 0 ? "secondary" : _24; +for (var _t = 0, _u = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, + { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _t < _u.length; _t++) { + _41 = _u[_t].skills, _42 = _41 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _41, _43 = _42.primary, primary = _43 === void 0 ? "primary" : _43, _44 = _42.secondary, secondary = _44 === void 0 ? "secondary" : _44; console.log(primaryA); } -for (var _25 = 0, robots_3 = robots; _25 < robots_3.length; _25++) { - _26 = robots_3[_25], _27 = _26.name, nameA = _27 === void 0 ? "noName" : _27, _28 = _26.skill, skillA = _28 === void 0 ? "noSkill" : _28; +for (var _v = 0, robots_3 = robots; _v < robots_3.length; _v++) { + _45 = robots_3[_v], _46 = _45.name, nameA = _46 === void 0 ? "noName" : _46, _47 = _45.skill, skillA = _47 === void 0 ? "noSkill" : _47; console.log(nameA); } -for (var _29 = 0, _30 = getRobots(); _29 < _30.length; _29++) { - _31 = _30[_29], _32 = _31.name, nameA = _32 === void 0 ? "noName" : _32, _33 = _31.skill, skillA = _33 === void 0 ? "noSkill" : _33; +for (var _w = 0, _x = getRobots(); _w < _x.length; _w++) { + _48 = _x[_w], _49 = _48.name, nameA = _49 === void 0 ? "noName" : _49, _50 = _48.skill, skillA = _50 === void 0 ? "noSkill" : _50; console.log(nameA); } -for (var _34 = 0, _35 = [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }]; _34 < _35.length; _34++) { - _36 = _35[_34], _37 = _36.name, nameA = _37 === void 0 ? "noName" : _37, _38 = _36.skill, skillA = _38 === void 0 ? "noSkill" : _38; +for (var _y = 0, _z = [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }]; _y < _z.length; _y++) { + _51 = _z[_y], _52 = _51.name, nameA = _52 === void 0 ? "noName" : _52, _53 = _51.skill, skillA = _53 === void 0 ? "noSkill" : _53; console.log(nameA); } -for (var _39 = 0, multiRobots_3 = multiRobots; _39 < multiRobots_3.length; _39++) { - _40 = multiRobots_3[_39], _41 = _40.name, nameA = _41 === void 0 ? "noName" : _41, _42 = _40.skills, _43 = _42 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _42, _44 = _43.primary, primaryA = _44 === void 0 ? "primary" : _44, _45 = _43.secondary, secondaryA = _45 === void 0 ? "secondary" : _45; +for (var _0 = 0, multiRobots_3 = multiRobots; _0 < multiRobots_3.length; _0++) { + _54 = multiRobots_3[_0], _55 = _54.name, nameA = _55 === void 0 ? "noName" : _55, _56 = _54.skills, _57 = _56 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _56, _58 = _57.primary, primaryA = _58 === void 0 ? "primary" : _58, _59 = _57.secondary, secondaryA = _59 === void 0 ? "secondary" : _59; console.log(nameA); } -for (var _46 = 0, _47 = getMultiRobots(); _46 < _47.length; _46++) { - _48 = _47[_46], _49 = _48.name, nameA = _49 === void 0 ? "noName" : _49, _50 = _48.skills, _51 = _50 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _50, _52 = _51.primary, primaryA = _52 === void 0 ? "primary" : _52, _53 = _51.secondary, secondaryA = _53 === void 0 ? "secondary" : _53; +for (var _1 = 0, _2 = getMultiRobots(); _1 < _2.length; _1++) { + _60 = _2[_1], _61 = _60.name, nameA = _61 === void 0 ? "noName" : _61, _62 = _60.skills, _63 = _62 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _62, _64 = _63.primary, primaryA = _64 === void 0 ? "primary" : _64, _65 = _63.secondary, secondaryA = _65 === void 0 ? "secondary" : _65; console.log(nameA); } -for (var _54 = 0, _55 = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, - { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _54 < _55.length; _54++) { - _56 = _55[_54], _57 = _56.name, nameA = _57 === void 0 ? "noName" : _57, _58 = _56.skills, _59 = _58 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _58, _60 = _59.primary, primaryA = _60 === void 0 ? "primary" : _60, _61 = _59.secondary, secondaryA = _61 === void 0 ? "secondary" : _61; +for (var _3 = 0, _4 = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, + { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _3 < _4.length; _3++) { + _66 = _4[_3], _67 = _66.name, nameA = _67 === void 0 ? "noName" : _67, _68 = _66.skills, _69 = _68 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _68, _70 = _69.primary, primaryA = _70 === void 0 ? "primary" : _70, _71 = _69.secondary, secondaryA = _71 === void 0 ? "secondary" : _71; console.log(nameA); } -for (var _62 = 0, robots_4 = robots; _62 < robots_4.length; _62++) { - _63 = robots_4[_62], _64 = _63.name, name = _64 === void 0 ? "noName" : _64, _65 = _63.skill, skill = _65 === void 0 ? "noSkill" : _65; +for (var _5 = 0, robots_4 = robots; _5 < robots_4.length; _5++) { + _72 = robots_4[_5], _73 = _72.name, name = _73 === void 0 ? "noName" : _73, _74 = _72.skill, skill = _74 === void 0 ? "noSkill" : _74; console.log(nameA); } -for (var _66 = 0, _67 = getRobots(); _66 < _67.length; _66++) { - _68 = _67[_66], _69 = _68.name, name = _69 === void 0 ? "noName" : _69, _70 = _68.skill, skill = _70 === void 0 ? "noSkill" : _70; +for (var _6 = 0, _7 = getRobots(); _6 < _7.length; _6++) { + _75 = _7[_6], _76 = _75.name, name = _76 === void 0 ? "noName" : _76, _77 = _75.skill, skill = _77 === void 0 ? "noSkill" : _77; console.log(nameA); } -for (var _71 = 0, _72 = [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }]; _71 < _72.length; _71++) { - _73 = _72[_71], _74 = _73.name, name = _74 === void 0 ? "noName" : _74, _75 = _73.skill, skill = _75 === void 0 ? "noSkill" : _75; +for (var _8 = 0, _9 = [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }]; _8 < _9.length; _8++) { + _78 = _9[_8], _79 = _78.name, name = _79 === void 0 ? "noName" : _79, _80 = _78.skill, skill = _80 === void 0 ? "noSkill" : _80; console.log(nameA); } -for (var _76 = 0, multiRobots_4 = multiRobots; _76 < multiRobots_4.length; _76++) { - _77 = multiRobots_4[_76], _78 = _77.name, name = _78 === void 0 ? "noName" : _78, _79 = _77.skills, _80 = _79 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _79, _81 = _80.primary, primary = _81 === void 0 ? "primary" : _81, _82 = _80.secondary, secondary = _82 === void 0 ? "secondary" : _82; +for (var _10 = 0, multiRobots_4 = multiRobots; _10 < multiRobots_4.length; _10++) { + _81 = multiRobots_4[_10], _82 = _81.name, name = _82 === void 0 ? "noName" : _82, _83 = _81.skills, _84 = _83 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _83, _85 = _84.primary, primary = _85 === void 0 ? "primary" : _85, _86 = _84.secondary, secondary = _86 === void 0 ? "secondary" : _86; console.log(nameA); } -for (var _83 = 0, _84 = getMultiRobots(); _83 < _84.length; _83++) { - _85 = _84[_83], _86 = _85.name, name = _86 === void 0 ? "noName" : _86, _87 = _85.skills, _88 = _87 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _87, _89 = _88.primary, primary = _89 === void 0 ? "primary" : _89, _90 = _88.secondary, secondary = _90 === void 0 ? "secondary" : _90; +for (var _11 = 0, _12 = getMultiRobots(); _11 < _12.length; _11++) { + _87 = _12[_11], _88 = _87.name, name = _88 === void 0 ? "noName" : _88, _89 = _87.skills, _90 = _89 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _89, _91 = _90.primary, primary = _91 === void 0 ? "primary" : _91, _92 = _90.secondary, secondary = _92 === void 0 ? "secondary" : _92; console.log(nameA); } -for (var _91 = 0, _92 = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, - { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _91 < _92.length; _91++) { - _93 = _92[_91], _94 = _93.name, name = _94 === void 0 ? "noName" : _94, _95 = _93.skills, _96 = _95 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _95, _97 = _96.primary, primary = _97 === void 0 ? "primary" : _97, _98 = _96.secondary, secondary = _98 === void 0 ? "secondary" : _98; +for (var _13 = 0, _14 = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, + { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _13 < _14.length; _13++) { + _93 = _14[_13], _94 = _93.name, name = _94 === void 0 ? "noName" : _94, _95 = _93.skills, _96 = _95 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _95, _97 = _96.primary, primary = _97 === void 0 ? "primary" : _97, _98 = _96.secondary, secondary = _98 === void 0 ? "secondary" : _98; console.log(nameA); } -var _a, _d, _g, _j, _k, _l, _m, _q, _r, _s, _t, _w, _x, _y, _z, _1, _4, _7, _9, _10, _11, _12, _15, _16, _17, _18, _21, _22, _23, _24, _26, _27, _28, _31, _32, _33, _36, _37, _38, _40, _41, _42, _43, _44, _45, _48, _49, _50, _51, _52, _53, _56, _57, _58, _59, _60, _61, _63, _64, _65, _68, _69, _70, _73, _74, _75, _77, _78, _79, _80, _81, _82, _85, _86, _87, _88, _89, _90, _93, _94, _95, _96, _97, _98; +var _15, _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33, _34, _35, _36, _37, _38, _39, _40, _41, _42, _43, _44, _45, _46, _47, _48, _49, _50, _51, _52, _53, _54, _55, _56, _57, _58, _59, _60, _61, _62, _63, _64, _65, _66, _67, _68, _69, _70, _71, _72, _73, _74, _75, _76, _77, _78, _79, _80, _81, _82, _83, _84, _85, _86, _87, _88, _89, _90, _91, _92, _93, _94, _95, _96, _97, _98; //# sourceMappingURL=sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2.js.map \ No newline at end of file diff --git a/tests/baselines/reference/sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2.js.map b/tests/baselines/reference/sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2.js.map index d4153362c55..fb8caca30bb 100644 --- a/tests/baselines/reference/sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2.js.map +++ b/tests/baselines/reference/sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2.js.map @@ -1,2 +1,2 @@ //// [sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2.js.map] -{"version":3,"file":"sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2.js","sourceRoot":"","sources":["sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2.js","sourceRoot":"","sources":["sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/tests/baselines/reference/sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2.sourcemap.txt b/tests/baselines/reference/sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2.sourcemap.txt index 48664bceb07..38a87e97a8d 100644 --- a/tests/baselines/reference/sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2.sourcemap.txt +++ b/tests/baselines/reference/sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2.sourcemap.txt @@ -387,7 +387,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue 8 > ^^ 9 > ^^^^ 10> ^^ -11> ^^^-> +11> ^^^^^^-> 1-> > > @@ -411,19 +411,19 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue 9 >Emitted(12, 63) Source(32, 41) + SourceIndex(0) 10>Emitted(12, 65) Source(32, 43) + SourceIndex(0) --- ->>> _a = robots_1[_i].name, nameA = _a === void 0 ? "noName" : _a; +>>> _15 = robots_1[_i].name, nameA = _15 === void 0 ? "noName" : _15; 1->^^^^ -2 > ^^^^^^^^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> 2 > name: nameA = "noName" -3 > -4 > name: nameA = "noName" +3 > +4 > name: nameA = "noName" 1->Emitted(13, 5) Source(32, 7) + SourceIndex(0) -2 >Emitted(13, 27) Source(32, 29) + SourceIndex(0) -3 >Emitted(13, 29) Source(32, 7) + SourceIndex(0) -4 >Emitted(13, 66) Source(32, 29) + SourceIndex(0) +2 >Emitted(13, 28) Source(32, 29) + SourceIndex(0) +3 >Emitted(13, 30) Source(32, 7) + SourceIndex(0) +4 >Emitted(13, 69) Source(32, 29) + SourceIndex(0) --- >>> console.log(nameA); 1 >^^^^ @@ -459,7 +459,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue >} 1 >Emitted(15, 2) Source(34, 2) + SourceIndex(0) --- ->>>for (var _b = 0, _c = getRobots(); _b < _c.length; _b++) { +>>>for (var _a = 0, _b = getRobots(); _a < _b.length; _a++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -472,7 +472,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue 10> ^^ 11> ^^^^ 12> ^^ -13> ^^^^-> +13> ^^^^^^^-> 1-> > 2 >for ({name: nameA = "noName" } of @@ -499,19 +499,19 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue 11>Emitted(16, 56) Source(35, 46) + SourceIndex(0) 12>Emitted(16, 58) Source(35, 48) + SourceIndex(0) --- ->>> _d = _c[_b].name, nameA = _d === void 0 ? "noName" : _d; +>>> _16 = _b[_a].name, nameA = _16 === void 0 ? "noName" : _16; 1->^^^^ -2 > ^^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> 2 > name: nameA = "noName" -3 > -4 > name: nameA = "noName" +3 > +4 > name: nameA = "noName" 1->Emitted(17, 5) Source(35, 7) + SourceIndex(0) -2 >Emitted(17, 21) Source(35, 29) + SourceIndex(0) -3 >Emitted(17, 23) Source(35, 7) + SourceIndex(0) -4 >Emitted(17, 60) Source(35, 29) + SourceIndex(0) +2 >Emitted(17, 22) Source(35, 29) + SourceIndex(0) +3 >Emitted(17, 24) Source(35, 7) + SourceIndex(0) +4 >Emitted(17, 63) Source(35, 29) + SourceIndex(0) --- >>> console.log(nameA); 1 >^^^^ @@ -547,7 +547,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue >} 1 >Emitted(19, 2) Source(37, 2) + SourceIndex(0) --- ->>>for (var _e = 0, _f = [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }]; _e < _f.length; _e++) { +>>>for (var _c = 0, _d = [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }]; _c < _d.length; _c++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -640,19 +640,19 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue 29>Emitted(20, 121) Source(38, 111) + SourceIndex(0) 30>Emitted(20, 123) Source(38, 113) + SourceIndex(0) --- ->>> _g = _f[_e].name, nameA = _g === void 0 ? "noName" : _g; +>>> _17 = _d[_c].name, nameA = _17 === void 0 ? "noName" : _17; 1 >^^^^ -2 > ^^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1 > 2 > name: nameA = "noName" -3 > -4 > name: nameA = "noName" +3 > +4 > name: nameA = "noName" 1 >Emitted(21, 5) Source(38, 7) + SourceIndex(0) -2 >Emitted(21, 21) Source(38, 29) + SourceIndex(0) -3 >Emitted(21, 23) Source(38, 7) + SourceIndex(0) -4 >Emitted(21, 60) Source(38, 29) + SourceIndex(0) +2 >Emitted(21, 22) Source(38, 29) + SourceIndex(0) +3 >Emitted(21, 24) Source(38, 7) + SourceIndex(0) +4 >Emitted(21, 63) Source(38, 29) + SourceIndex(0) --- >>> console.log(nameA); 1 >^^^^ @@ -688,7 +688,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue >} 1 >Emitted(23, 2) Source(40, 2) + SourceIndex(0) --- ->>>for (var _h = 0, multiRobots_1 = multiRobots; _h < multiRobots_1.length; _h++) { +>>>for (var _e = 0, multiRobots_1 = multiRobots; _e < multiRobots_1.length; _e++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -699,7 +699,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue 8 > ^^ 9 > ^^^^ 10> ^^ -11> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +11> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> > 2 >for ({ skills: { primary: primaryA = "primary", secondary: secondaryA = "secondary" } = @@ -723,45 +723,45 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue 9 >Emitted(24, 78) Source(42, 66) + SourceIndex(0) 10>Emitted(24, 80) Source(42, 68) + SourceIndex(0) --- ->>> _j = multiRobots_1[_h].skills, _k = _j === void 0 ? { primary: "nosKill", secondary: "noSkill" } : _j, _l = _k.primary, primaryA = _l === void 0 ? "primary" : _l, _m = _k.secondary, secondaryA = _m === void 0 ? "secondary" : _m; +>>> _18 = multiRobots_1[_e].skills, _19 = _18 === void 0 ? { primary: "nosKill", secondary: "noSkill" } : _18, _20 = _19.primary, primaryA = _20 === void 0 ? "primary" : _20, _21 = _19.secondary, secondaryA = _21 === void 0 ? "secondary" : _21; 1->^^^^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -9 > ^^ -10> ^^^^^^^^^^^^^^^^^ -11> ^^ -12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +9 > ^^ +10> ^^^^^^^^^^^^^^^^^^^ +11> ^^ +12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> 2 > skills: { primary: primaryA = "primary", secondary: secondaryA = "secondary" } = > { primary: "nosKill", secondary: "noSkill" } -3 > -4 > skills: { primary: primaryA = "primary", secondary: secondaryA = "secondary" } = - > { primary: "nosKill", secondary: "noSkill" } -5 > -6 > primary: primaryA = "primary" -7 > -8 > primary: primaryA = "primary" -9 > , -10> secondary: secondaryA = "secondary" -11> -12> secondary: secondaryA = "secondary" +3 > +4 > skills: { primary: primaryA = "primary", secondary: secondaryA = "secondary" } = + > { primary: "nosKill", secondary: "noSkill" } +5 > +6 > primary: primaryA = "primary" +7 > +8 > primary: primaryA = "primary" +9 > , +10> secondary: secondaryA = "secondary" +11> +12> secondary: secondaryA = "secondary" 1->Emitted(25, 5) Source(41, 8) + SourceIndex(0) -2 >Emitted(25, 34) Source(42, 49) + SourceIndex(0) -3 >Emitted(25, 36) Source(41, 8) + SourceIndex(0) -4 >Emitted(25, 106) Source(42, 49) + SourceIndex(0) -5 >Emitted(25, 108) Source(41, 18) + SourceIndex(0) -6 >Emitted(25, 123) Source(41, 47) + SourceIndex(0) -7 >Emitted(25, 125) Source(41, 18) + SourceIndex(0) -8 >Emitted(25, 166) Source(41, 47) + SourceIndex(0) -9 >Emitted(25, 168) Source(41, 49) + SourceIndex(0) -10>Emitted(25, 185) Source(41, 84) + SourceIndex(0) -11>Emitted(25, 187) Source(41, 49) + SourceIndex(0) -12>Emitted(25, 232) Source(41, 84) + SourceIndex(0) +2 >Emitted(25, 35) Source(42, 49) + SourceIndex(0) +3 >Emitted(25, 37) Source(41, 8) + SourceIndex(0) +4 >Emitted(25, 110) Source(42, 49) + SourceIndex(0) +5 >Emitted(25, 112) Source(41, 18) + SourceIndex(0) +6 >Emitted(25, 129) Source(41, 47) + SourceIndex(0) +7 >Emitted(25, 131) Source(41, 18) + SourceIndex(0) +8 >Emitted(25, 174) Source(41, 47) + SourceIndex(0) +9 >Emitted(25, 176) Source(41, 49) + SourceIndex(0) +10>Emitted(25, 195) Source(41, 84) + SourceIndex(0) +11>Emitted(25, 197) Source(41, 49) + SourceIndex(0) +12>Emitted(25, 244) Source(41, 84) + SourceIndex(0) --- >>> console.log(primaryA); 1 >^^^^ @@ -798,7 +798,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue >} 1 >Emitted(27, 2) Source(44, 2) + SourceIndex(0) --- ->>>for (var _o = 0, _p = getMultiRobots(); _o < _p.length; _o++) { +>>>for (var _f = 0, _g = getMultiRobots(); _f < _g.length; _f++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -811,7 +811,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue 10> ^^ 11> ^^^^ 12> ^^ -13> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +13> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> > 2 >for ({ skills: { primary: primaryA = "primary", secondary: secondaryA = "secondary" } = @@ -839,45 +839,45 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue 11>Emitted(28, 61) Source(46, 71) + SourceIndex(0) 12>Emitted(28, 63) Source(46, 73) + SourceIndex(0) --- ->>> _q = _p[_o].skills, _r = _q === void 0 ? { primary: "nosKill", secondary: "noSkill" } : _q, _s = _r.primary, primaryA = _s === void 0 ? "primary" : _s, _t = _r.secondary, secondaryA = _t === void 0 ? "secondary" : _t; +>>> _22 = _g[_f].skills, _23 = _22 === void 0 ? { primary: "nosKill", secondary: "noSkill" } : _22, _24 = _23.primary, primaryA = _24 === void 0 ? "primary" : _24, _25 = _23.secondary, secondaryA = _25 === void 0 ? "secondary" : _25; 1->^^^^ -2 > ^^^^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -9 > ^^ -10> ^^^^^^^^^^^^^^^^^ -11> ^^ -12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +9 > ^^ +10> ^^^^^^^^^^^^^^^^^^^ +11> ^^ +12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> 2 > skills: { primary: primaryA = "primary", secondary: secondaryA = "secondary" } = > { primary: "nosKill", secondary: "noSkill" } -3 > -4 > skills: { primary: primaryA = "primary", secondary: secondaryA = "secondary" } = - > { primary: "nosKill", secondary: "noSkill" } -5 > -6 > primary: primaryA = "primary" -7 > -8 > primary: primaryA = "primary" -9 > , -10> secondary: secondaryA = "secondary" -11> -12> secondary: secondaryA = "secondary" +3 > +4 > skills: { primary: primaryA = "primary", secondary: secondaryA = "secondary" } = + > { primary: "nosKill", secondary: "noSkill" } +5 > +6 > primary: primaryA = "primary" +7 > +8 > primary: primaryA = "primary" +9 > , +10> secondary: secondaryA = "secondary" +11> +12> secondary: secondaryA = "secondary" 1->Emitted(29, 5) Source(45, 8) + SourceIndex(0) -2 >Emitted(29, 23) Source(46, 49) + SourceIndex(0) -3 >Emitted(29, 25) Source(45, 8) + SourceIndex(0) -4 >Emitted(29, 95) Source(46, 49) + SourceIndex(0) -5 >Emitted(29, 97) Source(45, 18) + SourceIndex(0) -6 >Emitted(29, 112) Source(45, 47) + SourceIndex(0) -7 >Emitted(29, 114) Source(45, 18) + SourceIndex(0) -8 >Emitted(29, 155) Source(45, 47) + SourceIndex(0) -9 >Emitted(29, 157) Source(45, 49) + SourceIndex(0) -10>Emitted(29, 174) Source(45, 84) + SourceIndex(0) -11>Emitted(29, 176) Source(45, 49) + SourceIndex(0) -12>Emitted(29, 221) Source(45, 84) + SourceIndex(0) +2 >Emitted(29, 24) Source(46, 49) + SourceIndex(0) +3 >Emitted(29, 26) Source(45, 8) + SourceIndex(0) +4 >Emitted(29, 99) Source(46, 49) + SourceIndex(0) +5 >Emitted(29, 101) Source(45, 18) + SourceIndex(0) +6 >Emitted(29, 118) Source(45, 47) + SourceIndex(0) +7 >Emitted(29, 120) Source(45, 18) + SourceIndex(0) +8 >Emitted(29, 163) Source(45, 47) + SourceIndex(0) +9 >Emitted(29, 165) Source(45, 49) + SourceIndex(0) +10>Emitted(29, 184) Source(45, 84) + SourceIndex(0) +11>Emitted(29, 186) Source(45, 49) + SourceIndex(0) +12>Emitted(29, 233) Source(45, 84) + SourceIndex(0) --- >>> console.log(primaryA); 1 >^^^^ @@ -914,7 +914,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue >} 1 >Emitted(31, 2) Source(48, 2) + SourceIndex(0) --- ->>>for (var _u = 0, _v = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, +>>>for (var _h = 0, _j = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -990,7 +990,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue 22>Emitted(32, 89) Source(51, 85) + SourceIndex(0) 23>Emitted(32, 91) Source(51, 87) + SourceIndex(0) --- ->>> { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _u < _v.length; _u++) { +>>> { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _h < _j.length; _h++) { 1->^^^^ 2 > ^^ 3 > ^^^^ @@ -1015,7 +1015,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue 22> ^^ 23> ^^^^ 24> ^^ -25> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +25> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1->, > 2 > { @@ -1068,45 +1068,45 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue 23>Emitted(33, 101) Source(52, 83) + SourceIndex(0) 24>Emitted(33, 103) Source(52, 85) + SourceIndex(0) --- ->>> _w = _v[_u].skills, _x = _w === void 0 ? { primary: "nosKill", secondary: "noSkill" } : _w, _y = _x.primary, primaryA = _y === void 0 ? "primary" : _y, _z = _x.secondary, secondaryA = _z === void 0 ? "secondary" : _z; +>>> _26 = _j[_h].skills, _27 = _26 === void 0 ? { primary: "nosKill", secondary: "noSkill" } : _26, _28 = _27.primary, primaryA = _28 === void 0 ? "primary" : _28, _29 = _27.secondary, secondaryA = _29 === void 0 ? "secondary" : _29; 1->^^^^ -2 > ^^^^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -9 > ^^ -10> ^^^^^^^^^^^^^^^^^ -11> ^^ -12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +9 > ^^ +10> ^^^^^^^^^^^^^^^^^^^ +11> ^^ +12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> 2 > skills: { primary: primaryA = "primary", secondary: secondaryA = "secondary" } = > { primary: "nosKill", secondary: "noSkill" } -3 > -4 > skills: { primary: primaryA = "primary", secondary: secondaryA = "secondary" } = - > { primary: "nosKill", secondary: "noSkill" } -5 > -6 > primary: primaryA = "primary" -7 > -8 > primary: primaryA = "primary" -9 > , -10> secondary: secondaryA = "secondary" -11> -12> secondary: secondaryA = "secondary" +3 > +4 > skills: { primary: primaryA = "primary", secondary: secondaryA = "secondary" } = + > { primary: "nosKill", secondary: "noSkill" } +5 > +6 > primary: primaryA = "primary" +7 > +8 > primary: primaryA = "primary" +9 > , +10> secondary: secondaryA = "secondary" +11> +12> secondary: secondaryA = "secondary" 1->Emitted(34, 5) Source(49, 8) + SourceIndex(0) -2 >Emitted(34, 23) Source(50, 49) + SourceIndex(0) -3 >Emitted(34, 25) Source(49, 8) + SourceIndex(0) -4 >Emitted(34, 95) Source(50, 49) + SourceIndex(0) -5 >Emitted(34, 97) Source(49, 18) + SourceIndex(0) -6 >Emitted(34, 112) Source(49, 47) + SourceIndex(0) -7 >Emitted(34, 114) Source(49, 18) + SourceIndex(0) -8 >Emitted(34, 155) Source(49, 47) + SourceIndex(0) -9 >Emitted(34, 157) Source(49, 49) + SourceIndex(0) -10>Emitted(34, 174) Source(49, 84) + SourceIndex(0) -11>Emitted(34, 176) Source(49, 49) + SourceIndex(0) -12>Emitted(34, 221) Source(49, 84) + SourceIndex(0) +2 >Emitted(34, 24) Source(50, 49) + SourceIndex(0) +3 >Emitted(34, 26) Source(49, 8) + SourceIndex(0) +4 >Emitted(34, 99) Source(50, 49) + SourceIndex(0) +5 >Emitted(34, 101) Source(49, 18) + SourceIndex(0) +6 >Emitted(34, 118) Source(49, 47) + SourceIndex(0) +7 >Emitted(34, 120) Source(49, 18) + SourceIndex(0) +8 >Emitted(34, 163) Source(49, 47) + SourceIndex(0) +9 >Emitted(34, 165) Source(49, 49) + SourceIndex(0) +10>Emitted(34, 184) Source(49, 84) + SourceIndex(0) +11>Emitted(34, 186) Source(49, 49) + SourceIndex(0) +12>Emitted(34, 233) Source(49, 84) + SourceIndex(0) --- >>> console.log(primaryA); 1 >^^^^ @@ -1145,7 +1145,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue >} 1 >Emitted(36, 2) Source(54, 2) + SourceIndex(0) --- ->>>for (var _0 = 0, robots_2 = robots; _0 < robots_2.length; _0++) { +>>>for (var _k = 0, robots_2 = robots; _k < robots_2.length; _k++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -1156,7 +1156,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue 8 > ^^ 9 > ^^^^ 10> ^^ -11> ^^-> +11> ^^^^^-> 1-> > > @@ -1180,19 +1180,19 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue 9 >Emitted(37, 63) Source(56, 35) + SourceIndex(0) 10>Emitted(37, 65) Source(56, 37) + SourceIndex(0) --- ->>> _1 = robots_2[_0].name, name = _1 === void 0 ? "noName" : _1; +>>> _30 = robots_2[_k].name, name = _30 === void 0 ? "noName" : _30; 1->^^^^ -2 > ^^^^^^^^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> 2 > name = "noName" -3 > -4 > name = "noName" +3 > +4 > name = "noName" 1->Emitted(38, 5) Source(56, 8) + SourceIndex(0) -2 >Emitted(38, 27) Source(56, 23) + SourceIndex(0) -3 >Emitted(38, 29) Source(56, 8) + SourceIndex(0) -4 >Emitted(38, 65) Source(56, 23) + SourceIndex(0) +2 >Emitted(38, 28) Source(56, 23) + SourceIndex(0) +3 >Emitted(38, 30) Source(56, 8) + SourceIndex(0) +4 >Emitted(38, 68) Source(56, 23) + SourceIndex(0) --- >>> console.log(nameA); 1 >^^^^ @@ -1228,7 +1228,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue >} 1 >Emitted(40, 2) Source(58, 2) + SourceIndex(0) --- ->>>for (var _2 = 0, _3 = getRobots(); _2 < _3.length; _2++) { +>>>for (var _l = 0, _m = getRobots(); _l < _m.length; _l++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -1241,7 +1241,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue 10> ^^ 11> ^^^^ 12> ^^ -13> ^^^-> +13> ^^^^^^-> 1-> > 2 >for ({ name = "noName" } of @@ -1268,19 +1268,19 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue 11>Emitted(41, 56) Source(59, 40) + SourceIndex(0) 12>Emitted(41, 58) Source(59, 42) + SourceIndex(0) --- ->>> _4 = _3[_2].name, name = _4 === void 0 ? "noName" : _4; +>>> _31 = _m[_l].name, name = _31 === void 0 ? "noName" : _31; 1->^^^^ -2 > ^^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> 2 > name = "noName" -3 > -4 > name = "noName" +3 > +4 > name = "noName" 1->Emitted(42, 5) Source(59, 8) + SourceIndex(0) -2 >Emitted(42, 21) Source(59, 23) + SourceIndex(0) -3 >Emitted(42, 23) Source(59, 8) + SourceIndex(0) -4 >Emitted(42, 59) Source(59, 23) + SourceIndex(0) +2 >Emitted(42, 22) Source(59, 23) + SourceIndex(0) +3 >Emitted(42, 24) Source(59, 8) + SourceIndex(0) +4 >Emitted(42, 62) Source(59, 23) + SourceIndex(0) --- >>> console.log(nameA); 1 >^^^^ @@ -1316,7 +1316,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue >} 1 >Emitted(44, 2) Source(61, 2) + SourceIndex(0) --- ->>>for (var _5 = 0, _6 = [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }]; _5 < _6.length; _5++) { +>>>for (var _o = 0, _p = [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }]; _o < _p.length; _o++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -1409,19 +1409,19 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue 29>Emitted(45, 121) Source(62, 105) + SourceIndex(0) 30>Emitted(45, 123) Source(62, 107) + SourceIndex(0) --- ->>> _7 = _6[_5].name, name = _7 === void 0 ? "noName" : _7; +>>> _32 = _p[_o].name, name = _32 === void 0 ? "noName" : _32; 1 >^^^^ -2 > ^^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1 > 2 > name = "noName" -3 > -4 > name = "noName" +3 > +4 > name = "noName" 1 >Emitted(46, 5) Source(62, 8) + SourceIndex(0) -2 >Emitted(46, 21) Source(62, 23) + SourceIndex(0) -3 >Emitted(46, 23) Source(62, 8) + SourceIndex(0) -4 >Emitted(46, 59) Source(62, 23) + SourceIndex(0) +2 >Emitted(46, 22) Source(62, 23) + SourceIndex(0) +3 >Emitted(46, 24) Source(62, 8) + SourceIndex(0) +4 >Emitted(46, 62) Source(62, 23) + SourceIndex(0) --- >>> console.log(nameA); 1 >^^^^ @@ -1457,7 +1457,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue >} 1 >Emitted(48, 2) Source(64, 2) + SourceIndex(0) --- ->>>for (var _8 = 0, multiRobots_2 = multiRobots; _8 < multiRobots_2.length; _8++) { +>>>for (var _q = 0, multiRobots_2 = multiRobots; _q < multiRobots_2.length; _q++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^ @@ -1468,7 +1468,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue 8 > ^^ 9 > ^^^^ 10> ^^ -11> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +11> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> > 2 >for ({ @@ -1496,50 +1496,50 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue 9 >Emitted(49, 78) Source(70, 17) + SourceIndex(0) 10>Emitted(49, 80) Source(70, 19) + SourceIndex(0) --- ->>> _9 = multiRobots_2[_8].skills, _10 = _9 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _9, _11 = _10.primary, primary = _11 === void 0 ? "primary" : _11, _12 = _10.secondary, secondary = _12 === void 0 ? "secondary" : _12; +>>> _33 = multiRobots_2[_q].skills, _34 = _33 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _33, _35 = _34.primary, primary = _35 === void 0 ? "primary" : _35, _36 = _34.secondary, secondary = _36 === void 0 ? "secondary" : _36; 1->^^^^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -9 > ^^ -10> ^^^^^^^^^^^^^^^^^^^ -11> ^^ -12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +9 > ^^ +10> ^^^^^^^^^^^^^^^^^^^ +11> ^^ +12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> 2 > skills: { > primary = "primary", > secondary = "secondary" > } = { primary: "noSkill", secondary: "noSkill" } -3 > -4 > skills: { - > primary = "primary", - > secondary = "secondary" - > } = { primary: "noSkill", secondary: "noSkill" } -5 > -6 > primary = "primary" -7 > -8 > primary = "primary" -9 > , - > -10> secondary = "secondary" -11> -12> secondary = "secondary" +3 > +4 > skills: { + > primary = "primary", + > secondary = "secondary" + > } = { primary: "noSkill", secondary: "noSkill" } +5 > +6 > primary = "primary" +7 > +8 > primary = "primary" +9 > , + > +10> secondary = "secondary" +11> +12> secondary = "secondary" 1->Emitted(50, 5) Source(66, 5) + SourceIndex(0) -2 >Emitted(50, 34) Source(69, 53) + SourceIndex(0) -3 >Emitted(50, 36) Source(66, 5) + SourceIndex(0) -4 >Emitted(50, 107) Source(69, 53) + SourceIndex(0) -5 >Emitted(50, 109) Source(67, 9) + SourceIndex(0) -6 >Emitted(50, 126) Source(67, 28) + SourceIndex(0) -7 >Emitted(50, 128) Source(67, 9) + SourceIndex(0) -8 >Emitted(50, 170) Source(67, 28) + SourceIndex(0) -9 >Emitted(50, 172) Source(68, 9) + SourceIndex(0) -10>Emitted(50, 191) Source(68, 32) + SourceIndex(0) -11>Emitted(50, 193) Source(68, 9) + SourceIndex(0) -12>Emitted(50, 239) Source(68, 32) + SourceIndex(0) +2 >Emitted(50, 35) Source(69, 53) + SourceIndex(0) +3 >Emitted(50, 37) Source(66, 5) + SourceIndex(0) +4 >Emitted(50, 110) Source(69, 53) + SourceIndex(0) +5 >Emitted(50, 112) Source(67, 9) + SourceIndex(0) +6 >Emitted(50, 129) Source(67, 28) + SourceIndex(0) +7 >Emitted(50, 131) Source(67, 9) + SourceIndex(0) +8 >Emitted(50, 173) Source(67, 28) + SourceIndex(0) +9 >Emitted(50, 175) Source(68, 9) + SourceIndex(0) +10>Emitted(50, 194) Source(68, 32) + SourceIndex(0) +11>Emitted(50, 196) Source(68, 9) + SourceIndex(0) +12>Emitted(50, 242) Source(68, 32) + SourceIndex(0) --- >>> console.log(primaryA); 1 >^^^^ @@ -1572,25 +1572,25 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(52, 2) Source(72, 2) + SourceIndex(0) --- ->>>for (var _13 = 0, _14 = getMultiRobots(); _13 < _14.length; _13++) { +>>>for (var _r = 0, _s = getMultiRobots(); _r < _s.length; _r++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^ -6 > ^^^^^^^^^^^^^^ -7 > ^^ -8 > ^^ -9 > ^^^^^^^^^^^^^^^^ -10> ^^ -11> ^^^^^ -12> ^^ -13> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^ +6 > ^^^^^^^^^^^^^^ +7 > ^^ +8 > ^^ +9 > ^^^^^^^^^^^^^^ +10> ^^ +11> ^^^^ +12> ^^ +13> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> > 2 >for ({ @@ -1600,72 +1600,72 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue > } = { primary: "noSkill", secondary: "noSkill" } >} of 3 > getMultiRobots() -4 > -5 > -6 > getMultiRobots -7 > () -8 > -9 > getMultiRobots() -10> -11> getMultiRobots() -12> ) +4 > +5 > +6 > getMultiRobots +7 > () +8 > +9 > getMultiRobots() +10> +11> getMultiRobots() +12> ) 1->Emitted(53, 1) Source(73, 1) + SourceIndex(0) 2 >Emitted(53, 6) Source(78, 6) + SourceIndex(0) -3 >Emitted(53, 17) Source(78, 22) + SourceIndex(0) -4 >Emitted(53, 19) Source(78, 6) + SourceIndex(0) -5 >Emitted(53, 25) Source(78, 6) + SourceIndex(0) -6 >Emitted(53, 39) Source(78, 20) + SourceIndex(0) -7 >Emitted(53, 41) Source(78, 22) + SourceIndex(0) -8 >Emitted(53, 43) Source(78, 6) + SourceIndex(0) -9 >Emitted(53, 59) Source(78, 22) + SourceIndex(0) -10>Emitted(53, 61) Source(78, 6) + SourceIndex(0) -11>Emitted(53, 66) Source(78, 22) + SourceIndex(0) -12>Emitted(53, 68) Source(78, 24) + SourceIndex(0) +3 >Emitted(53, 16) Source(78, 22) + SourceIndex(0) +4 >Emitted(53, 18) Source(78, 6) + SourceIndex(0) +5 >Emitted(53, 23) Source(78, 6) + SourceIndex(0) +6 >Emitted(53, 37) Source(78, 20) + SourceIndex(0) +7 >Emitted(53, 39) Source(78, 22) + SourceIndex(0) +8 >Emitted(53, 41) Source(78, 6) + SourceIndex(0) +9 >Emitted(53, 55) Source(78, 22) + SourceIndex(0) +10>Emitted(53, 57) Source(78, 6) + SourceIndex(0) +11>Emitted(53, 61) Source(78, 22) + SourceIndex(0) +12>Emitted(53, 63) Source(78, 24) + SourceIndex(0) --- ->>> _15 = _14[_13].skills, _16 = _15 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _15, _17 = _16.primary, primary = _17 === void 0 ? "primary" : _17, _18 = _16.secondary, secondary = _18 === void 0 ? "secondary" : _18; +>>> _37 = _s[_r].skills, _38 = _37 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _37, _39 = _38.primary, primary = _39 === void 0 ? "primary" : _39, _40 = _38.secondary, secondary = _40 === void 0 ? "secondary" : _40; 1->^^^^ -2 > ^^^^^^^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -9 > ^^ -10> ^^^^^^^^^^^^^^^^^^^ -11> ^^ -12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +9 > ^^ +10> ^^^^^^^^^^^^^^^^^^^ +11> ^^ +12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> 2 > skills: { > primary = "primary", > secondary = "secondary" > } = { primary: "noSkill", secondary: "noSkill" } -3 > -4 > skills: { - > primary = "primary", - > secondary = "secondary" - > } = { primary: "noSkill", secondary: "noSkill" } -5 > -6 > primary = "primary" -7 > -8 > primary = "primary" -9 > , - > -10> secondary = "secondary" -11> -12> secondary = "secondary" +3 > +4 > skills: { + > primary = "primary", + > secondary = "secondary" + > } = { primary: "noSkill", secondary: "noSkill" } +5 > +6 > primary = "primary" +7 > +8 > primary = "primary" +9 > , + > +10> secondary = "secondary" +11> +12> secondary = "secondary" 1->Emitted(54, 5) Source(74, 5) + SourceIndex(0) -2 >Emitted(54, 26) Source(77, 53) + SourceIndex(0) -3 >Emitted(54, 28) Source(74, 5) + SourceIndex(0) -4 >Emitted(54, 101) Source(77, 53) + SourceIndex(0) -5 >Emitted(54, 103) Source(75, 9) + SourceIndex(0) -6 >Emitted(54, 120) Source(75, 28) + SourceIndex(0) -7 >Emitted(54, 122) Source(75, 9) + SourceIndex(0) -8 >Emitted(54, 164) Source(75, 28) + SourceIndex(0) -9 >Emitted(54, 166) Source(76, 9) + SourceIndex(0) -10>Emitted(54, 185) Source(76, 32) + SourceIndex(0) -11>Emitted(54, 187) Source(76, 9) + SourceIndex(0) -12>Emitted(54, 233) Source(76, 32) + SourceIndex(0) +2 >Emitted(54, 24) Source(77, 53) + SourceIndex(0) +3 >Emitted(54, 26) Source(74, 5) + SourceIndex(0) +4 >Emitted(54, 99) Source(77, 53) + SourceIndex(0) +5 >Emitted(54, 101) Source(75, 9) + SourceIndex(0) +6 >Emitted(54, 118) Source(75, 28) + SourceIndex(0) +7 >Emitted(54, 120) Source(75, 9) + SourceIndex(0) +8 >Emitted(54, 162) Source(75, 28) + SourceIndex(0) +9 >Emitted(54, 164) Source(76, 9) + SourceIndex(0) +10>Emitted(54, 183) Source(76, 32) + SourceIndex(0) +11>Emitted(54, 185) Source(76, 9) + SourceIndex(0) +12>Emitted(54, 231) Source(76, 32) + SourceIndex(0) --- >>> console.log(primaryA); 1 >^^^^ @@ -1698,35 +1698,35 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(56, 2) Source(80, 2) + SourceIndex(0) --- ->>>for (var _19 = 0, _20 = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, +>>>for (var _t = 0, _u = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^^ -6 > ^^ -7 > ^^^^ -8 > ^^ -9 > ^^^^^^^ -10> ^^ -11> ^^^^^^ -12> ^^ -13> ^^ -14> ^^^^^^^ -15> ^^ -16> ^^^^^^^^ -17> ^^ -18> ^^^^^^^^^ -19> ^^ -20> ^^^^^^ -21> ^^ -22> ^^ -23> ^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^^ +6 > ^^ +7 > ^^^^ +8 > ^^ +9 > ^^^^^^^ +10> ^^ +11> ^^^^^^ +12> ^^ +13> ^^ +14> ^^^^^^^ +15> ^^ +16> ^^^^^^^^ +17> ^^ +18> ^^^^^^^^^ +19> ^^ +20> ^^^^^^ +21> ^^ +22> ^^ +23> ^^^^^^^^^^^^^^-> 1-> > 2 >for ({ @@ -1737,49 +1737,49 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue >} of 3 > [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, > { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }] -4 > -5 > [ -6 > { -7 > name -8 > : -9 > "mower" -10> , -11> skills -12> : -13> { -14> primary -15> : -16> "mowing" -17> , -18> secondary -19> : -20> "none" -21> } -22> } +4 > +5 > [ +6 > { +7 > name +8 > : +9 > "mower" +10> , +11> skills +12> : +13> { +14> primary +15> : +16> "mowing" +17> , +18> secondary +19> : +20> "none" +21> } +22> } 1->Emitted(57, 1) Source(81, 1) + SourceIndex(0) 2 >Emitted(57, 6) Source(86, 6) + SourceIndex(0) -3 >Emitted(57, 17) Source(87, 79) + SourceIndex(0) -4 >Emitted(57, 19) Source(86, 6) + SourceIndex(0) -5 >Emitted(57, 26) Source(86, 7) + SourceIndex(0) -6 >Emitted(57, 28) Source(86, 9) + SourceIndex(0) -7 >Emitted(57, 32) Source(86, 13) + SourceIndex(0) -8 >Emitted(57, 34) Source(86, 15) + SourceIndex(0) -9 >Emitted(57, 41) Source(86, 22) + SourceIndex(0) -10>Emitted(57, 43) Source(86, 24) + SourceIndex(0) -11>Emitted(57, 49) Source(86, 30) + SourceIndex(0) -12>Emitted(57, 51) Source(86, 32) + SourceIndex(0) -13>Emitted(57, 53) Source(86, 34) + SourceIndex(0) -14>Emitted(57, 60) Source(86, 41) + SourceIndex(0) -15>Emitted(57, 62) Source(86, 43) + SourceIndex(0) -16>Emitted(57, 70) Source(86, 51) + SourceIndex(0) -17>Emitted(57, 72) Source(86, 53) + SourceIndex(0) -18>Emitted(57, 81) Source(86, 62) + SourceIndex(0) -19>Emitted(57, 83) Source(86, 64) + SourceIndex(0) -20>Emitted(57, 89) Source(86, 70) + SourceIndex(0) -21>Emitted(57, 91) Source(86, 72) + SourceIndex(0) -22>Emitted(57, 93) Source(86, 74) + SourceIndex(0) +3 >Emitted(57, 16) Source(87, 79) + SourceIndex(0) +4 >Emitted(57, 18) Source(86, 6) + SourceIndex(0) +5 >Emitted(57, 24) Source(86, 7) + SourceIndex(0) +6 >Emitted(57, 26) Source(86, 9) + SourceIndex(0) +7 >Emitted(57, 30) Source(86, 13) + SourceIndex(0) +8 >Emitted(57, 32) Source(86, 15) + SourceIndex(0) +9 >Emitted(57, 39) Source(86, 22) + SourceIndex(0) +10>Emitted(57, 41) Source(86, 24) + SourceIndex(0) +11>Emitted(57, 47) Source(86, 30) + SourceIndex(0) +12>Emitted(57, 49) Source(86, 32) + SourceIndex(0) +13>Emitted(57, 51) Source(86, 34) + SourceIndex(0) +14>Emitted(57, 58) Source(86, 41) + SourceIndex(0) +15>Emitted(57, 60) Source(86, 43) + SourceIndex(0) +16>Emitted(57, 68) Source(86, 51) + SourceIndex(0) +17>Emitted(57, 70) Source(86, 53) + SourceIndex(0) +18>Emitted(57, 79) Source(86, 62) + SourceIndex(0) +19>Emitted(57, 81) Source(86, 64) + SourceIndex(0) +20>Emitted(57, 87) Source(86, 70) + SourceIndex(0) +21>Emitted(57, 89) Source(86, 72) + SourceIndex(0) +22>Emitted(57, 91) Source(86, 74) + SourceIndex(0) --- ->>> { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _19 < _20.length; _19++) { +>>> { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _t < _u.length; _t++) { 1->^^^^ 2 > ^^ 3 > ^^^^ @@ -1800,11 +1800,11 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue 18> ^^ 19> ^ 20> ^^ -21> ^^^^^^^^^^^^^^^^ -22> ^^ -23> ^^^^^ -24> ^^ -25> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +21> ^^^^^^^^^^^^^^ +22> ^^ +23> ^^^^ +24> ^^ +25> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1->, > 2 > { @@ -1828,10 +1828,10 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue 20> 21> [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, > { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }] -22> -23> [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, - > { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }] -24> ) +22> +23> [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, + > { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }] +24> ) 1->Emitted(58, 5) Source(87, 5) + SourceIndex(0) 2 >Emitted(58, 7) Source(87, 7) + SourceIndex(0) 3 >Emitted(58, 11) Source(87, 11) + SourceIndex(0) @@ -1852,55 +1852,55 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue 18>Emitted(58, 78) Source(87, 78) + SourceIndex(0) 19>Emitted(58, 79) Source(87, 79) + SourceIndex(0) 20>Emitted(58, 81) Source(86, 6) + SourceIndex(0) -21>Emitted(58, 97) Source(87, 79) + SourceIndex(0) -22>Emitted(58, 99) Source(86, 6) + SourceIndex(0) -23>Emitted(58, 104) Source(87, 79) + SourceIndex(0) -24>Emitted(58, 106) Source(87, 81) + SourceIndex(0) +21>Emitted(58, 95) Source(87, 79) + SourceIndex(0) +22>Emitted(58, 97) Source(86, 6) + SourceIndex(0) +23>Emitted(58, 101) Source(87, 79) + SourceIndex(0) +24>Emitted(58, 103) Source(87, 81) + SourceIndex(0) --- ->>> _21 = _20[_19].skills, _22 = _21 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _21, _23 = _22.primary, primary = _23 === void 0 ? "primary" : _23, _24 = _22.secondary, secondary = _24 === void 0 ? "secondary" : _24; +>>> _41 = _u[_t].skills, _42 = _41 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _41, _43 = _42.primary, primary = _43 === void 0 ? "primary" : _43, _44 = _42.secondary, secondary = _44 === void 0 ? "secondary" : _44; 1->^^^^ -2 > ^^^^^^^^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -9 > ^^ -10> ^^^^^^^^^^^^^^^^^^^ -11> ^^ -12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +9 > ^^ +10> ^^^^^^^^^^^^^^^^^^^ +11> ^^ +12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> 2 > skills: { > primary = "primary", > secondary = "secondary" > } = { primary: "noSkill", secondary: "noSkill" } -3 > -4 > skills: { - > primary = "primary", - > secondary = "secondary" - > } = { primary: "noSkill", secondary: "noSkill" } -5 > -6 > primary = "primary" -7 > -8 > primary = "primary" -9 > , - > -10> secondary = "secondary" -11> -12> secondary = "secondary" +3 > +4 > skills: { + > primary = "primary", + > secondary = "secondary" + > } = { primary: "noSkill", secondary: "noSkill" } +5 > +6 > primary = "primary" +7 > +8 > primary = "primary" +9 > , + > +10> secondary = "secondary" +11> +12> secondary = "secondary" 1->Emitted(59, 5) Source(82, 5) + SourceIndex(0) -2 >Emitted(59, 26) Source(85, 53) + SourceIndex(0) -3 >Emitted(59, 28) Source(82, 5) + SourceIndex(0) -4 >Emitted(59, 101) Source(85, 53) + SourceIndex(0) -5 >Emitted(59, 103) Source(83, 9) + SourceIndex(0) -6 >Emitted(59, 120) Source(83, 28) + SourceIndex(0) -7 >Emitted(59, 122) Source(83, 9) + SourceIndex(0) -8 >Emitted(59, 164) Source(83, 28) + SourceIndex(0) -9 >Emitted(59, 166) Source(84, 9) + SourceIndex(0) -10>Emitted(59, 185) Source(84, 32) + SourceIndex(0) -11>Emitted(59, 187) Source(84, 9) + SourceIndex(0) -12>Emitted(59, 233) Source(84, 32) + SourceIndex(0) +2 >Emitted(59, 24) Source(85, 53) + SourceIndex(0) +3 >Emitted(59, 26) Source(82, 5) + SourceIndex(0) +4 >Emitted(59, 99) Source(85, 53) + SourceIndex(0) +5 >Emitted(59, 101) Source(83, 9) + SourceIndex(0) +6 >Emitted(59, 118) Source(83, 28) + SourceIndex(0) +7 >Emitted(59, 120) Source(83, 9) + SourceIndex(0) +8 >Emitted(59, 162) Source(83, 28) + SourceIndex(0) +9 >Emitted(59, 164) Source(84, 9) + SourceIndex(0) +10>Emitted(59, 183) Source(84, 32) + SourceIndex(0) +11>Emitted(59, 185) Source(84, 9) + SourceIndex(0) +12>Emitted(59, 231) Source(84, 32) + SourceIndex(0) --- >>> console.log(primaryA); 1 >^^^^ @@ -1934,72 +1934,72 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(61, 2) Source(89, 2) + SourceIndex(0) --- ->>>for (var _25 = 0, robots_3 = robots; _25 < robots_3.length; _25++) { +>>>for (var _v = 0, robots_3 = robots; _v < robots_3.length; _v++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^^^^^^^^^^^^ -6 > ^^ -7 > ^^^^^^^^^^^^^^^^^^^^^ -8 > ^^ -9 > ^^^^^ -10> ^^ -11> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^^^^^^^^^^^^^ +6 > ^^ +7 > ^^^^^^^^^^^^^^^^^^^^ +8 > ^^ +9 > ^^^^ +10> ^^ +11> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> > > > 2 >for ({name: nameA = "noName", skill: skillA = "noSkill" } of 3 > robots -4 > -5 > robots -6 > -7 > robots -8 > -9 > robots -10> ) +4 > +5 > robots +6 > +7 > robots +8 > +9 > robots +10> ) 1->Emitted(62, 1) Source(92, 1) + SourceIndex(0) 2 >Emitted(62, 6) Source(92, 62) + SourceIndex(0) -3 >Emitted(62, 17) Source(92, 68) + SourceIndex(0) -4 >Emitted(62, 19) Source(92, 62) + SourceIndex(0) -5 >Emitted(62, 36) Source(92, 68) + SourceIndex(0) -6 >Emitted(62, 38) Source(92, 62) + SourceIndex(0) -7 >Emitted(62, 59) Source(92, 68) + SourceIndex(0) -8 >Emitted(62, 61) Source(92, 62) + SourceIndex(0) -9 >Emitted(62, 66) Source(92, 68) + SourceIndex(0) -10>Emitted(62, 68) Source(92, 70) + SourceIndex(0) +3 >Emitted(62, 16) Source(92, 68) + SourceIndex(0) +4 >Emitted(62, 18) Source(92, 62) + SourceIndex(0) +5 >Emitted(62, 35) Source(92, 68) + SourceIndex(0) +6 >Emitted(62, 37) Source(92, 62) + SourceIndex(0) +7 >Emitted(62, 57) Source(92, 68) + SourceIndex(0) +8 >Emitted(62, 59) Source(92, 62) + SourceIndex(0) +9 >Emitted(62, 63) Source(92, 68) + SourceIndex(0) +10>Emitted(62, 65) Source(92, 70) + SourceIndex(0) --- ->>> _26 = robots_3[_25], _27 = _26.name, nameA = _27 === void 0 ? "noName" : _27, _28 = _26.skill, skillA = _28 === void 0 ? "noSkill" : _28; -1->^^^^^^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +>>> _45 = robots_3[_v], _46 = _45.name, nameA = _46 === void 0 ? "noName" : _46, _47 = _45.skill, skillA = _47 === void 0 ? "noSkill" : _47; +1->^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > name: nameA = "noName" -3 > -4 > name: nameA = "noName" -5 > , -6 > skill: skillA = "noSkill" -7 > -8 > skill: skillA = "noSkill" -1->Emitted(63, 26) Source(92, 7) + SourceIndex(0) -2 >Emitted(63, 40) Source(92, 29) + SourceIndex(0) -3 >Emitted(63, 42) Source(92, 7) + SourceIndex(0) -4 >Emitted(63, 81) Source(92, 29) + SourceIndex(0) -5 >Emitted(63, 83) Source(92, 31) + SourceIndex(0) -6 >Emitted(63, 98) Source(92, 56) + SourceIndex(0) -7 >Emitted(63, 100) Source(92, 31) + SourceIndex(0) -8 >Emitted(63, 141) Source(92, 56) + SourceIndex(0) +2 > name: nameA = "noName" +3 > +4 > name: nameA = "noName" +5 > , +6 > skill: skillA = "noSkill" +7 > +8 > skill: skillA = "noSkill" +1->Emitted(63, 25) Source(92, 7) + SourceIndex(0) +2 >Emitted(63, 39) Source(92, 29) + SourceIndex(0) +3 >Emitted(63, 41) Source(92, 7) + SourceIndex(0) +4 >Emitted(63, 80) Source(92, 29) + SourceIndex(0) +5 >Emitted(63, 82) Source(92, 31) + SourceIndex(0) +6 >Emitted(63, 97) Source(92, 56) + SourceIndex(0) +7 >Emitted(63, 99) Source(92, 31) + SourceIndex(0) +8 >Emitted(63, 140) Source(92, 56) + SourceIndex(0) --- >>> console.log(nameA); 1 >^^^^ @@ -2030,76 +2030,76 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(65, 2) Source(94, 2) + SourceIndex(0) --- ->>>for (var _29 = 0, _30 = getRobots(); _29 < _30.length; _29++) { +>>>for (var _w = 0, _x = getRobots(); _w < _x.length; _w++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^ -6 > ^^^^^^^^^ -7 > ^^ -8 > ^^ -9 > ^^^^^^^^^^^^^^^^ -10> ^^ -11> ^^^^^ -12> ^^ -13> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^ +6 > ^^^^^^^^^ +7 > ^^ +8 > ^^ +9 > ^^^^^^^^^^^^^^ +10> ^^ +11> ^^^^ +12> ^^ +13> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> > 2 >for ({name: nameA = "noName", skill: skillA = "noSkill" } of 3 > getRobots() -4 > -5 > -6 > getRobots -7 > () -8 > -9 > getRobots() -10> -11> getRobots() -12> ) +4 > +5 > +6 > getRobots +7 > () +8 > +9 > getRobots() +10> +11> getRobots() +12> ) 1->Emitted(66, 1) Source(95, 1) + SourceIndex(0) 2 >Emitted(66, 6) Source(95, 63) + SourceIndex(0) -3 >Emitted(66, 17) Source(95, 74) + SourceIndex(0) -4 >Emitted(66, 19) Source(95, 63) + SourceIndex(0) -5 >Emitted(66, 25) Source(95, 63) + SourceIndex(0) -6 >Emitted(66, 34) Source(95, 72) + SourceIndex(0) -7 >Emitted(66, 36) Source(95, 74) + SourceIndex(0) -8 >Emitted(66, 38) Source(95, 63) + SourceIndex(0) -9 >Emitted(66, 54) Source(95, 74) + SourceIndex(0) -10>Emitted(66, 56) Source(95, 63) + SourceIndex(0) -11>Emitted(66, 61) Source(95, 74) + SourceIndex(0) -12>Emitted(66, 63) Source(95, 76) + SourceIndex(0) +3 >Emitted(66, 16) Source(95, 74) + SourceIndex(0) +4 >Emitted(66, 18) Source(95, 63) + SourceIndex(0) +5 >Emitted(66, 23) Source(95, 63) + SourceIndex(0) +6 >Emitted(66, 32) Source(95, 72) + SourceIndex(0) +7 >Emitted(66, 34) Source(95, 74) + SourceIndex(0) +8 >Emitted(66, 36) Source(95, 63) + SourceIndex(0) +9 >Emitted(66, 50) Source(95, 74) + SourceIndex(0) +10>Emitted(66, 52) Source(95, 63) + SourceIndex(0) +11>Emitted(66, 56) Source(95, 74) + SourceIndex(0) +12>Emitted(66, 58) Source(95, 76) + SourceIndex(0) --- ->>> _31 = _30[_29], _32 = _31.name, nameA = _32 === void 0 ? "noName" : _32, _33 = _31.skill, skillA = _33 === void 0 ? "noSkill" : _33; -1->^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +>>> _48 = _x[_w], _49 = _48.name, nameA = _49 === void 0 ? "noName" : _49, _50 = _48.skill, skillA = _50 === void 0 ? "noSkill" : _50; +1->^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > name: nameA = "noName" -3 > -4 > name: nameA = "noName" -5 > , -6 > skill: skillA = "noSkill" -7 > -8 > skill: skillA = "noSkill" -1->Emitted(67, 21) Source(95, 7) + SourceIndex(0) -2 >Emitted(67, 35) Source(95, 29) + SourceIndex(0) -3 >Emitted(67, 37) Source(95, 7) + SourceIndex(0) -4 >Emitted(67, 76) Source(95, 29) + SourceIndex(0) -5 >Emitted(67, 78) Source(95, 31) + SourceIndex(0) -6 >Emitted(67, 93) Source(95, 56) + SourceIndex(0) -7 >Emitted(67, 95) Source(95, 31) + SourceIndex(0) -8 >Emitted(67, 136) Source(95, 56) + SourceIndex(0) +2 > name: nameA = "noName" +3 > +4 > name: nameA = "noName" +5 > , +6 > skill: skillA = "noSkill" +7 > +8 > skill: skillA = "noSkill" +1->Emitted(67, 19) Source(95, 7) + SourceIndex(0) +2 >Emitted(67, 33) Source(95, 29) + SourceIndex(0) +3 >Emitted(67, 35) Source(95, 7) + SourceIndex(0) +4 >Emitted(67, 74) Source(95, 29) + SourceIndex(0) +5 >Emitted(67, 76) Source(95, 31) + SourceIndex(0) +6 >Emitted(67, 91) Source(95, 56) + SourceIndex(0) +7 >Emitted(67, 93) Source(95, 31) + SourceIndex(0) +8 >Emitted(67, 134) Source(95, 56) + SourceIndex(0) --- >>> console.log(nameA); 1 >^^^^ @@ -2130,130 +2130,130 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(69, 2) Source(97, 2) + SourceIndex(0) --- ->>>for (var _34 = 0, _35 = [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }]; _34 < _35.length; _34++) { +>>>for (var _y = 0, _z = [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }]; _y < _z.length; _y++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^^ -6 > ^^ -7 > ^^^^ -8 > ^^ -9 > ^^^^^^^ -10> ^^ -11> ^^^^^ -12> ^^ -13> ^^^^^^^^ -14> ^^ -15> ^^ -16> ^^ -17> ^^^^ -18> ^^ -19> ^^^^^^^^^ -20> ^^ -21> ^^^^^ -22> ^^ -23> ^^^^^^^^^^ -24> ^^ -25> ^ -26> ^^ -27> ^^^^^^^^^^^^^^^^ -28> ^^ -29> ^^^^^ -30> ^^ -31> ^^^^^^^^^^-> +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^^ +6 > ^^ +7 > ^^^^ +8 > ^^ +9 > ^^^^^^^ +10> ^^ +11> ^^^^^ +12> ^^ +13> ^^^^^^^^ +14> ^^ +15> ^^ +16> ^^ +17> ^^^^ +18> ^^ +19> ^^^^^^^^^ +20> ^^ +21> ^^^^^ +22> ^^ +23> ^^^^^^^^^^ +24> ^^ +25> ^ +26> ^^ +27> ^^^^^^^^^^^^^^ +28> ^^ +29> ^^^^ +30> ^^ +31> ^^^^^^^^^^^^^-> 1-> > 2 >for ({name: nameA = "noName", skill: skillA = "noSkill" } of 3 > [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }] -4 > -5 > [ -6 > { -7 > name -8 > : -9 > "mower" -10> , -11> skill -12> : -13> "mowing" -14> } -15> , -16> { -17> name -18> : -19> "trimmer" -20> , -21> skill -22> : -23> "trimming" -24> } -25> ] -26> -27> [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }] -28> -29> [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }] -30> ) +4 > +5 > [ +6 > { +7 > name +8 > : +9 > "mower" +10> , +11> skill +12> : +13> "mowing" +14> } +15> , +16> { +17> name +18> : +19> "trimmer" +20> , +21> skill +22> : +23> "trimming" +24> } +25> ] +26> +27> [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }] +28> +29> [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }] +30> ) 1->Emitted(70, 1) Source(98, 1) + SourceIndex(0) 2 >Emitted(70, 6) Source(98, 63) + SourceIndex(0) -3 >Emitted(70, 17) Source(98, 139) + SourceIndex(0) -4 >Emitted(70, 19) Source(98, 63) + SourceIndex(0) -5 >Emitted(70, 26) Source(98, 64) + SourceIndex(0) -6 >Emitted(70, 28) Source(98, 66) + SourceIndex(0) -7 >Emitted(70, 32) Source(98, 70) + SourceIndex(0) -8 >Emitted(70, 34) Source(98, 72) + SourceIndex(0) -9 >Emitted(70, 41) Source(98, 79) + SourceIndex(0) -10>Emitted(70, 43) Source(98, 81) + SourceIndex(0) -11>Emitted(70, 48) Source(98, 86) + SourceIndex(0) -12>Emitted(70, 50) Source(98, 88) + SourceIndex(0) -13>Emitted(70, 58) Source(98, 96) + SourceIndex(0) -14>Emitted(70, 60) Source(98, 98) + SourceIndex(0) -15>Emitted(70, 62) Source(98, 100) + SourceIndex(0) -16>Emitted(70, 64) Source(98, 102) + SourceIndex(0) -17>Emitted(70, 68) Source(98, 106) + SourceIndex(0) -18>Emitted(70, 70) Source(98, 108) + SourceIndex(0) -19>Emitted(70, 79) Source(98, 117) + SourceIndex(0) -20>Emitted(70, 81) Source(98, 119) + SourceIndex(0) -21>Emitted(70, 86) Source(98, 124) + SourceIndex(0) -22>Emitted(70, 88) Source(98, 126) + SourceIndex(0) -23>Emitted(70, 98) Source(98, 136) + SourceIndex(0) -24>Emitted(70, 100) Source(98, 138) + SourceIndex(0) -25>Emitted(70, 101) Source(98, 139) + SourceIndex(0) -26>Emitted(70, 103) Source(98, 63) + SourceIndex(0) -27>Emitted(70, 119) Source(98, 139) + SourceIndex(0) -28>Emitted(70, 121) Source(98, 63) + SourceIndex(0) -29>Emitted(70, 126) Source(98, 139) + SourceIndex(0) -30>Emitted(70, 128) Source(98, 141) + SourceIndex(0) +3 >Emitted(70, 16) Source(98, 139) + SourceIndex(0) +4 >Emitted(70, 18) Source(98, 63) + SourceIndex(0) +5 >Emitted(70, 24) Source(98, 64) + SourceIndex(0) +6 >Emitted(70, 26) Source(98, 66) + SourceIndex(0) +7 >Emitted(70, 30) Source(98, 70) + SourceIndex(0) +8 >Emitted(70, 32) Source(98, 72) + SourceIndex(0) +9 >Emitted(70, 39) Source(98, 79) + SourceIndex(0) +10>Emitted(70, 41) Source(98, 81) + SourceIndex(0) +11>Emitted(70, 46) Source(98, 86) + SourceIndex(0) +12>Emitted(70, 48) Source(98, 88) + SourceIndex(0) +13>Emitted(70, 56) Source(98, 96) + SourceIndex(0) +14>Emitted(70, 58) Source(98, 98) + SourceIndex(0) +15>Emitted(70, 60) Source(98, 100) + SourceIndex(0) +16>Emitted(70, 62) Source(98, 102) + SourceIndex(0) +17>Emitted(70, 66) Source(98, 106) + SourceIndex(0) +18>Emitted(70, 68) Source(98, 108) + SourceIndex(0) +19>Emitted(70, 77) Source(98, 117) + SourceIndex(0) +20>Emitted(70, 79) Source(98, 119) + SourceIndex(0) +21>Emitted(70, 84) Source(98, 124) + SourceIndex(0) +22>Emitted(70, 86) Source(98, 126) + SourceIndex(0) +23>Emitted(70, 96) Source(98, 136) + SourceIndex(0) +24>Emitted(70, 98) Source(98, 138) + SourceIndex(0) +25>Emitted(70, 99) Source(98, 139) + SourceIndex(0) +26>Emitted(70, 101) Source(98, 63) + SourceIndex(0) +27>Emitted(70, 115) Source(98, 139) + SourceIndex(0) +28>Emitted(70, 117) Source(98, 63) + SourceIndex(0) +29>Emitted(70, 121) Source(98, 139) + SourceIndex(0) +30>Emitted(70, 123) Source(98, 141) + SourceIndex(0) --- ->>> _36 = _35[_34], _37 = _36.name, nameA = _37 === void 0 ? "noName" : _37, _38 = _36.skill, skillA = _38 === void 0 ? "noSkill" : _38; -1->^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +>>> _51 = _z[_y], _52 = _51.name, nameA = _52 === void 0 ? "noName" : _52, _53 = _51.skill, skillA = _53 === void 0 ? "noSkill" : _53; +1->^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > name: nameA = "noName" -3 > -4 > name: nameA = "noName" -5 > , -6 > skill: skillA = "noSkill" -7 > -8 > skill: skillA = "noSkill" -1->Emitted(71, 21) Source(98, 7) + SourceIndex(0) -2 >Emitted(71, 35) Source(98, 29) + SourceIndex(0) -3 >Emitted(71, 37) Source(98, 7) + SourceIndex(0) -4 >Emitted(71, 76) Source(98, 29) + SourceIndex(0) -5 >Emitted(71, 78) Source(98, 31) + SourceIndex(0) -6 >Emitted(71, 93) Source(98, 56) + SourceIndex(0) -7 >Emitted(71, 95) Source(98, 31) + SourceIndex(0) -8 >Emitted(71, 136) Source(98, 56) + SourceIndex(0) +2 > name: nameA = "noName" +3 > +4 > name: nameA = "noName" +5 > , +6 > skill: skillA = "noSkill" +7 > +8 > skill: skillA = "noSkill" +1->Emitted(71, 19) Source(98, 7) + SourceIndex(0) +2 >Emitted(71, 33) Source(98, 29) + SourceIndex(0) +3 >Emitted(71, 35) Source(98, 7) + SourceIndex(0) +4 >Emitted(71, 74) Source(98, 29) + SourceIndex(0) +5 >Emitted(71, 76) Source(98, 31) + SourceIndex(0) +6 >Emitted(71, 91) Source(98, 56) + SourceIndex(0) +7 >Emitted(71, 93) Source(98, 31) + SourceIndex(0) +8 >Emitted(71, 134) Source(98, 56) + SourceIndex(0) --- >>> console.log(nameA); 1 >^^^^ @@ -2284,23 +2284,23 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(73, 2) Source(100, 2) + SourceIndex(0) --- ->>>for (var _39 = 0, multiRobots_3 = multiRobots; _39 < multiRobots_3.length; _39++) { +>>>for (var _0 = 0, multiRobots_3 = multiRobots; _0 < multiRobots_3.length; _0++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^ -6 > ^^ -7 > ^^^^^^^^^^^^^^^^^^^^^^^^^^ -8 > ^^ -9 > ^^^^^ -10> ^^ -11> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^ +6 > ^^ +7 > ^^^^^^^^^^^^^^^^^^^^^^^^^ +8 > ^^ +9 > ^^^^ +10> ^^ +11> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> > 2 >for ({ @@ -2311,81 +2311,81 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue > } = { primary: "noSkill", secondary: "noSkill" } >} of 3 > multiRobots -4 > -5 > multiRobots -6 > -7 > multiRobots -8 > -9 > multiRobots -10> ) +4 > +5 > multiRobots +6 > +7 > multiRobots +8 > +9 > multiRobots +10> ) 1->Emitted(74, 1) Source(101, 1) + SourceIndex(0) 2 >Emitted(74, 6) Source(107, 6) + SourceIndex(0) -3 >Emitted(74, 17) Source(107, 17) + SourceIndex(0) -4 >Emitted(74, 19) Source(107, 6) + SourceIndex(0) -5 >Emitted(74, 46) Source(107, 17) + SourceIndex(0) -6 >Emitted(74, 48) Source(107, 6) + SourceIndex(0) -7 >Emitted(74, 74) Source(107, 17) + SourceIndex(0) -8 >Emitted(74, 76) Source(107, 6) + SourceIndex(0) -9 >Emitted(74, 81) Source(107, 17) + SourceIndex(0) -10>Emitted(74, 83) Source(107, 19) + SourceIndex(0) +3 >Emitted(74, 16) Source(107, 17) + SourceIndex(0) +4 >Emitted(74, 18) Source(107, 6) + SourceIndex(0) +5 >Emitted(74, 45) Source(107, 17) + SourceIndex(0) +6 >Emitted(74, 47) Source(107, 6) + SourceIndex(0) +7 >Emitted(74, 72) Source(107, 17) + SourceIndex(0) +8 >Emitted(74, 74) Source(107, 6) + SourceIndex(0) +9 >Emitted(74, 78) Source(107, 17) + SourceIndex(0) +10>Emitted(74, 80) Source(107, 19) + SourceIndex(0) --- ->>> _40 = multiRobots_3[_39], _41 = _40.name, nameA = _41 === void 0 ? "noName" : _41, _42 = _40.skills, _43 = _42 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _42, _44 = _43.primary, primaryA = _44 === void 0 ? "primary" : _44, _45 = _43.secondary, secondaryA = _45 === void 0 ? "secondary" : _45; -1->^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -9 > ^^ -10> ^^^^^^^^^^^^^^^^^ -11> ^^ -12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -13> ^^ -14> ^^^^^^^^^^^^^^^^^^^ -15> ^^ -16> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +>>> _54 = multiRobots_3[_0], _55 = _54.name, nameA = _55 === void 0 ? "noName" : _55, _56 = _54.skills, _57 = _56 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _56, _58 = _57.primary, primaryA = _58 === void 0 ? "primary" : _58, _59 = _57.secondary, secondaryA = _59 === void 0 ? "secondary" : _59; +1->^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +9 > ^^ +10> ^^^^^^^^^^^^^^^^^ +11> ^^ +12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +13> ^^ +14> ^^^^^^^^^^^^^^^^^^^ +15> ^^ +16> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > name: nameA = "noName" -3 > -4 > name: nameA = "noName" -5 > , - > -6 > skills: { - > primary: primaryA = "primary", - > secondary: secondaryA = "secondary" - > } = { primary: "noSkill", secondary: "noSkill" } -7 > -8 > skills: { - > primary: primaryA = "primary", - > secondary: secondaryA = "secondary" - > } = { primary: "noSkill", secondary: "noSkill" } -9 > -10> primary: primaryA = "primary" -11> -12> primary: primaryA = "primary" -13> , - > -14> secondary: secondaryA = "secondary" -15> -16> secondary: secondaryA = "secondary" -1->Emitted(75, 31) Source(102, 5) + SourceIndex(0) -2 >Emitted(75, 45) Source(102, 27) + SourceIndex(0) -3 >Emitted(75, 47) Source(102, 5) + SourceIndex(0) -4 >Emitted(75, 86) Source(102, 27) + SourceIndex(0) -5 >Emitted(75, 88) Source(103, 5) + SourceIndex(0) -6 >Emitted(75, 104) Source(106, 53) + SourceIndex(0) -7 >Emitted(75, 106) Source(103, 5) + SourceIndex(0) -8 >Emitted(75, 179) Source(106, 53) + SourceIndex(0) -9 >Emitted(75, 181) Source(104, 9) + SourceIndex(0) -10>Emitted(75, 198) Source(104, 38) + SourceIndex(0) -11>Emitted(75, 200) Source(104, 9) + SourceIndex(0) -12>Emitted(75, 243) Source(104, 38) + SourceIndex(0) -13>Emitted(75, 245) Source(105, 9) + SourceIndex(0) -14>Emitted(75, 264) Source(105, 44) + SourceIndex(0) -15>Emitted(75, 266) Source(105, 9) + SourceIndex(0) -16>Emitted(75, 313) Source(105, 44) + SourceIndex(0) +2 > name: nameA = "noName" +3 > +4 > name: nameA = "noName" +5 > , + > +6 > skills: { + > primary: primaryA = "primary", + > secondary: secondaryA = "secondary" + > } = { primary: "noSkill", secondary: "noSkill" } +7 > +8 > skills: { + > primary: primaryA = "primary", + > secondary: secondaryA = "secondary" + > } = { primary: "noSkill", secondary: "noSkill" } +9 > +10> primary: primaryA = "primary" +11> +12> primary: primaryA = "primary" +13> , + > +14> secondary: secondaryA = "secondary" +15> +16> secondary: secondaryA = "secondary" +1->Emitted(75, 30) Source(102, 5) + SourceIndex(0) +2 >Emitted(75, 44) Source(102, 27) + SourceIndex(0) +3 >Emitted(75, 46) Source(102, 5) + SourceIndex(0) +4 >Emitted(75, 85) Source(102, 27) + SourceIndex(0) +5 >Emitted(75, 87) Source(103, 5) + SourceIndex(0) +6 >Emitted(75, 103) Source(106, 53) + SourceIndex(0) +7 >Emitted(75, 105) Source(103, 5) + SourceIndex(0) +8 >Emitted(75, 178) Source(106, 53) + SourceIndex(0) +9 >Emitted(75, 180) Source(104, 9) + SourceIndex(0) +10>Emitted(75, 197) Source(104, 38) + SourceIndex(0) +11>Emitted(75, 199) Source(104, 9) + SourceIndex(0) +12>Emitted(75, 242) Source(104, 38) + SourceIndex(0) +13>Emitted(75, 244) Source(105, 9) + SourceIndex(0) +14>Emitted(75, 263) Source(105, 44) + SourceIndex(0) +15>Emitted(75, 265) Source(105, 9) + SourceIndex(0) +16>Emitted(75, 312) Source(105, 44) + SourceIndex(0) --- >>> console.log(nameA); 1 >^^^^ @@ -2418,25 +2418,25 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(77, 2) Source(109, 2) + SourceIndex(0) --- ->>>for (var _46 = 0, _47 = getMultiRobots(); _46 < _47.length; _46++) { +>>>for (var _1 = 0, _2 = getMultiRobots(); _1 < _2.length; _1++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^ -6 > ^^^^^^^^^^^^^^ -7 > ^^ -8 > ^^ -9 > ^^^^^^^^^^^^^^^^ -10> ^^ -11> ^^^^^ -12> ^^ -13> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^ +6 > ^^^^^^^^^^^^^^ +7 > ^^ +8 > ^^ +9 > ^^^^^^^^^^^^^^ +10> ^^ +11> ^^^^ +12> ^^ +13> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> > 2 >for ({ @@ -2447,85 +2447,85 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue > } = { primary: "noSkill", secondary: "noSkill" } >} of 3 > getMultiRobots() -4 > -5 > -6 > getMultiRobots -7 > () -8 > -9 > getMultiRobots() -10> -11> getMultiRobots() -12> ) +4 > +5 > +6 > getMultiRobots +7 > () +8 > +9 > getMultiRobots() +10> +11> getMultiRobots() +12> ) 1->Emitted(78, 1) Source(110, 1) + SourceIndex(0) 2 >Emitted(78, 6) Source(116, 6) + SourceIndex(0) -3 >Emitted(78, 17) Source(116, 22) + SourceIndex(0) -4 >Emitted(78, 19) Source(116, 6) + SourceIndex(0) -5 >Emitted(78, 25) Source(116, 6) + SourceIndex(0) -6 >Emitted(78, 39) Source(116, 20) + SourceIndex(0) -7 >Emitted(78, 41) Source(116, 22) + SourceIndex(0) -8 >Emitted(78, 43) Source(116, 6) + SourceIndex(0) -9 >Emitted(78, 59) Source(116, 22) + SourceIndex(0) -10>Emitted(78, 61) Source(116, 6) + SourceIndex(0) -11>Emitted(78, 66) Source(116, 22) + SourceIndex(0) -12>Emitted(78, 68) Source(116, 24) + SourceIndex(0) +3 >Emitted(78, 16) Source(116, 22) + SourceIndex(0) +4 >Emitted(78, 18) Source(116, 6) + SourceIndex(0) +5 >Emitted(78, 23) Source(116, 6) + SourceIndex(0) +6 >Emitted(78, 37) Source(116, 20) + SourceIndex(0) +7 >Emitted(78, 39) Source(116, 22) + SourceIndex(0) +8 >Emitted(78, 41) Source(116, 6) + SourceIndex(0) +9 >Emitted(78, 55) Source(116, 22) + SourceIndex(0) +10>Emitted(78, 57) Source(116, 6) + SourceIndex(0) +11>Emitted(78, 61) Source(116, 22) + SourceIndex(0) +12>Emitted(78, 63) Source(116, 24) + SourceIndex(0) --- ->>> _48 = _47[_46], _49 = _48.name, nameA = _49 === void 0 ? "noName" : _49, _50 = _48.skills, _51 = _50 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _50, _52 = _51.primary, primaryA = _52 === void 0 ? "primary" : _52, _53 = _51.secondary, secondaryA = _53 === void 0 ? "secondary" : _53; -1->^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -9 > ^^ -10> ^^^^^^^^^^^^^^^^^ -11> ^^ -12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -13> ^^ -14> ^^^^^^^^^^^^^^^^^^^ -15> ^^ -16> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +>>> _60 = _2[_1], _61 = _60.name, nameA = _61 === void 0 ? "noName" : _61, _62 = _60.skills, _63 = _62 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _62, _64 = _63.primary, primaryA = _64 === void 0 ? "primary" : _64, _65 = _63.secondary, secondaryA = _65 === void 0 ? "secondary" : _65; +1->^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +9 > ^^ +10> ^^^^^^^^^^^^^^^^^ +11> ^^ +12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +13> ^^ +14> ^^^^^^^^^^^^^^^^^^^ +15> ^^ +16> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > name: nameA = "noName" -3 > -4 > name: nameA = "noName" -5 > , - > -6 > skills: { - > primary: primaryA = "primary", - > secondary: secondaryA = "secondary" - > } = { primary: "noSkill", secondary: "noSkill" } -7 > -8 > skills: { - > primary: primaryA = "primary", - > secondary: secondaryA = "secondary" - > } = { primary: "noSkill", secondary: "noSkill" } -9 > -10> primary: primaryA = "primary" -11> -12> primary: primaryA = "primary" -13> , - > -14> secondary: secondaryA = "secondary" -15> -16> secondary: secondaryA = "secondary" -1->Emitted(79, 21) Source(111, 5) + SourceIndex(0) -2 >Emitted(79, 35) Source(111, 27) + SourceIndex(0) -3 >Emitted(79, 37) Source(111, 5) + SourceIndex(0) -4 >Emitted(79, 76) Source(111, 27) + SourceIndex(0) -5 >Emitted(79, 78) Source(112, 5) + SourceIndex(0) -6 >Emitted(79, 94) Source(115, 53) + SourceIndex(0) -7 >Emitted(79, 96) Source(112, 5) + SourceIndex(0) -8 >Emitted(79, 169) Source(115, 53) + SourceIndex(0) -9 >Emitted(79, 171) Source(113, 9) + SourceIndex(0) -10>Emitted(79, 188) Source(113, 38) + SourceIndex(0) -11>Emitted(79, 190) Source(113, 9) + SourceIndex(0) -12>Emitted(79, 233) Source(113, 38) + SourceIndex(0) -13>Emitted(79, 235) Source(114, 9) + SourceIndex(0) -14>Emitted(79, 254) Source(114, 44) + SourceIndex(0) -15>Emitted(79, 256) Source(114, 9) + SourceIndex(0) -16>Emitted(79, 303) Source(114, 44) + SourceIndex(0) +2 > name: nameA = "noName" +3 > +4 > name: nameA = "noName" +5 > , + > +6 > skills: { + > primary: primaryA = "primary", + > secondary: secondaryA = "secondary" + > } = { primary: "noSkill", secondary: "noSkill" } +7 > +8 > skills: { + > primary: primaryA = "primary", + > secondary: secondaryA = "secondary" + > } = { primary: "noSkill", secondary: "noSkill" } +9 > +10> primary: primaryA = "primary" +11> +12> primary: primaryA = "primary" +13> , + > +14> secondary: secondaryA = "secondary" +15> +16> secondary: secondaryA = "secondary" +1->Emitted(79, 19) Source(111, 5) + SourceIndex(0) +2 >Emitted(79, 33) Source(111, 27) + SourceIndex(0) +3 >Emitted(79, 35) Source(111, 5) + SourceIndex(0) +4 >Emitted(79, 74) Source(111, 27) + SourceIndex(0) +5 >Emitted(79, 76) Source(112, 5) + SourceIndex(0) +6 >Emitted(79, 92) Source(115, 53) + SourceIndex(0) +7 >Emitted(79, 94) Source(112, 5) + SourceIndex(0) +8 >Emitted(79, 167) Source(115, 53) + SourceIndex(0) +9 >Emitted(79, 169) Source(113, 9) + SourceIndex(0) +10>Emitted(79, 186) Source(113, 38) + SourceIndex(0) +11>Emitted(79, 188) Source(113, 9) + SourceIndex(0) +12>Emitted(79, 231) Source(113, 38) + SourceIndex(0) +13>Emitted(79, 233) Source(114, 9) + SourceIndex(0) +14>Emitted(79, 252) Source(114, 44) + SourceIndex(0) +15>Emitted(79, 254) Source(114, 9) + SourceIndex(0) +16>Emitted(79, 301) Source(114, 44) + SourceIndex(0) --- >>> console.log(nameA); 1 >^^^^ @@ -2558,36 +2558,36 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(81, 2) Source(118, 2) + SourceIndex(0) --- ->>>for (var _54 = 0, _55 = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, +>>>for (var _3 = 0, _4 = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^ -6 > ^ -7 > ^^ -8 > ^^^^ -9 > ^^ -10> ^^^^^^^ -11> ^^ -12> ^^^^^^ -13> ^^ -14> ^^ -15> ^^^^^^^ -16> ^^ -17> ^^^^^^^^ -18> ^^ -19> ^^^^^^^^^ -20> ^^ -21> ^^^^^^ -22> ^^ -23> ^^ -24> ^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^ +6 > ^ +7 > ^^ +8 > ^^^^ +9 > ^^ +10> ^^^^^^^ +11> ^^ +12> ^^^^^^ +13> ^^ +14> ^^ +15> ^^^^^^^ +16> ^^ +17> ^^^^^^^^ +18> ^^ +19> ^^^^^^^^^ +20> ^^ +21> ^^^^^^ +22> ^^ +23> ^^ +24> ^^^^^^^^^^^^^^-> 1-> > 2 >for ({ @@ -2599,51 +2599,51 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue >} of 3 > [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, > { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }] -4 > -5 > -6 > [ -7 > { -8 > name -9 > : -10> "mower" -11> , -12> skills -13> : -14> { -15> primary -16> : -17> "mowing" -18> , -19> secondary -20> : -21> "none" -22> } -23> } +4 > +5 > +6 > [ +7 > { +8 > name +9 > : +10> "mower" +11> , +12> skills +13> : +14> { +15> primary +16> : +17> "mowing" +18> , +19> secondary +20> : +21> "none" +22> } +23> } 1->Emitted(82, 1) Source(119, 1) + SourceIndex(0) 2 >Emitted(82, 6) Source(125, 6) + SourceIndex(0) -3 >Emitted(82, 17) Source(126, 79) + SourceIndex(0) -4 >Emitted(82, 19) Source(125, 6) + SourceIndex(0) -5 >Emitted(82, 25) Source(125, 20) + SourceIndex(0) -6 >Emitted(82, 26) Source(125, 21) + SourceIndex(0) -7 >Emitted(82, 28) Source(125, 23) + SourceIndex(0) -8 >Emitted(82, 32) Source(125, 27) + SourceIndex(0) -9 >Emitted(82, 34) Source(125, 29) + SourceIndex(0) -10>Emitted(82, 41) Source(125, 36) + SourceIndex(0) -11>Emitted(82, 43) Source(125, 38) + SourceIndex(0) -12>Emitted(82, 49) Source(125, 44) + SourceIndex(0) -13>Emitted(82, 51) Source(125, 46) + SourceIndex(0) -14>Emitted(82, 53) Source(125, 48) + SourceIndex(0) -15>Emitted(82, 60) Source(125, 55) + SourceIndex(0) -16>Emitted(82, 62) Source(125, 57) + SourceIndex(0) -17>Emitted(82, 70) Source(125, 65) + SourceIndex(0) -18>Emitted(82, 72) Source(125, 67) + SourceIndex(0) -19>Emitted(82, 81) Source(125, 76) + SourceIndex(0) -20>Emitted(82, 83) Source(125, 78) + SourceIndex(0) -21>Emitted(82, 89) Source(125, 84) + SourceIndex(0) -22>Emitted(82, 91) Source(125, 86) + SourceIndex(0) -23>Emitted(82, 93) Source(125, 88) + SourceIndex(0) +3 >Emitted(82, 16) Source(126, 79) + SourceIndex(0) +4 >Emitted(82, 18) Source(125, 6) + SourceIndex(0) +5 >Emitted(82, 23) Source(125, 20) + SourceIndex(0) +6 >Emitted(82, 24) Source(125, 21) + SourceIndex(0) +7 >Emitted(82, 26) Source(125, 23) + SourceIndex(0) +8 >Emitted(82, 30) Source(125, 27) + SourceIndex(0) +9 >Emitted(82, 32) Source(125, 29) + SourceIndex(0) +10>Emitted(82, 39) Source(125, 36) + SourceIndex(0) +11>Emitted(82, 41) Source(125, 38) + SourceIndex(0) +12>Emitted(82, 47) Source(125, 44) + SourceIndex(0) +13>Emitted(82, 49) Source(125, 46) + SourceIndex(0) +14>Emitted(82, 51) Source(125, 48) + SourceIndex(0) +15>Emitted(82, 58) Source(125, 55) + SourceIndex(0) +16>Emitted(82, 60) Source(125, 57) + SourceIndex(0) +17>Emitted(82, 68) Source(125, 65) + SourceIndex(0) +18>Emitted(82, 70) Source(125, 67) + SourceIndex(0) +19>Emitted(82, 79) Source(125, 76) + SourceIndex(0) +20>Emitted(82, 81) Source(125, 78) + SourceIndex(0) +21>Emitted(82, 87) Source(125, 84) + SourceIndex(0) +22>Emitted(82, 89) Source(125, 86) + SourceIndex(0) +23>Emitted(82, 91) Source(125, 88) + SourceIndex(0) --- ->>> { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _54 < _55.length; _54++) { +>>> { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _3 < _4.length; _3++) { 1->^^^^ 2 > ^^ 3 > ^^^^ @@ -2664,11 +2664,11 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue 18> ^^ 19> ^ 20> ^^ -21> ^^^^^^^^^^^^^^^^ -22> ^^ -23> ^^^^^ -24> ^^ -25> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +21> ^^^^^^^^^^^^^^ +22> ^^ +23> ^^^^ +24> ^^ +25> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1->, > 2 > { @@ -2692,10 +2692,10 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue 20> 21> [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, > { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }] -22> -23> [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, - > { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }] -24> ) +22> +23> [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, + > { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }] +24> ) 1->Emitted(83, 5) Source(126, 5) + SourceIndex(0) 2 >Emitted(83, 7) Source(126, 7) + SourceIndex(0) 3 >Emitted(83, 11) Source(126, 11) + SourceIndex(0) @@ -2716,68 +2716,68 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue 18>Emitted(83, 78) Source(126, 78) + SourceIndex(0) 19>Emitted(83, 79) Source(126, 79) + SourceIndex(0) 20>Emitted(83, 81) Source(125, 6) + SourceIndex(0) -21>Emitted(83, 97) Source(126, 79) + SourceIndex(0) -22>Emitted(83, 99) Source(125, 6) + SourceIndex(0) -23>Emitted(83, 104) Source(126, 79) + SourceIndex(0) -24>Emitted(83, 106) Source(126, 81) + SourceIndex(0) +21>Emitted(83, 95) Source(126, 79) + SourceIndex(0) +22>Emitted(83, 97) Source(125, 6) + SourceIndex(0) +23>Emitted(83, 101) Source(126, 79) + SourceIndex(0) +24>Emitted(83, 103) Source(126, 81) + SourceIndex(0) --- ->>> _56 = _55[_54], _57 = _56.name, nameA = _57 === void 0 ? "noName" : _57, _58 = _56.skills, _59 = _58 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _58, _60 = _59.primary, primaryA = _60 === void 0 ? "primary" : _60, _61 = _59.secondary, secondaryA = _61 === void 0 ? "secondary" : _61; -1->^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -9 > ^^ -10> ^^^^^^^^^^^^^^^^^ -11> ^^ -12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -13> ^^ -14> ^^^^^^^^^^^^^^^^^^^ -15> ^^ -16> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +>>> _66 = _4[_3], _67 = _66.name, nameA = _67 === void 0 ? "noName" : _67, _68 = _66.skills, _69 = _68 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _68, _70 = _69.primary, primaryA = _70 === void 0 ? "primary" : _70, _71 = _69.secondary, secondaryA = _71 === void 0 ? "secondary" : _71; +1->^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +9 > ^^ +10> ^^^^^^^^^^^^^^^^^ +11> ^^ +12> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +13> ^^ +14> ^^^^^^^^^^^^^^^^^^^ +15> ^^ +16> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > name: nameA = "noName" -3 > -4 > name: nameA = "noName" -5 > , - > -6 > skills: { - > primary: primaryA = "primary", - > secondary: secondaryA = "secondary" - > } = { primary: "noSkill", secondary: "noSkill" } -7 > -8 > skills: { - > primary: primaryA = "primary", - > secondary: secondaryA = "secondary" - > } = { primary: "noSkill", secondary: "noSkill" } -9 > -10> primary: primaryA = "primary" -11> -12> primary: primaryA = "primary" -13> , - > -14> secondary: secondaryA = "secondary" -15> -16> secondary: secondaryA = "secondary" -1->Emitted(84, 21) Source(120, 5) + SourceIndex(0) -2 >Emitted(84, 35) Source(120, 27) + SourceIndex(0) -3 >Emitted(84, 37) Source(120, 5) + SourceIndex(0) -4 >Emitted(84, 76) Source(120, 27) + SourceIndex(0) -5 >Emitted(84, 78) Source(121, 5) + SourceIndex(0) -6 >Emitted(84, 94) Source(124, 53) + SourceIndex(0) -7 >Emitted(84, 96) Source(121, 5) + SourceIndex(0) -8 >Emitted(84, 169) Source(124, 53) + SourceIndex(0) -9 >Emitted(84, 171) Source(122, 9) + SourceIndex(0) -10>Emitted(84, 188) Source(122, 38) + SourceIndex(0) -11>Emitted(84, 190) Source(122, 9) + SourceIndex(0) -12>Emitted(84, 233) Source(122, 38) + SourceIndex(0) -13>Emitted(84, 235) Source(123, 9) + SourceIndex(0) -14>Emitted(84, 254) Source(123, 44) + SourceIndex(0) -15>Emitted(84, 256) Source(123, 9) + SourceIndex(0) -16>Emitted(84, 303) Source(123, 44) + SourceIndex(0) +2 > name: nameA = "noName" +3 > +4 > name: nameA = "noName" +5 > , + > +6 > skills: { + > primary: primaryA = "primary", + > secondary: secondaryA = "secondary" + > } = { primary: "noSkill", secondary: "noSkill" } +7 > +8 > skills: { + > primary: primaryA = "primary", + > secondary: secondaryA = "secondary" + > } = { primary: "noSkill", secondary: "noSkill" } +9 > +10> primary: primaryA = "primary" +11> +12> primary: primaryA = "primary" +13> , + > +14> secondary: secondaryA = "secondary" +15> +16> secondary: secondaryA = "secondary" +1->Emitted(84, 19) Source(120, 5) + SourceIndex(0) +2 >Emitted(84, 33) Source(120, 27) + SourceIndex(0) +3 >Emitted(84, 35) Source(120, 5) + SourceIndex(0) +4 >Emitted(84, 74) Source(120, 27) + SourceIndex(0) +5 >Emitted(84, 76) Source(121, 5) + SourceIndex(0) +6 >Emitted(84, 92) Source(124, 53) + SourceIndex(0) +7 >Emitted(84, 94) Source(121, 5) + SourceIndex(0) +8 >Emitted(84, 167) Source(124, 53) + SourceIndex(0) +9 >Emitted(84, 169) Source(122, 9) + SourceIndex(0) +10>Emitted(84, 186) Source(122, 38) + SourceIndex(0) +11>Emitted(84, 188) Source(122, 9) + SourceIndex(0) +12>Emitted(84, 231) Source(122, 38) + SourceIndex(0) +13>Emitted(84, 233) Source(123, 9) + SourceIndex(0) +14>Emitted(84, 252) Source(123, 44) + SourceIndex(0) +15>Emitted(84, 254) Source(123, 9) + SourceIndex(0) +16>Emitted(84, 301) Source(123, 44) + SourceIndex(0) --- >>> console.log(nameA); 1 >^^^^ @@ -2811,71 +2811,71 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(86, 2) Source(128, 2) + SourceIndex(0) --- ->>>for (var _62 = 0, robots_4 = robots; _62 < robots_4.length; _62++) { +>>>for (var _5 = 0, robots_4 = robots; _5 < robots_4.length; _5++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^^^^^^^^^^^^ -6 > ^^ -7 > ^^^^^^^^^^^^^^^^^^^^^ -8 > ^^ -9 > ^^^^^ -10> ^^ -11> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^^^^^^^^^^^^^ +6 > ^^ +7 > ^^^^^^^^^^^^^^^^^^^^ +8 > ^^ +9 > ^^^^ +10> ^^ +11> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> > > 2 >for ({ name = "noName", skill = "noSkill" } of 3 > robots -4 > -5 > robots -6 > -7 > robots -8 > -9 > robots -10> ) +4 > +5 > robots +6 > +7 > robots +8 > +9 > robots +10> ) 1->Emitted(87, 1) Source(130, 1) + SourceIndex(0) 2 >Emitted(87, 6) Source(130, 49) + SourceIndex(0) -3 >Emitted(87, 17) Source(130, 55) + SourceIndex(0) -4 >Emitted(87, 19) Source(130, 49) + SourceIndex(0) -5 >Emitted(87, 36) Source(130, 55) + SourceIndex(0) -6 >Emitted(87, 38) Source(130, 49) + SourceIndex(0) -7 >Emitted(87, 59) Source(130, 55) + SourceIndex(0) -8 >Emitted(87, 61) Source(130, 49) + SourceIndex(0) -9 >Emitted(87, 66) Source(130, 55) + SourceIndex(0) -10>Emitted(87, 68) Source(130, 57) + SourceIndex(0) +3 >Emitted(87, 16) Source(130, 55) + SourceIndex(0) +4 >Emitted(87, 18) Source(130, 49) + SourceIndex(0) +5 >Emitted(87, 35) Source(130, 55) + SourceIndex(0) +6 >Emitted(87, 37) Source(130, 49) + SourceIndex(0) +7 >Emitted(87, 57) Source(130, 55) + SourceIndex(0) +8 >Emitted(87, 59) Source(130, 49) + SourceIndex(0) +9 >Emitted(87, 63) Source(130, 55) + SourceIndex(0) +10>Emitted(87, 65) Source(130, 57) + SourceIndex(0) --- ->>> _63 = robots_4[_62], _64 = _63.name, name = _64 === void 0 ? "noName" : _64, _65 = _63.skill, skill = _65 === void 0 ? "noSkill" : _65; -1->^^^^^^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +>>> _72 = robots_4[_5], _73 = _72.name, name = _73 === void 0 ? "noName" : _73, _74 = _72.skill, skill = _74 === void 0 ? "noSkill" : _74; +1->^^^^^^^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > name = "noName" -3 > -4 > name = "noName" -5 > , -6 > skill = "noSkill" -7 > -8 > skill = "noSkill" -1->Emitted(88, 26) Source(130, 8) + SourceIndex(0) -2 >Emitted(88, 40) Source(130, 23) + SourceIndex(0) -3 >Emitted(88, 42) Source(130, 8) + SourceIndex(0) -4 >Emitted(88, 80) Source(130, 23) + SourceIndex(0) -5 >Emitted(88, 82) Source(130, 25) + SourceIndex(0) -6 >Emitted(88, 97) Source(130, 43) + SourceIndex(0) -7 >Emitted(88, 99) Source(130, 25) + SourceIndex(0) -8 >Emitted(88, 139) Source(130, 43) + SourceIndex(0) +2 > name = "noName" +3 > +4 > name = "noName" +5 > , +6 > skill = "noSkill" +7 > +8 > skill = "noSkill" +1->Emitted(88, 25) Source(130, 8) + SourceIndex(0) +2 >Emitted(88, 39) Source(130, 23) + SourceIndex(0) +3 >Emitted(88, 41) Source(130, 8) + SourceIndex(0) +4 >Emitted(88, 79) Source(130, 23) + SourceIndex(0) +5 >Emitted(88, 81) Source(130, 25) + SourceIndex(0) +6 >Emitted(88, 96) Source(130, 43) + SourceIndex(0) +7 >Emitted(88, 98) Source(130, 25) + SourceIndex(0) +8 >Emitted(88, 138) Source(130, 43) + SourceIndex(0) --- >>> console.log(nameA); 1 >^^^^ @@ -2906,76 +2906,76 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(90, 2) Source(132, 2) + SourceIndex(0) --- ->>>for (var _66 = 0, _67 = getRobots(); _66 < _67.length; _66++) { +>>>for (var _6 = 0, _7 = getRobots(); _6 < _7.length; _6++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^ -6 > ^^^^^^^^^ -7 > ^^ -8 > ^^ -9 > ^^^^^^^^^^^^^^^^ -10> ^^ -11> ^^^^^ -12> ^^ -13> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^ +6 > ^^^^^^^^^ +7 > ^^ +8 > ^^ +9 > ^^^^^^^^^^^^^^ +10> ^^ +11> ^^^^ +12> ^^ +13> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1-> > 2 >for ({ name = "noName", skill = "noSkill" } of 3 > getRobots() -4 > -5 > -6 > getRobots -7 > () -8 > -9 > getRobots() -10> -11> getRobots() -12> ) +4 > +5 > +6 > getRobots +7 > () +8 > +9 > getRobots() +10> +11> getRobots() +12> ) 1->Emitted(91, 1) Source(133, 1) + SourceIndex(0) 2 >Emitted(91, 6) Source(133, 49) + SourceIndex(0) -3 >Emitted(91, 17) Source(133, 60) + SourceIndex(0) -4 >Emitted(91, 19) Source(133, 49) + SourceIndex(0) -5 >Emitted(91, 25) Source(133, 49) + SourceIndex(0) -6 >Emitted(91, 34) Source(133, 58) + SourceIndex(0) -7 >Emitted(91, 36) Source(133, 60) + SourceIndex(0) -8 >Emitted(91, 38) Source(133, 49) + SourceIndex(0) -9 >Emitted(91, 54) Source(133, 60) + SourceIndex(0) -10>Emitted(91, 56) Source(133, 49) + SourceIndex(0) -11>Emitted(91, 61) Source(133, 60) + SourceIndex(0) -12>Emitted(91, 63) Source(133, 62) + SourceIndex(0) +3 >Emitted(91, 16) Source(133, 60) + SourceIndex(0) +4 >Emitted(91, 18) Source(133, 49) + SourceIndex(0) +5 >Emitted(91, 23) Source(133, 49) + SourceIndex(0) +6 >Emitted(91, 32) Source(133, 58) + SourceIndex(0) +7 >Emitted(91, 34) Source(133, 60) + SourceIndex(0) +8 >Emitted(91, 36) Source(133, 49) + SourceIndex(0) +9 >Emitted(91, 50) Source(133, 60) + SourceIndex(0) +10>Emitted(91, 52) Source(133, 49) + SourceIndex(0) +11>Emitted(91, 56) Source(133, 60) + SourceIndex(0) +12>Emitted(91, 58) Source(133, 62) + SourceIndex(0) --- ->>> _68 = _67[_66], _69 = _68.name, name = _69 === void 0 ? "noName" : _69, _70 = _68.skill, skill = _70 === void 0 ? "noSkill" : _70; -1->^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +>>> _75 = _7[_6], _76 = _75.name, name = _76 === void 0 ? "noName" : _76, _77 = _75.skill, skill = _77 === void 0 ? "noSkill" : _77; +1->^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > name = "noName" -3 > -4 > name = "noName" -5 > , -6 > skill = "noSkill" -7 > -8 > skill = "noSkill" -1->Emitted(92, 21) Source(133, 8) + SourceIndex(0) -2 >Emitted(92, 35) Source(133, 23) + SourceIndex(0) -3 >Emitted(92, 37) Source(133, 8) + SourceIndex(0) -4 >Emitted(92, 75) Source(133, 23) + SourceIndex(0) -5 >Emitted(92, 77) Source(133, 25) + SourceIndex(0) -6 >Emitted(92, 92) Source(133, 42) + SourceIndex(0) -7 >Emitted(92, 94) Source(133, 25) + SourceIndex(0) -8 >Emitted(92, 134) Source(133, 42) + SourceIndex(0) +2 > name = "noName" +3 > +4 > name = "noName" +5 > , +6 > skill = "noSkill" +7 > +8 > skill = "noSkill" +1->Emitted(92, 19) Source(133, 8) + SourceIndex(0) +2 >Emitted(92, 33) Source(133, 23) + SourceIndex(0) +3 >Emitted(92, 35) Source(133, 8) + SourceIndex(0) +4 >Emitted(92, 73) Source(133, 23) + SourceIndex(0) +5 >Emitted(92, 75) Source(133, 25) + SourceIndex(0) +6 >Emitted(92, 90) Source(133, 42) + SourceIndex(0) +7 >Emitted(92, 92) Source(133, 25) + SourceIndex(0) +8 >Emitted(92, 132) Source(133, 42) + SourceIndex(0) --- >>> console.log(nameA); 1 >^^^^ @@ -3006,130 +3006,130 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(94, 2) Source(135, 2) + SourceIndex(0) --- ->>>for (var _71 = 0, _72 = [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }]; _71 < _72.length; _71++) { +>>>for (var _8 = 0, _9 = [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }]; _8 < _9.length; _8++) { 1-> 2 >^^^^^ -3 > ^^^^^^^^^^^ -4 > ^^ -5 > ^^^^^^^ -6 > ^^ -7 > ^^^^ -8 > ^^ -9 > ^^^^^^^ -10> ^^ -11> ^^^^^ -12> ^^ -13> ^^^^^^^^ -14> ^^ -15> ^^ -16> ^^ -17> ^^^^ -18> ^^ -19> ^^^^^^^^^ -20> ^^ -21> ^^^^^ -22> ^^ -23> ^^^^^^^^^^ -24> ^^ -25> ^ -26> ^^ -27> ^^^^^^^^^^^^^^^^ -28> ^^ -29> ^^^^^ -30> ^^ -31> ^^^^^^^^-> +3 > ^^^^^^^^^^ +4 > ^^ +5 > ^^^^^^ +6 > ^^ +7 > ^^^^ +8 > ^^ +9 > ^^^^^^^ +10> ^^ +11> ^^^^^ +12> ^^ +13> ^^^^^^^^ +14> ^^ +15> ^^ +16> ^^ +17> ^^^^ +18> ^^ +19> ^^^^^^^^^ +20> ^^ +21> ^^^^^ +22> ^^ +23> ^^^^^^^^^^ +24> ^^ +25> ^ +26> ^^ +27> ^^^^^^^^^^^^^^ +28> ^^ +29> ^^^^ +30> ^^ +31> ^^^^^^^^^^^-> 1-> > 2 >for ({ name = "noName", skill = "noSkill" } of 3 > [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }] -4 > -5 > [ -6 > { -7 > name -8 > : -9 > "mower" -10> , -11> skill -12> : -13> "mowing" -14> } -15> , -16> { -17> name -18> : -19> "trimmer" -20> , -21> skill -22> : -23> "trimming" -24> } -25> ] -26> -27> [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }] -28> -29> [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }] -30> ) +4 > +5 > [ +6 > { +7 > name +8 > : +9 > "mower" +10> , +11> skill +12> : +13> "mowing" +14> } +15> , +16> { +17> name +18> : +19> "trimmer" +20> , +21> skill +22> : +23> "trimming" +24> } +25> ] +26> +27> [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }] +28> +29> [{ name: "mower", skill: "mowing" }, { name: "trimmer", skill: "trimming" }] +30> ) 1->Emitted(95, 1) Source(136, 1) + SourceIndex(0) 2 >Emitted(95, 6) Source(136, 49) + SourceIndex(0) -3 >Emitted(95, 17) Source(136, 125) + SourceIndex(0) -4 >Emitted(95, 19) Source(136, 49) + SourceIndex(0) -5 >Emitted(95, 26) Source(136, 50) + SourceIndex(0) -6 >Emitted(95, 28) Source(136, 52) + SourceIndex(0) -7 >Emitted(95, 32) Source(136, 56) + SourceIndex(0) -8 >Emitted(95, 34) Source(136, 58) + SourceIndex(0) -9 >Emitted(95, 41) Source(136, 65) + SourceIndex(0) -10>Emitted(95, 43) Source(136, 67) + SourceIndex(0) -11>Emitted(95, 48) Source(136, 72) + SourceIndex(0) -12>Emitted(95, 50) Source(136, 74) + SourceIndex(0) -13>Emitted(95, 58) Source(136, 82) + SourceIndex(0) -14>Emitted(95, 60) Source(136, 84) + SourceIndex(0) -15>Emitted(95, 62) Source(136, 86) + SourceIndex(0) -16>Emitted(95, 64) Source(136, 88) + SourceIndex(0) -17>Emitted(95, 68) Source(136, 92) + SourceIndex(0) -18>Emitted(95, 70) Source(136, 94) + SourceIndex(0) -19>Emitted(95, 79) Source(136, 103) + SourceIndex(0) -20>Emitted(95, 81) Source(136, 105) + SourceIndex(0) -21>Emitted(95, 86) Source(136, 110) + SourceIndex(0) -22>Emitted(95, 88) Source(136, 112) + SourceIndex(0) -23>Emitted(95, 98) Source(136, 122) + SourceIndex(0) -24>Emitted(95, 100) Source(136, 124) + SourceIndex(0) -25>Emitted(95, 101) Source(136, 125) + SourceIndex(0) -26>Emitted(95, 103) Source(136, 49) + SourceIndex(0) -27>Emitted(95, 119) Source(136, 125) + SourceIndex(0) -28>Emitted(95, 121) Source(136, 49) + SourceIndex(0) -29>Emitted(95, 126) Source(136, 125) + SourceIndex(0) -30>Emitted(95, 128) Source(136, 127) + SourceIndex(0) +3 >Emitted(95, 16) Source(136, 125) + SourceIndex(0) +4 >Emitted(95, 18) Source(136, 49) + SourceIndex(0) +5 >Emitted(95, 24) Source(136, 50) + SourceIndex(0) +6 >Emitted(95, 26) Source(136, 52) + SourceIndex(0) +7 >Emitted(95, 30) Source(136, 56) + SourceIndex(0) +8 >Emitted(95, 32) Source(136, 58) + SourceIndex(0) +9 >Emitted(95, 39) Source(136, 65) + SourceIndex(0) +10>Emitted(95, 41) Source(136, 67) + SourceIndex(0) +11>Emitted(95, 46) Source(136, 72) + SourceIndex(0) +12>Emitted(95, 48) Source(136, 74) + SourceIndex(0) +13>Emitted(95, 56) Source(136, 82) + SourceIndex(0) +14>Emitted(95, 58) Source(136, 84) + SourceIndex(0) +15>Emitted(95, 60) Source(136, 86) + SourceIndex(0) +16>Emitted(95, 62) Source(136, 88) + SourceIndex(0) +17>Emitted(95, 66) Source(136, 92) + SourceIndex(0) +18>Emitted(95, 68) Source(136, 94) + SourceIndex(0) +19>Emitted(95, 77) Source(136, 103) + SourceIndex(0) +20>Emitted(95, 79) Source(136, 105) + SourceIndex(0) +21>Emitted(95, 84) Source(136, 110) + SourceIndex(0) +22>Emitted(95, 86) Source(136, 112) + SourceIndex(0) +23>Emitted(95, 96) Source(136, 122) + SourceIndex(0) +24>Emitted(95, 98) Source(136, 124) + SourceIndex(0) +25>Emitted(95, 99) Source(136, 125) + SourceIndex(0) +26>Emitted(95, 101) Source(136, 49) + SourceIndex(0) +27>Emitted(95, 115) Source(136, 125) + SourceIndex(0) +28>Emitted(95, 117) Source(136, 49) + SourceIndex(0) +29>Emitted(95, 121) Source(136, 125) + SourceIndex(0) +30>Emitted(95, 123) Source(136, 127) + SourceIndex(0) --- ->>> _73 = _72[_71], _74 = _73.name, name = _74 === void 0 ? "noName" : _74, _75 = _73.skill, skill = _75 === void 0 ? "noSkill" : _75; -1->^^^^^^^^^^^^^^^^^^^^ -2 > ^^^^^^^^^^^^^^ -3 > ^^ -4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -5 > ^^ -6 > ^^^^^^^^^^^^^^^ -7 > ^^ -8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +>>> _78 = _9[_8], _79 = _78.name, name = _79 === void 0 ? "noName" : _79, _80 = _78.skill, skill = _80 === void 0 ? "noSkill" : _80; +1->^^^^^^^^^^^^^^^^^^ +2 > ^^^^^^^^^^^^^^ +3 > ^^ +4 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +5 > ^^ +6 > ^^^^^^^^^^^^^^^ +7 > ^^ +8 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1-> -2 > name = "noName" -3 > -4 > name = "noName" -5 > , -6 > skill = "noSkill" -7 > -8 > skill = "noSkill" -1->Emitted(96, 21) Source(136, 8) + SourceIndex(0) -2 >Emitted(96, 35) Source(136, 23) + SourceIndex(0) -3 >Emitted(96, 37) Source(136, 8) + SourceIndex(0) -4 >Emitted(96, 75) Source(136, 23) + SourceIndex(0) -5 >Emitted(96, 77) Source(136, 25) + SourceIndex(0) -6 >Emitted(96, 92) Source(136, 43) + SourceIndex(0) -7 >Emitted(96, 94) Source(136, 25) + SourceIndex(0) -8 >Emitted(96, 134) Source(136, 43) + SourceIndex(0) +2 > name = "noName" +3 > +4 > name = "noName" +5 > , +6 > skill = "noSkill" +7 > +8 > skill = "noSkill" +1->Emitted(96, 19) Source(136, 8) + SourceIndex(0) +2 >Emitted(96, 33) Source(136, 23) + SourceIndex(0) +3 >Emitted(96, 35) Source(136, 8) + SourceIndex(0) +4 >Emitted(96, 73) Source(136, 23) + SourceIndex(0) +5 >Emitted(96, 75) Source(136, 25) + SourceIndex(0) +6 >Emitted(96, 90) Source(136, 43) + SourceIndex(0) +7 >Emitted(96, 92) Source(136, 25) + SourceIndex(0) +8 >Emitted(96, 132) Source(136, 43) + SourceIndex(0) --- >>> console.log(nameA); 1 >^^^^ @@ -3165,7 +3165,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue >} 1 >Emitted(98, 2) Source(138, 2) + SourceIndex(0) --- ->>>for (var _76 = 0, multiRobots_4 = multiRobots; _76 < multiRobots_4.length; _76++) { +>>>for (var _10 = 0, multiRobots_4 = multiRobots; _10 < multiRobots_4.length; _10++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^^ @@ -3205,7 +3205,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue 9 >Emitted(99, 81) Source(145, 17) + SourceIndex(0) 10>Emitted(99, 83) Source(145, 19) + SourceIndex(0) --- ->>> _77 = multiRobots_4[_76], _78 = _77.name, name = _78 === void 0 ? "noName" : _78, _79 = _77.skills, _80 = _79 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _79, _81 = _80.primary, primary = _81 === void 0 ? "primary" : _81, _82 = _80.secondary, secondary = _82 === void 0 ? "secondary" : _82; +>>> _81 = multiRobots_4[_10], _82 = _81.name, name = _82 === void 0 ? "noName" : _82, _83 = _81.skills, _84 = _83 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _83, _85 = _84.primary, primary = _85 === void 0 ? "primary" : _85, _86 = _84.secondary, secondary = _86 === void 0 ? "secondary" : _86; 1->^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^ 3 > ^^ @@ -3299,7 +3299,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue >} 1 >Emitted(102, 2) Source(147, 2) + SourceIndex(0) --- ->>>for (var _83 = 0, _84 = getMultiRobots(); _83 < _84.length; _83++) { +>>>for (var _11 = 0, _12 = getMultiRobots(); _11 < _12.length; _11++) { 1-> 2 >^^^^^ 3 > ^^^^^^^^^^^ @@ -3345,7 +3345,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue 11>Emitted(103, 66) Source(154, 22) + SourceIndex(0) 12>Emitted(103, 68) Source(154, 24) + SourceIndex(0) --- ->>> _85 = _84[_83], _86 = _85.name, name = _86 === void 0 ? "noName" : _86, _87 = _85.skills, _88 = _87 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _87, _89 = _88.primary, primary = _89 === void 0 ? "primary" : _89, _90 = _88.secondary, secondary = _90 === void 0 ? "secondary" : _90; +>>> _87 = _12[_11], _88 = _87.name, name = _88 === void 0 ? "noName" : _88, _89 = _87.skills, _90 = _89 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _89, _91 = _90.primary, primary = _91 === void 0 ? "primary" : _91, _92 = _90.secondary, secondary = _92 === void 0 ? "secondary" : _92; 1->^^^^^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^ 3 > ^^ @@ -3439,7 +3439,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue >} 1 >Emitted(106, 2) Source(156, 2) + SourceIndex(0) --- ->>>for (var _91 = 0, _92 = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, +>>>for (var _13 = 0, _14 = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, 1-> 2 >^^^^^ 3 > ^^^^^^^^^^^ @@ -3516,7 +3516,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue 21>Emitted(107, 91) Source(163, 72) + SourceIndex(0) 22>Emitted(107, 93) Source(163, 74) + SourceIndex(0) --- ->>> { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _91 < _92.length; _91++) { +>>> { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; _13 < _14.length; _13++) { 1->^^^^ 2 > ^^ 3 > ^^^^ @@ -3594,7 +3594,7 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue 23>Emitted(108, 104) Source(164, 79) + SourceIndex(0) 24>Emitted(108, 106) Source(164, 81) + SourceIndex(0) --- ->>> _93 = _92[_91], _94 = _93.name, name = _94 === void 0 ? "noName" : _94, _95 = _93.skills, _96 = _95 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _95, _97 = _96.primary, primary = _97 === void 0 ? "primary" : _97, _98 = _96.secondary, secondary = _98 === void 0 ? "secondary" : _98; +>>> _93 = _14[_13], _94 = _93.name, name = _94 === void 0 ? "noName" : _94, _95 = _93.skills, _96 = _95 === void 0 ? { primary: "noSkill", secondary: "noSkill" } : _95, _97 = _96.primary, primary = _97 === void 0 ? "primary" : _97, _98 = _96.secondary, secondary = _98 === void 0 ? "secondary" : _98; 1->^^^^^^^^^^^^^^^^^^^^ 2 > ^^^^^^^^^^^^^^ 3 > ^^ @@ -3684,10 +3684,10 @@ sourceFile:sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValue --- >>>} 1 >^ -2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> +2 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-> 1 > >} 1 >Emitted(111, 2) Source(166, 2) + SourceIndex(0) --- ->>>var _a, _d, _g, _j, _k, _l, _m, _q, _r, _s, _t, _w, _x, _y, _z, _1, _4, _7, _9, _10, _11, _12, _15, _16, _17, _18, _21, _22, _23, _24, _26, _27, _28, _31, _32, _33, _36, _37, _38, _40, _41, _42, _43, _44, _45, _48, _49, _50, _51, _52, _53, _56, _57, _58, _59, _60, _61, _63, _64, _65, _68, _69, _70, _73, _74, _75, _77, _78, _79, _80, _81, _82, _85, _86, _87, _88, _89, _90, _93, _94, _95, _96, _97, _98; +>>>var _15, _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33, _34, _35, _36, _37, _38, _39, _40, _41, _42, _43, _44, _45, _46, _47, _48, _49, _50, _51, _52, _53, _54, _55, _56, _57, _58, _59, _60, _61, _62, _63, _64, _65, _66, _67, _68, _69, _70, _71, _72, _73, _74, _75, _76, _77, _78, _79, _80, _81, _82, _83, _84, _85, _86, _87, _88, _89, _90, _91, _92, _93, _94, _95, _96, _97, _98; >>>//# sourceMappingURL=sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2.js.map \ No newline at end of file