From f187b718774c67b71fb254509fbf1807864cc3e7 Mon Sep 17 00:00:00 2001 From: overlookmotel <557937+overlookmotel@users.noreply.github.com> Date: Thu, 22 Aug 2024 02:34:44 +0000 Subject: [PATCH] fix(semantic): transform checker compare scope children (#5056) --- .../src/post_transform_checker.rs | 20 + tasks/coverage/semantic_babel.snap | 633 +- tasks/coverage/semantic_misc.snap | 9 + tasks/coverage/semantic_test262.snap | 912 ++- tasks/coverage/semantic_typescript.snap | 6157 ++++++++++++++++- tasks/transform_conformance/babel.snap.md | 105 +- tasks/transform_conformance/oxc.snap.md | 27 +- 7 files changed, 7811 insertions(+), 52 deletions(-) diff --git a/crates/oxc_semantic/src/post_transform_checker.rs b/crates/oxc_semantic/src/post_transform_checker.rs index abaab47c37d8f..130ee5e43a84c 100644 --- a/crates/oxc_semantic/src/post_transform_checker.rs +++ b/crates/oxc_semantic/src/post_transform_checker.rs @@ -373,6 +373,26 @@ impl<'s> PostTransformChecker<'s> { if !is_match { self.errors.push_mismatch("Scope parent mismatch", scope_ids, parent_ids); } + + // Check children match + let child_ids = self.get_pair(scope_ids, |data, scope_id| { + data.scopes.get_child_ids(scope_id).cloned().unwrap_or_default() + }); + let is_match = child_ids.after_transform.len() == child_ids.rebuilt.len() && { + let mut child_ids_after_transform = child_ids + .after_transform + .iter() + .map(|child_id| self.scope_ids_map.get(child_id).copied()) + .collect::>(); + child_ids_after_transform.sort_unstable(); + let mut child_ids_rebuilt = + child_ids.rebuilt.iter().copied().map(Option::Some).collect::>(); + child_ids_rebuilt.sort_unstable(); + child_ids_after_transform == child_ids_rebuilt + }; + if !is_match { + self.errors.push_mismatch("Scope children mismatch", scope_ids, child_ids); + } } } diff --git a/tasks/coverage/semantic_babel.snap b/tasks/coverage/semantic_babel.snap index d28d687f643cc..e4df10282ee75 100644 --- a/tasks/coverage/semantic_babel.snap +++ b/tasks/coverage/semantic_babel.snap @@ -2,7 +2,12 @@ commit: 12619ffe semantic_babel Summary: AST Parsed : 2101/2101 (100.00%) -Positive Passed: 1845/2101 (87.82%) +Positive Passed: 1792/2101 (85.29%) +tasks/coverage/babel/packages/babel-parser/test/fixtures/annex-b/enabled/3.3-function-in-if-body/input.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + tasks/coverage/babel/packages/babel-parser/test/fixtures/comments/interpreter-directive/interpreter-directive-import/input.js semantic error: Bindings mismatch: after transform: ScopeId(0): ["spawn"] @@ -17,6 +22,11 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/core/opts/allowNewTarge semantic error: Unexpected new.target expression Unexpected new.target expression +tasks/coverage/babel/packages/babel-parser/test/fixtures/core/scope/dupl-bind-catch-hang-func/input.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + tasks/coverage/babel/packages/babel-parser/test/fixtures/core/uncategorised/327/input.js semantic error: A 'return' statement can only be used within a function body. @@ -123,6 +133,11 @@ semantic error: Bindings mismatch: after transform: ScopeId(0): ["nil"] rebuilt : ScopeId(0): [] +tasks/coverage/babel/packages/babel-parser/test/fixtures/esprima/statement-if/migrated_0003/input.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/arrow-function/async-await-null/input.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["T"] @@ -166,6 +181,21 @@ rebuilt : ScopeId(1): ["a"] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/arrow-function/generic-tsx-babel-7/input.ts semantic error: Expected `<` but found `EOF` +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/assert-predicate/asserts-as-identifier/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/assert-predicate/asserts-var/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/assert-predicate/declare-asserts-var-with-predicate/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/assign/TSTypeParameterInstantiation/input.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["M"] @@ -176,6 +206,29 @@ semantic error: Bindings mismatch: after transform: ScopeId(1): ["M"] rebuilt : ScopeId(1): [] +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/abstract/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +Scope children mismatch: +after transform: ScopeId(6): [ScopeId(7)] +rebuilt : ScopeId(5): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/async-named-properties/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/async-optional-method/input.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/constructor/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/constructor-with-modifier-names/input.ts semantic error: Multiple constructor implementations are not allowed. @@ -208,6 +261,36 @@ semantic error: Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/get-generic/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/get-generic-babel-7/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/members-with-modifier-names/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/members-with-modifier-names-babel-7/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/members-with-reserved-names/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/method-computed/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/method-generic/input.ts semantic error: Bindings mismatch: after transform: ScopeId(2): ["T", "a", "b", "c"] @@ -270,6 +353,26 @@ Bindings mismatch: after transform: ScopeId(8): ["T"] rebuilt : ScopeId(8): [] +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/method-no-body/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/method-with-newline-without-body/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/modifiers-accessors/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/modifiers-methods-async/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/modifiers-override/input.ts semantic error: Identifier `show` has already been declared Identifier `size` has already been declared @@ -277,6 +380,11 @@ Identifier `size` has already been declared tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/parameter-properties/input.ts semantic error: A required parameter cannot follow an optional parameter. +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/private-method-overload/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/properties/input.ts semantic error: Identifier `x` has already been declared Identifier `x` has already been declared @@ -284,10 +392,18 @@ Identifier `x` has already been declared Identifier `x` has already been declared Identifier `x` has already been declared +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/static/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(1): [] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/const/initializer-ambient-context/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["N"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/declare/const/input.ts semantic error: Bindings mismatch: @@ -305,15 +421,26 @@ Cannot assign to 'arguments' in strict mode Cannot assign to 'eval' in strict mode Cannot assign to 'arguments' in strict mode +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/declare/function-rest-trailing-comma/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/declare/interface/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/declare/interface-new-line/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/declare/let/input.ts semantic error: Bindings mismatch: @@ -324,11 +451,17 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/declare/patt semantic error: Bindings mismatch: after transform: ScopeId(0): ["B"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/declare/pattern-parameters-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["B"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/declare/var/input.ts semantic error: Bindings mismatch: @@ -372,16 +505,25 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/enum/declare semantic error: Bindings mismatch: after transform: ScopeId(0): ["E"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/enum/declare-const/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/enum/declare-new-line/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/enum/export/input.ts semantic error: Scope flags mismatch: @@ -397,6 +539,9 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/enum/export- semantic error: Bindings mismatch: after transform: ScopeId(0): ["E"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/enum/members/input.ts semantic error: Bindings mismatch: @@ -442,11 +587,17 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/estree-compa semantic error: Bindings mismatch: after transform: ScopeId(0): ["hot-new-module"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/export/declare/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "M", "N", "T", "_bar", "bar", "foo", "x"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/export/equals/input.ts semantic error: `export = ;` is only supported when compiling modules to CommonJS. @@ -460,16 +611,25 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/export/expor semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/export/export-type-declaration/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "b"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/export/export-value-declaration/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "D", "E", "a", "b"] rebuilt : ScopeId(0): ["C", "D", "a", "b"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode) rebuilt : ScopeId(3): ScopeFlags(StrictMode | Function) @@ -512,9 +672,29 @@ semantic error: Bindings mismatch: after transform: ScopeId(1): ["T", "input"] rebuilt : ScopeId(1): ["input"] +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/function/declare/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/function/declare-babel-7/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/function/declare-pattern-parameters/input.ts semantic error: A required parameter cannot follow an optional parameter. +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/function/export-default/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/function/overloads/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/import/equals/input.ts semantic error: Semantic Collector failed after transform Missing SymbolId: A @@ -585,6 +765,9 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/import/not-t semantic error: Bindings mismatch: after transform: ScopeId(0): ["m"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/import/type-asi/input.ts semantic error: Bindings mismatch: @@ -600,96 +783,153 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/ca semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/call-signature-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/construct-signature/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/construct-signature-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/export/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/extends/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/function-like-node-1/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/function-like-node-2/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/function-like-node-3/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/function-like-node-4/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/function-like-node-5/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/generic/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/generic-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/get-set/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/get-set-ambiguous/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/get-set-ambiguous-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/get-set-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/get-set-methods/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/get-set-methods-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/get-set-properties/input.ts semantic error: Expected `(` but found `:` @@ -698,91 +938,145 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/in semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/method-computed/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/method-computed-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/method-generic/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/method-generic-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/method-optional/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/method-optional-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/method-plain/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/method-plain-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/modifiers/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/pattern-parameters/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/pattern-parameters-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/properties/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/property-computed/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/property-named-public/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/reserved-method-name/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/reserved-method-name-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/separators/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Comma", "Newline", "Semi"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/module-namespace/body/input.ts semantic error: Semantic Collector failed after transform @@ -795,41 +1089,65 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/module-names semantic error: Bindings mismatch: after transform: ScopeId(0): ["N"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/module-namespace/body-nested/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/module-namespace/body-nested-declare/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/module-namespace/declare-shorthand/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["m"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/module-namespace/global-in-module/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["m"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/module-namespace/head/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["M", "N", "m"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/module-namespace/head-declare/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["M", "N", "global", "m"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/module-namespace/head-export/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["X"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/regression/async-arrow-generic-9560/input.ts semantic error: Bindings mismatch: @@ -851,16 +1169,25 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/regression/d semantic error: Bindings mismatch: after transform: ScopeId(0): ["AnotherType", "MyType"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/regression/destructuring-in-function-type-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AnotherType", "MyType"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/regression/is-default-export/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E", "I", "T"] rebuilt : ScopeId(0): ["E"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) @@ -869,21 +1196,33 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/regression/i semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/regression/issue-7742-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/regression/keyword-qualified-type/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/regression/keyword-qualified-type-2/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/regression/nested-extends-in-arrow-type-param/input.ts semantic error: Expected `,` but found `extends` @@ -895,17 +1234,43 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/regression/n semantic error: Bindings mismatch: after transform: ScopeId(0): ["Equals"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/regression/nested-extends-in-arrow-type-return-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Equals"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/callable-class/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/callable-class-ambient/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/enum-block-scoped/input.ts semantic error: Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(StrictMode) rebuilt : ScopeId(2): ScopeFlags(StrictMode | Function) +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/export-declare-function-after/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/export-declare-function-before/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/export-enum-after/input.ts semantic error: Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) @@ -920,45 +1285,89 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/export semantic error: Bindings mismatch: after transform: ScopeId(0): ["m2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(6)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/export-import-in-declare-module/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["~popsicle/dist/common"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/export-interface-after/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/export-interface-before/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/export-namespace/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["N"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/export-type-after/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/export-type-before/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/function-type-before-declaration/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/function-type-before-declaration-optional-pattern/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/module-declaration-var/input.js semantic error: Bindings mismatch: after transform: ScopeId(0): ["bar"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/module-declaration-var-2/input.js semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-class-interface/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-const-type/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-constenum-constenum/input.ts semantic error: Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) @@ -975,10 +1384,23 @@ Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(StrictMode) rebuilt : ScopeId(2): ScopeFlags(StrictMode | Function) +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-function-interface/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-function-type/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-import-ambient-class/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Something"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-import-equals-var/input.ts semantic error: Semantic Collector failed after transform @@ -988,26 +1410,96 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redecl semantic error: Bindings mismatch: after transform: ScopeId(0): ["Global", "a"] rebuilt : ScopeId(0): ["a"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-in-different-module/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T", "test", "test/submodule"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-in-different-module-and-top-level/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSONSchema7", "T", "foo", "fooBar", "test/submodule", "test/submodule2"] rebuilt : ScopeId(0): ["foo", "fooBar"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-in-nested-module/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["test/sub1"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-interface-class/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-interface-function/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-interface-interface/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-interface-let/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-interface-var/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-let-interface/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-let-type/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-type-function/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-type-let/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-type-var/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-var-interface/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-var-type/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/tsx/anonymous-function-generator/input.ts semantic error: Bindings mismatch: @@ -1023,6 +1515,9 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/tsx/type-arg semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/tsx/type-parameters/input.ts semantic error: Bindings mismatch: @@ -1038,41 +1533,65 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-alias/d semantic error: Bindings mismatch: after transform: ScopeId(0): ["T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-alias/export/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-alias/generic/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-alias/generic-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-alias/generic-complex-tokens-true/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-alias/generic-complex-tokens-true-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-alias/plain/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-arguments/instantiation-expression-asi/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "C1", "C2", "C3", "C4", "I", "bar", "x10", "x11", "x12", "x13", "x14", "x5", "x6", "yy"] rebuilt : ScopeId(0): ["C", "C1", "C2", "C3", "C4", "bar", "x10", "x11", "x12", "x13", "x14", "x5", "x6", "yy"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-arguments/whitespace/input.ts semantic error: Bindings mismatch: @@ -1161,15 +1680,26 @@ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "b"] rebuilt : ScopeId(0): [] +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/conditional/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/conditional-infer/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Element"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/conditional-infer-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Element"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/const-type-parameters/input.ts semantic error: Identifier `method` has already been declared @@ -1198,39 +1728,63 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/infer- semantic error: Bindings mismatch: after transform: ScopeId(0): ["X3", "X4", "X5", "X6", "X7", "X8", "X9"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/infer-with-constraints-and-conditional-types/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["X"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/infer-with-constraints-and-conditional-types-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["X"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/infer-with-constraints-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["X3", "X4", "X5", "X6", "X7", "X8", "X9"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/intrinsic-identifier/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["foo", "intrinsic"] rebuilt : ScopeId(0): ["foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(2): ["Foo", "X", "a", "x"] rebuilt : ScopeId(1): ["a", "x"] +Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/intrinsic-keyword/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/intrinsic-keyword-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/literal-string-4/input.ts semantic error: Bindings mismatch: @@ -1242,15 +1796,31 @@ semantic error: Bindings mismatch: after transform: ScopeId(0): ["bar", "x"] rebuilt : ScopeId(0): ["x"] +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/mapped/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/mapped-as/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["MappedTypeWithNewKeys", "PickByValueType", "RemoveKindField"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/mapped-as-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["MappedTypeWithNewKeys", "PickByValueType", "RemoveKindField"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/mapped-babel-7/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/object-shorthand/input.ts semantic error: Bindings mismatch: @@ -1266,84 +1836,145 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/parent semantic error: Bindings mismatch: after transform: ScopeId(0): ["T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/parenthesized-object/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/pattern-parameters/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/pattern-parameters-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/tuple-keyword-labeled/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["FuncWithDescription"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/tuple-keyword-labeled-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["FuncWithDescriptionBabel7"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/tuple-labeled/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/tuple-labeled-after-unlabeled/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/tuple-labeled-before-unlabeled/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/tuple-unlabeled-spread-after-labeled/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/tuple-unlabeled-spread-before-labeled/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/type-literal-get-set/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/type-literal-get-set-babel-7/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/typeof-type-asi-false-parameters/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Example"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/typeof-type-asi-false-parameters-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Example"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/types-named-abstract/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["abstract", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/union-intersection/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["F", "J", "K", "M", "N", "O", "intersection", "precedence1", "precedence2", "union"] rebuilt : ScopeId(0): ["intersection", "precedence1", "precedence2", "union"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types-arrow-function/object-pattern-with-template/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["F"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types-arrow-function-babel-7/object-pattern-with-template/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["F"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] diff --git a/tasks/coverage/semantic_misc.snap b/tasks/coverage/semantic_misc.snap index d5efe629def3a..2277d2f6830ac 100644 --- a/tasks/coverage/semantic_misc.snap +++ b/tasks/coverage/semantic_misc.snap @@ -15,16 +15,25 @@ tasks/coverage/misc/pass/oxc-2087.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Helpers"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/misc/pass/oxc-2394.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/misc/pass/oxc-2592.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/misc/pass/oxc-3443.tsx semantic error: Bindings mismatch: diff --git a/tasks/coverage/semantic_test262.snap b/tasks/coverage/semantic_test262.snap index f95a82985b77c..a3f6c5ebbfbaf 100644 --- a/tasks/coverage/semantic_test262.snap +++ b/tasks/coverage/semantic_test262.snap @@ -2,7 +2,907 @@ commit: a1587416 semantic_test262 Summary: AST Parsed : 46406/46406 (100.00%) -Positive Passed: 46382/46406 (99.95%) +Positive Passed: 46200/46406 (99.56%) +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-block-scoping.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-existing-block-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-existing-block-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-existing-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-existing-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-existing-var-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-existing-var-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-no-skip-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(4): [ScopeId(5), ScopeId(6)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-skip-dft-param.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-skip-early-err-block.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-skip-early-err-for-in.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(4): [ScopeId(5), ScopeId(6)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-skip-early-err-for-of.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(4): [ScopeId(5), ScopeId(6)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-skip-early-err-for.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(4): [ScopeId(5), ScopeId(6)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-skip-early-err-switch.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-skip-early-err-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(5): [ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(5): [ScopeId(6), ScopeId(7)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-skip-early-err.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-skip-param.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-block-scoping.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-existing-block-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-existing-block-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-existing-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-existing-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-existing-var-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-existing-var-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-no-skip-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(4): [ScopeId(5), ScopeId(6)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-skip-dft-param.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-skip-early-err-block.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-skip-early-err-for-in.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(4): [ScopeId(5), ScopeId(6)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-skip-early-err-for-of.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(4): [ScopeId(5), ScopeId(6)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-skip-early-err-for.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(4): [ScopeId(5), ScopeId(6)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-skip-early-err-switch.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-skip-early-err-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(5): [ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(5): [ScopeId(6), ScopeId(7)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-skip-early-err.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-skip-param.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-block-scoping.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-existing-block-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-existing-block-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-existing-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-existing-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-existing-var-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-existing-var-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-no-skip-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-skip-dft-param.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-skip-early-err-block.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-skip-early-err-for-in.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-skip-early-err-for-of.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-skip-early-err-for.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-skip-early-err-switch.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-skip-early-err-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(5): [ScopeId(6)] +rebuilt : ScopeId(5): [ScopeId(6)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-skip-early-err.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-skip-param.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-block-scoping.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-existing-block-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-existing-block-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-existing-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-existing-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-existing-var-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-existing-var-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-no-skip-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-skip-dft-param.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-skip-early-err-block.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-skip-early-err-for-in.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-skip-early-err-for-of.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-skip-early-err-for.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-skip-early-err-switch.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-skip-early-err-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(5): [ScopeId(6)] +rebuilt : ScopeId(5): [ScopeId(6)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-skip-early-err.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-skip-param.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-block-scoping.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-existing-block-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-existing-block-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-existing-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-existing-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-existing-var-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-existing-var-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-no-skip-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-skip-dft-param.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-skip-early-err-block.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-skip-early-err-for-in.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-skip-early-err-for-of.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-skip-early-err-for.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-skip-early-err-switch.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-skip-early-err-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(5): [ScopeId(6)] +rebuilt : ScopeId(5): [ScopeId(6)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-skip-early-err.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-skip-param.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-block-scoping.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-existing-block-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-existing-block-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-existing-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-existing-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-existing-var-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-existing-var-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-no-skip-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-skip-early-err-block.js +semantic error: Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(2): [ScopeId(3), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-skip-early-err-for-in.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-skip-early-err-for-of.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-skip-early-err-for.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-skip-early-err-switch.js +semantic error: Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(2): [ScopeId(3), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-skip-early-err-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(4): [ScopeId(5), ScopeId(6)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-skip-early-err.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-block-scoping.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-existing-block-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-existing-block-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-existing-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-existing-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-existing-var-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-existing-var-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-no-skip-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-skip-early-err-block.js +semantic error: Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(2): [ScopeId(3), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-skip-early-err-for-in.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-skip-early-err-for-of.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-skip-early-err-for.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-skip-early-err-switch.js +semantic error: Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(2): [ScopeId(3), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-skip-early-err-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(4): [ScopeId(5), ScopeId(6)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-skip-early-err.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-block-scoping.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-existing-block-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-existing-block-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-existing-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-existing-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-existing-var-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-existing-var-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-no-skip-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-skip-early-err-block.js +semantic error: Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3)] +rebuilt : ScopeId(2): [ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-skip-early-err-for-in.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-skip-early-err-for-of.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-skip-early-err-for.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-skip-early-err-switch.js +semantic error: Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3)] +rebuilt : ScopeId(2): [ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-skip-early-err-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-skip-early-err.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-block-scoping.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-existing-block-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-existing-block-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-existing-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-existing-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-existing-var-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-existing-var-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-no-skip-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-skip-early-err-block.js +semantic error: Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3)] +rebuilt : ScopeId(2): [ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-skip-early-err-for-in.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-skip-early-err-for-of.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-skip-early-err-for.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-skip-early-err-switch.js +semantic error: Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3)] +rebuilt : ScopeId(2): [ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-skip-early-err-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-skip-early-err.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-block-scoping.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-existing-block-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-existing-block-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-existing-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-existing-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-existing-var-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-existing-var-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-no-skip-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-skip-early-err-block.js +semantic error: Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3)] +rebuilt : ScopeId(2): [ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-skip-early-err-for-in.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-skip-early-err-for-of.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-skip-early-err-for.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-skip-early-err-switch.js +semantic error: Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3)] +rebuilt : ScopeId(2): [ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-skip-early-err-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-skip-early-err.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/test262/test/language/module-code/eval-rqstd-once.js semantic error: Bindings mismatch: after transform: ScopeId(0): ["dflt1", "dflt2", "dflt3", "global", "ns1", "ns3"] @@ -123,3 +1023,13 @@ semantic error: Bindings mismatch: after transform: ScopeId(0): ["resolved"] rebuilt : ScopeId(0): [] +tasks/coverage/test262/test/language/statements/if/S12.5_A10_T1.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/language/statements/if/S12.5_A5.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(4): [ScopeId(5), ScopeId(6), ScopeId(7)] + diff --git a/tasks/coverage/semantic_typescript.snap b/tasks/coverage/semantic_typescript.snap index f8e3bb98f8a47..1c5e4c416ca14 100644 --- a/tasks/coverage/semantic_typescript.snap +++ b/tasks/coverage/semantic_typescript.snap @@ -2,7 +2,7 @@ commit: d8086f14 semantic_typescript Summary: AST Parsed : 6456/6456 (100.00%) -Positive Passed: 3810/6456 (59.01%) +Positive Passed: 3499/6456 (54.20%) tasks/coverage/typescript/tests/cases/compiler/APILibCheck.ts semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. Please consider using `import lib from '...';` alongside Typescript's --allowSyntheticDefaultImports option, or add @babel/plugin-transform-modules-commonjs to your Babel config. @@ -33,6 +33,9 @@ tasks/coverage/typescript/tests/cases/compiler/APISample_jsdoc.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Annotations", "console", "getAllTags", "getAnnotations", "getReturnTypeFromJSDoc", "getSomeOtherTags", "parseCommentsIntoDefinition", "parseSpecificTags", "ts"] rebuilt : ScopeId(0): ["getAllTags", "getAnnotations", "getReturnTypeFromJSDoc", "getSomeOtherTags", "parseCommentsIntoDefinition", "parseSpecificTags", "ts"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(8), ScopeId(9), ScopeId(14), ScopeId(20), ScopeId(23), ScopeId(24)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(8), ScopeId(13), ScopeId(19), ScopeId(22), ScopeId(23)] tasks/coverage/typescript/tests/cases/compiler/APISample_linter.ts semantic error: Bindings mismatch: @@ -64,6 +67,9 @@ tasks/coverage/typescript/tests/cases/compiler/APISample_watcher.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["console", "currentDirectoryFiles", "fs", "path", "process", "ts", "watch"] rebuilt : ScopeId(0): ["currentDirectoryFiles", "ts", "watch"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(28)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(23)] Reference mismatch: after transform: ReferenceId(13): Some("fs") rebuilt : ReferenceId(8): None @@ -108,11 +114,20 @@ tasks/coverage/typescript/tests/cases/compiler/abstractInterfaceIdentifierName.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["abstract"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/abstractPropertyBasics.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C"] rebuilt : ScopeId(0): ["B", "C"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] +Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/compiler/acceptableAlias1.ts semantic error: Semantic Collector failed after transform @@ -122,16 +137,25 @@ tasks/coverage/typescript/tests/cases/compiler/addMoreCallSignaturesToBaseSignat semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo", "a", "kitty"] rebuilt : ScopeId(0): ["a", "kitty"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/addMoreCallSignaturesToBaseSignature2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo", "a", "kitty"] rebuilt : ScopeId(0): ["a", "kitty"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/aliasOfGenericFunctionWithRestBehavedSameAsUnaliased.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ExtendedMapper", "ExtendedMapper1", "ExtendedMapper2", "a", "a1", "a2", "a3", "b", "b1", "b2", "b3", "check", "check1", "check2", "check3", "test", "test1", "test2", "test3"] rebuilt : ScopeId(0): ["check", "check1", "check2", "check3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(16), ScopeId(17), ScopeId(18)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/aliasUsageInAccessorsOfClass.ts semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. @@ -191,81 +215,147 @@ tasks/coverage/typescript/tests/cases/compiler/ambientClassMergesOverloadsWithIn semantic error: Bindings mismatch: after transform: ScopeId(0): ["C"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/ambientClassOverloadForFunction.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/ambientEnumElementInitializer1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/ambientEnumElementInitializer2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/ambientEnumElementInitializer3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/ambientEnumElementInitializer4.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/ambientEnumElementInitializer5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/ambientEnumElementInitializer6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["M"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/ambientExternalModuleReopen.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["fs"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/ambientExternalModuleWithInternalImportDeclaration.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["M"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/ambientExternalModuleWithoutInternalImportDeclaration.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["M"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/ambientFundule.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["f"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/ambientModuleExports.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "Foo2", "c", "c2"] rebuilt : ScopeId(0): ["c", "c2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/ambientModuleWithClassDeclarationWithExtends.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/ambientModuleWithTemplateLiterals.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/ambientModules.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/ambientNameRestrictions.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/ambiguousCallsWhereReturnTypesAgree.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] +Scope children mismatch: +after transform: ScopeId(8): [ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14)] +rebuilt : ScopeId(4): [ScopeId(5), ScopeId(6)] + +tasks/coverage/typescript/tests/cases/compiler/ambiguousOverloadResolution.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/amdModuleConstEnumUsage.ts semantic error: Bindings mismatch: @@ -305,16 +395,25 @@ tasks/coverage/typescript/tests/cases/compiler/anyIsAssignableToObject.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["P", "Q"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/anyIsAssignableToVoid.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["P", "Q"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/argumentsAsPropertyName.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyType", "myFunction"] rebuilt : ScopeId(0): ["myFunction"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/arrayAssignmentTest6.ts semantic error: Semantic Collector failed after transform @@ -329,6 +428,9 @@ tasks/coverage/typescript/tests/cases/compiler/arrayAugment.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Array", "x", "y"] rebuilt : ScopeId(0): ["x", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/arrayBestCommonTypes.ts semantic error: Semantic Collector failed after transform @@ -345,6 +447,9 @@ tasks/coverage/typescript/tests/cases/compiler/arrayConcat3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Fn", "doStuff"] rebuilt : ScopeId(0): ["doStuff"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(2): ["T", "T1", "a", "b"] rebuilt : ScopeId(1): ["a", "b"] @@ -353,6 +458,9 @@ tasks/coverage/typescript/tests/cases/compiler/arrayDestructuringInSwitch1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["BooleanLogicExpression", "Expression", "evaluate"] rebuilt : ScopeId(0): ["evaluate"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/arrayFlatNoCrashInference.ts semantic error: Bindings mismatch: @@ -366,6 +474,9 @@ tasks/coverage/typescript/tests/cases/compiler/arrayLiteralContextualType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Elephant", "Giraffe", "IAnimal", "arr", "bar", "foo"] rebuilt : ScopeId(0): ["Elephant", "Giraffe", "arr", "bar", "foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/compiler/arrayOfExportedClass.ts semantic error: `export = ;` is only supported when compiling modules to CommonJS. @@ -375,11 +486,17 @@ tasks/coverage/typescript/tests/cases/compiler/arrayTypeInSignatureOfInterfaceAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["Data", "WinJS"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/arrayconcat.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IOptions", "parser"] rebuilt : ScopeId(0): ["parser"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/arrowFunctionInExpressionStatement2.ts semantic error: Semantic Collector failed after transform @@ -425,6 +542,16 @@ Bindings mismatch: after transform: ScopeId(22): ["T", "value"] rebuilt : ScopeId(22): ["value"] +tasks/coverage/typescript/tests/cases/compiler/asiAmbientFunctionDeclaration.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/assertionFunctionWildcardImport1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/assertionFunctionWildcardImport2.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["T", "obj"] @@ -434,6 +561,9 @@ tasks/coverage/typescript/tests/cases/compiler/assertionFunctionsCanNarrowByDisc semantic error: Bindings mismatch: after transform: ScopeId(0): ["Animal", "Cat", "Dog", "animal", "animalOrUndef"] rebuilt : ScopeId(0): ["animal", "animalOrUndef"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/assign1.ts semantic error: Semantic Collector failed after transform @@ -442,6 +572,11 @@ Missing SymbolId: _M Missing ReferenceId: M Missing ReferenceId: M +tasks/coverage/typescript/tests/cases/compiler/assignToPrototype1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/assignmentCompatForEnums.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["One", "TokenType", "Two"] @@ -450,6 +585,11 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(0x0) rebuilt : ScopeId(1): ScopeFlags(Function) +tasks/coverage/typescript/tests/cases/compiler/assignmentCompatOnNew.ts +semantic error: Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3)] +rebuilt : ScopeId(2): [] + tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability1.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -525,11 +665,17 @@ tasks/coverage/typescript/tests/cases/compiler/asyncFunctionContextuallyTypedRet semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyCallback", "increment", "increment2"] rebuilt : ScopeId(0): ["increment", "increment2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11)] tasks/coverage/typescript/tests/cases/compiler/asyncFunctionReturnType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Obj", "fAsync", "fAsyncExplicit", "fGenericIndexedTypeForAnyProp", "fGenericIndexedTypeForExplicitPromiseOfAnyProp", "fGenericIndexedTypeForExplicitPromiseOfKProp", "fGenericIndexedTypeForExplicitPromiseOfStringProp", "fGenericIndexedTypeForKProp", "fGenericIndexedTypeForPromiseOfAnyProp", "fGenericIndexedTypeForPromiseOfKProp", "fGenericIndexedTypeForPromiseOfStringProp", "fGenericIndexedTypeForStringProp", "fIndexedTypeForAnyProp", "fIndexedTypeForExplicitPromiseOfAnyProp", "fIndexedTypeForExplicitPromiseOfStringProp", "fIndexedTypeForPromiseOfAnyProp", "fIndexedTypeForPromiseOfStringProp", "fIndexedTypeForStringProp"] rebuilt : ScopeId(0): ["fAsync", "fAsyncExplicit", "fGenericIndexedTypeForAnyProp", "fGenericIndexedTypeForExplicitPromiseOfAnyProp", "fGenericIndexedTypeForExplicitPromiseOfKProp", "fGenericIndexedTypeForExplicitPromiseOfStringProp", "fGenericIndexedTypeForKProp", "fGenericIndexedTypeForPromiseOfAnyProp", "fGenericIndexedTypeForPromiseOfKProp", "fGenericIndexedTypeForPromiseOfStringProp", "fGenericIndexedTypeForStringProp", "fIndexedTypeForAnyProp", "fIndexedTypeForExplicitPromiseOfAnyProp", "fIndexedTypeForExplicitPromiseOfStringProp", "fIndexedTypeForPromiseOfAnyProp", "fIndexedTypeForPromiseOfStringProp", "fIndexedTypeForStringProp"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17)] Bindings mismatch: after transform: ScopeId(10): ["TObj", "obj"] rebuilt : ScopeId(9): ["obj"] @@ -562,11 +708,17 @@ tasks/coverage/typescript/tests/cases/compiler/asyncFunctionsAndStrictNullChecks semantic error: Bindings mismatch: after transform: ScopeId(0): ["Windows", "sample", "sample2"] rebuilt : ScopeId(0): ["sample", "sample2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/asyncYieldStarContextualType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Author", "Book", "BookWithAuthor", "Result", "T", "U", "V", "authorPromise", "f", "g", "mapper"] rebuilt : ScopeId(0): ["f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(19): Some("authorPromise") rebuilt : ReferenceId(0): None @@ -590,6 +742,9 @@ tasks/coverage/typescript/tests/cases/compiler/augmentArray.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Array"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/augmentExportEquals3.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -613,6 +768,9 @@ tasks/coverage/typescript/tests/cases/compiler/augmentExportEquals5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["e", "express"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/augmentExportEquals6.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -627,10 +785,18 @@ tasks/coverage/typescript/tests/cases/compiler/augmentedTypeBracketNamedProperty semantic error: Bindings mismatch: after transform: ScopeId(0): ["Function", "Object", "f", "o", "r1", "r2", "r3", "r4"] rebuilt : ScopeId(0): ["f", "o", "r1", "r2", "r3", "r4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/augmentedTypesClass3.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript +tasks/coverage/typescript/tests/cases/compiler/augmentedTypesExternalModule1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/augmentedTypesModules3b.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -658,6 +824,9 @@ tasks/coverage/typescript/tests/cases/compiler/avoidCycleWithVoidExpressionRetur semantic error: Bindings mismatch: after transform: ScopeId(0): ["Howl", "HowlErrorCallback", "HowlOptions", "instance"] rebuilt : ScopeId(0): ["Howl", "instance"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] tasks/coverage/typescript/tests/cases/compiler/avoidNarrowingUsingConstVariableFromBindingElementWithLiteralInitializer.ts semantic error: Bindings mismatch: @@ -674,6 +843,9 @@ tasks/coverage/typescript/tests/cases/compiler/awaitUnionPromise.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AsyncEnumeratorDone", "IAsyncEnumerator", "main"] rebuilt : ScopeId(0): ["AsyncEnumeratorDone", "main"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/awaitedTypeCrash.ts semantic error: Bindings mismatch: @@ -684,15 +856,26 @@ tasks/coverage/typescript/tests/cases/compiler/awaitedTypeJQuery.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Promise3", "PromiseBase", "T", "Thenable"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/badInferenceLowerPriorityThanGoodInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "goofus", "result"] rebuilt : ScopeId(0): ["goofus", "result"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6)] Bindings mismatch: after transform: ScopeId(5): ["ARGS", "f"] rebuilt : ScopeId(3): ["f"] +tasks/coverage/typescript/tests/cases/compiler/badThisBinding.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/bangInModuleName.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["http"] @@ -702,11 +885,17 @@ tasks/coverage/typescript/tests/cases/compiler/baseIndexSignatureResolution.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "Derived", "Foo", "FooOf", "x", "y"] rebuilt : ScopeId(0): ["Base", "Derived", "x", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/baseTypeAfterDerivedType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "Base2", "Derived", "Derived2"] rebuilt : ScopeId(0): ["Derived2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/baseTypeOrderChecking.ts semantic error: Bindings mismatch: @@ -737,16 +926,30 @@ tasks/coverage/typescript/tests/cases/compiler/bestCommonTypeReturnStatement.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IPromise", "b", "d", "f"] rebuilt : ScopeId(0): ["b", "d", "f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/bestCommonTypeWithContextualTyping.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Contextual", "Ellement", "arr", "conditional", "contextualOr", "e", "obj"] rebuilt : ScopeId(0): ["arr", "conditional", "contextualOr", "e", "obj"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/bestCommonTypeWithOptionalProperties.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["X", "Y", "Z", "b1", "b2", "b3", "b4", "b5", "b6", "x", "y", "z"] rebuilt : ScopeId(0): ["b1", "b2", "b3", "b4", "b5", "b6", "x", "y", "z"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/bindingPatternContextualTypeDoesNotCauseWidening.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/binopAssignmentShouldHaveType.ts semantic error: Semantic Collector failed after transform @@ -757,6 +960,11 @@ Missing ReferenceId: Bug Missing ReferenceId: Test Missing ReferenceId: Test +tasks/coverage/typescript/tests/cases/compiler/blockScopedBindingsReassignedInLoop1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/blockScopedNamespaceDifferentFile.ts semantic error: Semantic Collector failed after transform Missing SymbolId: C @@ -773,6 +981,9 @@ tasks/coverage/typescript/tests/cases/compiler/booleanFilterAnyArray.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Ari", "Bullean", "BulleanConstructor", "anys", "foo", "foor", "foos", "realanys", "xs", "ys"] rebuilt : ScopeId(0): ["foo", "foor", "foos", "xs", "ys"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference mismatch: after transform: ReferenceId(16): Some("anys") rebuilt : ReferenceId(0): None @@ -787,6 +998,9 @@ tasks/coverage/typescript/tests/cases/compiler/cachedContextualTypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IMenuWorkbenchToolBarOptions", "MenuWorkbenchToolBar"] rebuilt : ScopeId(0): ["MenuWorkbenchToolBar"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/cachedModuleResolution1.ts semantic error: Bindings mismatch: @@ -817,11 +1031,17 @@ tasks/coverage/typescript/tests/cases/compiler/callExpressionWithTypeParameterCo semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "i", "y"] rebuilt : ScopeId(0): ["i", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/callOfConditionalTypeWithConcreteBranches.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AddFirstParameterToFunctions", "ExtractParameters", "Q", "Q2", "X", "fn", "fn2"] rebuilt : ScopeId(0): ["fn", "fn2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(9), ScopeId(11), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(18)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(7), ScopeId(8)] Bindings mismatch: after transform: ScopeId(3): ["T", "arg"] rebuilt : ScopeId(1): ["arg"] @@ -833,22 +1053,37 @@ tasks/coverage/typescript/tests/cases/compiler/callbacksDontShareTypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Collection", "Combinators", "_", "c2", "r1a", "r1b", "r5a", "r5b", "rf1"] rebuilt : ScopeId(0): ["_", "c2", "r1a", "r1b", "r5a", "r5b", "rf1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/callsOnComplexSignatures.tsx semantic error: Bindings mismatch: after transform: ScopeId(1): ["Temp1", "Temp2", "stringType1", "stringType2", "test"] rebuilt : ScopeId(1): ["test"] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(8)] +rebuilt : ScopeId(1): [ScopeId(2)] Bindings mismatch: after transform: ScopeId(9): ["Messages", "messages", "test1"] rebuilt : ScopeId(3): ["messages", "test1"] +Scope children mismatch: +after transform: ScopeId(9): [ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5), ScopeId(6)] Bindings mismatch: after transform: ScopeId(20): ["C", "P1", "P2", "a"] rebuilt : ScopeId(13): ["C", "a"] +Scope children mismatch: +after transform: ScopeId(20): [ScopeId(21), ScopeId(22)] +rebuilt : ScopeId(13): [] tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["iobj", "sobj"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6), ScopeId(10), ScopeId(14), ScopeId(17), ScopeId(20), ScopeId(24), ScopeId(28), ScopeId(31), ScopeId(34), ScopeId(38), ScopeId(41), ScopeId(44), ScopeId(47), ScopeId(53), ScopeId(57), ScopeId(61), ScopeId(65), ScopeId(68), ScopeId(71), ScopeId(75), ScopeId(79), ScopeId(82), ScopeId(85), ScopeId(89), ScopeId(92)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(9), ScopeId(13), ScopeId(16), ScopeId(19), ScopeId(23), ScopeId(27), ScopeId(30), ScopeId(33), ScopeId(37), ScopeId(40), ScopeId(43), ScopeId(46), ScopeId(52), ScopeId(56), ScopeId(60), ScopeId(64), ScopeId(67), ScopeId(70), ScopeId(74), ScopeId(78), ScopeId(81), ScopeId(84), ScopeId(88), ScopeId(91)] Reference mismatch: after transform: ReferenceId(90): Some("sobj") rebuilt : ReferenceId(90): None @@ -862,6 +1097,26 @@ Reference mismatch: after transform: ReferenceId(94): Some("iobj") rebuilt : ReferenceId(94): None +tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop3.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(7), ScopeId(12), ScopeId(17), ScopeId(21), ScopeId(25), ScopeId(30), ScopeId(35), ScopeId(39), ScopeId(43), ScopeId(48), ScopeId(53), ScopeId(58), ScopeId(63), ScopeId(67), ScopeId(71), ScopeId(76), ScopeId(81), ScopeId(85), ScopeId(89)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(6), ScopeId(11), ScopeId(16), ScopeId(20), ScopeId(24), ScopeId(29), ScopeId(34), ScopeId(38), ScopeId(42), ScopeId(47), ScopeId(52), ScopeId(57), ScopeId(62), ScopeId(66), ScopeId(70), ScopeId(75), ScopeId(80), ScopeId(84), ScopeId(88)] + +tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop3_ES6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(7), ScopeId(12), ScopeId(17), ScopeId(21), ScopeId(25), ScopeId(30), ScopeId(35), ScopeId(39), ScopeId(43), ScopeId(48), ScopeId(53), ScopeId(58), ScopeId(63), ScopeId(67), ScopeId(71), ScopeId(76), ScopeId(81), ScopeId(85), ScopeId(89)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(6), ScopeId(11), ScopeId(16), ScopeId(20), ScopeId(24), ScopeId(29), ScopeId(34), ScopeId(38), ScopeId(42), ScopeId(47), ScopeId(52), ScopeId(57), ScopeId(62), ScopeId(66), ScopeId(70), ScopeId(75), ScopeId(80), ScopeId(84), ScopeId(88)] + +tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop9.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(16), ScopeId(17), ScopeId(33), ScopeId(45), ScopeId(51)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(16), ScopeId(32), ScopeId(44), ScopeId(50)] + +tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop9_ES6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(16), ScopeId(17), ScopeId(33), ScopeId(45), ScopeId(51)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(16), ScopeId(32), ScopeId(44), ScopeId(50)] + tasks/coverage/typescript/tests/cases/compiler/castExpressionParentheses.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "a"] @@ -910,6 +1165,14 @@ tasks/coverage/typescript/tests/cases/compiler/castNewObjectBug.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "xx"] rebuilt : ScopeId(0): ["xx"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/castTest.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/chainedImportAlias.ts semantic error: Semantic Collector failed after transform @@ -924,16 +1187,25 @@ tasks/coverage/typescript/tests/cases/compiler/chainedSpecializationToObjectType semantic error: Bindings mismatch: after transform: ScopeId(0): ["Sequence", "s", "s2", "s3"] rebuilt : ScopeId(0): ["s", "s2", "s3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/checkInfiniteExpansionTermination.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo", "IObservable", "ISubject", "values", "values2"] rebuilt : ScopeId(0): ["values", "values2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/checkInfiniteExpansionTermination2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IObservable", "ISubject", "fn"] rebuilt : ScopeId(0): ["fn"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(5): ["T", "values"] rebuilt : ScopeId(1): ["values"] @@ -942,25 +1214,52 @@ tasks/coverage/typescript/tests/cases/compiler/checkInterfaceBases.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["SecondEvent", "Third"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/checkJsTypeDefNoUnusedLocalMarked.ts semantic error: `export = ;` is only supported when compiling modules to CommonJS. Please consider using `export default ;`, or add @babel/plugin-transform-modules-commonjs to your Babel config. +tasks/coverage/typescript/tests/cases/compiler/checkSwitchStatementIfCaseTypeIsString.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/circularConstrainedMappedTypeNoCrash.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Loop"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/circularConstructorWithReturn.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Client", "applyModelsAndClientExtensions", "getPrismaClient"] rebuilt : ScopeId(0): ["applyModelsAndClientExtensions", "getPrismaClient"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] tasks/coverage/typescript/tests/cases/compiler/circularContextualMappedType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Func", "Mapped"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] + +tasks/coverage/typescript/tests/cases/compiler/circularGetAccessor.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/circularMappedTypeConstraint.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/circularTypeofWithFunctionModule.ts semantic error: Semantic Collector failed after transform @@ -974,6 +1273,9 @@ tasks/coverage/typescript/tests/cases/compiler/circularlySimplifyingConditionalT semantic error: Bindings mismatch: after transform: ScopeId(0): ["ComponentClass", "Connect", "InferableComponentEnhancerWithProps", "Omit", "Shared", "connect", "myStoreConnect"] rebuilt : ScopeId(0): ["myStoreConnect"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(42): Some("connect") rebuilt : ReferenceId(0): None @@ -1001,11 +1303,17 @@ tasks/coverage/typescript/tests/cases/compiler/classExpressionWithResolutionOfNa semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/classExpressionWithStaticProperties3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["arr", "console"] rebuilt : ScopeId(0): ["arr"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(5)] Reference mismatch: after transform: ReferenceId(6): Some("console") rebuilt : ReferenceId(6): None @@ -1014,6 +1322,9 @@ tasks/coverage/typescript/tests/cases/compiler/classExpressionWithStaticProperti semantic error: Bindings mismatch: after transform: ScopeId(0): ["arr", "console"] rebuilt : ScopeId(0): ["arr"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(5)] Reference mismatch: after transform: ReferenceId(6): Some("console") rebuilt : ReferenceId(6): None @@ -1022,14 +1333,23 @@ tasks/coverage/typescript/tests/cases/compiler/classExpressions.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/classExtendingAbstractClassWithMemberCalledTheSameAsItsOwnTypeParam.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["BaseObservable", "ConvenientObservable", "IObservable", "IObserver", "IReader"] rebuilt : ScopeId(0): ["BaseObservable", "ConvenientObservable"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Bindings mismatch: after transform: ScopeId(7): ["T", "TChange"] rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(7): [ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(1): [ScopeId(2)] Bindings mismatch: after transform: ScopeId(10): ["T", "TChange"] rebuilt : ScopeId(3): [] @@ -1055,11 +1375,22 @@ tasks/coverage/typescript/tests/cases/compiler/classFunctionMerging.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "a", "b"] rebuilt : ScopeId(0): ["a", "b"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/classFunctionMerging2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/classImplementingInterfaceIndexer.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "I"] rebuilt : ScopeId(0): ["A"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/classImplementsImportedInterface.ts semantic error: Semantic Collector failed after transform @@ -1072,11 +1403,17 @@ tasks/coverage/typescript/tests/cases/compiler/classImplementsMethodWIthTupleArg semantic error: Bindings mismatch: after transform: ScopeId(0): ["Settable"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/classMemberInitializerWithLamdaScoping5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Greeter", "console"] rebuilt : ScopeId(0): ["Greeter"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(0): Some("console") rebuilt : ReferenceId(0): None @@ -1087,12 +1424,18 @@ after transform: ScopeId(2): ["T"] rebuilt : ScopeId(2): [] tasks/coverage/typescript/tests/cases/compiler/classVarianceResolveCircularity1.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] +Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/compiler/classVarianceResolveCircularity2.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] +Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] Bindings mismatch: @@ -1147,6 +1490,9 @@ tasks/coverage/typescript/tests/cases/compiler/coAndContraVariantInferences2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "Block", "C", "CaseClause", "ClassExpression1", "ClassLike1", "ClassStatement1", "Declaration", "Expression", "FunctionDeclaration", "HasLocals", "Identifier", "Node", "Node1", "NodeArray", "Statement1", "SyntaxKind", "SyntaxKind1", "TypeNode", "bar", "f1", "f2", "f3", "foo", "maybeClassStatement", "statement", "types", "x"] rebuilt : ScopeId(0): ["SyntaxKind", "SyntaxKind1", "bar", "f1", "f2", "f3", "foo", "maybeClassStatement", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] Bindings mismatch: after transform: ScopeId(14): ["Block", "CaseClause", "FunctionDeclaration", "FunctionExpression", "Identifier", "SyntaxKind"] rebuilt : ScopeId(6): ["SyntaxKind"] @@ -1170,6 +1516,9 @@ tasks/coverage/typescript/tests/cases/compiler/coAndContraVariantInferences3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AssertClause", "BindableOverloadBuilder", "BoundOverloadBuilder", "DISALLOW_DECORATORS", "Declaration", "Decorator", "DeprecationOptions", "Expression", "FinishableOverloadBuilder", "ImportClause", "ImportDeclaration", "Modifier", "Node", "OverloadBinder", "OverloadBinders", "OverloadBuilder", "OverloadDefinitions", "OverloadDeprecations", "OverloadFunction", "OverloadKeys", "OverloadParameters", "Statement", "SyntaxKind", "UnionToIntersection", "foo", "modifiers", "updateImportDeclaration"] rebuilt : ScopeId(0): ["SyntaxKind", "foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] Bindings mismatch: after transform: ScopeId(27): ["AssertClause", "Decorator", "ImportClause", "ImportDeclaration", "Modifier", "SyntaxKind"] rebuilt : ScopeId(1): ["SyntaxKind"] @@ -1196,6 +1545,9 @@ tasks/coverage/typescript/tests/cases/compiler/coAndContraVariantInferences4.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Decorator", "Modifier", "Node", "SyntaxKind", "foo", "modifiers"] rebuilt : ScopeId(0): ["SyntaxKind", "foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["Decorator", "Modifier", "SyntaxKind"] rebuilt : ScopeId(1): ["SyntaxKind"] @@ -1213,11 +1565,17 @@ tasks/coverage/typescript/tests/cases/compiler/coAndContraVariantInferences5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["SelectOptions", "SelectProps", "Thing", "f"] rebuilt : ScopeId(0): ["f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/collectionPatternNoError.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["DataProvider", "Message", "MessageList", "MsgConstructor", "f", "fetchMsg"] rebuilt : ScopeId(0): ["DataProvider", "Message", "f", "fetchMsg"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(7)] Bindings mismatch: after transform: ScopeId(7): ["V", "protoCtor"] rebuilt : ScopeId(3): ["protoCtor"] @@ -1228,10 +1586,18 @@ Bindings mismatch: after transform: ScopeId(11): ["T", "U", "message", "messageList"] rebuilt : ScopeId(7): ["message", "messageList"] +tasks/coverage/typescript/tests/cases/compiler/collisionArgumentsInType.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/collisionArgumentsInterfaceMembers.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["i1", "i12", "i1NoError", "i2", "i21", "i2NoError", "i3"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(10)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/collisionCodeGenEnumWithEnumMemberConflict.ts semantic error: Bindings mismatch: @@ -1317,11 +1683,17 @@ tasks/coverage/typescript/tests/cases/compiler/collisionExportsRequireAndAmbient semantic error: Bindings mismatch: after transform: ScopeId(0): ["m1", "m2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/collisionExportsRequireAndAmbientEnum.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["exports", "m1", "m2", "require"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/collisionExportsRequireAndAmbientFunction.ts semantic error: Semantic Collector failed after transform @@ -1389,23 +1761,92 @@ tasks/coverage/typescript/tests/cases/compiler/collisionExportsRequireAndUninsta semantic error: Bindings mismatch: after transform: ScopeId(0): ["exports", "foo", "foo2", "require"] rebuilt : ScopeId(0): ["foo", "foo2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/typescript/tests/cases/compiler/collisionRestParameterClassConstructor.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(21), ScopeId(25), ScopeId(28)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15)] +Scope children mismatch: +after transform: ScopeId(17): [ScopeId(18), ScopeId(19), ScopeId(20)] +rebuilt : ScopeId(13): [ScopeId(14)] +Scope children mismatch: +after transform: ScopeId(21): [ScopeId(22), ScopeId(23), ScopeId(24)] +rebuilt : ScopeId(15): [ScopeId(16)] + +tasks/coverage/typescript/tests/cases/compiler/collisionRestParameterClassMethod.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(10), ScopeId(17)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(6)] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] + +tasks/coverage/typescript/tests/cases/compiler/collisionRestParameterFunction.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] + +tasks/coverage/typescript/tests/cases/compiler/collisionRestParameterFunctionExpressions.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] + +tasks/coverage/typescript/tests/cases/compiler/collisionRestParameterInType.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/collisionRestParameterInterfaceMembers.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["i1", "i1NoError", "i2", "i2NoError", "i3"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/collisionRestParameterUnderscoreIUsage.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "_i", "console"] rebuilt : ScopeId(0): ["Foo", "_i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(0): Some("console") rebuilt : ReferenceId(0): None +tasks/coverage/typescript/tests/cases/compiler/collisionSuperAndNameResolution.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/typescript/tests/cases/compiler/collisionSuperAndParameter.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(9), ScopeId(19), ScopeId(23)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(9), ScopeId(19)] +Scope children mismatch: +after transform: ScopeId(23): [ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29)] +rebuilt : ScopeId(19): [ScopeId(20), ScopeId(21)] + +tasks/coverage/typescript/tests/cases/compiler/collisionSuperAndPropertyNameAsConstuctorParameter.ts +semantic error: Scope children mismatch: +after transform: ScopeId(6): [ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(6): [ScopeId(7)] +Scope children mismatch: +after transform: ScopeId(10): [ScopeId(11), ScopeId(12), ScopeId(13)] +rebuilt : ScopeId(8): [ScopeId(9)] + tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndAliasInGlobal.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript +tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndAmbientClassInGlobal.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndAmbientVarInGlobal.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["_this", "f"] @@ -1422,6 +1863,16 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(0x0) rebuilt : ScopeId(1): ScopeFlags(Function) +tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndLocalVarInFunction.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndLocalVarInLambda.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] + tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndModuleInGlobal.ts semantic error: Semantic Collector failed after transform Missing SymbolId: _this @@ -1429,10 +1880,21 @@ Missing SymbolId: _this2 Missing ReferenceId: _this Missing ReferenceId: _this +tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndNameResolution.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndParameter.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "Foo1", "Foo3", "console", "f1", "f3"] rebuilt : ScopeId(0): ["Foo", "Foo1", "Foo3", "f1", "f3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(17), ScopeId(21), ScopeId(22), ScopeId(24), ScopeId(27), ScopeId(28), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(44), ScopeId(49), ScopeId(50)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(17), ScopeId(21), ScopeId(23), ScopeId(30)] +Scope children mismatch: +after transform: ScopeId(28): [ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(34), ScopeId(35), ScopeId(36)] +rebuilt : ScopeId(23): [ScopeId(24), ScopeId(27)] Reference mismatch: after transform: ReferenceId(1): Some("console") rebuilt : ReferenceId(1): None @@ -1440,6 +1902,14 @@ Reference mismatch: after transform: ReferenceId(3): Some("console") rebuilt : ReferenceId(3): None +tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndPropertyNameAsConstuctorParameter.ts +semantic error: Scope children mismatch: +after transform: ScopeId(9): [ScopeId(10), ScopeId(11), ScopeId(12)] +rebuilt : ScopeId(9): [ScopeId(10)] +Scope children mismatch: +after transform: ScopeId(15): [ScopeId(16), ScopeId(17), ScopeId(18)] +rebuilt : ScopeId(13): [ScopeId(14)] + tasks/coverage/typescript/tests/cases/compiler/commentEmitAtEndOfFile1.ts semantic error: Semantic Collector failed after transform Missing SymbolId: foo @@ -1466,15 +1936,31 @@ Missing ReferenceId: _hello Missing ReferenceId: hello Missing ReferenceId: hello +tasks/coverage/typescript/tests/cases/compiler/commentLeadingCloseBrace.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/commentOnAmbientClass1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/commentOnAmbientEnum.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "D"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/commentOnAmbientModule.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "D"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/commentOnAmbientVariable1.ts semantic error: Bindings mismatch: @@ -1489,10 +1975,23 @@ Reference mismatch: after transform: ReferenceId(0): Some("x") rebuilt : ReferenceId(0): None +tasks/coverage/typescript/tests/cases/compiler/commentOnAmbientfunction.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/commentOnDecoratedClassDeclaration.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + tasks/coverage/typescript/tests/cases/compiler/commentOnElidedModule1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ElidedModule", "ElidedModule2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/commentOnExportEnumDeclaration.ts semantic error: Bindings mismatch: @@ -1506,11 +2005,25 @@ tasks/coverage/typescript/tests/cases/compiler/commentOnInterface1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "I2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/commentOnSignature1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] +Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(2): [ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/compiler/commentsOnJSXExpressionsArePreserved.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["Component", "JSX", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["Component", "_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/commonJsImportClassExpression.ts semantic error: `export = ;` is only supported when compiling modules to CommonJS. @@ -1531,6 +2044,9 @@ tasks/coverage/typescript/tests/cases/compiler/comparableRelationBidirectional.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["Automation", "AutomationMode", "ExtensionData", "ThemePreset", "UserSettings", "getMockData"] rebuilt : ScopeId(0): ["AutomationMode", "getMockData"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["AutomationMode", "LOCATION", "NONE", "SYSTEM", "TIME"] rebuilt : ScopeId(1): ["AutomationMode"] @@ -1542,6 +2058,9 @@ tasks/coverage/typescript/tests/cases/compiler/comparisonOfPartialDeepAndIndexed semantic error: Bindings mismatch: after transform: ScopeId(0): ["Collection", "Many", "PartialDeep", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/complexNarrowingWithAny.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -1550,6 +2069,9 @@ tasks/coverage/typescript/tests/cases/compiler/complicatedIndexesOfIntersections semantic error: Bindings mismatch: after transform: ScopeId(0): ["FormikConfig"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/compositeContextualSignature.ts semantic error: Bindings mismatch: @@ -1597,40 +2119,72 @@ tasks/coverage/typescript/tests/cases/compiler/computedTypesKeyofNoIndexSignatur semantic error: Bindings mismatch: after transform: ScopeId(0): ["Compute", "Equals", "EqualsTest", "Filter", "FooBar", "FooBarKey", "IndexObject", "OmitIndex", "WithIndex", "WithIndexKey", "WithoutIndex", "WithoutIndexKey"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/conditionalEqualityTestingNullability.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Equals", "Foo", "ShouldBe0", "a", "b"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/conditionalTypeAnyUnion.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["R", "Spec", "WithSpec"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/conditionalTypeBasedContextualTypeReturnTypeWidening.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7)] tasks/coverage/typescript/tests/cases/compiler/conditionalTypeClassMembers.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["DS"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(6)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/conditionalTypeContextualTypeSimplificationsSuceeds.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Props", "bad", "good1", "good2"] rebuilt : ScopeId(0): ["bad", "good1", "good2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] Bindings mismatch: after transform: ScopeId(2): ["P", "attrs"] rebuilt : ScopeId(1): ["attrs"] +Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3)] +rebuilt : ScopeId(1): [] Bindings mismatch: after transform: ScopeId(6): ["P", "attrs"] rebuilt : ScopeId(2): ["attrs"] +Scope children mismatch: +after transform: ScopeId(6): [ScopeId(7)] +rebuilt : ScopeId(2): [] Bindings mismatch: after transform: ScopeId(9): ["P", "attrs"] rebuilt : ScopeId(3): ["attrs"] +Scope children mismatch: +after transform: ScopeId(9): [ScopeId(10)] +rebuilt : ScopeId(3): [] tasks/coverage/typescript/tests/cases/compiler/conditionalTypeDiscriminatingLargeUnionRegularTypeFetchingSpeedReasonable.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["BigUnion", "ChildrenOf", "DiscriminateUnion", "WithName", "makeThing"] rebuilt : ScopeId(0): ["makeThing"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(6): ["T", "children", "name"] rebuilt : ScopeId(1): ["children", "name"] @@ -1639,11 +2193,17 @@ tasks/coverage/typescript/tests/cases/compiler/conditionalTypeGenericInSignature semantic error: Bindings mismatch: after transform: ScopeId(0): ["H_inline1", "Result"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/conditionalTypeRelaxingConstraintAssignability.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["DeepPartial", "ElChildren", "Elem", "I", "Relax", "g"] rebuilt : ScopeId(0): ["Elem", "g"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(13), ScopeId(14)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Bindings mismatch: after transform: ScopeId(7): ["C"] rebuilt : ScopeId(1): [] @@ -1652,11 +2212,22 @@ tasks/coverage/typescript/tests/cases/compiler/conditionalTypeSimplification.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AbstractSchema", "AnySchema", "AnySchemaType", "SchemaType"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/conditionalTypeSubclassExtendsTypeParam.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/conditionalTypesSimplifyWhenTrivial.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ExcludeWithDefault", "ExtractWithDefault", "TemplatedConditional", "fn1", "fn10", "fn11", "fn12", "fn2", "fn3", "fn4", "fn5", "fn6", "fn7", "fn8", "fn9", "x", "z", "zee"] rebuilt : ScopeId(0): ["fn1", "fn10", "fn11", "fn12", "fn2", "fn3", "fn4", "fn5", "fn6", "fn7", "fn8", "fn9", "zee"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] Bindings mismatch: after transform: ScopeId(1): ["Params", "params"] rebuilt : ScopeId(1): ["params"] @@ -1697,10 +2268,21 @@ Reference mismatch: after transform: ReferenceId(95): Some("z") rebuilt : ReferenceId(24): None +tasks/coverage/typescript/tests/cases/compiler/conditionallyDuplicateOverloadsCausedByOverloadResolution.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] +Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(1): [ScopeId(2)] + tasks/coverage/typescript/tests/cases/compiler/constDeclarations-ambient.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["M", "c1", "c2", "c3", "c4", "c5"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/constEnumExternalModule.ts semantic error: `export = ;` is only supported when compiling modules to CommonJS. @@ -1906,6 +2488,9 @@ tasks/coverage/typescript/tests/cases/compiler/constIndexedAccess.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["indexAccess", "n", "n1", "n2", "n3", "numbers", "numbersNotConst", "s", "s1", "s2", "s3", "test"] rebuilt : ScopeId(0): ["n", "n1", "n2", "n3", "numbers", "numbersNotConst", "s", "s1", "s2", "s3", "test"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["numbers", "one", "zero"] rebuilt : ScopeId(1): ["numbers"] @@ -1919,6 +2504,16 @@ Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(0x0) rebuilt : ScopeId(2): ScopeFlags(Function) +tasks/coverage/typescript/tests/cases/compiler/constantOverloadFunction.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9)] + +tasks/coverage/typescript/tests/cases/compiler/constantOverloadFunctionNoSubtypeError.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9)] + tasks/coverage/typescript/tests/cases/compiler/constraintCheckInGenericBaseTypeReference.ts semantic error: Bindings mismatch: after transform: ScopeId(3): ["T"] @@ -1928,6 +2523,9 @@ tasks/coverage/typescript/tests/cases/compiler/constraintOfRecursivelyMappedType semantic error: Bindings mismatch: after transform: ScopeId(0): ["IImmutableMap", "IImmutableMap2", "ImmutableModel", "ImmutableModel2", "ImmutableTypes", "ImmutableTypes2", "Map", "isImmutableType"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(8), ScopeId(9), ScopeId(11), ScopeId(13)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/constraintPropagationThroughReturnTypes.ts semantic error: Bindings mismatch: @@ -1941,6 +2539,9 @@ tasks/coverage/typescript/tests/cases/compiler/constraintReferencingTypeParamete semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1", "I2", "I3", "I4", "IComparable", "f", "foo"] rebuilt : ScopeId(0): ["f", "foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(2): ["I", "T"] rebuilt : ScopeId(1): [] @@ -1952,6 +2553,9 @@ tasks/coverage/typescript/tests/cases/compiler/constraintsThatReferenceOtherCont semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo", "Object", "x"] rebuilt : ScopeId(0): ["Bar", "Foo", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(2): ["T", "U"] rebuilt : ScopeId(1): [] @@ -1979,11 +2583,25 @@ tasks/coverage/typescript/tests/cases/compiler/constructorArgs.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Options", "Sub", "Super"] rebuilt : ScopeId(0): ["Sub", "Super"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] + +tasks/coverage/typescript/tests/cases/compiler/constructorOverloads2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] +Scope children mismatch: +after transform: ScopeId(6): [ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(4): [ScopeId(5), ScopeId(6)] tasks/coverage/typescript/tests/cases/compiler/constructorOverloads5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IArguments", "M"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/constructorReturningAPrimitive.ts semantic error: Bindings mismatch: @@ -1994,16 +2612,25 @@ tasks/coverage/typescript/tests/cases/compiler/contextSensitiveReturnTypeInferen semantic error: Bindings mismatch: after transform: ScopeId(0): ["DEPS", "IData"] rebuilt : ScopeId(0): ["DEPS"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9)] tasks/coverage/typescript/tests/cases/compiler/contextualComputedNonBindablePropertyType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Mapped", "Original", "propSelector", "unexpectedlyFailingExample"] rebuilt : ScopeId(0): ["propSelector", "unexpectedlyFailingExample"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] tasks/coverage/typescript/tests/cases/compiler/contextualExpressionTypecheckingDoesntBlowStack.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IValidationError", "Operation"] rebuilt : ScopeId(0): ["Operation"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/contextualOverloadListFromArrayUnion.ts semantic error: Bindings mismatch: @@ -2013,23 +2640,45 @@ Reference mismatch: after transform: ReferenceId(0): Some("y") rebuilt : ReferenceId(0): None +tasks/coverage/typescript/tests/cases/compiler/contextualPropertyOfGenericMappedType.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/contextualReturnTypeOfIIFE2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["app"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/contextualReturnTypeOfIIFE3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["app"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/contextualSigInstantiationRestParams.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/contextualSignatureConditionalTypeInstantiationUsingDefault.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ActionFunction", "TypegenDisabled", "TypegenEnabled"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/contextualSignatureInstantiation1.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] +Bindings mismatch: after transform: ScopeId(2): ["K", "x", "y"] rebuilt : ScopeId(1): ["x", "y"] Bindings mismatch: @@ -2058,6 +2707,11 @@ Bindings mismatch: after transform: ScopeId(3): ["T", "x"] rebuilt : ScopeId(3): ["x"] +tasks/coverage/typescript/tests/cases/compiler/contextualSignatureInstantiation4.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/contextualSignatureInstantiationWithTypeParameterConstrainedToOuterTypeParameter.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["V", "W", "f", "h", "x"] @@ -2073,34 +2727,57 @@ tasks/coverage/typescript/tests/cases/compiler/contextualSignatureInstatiationCo semantic error: Bindings mismatch: after transform: ScopeId(0): ["Animal", "Giraffe", "T", "TallThing", "f2", "g2", "h2"] rebuilt : ScopeId(0): ["f2", "g2", "h2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/contextualSignature_objectLiteralMethodMayReturnNever.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "o"] rebuilt : ScopeId(0): ["o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/contextualTypeArrayReturnType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IBookStyle", "NamedTransform", "Transform3D", "style"] rebuilt : ScopeId(0): ["style"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/contextualTypeCaching.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "CustomEvents", "Event", "Optimization", "P", "T", "WebpackPluginFunction", "WebpackPluginInstance", "applyOptimizationDefaults"] rebuilt : ScopeId(0): ["applyOptimizationDefaults"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Reference mismatch: after transform: ReferenceId(20): Some("A") rebuilt : ReferenceId(1): None +tasks/coverage/typescript/tests/cases/compiler/contextualTypeIterableUnions.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/contextualTypeObjectSpreadExpression.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "i"] rebuilt : ScopeId(0): ["i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/contextualTypeOfIndexedAccessParameter.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Keys", "OptionsForKey", "g"] rebuilt : ScopeId(0): ["g"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(5): ["K", "x", "y"] rebuilt : ScopeId(2): ["x", "y"] @@ -2109,16 +2786,25 @@ tasks/coverage/typescript/tests/cases/compiler/contextualTypeOnYield1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["FuncOrGeneratorFunc", "f"] rebuilt : ScopeId(0): ["f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/contextualTypeOnYield2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["OrGen", "g"] rebuilt : ScopeId(0): ["g"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/contextualTypeSelfReferencing.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["def", "narrow", "parse", "result"] rebuilt : ScopeId(0): ["result"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(11): Some("parse") rebuilt : ReferenceId(0): None @@ -2127,31 +2813,54 @@ tasks/coverage/typescript/tests/cases/compiler/contextualTypeShouldBeLiteral.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["LikeA", "LikeB", "TestGeneric", "TestObject", "TestString", "X", "X2", "X3", "Y", "Y2", "Y3", "foo", "foo2", "test", "xy", "xyz"] rebuilt : ScopeId(0): ["foo", "foo2", "test", "xy", "xyz"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] tasks/coverage/typescript/tests/cases/compiler/contextualTypingFunctionReturningFunction.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/typescript/tests/cases/compiler/contextualTypingFunctionReturningFunction2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/contextualTypingOfLambdaWithMultipleSignatures.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "foo"] rebuilt : ScopeId(0): ["foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/contextualTypingOfOptionalMembers.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["ActionsArray", "ActionsObject", "ActionsObjectOr", "Bar", "JSX", "Options", "Options2", "_jsxFileName", "_reactJsxRuntime", "a", "y"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime", "a", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(20), ScopeId(21), ScopeId(22)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] tasks/coverage/typescript/tests/cases/compiler/contextualTypingOfTooShortOverloads.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ErrorRequestHandler", "IRouterHandler", "IRouterMatcher", "MyApp", "NextFunction", "Overload", "PathParams", "Request", "RequestHandler", "RequestHandlerParams", "Response", "app", "use"] rebuilt : ScopeId(0): ["app", "use"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/contextualTypingReturnStatementWithReturnTypeAnnotation.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["PropOfRaw", "getSpecsFromRaw"] rebuilt : ScopeId(0): ["getSpecsFromRaw"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/contextualTypingTwoInstancesOfSameTypeParameter.ts semantic error: Bindings mismatch: @@ -2172,16 +2881,25 @@ tasks/coverage/typescript/tests/cases/compiler/contextuallyTypeAsyncFunctionRetu semantic error: Bindings mismatch: after transform: ScopeId(0): ["LoadCallback", "cb1", "cb2", "cb3", "fn1"] rebuilt : ScopeId(0): ["cb1", "cb2", "cb3", "fn1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(11), ScopeId(12)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8)] tasks/coverage/typescript/tests/cases/compiler/contextuallyTypeGeneratorReturnTypeFromUnion.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Action", "Action2", "test1", "test2"] rebuilt : ScopeId(0): ["test1", "test2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedByDiscriminableUnion.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ADT", "invoke", "kind"] rebuilt : ScopeId(0): ["invoke", "kind"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5)] tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedGenericAssignment.ts semantic error: Bindings mismatch: @@ -2192,11 +2910,17 @@ tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedJsxAttribute.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Elements", "Props", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedJsxChildren.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["DropdownMenu", "React", "_jsxFileName"] rebuilt : ScopeId(0): ["React", "_jsxFileName"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference mismatch: after transform: ReferenceId(14): Some("DropdownMenu") rebuilt : ReferenceId(1): None @@ -2204,10 +2928,18 @@ Reference mismatch: after transform: ReferenceId(21): Some("DropdownMenu") rebuilt : ReferenceId(9): None +tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedOptionalProperty.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedParametersWithInitializers2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["num", "test2", "test3"] rebuilt : ScopeId(0): ["test2", "test3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Reference mismatch: after transform: ReferenceId(5): Some("num") rebuilt : ReferenceId(1): None @@ -2216,6 +2948,14 @@ tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedParametersWithIn semantic error: Bindings mismatch: after transform: ScopeId(0): ["CanvasDirection", "GraphActions"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedParametersWithInitializers4.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/contextuallyTypingOrOperator3.ts semantic error: Bindings mismatch: @@ -2226,16 +2966,30 @@ tasks/coverage/typescript/tests/cases/compiler/contravariantInferenceAndTypeGuar semantic error: Bindings mismatch: after transform: ScopeId(0): ["FilterFn", "IteratorFn", "ListItem", "Test", "filter1", "list2", "x"] rebuilt : ScopeId(0): ["filter1", "list2", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/contravariantOnlyInferenceFromAnnotatedFunction.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Funcs", "result"] rebuilt : ScopeId(0): ["result"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/contravariantOnlyInferenceWithAnnotatedOptionalParameter.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/contravariantTypeAliasInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Func1", "Func2", "f1", "f2", "g1", "g2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(9): Some("f1") rebuilt : ReferenceId(1): None @@ -2255,6 +3009,16 @@ Reference mismatch: after transform: ReferenceId(22): Some("g2") rebuilt : ReferenceId(8): None +tasks/coverage/typescript/tests/cases/compiler/controlFlowAnalysisOnBareThisKeyword.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] + +tasks/coverage/typescript/tests/cases/compiler/controlFlowArrays.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(8), ScopeId(11), ScopeId(14), ScopeId(17), ScopeId(18), ScopeId(21), ScopeId(25), ScopeId(27), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(7), ScopeId(10), ScopeId(13), ScopeId(16), ScopeId(17), ScopeId(20), ScopeId(24), ScopeId(26), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(33), ScopeId(34), ScopeId(35)] + tasks/coverage/typescript/tests/cases/compiler/controlFlowBreakContinueWithLabel.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["A", "B", "User"] @@ -2268,15 +3032,26 @@ semantic error: Bindings mismatch: after transform: ScopeId(1): ["T", "value"] rebuilt : ScopeId(1): ["value"] +tasks/coverage/typescript/tests/cases/compiler/controlFlowCommaExpressionAssertionWithinTernary.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/controlFlowDestructuringLoop.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["NumVal", "StrVal", "Val", "foo", "isNumVal"] rebuilt : ScopeId(0): ["foo", "isNumVal"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/controlFlowFavorAssertedTypeThroughTypePredicate.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["obj1", "obj2", "obj3", "obj4"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Reference mismatch: after transform: ReferenceId(2): Some("obj1") rebuilt : ReferenceId(1): None @@ -2330,6 +3105,9 @@ tasks/coverage/typescript/tests/cases/compiler/controlFlowForCatchAndFinally.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Browser", "Foo", "Page", "test"] rebuilt : ScopeId(0): ["Foo", "test"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(13), ScopeId(15)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(6)] tasks/coverage/typescript/tests/cases/compiler/controlFlowInitializedDestructuringVariables.ts semantic error: Bindings mismatch: @@ -2343,6 +3121,9 @@ tasks/coverage/typescript/tests/cases/compiler/controlFlowInstanceof.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "X", "Y", "ctor", "f1", "f2", "f3", "f4", "foo", "goo", "x"] rebuilt : ScopeId(0): ["A", "B", "C", "Y", "f1", "f2", "f3", "f4", "foo", "goo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(8), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(26)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(8), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(22), ScopeId(23), ScopeId(25)] Reference mismatch: after transform: ReferenceId(71): Some("x") rebuilt : ReferenceId(60): None @@ -2357,9 +3138,15 @@ tasks/coverage/typescript/tests/cases/compiler/controlFlowInstanceofWithSymbolHa semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "PromiseConstructor", "SetConstructor", "X", "Y", "f1", "f2", "f3", "f4", "foo", "goo"] rebuilt : ScopeId(0): ["A", "B", "C", "Y", "f1", "f2", "f3", "f4", "foo", "goo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(12), ScopeId(15), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(28), ScopeId(29), ScopeId(30)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(8), ScopeId(11), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(23), ScopeId(24)] Bindings mismatch: after transform: ScopeId(16): ["T", "value"] rebuilt : ScopeId(12): ["value"] +Scope children mismatch: +after transform: ScopeId(16): [ScopeId(17)] +rebuilt : ScopeId(12): [] tasks/coverage/typescript/tests/cases/compiler/controlFlowManyConsecutiveConditionsNoTimeout.ts semantic error: Bindings mismatch: @@ -2397,6 +3184,9 @@ tasks/coverage/typescript/tests/cases/compiler/correctOrderOfPromiseMethod.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "countEverything", "expected"] rebuilt : ScopeId(0): ["countEverything", "expected"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/covariance1.ts semantic error: Semantic Collector failed after transform @@ -2413,11 +3203,17 @@ tasks/coverage/typescript/tests/cases/compiler/crashInGetTextOfComputedPropertyN semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "AB", "B", "ObjWithItems", "itemId", "itemOk1", "itemOk2", "itemWithTSError", "items", "objWithItems"] rebuilt : ScopeId(0): ["itemId", "itemOk1", "itemOk2", "itemWithTSError", "items", "objWithItems"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/crashInResolveInterface.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Q", "q1", "x"] rebuilt : ScopeId(0): ["q1", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/crashInresolveReturnStatement.ts semantic error: Bindings mismatch: @@ -2428,6 +3224,9 @@ tasks/coverage/typescript/tests/cases/compiler/curiousNestedConditionalEvaluatio semantic error: Bindings mismatch: after transform: ScopeId(0): ["Hmm"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/customAsyncIterator.ts semantic error: Bindings mismatch: @@ -2470,21 +3269,33 @@ tasks/coverage/typescript/tests/cases/compiler/declarationEmitToDeclarationDirWi semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/declarationEmitWithComposite.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/declarationMerging1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/declarationMerging2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["./a"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/declareDottedExtend.ts semantic error: Semantic Collector failed after transform @@ -2494,26 +3305,47 @@ tasks/coverage/typescript/tests/cases/compiler/declareExternalModuleWithExportAs semantic error: Bindings mismatch: after transform: ScopeId(0): ["express"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/declareModifierOnTypeAlias.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Baz", "Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/declaredExternalModule.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["connect"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/declaredExternalModuleWithExportAssignment.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["connect"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataConditionalType.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] +Bindings mismatch: after transform: ScopeId(2): ["T"] rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3)] +rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(2): [] tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataElidedImport.ts semantic error: Bindings mismatch: @@ -2532,6 +3364,9 @@ tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataOnInferredType.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "console", "decorator"] rebuilt : ScopeId(0): ["A", "B", "decorator"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] Reference mismatch: after transform: ReferenceId(0): Some("console") rebuilt : ReferenceId(0): None @@ -2564,6 +3399,9 @@ tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataWithConstructorT semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "console", "decorator"] rebuilt : ScopeId(0): ["A", "B", "decorator"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] Reference mismatch: after transform: ReferenceId(0): Some("console") rebuilt : ReferenceId(0): None @@ -2605,6 +3443,9 @@ tasks/coverage/typescript/tests/cases/compiler/decoratorReferences.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "T"] rebuilt : ScopeId(0): ["C"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(4): ["T"] rebuilt : ScopeId(2): [] @@ -2613,6 +3454,9 @@ tasks/coverage/typescript/tests/cases/compiler/decoratorWithUnderscoreMethod.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "console", "dec"] rebuilt : ScopeId(0): ["A", "dec"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Reference mismatch: after transform: ReferenceId(2): Some("console") rebuilt : ReferenceId(0): None @@ -2621,34 +3465,75 @@ tasks/coverage/typescript/tests/cases/compiler/deeplyNestedTemplateLiteralInters semantic error: Bindings mismatch: after transform: ScopeId(0): ["Props", "R", "S", "T", "X", "_S", "a1", "a2", "b"] rebuilt : ScopeId(0): ["a1", "a2", "b"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/defaultNamedExportWithType1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/defaultNamedExportWithType2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/defaultNamedExportWithType3.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/defaultNamedExportWithType4.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/deferredConditionalTypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "And", "AndBit", "Bit", "Equals", "Extends", "FilterByStringValue", "FilteredRes1", "FilteredValuesMatchNever", "IsLiteral", "IsNumberLiteral", "Not", "Or", "T0", "T1", "T2", "T3", "T4", "T5", "T6", "TestBit", "TestBitRes", "Values"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(29), ScopeId(31), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(39), ScopeId(42)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/deferredConditionalTypes2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Add", "AddTest0", "AddTest1", "AddWithoutParentheses", "IsEqual", "NegativeInfinity", "PositiveInfinity"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(7), ScopeId(10), ScopeId(13), ScopeId(14)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/deferredTypeReferenceWithinArrayWithinTuple.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["TypeStructure"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/definiteAssignmentOfDestructuredVariable.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "Options"] rebuilt : ScopeId(0): ["C"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(2): ["T"] rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/deleteExpressionMustBeOptional.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AA", "BB", "Foo", "a", "b", "f"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(3): Some("f") rebuilt : ReferenceId(0): None @@ -2696,6 +3581,9 @@ tasks/coverage/typescript/tests/cases/compiler/deleteExpressionMustBeOptional_ex semantic error: Bindings mismatch: after transform: ScopeId(0): ["AA", "BB", "Foo", "a", "b", "f", "g"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(5): Some("f") rebuilt : ReferenceId(0): None @@ -2779,26 +3667,41 @@ tasks/coverage/typescript/tests/cases/compiler/destructureOfVariableSameAsShorth semantic error: Bindings mismatch: after transform: ScopeId(0): ["AxiosResponse", "main"] rebuilt : ScopeId(0): ["main"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/destructuredMaappedTypeIsNotImplicitlyAny.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["T", "bar", "key", "lorem", "obj"] rebuilt : ScopeId(1): ["bar", "key", "lorem", "obj"] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/compiler/destructuringInitializerContextualTypeFromContext.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Child", "Parent", "Props", "SFC"] rebuilt : ScopeId(0): ["Child", "Parent"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/destructuringTypeGuardFlow.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["aFoo", "bBar", "bar", "foo"] rebuilt : ScopeId(0): ["aFoo", "bBar"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/destructuringWithConstraint.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Props", "foo"] rebuilt : ScopeId(0): ["foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(2): ["P", "foo", "props"] rebuilt : ScopeId(1): ["foo", "props"] @@ -2815,16 +3718,25 @@ tasks/coverage/typescript/tests/cases/compiler/discriminableUnionWithIntersected semantic error: Bindings mismatch: after transform: ScopeId(0): ["X", "Y", "x", "y"] rebuilt : ScopeId(0): ["x", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/discriminantElementAccessCheck.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IfWithString", "IfWithTemplate", "SwitchWithString", "SwitchWithTemplate", "TypeA", "TypeB", "U", "assertNever"] rebuilt : ScopeId(0): ["IfWithString", "IfWithTemplate", "SwitchWithString", "SwitchWithTemplate", "assertNever"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(8), ScopeId(10), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(7), ScopeId(10)] tasks/coverage/typescript/tests/cases/compiler/discriminantNarrowingCouldBeCircular.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["SomeRecord", "getImplicitAriaRole", "kPresentationInheritanceParents", "myObj2", "o"] rebuilt : ScopeId(0): ["getImplicitAriaRole", "o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(7)] Reference mismatch: after transform: ReferenceId(17): Some("kPresentationInheritanceParents") rebuilt : ReferenceId(10): None @@ -2839,6 +3751,9 @@ tasks/coverage/typescript/tests/cases/compiler/discriminantPropertyCheck.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "Additive", "AdditiveObj", "AllTests", "B", "BarEnum", "Base", "DoesNotWork", "Instance", "Item", "Item1", "Item2", "MapOfAllTests", "Multiplicative", "MultiplicativeObj", "NumType", "Obj", "StrType", "TestA", "TestB", "Type", "TypeA", "TypeB", "TypeBar1", "TypeBar2", "Types", "U", "UnionOfBar", "WorksProperly", "doTestingStuff", "f", "foo", "foo1", "foo2", "foo3", "foo4", "foo5", "foo6", "func2", "func3", "goo1", "goo2", "onlyPlus", "u"] rebuilt : ScopeId(0): ["BarEnum", "DoesNotWork", "Types", "WorksProperly", "doTestingStuff", "f", "foo", "foo1", "foo2", "foo3", "foo4", "foo5", "foo6", "func2", "func3", "goo1", "goo2", "onlyPlus", "u"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(57), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(18), ScopeId(23), ScopeId(24), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(32), ScopeId(34), ScopeId(37)] Bindings mismatch: after transform: ScopeId(21): ["Num", "Str", "Types"] rebuilt : ScopeId(17): ["Types"] @@ -2856,16 +3771,25 @@ tasks/coverage/typescript/tests/cases/compiler/discriminantPropertyInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["DiscriminatorFalse", "DiscriminatorTrue", "Props"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/compiler/discriminantUsingEvaluatableTemplateExpression.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["N", "S"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/discriminantsAndNullOrUndefined.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "c", "never", "useA", "useB"] rebuilt : ScopeId(0): ["never", "useA", "useB"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Reference mismatch: after transform: ReferenceId(6): Some("c") rebuilt : ReferenceId(1): None @@ -2886,6 +3810,9 @@ tasks/coverage/typescript/tests/cases/compiler/discriminantsAndPrimitives.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Disjunction", "EnumTypeNode", "Foo", "NodeA", "NodeBase", "Pattern", "f1", "f2", "f3", "f4", "n"] rebuilt : ScopeId(0): ["EnumTypeNode", "f1", "f2", "f3", "f4", "n"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(9), ScopeId(12), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(10), ScopeId(13), ScopeId(14), ScopeId(15)] Bindings mismatch: after transform: ScopeId(15): ["Disjunction", "EnumTypeNode", "Pattern"] rebuilt : ScopeId(13): ["EnumTypeNode"] @@ -2897,16 +3824,25 @@ tasks/coverage/typescript/tests/cases/compiler/discriminantsAndTypePredicates.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "foo1", "foo2", "isA", "isB"] rebuilt : ScopeId(0): ["foo1", "foo2", "isA", "isB"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6)] tasks/coverage/typescript/tests/cases/compiler/discriminateObjectTypesOnly.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Thing", "Thing2", "Thing3", "h", "k", "l", "q"] rebuilt : ScopeId(0): ["h", "k", "l", "q"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/discriminateWithDivergentAccessors1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["WeirdoBox", "WeirdoBox2", "weirdoBox", "weirdoBox2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(6), ScopeId(7), ScopeId(14)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference mismatch: after transform: ReferenceId(5): Some("weirdoBox") rebuilt : ReferenceId(0): None @@ -2924,6 +3860,9 @@ tasks/coverage/typescript/tests/cases/compiler/discriminateWithOptionalProperty1 semantic error: Bindings mismatch: after transform: ScopeId(0): ["Box", "box"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(3): Some("box") rebuilt : ReferenceId(0): None @@ -2935,6 +3874,9 @@ tasks/coverage/typescript/tests/cases/compiler/discriminateWithOptionalProperty2 semantic error: Bindings mismatch: after transform: ScopeId(0): ["PromiseOrValue", "doubles", "items", "iterable", "mapAsyncIterable"] rebuilt : ScopeId(0): ["doubles", "items", "iterable", "mapAsyncIterable"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(17), ScopeId(18), ScopeId(19)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(16), ScopeId(17), ScopeId(18)] Bindings mismatch: after transform: ScopeId(2): ["R", "T", "U", "callback", "iterable", "iterator", "mapResult"] rebuilt : ScopeId(1): ["callback", "iterable", "iterator", "mapResult"] @@ -2943,16 +3885,25 @@ tasks/coverage/typescript/tests/cases/compiler/discriminateWithOptionalProperty3 semantic error: Bindings mismatch: after transform: ScopeId(0): ["CoercedVariableValues", "ExecutionArgs", "ExecutionContext", "Maybe", "buildExecutionContext"] rebuilt : ScopeId(0): ["buildExecutionContext"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/discriminatedUnionWithIndexSignature.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["MapOrSingleton", "UnionAltA", "UnionAltB", "ValueUnion", "withAsConst", "withoutAsConst"] rebuilt : ScopeId(0): ["withAsConst", "withoutAsConst"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/discriminatingUnionWithUnionPropertyAgainstUndefinedWithoutStrictNullChecks.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "A2", "B", "B2", "X", "Y", "opts", "testMethod"] rebuilt : ScopeId(0): ["testMethod"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(2): Some("opts") rebuilt : ReferenceId(0): None @@ -2964,19 +3915,31 @@ tasks/coverage/typescript/tests/cases/compiler/distributiveConditionalTypeNeverI semantic error: Bindings mismatch: after transform: ScopeId(0): ["Conflicted", "Ex1", "Ex2", "Ex3", "IsNumber"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/divergentAccessors1.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["IHasGetSet", "ihgs", "r_ihgs_foo"] rebuilt : ScopeId(1): ["ihgs", "r_ihgs_foo"] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [] Bindings mismatch: after transform: ScopeId(5): ["T_HasGetSet", "r_t_hgs_foo", "t_hgs"] rebuilt : ScopeId(2): ["r_t_hgs_foo", "t_hgs"] +Scope children mismatch: +after transform: ScopeId(5): [ScopeId(6)] +rebuilt : ScopeId(2): [] tasks/coverage/typescript/tests/cases/compiler/divergentAccessorsTypes1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Test1", "Test2", "Test3"] rebuilt : ScopeId(0): ["Test1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(6), ScopeId(11), ScopeId(16), ScopeId(17), ScopeId(18)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(6), ScopeId(7), ScopeId(8)] tasks/coverage/typescript/tests/cases/compiler/divergentAccessorsTypes3.ts semantic error: Bindings mismatch: @@ -3022,6 +3985,9 @@ tasks/coverage/typescript/tests/cases/compiler/divideAndConquerIntersections.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Combine", "EventHub", "Filter", "FilterFunction", "FilterQuery", "FilteredEvent", "L1Fragment", "Middleware", "PerformQuery", "QQ", "RunQuery", "Update", "matchFilter"] rebuilt : ScopeId(0): ["EventHub", "matchFilter"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(16), ScopeId(17)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Bindings mismatch: after transform: ScopeId(4): ["Q", "U", "filter"] rebuilt : ScopeId(1): ["filter"] @@ -3036,11 +4002,17 @@ tasks/coverage/typescript/tests/cases/compiler/doNotEmitPinnedCommentOnNotEmitte semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "OData", "x"] rebuilt : ScopeId(0): ["C", "x"] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/doNotEmitPinnedCommentOnNotEmittedNodets.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "OData"] rebuilt : ScopeId(0): ["C"] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/doNotEmitTripleSlashCommentsOnNotEmittedNode.ts semantic error: Bindings mismatch: @@ -3051,6 +4023,9 @@ tasks/coverage/typescript/tests/cases/compiler/doNotInferUnrelatedTypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["LiteralType", "alt", "foo"] rebuilt : ScopeId(0): ["foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(7): Some("alt") rebuilt : ReferenceId(1): None @@ -3059,6 +4034,9 @@ tasks/coverage/typescript/tests/cases/compiler/doNotWidenAtObjectLiteralProperty semantic error: Bindings mismatch: after transform: ScopeId(0): ["IIntervalTreeNode", "ITestEventInterval", "test"] rebuilt : ScopeId(0): ["test"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/dottedModuleName2.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -3090,11 +4068,17 @@ tasks/coverage/typescript/tests/cases/compiler/dottedSymbolResolution1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "JQuery", "JQueryStatic", "_setBarAndText", "each"] rebuilt : ScopeId(0): ["Base", "_setBarAndText", "each"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/compiler/doubleMixinConditionalTypeBaseClassWorks.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "Constructor", "FooConstructor", "Mixin1", "Mixin2"] rebuilt : ScopeId(0): ["C", "Mixin1", "Mixin2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] Bindings mismatch: after transform: ScopeId(2): ["Base", "C"] rebuilt : ScopeId(1): ["Base"] @@ -3119,11 +4103,17 @@ tasks/coverage/typescript/tests/cases/compiler/doubleUnderscoreMappedTypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Keys", "Properties", "Property2Type", "k", "ok", "partial"] rebuilt : ScopeId(0): ["k", "ok", "partial"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/doubleUnderscoreReactNamespace.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["__foot", "_jsxFileName", "global", "thing"] rebuilt : ScopeId(0): ["_jsxFileName", "thing"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(1): Some("__foot") rebuilt : ReferenceId(1): None @@ -3133,6 +4123,21 @@ semantic error: Namespaces exporting non-const are not supported by Babel. Chang Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript +tasks/coverage/typescript/tests/cases/compiler/downlevelLetConst14.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] + +tasks/coverage/typescript/tests/cases/compiler/downlevelLetConst15.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] + +tasks/coverage/typescript/tests/cases/compiler/downlevelLetConst17.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(17), ScopeId(19)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(16), ScopeId(18)] + tasks/coverage/typescript/tests/cases/compiler/duplicateAnonymousInners1.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -3168,16 +4173,30 @@ tasks/coverage/typescript/tests/cases/compiler/duplicateConstructSignature.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/duplicateConstructSignature2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/duplicateConstructorOverloadSignature.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/duplicateConstructorOverloadSignature2.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/duplicateIdentifierShouldNotShortCircuitBaseTypeBinding.ts semantic error: Semantic Collector failed after transform @@ -3192,6 +4211,9 @@ tasks/coverage/typescript/tests/cases/compiler/duplicateOverloadInTypeAugmentati semantic error: Bindings mismatch: after transform: ScopeId(0): ["Array", "a", "r5"] rebuilt : ScopeId(0): ["a", "r5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/duplicatePackage_packageIdIncludesSubModule.ts semantic error: Bindings mismatch: @@ -3289,6 +4311,9 @@ tasks/coverage/typescript/tests/cases/compiler/emitTopOfFileTripleSlashCommentOn semantic error: Bindings mismatch: after transform: ScopeId(0): ["F", "OData"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/emptyAnonymousObjectNarrowing.ts semantic error: Bindings mismatch: @@ -3399,11 +4424,17 @@ tasks/coverage/typescript/tests/cases/compiler/emptyIndexer.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1", "I2", "n", "x"] rebuilt : ScopeId(0): ["n", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/emptyOptionalBindingPatternInDeclarationSignature.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1", "T1", "T2", "val1", "val2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(8), ScopeId(10), ScopeId(11), ScopeId(13)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/enumAssignmentCompat4.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -3437,11 +4468,17 @@ tasks/coverage/typescript/tests/cases/compiler/enumInitializersWithExponents.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/enumLiteralUnionNotWidened.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "D", "List", "asList", "fn1", "fn2"] rebuilt : ScopeId(0): ["A", "B", "List", "asList", "fn1", "fn2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] Bindings mismatch: after transform: ScopeId(1): ["A", "one", "two"] rebuilt : ScopeId(1): ["A"] @@ -3578,7 +4615,10 @@ after transform: ScopeId(1): ScopeFlags(0x0) rebuilt : ScopeId(1): ScopeFlags(Function) tasks/coverage/typescript/tests/cases/compiler/enumsWithMultipleDeclarations3.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Bindings mismatch: after transform: ScopeId(2): ["A", "E"] rebuilt : ScopeId(1): ["E"] Scope flags mismatch: @@ -3589,6 +4629,9 @@ tasks/coverage/typescript/tests/cases/compiler/errorConstructorSubtypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ErrorConstructor", "x"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(3): Some("x") rebuilt : ReferenceId(0): None @@ -5310,6 +6353,12 @@ tasks/coverage/typescript/tests/cases/compiler/es6ClassTest2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["BaseClassWithConstructor", "BasicMonster", "ChildClassWithoutConstructor", "GetSetMonster", "IFoo", "ImplementsInterface", "OverloadedMonster", "PrototypeMonster", "SplatMonster", "Statics", "SuperChild", "SuperParent", "Visibility", "ccwc", "foo", "m1", "m2", "m3", "m4", "m5", "m6", "stat", "x", "y"] rebuilt : ScopeId(0): ["BaseClassWithConstructor", "BasicMonster", "ChildClassWithoutConstructor", "GetSetMonster", "ImplementsInterface", "OverloadedMonster", "PrototypeMonster", "SplatMonster", "Statics", "SuperChild", "SuperParent", "Visibility", "ccwc", "foo", "m1", "m2", "m3", "m4", "m5", "m6", "stat", "x", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(10), ScopeId(16), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(25), ScopeId(29), ScopeId(31), ScopeId(32), ScopeId(34), ScopeId(38), ScopeId(40)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(10), ScopeId(13), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(22), ScopeId(26), ScopeId(28), ScopeId(30), ScopeId(34), ScopeId(36)] +Scope children mismatch: +after transform: ScopeId(10): [ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15)] +rebuilt : ScopeId(10): [ScopeId(11), ScopeId(12)] tasks/coverage/typescript/tests/cases/compiler/es6ClassTest3.ts semantic error: Semantic Collector failed after transform @@ -5318,15 +6367,26 @@ Missing SymbolId: _M Missing ReferenceId: M Missing ReferenceId: M +tasks/coverage/typescript/tests/cases/compiler/es6ClassTest4.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/es6ClassTest5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C1T5", "C2T5", "bigClass"] rebuilt : ScopeId(0): ["C1T5", "bigClass"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/es6ClassTest7.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "M"] rebuilt : ScopeId(0): ["Bar"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/es6ExportAssignment3.ts semantic error: Bindings mismatch: @@ -5479,6 +6539,9 @@ tasks/coverage/typescript/tests/cases/compiler/eventEmitterPatternWithRecordOfFu semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "Args", "B", "EventMap"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/evolvingArrayTypeInAssert.ts semantic error: Bindings mismatch: @@ -5489,11 +6552,17 @@ tasks/coverage/typescript/tests/cases/compiler/excessPropertyCheckWithNestedArra semantic error: Bindings mismatch: after transform: ScopeId(0): ["BugRepro", "ValueAndKeyFields", "ValueOnlyFields", "repro"] rebuilt : ScopeId(0): ["repro"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/excessPropertyCheckingIntersectionWithConditional.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "createDefaultExample"] rebuilt : ScopeId(0): ["createDefaultExample"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(3): ["K", "x"] rebuilt : ScopeId(1): ["x"] @@ -5502,11 +6571,17 @@ tasks/coverage/typescript/tests/cases/compiler/expandoFunctionContextualTypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyComponent", "MyComponentProps", "StatelessComponent"] rebuilt : ScopeId(0): ["MyComponent"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/expandoFunctionExpressionsWithDynamicNames2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo", "bar", "foo", "mySymbol", "t"] rebuilt : ScopeId(0): ["bar", "foo", "mySymbol", "t"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/exportAssignClassAndModule.ts semantic error: `export = ;` is only supported when compiling modules to CommonJS. @@ -5516,6 +6591,9 @@ tasks/coverage/typescript/tests/cases/compiler/exportAssignValueAndType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["http", "server", "x"] rebuilt : ScopeId(0): ["server", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportAssignedTypeAsTypeAnnotation.ts semantic error: `export = ;` is only supported when compiling modules to CommonJS. @@ -5560,6 +6638,9 @@ tasks/coverage/typescript/tests/cases/compiler/exportAssignmentWithPrivacyError. semantic error: Bindings mismatch: after transform: ScopeId(0): ["connectexport", "connectmodule", "server"] rebuilt : ScopeId(0): ["server"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportDeclarationForModuleOrEnumWithMemberOfSameName.ts semantic error: Semantic Collector failed after transform @@ -5573,31 +6654,49 @@ tasks/coverage/typescript/tests/cases/compiler/exportDeclarationsInAmbientNamesp semantic error: Bindings mismatch: after transform: ScopeId(0): ["Q"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/exportDefaultForNonInstantiatedModule.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["m"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportDefaultImportedType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportDefaultInterface.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "a"] rebuilt : ScopeId(0): ["a"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportDefaultInterfaceAndFunctionOverloads.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "foo"] rebuilt : ScopeId(0): ["foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/exportDefaultInterfaceAndValue.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "x"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/exportDefaultProperty.ts semantic error: Semantic Collector failed after transform @@ -5614,15 +6713,28 @@ Missing ReferenceId: _A Missing ReferenceId: A Missing ReferenceId: A +tasks/coverage/typescript/tests/cases/compiler/exportDefaultProperty2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/exportDefaultVariable.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["io", "module"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportEqualCallable.ts semantic error: `export = ;` is only supported when compiling modules to CommonJS. Please consider using `export default ;`, or add @babel/plugin-transform-modules-commonjs to your Babel config. +tasks/coverage/typescript/tests/cases/compiler/exportEqualNamespaces.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/exportEqualsDefaultProperty.ts semantic error: `export = ;` is only supported when compiling modules to CommonJS. Please consider using `export default ;`, or add @babel/plugin-transform-modules-commonjs to your Babel config. @@ -5631,6 +6743,9 @@ tasks/coverage/typescript/tests/cases/compiler/exportEqualsOfModule.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["popsicle", "popsicle-proxy-agent", "~popsicle/dist/common", "~popsicle/dist/request"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportEqualsProperty.ts semantic error: `export = ;` is only supported when compiling modules to CommonJS. @@ -5651,6 +6766,9 @@ tasks/coverage/typescript/tests/cases/compiler/exportImportNonInstantiatedModule semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportPrivateType.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -5658,85 +6776,138 @@ Namespaces exporting non-const are not supported by Babel. Change to const or se Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript +tasks/coverage/typescript/tests/cases/compiler/exportRedeclarationTypeAliases.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/exportSpecifierAndExportedMemberDeclaration.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["m2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(6)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportStarForValues.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportStarForValues10.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportStarForValues2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportStarForValues3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportStarForValues4.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportStarForValues5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportStarForValues6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportStarForValues7.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportStarForValues8.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportStarForValues9.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportStarForValuesInSystem.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportTwoInterfacesWithSameName.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportedInterfaceInaccessibleInCallbackInModule.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ProgressCallback"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportsInAmbientModules1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["M"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportsInAmbientModules2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["M"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/extBaseClass1.ts semantic error: Semantic Collector failed after transform @@ -5764,20 +6935,34 @@ tasks/coverage/typescript/tests/cases/compiler/extendConstructSignatureInInterfa semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "CStatic", "E", "e"] rebuilt : ScopeId(0): ["CStatic", "E", "e"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/extendedInterfaceGenericType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Alpha", "Beta", "alpha", "betaOfNumber"] rebuilt : ScopeId(0): ["alpha", "betaOfNumber"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/extendingClassFromAliasAndUsageInIndexer.ts semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. Please consider using `import lib from '...';` alongside Typescript's --allowSyntheticDefaultImports option, or add @babel/plugin-transform-modules-commonjs to your Babel config. +tasks/coverage/typescript/tests/cases/compiler/externFunc.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/externModuleClobber.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["EM", "ec", "x"] rebuilt : ScopeId(0): ["ec", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/externalModuleAssignToVar.ts semantic error: `export = ;` is only supported when compiling modules to CommonJS. @@ -5792,6 +6977,9 @@ tasks/coverage/typescript/tests/cases/compiler/externalModuleReferenceDoubleUnde semantic error: Bindings mismatch: after transform: ScopeId(0): ["__timezonecomplete/basics", "timezonecomplete"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/externalModuleReferenceOfImportDeclarationWithExportModifier.ts semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. @@ -5811,6 +6999,19 @@ tasks/coverage/typescript/tests/cases/compiler/externalModuleWithoutCompilerFlag semantic error: Bindings mismatch: after transform: ScopeId(0): ["M"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/fallFromLastCase1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] + +tasks/coverage/typescript/tests/cases/compiler/fallbackToBindingPatternForTypeInference.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] tasks/coverage/typescript/tests/cases/compiler/fatArrowSelf.ts semantic error: Semantic Collector failed after transform @@ -5836,6 +7037,16 @@ Reference mismatch: after transform: ReferenceId(3): Some("b") rebuilt : ReferenceId(0): None +tasks/coverage/typescript/tests/cases/compiler/fatarrowfunctions.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(22), ScopeId(23)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(22)] + +tasks/coverage/typescript/tests/cases/compiler/fatarrowfunctionsInFunctions.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/fillInMissingTypeArgsOnConstructCalls.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["T"] @@ -5845,16 +7056,35 @@ tasks/coverage/typescript/tests/cases/compiler/fixCrashAliasLookupForDefauledImp semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/fixingTypeParametersRepeatedly1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/compiler/fixingTypeParametersRepeatedly3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "Derived", "derived", "result", "result2"] rebuilt : ScopeId(0): ["derived", "result", "result2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/typescript/tests/cases/compiler/flowAfterFinally1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/flowControlTypeGuardThenSwitch.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "Base", "Both", "Kind", "foo", "isBoth"] rebuilt : ScopeId(0): ["Kind", "foo", "isBoth"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(1): ["A", "B", "Kind"] rebuilt : ScopeId(1): ["Kind"] @@ -5900,6 +7130,9 @@ tasks/coverage/typescript/tests/cases/compiler/forOfStringConstituents.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "AB", "B", "C", "CD", "D", "x", "y"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(8): Some("y") rebuilt : ReferenceId(0): None @@ -5937,6 +7170,19 @@ tasks/coverage/typescript/tests/cases/compiler/forwardRefInTypeDeclaration.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Cls2", "Foo2", "Foo3", "Foo6", "foo4", "obj1", "obj2", "s", "s1", "s2", "s3", "s4", "s5"] rebuilt : ScopeId(0): ["Cls2", "obj2", "s1", "s2", "s3", "s4", "s5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/freshLiteralInference.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/freshLiteralTypesInIntersections.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/functionCall5.ts semantic error: Semantic Collector failed after transform @@ -5951,21 +7197,38 @@ tasks/coverage/typescript/tests/cases/compiler/functionDeclarationWithResolution semantic error: Bindings mismatch: after transform: ScopeId(0): ["arguments", "f"] rebuilt : ScopeId(0): ["f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionDeclarationWithResolutionOfTypeOfSameName01.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/functionExpressionWithResolutionOfTypeNamedArguments01.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["arguments", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/functionExpressionWithResolutionOfTypeOfSameName01.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["f", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/functionExpressionWithResolutionOfTypeOfSameName02.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/functionInIfStatementInModule.ts semantic error: Semantic Collector failed after transform @@ -5999,28 +7262,178 @@ Missing ReferenceId: _foo2 Missing ReferenceId: foo Missing ReferenceId: foo +tasks/coverage/typescript/tests/cases/compiler/functionOverloads10.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads12.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads13.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads14.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads15.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads16.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads21.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads22.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads23.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads24.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads25.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads26.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads28.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads30.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads31.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads32.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads33.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads35.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads36.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads38.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads39.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads42.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads43.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/functionOverloads44.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Animal", "Cat", "Dog", "foo1", "foo2", "x1", "x2", "y1", "y2"] rebuilt : ScopeId(0): ["foo1", "foo2", "x1", "x2", "y1", "y2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/functionOverloads45.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Animal", "Cat", "Dog", "foo1", "foo2", "x1", "x2", "y1", "y2"] rebuilt : ScopeId(0): ["foo1", "foo2", "x1", "x2", "y1", "y2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads7.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads8.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads9.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/functionOverloadsOnGenericArity1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/functionOverloadsOnGenericArity2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/functionOverloadsRecursiveGenericReturnType.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +Bindings mismatch: after transform: ScopeId(1): ["V"] rebuilt : ScopeId(1): [] Bindings mismatch: @@ -6034,6 +7447,9 @@ tasks/coverage/typescript/tests/cases/compiler/functionReturnTypeQuery.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/functionTypeArgumentArrayAssignment.ts semantic error: Semantic Collector failed after transform @@ -6046,11 +7462,17 @@ tasks/coverage/typescript/tests/cases/compiler/functionsWithImplicitReturnTypeAs semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyUnknown", "f1", "f2", "f3", "f4", "f5", "f6", "f7", "f8"] rebuilt : ScopeId(0): ["f1", "f2", "f3", "f4", "f5", "f6", "f7", "f8"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] tasks/coverage/typescript/tests/cases/compiler/funduleExportedClassIsUsedBeforeDeclaration.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/funduleOfFunctionWithoutReturnTypeAnnotation.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -6059,6 +7481,9 @@ tasks/coverage/typescript/tests/cases/compiler/funduleUsedAcrossFileBoundary.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Q"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/generativeRecursionWithTypeOf.ts semantic error: Semantic Collector failed after transform @@ -6073,6 +7498,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericAndNonGenericOverload1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["c2", "callable2"] rebuilt : ScopeId(0): ["c2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/genericBaseClassLiteralProperty.ts semantic error: Bindings mismatch: @@ -6117,6 +7545,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericCallWithinOwnBodyCastTypeP semantic error: Bindings mismatch: after transform: ScopeId(0): ["Thenable", "toThenable", "toThenableInferred"] rebuilt : ScopeId(0): ["toThenable", "toThenableInferred"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] Bindings mismatch: after transform: ScopeId(3): ["Input", "Result", "fn"] rebuilt : ScopeId(1): ["fn"] @@ -6226,6 +7657,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericClassesInModule2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C"] rebuilt : ScopeId(0): ["A", "B"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] Bindings mismatch: after transform: ScopeId(1): ["T1"] rebuilt : ScopeId(1): [] @@ -6240,6 +7674,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericConstraint3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/genericConstraintOnExtendedBuiltinTypes.ts semantic error: Semantic Collector failed after transform @@ -6297,6 +7734,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericConstructSignatureInInterf semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "r", "v"] rebuilt : ScopeId(0): ["r", "v"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/genericFunctionHasFreshTypeArgs.ts semantic error: Bindings mismatch: @@ -6307,6 +7747,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericFunctionInference2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["HandleCreatorsFactory", "MyState", "Props", "Reducer", "enhancer4", "foo", "myReducer1", "myReducer2"] rebuilt : ScopeId(0): ["enhancer4", "myReducer1", "myReducer2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(14): Some("foo") rebuilt : ReferenceId(2): None @@ -6315,7 +7758,10 @@ after transform: ReferenceId(17): Some("foo") rebuilt : ReferenceId(5): None tasks/coverage/typescript/tests/cases/compiler/genericFunctionSpecializations1.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] +Bindings mismatch: after transform: ScopeId(2): ["T", "test"] rebuilt : ScopeId(1): ["test"] Bindings mismatch: @@ -6326,6 +7772,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericFunctions3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Query", "from"] rebuilt : ScopeId(0): ["from"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(4): ["T", "arg"] rebuilt : ScopeId(1): ["arg"] @@ -6334,6 +7783,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericFunctionsAndConditionalInf semantic error: Bindings mismatch: after transform: ScopeId(0): ["Boxified", "LR", "Ops", "Result", "Target", "Targets", "foo", "left", "leftOk", "leftOrphaned", "ok", "orphaned", "qq", "right", "rightOk", "rightOrphaned"] rebuilt : ScopeId(0): ["foo", "left", "leftOk", "leftOrphaned", "ok", "orphaned", "qq", "right", "rightOk", "rightOrphaned"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(10), ScopeId(13), ScopeId(14)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(4): ["U", "V", "obj"] rebuilt : ScopeId(1): ["obj"] @@ -6356,11 +7808,17 @@ tasks/coverage/typescript/tests/cases/compiler/genericFunctionsWithOptionalParam semantic error: Bindings mismatch: after transform: ScopeId(0): ["Utils", "utils"] rebuilt : ScopeId(0): ["utils"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/genericFunctionsWithOptionalParameters3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Collection", "Utils", "c", "f1", "f2", "r3", "r4", "r5", "utils"] rebuilt : ScopeId(0): ["Collection", "c", "f1", "f2", "r3", "r4", "r5", "utils"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] @@ -6369,6 +7827,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericIndexedAccessMethodInterse semantic error: Bindings mismatch: after transform: ScopeId(0): ["ExtendedService", "Service", "createService"] rebuilt : ScopeId(0): ["createService"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(5): ["ServiceCtr", "T"] rebuilt : ScopeId(1): ["ServiceCtr"] @@ -6377,16 +7838,25 @@ tasks/coverage/typescript/tests/cases/compiler/genericInference2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["age_v", "ko", "name_v", "o", "rr_v", "x_v", "yy_v", "zz_v"] rebuilt : ScopeId(0): ["age_v", "name_v", "o", "rr_v", "x_v", "yy_v", "zz_v"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/genericInferenceDefaultTypeParameter.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Type"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/genericInferenceDefaultTypeParameterJsxReact.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["ButtonBaseProps", "Component", "ComponentPropsWithRef", "ElementType", "React", "ReactNode", "_jsxFileName", "v1"] rebuilt : ScopeId(0): ["Component", "React", "_jsxFileName", "v1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(2): ["T", "props"] rebuilt : ScopeId(1): ["props"] @@ -6395,6 +7865,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericInheritedDefaultConstructo semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "Constructor", "c"] rebuilt : ScopeId(0): ["A", "B", "c"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(3): ["U"] rebuilt : ScopeId(1): [] @@ -6406,6 +7879,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericInstanceOf.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "F"] rebuilt : ScopeId(0): ["C"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(2): ["T"] rebuilt : ScopeId(1): [] @@ -6414,6 +7890,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericInterfaceFunctionTypeParam semantic error: Bindings mismatch: after transform: ScopeId(0): ["IFoo", "foo"] rebuilt : ScopeId(0): ["foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(2): ["A", "fn"] rebuilt : ScopeId(1): ["fn"] @@ -6422,6 +7901,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericInterfaceImplementation.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IOption", "None"] rebuilt : ScopeId(0): ["None"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(4): ["T"] rebuilt : ScopeId(1): [] @@ -6433,6 +7915,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericInterfaceTypeCall.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "bar", "foo", "test"] rebuilt : ScopeId(0): ["foo", "test"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/genericIsNeverEmptyObject.ts semantic error: Bindings mismatch: @@ -6443,6 +7928,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericMethodOverspecialization.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["Document", "HTMLElement", "document", "elements", "names", "widths", "xxx"] rebuilt : ScopeId(0): ["elements", "names", "widths", "xxx"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Reference mismatch: after transform: ReferenceId(3): Some("document") rebuilt : ReferenceId(1): None @@ -6451,6 +7939,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericNumberIndex.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["X"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/genericObjectCreationWithoutTypeArgs.ts semantic error: Bindings mismatch: @@ -6466,6 +7957,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericObjectSpreadResultInSwitch semantic error: Bindings mismatch: after transform: ScopeId(0): ["Params", "getType", "params"] rebuilt : ScopeId(0): ["getType"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(2): ["P", "foo", "params", "rest"] rebuilt : ScopeId(1): ["foo", "params", "rest"] @@ -6519,6 +8013,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericOverloadSignatures.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "C2", "D", "I2", "I3", "b", "f"] rebuilt : ScopeId(0): ["C2", "b", "f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(8), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(11): ["T"] rebuilt : ScopeId(2): [] @@ -6540,6 +8037,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericPrototypeProperty2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["BaseEvent", "BaseEventWrapper", "EventTarget", "MyEvent", "MyEventWrapper"] rebuilt : ScopeId(0): ["BaseEvent", "BaseEventWrapper", "MyEvent", "MyEventWrapper"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(2): [] @@ -6576,16 +8076,25 @@ tasks/coverage/typescript/tests/cases/compiler/genericSignatureInheritance.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "I2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/genericSignatureInheritance2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "I2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/genericSpecializationToTypeLiteral1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IDictionary", "IEnumerable"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(17)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/genericStaticAnyTypeFunction.ts semantic error: Bindings mismatch: @@ -6599,6 +8108,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericTemplateOverloadResolution semantic error: Bindings mismatch: after transform: ScopeId(0): ["IFooFn", "fooFn"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(8): Some("fooFn") rebuilt : ReferenceId(1): None @@ -6607,9 +8119,15 @@ tasks/coverage/typescript/tests/cases/compiler/genericTupleWithSimplifiableEleme semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "SS1", "SS2", "y", "z"] rebuilt : ScopeId(0): ["I", "y", "z"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(5): ["SS"] rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(6): [ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(2): [] tasks/coverage/typescript/tests/cases/compiler/genericTypeAssertions3.ts semantic error: Bindings mismatch: @@ -6643,6 +8161,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericTypeWithCallableMembers.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "Constructable"] rebuilt : ScopeId(0): ["C"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(1): [] @@ -6654,31 +8175,49 @@ rebuilt : ScopeId(1): ["f"] Bindings mismatch: after transform: ScopeId(2): ["T", "f"] rebuilt : ScopeId(2): ["f"] +Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3)] +rebuilt : ScopeId(2): [] tasks/coverage/typescript/tests/cases/compiler/genericTypeWithMultipleBases1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1", "I2", "I3", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/genericTypeWithMultipleBases2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1", "I2", "I3", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/genericTypeWithMultipleBases3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IA", "IB", "IC", "c", "x", "y"] rebuilt : ScopeId(0): ["c", "x", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/genericWithCallSignatureReturningSpecialization.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/genericWithCallSignatures1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Callable", "CallableExtention"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/genericWithIndexerOfTypeParameterType1.ts semantic error: Bindings mismatch: @@ -6728,16 +8267,25 @@ tasks/coverage/typescript/tests/cases/compiler/getParameterNameAtPosition.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Mock", "Tester"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/getterErrorMessageNotDuplicated.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo", "Thing"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/getterSetterSubtypeAssignment.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "NumberOrObject", "NumberOrString", "NumberOrUndefined", "numberOrObject", "numberOrString", "numberOrUndefined"] rebuilt : ScopeId(0): ["NumberOrObject", "NumberOrString", "NumberOrUndefined", "numberOrObject", "numberOrString", "numberOrUndefined"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(8), ScopeId(16), ScopeId(17)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(8), ScopeId(16)] tasks/coverage/typescript/tests/cases/compiler/global.ts semantic error: Semantic Collector failed after transform @@ -6752,31 +8300,49 @@ tasks/coverage/typescript/tests/cases/compiler/globalFunctionAugmentationOverloa semantic error: Bindings mismatch: after transform: ScopeId(0): ["global"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/globalIsContextualKeyword.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "b", "foo", "global", "obj"] rebuilt : ScopeId(0): ["a", "b", "foo", "obj"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] tasks/coverage/typescript/tests/cases/compiler/hidingCallSignatures.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "D", "E", "F", "d", "e", "f"] rebuilt : ScopeId(0): ["d", "e", "f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/hidingConstructSignatures.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "D", "E", "F", "d", "e", "f"] rebuilt : ScopeId(0): ["d", "e", "f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/hidingIndexSignatures.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "a", "b"] rebuilt : ScopeId(0): ["a", "b"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/higherOrderMappedIndexLookupInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IdMapped", "T", "U", "f", "f1", "f2", "f3", "g", "h"] rebuilt : ScopeId(0): ["f1", "f2", "f3", "h"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(1): ["T", "U", "a", "b"] rebuilt : ScopeId(1): ["a", "b"] @@ -6786,6 +8352,9 @@ rebuilt : ScopeId(2): ["a", "b"] Bindings mismatch: after transform: ScopeId(3): ["T", "U", "a", "b"] rebuilt : ScopeId(3): ["a", "b"] +Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(3): [] Reference mismatch: after transform: ReferenceId(35): Some("f") rebuilt : ReferenceId(12): None @@ -6799,37 +8368,61 @@ tasks/coverage/typescript/tests/cases/compiler/homomorphicMappedTypeNesting.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Box", "Identity", "Test", "UnboxArray"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(8)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/homomorphicMappedTypeWithNonHomomorphicInstantiationSpreadable1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["HandleOptions", "result"] rebuilt : ScopeId(0): ["result"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/icomparable.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IComparable", "StringComparable", "sc", "x"] rebuilt : ScopeId(0): ["sc", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/identicalGenericConditionalsWithInferRelated.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Constructor", "MappedResult", "X", "Y", "f"] rebuilt : ScopeId(0): ["Y", "f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(6), ScopeId(7), ScopeId(11), ScopeId(14)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["Cond1", "Cond2", "X", "arg", "x", "y"] rebuilt : ScopeId(1): ["arg", "x", "y"] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(1): [] Bindings mismatch: after transform: ScopeId(15): ["C", "ctor"] rebuilt : ScopeId(3): ["ctor"] +Scope children mismatch: +after transform: ScopeId(15): [ScopeId(16)] +rebuilt : ScopeId(3): [] tasks/coverage/typescript/tests/cases/compiler/identicalTypesNoDifferByCheckOrder.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["FunctionComponent1", "FunctionComponent2", "SomeProps", "SomePropsClone", "SomePropsCloneX", "SomePropsX", "Validator", "WeakValidationMap", "comp2", "comp3", "needsComponentOfSomeProps2", "needsComponentOfSomeProps3"] rebuilt : ScopeId(0): ["comp2", "comp3", "needsComponentOfSomeProps2", "needsComponentOfSomeProps3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/identityAndDivergentNormalizedTypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ApiPost", "PostBody", "PostPath", "fx1", "post", "tmp"] rebuilt : ScopeId(0): ["fx1", "post", "tmp"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(4): ["PATH", "body", "options", "path"] rebuilt : ScopeId(1): ["body", "options", "path"] @@ -6844,21 +8437,33 @@ tasks/coverage/typescript/tests/cases/compiler/illegalGenericWrapping1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Sequence"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/implementInterfaceAnyMemberWithVoid.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bug", "I"] rebuilt : ScopeId(0): ["Bug"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/implementsInClassExpression.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "cls"] rebuilt : ScopeId(0): ["cls"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/implicitAnyGenericTypeInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Comparer", "c", "r"] rebuilt : ScopeId(0): ["c", "r"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/implicitAnyGenerics.ts semantic error: Bindings mismatch: @@ -6875,6 +8480,9 @@ tasks/coverage/typescript/tests/cases/compiler/implicitIndexSignatures.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["StringMap", "empty1", "empty2", "f1", "f2", "f3", "f4", "f5", "map", "names1", "names2"] rebuilt : ScopeId(0): ["empty1", "empty2", "f1", "f2", "f3", "f4", "f5", "map", "names1", "names2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] Bindings mismatch: after transform: ScopeId(9): ["A", "B", "E1"] rebuilt : ScopeId(6): ["E1"] @@ -6914,6 +8522,9 @@ tasks/coverage/typescript/tests/cases/compiler/importDeclWithExportModifierInAmb semantic error: Bindings mismatch: after transform: ScopeId(0): ["m"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/importElisionEnum.ts semantic error: Bindings mismatch: @@ -6923,6 +8534,11 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) +tasks/coverage/typescript/tests/cases/compiler/importElisionExportNonExportAndDefault.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/importHelpers.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "dec", "id", "result"] @@ -6949,6 +8565,9 @@ tasks/coverage/typescript/tests/cases/compiler/importHelpersInAmbientContext.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["N"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/importHelpersInIsolatedModules.ts semantic error: Bindings mismatch: @@ -7031,6 +8650,9 @@ tasks/coverage/typescript/tests/cases/compiler/import_unneeded-require-when-refe semantic error: Bindings mismatch: after transform: ScopeId(0): ["ITest"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/import_var-referencing-an-imported-module-alias.ts semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. @@ -7040,6 +8662,9 @@ tasks/coverage/typescript/tests/cases/compiler/importedAliasedConditionalTypeIns semantic error: Bindings mismatch: after transform: ScopeId(0): ["Actual", "Expected", "Handler", "lambdaTester"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/importedAliasesInTypePositions.ts semantic error: Semantic Collector failed after transform @@ -7076,26 +8701,46 @@ tasks/coverage/typescript/tests/cases/compiler/importsInAmbientModules1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["M"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/importsInAmbientModules2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["M"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/importsInAmbientModules3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["M"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/inKeywordAndIntersection.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "ClassOne", "InstanceOne", "InstanceTwo", "f10", "instance"] rebuilt : ScopeId(0): ["A", "B", "ClassOne", "f10", "instance"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6)] + +tasks/coverage/typescript/tests/cases/compiler/inKeywordNarrowingWithNoUncheckedIndexedAccess.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(7)] tasks/coverage/typescript/tests/cases/compiler/inKeywordTypeguard.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "AOrB", "AWithMethod", "AWithOptionalProp", "B", "BWithMethod", "BWithOptionalProp", "C", "ClassWithUnionProp", "D", "NegativeClassTest", "UnreachableCodeDetection", "checkIsTouchDevice", "error", "f", "f1", "f10", "f11", "f12", "f13", "f14", "f15", "f16", "f2", "f3", "f4", "f5", "f6", "f7", "f8", "f9", "foo", "isHTMLTable", "narrowsToNever", "negativeClassesTest", "negativeIntersectionTest", "negativeMultipleClassesTest", "negativePropTest", "negativeTestClassesWithMemberMissingInBothClasses", "negativeTestClassesWithMembers", "positiveClassesTest", "positiveIntersectionTest", "positiveTestClassesWithOptionalProperties", "sym", "test1", "test2", "test3", "x"] rebuilt : ScopeId(0): ["A", "AWithMethod", "AWithOptionalProp", "B", "BWithMethod", "BWithOptionalProp", "C", "ClassWithUnionProp", "D", "NegativeClassTest", "UnreachableCodeDetection", "checkIsTouchDevice", "f", "f1", "f10", "f11", "f12", "f13", "f14", "f15", "f16", "f2", "f3", "f4", "f5", "f6", "f7", "f8", "f9", "foo", "isHTMLTable", "narrowsToNever", "negativeClassesTest", "negativeIntersectionTest", "negativeMultipleClassesTest", "negativePropTest", "negativeTestClassesWithMemberMissingInBothClasses", "negativeTestClassesWithMembers", "positiveClassesTest", "positiveIntersectionTest", "positiveTestClassesWithOptionalProperties", "sym", "test1", "test2", "test3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(21), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(29), ScopeId(30), ScopeId(33), ScopeId(37), ScopeId(41), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(56), ScopeId(59), ScopeId(64), ScopeId(67), ScopeId(72), ScopeId(75), ScopeId(79), ScopeId(83), ScopeId(88), ScopeId(90), ScopeId(92), ScopeId(95), ScopeId(98), ScopeId(101), ScopeId(104), ScopeId(107), ScopeId(110), ScopeId(111), ScopeId(113), ScopeId(114), ScopeId(115), ScopeId(116), ScopeId(119), ScopeId(122)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(21), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(29), ScopeId(30), ScopeId(33), ScopeId(37), ScopeId(41), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(50), ScopeId(54), ScopeId(57), ScopeId(62), ScopeId(65), ScopeId(70), ScopeId(73), ScopeId(77), ScopeId(81), ScopeId(86), ScopeId(88), ScopeId(90), ScopeId(93), ScopeId(96), ScopeId(99), ScopeId(102), ScopeId(105), ScopeId(108), ScopeId(109), ScopeId(111), ScopeId(112), ScopeId(113), ScopeId(114), ScopeId(117), ScopeId(120)] Bindings mismatch: after transform: ScopeId(67): ["T", "x"] rebuilt : ScopeId(65): ["x"] @@ -7157,6 +8802,9 @@ tasks/coverage/typescript/tests/cases/compiler/incrementOnNullAssertion.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Dictionary", "foo", "x"] rebuilt : ScopeId(0): ["foo", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/indexIntoEnum.ts semantic error: Semantic Collector failed after transform @@ -7177,11 +8825,17 @@ tasks/coverage/typescript/tests/cases/compiler/indexTypeNoSubstitutionTemplateLi semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "Test"] rebuilt : ScopeId(0): ["Foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/indexedAccessAndNullableNarrowing.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AnyObject", "State", "Store", "f1", "f2", "f3", "syncStoreProp"] rebuilt : ScopeId(0): ["f1", "f2", "f3", "syncStoreProp"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Bindings mismatch: after transform: ScopeId(1): ["K", "T", "x"] rebuilt : ScopeId(1): ["x"] @@ -7196,7 +8850,10 @@ after transform: ScopeId(9): ["K", "P", "S", "key", "props", "store", "value"] rebuilt : ScopeId(4): ["key", "props", "store", "value"] tasks/coverage/typescript/tests/cases/compiler/indexedAccessCanBeHighOrder.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] +Bindings mismatch: after transform: ScopeId(3): ["A", "B", "a", "b", "item"] rebuilt : ScopeId(1): ["a", "b", "item"] @@ -7204,11 +8861,17 @@ tasks/coverage/typescript/tests/cases/compiler/indexedAccessKeyofNestedSimplifie semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "AWrapped", "AnyFunction", "B", "BWrapped", "Params", "Wrapper"] rebuilt : ScopeId(0): ["A", "B"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/indexedAccessNormalization.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyMap", "f1", "f2"] rebuilt : ScopeId(0): ["f1", "f2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(4): ["M", "elemofM", "k", "mymap"] rebuilt : ScopeId(1): ["elemofM", "k", "mymap"] @@ -7220,16 +8883,25 @@ tasks/coverage/typescript/tests/cases/compiler/indexedAccessRetainsIndexSignatur semantic error: Bindings mismatch: after transform: ScopeId(0): ["Diff", "O", "Omit", "Omit1", "Omit2", "o"] rebuilt : ScopeId(0): ["o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/indexedAccessToThisTypeOnIntersection01.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/indexedAccessTypeConstraints.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Data", "Foo", "IData", "Parent", "foo"] rebuilt : ScopeId(0): ["Bar", "Foo", "Parent", "foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(8), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(6), ScopeId(8)] Bindings mismatch: after transform: ScopeId(3): ["M"] rebuilt : ScopeId(1): [] @@ -7247,16 +8919,25 @@ tasks/coverage/typescript/tests/cases/compiler/indexer.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["JQuery", "JQueryElement", "jq"] rebuilt : ScopeId(0): ["jq"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/indexer2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IDirectChildrenMap", "IHeapObjectProperty", "directChildrenMap"] rebuilt : ScopeId(0): ["directChildrenMap"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/indexerReturningTypeParameter1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "a2", "c", "f", "r", "r2"] rebuilt : ScopeId(0): ["a", "a2", "c", "r", "r2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(4): ["T"] rebuilt : ScopeId(2): [] @@ -7265,6 +8946,9 @@ tasks/coverage/typescript/tests/cases/compiler/indexingTypesWithNever.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["EmptyObj", "Example", "ExpectType", "Match", "O0", "O0Names", "O0Props", "O1", "O1Names", "O1Props", "O2", "O2Names", "O2Props", "O3", "O3Names", "O3Props", "OptionalPropNames", "OptionalProps", "P0", "P0Names", "P0Props", "P1", "P1Names", "P1Props", "P2", "P2Names", "P2Props", "P3", "P3Names", "P3Props", "RequiredPropNames", "RequiredProps", "Res1", "Res2", "Res3", "Result1", "Result2", "TestObj", "key", "o0NameTest", "o0Test", "o1NameTest", "o1Test", "o2NameTest", "o2Test", "o3NameTest", "o3Test", "obj", "p0NameTest", "p0Test", "p1NameTest", "p1Test", "p2NameTest", "p2Test", "p3NameTest", "p3Test", "result3", "result4", "result5", "result6"] rebuilt : ScopeId(0): ["result3", "result4", "result5", "result6"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(12), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(22), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(21): Some("obj") rebuilt : ReferenceId(3): None @@ -7276,19 +8960,31 @@ tasks/coverage/typescript/tests/cases/compiler/indirectTypeParameterReferences.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "combined", "flowtypes", "literal", "n"] rebuilt : ScopeId(0): ["combined", "flowtypes", "literal", "n"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5)] Bindings mismatch: after transform: ScopeId(2): ["A", "Combined", "b", "combined", "literal"] rebuilt : ScopeId(1): ["b", "combined", "literal"] +Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/inferConditionalConstraintMappedMember.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["KeysWithoutStringIndex", "RemoveIdxSgn", "test"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/inferFromGenericFunctionReturnTypes2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Mapper", "SetOf", "a1", "a2", "a3", "a4", "a5", "a6", "compose", "f1", "f2", "f3", "f4", "filter", "map", "t1", "t2", "testSet"] rebuilt : ScopeId(0): ["SetOf", "a1", "a2", "a3", "a4", "a5", "a6", "compose", "f1", "f2", "f3", "f4", "filter", "map", "t1", "t2", "testSet"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(24), ScopeId(25), ScopeId(28), ScopeId(31), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(19), ScopeId(22), ScopeId(25), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34)] Bindings mismatch: after transform: ScopeId(19): ["A"] rebuilt : ScopeId(14): [] @@ -7309,6 +9005,9 @@ tasks/coverage/typescript/tests/cases/compiler/inferObjectTypeFromStringLiteralT semantic error: Bindings mismatch: after transform: ScopeId(0): ["two", "x", "y"] rebuilt : ScopeId(0): ["x", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(6): Some("two") rebuilt : ReferenceId(1): None @@ -7316,20 +9015,44 @@ Reference mismatch: after transform: ReferenceId(9): Some("two") rebuilt : ReferenceId(4): None +tasks/coverage/typescript/tests/cases/compiler/inferPropertyWithContextSensitiveReturnStatement.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/inferRestArgumentsMappedTuple.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyMappedTupleNew", "MyMappedTupleOld", "MyMappedType", "TupleMapperNew", "TupleMapperOld", "myPrimitiveTupleNew", "myPrimitiveTupleOld"] rebuilt : ScopeId(0): ["myPrimitiveTupleNew", "myPrimitiveTupleOld"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/inferSecondaryParameter.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Ib", "b"] rebuilt : ScopeId(0): ["b"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/typescript/tests/cases/compiler/inferStringLiteralUnionForBindingElement.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/inferTInParentheses.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["F1", "IsNumber", "T1", "T2", "T3", "T4", "T5", "T6", "T7", "T8", "T9"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/inferTupleFromBindingPattern.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/inferTypeArgumentsInSignatureWithRestParameters.ts semantic error: Bindings mismatch: @@ -7346,11 +9069,17 @@ tasks/coverage/typescript/tests/cases/compiler/inferTypeConstraintInstantiationC semantic error: Bindings mismatch: after transform: ScopeId(0): ["AMappedType", "Cell", "F1", "F2", "HasM", "InferIOItemToJSType", "Items", "MyObject", "Simplify", "X1", "X2", "ZodObject", "ZodRawShape", "ZodType", "addQuestionMarks", "optionalKeys", "requiredKeys"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(9), ScopeId(12), ScopeId(14), ScopeId(17), ScopeId(18), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(26), ScopeId(29), ScopeId(30), ScopeId(31)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/inferTypeParameterConstraints.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["BaseClass", "Constrain", "Constructor", "E0", "E1", "Foo", "IsSub", "Klass", "SubGuard", "T0", "U", "inferTest", "m"] rebuilt : ScopeId(0): ["BaseClass", "Klass"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(10), ScopeId(11), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(17)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Bindings mismatch: after transform: ScopeId(11): ["V"] rebuilt : ScopeId(1): [] @@ -7365,11 +9094,17 @@ tasks/coverage/typescript/tests/cases/compiler/inferTypesWithFixedTupleExtendsAt semantic error: Bindings mismatch: after transform: ScopeId(0): ["SubTup2FixedLength", "SubTup2FixedLengthTest", "SubTup2RestAndTrailingVariadic2", "SubTup2RestAndTrailingVariadic2Test", "SubTup2TrailingVariadic", "SubTup2TrailingVariadicTest", "SubTup2TrailingVariadicTest2", "SubTup2TrailingVariadicWithTrailingFixedElements", "SubTup2TrailingVariadicWithTrailingFixedElementsTest", "SubTup2TrailingVariadicWithTrailingFixedElementsTest2", "SubTup2Variadic", "SubTup2VariadicAndRest", "SubTup2VariadicAndRestTest", "SubTup2VariadicTest", "SubTup2VariadicTest2", "SubTup2VariadicWithLeadingFixedElements", "SubTup2VariadicWithLeadingFixedElementsTest", "SubTup2VariadicWithLeadingFixedElementsTest2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(10), ScopeId(11), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(17), ScopeId(18), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(24), ScopeId(25)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/inferenceAndHKTs.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "Apply", "B", "F", "T", "TTypeLambda", "TypeClass", "TypeLambda", "a", "map", "typeClass", "x1", "x2"] rebuilt : ScopeId(0): ["x1", "x2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(25): Some("map") rebuilt : ReferenceId(0): None @@ -7390,6 +9125,9 @@ tasks/coverage/typescript/tests/cases/compiler/inferenceAndSelfReferentialConstr semantic error: Bindings mismatch: after transform: ScopeId(0): ["Test", "res1", "res2", "res3", "test"] rebuilt : ScopeId(0): ["res1", "res2", "res3", "test"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Bindings mismatch: after transform: ScopeId(4): ["T", "arg"] rebuilt : ScopeId(1): ["arg"] @@ -7398,6 +9136,9 @@ tasks/coverage/typescript/tests/cases/compiler/inferenceDoesNotAddUndefinedOrNul semantic error: Bindings mismatch: after transform: ScopeId(0): ["Node", "NodeArray", "flatMapChildren", "flatMapChildren2"] rebuilt : ScopeId(0): ["flatMapChildren", "flatMapChildren2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] Bindings mismatch: after transform: ScopeId(6): ["T", "cb", "node", "result"] rebuilt : ScopeId(1): ["cb", "node", "result"] @@ -7409,6 +9150,9 @@ tasks/coverage/typescript/tests/cases/compiler/inferenceDoesntCompareAgainstUnin semantic error: Bindings mismatch: after transform: ScopeId(0): ["ClassA", "ConcreteClass", "SettingsInterface", "ValueInterface", "thisGetsTheFalseError", "thisIsOk"] rebuilt : ScopeId(0): ["ClassA", "ConcreteClass", "thisGetsTheFalseError", "thisIsOk"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6)] Bindings mismatch: after transform: ScopeId(1): ["TEntityClass"] rebuilt : ScopeId(1): [] @@ -7417,19 +9161,31 @@ tasks/coverage/typescript/tests/cases/compiler/inferenceErasedSignatures.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["BaseType", "CType", "GetT1", "InheritedType", "MType", "RType", "SomeAbstractClass", "SomeClass", "SomeClassC", "SomeClassM", "SomeClassR", "StructuralVersion", "T1", "T2"] rebuilt : ScopeId(0): ["SomeAbstractClass", "SomeClass"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(21), ScopeId(23), ScopeId(28), ScopeId(30), ScopeId(31)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(3): ["C", "M", "R"] rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/compiler/inferenceExactOptionalProperties1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Test1"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/inferenceFromParameterlessLambda.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Make", "Take", "foo"] rebuilt : ScopeId(0): ["foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(1): ["T", "i", "o"] rebuilt : ScopeId(1): ["i", "o"] @@ -7443,6 +9199,9 @@ tasks/coverage/typescript/tests/cases/compiler/inferenceOfNullableObjectTypesWit semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "D", "equal", "v"] rebuilt : ScopeId(0): ["equal", "v"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(1): ["T", "a", "b"] rebuilt : ScopeId(1): ["a", "b"] @@ -7451,6 +9210,9 @@ tasks/coverage/typescript/tests/cases/compiler/inferenceOptionalPropertiesToInde semantic error: Bindings mismatch: after transform: ScopeId(0): ["a1", "a2", "a3", "a4", "obj", "param2", "query", "x1", "x2", "x3", "x4"] rebuilt : ScopeId(0): ["a1", "a2", "a3", "a4", "obj", "param2", "query"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(3): Some("x1") rebuilt : ReferenceId(1): None @@ -7468,6 +9230,9 @@ tasks/coverage/typescript/tests/cases/compiler/inferenceOuterResultNotIncorrectl semantic error: Bindings mismatch: after transform: ScopeId(0): ["Assign", "Base", "Foo", "Supervisor", "Test", "Zip"] rebuilt : ScopeId(0): ["Base", "Foo", "Test", "Zip"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(6), ScopeId(9), ScopeId(10), ScopeId(12)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(9)] Bindings mismatch: after transform: ScopeId(1): ["A", "B"] rebuilt : ScopeId(1): [] @@ -7491,16 +9256,25 @@ tasks/coverage/typescript/tests/cases/compiler/inferenceUnionOfObjectsMappedCont semantic error: Bindings mismatch: after transform: ScopeId(0): ["Entity", "RowRenderer", "RowRendererMeta", "test"] rebuilt : ScopeId(0): ["test"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/inferentialTypingObjectLiteralMethod1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Int"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/inferentialTypingObjectLiteralMethod2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Int"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/inferentialTypingUsingApparentType1.ts semantic error: Bindings mismatch: @@ -7511,30 +9285,54 @@ tasks/coverage/typescript/tests/cases/compiler/inferentialTypingUsingApparentTyp semantic error: Bindings mismatch: after transform: ScopeId(1): ["T", "x"] rebuilt : ScopeId(1): ["x"] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/compiler/inferentialTypingUsingApparentType3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["CharField", "Field", "NumberField", "ObjectField", "person"] rebuilt : ScopeId(0): ["CharField", "NumberField", "ObjectField", "person"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] Bindings mismatch: after transform: ScopeId(7): ["A", "T"] rebuilt : ScopeId(5): [] +tasks/coverage/typescript/tests/cases/compiler/inferentialTypingWithFunctionType.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/inferentialTypingWithFunctionType2.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["A", "a"] rebuilt : ScopeId(1): ["a"] +tasks/coverage/typescript/tests/cases/compiler/inferentialTypingWithFunctionTypeNested.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/inferentialTypingWithFunctionTypeSyntacticScenarios.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IdentityConstructor", "dottedIdentity", "ic", "s", "t"] rebuilt : ScopeId(0): ["dottedIdentity", "ic", "s", "t"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/inferentialTypingWithFunctionTypeZip.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["S", "T", "U", "i", "pair", "result", "zipWith"] rebuilt : ScopeId(0): ["i", "pair", "result", "zipWith"] +tasks/coverage/typescript/tests/cases/compiler/inferentiallyTypingAnEmptyArray.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/inferredRestTypeFixedOnce.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["Args", "_"] @@ -7586,21 +9384,33 @@ tasks/coverage/typescript/tests/cases/compiler/infiniteExpandingTypeThroughInher semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/infinitelyExpandingBaseTypes1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/infinitelyExpandingBaseTypes2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "a", "b"] rebuilt : ScopeId(0): ["a", "b"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/infinitelyExpandingOverloads.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["KnockoutObservableBase2", "KnockoutSubscription2", "Validatable2", "ValidationPlacement2", "Validator2", "ViewModel", "Widget"] rebuilt : ScopeId(0): ["Validator2", "ViewModel", "Widget"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(7): ["TValue"] rebuilt : ScopeId(1): [] @@ -7610,36 +9420,57 @@ rebuilt : ScopeId(2): [] Bindings mismatch: after transform: ScopeId(9): ["TValue"] rebuilt : ScopeId(3): [] +Scope children mismatch: +after transform: ScopeId(9): [ScopeId(10), ScopeId(11), ScopeId(12)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5)] tasks/coverage/typescript/tests/cases/compiler/infinitelyExpandingTypeAssignability.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "x", "y"] rebuilt : ScopeId(0): ["x", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/infinitelyExpandingTypes2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo", "f", "v"] rebuilt : ScopeId(0): ["f", "v"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/infinitelyExpandingTypes3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["List", "OwnerList", "OwnerList2", "o1", "o2"] rebuilt : ScopeId(0): ["o1", "o2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/infinitelyExpandingTypes4.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Grouping", "Query", "QueryEnumerator", "q1", "q2", "q3"] rebuilt : ScopeId(0): ["q1", "q2", "q3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/infinitelyExpandingTypes5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Enumerator", "Query", "from"] rebuilt : ScopeId(0): ["from"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/infinitelyExpandingTypesNonGenericBase.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "Base", "Functionality", "Options", "OptionsBase", "o"] rebuilt : ScopeId(0): ["A", "Base", "Functionality", "o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Bindings mismatch: after transform: ScopeId(1): ["V"] rebuilt : ScopeId(1): [] @@ -7651,11 +9482,17 @@ tasks/coverage/typescript/tests/cases/compiler/infinitelyGenerativeInheritance1. semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyStack", "Stack"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/inheritSameNamePrivatePropertiesFromSameOrigin.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "C2"] rebuilt : ScopeId(0): ["B", "C", "C2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/inheritanceOfGenericConstructorMethod1.ts semantic error: Bindings mismatch: @@ -7688,47 +9525,77 @@ tasks/coverage/typescript/tests/cases/compiler/inheritedConstructorPropertyConte semantic error: Bindings mismatch: after transform: ScopeId(0): ["Assignment", "State"] rebuilt : ScopeId(0): ["Assignment"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/inheritedFunctionAssignmentCompatibility.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IResultCallback", "fn"] rebuilt : ScopeId(0): ["fn"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/inheritedGenericCallSignature.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1", "I2", "Object", "x", "y"] rebuilt : ScopeId(0): ["x", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/inheritedMembersAndIndexSignaturesFromDifferentBases2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/inheritedOverloadedSpecializedSignatures.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "C1", "C2", "b", "c", "x1", "x2", "x3", "x4", "x5", "x6", "x7", "x8", "x9"] rebuilt : ScopeId(0): ["b", "c", "x1", "x2", "x3", "x4", "x5", "x6", "x7", "x8", "x9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/initializersInAmbientEnums.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/inlineConditionalHasSimilarAssignability.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyExtract", "foo"] rebuilt : ScopeId(0): ["foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(3): ["CustomType", "T", "a", "b", "c", "d", "e"] rebuilt : ScopeId(1): ["a", "b", "c", "d", "e"] +Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/compiler/inlinedAliasAssignableToConstraintSameAsAlias.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "Name", "RelationFields", "ShouldA"] rebuilt : ScopeId(0): ["A"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(6): ["A1", "A2", "N", "RF"] rebuilt : ScopeId(2): [] +Scope children mismatch: +after transform: ScopeId(6): [ScopeId(7)] +rebuilt : ScopeId(2): [] tasks/coverage/typescript/tests/cases/compiler/innerAliases2.ts semantic error: Semantic Collector failed after transform @@ -7776,10 +9643,18 @@ Missing ReferenceId: tungsten Missing ReferenceId: M Missing ReferenceId: M +tasks/coverage/typescript/tests/cases/compiler/innerOverloads.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] + tasks/coverage/typescript/tests/cases/compiler/innerTypeArgumentInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Generate", "Generator"] rebuilt : ScopeId(0): ["Generate"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(2): ["U", "func"] rebuilt : ScopeId(1): ["func"] @@ -7788,6 +9663,9 @@ tasks/coverage/typescript/tests/cases/compiler/instanceOfAssignability.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ABC", "Alpha", "Animal", "Base", "Beta", "Derived1", "Derived2", "Gamma", "Giraffe", "Mammal", "fn1", "fn2", "fn3", "fn4", "fn5", "fn6", "fn7", "fn8"] rebuilt : ScopeId(0): ["ABC", "Animal", "Derived1", "Derived2", "Giraffe", "Mammal", "fn1", "fn2", "fn3", "fn4", "fn5", "fn6", "fn7", "fn8"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(21)] tasks/coverage/typescript/tests/cases/compiler/instanceOfInExternalModules.ts semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. @@ -7797,11 +9675,17 @@ tasks/coverage/typescript/tests/cases/compiler/instanceSubtypeCheck1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/instanceofTypeAliasToGenericClass.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Table", "fn", "fn2", "o"] rebuilt : ScopeId(0): ["fn", "fn2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(3): ["T", "o"] rebuilt : ScopeId(1): ["o"] @@ -7816,6 +9700,9 @@ tasks/coverage/typescript/tests/cases/compiler/instantiateConstraintsToTypeArgum semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/instantiateContextualTypes.ts semantic error: Semantic Collector failed after transform @@ -7828,26 +9715,38 @@ tasks/coverage/typescript/tests/cases/compiler/instantiateContextuallyTypedGener semantic error: Bindings mismatch: after transform: ScopeId(0): ["$", "JQuery", "lines"] rebuilt : ScopeId(0): ["$", "lines"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/instantiateCrossFileMerge.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["P"] +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/instantiatedBaseTypeConstraints.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo"] rebuilt : ScopeId(0): ["Bar"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/instantiatedBaseTypeConstraints2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/instantiatedReturnTypeContravariance.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "c", "d"] rebuilt : ScopeId(0): ["c", "d"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/interMixingModulesInterfaces0.ts semantic error: Semantic Collector failed after transform @@ -7939,31 +9838,59 @@ tasks/coverage/typescript/tests/cases/compiler/interface0.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Generic", "y"] rebuilt : ScopeId(0): ["y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/interfaceClassMerging.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] + +tasks/coverage/typescript/tests/cases/compiler/interfaceClassMerging2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/interfaceContextualType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bug", "IMap", "IOptions"] rebuilt : ScopeId(0): ["Bug"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/interfaceDeclaration2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1", "I2", "I3", "I4"] rebuilt : ScopeId(0): ["I2", "I3", "I4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/interfaceDeclaration5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C1", "I1"] rebuilt : ScopeId(0): ["C1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/interfaceExtendsClass1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Button", "Control", "Image", "Location", "SelectableControl", "TextBox"] rebuilt : ScopeId(0): ["Button", "Control", "Image", "Location", "TextBox"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6), ScopeId(7)] tasks/coverage/typescript/tests/cases/compiler/interfaceImplementation5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C1", "C2", "C3", "C4", "C5", "C6", "I1"] rebuilt : ScopeId(0): ["C1", "C2", "C3", "C4", "C5", "C6"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6), ScopeId(9), ScopeId(11), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(8), ScopeId(10), ScopeId(12)] tasks/coverage/typescript/tests/cases/compiler/interfaceInReopenedModule.ts semantic error: Semantic Collector failed after transform @@ -7978,26 +9905,41 @@ tasks/coverage/typescript/tests/cases/compiler/interfaceInheritance2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I6", "I7", "v1"] rebuilt : ScopeId(0): ["v1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/interfaceMergedUnconstrainedNoErrorIrrespectiveOfOrder.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ns"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/interfacePropertiesWithSameName1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Mover", "MoverShaker", "Shaker"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/interfaceSubtyping.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Camera", "iface"] rebuilt : ScopeId(0): ["Camera"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/interfaceWithCommaSeparators.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "v"] rebuilt : ScopeId(0): ["v"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/internalImportInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -8006,6 +9948,9 @@ tasks/coverage/typescript/tests/cases/compiler/internalImportUnInstantiatedModul semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B"] rebuilt : ScopeId(0): ["A"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/internalImportUnInstantiatedModuleNotReferencingInstanceNoConflict.ts semantic error: Semantic Collector failed after transform @@ -8018,16 +9963,25 @@ tasks/coverage/typescript/tests/cases/compiler/intersectionApparentTypeCaching.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["T0", "T1", "TX"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/intersectionConstraintReduction.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AnyKey", "KeyIfSignatureOfObject", "MustBeKey", "Reduced1", "Reduced2", "ReturnTypeKeyof", "Test1", "Test2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(9), ScopeId(12), ScopeId(16)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/intersectionOfMixinConstructorTypeAndNonConstructorType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["x"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(0): Some("x") rebuilt : ReferenceId(0): None @@ -8036,16 +9990,25 @@ tasks/coverage/typescript/tests/cases/compiler/intersectionOfTypeVariableHasAppa semantic error: Bindings mismatch: after transform: ScopeId(0): ["Component", "Props"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/intersectionReductionGenericStringLikeType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["_1", "_2", "keyContaining1", "keyContaining2", "obj"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(6), ScopeId(9)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/intersectionSatisfiesConstraint.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["FirstInterface", "SecondInterface", "myFirstFunction", "mySecondFunction"] rebuilt : ScopeId(0): ["myFirstFunction", "mySecondFunction"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(3): ["T", "newParam", "param1"] rebuilt : ScopeId(1): ["newParam", "param1"] @@ -8075,49 +10038,79 @@ tasks/coverage/typescript/tests/cases/compiler/intersectionTypeWithLeadingOperat semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/intersectionType_useDefineForClassFields.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Baz", "Foo", "bar"] rebuilt : ScopeId(0): ["Baz", "bar"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(3): ["T", "_p"] rebuilt : ScopeId(1): ["_p"] +Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/compiler/intersectionWithConstructSignaturePrototypeResult.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["PersonPrototype", "PersonType"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/invalidThisEmitInContextualObjectLiteral.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IDef", "TestController"] rebuilt : ScopeId(0): ["TestController"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/ipromise2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Windows", "p", "p2", "x"] rebuilt : ScopeId(0): ["p", "p2", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/ipromise3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IPromise3", "p1", "p2"] rebuilt : ScopeId(0): ["p1", "p2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/ipromise4.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Windows", "p"] rebuilt : ScopeId(0): ["p"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/isolatedModulesConstEnum.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/isolatedModulesDontElideReExportStar.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/isolatedModulesImportConstEnum.ts semantic error: Bindings mismatch: @@ -8143,6 +10136,31 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(0x0) rebuilt : ScopeId(1): ScopeFlags(Function) +tasks/coverage/typescript/tests/cases/compiler/isolatedModulesPlainFile-AMD.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/isolatedModulesPlainFile-CommonJS.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/isolatedModulesPlainFile-ES6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/isolatedModulesPlainFile-System.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/isolatedModulesPlainFile-UMD.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/isolatedModulesReExportAlias.ts semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. Please consider using `import lib from '...';` alongside Typescript's --allowSyntheticDefaultImports option, or add @babel/plugin-transform-modules-commonjs to your Babel config. @@ -8153,11 +10171,17 @@ tasks/coverage/typescript/tests/cases/compiler/isolatedModulesShadowGlobalTypeNo semantic error: Bindings mismatch: after transform: ScopeId(0): ["Date", "Event"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/isolatedModulesSketchyAliasLocalMerge.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["FC"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/isolatedModules_resolveJsonModule.ts semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. @@ -8172,6 +10196,9 @@ tasks/coverage/typescript/tests/cases/compiler/jqueryInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["DoNothingAlias", "MyPromise", "p1", "p2"] rebuilt : ScopeId(0): ["p2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(14): Some("p1") rebuilt : ReferenceId(1): None @@ -8200,11 +10227,17 @@ tasks/coverage/typescript/tests/cases/compiler/jsonFileImportChecksCallCorrectly semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "data", "fn"] rebuilt : ScopeId(0): ["data", "fn"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/jsxCallbackWithDestructuring.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["Component", "MyComponent", "RouteProps", "_jsxFileName", "_reactJsxRuntime", "global"] rebuilt : ScopeId(0): ["MyComponent", "_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(14), ScopeId(15), ScopeId(16)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(15): ["T"] rebuilt : ScopeId(1): [] @@ -8213,11 +10246,17 @@ tasks/coverage/typescript/tests/cases/compiler/jsxChildrenSingleChildConfusableW semantic error: Bindings mismatch: after transform: ScopeId(0): ["App", "Props", "React", "Tab", "TabLayout", "_jsxFileName"] rebuilt : ScopeId(0): ["App", "React", "TabLayout", "_jsxFileName"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/jsxComplexSignatureHasApplicabilityError.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["ArrowRendererHandler", "ArrowRendererProps", "AutocompleteResult", "ClearRendererHandler", "ExtractValueType", "FilterOptionHandler", "FilterOptionsHandler", "FocusOptionHandler", "HandlerRendererResult", "InputRendererHandler", "IsOptionUniqueHandler", "IsValidNewOptionHandler", "LoadOptionsAsyncHandler", "LoadOptionsHandler", "LoadOptionsLegacyHandler", "MenuRendererHandler", "MenuRendererProps", "NewOptionCreatorHandler", "Omit", "OnBlurHandler", "OnChangeHandler", "OnChangeMultipleHandler", "OnChangeSingleHandler", "OnCloseHandler", "OnFocusHandler", "OnInputChangeHandler", "OnInputKeyDownHandler", "OnMenuScrollToBottomHandler", "OnNewOptionClickHandler", "OnOpenHandler", "OnValueClickHandler", "Option", "OptionComponentProps", "OptionComponentType", "OptionRendererHandler", "OptionValues", "Options", "Overwrite", "PromptTextCreatorHandler", "Props", "React", "ReactSelectProps", "ReactSingleSelectProps", "SelectValueHandler", "ShouldKeyDownEventCreateNewOptionHandler", "ValueComponentProps", "ValueComponentType", "ValueRendererHandler", "_jsxFileName", "createReactSingleSelect"] rebuilt : ScopeId(0): ["React", "_jsxFileName", "createReactSingleSelect"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(10), ScopeId(12), ScopeId(13), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(6): ["WrappedComponent", "WrappedProps"] rebuilt : ScopeId(1): ["WrappedComponent"] @@ -8226,11 +10265,17 @@ tasks/coverage/typescript/tests/cases/compiler/jsxContainsOnlyTriviaWhiteSpacesN semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "NoticeList", "Props", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["NoticeList", "_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/jsxElementClassTooManyParams.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["ElemClass", "JSX", "_jsxFileName", "_reactJsxRuntime", "elem"] rebuilt : ScopeId(0): ["ElemClass", "_jsxFileName", "_reactJsxRuntime", "elem"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(9): ["T"] rebuilt : ScopeId(1): [] @@ -8239,6 +10284,9 @@ tasks/coverage/typescript/tests/cases/compiler/jsxElementsAsIdentifierNames.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "JSX", "React", "_jsxFileName"] rebuilt : ScopeId(0): ["A", "B", "_jsxFileName"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference mismatch: after transform: ReferenceId(1): Some("React") rebuilt : ReferenceId(0): None @@ -8266,6 +10314,9 @@ tasks/coverage/typescript/tests/cases/compiler/jsxEmptyExpressionNotCountedAsChi semantic error: Bindings mismatch: after transform: ScopeId(0): ["Props", "React", "Wrapper", "_jsxFileName", "_reactJsxRuntime", "element"] rebuilt : ScopeId(0): ["Wrapper", "_jsxFileName", "_reactJsxRuntime", "element"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/jsxFactoryAndJsxFragmentFactory.tsx semantic error: Bindings mismatch: @@ -8292,6 +10343,9 @@ tasks/coverage/typescript/tests/cases/compiler/jsxFactoryIdentifierAsParameter.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["AppComponent", "JSX", "_jsxFileName"] rebuilt : ScopeId(0): ["AppComponent", "_jsxFileName"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/jsxFactoryQualifiedName.ts semantic error: Semantic Collector failed after transform @@ -8308,11 +10362,17 @@ tasks/coverage/typescript/tests/cases/compiler/jsxFragmentFactoryNoUnusedLocals. semantic error: Bindings mismatch: after transform: ScopeId(0): ["Counter", "CounterProps", "Fragment", "_jsxFileName", "createElement"] rebuilt : ScopeId(0): ["Counter", "_jsxFileName"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/jsxGenericComponentWithSpreadingResultOfGenericFunction.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["_jsxFileName", "_reactJsxRuntime", "otherProps"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(13): Some("otherProps") rebuilt : ReferenceId(4): None @@ -8321,6 +10381,9 @@ tasks/coverage/typescript/tests/cases/compiler/jsxHasLiteralType.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyComponent", "Props", "React", "_jsxFileName", "m"] rebuilt : ScopeId(0): ["MyComponent", "React", "_jsxFileName", "m"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(2): ["P"] rebuilt : ScopeId(1): [] @@ -8329,6 +10392,9 @@ tasks/coverage/typescript/tests/cases/compiler/jsxInExtendsClause.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "React", "_jsxFileName"] rebuilt : ScopeId(0): ["Foo", "_jsxFileName"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(9): Some("React") rebuilt : ReferenceId(2): None @@ -8349,15 +10415,26 @@ tasks/coverage/typescript/tests/cases/compiler/jsxIntrinsicElementsExtendsRecord semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/jsxLibraryManagedAttributesUnusedGeneric.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["Comp", "React", "_jsxFileName", "jsx"] rebuilt : ScopeId(0): ["React", "_jsxFileName"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(6): Some("Comp") rebuilt : ReferenceId(1): None +tasks/coverage/typescript/tests/cases/compiler/jsxLocalNamespaceIndexSignatureNoCrash.tsx +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] + tasks/coverage/typescript/tests/cases/compiler/jsxMultilineAttributeValuesReact.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["React", "_jsxFileName", "a", "b", "c"] @@ -8379,11 +10456,17 @@ tasks/coverage/typescript/tests/cases/compiler/jsxNamespaceReexports.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "createElement"] rebuilt : ScopeId(0): ["createElement"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/jsxNamespacedNameNotComparedToNonMatchingIndexSignature.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["_jsxFileName", "_reactJsxRuntime", "react", "tag"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime", "tag"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/jsxPartialSpread.tsx semantic error: Bindings mismatch: @@ -8394,11 +10477,17 @@ tasks/coverage/typescript/tests/cases/compiler/jsxPropsAsIdentifierNames.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/jsxSpreadFirstUnionNoErrors.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["Info", "InfoProps", "React", "_jsxFileName", "a", "b", "c", "infoProps"] rebuilt : ScopeId(0): ["Info", "React", "_jsxFileName", "a", "b", "c"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(7): Some("infoProps") rebuilt : ReferenceId(14): None @@ -8407,12 +10496,21 @@ tasks/coverage/typescript/tests/cases/compiler/keyRemappingKeyofResult.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Okay", "Oops", "Orig", "Remapped", "f", "g", "sym", "x"] rebuilt : ScopeId(0): ["f", "g", "sym"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(7), ScopeId(14)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(7): ["Okay", "Oops", "Orig", "Remapped", "T", "a", "x"] rebuilt : ScopeId(1): ["a", "x"] +Scope children mismatch: +after transform: ScopeId(7): [ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(13)] +rebuilt : ScopeId(1): [] Bindings mismatch: after transform: ScopeId(14): ["DistributiveNonIndex", "NonIndex", "Okay", "Oops", "Orig", "Remapped", "T", "a", "x"] rebuilt : ScopeId(2): ["a", "x"] +Scope children mismatch: +after transform: ScopeId(14): [ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23)] +rebuilt : ScopeId(2): [] Reference mismatch: after transform: ReferenceId(11): Some("x") rebuilt : ReferenceId(1): None @@ -8424,6 +10522,9 @@ tasks/coverage/typescript/tests/cases/compiler/keyofGenericExtendingClassDoubleL semantic error: Bindings mismatch: after transform: ScopeId(0): ["AutoModel", "Model", "ModelAttributes", "PersonModel"] rebuilt : ScopeId(0): ["AutoModel", "Model", "PersonModel"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(1): ["Attributes"] rebuilt : ScopeId(1): [] @@ -8431,10 +10532,18 @@ Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(2): [] +tasks/coverage/typescript/tests/cases/compiler/keyofModuleObjectHasCorrectKeys.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/keyofObjectWithGlobalSymbolIncluded.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Q", "obj"] rebuilt : ScopeId(0): ["obj"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/keywordInJsxIdentifier.tsx semantic error: Bindings mismatch: @@ -8457,6 +10566,9 @@ tasks/coverage/typescript/tests/cases/compiler/lambdaParameterWithTupleArgsHasCo semantic error: Bindings mismatch: after transform: ScopeId(0): ["GenericClass", "GenericFunction", "MyTuple", "MyTupleItem", "consumeClass", "createClass"] rebuilt : ScopeId(0): ["GenericClass", "consumeClass", "createClass"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] Bindings mismatch: after transform: ScopeId(4): ["T"] rebuilt : ScopeId(1): [] @@ -8468,6 +10580,14 @@ tasks/coverage/typescript/tests/cases/compiler/largeTupleTypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ExpandSmallerTuples", "GrowExp", "GrowExpRev", "Shift", "Tuple", "UnshiftTuple"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(10), ScopeId(12), ScopeId(16)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/letConstMatchingParameterNames.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/letKeepNamesOfTopLevelItems.ts semantic error: Semantic Collector failed after transform @@ -8480,6 +10600,9 @@ tasks/coverage/typescript/tests/cases/compiler/libdtsFix.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["HTMLElement"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/listFailure.ts semantic error: Semantic Collector failed after transform @@ -8537,6 +10660,16 @@ tasks/coverage/typescript/tests/cases/compiler/localAliasExportAssignment.ts semantic error: `export = ;` is only supported when compiling modules to CommonJS. Please consider using `export default ;`, or add @babel/plugin-transform-modules-commonjs to your Babel config. +tasks/coverage/typescript/tests/cases/compiler/localClassesInLoop.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/localClassesInLoop_ES6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/localImportNameVsGlobalName.ts semantic error: Semantic Collector failed after transform Missing SymbolId: Keyboard @@ -8556,6 +10689,9 @@ tasks/coverage/typescript/tests/cases/compiler/localTypeParameterInferencePriori semantic error: Bindings mismatch: after transform: ScopeId(0): ["ColumnSelectView1", "ColumnSelectView2", "ColumnSelectViewImp", "S", "Schema", "Table", "UnrollOnHover"] rebuilt : ScopeId(0): ["ColumnSelectView1", "ColumnSelectView2", "ColumnSelectViewImp", "Table"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Bindings mismatch: after transform: ScopeId(5): ["S"] rebuilt : ScopeId(1): [] @@ -8570,21 +10706,33 @@ tasks/coverage/typescript/tests/cases/compiler/m7Bugs.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C1", "C2", "ISomething", "s", "x", "y1", "y2", "y3"] rebuilt : ScopeId(0): ["C1", "C2", "s", "x", "y1", "y2", "y3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/mapGroupBy.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Employee", "basic", "byNonKey", "byRole", "chars", "employees"] rebuilt : ScopeId(0): ["basic", "byNonKey", "byRole", "chars", "employees"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/compiler/mappedArrayTupleIntersections.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Box", "Boxify", "Hmm", "MustBeArray", "T1", "T2", "T3", "T4", "T5", "X"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(13)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/mappedToToIndexSignatureInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E", "K", "V", "a", "fn", "x"] rebuilt : ScopeId(0): ["E", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(3): ["A", "B", "E"] rebuilt : ScopeId(1): ["E"] @@ -8602,24 +10750,39 @@ tasks/coverage/typescript/tests/cases/compiler/mappedTypeAndIndexSignatureRelati semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Bar2", "Bar3", "Foo", "Identity", "Merge2", "Merge3", "Same", "T1", "T2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(13), ScopeId(15)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/mappedTypeCircularReferenceInAccessor.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["FilteredKeys", "SerializablePartial", "User"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(9)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/mappedTypeContextualTypesApplied.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["TakeString"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] tasks/coverage/typescript/tests/cases/compiler/mappedTypeInferenceAliasSubstitution.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Field", "f", "g", "r1", "r2", "v"] rebuilt : ScopeId(0): ["f", "g", "r1", "r2", "v"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(3): ["A", "B", "R", "x"] rebuilt : ScopeId(1): ["x"] +Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(1): [] Bindings mismatch: after transform: ScopeId(5): ["A", "B", "R", "x"] rebuilt : ScopeId(2): ["x"] @@ -8628,6 +10791,9 @@ tasks/coverage/typescript/tests/cases/compiler/mappedTypeInferenceCircularity.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Block", "HTML", "h"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(4): Some("h") rebuilt : ReferenceId(0): None @@ -8635,25 +10801,42 @@ Reference mismatch: after transform: ReferenceId(5): Some("h") rebuilt : ReferenceId(1): None +tasks/coverage/typescript/tests/cases/compiler/mappedTypeInferenceToMappedType.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/mappedTypeMultiInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Style", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/mappedTypeNestedGenericInstantiation.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Chainable", "square", "v"] rebuilt : ScopeId(0): ["square", "v"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/mappedTypeOverArrayWithBareAnyRestCanBeUsedAsRestParam1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Replace", "ReplaceParams1"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/mappedTypeParameterConstraint.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyMap", "foo"] rebuilt : ScopeId(0): ["foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(3): ["U", "arg"] rebuilt : ScopeId(1): ["arg"] @@ -8662,6 +10845,9 @@ tasks/coverage/typescript/tests/cases/compiler/mappedTypePartialConstraints.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyClass", "MyInterface", "MySubClass", "fn"] rebuilt : ScopeId(0): ["MyClass", "MySubClass", "fn"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] Bindings mismatch: after transform: ScopeId(2): ["T"] rebuilt : ScopeId(1): [] @@ -8670,6 +10856,9 @@ tasks/coverage/typescript/tests/cases/compiler/mappedTypePartialNonHomomorphicBa semantic error: Bindings mismatch: after transform: ScopeId(0): ["Errors", "Model"] rebuilt : ScopeId(0): ["Model"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(3): ["D"] rebuilt : ScopeId(1): [] @@ -8678,19 +10867,31 @@ tasks/coverage/typescript/tests/cases/compiler/mappedTypeRecursiveInference2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["MorphTuple", "nestedTuple", "objectLiteral", "shallow", "validateDefinition", "validateMorph"] rebuilt : ScopeId(0): ["nestedTuple", "objectLiteral", "shallow"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/mappedTypeTupleConstraintAssignability.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AnyObject", "AnyTuple", "EnumValues", "Flags", "ISchema", "Maybe", "Values", "Writeable", "create"] rebuilt : ScopeId(0): ["create"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(16)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(16): ["T", "schemas"] rebuilt : ScopeId(1): ["schemas"] +Scope children mismatch: +after transform: ScopeId(16): [ScopeId(17)] +rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/compiler/mappedTypeWithNameClauseAppliedToArrayType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Mappy", "NotArray", "x"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(7): Some("x") rebuilt : ReferenceId(1): None @@ -8722,11 +10923,17 @@ tasks/coverage/typescript/tests/cases/compiler/mergedDeclarations5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B"] rebuilt : ScopeId(0): ["B"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/mergedDeclarations6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["./a", "A", "B"] rebuilt : ScopeId(0): ["A", "B"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/mergedEnumDeclarationCodeGen.ts semantic error: Bindings mismatch: @@ -8754,6 +10961,9 @@ tasks/coverage/typescript/tests/cases/compiler/mergedInterfaceFromMultipleFiles1 semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/mergedModuleDeclarationCodeGen.ts semantic error: Semantic Collector failed after transform @@ -8927,6 +11137,9 @@ tasks/coverage/typescript/tests/cases/compiler/metadataOfEventAlias.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Event"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/metadataOfUnion.ts semantic error: Bindings mismatch: @@ -8960,11 +11173,17 @@ tasks/coverage/typescript/tests/cases/compiler/missingTypeArguments3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["linq"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/mixedExports.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "M", "M1"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(8)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/mixedTypeEnumComparison.ts semantic error: Semantic Collector failed after transform @@ -8974,6 +11193,9 @@ tasks/coverage/typescript/tests/cases/compiler/mixinIntersectionIsValidbaseType. semantic error: Bindings mismatch: after transform: ScopeId(0): ["AMixin", "Constructor", "Initable", "Serializable"] rebuilt : ScopeId(0): ["AMixin", "Serializable"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] Bindings mismatch: after transform: ScopeId(4): ["K", "LocalMixin", "ResultClass", "SuperClass"] rebuilt : ScopeId(1): ["LocalMixin", "ResultClass", "SuperClass"] @@ -8985,6 +11207,9 @@ tasks/coverage/typescript/tests/cases/compiler/mixinOverMappedTypeNoCrash.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ClassInterface", "Constructor", "InstanceInterface", "cloneClass"] rebuilt : ScopeId(0): ["cloneClass"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(6): ["AnotherOriginalClass", "OriginalClass", "T"] rebuilt : ScopeId(1): ["AnotherOriginalClass", "OriginalClass"] @@ -8993,6 +11218,9 @@ tasks/coverage/typescript/tests/cases/compiler/mixingApparentTypeOverrides.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "Constructor", "Tagged"] rebuilt : ScopeId(0): ["A", "B", "C", "Tagged"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(7), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(6), ScopeId(8)] Bindings mismatch: after transform: ScopeId(2): ["Base", "T"] rebuilt : ScopeId(1): ["Base"] @@ -9009,6 +11237,9 @@ tasks/coverage/typescript/tests/cases/compiler/modFunctionCrash.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Q"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/modularizeLibrary_NoErrorDuplicateLibOptions1.ts semantic error: Bindings mismatch: @@ -9076,51 +11307,81 @@ tasks/coverage/typescript/tests/cases/compiler/moduleAndInterfaceSharingName.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["X", "z", "z2"] rebuilt : ScopeId(0): ["z", "z2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/moduleAndInterfaceSharingName3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["X", "z", "z2"] rebuilt : ScopeId(0): ["z", "z2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/moduleAndInterfaceSharingName4.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["D3"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationDoesInterfaceMergeOfReexport.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationDoesNamespaceEnumMergeOfReexport.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Root"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationDoesNamespaceMergeOfReexport.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Root"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationDuringSyntheticDefaultCheck.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["_moment", "moment", "moment-timezone"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationExtendAmbientModule1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Observable", "observable"] rebuilt : ScopeId(0): ["Observable"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationExtendFileModule1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["./observable", "Observable"] rebuilt : ScopeId(0): ["Observable"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationExtendFileModule2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["./observable", "Observable"] rebuilt : ScopeId(0): ["Observable"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationImportsAndExports4.ts semantic error: Semantic Collector failed after transform @@ -9147,11 +11408,17 @@ semantic error: Missing initializer in destructuring declaration Bindings mismatch: after transform: ScopeId(0): ["./observable", "Observable"] rebuilt : ScopeId(0): ["Observable"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationOfAlias.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/moduleCodeGenTest3.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -9180,6 +11447,9 @@ tasks/coverage/typescript/tests/cases/compiler/moduleImportedForTypeArgumentPosi semantic error: Bindings mismatch: after transform: ScopeId(0): ["M2C"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/moduleLocalImportNotIncorrectlyRedirected.ts semantic error: Bindings mismatch: @@ -9258,6 +11528,11 @@ tasks/coverage/typescript/tests/cases/compiler/modulePreserve2.ts semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. Please consider using `import lib from '...';` alongside Typescript's --allowSyntheticDefaultImports option, or add @babel/plugin-transform-modules-commonjs to your Babel config. +tasks/coverage/typescript/tests/cases/compiler/moduleRedifinitionErrors.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/moduleReopenedTypeOtherBlock.ts semantic error: Semantic Collector failed after transform Missing SymbolId: M @@ -9616,21 +11891,33 @@ tasks/coverage/typescript/tests/cases/compiler/module_augmentUninstantiatedModul semantic error: Bindings mismatch: after transform: ScopeId(0): ["bar", "foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/module_augmentUninstantiatedModule2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ng"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/multiCallOverloads.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ICallback", "f1", "f2", "load"] rebuilt : ScopeId(0): ["f1", "f2", "load"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] tasks/coverage/typescript/tests/cases/compiler/multiExtendsSplitInterfaces2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "I", "a", "b", "i", "i1", "i2"] rebuilt : ScopeId(0): ["a", "b", "i", "i1", "i2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/multiModuleClodule1.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -9642,11 +11929,17 @@ tasks/coverage/typescript/tests/cases/compiler/multiSignatureTypeInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AllParams", "AllReturns", "Expected", "InferTwoOverloads", "JustOneSignature", "JustTheOtherSignature", "Overloads", "Params1", "Params2", "Params3", "Returns1", "Returns2", "Returns3", "ok1", "ok2", "ok3", "ok4", "ok5", "ok6"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/multipleInferenceContexts.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ComponentOptionsProperties", "ConstructorOptions", "Data", "Instance", "Moon", "r2"] rebuilt : ScopeId(0): ["r2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(12): Some("Moon") rebuilt : ReferenceId(0): None @@ -9655,11 +11948,17 @@ tasks/coverage/typescript/tests/cases/compiler/mutrec.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "I1", "I2", "I3", "I4", "I5", "b", "f", "g", "i2", "i3", "i4"] rebuilt : ScopeId(0): ["b", "f", "g", "i2", "i3", "i4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/mutuallyRecursiveGenericBaseTypes1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "b"] rebuilt : ScopeId(0): ["b"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/mutuallyRecursiveGenericBaseTypes2.ts semantic error: Bindings mismatch: @@ -9700,6 +11999,9 @@ tasks/coverage/typescript/tests/cases/compiler/namespaces1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["X", "x", "x2"] rebuilt : ScopeId(0): ["x", "x2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/namespaces2.ts semantic error: Semantic Collector failed after transform @@ -9720,16 +12022,25 @@ tasks/coverage/typescript/tests/cases/compiler/namespacesWithTypeAliasOnlyExport semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "Q", "Q2", "Q3", "Q4", "try1", "try2", "try3", "try4"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/narrowByBooleanComparison.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "ACTOR_TYPE", "Actor", "B", "C", "Entity", "MyUnion", "WebError", "isA", "isActor", "isFunction", "test1", "test2", "test3", "test4", "test5", "test6", "test7"] rebuilt : ScopeId(0): ["ACTOR_TYPE", "WebError", "isA", "isActor", "isFunction", "test1", "test2", "test3", "test4", "test5", "test6", "test7"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(20), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(31), ScopeId(34), ScopeId(35)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(16), ScopeId(21), ScopeId(22), ScopeId(25), ScopeId(28), ScopeId(29)] tasks/coverage/typescript/tests/cases/compiler/narrowByClauseExpressionInSwitchTrue1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "AorB", "B", "SomeType", "isA", "isB", "processInput", "test1", "test2", "x"] rebuilt : ScopeId(0): ["isA", "isB", "processInput", "test1", "test2", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8)] tasks/coverage/typescript/tests/cases/compiler/narrowByClauseExpressionInSwitchTrue2.ts semantic error: Bindings mismatch: @@ -9790,31 +12101,49 @@ tasks/coverage/typescript/tests/cases/compiler/narrowByClauseExpressionInSwitchT semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "All", "B", "C", "D", "E", "fn1ifelse", "fn1switch", "fn2ifelse", "fn2switch", "fn3switch"] rebuilt : ScopeId(0): ["fn1ifelse", "fn1switch", "fn2ifelse", "fn2switch", "fn3switch"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(10), ScopeId(15), ScopeId(18), ScopeId(23)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(9), ScopeId(12), ScopeId(17)] tasks/coverage/typescript/tests/cases/compiler/narrowByClauseExpressionInSwitchTrue9.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "IProps"] rebuilt : ScopeId(0): ["Foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/narrowByInstanceof.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "AA", "B", "BB", "C", "Car", "Person", "PersonMixin", "bar", "cls", "foo", "test"] rebuilt : ScopeId(0): ["Car", "Person", "PersonMixin", "bar", "cls", "foo", "test"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(21), ScopeId(23)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(15), ScopeId(17)] tasks/coverage/typescript/tests/cases/compiler/narrowByParenthesizedSwitchExpression.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Base", "Foo", "getV", "v"] rebuilt : ScopeId(0): ["getV", "v"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/narrowBySwitchDiscriminantUndefinedCase1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "assertUnreachable", "func", "func2"] rebuilt : ScopeId(0): ["assertUnreachable", "func", "func2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] tasks/coverage/typescript/tests/cases/compiler/narrowTypeByInstanceof.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["FileMatch", "FileMatchOrMatch", "Match", "elementA", "elementB"] rebuilt : ScopeId(0): ["FileMatch", "Match", "elementA", "elementB"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6)] tasks/coverage/typescript/tests/cases/compiler/narrowedImports.ts semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. @@ -9828,6 +12157,9 @@ tasks/coverage/typescript/tests/cases/compiler/narrowingAssignmentReadonlyRespec semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiCaseFixture", "TestCase", "dataFunc", "subDataFunc", "testFunc"] rebuilt : ScopeId(0): ["dataFunc", "subDataFunc", "testFunc"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(4): ["T", "subFunc"] rebuilt : ScopeId(2): ["subFunc"] @@ -9836,11 +12168,17 @@ tasks/coverage/typescript/tests/cases/compiler/narrowingByDiscriminantInLoop.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "ConstantMemberType", "IDLMemberTypes", "IDLTypeDescription", "InterfaceType", "OperationMemberType", "f1", "f2", "foo", "insertInterface", "insertInterface2"] rebuilt : ScopeId(0): ["f1", "f2", "foo", "insertInterface", "insertInterface2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(11), ScopeId(15), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(24)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(6), ScopeId(10), ScopeId(13), ScopeId(17)] tasks/coverage/typescript/tests/cases/compiler/narrowingByTypeofInSwitch.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Basic", "L", "R", "a1", "assertAll", "assertBoolean", "assertBooleanOrObject", "assertFunction", "assertNever", "assertNumber", "assertObject", "assertObjectOrNull", "assertString", "assertStringOrNumber", "assertSymbol", "assertUndefined", "exhaustiveChecks", "exhaustiveChecksGenerics", "fallThroughTest", "fallThroughTestWithTempalte", "keyofNarrowing", "keyofNarrowingWithTemplate", "multipleGeneric", "multipleGenericExhaustive", "multipleGenericFuse", "multipleGenericFuseWithBoth", "narrowingNarrows", "narrowingNarrows2", "switchOrdering", "switchOrderingWithDefault", "testAny", "testExtendsExplicitDefault", "testExtendsImplicitDefault", "testExtendsUnion", "testUnion", "testUnionExplicitDefault", "testUnionImplicitDefault", "testUnionWithTempalte", "unknownNarrowing"] rebuilt : ScopeId(0): ["a1", "assertAll", "assertBoolean", "assertBooleanOrObject", "assertFunction", "assertNever", "assertNumber", "assertObject", "assertObjectOrNull", "assertString", "assertStringOrNumber", "assertSymbol", "assertUndefined", "exhaustiveChecks", "exhaustiveChecksGenerics", "fallThroughTest", "fallThroughTestWithTempalte", "keyofNarrowing", "keyofNarrowingWithTemplate", "multipleGeneric", "multipleGenericExhaustive", "multipleGenericFuse", "multipleGenericFuseWithBoth", "narrowingNarrows", "narrowingNarrows2", "switchOrdering", "switchOrderingWithDefault", "testAny", "testExtendsExplicitDefault", "testExtendsImplicitDefault", "testExtendsUnion", "testUnion", "testUnionExplicitDefault", "testUnionImplicitDefault", "testUnionWithTempalte", "unknownNarrowing"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(21), ScopeId(23), ScopeId(25), ScopeId(27), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(33), ScopeId(35), ScopeId(37), ScopeId(39), ScopeId(41), ScopeId(43), ScopeId(46), ScopeId(48), ScopeId(50), ScopeId(54), ScopeId(56), ScopeId(58), ScopeId(60), ScopeId(62), ScopeId(66)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(28), ScopeId(30), ScopeId(32), ScopeId(34), ScopeId(36), ScopeId(38), ScopeId(40), ScopeId(43), ScopeId(45), ScopeId(47), ScopeId(50), ScopeId(52), ScopeId(54), ScopeId(56), ScopeId(58), ScopeId(61)] Bindings mismatch: after transform: ScopeId(16): ["T", "x"] rebuilt : ScopeId(15): ["x"] @@ -9865,9 +12203,15 @@ rebuilt : ScopeId(36): ["xy"] Bindings mismatch: after transform: ScopeId(50): ["S", "assertKeyofS", "k"] rebuilt : ScopeId(47): ["assertKeyofS", "k"] +Scope children mismatch: +after transform: ScopeId(50): [ScopeId(51), ScopeId(52), ScopeId(53)] +rebuilt : ScopeId(47): [ScopeId(48), ScopeId(49)] Bindings mismatch: after transform: ScopeId(62): ["S", "assertKeyofS", "k"] rebuilt : ScopeId(58): ["assertKeyofS", "k"] +Scope children mismatch: +after transform: ScopeId(62): [ScopeId(63), ScopeId(64), ScopeId(65)] +rebuilt : ScopeId(58): [ScopeId(59), ScopeId(60)] Bindings mismatch: after transform: ScopeId(66): ["X", "Y", "xy"] rebuilt : ScopeId(61): ["xy"] @@ -9876,6 +12220,9 @@ tasks/coverage/typescript/tests/cases/compiler/narrowingConstrainedTypeParameter semantic error: Bindings mismatch: after transform: ScopeId(0): ["Pet", "isPet", "speak"] rebuilt : ScopeId(0): ["isPet", "speak"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(3): ["TPet", "pet", "voice"] rebuilt : ScopeId(2): ["pet", "voice"] @@ -9884,6 +12231,9 @@ tasks/coverage/typescript/tests/cases/compiler/narrowingDestructuring.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["X", "Z", "farr", "func", "func2", "func3"] rebuilt : ScopeId(0): ["farr", "func", "func2", "func3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(6), ScopeId(9), ScopeId(12)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(10)] Bindings mismatch: after transform: ScopeId(2): ["T", "value"] rebuilt : ScopeId(1): ["value"] @@ -9901,11 +12251,17 @@ tasks/coverage/typescript/tests/cases/compiler/narrowingIntersection.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Disjoint", "FooAndBaz", "TrivialIntersection", "test1", "test2", "want0"] rebuilt : ScopeId(0): ["test1", "test2", "want0"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/compiler/narrowingNoInfer1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["TaggedA", "TaggedB", "TaggedUnion", "m", "map", "something"] rebuilt : ScopeId(0): ["m", "map", "something"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(4): ["A", "B", "f", "items"] rebuilt : ScopeId(1): ["f", "items"] @@ -9914,6 +12270,9 @@ tasks/coverage/typescript/tests/cases/compiler/narrowingRestGenericCall.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Slugs", "call", "obj"] rebuilt : ScopeId(0): ["call"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(2): ["T", "cb", "obj"] rebuilt : ScopeId(1): ["cb", "obj"] @@ -9925,11 +12284,17 @@ tasks/coverage/typescript/tests/cases/compiler/narrowingTypeofDiscriminant.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["WrappedStringOr", "booleanBad", "booleanFixed", "f1", "f2", "numberOk"] rebuilt : ScopeId(0): ["booleanBad", "booleanFixed", "f1", "f2", "numberOk"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(8), ScopeId(10), ScopeId(12)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(9), ScopeId(11)] tasks/coverage/typescript/tests/cases/compiler/narrowingTypeofFunction.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["F", "Meta", "f1", "f2", "f3"] rebuilt : ScopeId(0): ["f1", "f2", "f3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7)] Bindings mismatch: after transform: ScopeId(6): ["T", "x"] rebuilt : ScopeId(4): ["x"] @@ -9938,6 +12303,9 @@ tasks/coverage/typescript/tests/cases/compiler/narrowingTypeofObject.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["F", "f1", "test"] rebuilt : ScopeId(0): ["f1", "test"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/narrowingTypeofUndefined1.ts semantic error: Bindings mismatch: @@ -9963,7 +12331,10 @@ after transform: ReferenceId(5): Some("a") rebuilt : ReferenceId(5): None tasks/coverage/typescript/tests/cases/compiler/narrowingTypeofUndefined2.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Bindings mismatch: after transform: ScopeId(2): ["T", "arg"] rebuilt : ScopeId(1): ["arg"] @@ -9971,11 +12342,17 @@ tasks/coverage/typescript/tests/cases/compiler/narrowingUnionWithBang.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["BorkedType", "FixedType", "WorkingType", "borked", "fixed", "working"] rebuilt : ScopeId(0): ["borked", "fixed", "working"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] tasks/coverage/typescript/tests/cases/compiler/nearbyIdenticalGenericLambdasAssignable.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T", "TA", "TB", "TC", "TL", "fA", "fB", "fC"] rebuilt : ScopeId(0): ["fB", "fC"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] @@ -9999,9 +12376,15 @@ tasks/coverage/typescript/tests/cases/compiler/nestedGenericConditionalTypeWithG semantic error: Bindings mismatch: after transform: ScopeId(0): ["Name"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/nestedGenericSpreadInference.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] +Bindings mismatch: after transform: ScopeId(3): ["T", "x"] rebuilt : ScopeId(1): ["x"] @@ -10009,16 +12392,25 @@ tasks/coverage/typescript/tests/cases/compiler/nestedGenerics.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "f"] rebuilt : ScopeId(0): ["f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/nestedHomomorphicMappedTypesWithArrayConstraint1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["MatchArguments", "SinonSpyCallApi"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/nestedInfinitelyExpandedRecursiveTypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["F", "G", "f", "g"] rebuilt : ScopeId(0): ["f", "g"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/nestedLoopWithOnlyInnerLetCaptured.ts semantic error: Bindings mismatch: @@ -10052,11 +12444,22 @@ tasks/coverage/typescript/tests/cases/compiler/nestedThisContainer.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "foo"] rebuilt : ScopeId(0): ["foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/typescript/tests/cases/compiler/nestedTypeVariableInfersLiteral.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/neverAsDiscriminantType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo1", "Foo2", "GatewayEvents", "GatewayOpcode", "GatewayParams", "GatewayPayload", "GatewayPayloadStructure", "adaptSession", "assertMessage", "f1", "f2"] rebuilt : ScopeId(0): ["GatewayOpcode", "adaptSession", "assertMessage", "f1", "f2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7)] Bindings mismatch: after transform: ScopeId(14): ["DISPATCH", "GatewayOpcode", "HEARTBEAT", "HEARTBEAT_ACK", "HELLO", "IDENTIFY", "INVALID_SESSION", "PRESENCE_UPDATE", "RECONNECT", "REQUEST_GUILD_MEMBERS", "RESUME", "VOICE_STATE_UPDATE"] rebuilt : ScopeId(5): ["GatewayOpcode"] @@ -10075,16 +12478,25 @@ tasks/coverage/typescript/tests/cases/compiler/newExpressionWithTypeParameterCon semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "i", "y"] rebuilt : ScopeId(0): ["i", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/newLineInTypeofInstantiation.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Example"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/noAsConstNameLookup.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "Cleaner", "FeatureRunner", "Store"] rebuilt : ScopeId(0): ["C", "FeatureRunner"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(5)] Bindings mismatch: after transform: ScopeId(3): ["W"] rebuilt : ScopeId(1): [] @@ -10097,10 +12509,33 @@ semantic error: Bindings mismatch: after transform: ScopeId(0): ["C"] rebuilt : ScopeId(0): [] +tasks/coverage/typescript/tests/cases/compiler/noCircularDefinitionOnExportOfPrivateInMergedNamespace.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/noCollisionThisExpressionAndLocalVarInFunction.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/noCollisionThisExpressionAndLocalVarInLambda.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] + +tasks/coverage/typescript/tests/cases/compiler/noCollisionThisExpressionInFunctionAndVarInGlobal.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/noCrashOnThisTypeUsage.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IListenable", "ObservableValue", "notifyListeners"] rebuilt : ScopeId(0): ["ObservableValue", "notifyListeners"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(3): ["T", "change", "listenable"] rebuilt : ScopeId(1): ["change", "listenable"] @@ -10112,6 +12547,9 @@ tasks/coverage/typescript/tests/cases/compiler/noCrashUMDMergedWithGlobalValue.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["SomeInterface", "value"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/noEmitHelpers2.ts semantic error: Bindings mismatch: @@ -10132,15 +12570,26 @@ Bindings mismatch: after transform: ScopeId(2): ["T", "f", "x"] rebuilt : ScopeId(2): ["f", "x"] +tasks/coverage/typescript/tests/cases/compiler/noImplicitReturnsWithProtectedBlocks1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/noIterationTypeErrorsInCFA.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["F", "doRemove"] rebuilt : ScopeId(0): ["doRemove"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/noSubtypeReduction.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["F", "IA", "IAB"] rebuilt : ScopeId(0): ["F"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/noUncheckedIndexAccess.ts semantic error: Bindings mismatch: @@ -10166,6 +12615,9 @@ tasks/coverage/typescript/tests/cases/compiler/noUsedBeforeDefinedErrorInTypeCon semantic error: Bindings mismatch: after transform: ScopeId(0): ["IThing", "bar", "baz", "foo", "qwe"] rebuilt : ScopeId(0): ["bar", "baz", "foo", "qwe"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/nodeResolution1.ts semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. @@ -10203,11 +12655,17 @@ tasks/coverage/typescript/tests/cases/compiler/nonConflictingRecursiveBaseTypeMe semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/nonContextuallyTypedLogicalOr.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Contextual", "Ellement", "c", "e"] rebuilt : ScopeId(0): ["c", "e"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/nonGenericClassExtendingGenericClassWithAny.ts semantic error: Bindings mismatch: @@ -10218,6 +12676,9 @@ tasks/coverage/typescript/tests/cases/compiler/nonInferrableTypePropagation1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Box", "Op", "Thing", "result1", "result2", "thing"] rebuilt : ScopeId(0): ["result1", "result2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] Reference mismatch: after transform: ReferenceId(34): Some("thing") rebuilt : ReferenceId(1): None @@ -10229,6 +12690,9 @@ tasks/coverage/typescript/tests/cases/compiler/nonInferrableTypePropagation2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "Either", "Left", "Predicate", "Refinement", "Right", "es", "filter", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(42): Some("es") rebuilt : ReferenceId(1): None @@ -10240,14 +12704,23 @@ tasks/coverage/typescript/tests/cases/compiler/nonInferrableTypePropagation3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Callback", "make", "usersOverAge"] rebuilt : ScopeId(0): ["make", "usersOverAge"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/nonNullMappedType.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["A", "p0", "p1", "v"] rebuilt : ScopeId(1): ["p0", "p1", "v"] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/compiler/nonNullParameterExtendingStringAssignableToString.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Bindings mismatch: after transform: ScopeId(2): ["T", "U", "one", "three", "two"] rebuilt : ScopeId(1): ["one", "three", "two"] @@ -10255,22 +12728,34 @@ tasks/coverage/typescript/tests/cases/compiler/nonNullReferenceMatching.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Component", "ComponentProps", "ElementRef", "ThumbProps"] rebuilt : ScopeId(0): ["Component"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/nonNullableAndObjectIntersections.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["NonNullableNew", "NonNullableOld", "T0", "T1", "T2", "T3", "T4", "T6", "TestNew", "TestOld"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/nonNullableReduction.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Transform1", "Transform2", "f1", "f2", "test"] rebuilt : ScopeId(0): ["f1", "f2", "test"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(5): ["T", "f1", "f2"] rebuilt : ScopeId(1): ["f1", "f2"] Bindings mismatch: after transform: ScopeId(6): ["T", "x", "z"] rebuilt : ScopeId(2): ["x", "z"] +Scope children mismatch: +after transform: ScopeId(6): [ScopeId(7)] +rebuilt : ScopeId(2): [] Bindings mismatch: after transform: ScopeId(8): ["T", "U", "x", "z"] rebuilt : ScopeId(3): ["x", "z"] @@ -10279,12 +12764,18 @@ tasks/coverage/typescript/tests/cases/compiler/nonNullableReductionNonStrict.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Transform1", "Transform2", "f1", "f2", "test"] rebuilt : ScopeId(0): ["f1", "f2", "test"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(5): ["T", "f1", "f2"] rebuilt : ScopeId(1): ["f1", "f2"] Bindings mismatch: after transform: ScopeId(6): ["T", "x", "z"] rebuilt : ScopeId(2): ["x", "z"] +Scope children mismatch: +after transform: ScopeId(6): [ScopeId(7)] +rebuilt : ScopeId(2): [] Bindings mismatch: after transform: ScopeId(8): ["T", "U", "x", "z"] rebuilt : ScopeId(3): ["x", "z"] @@ -10293,21 +12784,33 @@ tasks/coverage/typescript/tests/cases/compiler/nonNullableWithNullableGenericInd semantic error: Bindings mismatch: after transform: ScopeId(0): ["Ordering", "Query", "QueryHandler", "StateNodesConfig", "StateSchema"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/nondistributiveConditionalTypeInfer.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "E", "R", "Sync", "_A", "_E", "_R"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/nongenericConditionalNotPartiallyComputed.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/nongenericPartialInstantiationsRelatedInBothDirections.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "ObjectContaining", "cafoo", "cfoo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(7): Some("cfoo") rebuilt : ReferenceId(0): None @@ -10325,6 +12828,9 @@ tasks/coverage/typescript/tests/cases/compiler/nounusedTypeParameterConstraint.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["IEventSourcedEntity"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/numberAssignableToEnumInsideUnion.ts semantic error: Bindings mismatch: @@ -10338,6 +12844,14 @@ tasks/coverage/typescript/tests/cases/compiler/objectAssignLikeNonUnionResult.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Explode", "ExtractRawComponent", "Interface", "data1", "defaultValue", "e1", "t1"] rebuilt : ScopeId(0): ["data1", "defaultValue"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(8)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/objectBindingPatternContextuallyTypesArgument.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/objectCreate.ts semantic error: Bindings mismatch: @@ -10365,11 +12879,17 @@ tasks/coverage/typescript/tests/cases/compiler/objectIndexer.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Callback", "Emitter", "IMap"] rebuilt : ScopeId(0): ["Emitter"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/objectInstantiationFromUnionSpread.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Fail", "Item", "Success", "f1", "f2"] rebuilt : ScopeId(0): ["f1", "f2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] Bindings mismatch: after transform: ScopeId(7): ["T", "a"] rebuilt : ScopeId(4): ["a"] @@ -10378,11 +12898,17 @@ tasks/coverage/typescript/tests/cases/compiler/objectLiteralArraySpecialization. semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyArrayWrapper", "thing"] rebuilt : ScopeId(0): ["thing"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/objectLiteralEnumPropertyNames.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Nums", "Strs", "TestNums", "TestStrs", "a", "an", "b", "bn", "m", "n", "um", "un", "ux", "uz", "x", "y", "z"] rebuilt : ScopeId(0): ["Nums", "Strs", "a", "an", "b", "bn", "m", "n", "um", "un", "ux", "uz", "x", "y", "z"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["A", "B", "Strs"] rebuilt : ScopeId(1): ["Strs"] @@ -10400,21 +12926,33 @@ tasks/coverage/typescript/tests/cases/compiler/objectLiteralIndexerNoImplicitAny semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/objectLiteralIndexers.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "a", "b", "c", "o1"] rebuilt : ScopeId(0): ["a", "b", "c", "o1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/objectMembersOnTypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AAA", "I", "c", "i", "x"] rebuilt : ScopeId(0): ["AAA", "c", "i", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/objectRestBindingContextualInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ImageHolder", "SetupImageRefs", "SetupImages", "TestInterface", "prepare", "rest", "test"] rebuilt : ScopeId(0): ["prepare", "rest"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(14): Some("test") rebuilt : ReferenceId(1): None @@ -10423,16 +12961,25 @@ tasks/coverage/typescript/tests/cases/compiler/observableInferenceCanBeMade.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ObservableInput", "ObservedValueOf", "Subscribable", "asObservable"] rebuilt : ScopeId(0): ["asObservable"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/optionalAccessorsInInterface1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyPropertyDescriptor", "MyPropertyDescriptor2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/optionalChainWithInstantiationExpression2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "a", "b"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(2): Some("a") rebuilt : ReferenceId(0): None @@ -10444,6 +12991,9 @@ tasks/coverage/typescript/tests/cases/compiler/optionalParameterRetainsNull.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "a"] rebuilt : ScopeId(0): ["a"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(2): ["K", "a", "b"] rebuilt : ScopeId(1): ["a", "b"] @@ -10452,9 +13002,15 @@ tasks/coverage/typescript/tests/cases/compiler/optionalTupleElementsAndUndefined semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "Test", "UnNullify", "v"] rebuilt : ScopeId(0): ["v"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/overload2.ts -semantic error: Scope flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(0x0) rebuilt : ScopeId(1): ScopeFlags(Function) Scope flags mismatch: @@ -10465,27 +13021,47 @@ tasks/coverage/typescript/tests/cases/compiler/overloadBindingAcrossDeclarationB semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "Opt1", "Opt2", "Opt3", "Opt4", "a", "a1"] rebuilt : ScopeId(0): ["a", "a1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(10)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/overloadBindingAcrossDeclarationBoundaries2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "Opt1", "Opt2", "Opt3", "Opt4"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/overloadCallTest.ts +semantic error: Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(2): [ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/overloadCrash.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1", "I2", "I3", "i3"] rebuilt : ScopeId(0): ["i3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/overloadEquivalenceWithStatics.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] Bindings mismatch: after transform: ScopeId(4): ["S", "v"] rebuilt : ScopeId(2): ["v"] tasks/coverage/typescript/tests/cases/compiler/overloadGenericFunctionWithRestArgs.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +Bindings mismatch: after transform: ScopeId(1): ["V"] rebuilt : ScopeId(1): [] Bindings mismatch: @@ -10499,39 +13075,104 @@ tasks/coverage/typescript/tests/cases/compiler/overloadOnConstConstraintChecks1. semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "D", "Derived1", "Derived2", "Derived3", "MyDoc"] rebuilt : ScopeId(0): ["Base", "D", "Derived1", "Derived2", "Derived3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(14)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9)] +Scope children mismatch: +after transform: ScopeId(14): [ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19)] +rebuilt : ScopeId(9): [ScopeId(10)] + +tasks/coverage/typescript/tests/cases/compiler/overloadOnConstConstraintChecks2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5)] + +tasks/coverage/typescript/tests/cases/compiler/overloadOnConstConstraintChecks3.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5)] + +tasks/coverage/typescript/tests/cases/compiler/overloadOnConstConstraintChecks4.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6)] + +tasks/coverage/typescript/tests/cases/compiler/overloadOnConstDuplicateOverloads1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/overloadOnConstInBaseWithBadImplementationInDerived.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I"] rebuilt : ScopeId(0): ["C"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/overloadOnConstInCallback1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/overloadOnConstInObjectLiteralImplementingAnInterface.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "i2"] rebuilt : ScopeId(0): ["i2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/overloadOnConstInheritance1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "Deriver"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/overloadOnConstInheritance3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "Deriver"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/overloadOnConstInheritance4.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I"] rebuilt : ScopeId(0): ["C"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] +Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/typescript/tests/cases/compiler/overloadOnConstNoNonSpecializedSignature.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/typescript/tests/cases/compiler/overloadOnConstNoStringImplementation.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/compiler/overloadOnGenericArity.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Test"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/overloadOnGenericClassAndNonGenericClass.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +Bindings mismatch: after transform: ScopeId(4): ["T"] rebuilt : ScopeId(4): [] @@ -10553,32 +13194,70 @@ tasks/coverage/typescript/tests/cases/compiler/overloadRet.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/overloadReturnTypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Accessor", "IFace", "attr"] rebuilt : ScopeId(0): ["Accessor", "attr"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/typescript/tests/cases/compiler/overloadWithCallbacksWithDifferingOptionalityOnArgs.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/overloadedConstructorFixesInferencesAppropriately.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AsyncLoader", "AsyncLoaderProps", "Box", "ErrorResult", "load"] rebuilt : ScopeId(0): ["AsyncLoader", "load"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] Bindings mismatch: after transform: ScopeId(4): ["TResult"] rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(1): [ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/overloadedStaticMethodSpecialization.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] Bindings mismatch: after transform: ScopeId(4): ["S", "v"] rebuilt : ScopeId(2): ["v"] +tasks/coverage/typescript/tests/cases/compiler/overloadingOnConstantsInImplementation.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/overloadsAndTypeArgumentArity.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/overloadsWithConstraints.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/overrideBaseIntersectionMethod.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Constructor", "Foo", "Point", "WithLocation"] rebuilt : ScopeId(0): ["Foo", "Point", "WithLocation"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7)] Bindings mismatch: after transform: ScopeId(2): ["Base", "T"] rebuilt : ScopeId(1): ["Base"] @@ -10587,6 +13266,9 @@ tasks/coverage/typescript/tests/cases/compiler/parameterReferenceInInitializer1. semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "Y", "fn"] rebuilt : ScopeId(0): ["C", "fn"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["a", "set", "y"] rebuilt : ScopeId(1): ["set", "y"] @@ -10608,6 +13290,9 @@ tasks/coverage/typescript/tests/cases/compiler/parseGenericArrowRatherThanLeftSh semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "T", "a", "b", "foo"] rebuilt : ScopeId(0): ["b", "foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(2): ["T", "_x"] rebuilt : ScopeId(1): ["_x"] @@ -10624,11 +13309,17 @@ tasks/coverage/typescript/tests/cases/compiler/parseShortform.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/partialOfLargeAPIIsAbleToBeWorkedWith.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyAPI", "PartialNull", "keys", "obj", "obj2"] rebuilt : ScopeId(0): ["obj", "obj2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] Reference mismatch: after transform: ReferenceId(3): Some("keys") rebuilt : ReferenceId(0): None @@ -10640,11 +13331,77 @@ tasks/coverage/typescript/tests/cases/compiler/partialTypeNarrowedToByTypeGuard. semantic error: Bindings mismatch: after transform: ScopeId(0): ["Obj", "PartialUser", "User", "getUserName", "isUser"] rebuilt : ScopeId(0): ["getUserName", "isUser"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/typescript/tests/cases/compiler/partiallyAmbientClodule.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/partiallyAmbientFundule.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/partiallyDiscriminantedUnions.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A1", "A2", "AB", "B", "Circle", "Shape", "Shapes", "Square", "ab", "fail", "isShape"] rebuilt : ScopeId(0): ["Circle", "Square", "ab", "fail", "isShape"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] + +tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution3_classic.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution3_node.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution4_classic.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution4_node.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution5_classic.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution5_node.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution6_classic.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution6_node.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution7_classic.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution7_node.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution8_classic.ts semantic error: Bindings mismatch: @@ -10720,6 +13477,9 @@ tasks/coverage/typescript/tests/cases/compiler/performanceComparisonOfStructural semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "InterfaceA", "InterfaceB", "ThenArg"] rebuilt : ScopeId(0): ["A", "B"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(18), ScopeId(31), ScopeId(45)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(15)] Bindings mismatch: after transform: ScopeId(31): ["T"] rebuilt : ScopeId(1): [] @@ -10775,6 +13535,9 @@ tasks/coverage/typescript/tests/cases/compiler/prespecializedGenericMembers1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Cat", "CatBag", "IKitty", "cat", "catBag", "catThing"] rebuilt : ScopeId(0): ["Cat", "CatBag", "cat", "catBag", "catThing"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Bindings mismatch: after transform: ScopeId(2): ["CatType"] rebuilt : ScopeId(1): [] @@ -10783,6 +13546,9 @@ tasks/coverage/typescript/tests/cases/compiler/primitiveTypeAsmoduleName.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["string"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/privacyClass.ts semantic error: Semantic Collector failed after transform @@ -10988,6 +13754,9 @@ tasks/coverage/typescript/tests/cases/compiler/privacyTypeParameterOfFunction.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["privateClass", "privateClassWithWithPrivateTypeParameters", "privateClassWithWithPublicTypeParameters", "privateClassWithWithPublicTypeParametersWithoutExtends", "privateFunctionWithPrivateTypeParameters", "privateFunctionWithPublicTypeParameters", "privateFunctionWithPublicTypeParametersWithoutExtends", "privateInterfaceWithPrivateTypeParameters", "privateInterfaceWithPublicTypeParameters", "privateInterfaceWithPublicTypeParametersWithoutExtends", "publicClass", "publicClassWithWithPrivateTypeParameters", "publicClassWithWithPublicTypeParameters", "publicClassWithWithPublicTypeParametersWithoutExtends", "publicFunctionWithPrivateTypeParameters", "publicFunctionWithPublicTypeParameters", "publicFunctionWithPublicTypeParametersWithoutExtends", "publicInterfaceWithPrivateTypeParameters", "publicInterfaceWithPublicTypeParameters", "publicInterfaceWithPublicTypeParametersWithoutExtends"] rebuilt : ScopeId(0): ["privateClass", "privateClassWithWithPrivateTypeParameters", "privateClassWithWithPublicTypeParameters", "privateClassWithWithPublicTypeParametersWithoutExtends", "privateFunctionWithPrivateTypeParameters", "privateFunctionWithPublicTypeParameters", "privateFunctionWithPublicTypeParametersWithoutExtends", "publicClass", "publicClassWithWithPrivateTypeParameters", "publicClassWithWithPublicTypeParameters", "publicClassWithWithPublicTypeParametersWithoutExtends", "publicFunctionWithPrivateTypeParameters", "publicFunctionWithPublicTypeParameters", "publicFunctionWithPublicTypeParametersWithoutExtends"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(9), ScopeId(12), ScopeId(15), ScopeId(20), ScopeId(25), ScopeId(30), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(42), ScopeId(45), ScopeId(50), ScopeId(55), ScopeId(56)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(8), ScopeId(13), ScopeId(18), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(32), ScopeId(37), ScopeId(38)] Bindings mismatch: after transform: ScopeId(16): ["T"] rebuilt : ScopeId(4): [] @@ -11103,6 +13872,9 @@ tasks/coverage/typescript/tests/cases/compiler/privacyTypeParametersOfInterface. semantic error: Bindings mismatch: after transform: ScopeId(0): ["privateClass", "privateClassT", "privateInterfaceWithPrivateTypeParameters", "privateInterfaceWithPublicTypeParameters", "privateInterfaceWithPublicTypeParametersWithoutExtends", "publicClass", "publicClassT", "publicInterfaceWithPrivateTypeParameters", "publicInterfaceWithPublicTypeParameters", "publicInterfaceWithPublicTypeParametersWithoutExtends"] rebuilt : ScopeId(0): ["privateClass", "privateClassT", "publicClass", "publicClassT"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(12), ScopeId(19), ScopeId(26), ScopeId(33), ScopeId(36)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(3): [] @@ -11137,11 +13909,17 @@ tasks/coverage/typescript/tests/cases/compiler/privatePropertyInUnion.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ISyncableObject", "SyncableObject", "SyncableRef", "Type", "__ValueDescriptorType"] rebuilt : ScopeId(0): ["SyncableObject"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/privatePropertyUsingObjectType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["FilterManager", "IFilterProvider"] rebuilt : ScopeId(0): ["FilterManager"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/promiseChaining.ts semantic error: Bindings mismatch: @@ -11160,6 +13938,9 @@ tasks/coverage/typescript/tests/cases/compiler/promiseTest.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Promise", "p", "p2", "x"] rebuilt : ScopeId(0): ["p", "p2", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/promiseType.ts semantic error: Bindings mismatch: @@ -11629,6 +14410,9 @@ tasks/coverage/typescript/tests/cases/compiler/promiseTypeInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["$$x", "IPromise"] rebuilt : ScopeId(0): ["$$x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/promiseTypeStrictNull.ts semantic error: Bindings mismatch: @@ -12098,26 +14882,46 @@ tasks/coverage/typescript/tests/cases/compiler/promiseVoidErrorCallback.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T1", "T2", "T3", "f1", "f2", "x3"] rebuilt : ScopeId(0): ["f1", "f2", "x3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/compiler/promiseWithResolvers.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T", "promise", "reject", "resolve"] rebuilt : ScopeId(0): ["promise", "reject", "resolve"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/promises.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Promise"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/propTypeValidatorInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ExtractPropsMatch", "ExtractedProps", "ExtractedPropsWithoutAnnotation", "PropTypes", "PropTypesMap", "Props", "arrayOfTypes", "innerProps", "propTypes", "propTypesWithoutAnnotation", "x"] rebuilt : ScopeId(0): ["PropTypes", "arrayOfTypes", "innerProps", "propTypes", "propTypesWithoutAnnotation", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/propagateNonInferrableType.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/propagationOfPromiseInitialization.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IPromise", "foo"] rebuilt : ScopeId(0): ["foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/propertyNamesWithStringLiteral.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -12131,6 +14935,9 @@ tasks/coverage/typescript/tests/cases/compiler/prototypeOnConstructorFunctions.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1", "i"] rebuilt : ScopeId(0): ["i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/qualifiedName_ImportDeclarations-entity-names-referencing-a-var.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -12139,11 +14946,27 @@ tasks/coverage/typescript/tests/cases/compiler/ramdaToolsNoInfinite.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Curry", "R", "Tools"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(29), ScopeId(31)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/ramdaToolsNoInfinite2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Any/Cast", "Any/Compute", "Any/Extends", "Any/Implements", "Any/Key", "Any/Kind", "Any/Type", "Any/_Internal", "Any/x", "Boolean/Boolean", "Boolean/Not", "Function/Curry", "Function/Function", "Function/Parameters", "Function/Return", "Iteration/Format", "Iteration/Iteration", "Iteration/IterationOf", "Iteration/Key", "Iteration/Next", "Iteration/Pos", "Iteration/Prev", "Iteration/_Internal", "List/Append", "List/Concat", "List/Drop", "List/Keys", "List/Length", "List/List", "List/NonNullable", "List/ObjectOf", "List/Prepend", "List/Reverse", "List/Tail", "List/_Internal", "Number/Number", "Number/NumberOf", "Number/_Internal", "Object/At", "Object/Keys", "Object/ListOf", "Object/Merge", "Object/NonNullable", "Object/Omit", "Object/Overwrite", "Object/Pick", "Object/_Internal", "Union/Exclude", "Union/Has", "Union/Keys", "Union/NonNullable", "Union/Union"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(9), ScopeId(13), ScopeId(19), ScopeId(21), ScopeId(25), ScopeId(31), ScopeId(35), ScopeId(37), ScopeId(39), ScopeId(41), ScopeId(44), ScopeId(48), ScopeId(51), ScopeId(53), ScopeId(56), ScopeId(62), ScopeId(64), ScopeId(71), ScopeId(73), ScopeId(81), ScopeId(88), ScopeId(92), ScopeId(98), ScopeId(100), ScopeId(103), ScopeId(106), ScopeId(108), ScopeId(111), ScopeId(113), ScopeId(115), ScopeId(120), ScopeId(127), ScopeId(132), ScopeId(141), ScopeId(143), ScopeId(145), ScopeId(148), ScopeId(151), ScopeId(154), ScopeId(156), ScopeId(162), ScopeId(167), ScopeId(171), ScopeId(173), ScopeId(175), ScopeId(177), ScopeId(180), ScopeId(182), ScopeId(184), ScopeId(186), ScopeId(190)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/reExportUndefined2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/reachabilityCheckWithEmptyDefault.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/reactHOCSpreadprops.tsx semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. @@ -12250,6 +15073,9 @@ tasks/coverage/typescript/tests/cases/compiler/recursiveArrayNotCircular.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Action", "ActionType", "ReducerAction", "assertNever", "reducer"] rebuilt : ScopeId(0): ["ActionType", "assertNever", "reducer"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(3): ["ActionType", "Bar", "Batch", "Baz", "Foo"] rebuilt : ScopeId(1): ["ActionType"] @@ -12257,6 +15083,11 @@ Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(0x0) rebuilt : ScopeId(1): ScopeFlags(Function) +tasks/coverage/typescript/tests/cases/compiler/recursiveBaseConstructorCreation2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/recursiveClassInstantiationsWithDefaultConstructors.ts semantic error: Semantic Collector failed after transform Missing SymbolId: TypeScript2 @@ -12275,21 +15106,33 @@ tasks/coverage/typescript/tests/cases/compiler/recursiveConditionalCrash1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C1", "C2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/recursiveConditionalCrash2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["CanBeExpanded", "Expand__", "UseQueryOptions"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/recursiveConditionalCrash3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AllKeys", "Base", "CanBeExpanded", "Expand", "ExpandResult", "Expand_", "Expand__", "Join", "KeysCanBeExpanded", "KeysCanBeExpanded_", "PrefixWith", "Role", "SplitAC", "SplitWithAllPossibleCombinations", "UseQueryOptions", "UseQueryOptions2", "UseQueryOptions3", "UseQueryOptions4", "User", "X", "t", "y1", "y2"] rebuilt : ScopeId(0): ["t", "y1", "y2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(10), ScopeId(12), ScopeId(16), ScopeId(24), ScopeId(25), ScopeId(33), ScopeId(36), ScopeId(37), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(44), ScopeId(46)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/recursiveConditionalEvaluationNonInfinite.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Test", "a", "b", "x", "y"] rebuilt : ScopeId(0): ["b", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(5): Some("x") rebuilt : ReferenceId(0): None @@ -12301,11 +15144,17 @@ tasks/coverage/typescript/tests/cases/compiler/recursiveConditionalTypes2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ClassSpec", "Converted", "DefaultsDeep", "MaybeMergePrivateSpecs", "MaybeMergePrivateSuperSpec", "MergePrivateSpecs", "MergePrivateSuperSpec", "SimplifyPrivateSpec", "UnionToIntersection", "_Array", "z"] rebuilt : ScopeId(0): ["z"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(12), ScopeId(13), ScopeId(16), ScopeId(20), ScopeId(22)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/recursiveExcessPropertyChecks.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ITreeItem", "NodeWithId", "getMaxId", "nodes"] rebuilt : ScopeId(0): ["getMaxId", "nodes"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/recursiveExportAssignmentAndFindAliasedType7.ts semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. @@ -12317,6 +15166,9 @@ tasks/coverage/typescript/tests/cases/compiler/recursiveGenericMethodCall.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Generate", "Generator"] rebuilt : ScopeId(0): ["Generate"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(2): ["T", "func"] rebuilt : ScopeId(1): ["func"] @@ -12330,21 +15182,33 @@ tasks/coverage/typescript/tests/cases/compiler/recursiveGenericTypeHierarchy.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/recursiveGenericUnionType1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Test1", "Test2", "s1", "s2", "x"] rebuilt : ScopeId(0): ["s1", "s2", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/recursiveGenericUnionType2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Test1", "Test2", "s1", "s2", "x"] rebuilt : ScopeId(0): ["s1", "s2", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/recursiveIdenticalAssignment.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "a", "b"] rebuilt : ScopeId(0): ["a", "b"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/recursiveIdenticalOverloadResolution.ts semantic error: Semantic Collector failed after transform @@ -12357,6 +15221,9 @@ tasks/coverage/typescript/tests/cases/compiler/recursiveInheritance2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "a", "b", "c", "x", "y", "z"] rebuilt : ScopeId(0): ["x", "y", "z"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(2): Some("a") rebuilt : ReferenceId(0): None @@ -12383,11 +15250,17 @@ tasks/coverage/typescript/tests/cases/compiler/recursiveResolveDeclaredMembers.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["D", "F"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/recursiveReverseMappedType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Recur", "a", "join"] rebuilt : ScopeId(0): ["a", "join"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(4): ["T", "l"] rebuilt : ScopeId(1): ["l"] @@ -12399,6 +15272,9 @@ tasks/coverage/typescript/tests/cases/compiler/recursiveSpecializationOfExtended semantic error: Bindings mismatch: after transform: ScopeId(0): ["HTMLSelectElement"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/recursiveSpecializationOfSignatures.ts semantic error: Bindings mismatch: @@ -12409,16 +15285,25 @@ tasks/coverage/typescript/tests/cases/compiler/recursiveTupleTypes1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Tree1", "Tree2", "tree1", "tree2"] rebuilt : ScopeId(0): ["tree1", "tree2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/recursiveTupleTypes2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Tree1", "Tree2", "tree1", "tree2"] rebuilt : ScopeId(0): ["tree1", "tree2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/recursiveTypeAliasWithSpreadConditionalReturnNotCircular.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Option", "UnzipOption", "UnzipOptionArray1", "UnzipOptionArray2", "UnzipOptionArray3", "opt1", "opt2", "opt3", "zipped1", "zipped2", "zipped3"] rebuilt : ScopeId(0): ["zipped1", "zipped2", "zipped3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(7), ScopeId(10), ScopeId(12)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(43): Some("opt1") rebuilt : ReferenceId(0): None @@ -12451,16 +15336,25 @@ tasks/coverage/typescript/tests/cases/compiler/recursiveTypeComparison.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Observable", "Property", "p", "stuck"] rebuilt : ScopeId(0): ["p", "stuck"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/recursiveTypeIdentity.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/recursiveTypeParameterReferenceError1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C2", "Foo", "Foo2", "X", "f", "f2", "r", "r2"] rebuilt : ScopeId(0): ["C2", "X", "f", "f2", "r", "r2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] @@ -12472,16 +15366,25 @@ tasks/coverage/typescript/tests/cases/compiler/recursiveTypeParameterReferenceEr semantic error: Bindings mismatch: after transform: ScopeId(0): ["List", "List2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/recursiveTypes1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Customer", "Entity", "Person"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/recursiveUnionTypeInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "bar"] rebuilt : ScopeId(0): ["bar"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(2): ["T", "x"] rebuilt : ScopeId(1): ["x"] @@ -12515,10 +15418,18 @@ Missing ReferenceId: _MsPortal Missing ReferenceId: MsPortal Missing ReferenceId: MsPortal +tasks/coverage/typescript/tests/cases/compiler/redeclarationOfVarWithGenericType.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/reducibleIndexedAccessTypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AnyOneof", "AnyOneofKind", "GetPayload", "MappedPayload2", "Payload", "PayloadA", "PayloadB", "PayloadC", "PayloadStructure", "Type", "payloads2"] rebuilt : ScopeId(0): ["Type", "payloads2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(12), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["A", "B", "C", "Type"] rebuilt : ScopeId(1): ["Type"] @@ -12531,17 +15442,17 @@ semantic error: `export = ;` is only supported when compiling modules to Please consider using `export default ;`, or add @babel/plugin-transform-modules-commonjs to your Babel config. tasks/coverage/typescript/tests/cases/compiler/reexportNameAliasedAndHoisted.ts -semantic error: Semantic Collector failed after transform -Missing SymbolId: Sizing -Missing SymbolId: _Sizing -Missing ReferenceId: _Sizing -Missing ReferenceId: Sizing -Missing ReferenceId: Sizing +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/relatedViaDiscriminatedTypeNoError.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "DiscriminatedUnion", "Model"] rebuilt : ScopeId(0): ["A", "B", "Model"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] Bindings mismatch: after transform: ScopeId(4): ["T"] rebuilt : ScopeId(3): [] @@ -12550,6 +15461,9 @@ tasks/coverage/typescript/tests/cases/compiler/relatedViaDiscriminatedTypeNoErro semantic error: Bindings mismatch: after transform: ScopeId(0): ["AObjOrBObj", "AOrBObj", "Generic", "T", "x", "y"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(6): Some("x") rebuilt : ReferenceId(0): None @@ -12567,6 +15481,9 @@ tasks/coverage/typescript/tests/cases/compiler/reorderProperties.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "D", "c", "d"] rebuilt : ScopeId(0): ["c", "d"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/requireEmitSemicolon.ts semantic error: Semantic Collector failed after transform @@ -12679,26 +15596,63 @@ tasks/coverage/typescript/tests/cases/compiler/reservedNameOnModuleImport.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["test"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/resolutionCandidateFromPackageJsonField2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "b"] rebuilt : ScopeId(0): [] +tasks/coverage/typescript/tests/cases/compiler/resolveInterfaceNameWithSameLetDeclarationName1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/resolveInterfaceNameWithSameLetDeclarationName2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/resolveModuleNameWithSameLetDeclarationName1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/resolveModuleNameWithSameLetDeclarationName2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["punycode"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/resolveNameWithNamspace.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/resolveTypeAliasWithSameLetDeclarationName1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/restParamUsingMappedTypeOverUnionConstraint.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["HomomorphicMappedType"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/restParameterTypeInstantiation.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["TestGeneric", "removeF", "result"] rebuilt : ScopeId(0): ["removeF", "result"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(2): ["TX", "f", "rest"] rebuilt : ScopeId(1): ["f", "rest"] @@ -12707,6 +15661,9 @@ tasks/coverage/typescript/tests/cases/compiler/restTypeRetainsMappyness.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "test"] rebuilt : ScopeId(0): ["test"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(3): ["T", "arr", "fn"] rebuilt : ScopeId(1): ["arr", "fn"] @@ -12731,6 +15688,9 @@ tasks/coverage/typescript/tests/cases/compiler/returnTypeInferenceNotTooBroad.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Opts", "Signs", "Wrapper", "y", "yone", "yun"] rebuilt : ScopeId(0): ["y", "yone", "yun"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/returnTypeParameterWithModules.ts semantic error: Semantic Collector failed after transform @@ -12761,31 +15721,56 @@ tasks/coverage/typescript/tests/cases/compiler/reuseInnerModuleMember.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["M"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/reverseInferenceInContextualInstantiation.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["T", "a", "b"] rebuilt : ScopeId(1): ["a", "b"] +tasks/coverage/typescript/tests/cases/compiler/reverseMappedContravariantInference.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/reverseMappedTupleContext.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["CompilerOptions", "Definition", "KeepLiteralStrings", "Schema", "created1", "created2", "result1", "result2", "result4"] rebuilt : ScopeId(0): ["created1", "created2", "result1", "result2", "result4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(16)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/compiler/reverseMappedTypeAssignableToIndex.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["InferFromMapped", "Inferred", "LiteralType", "Mapped", "MappedLiteralType", "Test1"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/reverseMappedTypeContextualTypesPerElementOfTupleConstraint.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Tuple"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/typescript/tests/cases/compiler/reverseMappedTypePrimitiveConstraintProperty.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/reverseMappedTypeRecursiveInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo", "bar", "test"] rebuilt : ScopeId(0): ["bar", "test"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(6): ["V", "value"] rebuilt : ScopeId(1): ["value"] @@ -12794,24 +15779,41 @@ tasks/coverage/typescript/tests/cases/compiler/reverseMappedUnionInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AnyExtractor", "Extractor", "Identifier", "StringLiteral", "identifierExtractor", "myUnion", "stringExtractor"] rebuilt : ScopeId(0): ["identifierExtractor", "myUnion", "stringExtractor"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/reversedRecusiveTypeInstantiation.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "a"] rebuilt : ScopeId(0): ["a"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/selfInLambdas.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["MouseEvent", "Window", "X", "o", "window"] rebuilt : ScopeId(0): ["X", "o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] Reference mismatch: after transform: ReferenceId(2): Some("window") rebuilt : ReferenceId(0): None +tasks/coverage/typescript/tests/cases/compiler/selfReference.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/selfReferencingTypeReferenceInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Box", "InferRecursive", "Recursive", "t1", "t2", "t3"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/separate1-2.ts semantic error: Semantic Collector failed after transform @@ -12822,10 +15824,18 @@ Missing ReferenceId: f Missing ReferenceId: X Missing ReferenceId: X +tasks/coverage/typescript/tests/cases/compiler/shebangBeforeReferences.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/sigantureIsSubTypeIfTheyAreIdentical.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["CacheService", "ICache"] rebuilt : ScopeId(0): ["CacheService"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(4): ["T", "key"] rebuilt : ScopeId(2): ["key"] @@ -12853,6 +15863,9 @@ tasks/coverage/typescript/tests/cases/compiler/simplifyingConditionalWithInterio semantic error: Bindings mismatch: after transform: ScopeId(0): ["ConditionalOrUndefined", "ConditionalType", "JustConditional", "JustGeneric", "f", "genericOrUndefined"] rebuilt : ScopeId(0): ["ConditionalOrUndefined", "JustConditional", "JustGeneric", "f", "genericOrUndefined"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(1): [] @@ -12868,11 +15881,17 @@ rebuilt : ScopeId(4): [] Bindings mismatch: after transform: ScopeId(7): ["A", "One", "T", "x"] rebuilt : ScopeId(5): ["x"] +Scope children mismatch: +after transform: ScopeId(7): [ScopeId(8), ScopeId(10)] +rebuilt : ScopeId(5): [] tasks/coverage/typescript/tests/cases/compiler/singletonLabeledTuple.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Alias", "AliasOptional", "AliasRest", "AliasedRest", "Labeled", "Literal", "LiteralRest", "Normal", "NormalRest"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(11), ScopeId(13), ScopeId(15)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/sliceResultCast.ts semantic error: Bindings mismatch: @@ -12912,6 +15931,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMap-InterfacePrecedingVaria semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/sourceMap-StringLiteralWithNewLine.ts semantic error: Semantic Collector failed after transform @@ -12947,6 +15969,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiSkilledRobot", "Robot", "console", "getMultiRobot", "getRobot", "multiRobotA", "multiRobotB", "robotA"] rebuilt : ScopeId(0): ["getMultiRobot", "getRobot", "multiRobotA", "multiRobotB", "robotA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(28), ScopeId(30), ScopeId(32), ScopeId(34), ScopeId(36), ScopeId(38), ScopeId(40), ScopeId(42), ScopeId(44), ScopeId(46), ScopeId(48), ScopeId(50), ScopeId(52)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(25), ScopeId(27), ScopeId(29), ScopeId(31), ScopeId(33), ScopeId(35), ScopeId(37), ScopeId(39), ScopeId(41), ScopeId(43), ScopeId(45), ScopeId(47), ScopeId(49)] Reference mismatch: after transform: ReferenceId(8): Some("console") rebuilt : ReferenceId(5): None @@ -13024,6 +16049,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiSkilledRobot", "Robot", "console", "getMultiRobot", "getRobot", "i", "multiRobotA", "multiRobotAInfo", "multiRobotB", "nameA", "nameA2", "nameB", "nameMA", "numberA2", "numberA3", "numberB", "primarySkillA", "robotA", "robotAInfo", "secondarySkillA", "skillA2"] rebuilt : ScopeId(0): ["getMultiRobot", "getRobot", "i", "multiRobotA", "multiRobotAInfo", "multiRobotB", "nameA", "nameA2", "nameB", "nameMA", "numberA2", "numberA3", "numberB", "primarySkillA", "robotA", "robotAInfo", "secondarySkillA", "skillA2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Reference mismatch: after transform: ReferenceId(10): Some("console") rebuilt : ReferenceId(7): None @@ -13101,6 +16129,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiSkilledRobot", "Robot", "console", "getMultiRobot", "getRobot", "multiRobotA", "multiRobotB", "robotA"] rebuilt : ScopeId(0): ["getMultiRobot", "getRobot", "multiRobotA", "multiRobotB", "robotA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(28), ScopeId(30), ScopeId(32), ScopeId(34), ScopeId(36), ScopeId(38), ScopeId(40), ScopeId(42), ScopeId(44), ScopeId(46)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(25), ScopeId(27), ScopeId(29), ScopeId(31), ScopeId(33), ScopeId(35), ScopeId(37), ScopeId(39), ScopeId(41), ScopeId(43)] Reference mismatch: after transform: ReferenceId(8): Some("console") rebuilt : ReferenceId(5): None @@ -13169,6 +16200,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiSkilledRobot", "Robot", "console", "getMultiRobot", "getRobot", "i", "multiRobotA", "multiRobotAInfo", "multiRobotB", "nameA", "nameA2", "nameB", "nameMA", "numberA2", "numberA3", "numberB", "primarySkillA", "robotA", "robotAInfo", "secondarySkillA", "skillA2"] rebuilt : ScopeId(0): ["getMultiRobot", "getRobot", "i", "multiRobotA", "multiRobotAInfo", "multiRobotB", "nameA", "nameA2", "nameB", "nameMA", "numberA2", "numberA3", "numberB", "primarySkillA", "robotA", "robotAInfo", "secondarySkillA", "skillA2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24)] Reference mismatch: after transform: ReferenceId(10): Some("console") rebuilt : ReferenceId(7): None @@ -13237,6 +16271,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiRobot", "Robot", "console", "getMultiRobot", "getRobot", "multiRobot", "robot"] rebuilt : ScopeId(0): ["getMultiRobot", "getRobot", "multiRobot", "robot"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(28)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(25)] Reference mismatch: after transform: ReferenceId(7): Some("console") rebuilt : ReferenceId(5): None @@ -13278,6 +16315,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiRobot", "Robot", "console", "getMultiRobot", "getRobot", "i", "multiRobot", "name", "nameA", "primary", "primaryA", "robot", "secondary", "secondaryA", "skill", "skillA"] rebuilt : ScopeId(0): ["getMultiRobot", "getRobot", "i", "multiRobot", "name", "nameA", "primary", "primaryA", "robot", "secondary", "secondaryA", "skill", "skillA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Reference mismatch: after transform: ReferenceId(9): Some("console") rebuilt : ReferenceId(7): None @@ -13355,6 +16395,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiRobot", "Robot", "console", "getMultiRobot", "getRobot", "multiRobot", "robot"] rebuilt : ScopeId(0): ["getMultiRobot", "getRobot", "multiRobot", "robot"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(28)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(25)] Reference mismatch: after transform: ReferenceId(7): Some("console") rebuilt : ReferenceId(5): None @@ -13396,6 +16439,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiRobot", "Robot", "console", "getMultiRobot", "getRobot", "i", "multiRobot", "name", "nameA", "primary", "primaryA", "robot", "secondary", "secondaryA", "skill", "skillA"] rebuilt : ScopeId(0): ["getMultiRobot", "getRobot", "i", "multiRobot", "name", "nameA", "primary", "primaryA", "robot", "secondary", "secondaryA", "skill", "skillA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Reference mismatch: after transform: ReferenceId(9): Some("console") rebuilt : ReferenceId(7): None @@ -13473,6 +16519,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiSkilledRobot", "Robot", "console", "getMultiRobots", "getRobots", "multiRobotA", "multiRobotB", "multiRobots", "robotA", "robotB", "robots"] rebuilt : ScopeId(0): ["getMultiRobots", "getRobots", "multiRobotA", "multiRobotB", "multiRobots", "robotA", "robotB", "robots"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(28), ScopeId(30), ScopeId(32), ScopeId(34), ScopeId(36), ScopeId(38), ScopeId(40), ScopeId(42), ScopeId(44), ScopeId(46), ScopeId(48), ScopeId(50), ScopeId(52)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(25), ScopeId(27), ScopeId(29), ScopeId(31), ScopeId(33), ScopeId(35), ScopeId(37), ScopeId(39), ScopeId(41), ScopeId(43), ScopeId(45), ScopeId(47), ScopeId(49)] Reference mismatch: after transform: ReferenceId(11): Some("console") rebuilt : ReferenceId(7): None @@ -13550,6 +16599,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiSkilledRobot", "Robot", "console", "getMultiRobots", "getRobots", "multiRobotA", "multiRobotAInfo", "multiRobotB", "multiRobots", "nameA", "nameA2", "nameB", "nameMA", "numberA2", "numberA3", "numberB", "primarySkillA", "robotA", "robotAInfo", "robotB", "robots", "secondarySkillA", "skillA2"] rebuilt : ScopeId(0): ["getMultiRobots", "getRobots", "multiRobotA", "multiRobotAInfo", "multiRobotB", "multiRobots", "nameA", "nameA2", "nameB", "nameMA", "numberA2", "numberA3", "numberB", "primarySkillA", "robotA", "robotAInfo", "robotB", "robots", "secondarySkillA", "skillA2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Reference mismatch: after transform: ReferenceId(12): Some("console") rebuilt : ReferenceId(8): None @@ -13627,6 +16679,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiSkilledRobot", "Robot", "console", "getMultiRobots", "getRobots", "multiRobotA", "multiRobotB", "multiRobots", "robotA", "robotB", "robots"] rebuilt : ScopeId(0): ["getMultiRobots", "getRobots", "multiRobotA", "multiRobotB", "multiRobots", "robotA", "robotB", "robots"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(28), ScopeId(30), ScopeId(32), ScopeId(34), ScopeId(36), ScopeId(38), ScopeId(40), ScopeId(42), ScopeId(44), ScopeId(46)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(25), ScopeId(27), ScopeId(29), ScopeId(31), ScopeId(33), ScopeId(35), ScopeId(37), ScopeId(39), ScopeId(41), ScopeId(43)] Reference mismatch: after transform: ReferenceId(11): Some("console") rebuilt : ReferenceId(7): None @@ -13695,6 +16750,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiSkilledRobot", "Robot", "console", "getMultiRobots", "getRobots", "multiRobotA", "multiRobotAInfo", "multiRobotB", "multiRobots", "nameA", "nameA2", "nameB", "nameMA", "numberA2", "numberA3", "numberB", "primarySkillA", "robotA", "robotAInfo", "robotB", "robots", "secondarySkillA", "skillA2"] rebuilt : ScopeId(0): ["getMultiRobots", "getRobots", "multiRobotA", "multiRobotAInfo", "multiRobotB", "multiRobots", "nameA", "nameA2", "nameB", "nameMA", "numberA2", "numberA3", "numberB", "primarySkillA", "robotA", "robotAInfo", "robotB", "robots", "secondarySkillA", "skillA2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23)] Reference mismatch: after transform: ReferenceId(12): Some("console") rebuilt : ReferenceId(8): None @@ -13763,6 +16821,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiRobot", "Robot", "console", "getMultiRobots", "getRobots", "multiRobots", "robots"] rebuilt : ScopeId(0): ["getMultiRobots", "getRobots", "multiRobots", "robots"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(28)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(25)] Reference mismatch: after transform: ReferenceId(5): Some("console") rebuilt : ReferenceId(3): None @@ -13804,6 +16865,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiRobot", "Robot", "console", "getMultiRobots", "getRobots", "i", "multiRobots", "name", "nameA", "primary", "primaryA", "robots", "secondary", "secondaryA", "skill", "skillA"] rebuilt : ScopeId(0): ["getMultiRobots", "getRobots", "i", "multiRobots", "name", "nameA", "primary", "primaryA", "robots", "secondary", "secondaryA", "skill", "skillA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Reference mismatch: after transform: ReferenceId(6): Some("console") rebuilt : ReferenceId(4): None @@ -13881,6 +16945,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiRobot", "Robot", "console", "getMultiRobots", "getRobots", "multiRobots", "robots"] rebuilt : ScopeId(0): ["getMultiRobots", "getRobots", "multiRobots", "robots"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(28)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(25)] Reference mismatch: after transform: ReferenceId(5): Some("console") rebuilt : ReferenceId(3): None @@ -13922,6 +16989,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiRobot", "Robot", "console", "getMultiRobots", "getRobots", "i", "multiRobots", "name", "nameA", "primary", "primaryA", "robots", "secondary", "secondaryA", "skill", "skillA"] rebuilt : ScopeId(0): ["getMultiRobots", "getRobots", "i", "multiRobots", "name", "nameA", "primary", "primaryA", "robots", "secondary", "secondaryA", "skill", "skillA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Reference mismatch: after transform: ReferenceId(6): Some("console") rebuilt : ReferenceId(4): None @@ -13999,6 +17069,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringP semantic error: Bindings mismatch: after transform: ScopeId(0): ["Robot", "console", "foo1", "foo2", "foo3", "robotA"] rebuilt : ScopeId(0): ["foo1", "foo2", "foo3", "robotA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Reference mismatch: after transform: ReferenceId(2): Some("console") rebuilt : ReferenceId(0): None @@ -14013,6 +17086,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringP semantic error: Bindings mismatch: after transform: ScopeId(0): ["Robot", "console", "foo1", "foo2", "foo3", "robotA"] rebuilt : ScopeId(0): ["foo1", "foo2", "foo3", "robotA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Reference mismatch: after transform: ReferenceId(3): Some("console") rebuilt : ReferenceId(1): None @@ -14027,6 +17103,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringP semantic error: Bindings mismatch: after transform: ScopeId(0): ["Robot", "console", "foo1", "foo2", "foo3", "hello", "robotA"] rebuilt : ScopeId(0): ["foo1", "foo2", "foo3", "hello", "robotA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Reference mismatch: after transform: ReferenceId(2): Some("console") rebuilt : ReferenceId(0): None @@ -14041,6 +17120,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringP semantic error: Bindings mismatch: after transform: ScopeId(0): ["Robot", "console", "foo1", "foo2", "foo3", "hello", "robotA"] rebuilt : ScopeId(0): ["foo1", "foo2", "foo3", "hello", "robotA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Reference mismatch: after transform: ReferenceId(2): Some("console") rebuilt : ReferenceId(0): None @@ -14055,6 +17137,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringP semantic error: Bindings mismatch: after transform: ScopeId(0): ["Robot", "console", "foo1", "foo2", "foo3", "foo4", "robotA"] rebuilt : ScopeId(0): ["foo1", "foo2", "foo3", "foo4", "robotA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Reference mismatch: after transform: ReferenceId(2): Some("console") rebuilt : ReferenceId(0): None @@ -14072,6 +17157,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringP semantic error: Bindings mismatch: after transform: ScopeId(0): ["Robot", "console", "foo1", "foo2", "foo3", "foo4", "robotA"] rebuilt : ScopeId(0): ["foo1", "foo2", "foo3", "foo4", "robotA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Reference mismatch: after transform: ReferenceId(2): Some("console") rebuilt : ReferenceId(0): None @@ -14089,6 +17177,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringP semantic error: Bindings mismatch: after transform: ScopeId(0): ["Robot", "console", "foo1", "foo2", "foo3", "foo4", "robotA"] rebuilt : ScopeId(0): ["foo1", "foo2", "foo3", "foo4", "robotA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Reference mismatch: after transform: ReferenceId(2): Some("console") rebuilt : ReferenceId(0): None @@ -14106,6 +17197,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringP semantic error: Bindings mismatch: after transform: ScopeId(0): ["Robot", "console", "foo1", "foo2", "foo3", "robotA"] rebuilt : ScopeId(0): ["foo1", "foo2", "foo3", "robotA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Reference mismatch: after transform: ReferenceId(2): Some("console") rebuilt : ReferenceId(0): None @@ -14120,6 +17214,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringV semantic error: Bindings mismatch: after transform: ScopeId(0): ["Robot", "console", "hello", "nameA", "nameB", "nameC", "robotA", "robotB", "skillB", "skillC"] rebuilt : ScopeId(0): ["hello", "nameA", "nameB", "nameC", "robotA", "robotB", "skillB", "skillC"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference mismatch: after transform: ReferenceId(6): Some("console") rebuilt : ReferenceId(4): None @@ -14131,6 +17228,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringV semantic error: Bindings mismatch: after transform: ScopeId(0): ["Robot", "a", "a1", "b", "b1", "c", "c1", "console", "hello", "nameA", "nameB", "nameC", "robotA", "robotB", "skillB", "skillC"] rebuilt : ScopeId(0): ["a", "a1", "b", "b1", "c", "c1", "hello", "nameA", "nameB", "nameC", "robotA", "robotB", "skillB", "skillC"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference mismatch: after transform: ReferenceId(16): Some("console") rebuilt : ReferenceId(14): None @@ -14142,6 +17242,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringV semantic error: Bindings mismatch: after transform: ScopeId(0): ["Robot", "console", "nameA", "nameA2", "nameC", "numberA2", "numberA3", "numberB", "numberC", "numberC2", "robotA", "robotAInfo", "robotB", "skillA2", "skillC"] rebuilt : ScopeId(0): ["nameA", "nameA2", "nameC", "numberA2", "numberA3", "numberB", "numberC", "numberC2", "robotA", "robotAInfo", "robotB", "skillA2", "skillC"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(8): Some("console") rebuilt : ReferenceId(6): None @@ -14150,6 +17253,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringV semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiSkilledRobot", "console", "multiRobotA", "multiRobotAInfo", "multiRobotB", "nameMA", "nameMB", "nameMC", "nameMC2", "primarySkillA", "primarySkillC", "secondarySkillA", "secondarySkillC", "skillA"] rebuilt : ScopeId(0): ["multiRobotA", "multiRobotAInfo", "multiRobotB", "nameMA", "nameMB", "nameMC", "nameMC2", "primarySkillA", "primarySkillC", "secondarySkillA", "secondarySkillC", "skillA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(8): Some("console") rebuilt : ReferenceId(6): None @@ -14158,6 +17264,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringV semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiSkilledRobot", "Robot", "console", "getMultiRobotB", "getRobotB", "multiRobotA", "multiRobotAInfo", "multiRobotB", "multiSkillB", "nameA", "nameB", "nameMB", "numberB", "primarySkillB", "robotA", "robotAInfo", "robotB", "secondarySkillB", "skillB"] rebuilt : ScopeId(0): ["getMultiRobotB", "getRobotB", "multiRobotA", "multiRobotAInfo", "multiRobotB", "multiSkillB", "nameA", "nameB", "nameMB", "numberB", "primarySkillB", "robotA", "robotAInfo", "robotB", "secondarySkillB", "skillB"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Reference mismatch: after transform: ReferenceId(62): Some("console") rebuilt : ReferenceId(57): None @@ -14166,6 +17275,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringV semantic error: Bindings mismatch: after transform: ScopeId(0): ["Robot", "console", "nameA", "nameA2", "nameC", "numberA2", "numberA3", "numberB", "numberC", "numberC2", "robotA", "robotAInfo", "robotB", "skillA2", "skillC"] rebuilt : ScopeId(0): ["nameA", "nameA2", "nameC", "numberA2", "numberA3", "numberB", "numberC", "numberC2", "robotA", "robotAInfo", "robotB", "skillA2", "skillC"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(8): Some("console") rebuilt : ReferenceId(6): None @@ -14174,6 +17286,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringV semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiSkilledRobot", "console", "multiRobotA", "multiRobotB", "nameMA", "nameMB", "nameMC", "nameMC2", "primarySkillA", "primarySkillC", "secondarySkillA", "secondarySkillC", "skillA"] rebuilt : ScopeId(0): ["multiRobotA", "multiRobotB", "nameMA", "nameMB", "nameMC", "nameMC2", "primarySkillA", "primarySkillC", "secondarySkillA", "secondarySkillC", "skillA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(7): Some("console") rebuilt : ReferenceId(5): None @@ -14182,6 +17297,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringV semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiSkilledRobot", "Robot", "console", "getMultiRobotB", "getRobotB", "multiRobotA", "multiRobotAInfo", "multiRobotB", "multiSkillB", "nameA", "nameB", "nameMB", "numberB", "primarySkillB", "robotA", "robotAInfo", "robotB", "secondarySkillB", "skillB"] rebuilt : ScopeId(0): ["getMultiRobotB", "getRobotB", "multiRobotA", "multiRobotAInfo", "multiRobotB", "multiSkillB", "nameA", "nameB", "nameMB", "numberB", "primarySkillB", "robotA", "robotAInfo", "robotB", "secondarySkillB", "skillB"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Reference mismatch: after transform: ReferenceId(57): Some("console") rebuilt : ReferenceId(52): None @@ -14190,6 +17308,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringV semantic error: Bindings mismatch: after transform: ScopeId(0): ["Robot", "console", "hello", "nameA", "nameB", "nameC", "robotA", "robotB", "skillB", "skillC"] rebuilt : ScopeId(0): ["hello", "nameA", "nameB", "nameC", "robotA", "robotB", "skillB", "skillC"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference mismatch: after transform: ReferenceId(6): Some("console") rebuilt : ReferenceId(4): None @@ -14201,6 +17322,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringV semantic error: Bindings mismatch: after transform: ScopeId(0): ["Robot", "console", "nameB", "nameC", "primaryA", "primaryB", "robotA", "robotB", "secondaryA", "secondaryB"] rebuilt : ScopeId(0): ["nameB", "nameC", "primaryA", "primaryB", "robotA", "robotB", "secondaryA", "secondaryB"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference mismatch: after transform: ReferenceId(6): Some("console") rebuilt : ReferenceId(4): None @@ -14212,6 +17336,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringV semantic error: Bindings mismatch: after transform: ScopeId(0): ["Robot", "console", "nameB", "nameC", "primaryA", "primaryB", "robotA", "robotB", "secondaryA", "secondaryB"] rebuilt : ScopeId(0): ["nameB", "nameC", "primaryA", "primaryB", "robotA", "robotB", "secondaryA", "secondaryB"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference mismatch: after transform: ReferenceId(7): Some("console") rebuilt : ReferenceId(4): None @@ -14252,11 +17379,17 @@ tasks/coverage/typescript/tests/cases/compiler/specedNoStackBlown.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ErrorMsg", "Predicate", "Result", "Spec", "SpecArray", "SpecFunction", "SpecObject", "SpecValue"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(9), ScopeId(11), ScopeId(14)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/specializationError.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Promise"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/specializationOfExportedClass.ts semantic error: Semantic Collector failed after transform @@ -14271,11 +17404,17 @@ tasks/coverage/typescript/tests/cases/compiler/specializationsShouldNotAffectEac semantic error: Bindings mismatch: after transform: ScopeId(0): ["Series", "foo", "keyExtent2", "series"] rebuilt : ScopeId(0): ["foo", "keyExtent2", "series"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/specializeVarArgs1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Observable", "ObservableArray", "a", "observableArray"] rebuilt : ScopeId(0): ["a", "observableArray"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(4): ["T"] rebuilt : ScopeId(1): [] @@ -14284,6 +17423,9 @@ tasks/coverage/typescript/tests/cases/compiler/specializedInheritedConstructors1 semantic error: Bindings mismatch: after transform: ScopeId(0): ["Model", "MyView", "View", "ViewOptions", "aView", "aView2", "m", "myView"] rebuilt : ScopeId(0): ["Model", "MyView", "View", "aView", "aView2", "m", "myView"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] Bindings mismatch: after transform: ScopeId(2): ["TModel"] rebuilt : ScopeId(1): [] @@ -14293,20 +17435,34 @@ semantic error: Bindings mismatch: after transform: ScopeId(1): ["A", "Tany"] rebuilt : ScopeId(1): [] +tasks/coverage/typescript/tests/cases/compiler/specializedOverloadWithRestParameters.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6)] + tasks/coverage/typescript/tests/cases/compiler/specializedSignatureInInterface.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/specializedSignatureOverloadReturnTypeWithIndexers.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "D"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(10)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/spreadBooleanRespectsFreshness.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "FooArray", "FooBase", "foo1", "foo2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(5): Some("foo1") rebuilt : ReferenceId(0): None @@ -14329,11 +17485,17 @@ tasks/coverage/typescript/tests/cases/compiler/spreadIdenticalTypesRemoved.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Animal", "Animal2", "billOwner", "clonePet"] rebuilt : ScopeId(0): ["billOwner", "clonePet"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/spreadObjectNoCircular1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Box", "Foo", "b"] rebuilt : ScopeId(0): ["Foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(5): Some("b") rebuilt : ReferenceId(0): None @@ -14454,6 +17616,9 @@ tasks/coverage/typescript/tests/cases/compiler/spreadOfObjectLiteralAssignableTo semantic error: Bindings mismatch: after transform: ScopeId(0): ["RecordOfRecords", "RecordOfRecordsOrEmpty", "foo", "recordOfRecords", "recordsOfRecordsOrEmpty"] rebuilt : ScopeId(0): ["foo", "recordOfRecords", "recordsOfRecordsOrEmpty"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/spreadTupleAccessedByTypeParameter.ts semantic error: Bindings mismatch: @@ -14464,11 +17629,22 @@ tasks/coverage/typescript/tests/cases/compiler/spreadTypeRemovesReadonly.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ReadonlyData", "clone", "data"] rebuilt : ScopeId(0): ["clone", "data"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/spreadsAndContextualTupleTypes.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/spuriousCircularityOnTypeImport.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["SelectorMap"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/stackDepthLimitCastingType.ts semantic error: Bindings mismatch: @@ -14488,6 +17664,9 @@ tasks/coverage/typescript/tests/cases/compiler/staticFieldWithInterfaceContext.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "c", "c10", "c11", "c2", "c3", "c4", "c5", "c6", "c7", "c8", "c9", "ex", "f"] rebuilt : ScopeId(0): ["c", "c10", "c11", "c2", "c3", "c4", "c5", "c6", "c7", "c8", "c9", "ex", "f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16)] tasks/coverage/typescript/tests/cases/compiler/staticInitializersAndLegacyClassDecorators.ts semantic error: Bindings mismatch: @@ -14508,11 +17687,17 @@ tasks/coverage/typescript/tests/cases/compiler/staticInterfaceAssignmentCompat.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["Shape", "ShapeFactory", "x"] rebuilt : ScopeId(0): ["Shape", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/staticPrototypePropertyOnClass.ts semantic error: Bindings mismatch: after transform: ScopeId(2): ["T"] rebuilt : ScopeId(2): [] +Scope children mismatch: +after transform: ScopeId(5): [ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(5): [ScopeId(6)] tasks/coverage/typescript/tests/cases/compiler/strictModeEnumMemberNameReserved.ts semantic error: Bindings mismatch: @@ -14526,6 +17711,9 @@ tasks/coverage/typescript/tests/cases/compiler/strictNullNotNullIndexTypeShouldW semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "Foo", "FooClass", "Test", "Test2"] rebuilt : ScopeId(0): ["FooClass", "Test", "Test2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] Bindings mismatch: after transform: ScopeId(2): ["T"] rebuilt : ScopeId(1): [] @@ -14536,10 +17724,21 @@ Bindings mismatch: after transform: ScopeId(7): ["T"] rebuilt : ScopeId(5): [] +tasks/coverage/typescript/tests/cases/compiler/strictTypeofUnionNarrowing.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(5): [ScopeId(6)] +rebuilt : ScopeId(4): [] + tasks/coverage/typescript/tests/cases/compiler/stripMembersOptionality.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["someVal", "someVal2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(1): Some("someVal") rebuilt : ReferenceId(0): None @@ -14560,16 +17759,25 @@ tasks/coverage/typescript/tests/cases/compiler/styledComponentsInstantiaionLimit semantic error: Bindings mismatch: after transform: ScopeId(0): ["AnyStyledComponent", "Defaultize", "FORWARD_REF_STATICS", "ForwardRefExoticBase", "IntrinsicElementsKeys", "KNOWN_STATICS", "MEMO_STATICS", "NonReactStatics", "REACT_STATICS", "React", "ReactDefaultizedProps", "StyledComponent", "StyledComponentBase", "StyledComponentInnerAttrs", "StyledComponentInnerComponent", "StyledComponentInnerOtherProps", "StyledComponentProps", "StyledComponentPropsWithAs", "StyledComponentPropsWithRef", "WithChildrenIfReactComponentClass", "WithOptionalTheme"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(9), ScopeId(10), ScopeId(12), ScopeId(16), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(30), ScopeId(32), ScopeId(35), ScopeId(38)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/subclassThisTypeAssignable02.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "ClassComponent", "Component", "Lifecycle", "MyAttrs", "Vnode", "test8"] rebuilt : ScopeId(0): ["C", "test8"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/subclassWithPolymorphicThisIsAssignable.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["CustomDocument", "Document", "Example"] rebuilt : ScopeId(0): ["Example"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(4): ["Z"] rebuilt : ScopeId(1): [] @@ -14581,26 +17789,41 @@ tasks/coverage/typescript/tests/cases/compiler/substituteReturnTypeSatisfiesCons semantic error: Bindings mismatch: after transform: ScopeId(0): ["FFG", "M", "O", "X"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/substitutionTypeForIndexedAccessType1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AddPropToObject"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/substitutionTypeForIndexedAccessType2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo", "Str"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/substitutionTypeForNonGenericIndexedAccessType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/substitutionTypeNoMergeOfAssignableType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Entity", "Entry", "Fields", "Nodes", "makeEntityStore", "myTest"] rebuilt : ScopeId(0): ["makeEntityStore", "myTest"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(8): ["T", "config"] rebuilt : ScopeId(1): ["config"] @@ -14609,21 +17832,33 @@ tasks/coverage/typescript/tests/cases/compiler/substitutionTypePassedToExtends.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar1", "Bar2", "Foo1", "Foo2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/substitutionTypesCompareCorrectlyInRestrictiveInstances.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bug", "BugHelper", "Q", "R", "UnionKeys"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/substitutionTypesInIndexedAccessTypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Subset", "UserArgs", "boundaryResult", "withoutBoundaryResult"] rebuilt : ScopeId(0): ["boundaryResult", "withoutBoundaryResult"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/subtypeReductionUnionConstraints.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "BarNode", "Document", "FooNode", "Node", "f1", "visitNodes"] rebuilt : ScopeId(0): ["f1", "visitNodes"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Bindings mismatch: after transform: ScopeId(7): ["T", "node", "predicate"] rebuilt : ScopeId(1): ["node", "predicate"] @@ -14650,6 +17885,21 @@ Missing ReferenceId: B Missing ReferenceId: test Missing ReferenceId: test +tasks/coverage/typescript/tests/cases/compiler/superCallFromClassThatDerivesFromGenericType1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/superCallFromClassThatDerivesFromGenericType2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/superHasMethodsFromMergedInterface.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] + tasks/coverage/typescript/tests/cases/compiler/superWithGenericSpecialization.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["T"] @@ -14658,15 +17908,26 @@ Bindings mismatch: after transform: ScopeId(2): ["T"] rebuilt : ScopeId(2): [] +tasks/coverage/typescript/tests/cases/compiler/superWithGenerics.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/symbolLinkDeclarationEmitModuleNamesRootDir.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Constructor", "ControllerClass"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/symbolMergeValueAndImportedType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["X"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/systemExportAssignment.ts semantic error: Bindings mismatch: @@ -14679,14 +17940,17 @@ after transform: ScopeId(0): ["a"] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/systemModule15.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["moduleC", "moduleCStar", "value", "value2"] -rebuilt : ScopeId(0): ["moduleC", "moduleCStar", "value"] +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/systemModule17.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "I"] rebuilt : ScopeId(0): ["A"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/systemModule18.ts semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. @@ -14703,6 +17967,9 @@ tasks/coverage/typescript/tests/cases/compiler/systemModuleAmbientDeclarations.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["E", "c", "e", "foo", "promise"] rebuilt : ScopeId(0): ["c", "e", "foo", "promise"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(3): Some("E") rebuilt : ReferenceId(3): None @@ -14767,6 +18034,11 @@ Missing SymbolId: _ns Missing ReferenceId: ns Missing ReferenceId: ns +tasks/coverage/typescript/tests/cases/compiler/taggedTemplateStringWithSymbolExpression01.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/taggedTemplatesInModuleAndGlobal.ts semantic error: Semantic Collector failed after transform Missing SymbolId: n @@ -14783,11 +18055,17 @@ tasks/coverage/typescript/tests/cases/compiler/templateExpressionAsPossiblyDiscr semantic error: Bindings mismatch: after transform: ScopeId(0): ["BiomeButtonProps", "BiomePlainLinkProps", "ClickableDiscriminatedUnion", "p3"] rebuilt : ScopeId(0): ["p3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/templateExpressionNoInlininingOfConstantBindingWithInitializer.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Params", "example", "example2"] rebuilt : ScopeId(0): ["example", "example2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/templateLiteralConstantEvaluation.ts semantic error: Bindings mismatch: @@ -14798,11 +18076,17 @@ tasks/coverage/typescript/tests/cases/compiler/templateLiteralIntersection.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "E", "MixA", "MixB", "MixC", "MixD", "MixE", "OriginA1", "OriginA2", "OriginB1", "OriginB2", "OriginC", "OriginD", "OriginE", "OriginF", "a"] rebuilt : ScopeId(0): ["a"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/templateLiteralIntersection3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Path", "lowercasePath", "options1", "path"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(1): Some("options1") rebuilt : ReferenceId(0): None @@ -14823,6 +18107,9 @@ tasks/coverage/typescript/tests/cases/compiler/templateLiteralIntersection4.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Provider", "StateHook", "StoreUtils", "useAge", "useStore", "useUsername"] rebuilt : ScopeId(0): ["Provider", "useAge", "useStore", "useUsername"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/templateLiteralsAndDecoratorMetadata.ts semantic error: Bindings mismatch: @@ -14843,14 +18130,23 @@ tasks/coverage/typescript/tests/cases/compiler/testTypings.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IComparable"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/thisConditionalOnMethodReturnOfGenericInstance.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(2): [] +Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(3): [] Bindings mismatch: after transform: ScopeId(6): ["T"] rebuilt : ScopeId(4): [] @@ -14884,19 +18180,31 @@ tasks/coverage/typescript/tests/cases/compiler/thisInTupleTypeParameterConstrain semantic error: Bindings mismatch: after transform: ScopeId(0): ["Array", "Boolean", "Function", "IArguments", "Number", "Object", "RegExp", "String", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(13)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/thisInTypeQuery.ts semantic error: Bindings mismatch: after transform: ScopeId(4): ["Key", "params"] rebuilt : ScopeId(4): ["params"] +Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [] Bindings mismatch: after transform: ScopeId(8): ["T0"] rebuilt : ScopeId(7): [] +Scope children mismatch: +after transform: ScopeId(8): [ScopeId(9)] +rebuilt : ScopeId(7): [] tasks/coverage/typescript/tests/cases/compiler/thisIndexOnExistingReadonlyFieldIsNotNever.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AnchorType", "CoachMarkAnchorDecorator", "CoachMarkAnchorProps"] rebuilt : ScopeId(0): ["CoachMarkAnchorDecorator"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(5): ["P", "anchor"] rebuilt : ScopeId(2): ["anchor"] @@ -14917,6 +18225,9 @@ tasks/coverage/typescript/tests/cases/compiler/tooFewArgumentsInGenericFunctionT semantic error: Bindings mismatch: after transform: ScopeId(0): ["Collection", "Combinators", "_", "c2", "r1a", "r1b", "rf1"] rebuilt : ScopeId(0): ["_", "c2", "r1a", "r1b", "rf1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/topLevel.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -14925,11 +18236,22 @@ tasks/coverage/typescript/tests/cases/compiler/topLevelBlockExpando.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Person"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/transformsElideNullUndefinedType.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(28), ScopeId(30), ScopeId(32), ScopeId(34), ScopeId(35)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(28), ScopeId(30), ScopeId(32)] tasks/coverage/typescript/tests/cases/compiler/transitiveTypeArgumentInference1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I1", "c", "i"] rebuilt : ScopeId(0): ["C", "c", "i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(1): [] @@ -14938,6 +18260,9 @@ tasks/coverage/typescript/tests/cases/compiler/trivialSubtypeReductionNoStructur semantic error: Bindings mismatch: after transform: ScopeId(0): ["Wizard", "WizardStepProps", "props"] rebuilt : ScopeId(0): ["Wizard"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(2): Some("props") rebuilt : ReferenceId(0): None @@ -14946,6 +18271,9 @@ tasks/coverage/typescript/tests/cases/compiler/truthinessCallExpressionCoercion3 semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "f", "g"] rebuilt : ScopeId(0): ["f", "g"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/tslibReExportHelpers.ts semantic error: Bindings mismatch: @@ -14959,11 +18287,17 @@ tasks/coverage/typescript/tests/cases/compiler/tsxAttributeQuickinfoTypesSameAsO semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "JSX", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["Foo", "_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/tsxAttributesHasInferrableIndex.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["AttributeValue", "Attributes", "Button", "_jsxFileName", "b", "createElement"] rebuilt : ScopeId(0): ["Button", "_jsxFileName", "b", "createElement"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/tsxDefaultImports.ts semantic error: Bindings mismatch: @@ -14977,6 +18311,9 @@ tasks/coverage/typescript/tests/cases/compiler/tsxDiscriminantPropertyInference. semantic error: Bindings mismatch: after transform: ScopeId(0): ["DiscriminatorFalse", "DiscriminatorTrue", "JSX", "Props", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/compiler/tsxFragmentChildrenCheck.ts semantic error: Bindings mismatch: @@ -14990,6 +18327,9 @@ tasks/coverage/typescript/tests/cases/compiler/tsxInferenceShouldNotYieldAnyOnUn semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "Props", "PropsBase", "PropsWithConvert", "ShouldInferFromData", "_jsxFileName", "_reactJsxRuntime", "f1", "f2", "f3"] rebuilt : ScopeId(0): ["ShouldInferFromData", "_jsxFileName", "_reactJsxRuntime", "f1", "f2", "f3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] Bindings mismatch: after transform: ScopeId(6): ["T", "props"] rebuilt : ScopeId(1): ["props"] @@ -14998,6 +18338,9 @@ tasks/coverage/typescript/tests/cases/compiler/tsxReactPropsInferenceSucceedsOnI semantic error: Bindings mismatch: after transform: ScopeId(0): ["ButtonProps", "CustomButton", "CustomButtonProps", "React", "_jsxFileName"] rebuilt : ScopeId(0): ["CustomButton", "React", "_jsxFileName"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/tsxResolveExternalModuleExportsTypes.ts semantic error: Bindings mismatch: @@ -15008,21 +18351,33 @@ tasks/coverage/typescript/tests/cases/compiler/tsxStatelessComponentDefaultProps semantic error: Bindings mismatch: after transform: ScopeId(0): ["BackButton", "Props", "React", "_jsxFileName", "a"] rebuilt : ScopeId(0): ["BackButton", "React", "_jsxFileName", "a"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/tsxUnionMemberChecksFilterDataProps.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["React", "ReactElement", "RootHappy", "RootNotHappy", "_jsxFileName"] rebuilt : ScopeId(0): ["React", "RootHappy", "RootNotHappy", "_jsxFileName"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/tsxUnionSpread.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["AnimalComponent", "AnimalInfo", "CatInfo", "DogInfo", "JSX", "_jsxFileName", "_reactJsxRuntime", "component", "component2", "getProps", "props", "props2"] rebuilt : ScopeId(0): ["AnimalComponent", "_jsxFileName", "_reactJsxRuntime", "component", "component2", "getProps", "props", "props2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/tupleTypeInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["$q", "IPromise", "IQService", "a", "b", "c"] rebuilt : ScopeId(0): ["a", "b", "c"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(6)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(29): Some("$q") rebuilt : ReferenceId(0): None @@ -15055,55 +18410,91 @@ tasks/coverage/typescript/tests/cases/compiler/tupleTypeInference2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "C2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/twiceNestedKeyofIndexInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Set1", "Set2", "State", "newState", "state"] rebuilt : ScopeId(0): ["newState", "state"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/typeAliasDeclarationEmit3.ts semantic error: Bindings mismatch: after transform: ScopeId(2): ["foo", "i"] rebuilt : ScopeId(2): ["i"] +Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3), ScopeId(8)] +rebuilt : ScopeId(2): [ScopeId(3)] Bindings mismatch: after transform: ScopeId(4): ["foo"] rebuilt : ScopeId(4): [] +Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(9)] +rebuilt : ScopeId(4): [ScopeId(5)] Bindings mismatch: after transform: ScopeId(6): ["foo"] rebuilt : ScopeId(6): [] +Scope children mismatch: +after transform: ScopeId(6): [ScopeId(7), ScopeId(10)] +rebuilt : ScopeId(6): [ScopeId(7)] tasks/coverage/typescript/tests/cases/compiler/typeAliasDoesntMakeModuleInstantiated.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["m"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/typeAliasExport.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["a"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/typeAliasFunctionTypeSharedSymbol.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Crashes", "Mixin", "ReturnTypeOf"] rebuilt : ScopeId(0): ["Mixin"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(1): ["Base", "TBase"] rebuilt : ScopeId(1): ["Base"] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/typeAnnotationBestCommonTypeInArrayLiteral.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IMenuItem", "menuData"] rebuilt : ScopeId(0): ["menuData"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/typeArgInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "o", "t1", "t2", "t3", "t4", "x"] rebuilt : ScopeId(0): ["o", "t1", "t2", "t3", "t4", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/typeArgInference2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Item", "z1", "z2", "z3", "z4", "z5", "z6"] rebuilt : ScopeId(0): ["z1", "z2", "z3", "z4", "z5", "z6"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/typeArgInferenceWithNull.ts semantic error: Bindings mismatch: @@ -15133,6 +18524,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeArgumentInferenceOrdering.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "Goo", "I", "foo", "x"] rebuilt : ScopeId(0): ["C", "foo", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(5): ["T", "f"] rebuilt : ScopeId(2): ["f"] @@ -15141,11 +18535,17 @@ tasks/coverage/typescript/tests/cases/compiler/typeArgumentInferenceWithRecursiv semantic error: Bindings mismatch: after transform: ScopeId(0): ["TreeNode", "nodes"] rebuilt : ScopeId(0): ["nodes"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/typeArgumentInferenceWithRecursivelyReferencedTypeAliasToTypeLiteral02.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["TreeNode", "TreeNodeMiddleman", "nodes"] rebuilt : ScopeId(0): ["nodes"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/typeArgumentsInFunctionExpressions.ts semantic error: Bindings mismatch: @@ -15159,6 +18559,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeConstraintsWithConstructSigna semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "Constructable"] rebuilt : ScopeId(0): ["C"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(1): [] @@ -15167,6 +18570,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowByMutableUntypedFi semantic error: Bindings mismatch: after transform: ScopeId(0): ["arrayLikeOrIterable"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(6): Some("arrayLikeOrIterable") rebuilt : ReferenceId(1): None @@ -15178,6 +18584,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowByUntypedField.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["arrayLikeOrIterable"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(6): Some("arrayLikeOrIterable") rebuilt : ReferenceId(1): None @@ -15189,11 +18598,17 @@ tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowsIndexedAccessOfKn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "Circle", "Rectangle", "Shape", "Square", "Subshape", "X", "Y", "Z", "area", "check", "g", "subarea"] rebuilt : ScopeId(0): ["area", "check", "g", "subarea"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(19)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(8)] tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowsIndexedAccessOfKnownProperty11.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E", "m"] rebuilt : ScopeId(0): ["E"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["A", "B", "E"] rebuilt : ScopeId(1): ["E"] @@ -15211,6 +18626,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowsIndexedAccessOfKn semantic error: Bindings mismatch: after transform: ScopeId(0): ["E", "m"] rebuilt : ScopeId(0): ["E"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["A", "B", "E"] rebuilt : ScopeId(1): ["E"] @@ -15228,16 +18646,25 @@ tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowsIndexedAccessOfKn semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "foo", "index"] rebuilt : ScopeId(0): ["foo", "index"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowsIndexedAccessOfKnownProperty5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "a", "aIndex", "b", "bIndex", "c", "cIndex"] rebuilt : ScopeId(0): ["a", "aIndex", "b", "bIndex", "c", "cIndex"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowsIndexedAccessOfKnownProperty6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "a", "aIndex", "b", "bIndex", "c", "cIndex"] rebuilt : ScopeId(0): ["a", "b", "c"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Reference mismatch: after transform: ReferenceId(1): Some("aIndex") rebuilt : ReferenceId(1): None @@ -15281,6 +18708,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeInferenceCacheInvalidation.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Callback"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/typeInferenceFBoundedTypeParams.ts semantic error: Bindings mismatch: @@ -15290,10 +18720,18 @@ Bindings mismatch: after transform: ScopeId(4): ["a", "b", "value", "values"] rebuilt : ScopeId(4): ["value", "values"] +tasks/coverage/typescript/tests/cases/compiler/typeInferenceFixEarly.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/typeInferenceLiteralUnion.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["NumCoercible", "Numeric", "Primitive", "extent", "extentMixed"] rebuilt : ScopeId(0): ["NumCoercible", "extent", "extentMixed"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] Bindings mismatch: after transform: ScopeId(7): ["T", "array"] rebuilt : ScopeId(4): ["array"] @@ -15302,6 +18740,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeInferenceReturnTypeCallback.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["Cons", "IList", "Nil"] rebuilt : ScopeId(0): ["Cons", "Nil"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Bindings mismatch: after transform: ScopeId(3): ["C"] rebuilt : ScopeId(1): [] @@ -15318,10 +18759,18 @@ Bindings mismatch: after transform: ScopeId(8): ["E", "f", "z"] rebuilt : ScopeId(6): ["f", "z"] +tasks/coverage/typescript/tests/cases/compiler/typeInferenceTypePredicate.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/typeInferenceWithExcessProperties.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Named", "parrot"] rebuilt : ScopeId(0): ["parrot"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(2): ["T", "obj"] rebuilt : ScopeId(1): ["obj"] @@ -15331,15 +18780,26 @@ semantic error: Semantic Collector failed after transform Missing SymbolId: React Missing ReferenceId: require +tasks/coverage/typescript/tests/cases/compiler/typeInferenceWithTypeAnnotation.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/typeLiteralCallback.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "bar", "foo", "test"] rebuilt : ScopeId(0): ["foo", "test"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/typeOfYieldWithUnionInContextualReturnType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AsyncSequenceFactory", "SequenceFactory", "SyncSequenceFactory", "asyncFactory", "looserAsyncFactory", "looserSyncFactory", "syncFactory"] rebuilt : ScopeId(0): ["asyncFactory", "looserAsyncFactory", "looserSyncFactory", "syncFactory"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7)] tasks/coverage/typescript/tests/cases/compiler/typeParameterAsElementType.ts semantic error: Bindings mismatch: @@ -15355,6 +18815,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeParameterCompatibilityAccross semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "I2", "a", "a2", "i", "i2"] rebuilt : ScopeId(0): ["a", "a2", "i", "i2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["T", "y"] rebuilt : ScopeId(1): ["y"] @@ -15363,11 +18826,17 @@ tasks/coverage/typescript/tests/cases/compiler/typeParameterConstrainedToOuterTy semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "a", "b"] rebuilt : ScopeId(0): ["a", "b"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/typeParameterConstraintInstantiation.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Mapper", "a", "m"] rebuilt : ScopeId(0): ["a", "m"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/typeParameterDiamond1.ts semantic error: Bindings mismatch: @@ -15380,6 +18849,11 @@ Bindings mismatch: after transform: ScopeId(3): ["Bottom", "bottom", "middle", "top"] rebuilt : ScopeId(3): ["bottom", "middle", "top"] +tasks/coverage/typescript/tests/cases/compiler/typeParameterDoesntBlockParameterLookup.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/typeParameterEquality.ts semantic error: Bindings mismatch: after transform: ScopeId(2): ["T"] @@ -15402,6 +18876,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeParameterExtendsPrimitive.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "IdMap", "f", "g", "h"] rebuilt : ScopeId(0): ["f", "g", "h"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(1): ["T", "t", "v"] rebuilt : ScopeId(1): ["t", "v"] @@ -15416,11 +18893,17 @@ tasks/coverage/typescript/tests/cases/compiler/typeParameterFixingWithConstraint semantic error: Bindings mismatch: after transform: ScopeId(0): ["IBar", "IFoo", "foo"] rebuilt : ScopeId(0): ["foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/typeParameterFixingWithContextSensitiveArguments.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "a", "b", "d", "d2", "d3", "f"] rebuilt : ScopeId(0): ["a", "b", "d", "d2", "d3", "f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Bindings mismatch: after transform: ScopeId(1): ["T", "U", "f", "x", "y"] rebuilt : ScopeId(1): ["f", "x", "y"] @@ -15429,6 +18912,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeParameterFixingWithContextSen semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "a", "b", "d", "f"] rebuilt : ScopeId(0): ["a", "b", "d", "f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(1): ["T", "U", "p", "p1", "y", "y1"] rebuilt : ScopeId(1): ["p", "p1", "y", "y1"] @@ -15437,6 +18923,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeParameterFixingWithContextSen semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "a", "b", "d", "f"] rebuilt : ScopeId(0): ["a", "b", "d", "f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(1): ["T", "U", "pf1", "pf2", "t1", "u1"] rebuilt : ScopeId(1): ["pf1", "pf2", "t1", "u1"] @@ -15450,6 +18939,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeParameterLeak.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Box", "BoxFactory", "BoxFactoryFactory", "BoxTypes", "b", "f"] rebuilt : ScopeId(0): ["b"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(11): Some("f") rebuilt : ReferenceId(0): None @@ -15463,6 +18955,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeParameterOrderReversal.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["X", "tFirst", "uFirst", "z"] rebuilt : ScopeId(0): ["tFirst", "uFirst", "z"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(2): ["T", "U", "x"] rebuilt : ScopeId(1): ["x"] @@ -15474,6 +18969,9 @@ tasks/coverage/typescript/tests/cases/compiler/typePartameterConstraintInstantia semantic error: Bindings mismatch: after transform: ScopeId(0): ["Identity", "Settable", "Test1", "Test2", "Test2Base", "test1", "test2"] rebuilt : ScopeId(0): ["Identity", "test1", "test2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(3): ["V"] rebuilt : ScopeId(1): [] @@ -15482,11 +18980,17 @@ tasks/coverage/typescript/tests/cases/compiler/typePredicateAcceptingPartialOfRe semantic error: Bindings mismatch: after transform: ScopeId(0): ["Options", "Test"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/typePredicateFreshLiteralWidening.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Item", "Narrow", "Narrowable", "filteredValues1", "filteredValues2", "isNotNull", "item1", "item2", "item3", "satisfies", "values1", "values2"] rebuilt : ScopeId(0): ["filteredValues1", "filteredValues2", "isNotNull", "item1", "item2", "item3", "satisfies", "values1", "values2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] Bindings mismatch: after transform: ScopeId(5): ["TWide"] rebuilt : ScopeId(1): [] @@ -15501,6 +19005,9 @@ tasks/coverage/typescript/tests/cases/compiler/typePredicateStructuralMatch.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Result", "Results", "getResults1", "getResults2", "isPlainResponse", "isResponseInData"] rebuilt : ScopeId(0): ["getResults1", "getResults2", "isPlainResponse", "isResponseInData"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Bindings mismatch: after transform: ScopeId(3): ["T", "value"] rebuilt : ScopeId(1): ["value"] @@ -15517,6 +19024,9 @@ tasks/coverage/typescript/tests/cases/compiler/typePredicateWithThisParameter.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo", "isFoo1", "isFoo2", "test"] rebuilt : ScopeId(0): ["isFoo1", "isFoo2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Reference mismatch: after transform: ReferenceId(7): Some("test") rebuilt : ReferenceId(3): None @@ -15534,6 +19044,9 @@ tasks/coverage/typescript/tests/cases/compiler/typePredicatesCanNarrowByDiscrimi semantic error: Bindings mismatch: after transform: ScopeId(0): ["fruit", "fruit2", "kind"] rebuilt : ScopeId(0): ["kind"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference mismatch: after transform: ReferenceId(5): Some("fruit") rebuilt : ReferenceId(1): None @@ -15557,16 +19070,30 @@ tasks/coverage/typescript/tests/cases/compiler/typePredicatesInUnion.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "Or", "f"] rebuilt : ScopeId(0): ["f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/typePredicatesInUnion2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/typePredicatesInUnion_noMatch.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "Or", "f"] rebuilt : ScopeId(0): ["f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/typePredicatesOptionalChaining1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["X", "isNotNull", "title", "x"] rebuilt : ScopeId(0): ["isNotNull", "title", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(2): ["A", "x"] rebuilt : ScopeId(1): ["x"] @@ -15575,11 +19102,17 @@ tasks/coverage/typescript/tests/cases/compiler/typePredicatesOptionalChaining2.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["Person", "getName1", "getName2", "isString"] rebuilt : ScopeId(0): ["getName1", "getName2", "isString"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/typePredicatesOptionalChaining3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Animal", "Breed", "getBreedSizeWithFunction", "getBreedSizeWithoutFunction"] rebuilt : ScopeId(0): ["getBreedSizeWithFunction", "getBreedSizeWithoutFunction"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] tasks/coverage/typescript/tests/cases/compiler/typeResolution.ts semantic error: Semantic Collector failed after transform @@ -15640,10 +19173,18 @@ Missing ReferenceId: _TopLevelModule2 Missing ReferenceId: TopLevelModule2 Missing ReferenceId: TopLevelModule2 +tasks/coverage/typescript/tests/cases/compiler/typeVal.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/typeVariableConstraintIntersections.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["OptionHandlers", "OptionOne", "OptionTwo", "Options", "T00", "T01", "T02", "T10", "T11", "T12", "T20", "T21", "T22", "T23", "T30", "T31", "T32", "T33", "T40", "T41", "T42", "T43", "T50", "T51", "T52", "T53", "T54", "T55", "T60", "T61", "T62", "T63", "T70", "T71", "T72", "T73", "foo", "handleOption", "optionHandlers"] rebuilt : ScopeId(0): ["foo", "handleOption", "optionHandlers"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(47), ScopeId(48), ScopeId(49)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(7), ScopeId(8), ScopeId(9)] Bindings mismatch: after transform: ScopeId(36): ["K", "x"] rebuilt : ScopeId(1): ["x"] @@ -15655,6 +19196,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeVariableTypeGuards.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "Banana", "BigBanana", "BigMonkey", "Foo", "Item", "Monkey", "f1", "f2", "f3", "f4", "f5", "f6"] rebuilt : ScopeId(0): ["A", "BigMonkey", "Monkey", "f1", "f2", "f3", "f4", "f5", "f6"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(6), ScopeId(7), ScopeId(11), ScopeId(12), ScopeId(15), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(8), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21)] Bindings mismatch: after transform: ScopeId(3): ["P"] rebuilt : ScopeId(1): [] @@ -15705,14 +19249,25 @@ tasks/coverage/typescript/tests/cases/compiler/typeofImportInstantiationExpressi semantic error: Bindings mismatch: after transform: ScopeId(0): ["Arg", "myFunction"] rebuilt : ScopeId(0): ["myFunction"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(2): ["T", "U", "arg"] rebuilt : ScopeId(1): ["arg"] +tasks/coverage/typescript/tests/cases/compiler/typeofInterface.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/typeofObjectInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["First", "a", "b", "c", "d", "decorateA", "decorateB", "decorateC", "decorateD", "val"] rebuilt : ScopeId(0): ["a", "b", "c", "d", "decorateA", "decorateB", "decorateC", "decorateD", "val"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(12)] Bindings mismatch: after transform: ScopeId(1): ["O", "fn"] rebuilt : ScopeId(1): ["fn"] @@ -15730,6 +19285,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeofStripsFreshness.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ALL", "ANOTHER", "All", "Another", "Both", "Collection", "CollectionStatic", "result", "result2"] rebuilt : ScopeId(0): ["ALL", "ANOTHER", "result", "result2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(7): Some("Collection") rebuilt : ReferenceId(0): None @@ -15741,6 +19299,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeofUsedBeforeBlockScoped.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "T", "W", "o", "o2"] rebuilt : ScopeId(0): ["C", "o", "o2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/umdGlobalConflict.ts semantic error: Bindings mismatch: @@ -15888,6 +19449,9 @@ tasks/coverage/typescript/tests/cases/compiler/undefinedAsDiscriminantWithUnknow semantic error: Bindings mismatch: after transform: ScopeId(0): ["S", "s"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference mismatch: after transform: ReferenceId(1): Some("s") rebuilt : ReferenceId(0): None @@ -15915,6 +19479,9 @@ tasks/coverage/typescript/tests/cases/compiler/underscoreMapFirst.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IData", "ISeries", "MyView", "_"] rebuilt : ScopeId(0): ["MyView"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/unexportedInstanceClassVariables.ts semantic error: Semantic Collector failed after transform @@ -15930,6 +19497,9 @@ tasks/coverage/typescript/tests/cases/compiler/unionCallMixedTypeParameterPresen semantic error: Bindings mismatch: after transform: ScopeId(0): ["Err", "Ok", "e", "e2"] rebuilt : ScopeId(0): ["e2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(10): Some("e") rebuilt : ReferenceId(0): None @@ -15938,11 +19508,17 @@ tasks/coverage/typescript/tests/cases/compiler/unionExcessPropertyCheckNoApparen semantic error: Bindings mismatch: after transform: ScopeId(0): ["INumberDictionary", "IStringDictionary", "count"] rebuilt : ScopeId(0): ["count"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/unionExcessPropsWithPartialMember.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "a", "ab"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(3): Some("ab") rebuilt : ReferenceId(0): None @@ -15954,11 +19530,17 @@ tasks/coverage/typescript/tests/cases/compiler/unionOfArraysFilterCall.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Buzz", "Fizz"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] tasks/coverage/typescript/tests/cases/compiler/unionOfClassCalls.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "a", "arr", "arr1", "arr2", "tmp"] rebuilt : ScopeId(0): ["arr", "arr1", "arr2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(17), ScopeId(18), ScopeId(19)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] Reference mismatch: after transform: ReferenceId(9): Some("tmp") rebuilt : ReferenceId(0): None @@ -15970,6 +19552,9 @@ tasks/coverage/typescript/tests/cases/compiler/unionOfEnumInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Enum", "Interface", "bar", "foo"] rebuilt : ScopeId(0): ["Enum", "bar", "foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(1): ["A", "B", "C", "Enum"] rebuilt : ScopeId(1): ["Enum"] @@ -15984,19 +19569,36 @@ tasks/coverage/typescript/tests/cases/compiler/unionReductionMutualSubtypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ReturnVal", "k", "run", "val"] rebuilt : ScopeId(0): ["k", "run"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] +Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(2): [] Reference mismatch: after transform: ReferenceId(3): Some("val") rebuilt : ReferenceId(1): None +tasks/coverage/typescript/tests/cases/compiler/unionReductionWithStringMappingAndIdenticalBaseTypeExistsNoCrash.tsx +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + tasks/coverage/typescript/tests/cases/compiler/unionSignaturesWithThisParameter.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["T", "ctor", "t"] rebuilt : ScopeId(1): ["ctor", "t"] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/compiler/unionTypeParameterInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "unlift"] rebuilt : ScopeId(0): ["unlift"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(3): ["U", "value"] rebuilt : ScopeId(1): ["value"] @@ -16005,21 +19607,33 @@ tasks/coverage/typescript/tests/cases/compiler/unionTypeWithIndexAndMethodSignat semantic error: Bindings mismatch: after transform: ScopeId(0): ["Options"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/unionTypeWithIndexAndTuple.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "f"] rebuilt : ScopeId(0): ["f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/unionTypeWithIndexedLiteralType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "Idx", "U", "u"] rebuilt : ScopeId(0): ["u"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/unionWithIndexSignature.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["NumList", "StrList", "TypedArray", "flatten", "foo", "isTypedArray"] rebuilt : ScopeId(0): ["flatten", "foo", "isTypedArray"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(3): ["T", "arr", "zz"] rebuilt : ScopeId(1): ["arr", "zz"] @@ -16031,6 +19645,9 @@ tasks/coverage/typescript/tests/cases/compiler/uniqueSymbolAssignmentOnGlobalAug semantic error: Bindings mismatch: after transform: ScopeId(0): ["FOO_SYMBOL", "foo", "global"] rebuilt : ScopeId(0): ["FOO_SYMBOL", "foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(3): ["T", "p"] rebuilt : ScopeId(1): ["p"] @@ -16039,6 +19656,9 @@ tasks/coverage/typescript/tests/cases/compiler/unknownLikeUnionObjectFlagsNotPro semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyType", "myUnusedFunction", "myVar"] rebuilt : ScopeId(0): ["myUnusedFunction", "myVar"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/unmatchedParameterPositions.ts semantic error: Bindings mismatch: @@ -16051,6 +19671,11 @@ Reference mismatch: after transform: ReferenceId(1): Some("s") rebuilt : ReferenceId(1): None +tasks/coverage/typescript/tests/cases/compiler/untypedArgumentInLambdaExpression.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/unusedClassesinNamespace3.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -16090,6 +19715,9 @@ tasks/coverage/typescript/tests/cases/compiler/unusedLocalProperty.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Animal", "console"] rebuilt : ScopeId(0): ["Animal"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(0): Some("console") rebuilt : ReferenceId(1): None @@ -16101,15 +19729,29 @@ Missing SymbolId: _N Missing ReferenceId: N Missing ReferenceId: N +tasks/coverage/typescript/tests/cases/compiler/unusedLocalsAndParametersOverloadSignatures.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5)] +Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(2): [ScopeId(3), ScopeId(4)] + tasks/coverage/typescript/tests/cases/compiler/unusedLocalsAndParametersTypeAliases.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1", "I3", "handler1", "handler2", "handler3", "handler4", "handler5", "handler6", "x", "y"] rebuilt : ScopeId(0): ["x", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/unusedMethodsInInterface.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameters6.ts semantic error: Bindings mismatch: @@ -16125,6 +19767,9 @@ tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameters9.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C1", "C2", "C3"] rebuilt : ScopeId(0): ["C1", "C2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] @@ -16136,6 +19781,9 @@ tasks/coverage/typescript/tests/cases/compiler/unusedTypeParametersNotCheckedByN semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "T", "f", "l"] rebuilt : ScopeId(0): ["C", "f", "l"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] @@ -16153,6 +19801,9 @@ tasks/coverage/typescript/tests/cases/compiler/unwitnessedTypeParameterVariance. semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "CalcObj", "CalcValue", "a", "b", "foo"] rebuilt : ScopeId(0): ["foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(3): ["O", "unk", "x"] rebuilt : ScopeId(1): ["unk", "x"] @@ -16317,16 +19968,25 @@ tasks/coverage/typescript/tests/cases/compiler/varArgsOnConstructorTypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "I1", "reg"] rebuilt : ScopeId(0): ["A", "B", "reg"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/varianceCallbacksAndIndexedAccesses.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Action1", "MessageEventLike", "PostMessageObject", "Source", "Target", "WindowLike", "f1"] rebuilt : ScopeId(0): ["f1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(11), ScopeId(12)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/varianceCantBeStrictWhileStructureIsnt.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo", "a", "a2", "b", "b2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(6): Some("a") rebuilt : ReferenceId(0): None @@ -16380,6 +20040,9 @@ tasks/coverage/typescript/tests/cases/compiler/varianceProblingAndZeroOrderIndex semantic error: Bindings mismatch: after transform: ScopeId(0): ["Any", "Either", "Left", "MyInfo", "MyServer", "NeededInfo", "Right", "Server", "ToA", "ToB", "Type", "TypeOf", "tmp1", "tmp2"] rebuilt : ScopeId(0): ["Left", "MyServer", "Right", "Server", "Type", "tmp1", "tmp2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6), ScopeId(10), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(18), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(9), ScopeId(12), ScopeId(13), ScopeId(14)] Bindings mismatch: after transform: ScopeId(2): ["A", "L"] rebuilt : ScopeId(1): [] @@ -16412,6 +20075,9 @@ tasks/coverage/typescript/tests/cases/compiler/varianceProblingAndZeroOrderIndex semantic error: Bindings mismatch: after transform: ScopeId(0): ["Any", "Either", "Left", "MyInfo", "MyServer", "NeededInfo", "Right", "Server", "ToA", "ToB", "Type", "TypeOf", "tmp1", "tmp2"] rebuilt : ScopeId(0): ["Left", "MyServer", "Right", "Server", "Type", "tmp1", "tmp2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6), ScopeId(10), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(18), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(9), ScopeId(12), ScopeId(13), ScopeId(14)] Bindings mismatch: after transform: ScopeId(2): ["A", "L"] rebuilt : ScopeId(1): [] @@ -16444,6 +20110,9 @@ tasks/coverage/typescript/tests/cases/compiler/varianceRepeatedlyPropegatesWithU semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "I", "P1", "P2", "X", "_i", "i", "p2"] rebuilt : ScopeId(0): ["_i", "i", "p2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/visSyntax.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -16454,10 +20123,18 @@ Please consider using `import lib from '...';` alongside Typescript's --allowSyn `import lib = require(...);` is only supported when compiling modules to CommonJS. Please consider using `import lib from '...';` alongside Typescript's --allowSyntheticDefaultImports option, or add @babel/plugin-transform-modules-commonjs to your Babel config. +tasks/coverage/typescript/tests/cases/compiler/voidConstructor.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/voidReturnIndexUnionInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Props", "bad", "safeInvoke"] rebuilt : ScopeId(0): ["bad", "safeInvoke"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] Bindings mismatch: after transform: ScopeId(1): ["A1", "R", "arg1", "func"] rebuilt : ScopeId(1): ["arg1", "func"] @@ -16483,30 +20160,48 @@ tasks/coverage/typescript/tests/cases/compiler/vueLikeDataAndPropsInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["DataDef", "Instance", "Options", "PropsDefinition", "ThisTypedOptions", "WatchHandler"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/vueLikeDataAndPropsInference2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["DataDef", "Instance", "Options", "PropsDefinition", "ThisTypedOptions", "WatchHandler"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/weakTypeAndPrimitiveNarrowing.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["LiteralsAndWeakTypes", "PrimitivesAndWeakTypes", "g", "h"] rebuilt : ScopeId(0): ["g", "h"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] tasks/coverage/typescript/tests/cases/compiler/wideningWithTopLevelTypeParameter.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C1", "C2", "C3", "C4", "FormControl", "FormControl2", "FormControl3", "a", "b", "c", "c0", "c1", "c2", "c3", "c4"] rebuilt : ScopeId(0): ["FormControl", "FormControl2", "FormControl3", "a", "b", "c", "c0", "c1", "c2", "c3", "c4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(17), ScopeId(19)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] Bindings mismatch: after transform: ScopeId(14): ["T"] rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(15): [ScopeId(16)] +rebuilt : ScopeId(2): [] Bindings mismatch: after transform: ScopeId(17): ["T"] rebuilt : ScopeId(3): [] Bindings mismatch: after transform: ScopeId(19): ["T"] rebuilt : ScopeId(5): [] +Scope children mismatch: +after transform: ScopeId(20): [ScopeId(21)] +rebuilt : ScopeId(6): [] tasks/coverage/typescript/tests/cases/compiler/withStatementInternalComments.ts semantic error: 'with' statements are not allowed @@ -16526,11 +20221,17 @@ tasks/coverage/typescript/tests/cases/conformance/Symbols/ES5SymbolProperty1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Symbol", "SymbolConstructor", "obj"] rebuilt : ScopeId(0): ["Symbol", "obj"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/ambient/ambientDeclarations.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E1", "E2", "E3", "M1", "external1", "m", "n", "p", "q", "x"] rebuilt : ScopeId(0): ["p", "q", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(23)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(2): Some("E3") rebuilt : ReferenceId(0): None @@ -16539,16 +20240,25 @@ tasks/coverage/typescript/tests/cases/conformance/ambient/ambientDeclarationsExt semantic error: Bindings mismatch: after transform: ScopeId(0): ["equ", "equ2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/ambient/ambientEnumDeclaration1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/ambient/ambientEnumDeclaration2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E", "E1"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/ambient/ambientExternalModuleMerging.ts semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. @@ -16565,6 +20275,9 @@ tasks/coverage/typescript/tests/cases/conformance/ambient/ambientInsideNonAmbien semantic error: Bindings mismatch: after transform: ScopeId(0): ["E", "M", "x"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/ambient/ambientShorthand.ts semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. @@ -16580,6 +20293,11 @@ semantic error: Bindings mismatch: after transform: ScopeId(0): ["bar", "foo"] rebuilt : ScopeId(0): [] +tasks/coverage/typescript/tests/cases/conformance/async/es2017/asyncArrowFunction/asyncUnParenthesizedArrowFunction_es2017.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + tasks/coverage/typescript/tests/cases/conformance/async/es2017/asyncAwait_es2017.ts semantic error: Semantic Collector failed after transform Missing SymbolId: M @@ -16604,6 +20322,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitBinaryExpres semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(3): Some("p") rebuilt : ReferenceId(1): None @@ -16615,6 +20336,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitBinaryExpres semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(3): Some("p") rebuilt : ReferenceId(1): None @@ -16626,6 +20350,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitBinaryExpres semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(3): Some("p") rebuilt : ReferenceId(1): None @@ -16637,6 +20364,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitBinaryExpres semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(3): Some("p") rebuilt : ReferenceId(1): None @@ -16648,6 +20378,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitBinaryExpres semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(4): Some("p") rebuilt : ReferenceId(2): None @@ -16656,6 +20389,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitCallExpressi semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(6): Some("a") rebuilt : ReferenceId(2): None @@ -16670,6 +20406,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitCallExpressi semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(6): Some("p") rebuilt : ReferenceId(2): None @@ -16684,6 +20423,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitCallExpressi semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(6): Some("a") rebuilt : ReferenceId(2): None @@ -16698,6 +20440,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitCallExpressi semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(5): Some("pfn") rebuilt : ReferenceId(1): None @@ -16715,6 +20460,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitCallExpressi semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(5): Some("o") rebuilt : ReferenceId(1): None @@ -16732,6 +20480,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitCallExpressi semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(5): Some("o") rebuilt : ReferenceId(1): None @@ -16749,6 +20500,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitCallExpressi semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(5): Some("o") rebuilt : ReferenceId(1): None @@ -16766,6 +20520,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitCallExpressi semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(5): Some("po") rebuilt : ReferenceId(1): None @@ -16783,6 +20540,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitClassExpress semantic error: Bindings mismatch: after transform: ScopeId(0): ["func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(3): Some("p") rebuilt : ReferenceId(0): None @@ -16791,10 +20551,18 @@ tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitInheritedPro semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "a", "f"] rebuilt : ScopeId(0): ["f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(2): Some("a") rebuilt : ReferenceId(0): None +tasks/coverage/typescript/tests/cases/conformance/async/es5/asyncArrowFunction/asyncUnParenthesizedArrowFunction_es5.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + tasks/coverage/typescript/tests/cases/conformance/async/es5/asyncAwait_es5.ts semantic error: Semantic Collector failed after transform Missing SymbolId: M @@ -16833,6 +20601,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitBinaryExpressio semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(3): Some("p") rebuilt : ReferenceId(1): None @@ -16844,6 +20615,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitBinaryExpressio semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(3): Some("p") rebuilt : ReferenceId(1): None @@ -16855,6 +20629,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitBinaryExpressio semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(3): Some("p") rebuilt : ReferenceId(1): None @@ -16866,6 +20643,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitBinaryExpressio semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(3): Some("p") rebuilt : ReferenceId(1): None @@ -16877,6 +20657,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitBinaryExpressio semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(4): Some("p") rebuilt : ReferenceId(2): None @@ -16885,6 +20668,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(6): Some("a") rebuilt : ReferenceId(2): None @@ -16899,6 +20685,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(6): Some("p") rebuilt : ReferenceId(2): None @@ -16913,6 +20702,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(6): Some("a") rebuilt : ReferenceId(2): None @@ -16927,6 +20719,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(5): Some("pfn") rebuilt : ReferenceId(1): None @@ -16944,6 +20739,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(5): Some("o") rebuilt : ReferenceId(1): None @@ -16961,6 +20759,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(5): Some("o") rebuilt : ReferenceId(1): None @@ -16978,6 +20779,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(5): Some("o") rebuilt : ReferenceId(1): None @@ -16995,6 +20799,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(5): Some("po") rebuilt : ReferenceId(1): None @@ -17012,6 +20819,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitClassExpression semantic error: Bindings mismatch: after transform: ScopeId(0): ["func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(3): Some("p") rebuilt : ReferenceId(0): None @@ -17040,6 +20850,14 @@ tasks/coverage/typescript/tests/cases/conformance/async/es6/asyncAliasReturnType semantic error: Bindings mismatch: after transform: ScopeId(0): ["PromiseAlias", "f"] rebuilt : ScopeId(0): ["f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/async/es6/asyncArrowFunction/asyncUnParenthesizedArrowFunction_es6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/async/es6/asyncAwait_es6.ts semantic error: Semantic Collector failed after transform @@ -17068,6 +20886,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitBinaryExpressio semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(3): Some("p") rebuilt : ReferenceId(1): None @@ -17079,6 +20900,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitBinaryExpressio semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(3): Some("p") rebuilt : ReferenceId(1): None @@ -17090,6 +20914,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitBinaryExpressio semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(3): Some("p") rebuilt : ReferenceId(1): None @@ -17101,6 +20928,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitBinaryExpressio semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(3): Some("p") rebuilt : ReferenceId(1): None @@ -17112,6 +20942,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitBinaryExpressio semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(4): Some("p") rebuilt : ReferenceId(2): None @@ -17120,6 +20953,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(6): Some("a") rebuilt : ReferenceId(2): None @@ -17134,6 +20970,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(6): Some("p") rebuilt : ReferenceId(2): None @@ -17148,6 +20987,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(6): Some("a") rebuilt : ReferenceId(2): None @@ -17162,6 +21004,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(5): Some("pfn") rebuilt : ReferenceId(1): None @@ -17179,6 +21024,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(5): Some("o") rebuilt : ReferenceId(1): None @@ -17196,6 +21044,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(5): Some("o") rebuilt : ReferenceId(1): None @@ -17213,6 +21064,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(5): Some("o") rebuilt : ReferenceId(1): None @@ -17230,6 +21084,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(5): Some("po") rebuilt : ReferenceId(1): None @@ -17247,6 +21104,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitClassExpression semantic error: Bindings mismatch: after transform: ScopeId(0): ["func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(3): Some("p") rebuilt : ReferenceId(0): None @@ -17298,11 +21158,17 @@ tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/merg semantic error: Bindings mismatch: after transform: ScopeId(0): ["C1", "C2", "C3", "C4"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/mergedInheritedClassInterface.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["BaseClass", "BaseInterface", "Child", "ChildNoBaseClass", "Grandchild", "child", "grandchild"] rebuilt : ScopeId(0): ["BaseClass", "Child", "ChildNoBaseClass", "Grandchild", "child", "grandchild"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7)] tasks/coverage/typescript/tests/cases/conformance/classes/classExpression.ts semantic error: Semantic Collector failed after transform @@ -17332,18 +21198,38 @@ Bindings mismatch: after transform: ScopeId(7): ["Inner", "TInner"] rebuilt : ScopeId(7): ["Inner"] +tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlock17.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(7)] + tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/constructorParameters/constructorImplementationWithDefaultValues.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2)] +Bindings mismatch: after transform: ScopeId(4): ["T"] rebuilt : ScopeId(3): [] +Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(3): [ScopeId(4)] Bindings mismatch: after transform: ScopeId(7): ["T"] rebuilt : ScopeId(5): [] +Scope children mismatch: +after transform: ScopeId(7): [ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(5): [ScopeId(6)] tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/constructorParameters/constructorOverloadsWithOptionalParameters.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2)] +Bindings mismatch: after transform: ScopeId(4): ["T"] rebuilt : ScopeId(3): [] +Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(3): [ScopeId(4)] tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/constructorWithExpressionLessReturn.ts semantic error: Bindings mismatch: @@ -17373,6 +21259,26 @@ Missing SymbolId: _Generic Missing ReferenceId: Generic Missing ReferenceId: Generic +tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/thisAndSuperInStaticMembers1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/thisAndSuperInStaticMembers2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/thisAndSuperInStaticMembers3.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/thisAndSuperInStaticMembers4.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/typeOfThisInInstanceMember2.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["T"] @@ -17392,16 +21298,25 @@ tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/p semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "D"] rebuilt : ScopeId(0): ["C"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/typeFromPrivatePropertyAssignment.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "Foo"] rebuilt : ScopeId(0): ["C"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/classes/mixinClassesAnonymous.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "Constructor", "Derived", "Printable", "Tagged", "Thing1", "Thing2", "Thing3", "Timestamped", "f1", "f2"] rebuilt : ScopeId(0): ["Base", "Derived", "Printable", "Tagged", "Thing1", "Thing2", "Thing3", "Timestamped", "f1", "f2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6), ScopeId(9), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(17)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(8), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(16)] Bindings mismatch: after transform: ScopeId(6): ["T", "superClass"] rebuilt : ScopeId(5): ["superClass"] @@ -17416,24 +21331,41 @@ tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarat semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "C", "I"] rebuilt : ScopeId(0): ["B", "C"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/accessorsOverrideProperty8.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AnyCtor", "Base", "MyClass", "Properties", "Types", "mine", "value"] rebuilt : ScopeId(0): ["Base", "MyClass", "mine", "value"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/accessorsOverrideProperty9.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ApiEnum", "ApiEnumMember", "ApiItem", "ApiItemContainerMixin", "Constructor", "IApiItemConstructor", "PropertiesOf"] rebuilt : ScopeId(0): ["ApiEnum", "ApiEnumMember", "ApiItem", "ApiItemContainerMixin"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(8)] Bindings mismatch: after transform: ScopeId(9): ["MixedClass", "TBaseClass", "baseClass"] rebuilt : ScopeId(4): ["MixedClass", "baseClass"] +tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/autoAccessorAllowedModifiers.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/instanceMemberInitialization.ts semantic error: Bindings mismatch: after transform: ScopeId(2): ["K", "V"] rebuilt : ScopeId(2): [] +Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [] tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/memberAccessorDeclarations/typeOfThisInAccessor.ts semantic error: Bindings mismatch: @@ -17441,9 +21373,15 @@ after transform: ScopeId(4): ["T"] rebuilt : ScopeId(4): [] tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/memberFunctionDeclarations/memberFunctionsWithPublicOverloads.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +Bindings mismatch: after transform: ScopeId(16): ["T"] rebuilt : ScopeId(6): [] +Scope children mismatch: +after transform: ScopeId(16): [ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30)] +rebuilt : ScopeId(6): [ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/memberFunctionDeclarations/typeOfThisInMemberFunctions.ts semantic error: Bindings mismatch: @@ -17457,6 +21395,9 @@ tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarat semantic error: Bindings mismatch: after transform: ScopeId(0): ["Kasizz", "Mup", "MupConstructor", "Sizz"] rebuilt : ScopeId(0): ["Kasizz", "Sizz"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Reference mismatch: after transform: ReferenceId(8): Some("Mup") rebuilt : ReferenceId(0): None @@ -17527,6 +21468,9 @@ tasks/coverage/typescript/tests/cases/conformance/constEnums/constEnum3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["TestType", "TestTypeStr", "f1", "f2"] rebuilt : ScopeId(0): ["TestType", "f1", "f2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(1): ["TestType", "bar", "foo"] rebuilt : ScopeId(1): ["TestType"] @@ -17538,6 +21482,9 @@ tasks/coverage/typescript/tests/cases/conformance/constEnums/constEnum4.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/constEnums/constEnumPropertyAccess3.ts semantic error: Bindings mismatch: @@ -17550,31 +21497,59 @@ rebuilt : ScopeId(1): ScopeFlags(Function) tasks/coverage/typescript/tests/cases/conformance/controlFlow/assertionTypePredicates2.ts semantic error: Cannot use export statement outside a module +tasks/coverage/typescript/tests/cases/conformance/controlFlow/constLocalsInFunctionExpressions.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(8), ScopeId(11), ScopeId(14)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(10), ScopeId(13)] + tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowAssignmentExpression.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["D", "o", "obj", "x"] rebuilt : ScopeId(0): ["o", "obj", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowAssignmentPatternOrder.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowBinaryOrExpression.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["EventTargetLike", "HTMLCollection", "NodeList", "cond", "sourceObj", "x"] rebuilt : ScopeId(0): ["cond", "sourceObj", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowBindingElement.ts semantic error: Bindings mismatch: after transform: ScopeId(9): ["Window", "bar", "foo", "window"] rebuilt : ScopeId(9): ["bar", "foo", "window"] +Scope children mismatch: +after transform: ScopeId(9): [ScopeId(10), ScopeId(11), ScopeId(12)] +rebuilt : ScopeId(9): [ScopeId(10), ScopeId(11)] Bindings mismatch: after transform: ScopeId(13): ["Window", "bar", "foo", "window"] rebuilt : ScopeId(12): ["bar", "foo", "window"] +Scope children mismatch: +after transform: ScopeId(13): [ScopeId(14), ScopeId(15), ScopeId(16)] +rebuilt : ScopeId(12): [ScopeId(13), ScopeId(14)] Bindings mismatch: after transform: ScopeId(17): ["Window", "bar", "foo", "window"] rebuilt : ScopeId(15): ["bar", "foo", "window"] +Scope children mismatch: +after transform: ScopeId(17): [ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21)] +rebuilt : ScopeId(15): [ScopeId(16), ScopeId(17), ScopeId(18)] tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowComputedPropertyNames.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Thing", "f1", "f2", "f3", "f4"] rebuilt : ScopeId(0): ["f1", "f2", "f3", "f4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(7), ScopeId(8), ScopeId(12)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(7), ScopeId(11)] Bindings mismatch: after transform: ScopeId(12): ["K", "key", "obj"] rebuilt : ScopeId(11): ["key", "obj"] @@ -17606,11 +21581,17 @@ tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowElement semantic error: Bindings mismatch: after transform: ScopeId(0): ["TestTscCompile", "TestTscEdit", "VerifyTscEditDiscrepanciesInput", "testTscCompile", "verifyTscEditDiscrepancies"] rebuilt : ScopeId(0): ["testTscCompile", "verifyTscEditDiscrepancies"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowForInStatement2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "c", "keywordA", "keywordB", "stringB"] rebuilt : ScopeId(0): ["keywordA", "keywordB", "stringB"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Reference mismatch: after transform: ReferenceId(4): Some("c") rebuilt : ReferenceId(0): None @@ -17640,6 +21621,9 @@ tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowIfState semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "a", "b", "c", "cond", "d", "e", "x"] rebuilt : ScopeId(0): ["a", "b", "c", "cond", "d", "e", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(9), ScopeId(12), ScopeId(15), ScopeId(16)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(9), ScopeId(12), ScopeId(15)] Bindings mismatch: after transform: ScopeId(9): ["T", "data"] rebuilt : ScopeId(9): ["data"] @@ -17651,6 +21635,9 @@ tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowInOpera semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "a", "b", "c", "d", "uniqueID_54790", "uniqueID_54790_2", "uniqueID_54790_3"] rebuilt : ScopeId(0): ["a", "b", "d", "uniqueID_54790", "uniqueID_54790_2", "uniqueID_54790_3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(13), ScopeId(17)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(11), ScopeId(15)] Reference mismatch: after transform: ReferenceId(4): Some("c") rebuilt : ReferenceId(0): None @@ -17686,16 +21673,25 @@ tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowInstanc semantic error: Bindings mismatch: after transform: ScopeId(0): ["X", "Y", "global", "x"] rebuilt : ScopeId(0): ["X", "Y", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(6)] tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowOptionalChain2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "N", "U", "X", "f1", "f2", "f3", "f4", "f5", "f6", "f7", "f8", "funcThree", "funcTwo"] rebuilt : ScopeId(0): ["f1", "f2", "f3", "f4", "f5", "f6", "f7", "f8", "funcThree", "funcTwo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(13), ScopeId(16), ScopeId(19), ScopeId(22), ScopeId(25), ScopeId(28), ScopeId(31)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(8), ScopeId(11), ScopeId(14), ScopeId(17), ScopeId(20), ScopeId(23), ScopeId(26)] tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowStringIndex.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "value"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(1): Some("value") rebuilt : ReferenceId(0): None @@ -17709,8 +21705,16 @@ Reference mismatch: after transform: ReferenceId(4): Some("value") rebuilt : ReferenceId(3): None +tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowSuperPropertyAccess.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [] + tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowTruthiness.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(8), ScopeId(11), ScopeId(14), ScopeId(17), ScopeId(20), ScopeId(23), ScopeId(26)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(10), ScopeId(13), ScopeId(16), ScopeId(19), ScopeId(22), ScopeId(25)] +Bindings mismatch: after transform: ScopeId(23): ["T", "x"] rebuilt : ScopeId(22): ["x"] Bindings mismatch: @@ -17738,6 +21742,9 @@ tasks/coverage/typescript/tests/cases/conformance/controlFlow/dependentDestructu semantic error: Bindings mismatch: after transform: ScopeId(5): ["T", "fn", "promises"] rebuilt : ScopeId(5): ["fn", "promises"] +Scope children mismatch: +after transform: ScopeId(5): [ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(5): [ScopeId(6)] tasks/coverage/typescript/tests/cases/conformance/controlFlow/switchWithConstrainedTypeVariable.ts semantic error: Bindings mismatch: @@ -17748,6 +21755,9 @@ tasks/coverage/typescript/tests/cases/conformance/controlFlow/typeGuardsAsAssert semantic error: Bindings mismatch: after transform: ScopeId(0): ["None", "Optional", "Some", "cond", "f1", "f2", "f3", "f4", "f5", "f6", "f7", "fn", "foo1", "foo2", "isSome", "none", "someFrom"] rebuilt : ScopeId(0): ["cond", "f1", "f2", "f3", "f4", "f5", "f6", "f7", "fn", "foo1", "foo2", "isSome", "none", "someFrom"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(25), ScopeId(26)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(22), ScopeId(23)] Bindings mismatch: after transform: ScopeId(4): ["a", "value"] rebuilt : ScopeId(1): ["value"] @@ -17758,6 +21768,11 @@ Bindings mismatch: after transform: ScopeId(6): ["makeSome", "r", "result"] rebuilt : ScopeId(3): ["makeSome", "result"] +tasks/coverage/typescript/tests/cases/conformance/controlFlow/typeGuardsNestedAssignments.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(10)] + tasks/coverage/typescript/tests/cases/conformance/controlFlow/typeGuardsTypeParameters.ts semantic error: Bindings mismatch: after transform: ScopeId(2): ["T", "x"] @@ -17768,11 +21783,42 @@ rebuilt : ScopeId(4): ["x"] Bindings mismatch: after transform: ScopeId(6): ["T", "item", "strings"] rebuilt : ScopeId(6): ["item", "strings"] +Scope children mismatch: +after transform: ScopeId(6): [ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(6): [ScopeId(7)] tasks/coverage/typescript/tests/cases/conformance/decorators/1.0lib-noErrors.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Array", "Boolean", "Date", "Error", "EvalError", "Function", "IArguments", "Infinity", "JSON", "Math", "NaN", "Number", "Object", "PropertyDescriptor", "PropertyDescriptorMap", "RangeError", "ReferenceError", "RegExp", "RegExpExecArray", "String", "SyntaxError", "T", "TypeError", "URIError"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(13), ScopeId(14), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(67), ScopeId(68), ScopeId(69), ScopeId(70), ScopeId(71), ScopeId(76), ScopeId(77), ScopeId(96), ScopeId(140), ScopeId(141), ScopeId(142), ScopeId(143), ScopeId(144), ScopeId(145), ScopeId(146), ScopeId(147), ScopeId(170), ScopeId(174), ScopeId(175), ScopeId(176), ScopeId(177), ScopeId(178), ScopeId(179), ScopeId(180), ScopeId(181), ScopeId(182), ScopeId(183), ScopeId(184), ScopeId(185), ScopeId(186), ScopeId(187), ScopeId(188), ScopeId(189), ScopeId(196), ScopeId(222), ScopeId(223), ScopeId(224), ScopeId(225)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/conformance/decorators/class/accessor/decoratorOnClassAccessor1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/decorators/class/accessor/decoratorOnClassAccessor2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/decorators/class/accessor/decoratorOnClassAccessor4.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/decorators/class/accessor/decoratorOnClassAccessor5.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/decorators/class/accessor/decoratorOnClassAccessor8.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(8), ScopeId(11), ScopeId(14), ScopeId(16)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(10), ScopeId(13), ScopeId(15)] tasks/coverage/typescript/tests/cases/conformance/decorators/class/constructor/decoratorOnClassConstructor4.ts semantic error: Bindings mismatch: @@ -17788,10 +21834,18 @@ Reference mismatch: after transform: ReferenceId(2): Some("dec") rebuilt : ReferenceId(2): None +tasks/coverage/typescript/tests/cases/conformance/decorators/class/constructor/parameter/decoratorOnClassConstructorParameter1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/conformance/decorators/class/constructor/parameter/decoratorOnClassConstructorParameter5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["BulkEditPreviewProvider", "IFoo"] rebuilt : ScopeId(0): ["BulkEditPreviewProvider"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(1): Some("IFoo") rebuilt : ReferenceId(1): None @@ -17800,6 +21854,9 @@ tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratedClas semantic error: Bindings mismatch: after transform: ScopeId(0): ["Something", "Testing123"] rebuilt : ScopeId(0): ["Testing123"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference mismatch: after transform: ReferenceId(0): Some("Something") rebuilt : ReferenceId(0): None @@ -17808,6 +21865,9 @@ tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratedClas semantic error: Bindings mismatch: after transform: ScopeId(0): ["Something", "Testing123"] rebuilt : ScopeId(0): ["Testing123"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference mismatch: after transform: ReferenceId(0): Some("Something") rebuilt : ReferenceId(0): None @@ -17816,6 +21876,9 @@ tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratedClas semantic error: Bindings mismatch: after transform: ScopeId(0): ["Something", "Testing123"] rebuilt : ScopeId(0): ["Testing123"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference mismatch: after transform: ReferenceId(0): Some("Something") rebuilt : ReferenceId(0): None @@ -17824,6 +21887,9 @@ tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratedClas semantic error: Bindings mismatch: after transform: ScopeId(0): ["Something", "Testing123"] rebuilt : ScopeId(0): ["Testing123"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference mismatch: after transform: ReferenceId(0): Some("Something") rebuilt : ReferenceId(0): None @@ -17833,6 +21899,31 @@ semantic error: Bindings mismatch: after transform: ScopeId(0): ["Decorated"] rebuilt : ScopeId(0): [] +tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratorOnClass1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratorOnClass2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratorOnClass3.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratorOnClass4.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratorOnClass5.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratorOnClass9.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "dec"] @@ -17841,6 +21932,16 @@ Reference mismatch: after transform: ReferenceId(0): Some("dec") rebuilt : ReferenceId(0): None +tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethod1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethod13.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethod14.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "decorator"] @@ -17884,6 +21985,74 @@ Reference mismatch: after transform: ReferenceId(3): Some("decorator") rebuilt : ReferenceId(2): None +tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethod2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethod4.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethod5.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethod7.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethodOverload2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/parameter/decoratorOnClassMethodParameter1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/parameter/decoratorOnClassMethodParameter2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/decorators/class/property/decoratorOnClassProperty1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/decorators/class/property/decoratorOnClassProperty10.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/decorators/class/property/decoratorOnClassProperty12.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/decorators/class/property/decoratorOnClassProperty13.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/decorators/class/property/decoratorOnClassProperty2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/decorators/decoratorInAmbientContext.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/conformance/decorators/decoratorMetadata.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyComponent", "Service", "decorator"] @@ -18040,6 +22209,9 @@ tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpres semantic error: Bindings mismatch: after transform: ScopeId(0): ["defaultModule", "directory", "j", "loadModule", "moduleFile", "p1", "p11", "p2", "p3", "whatToLoad"] rebuilt : ScopeId(0): ["j", "loadModule", "p1", "p11", "p2", "p3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference mismatch: after transform: ReferenceId(0): Some("directory") rebuilt : ReferenceId(0): None @@ -18188,6 +22360,9 @@ tasks/coverage/typescript/tests/cases/conformance/es2017/useObjectValuesAndEntri semantic error: Bindings mismatch: after transform: ScopeId(0): ["E", "I", "a", "entries", "entries1", "entries2", "entries3", "entries4", "entries5", "entries6", "i", "o", "values", "values1", "values2", "values3", "values4", "values5", "values6", "x"] rebuilt : ScopeId(0): ["E", "a", "entries", "entries1", "entries2", "entries3", "entries4", "entries5", "entries6", "i", "o", "values", "values1", "values2", "values3", "values4", "values5", "values6", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(2): ["A", "B", "E"] rebuilt : ScopeId(2): ["E"] @@ -18208,10 +22383,28 @@ tasks/coverage/typescript/tests/cases/conformance/es2019/importMeta/importMetaNa semantic error: Unexpected import.meta expression Unexpected import.meta expression +tasks/coverage/typescript/tests/cases/conformance/es2020/bigintMissingES2019.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/conformance/es2020/bigintMissingES2020.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/conformance/es2020/bigintMissingESNext.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/conformance/es2020/modules/exportAsNamespace5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Alias", "ns"] rebuilt : ScopeId(0): ["ns"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/es2021/logicalAssignment/logicalAssignment1.ts semantic error: Bindings mismatch: @@ -18249,6 +22442,9 @@ tasks/coverage/typescript/tests/cases/conformance/es2021/logicalAssignment/logic semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "a", "b", "c", "result"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(4): Some("a") rebuilt : ReferenceId(0): None @@ -18308,6 +22504,9 @@ tasks/coverage/typescript/tests/cases/conformance/es2021/logicalAssignment/logic semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "a", "b", "c", "result"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(4): Some("a") rebuilt : ReferenceId(0): None @@ -18345,51 +22544,91 @@ tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty11.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "c", "i"] rebuilt : ScopeId(0): ["C", "c", "i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty13.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "i"] rebuilt : ScopeId(0): ["C", "i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty14.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "i"] rebuilt : ScopeId(0): ["C", "i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty15.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "i"] rebuilt : ScopeId(0): ["C", "i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty16.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "i"] rebuilt : ScopeId(0): ["C", "i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty20.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "i"] rebuilt : ScopeId(0): ["i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty22.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty23.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I"] rebuilt : ScopeId(0): ["C"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty37.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty38.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty40.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty41.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty48.ts semantic error: Semantic Collector failed after transform @@ -18433,46 +22672,86 @@ tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty58.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["SymbolConstructor", "obj"] rebuilt : ScopeId(0): ["obj"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty60.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1", "I2", "I3", "I4", "mySymbol"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty8.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolType16.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Symbol", "sym"] rebuilt : ScopeId(0): ["sym"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolType17.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolType18.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolType19.ts semantic error: Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(0x0) rebuilt : ScopeId(1): ScopeFlags(Function) +tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/emitClassDeclarationOverloadInES6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2)] +Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/emitClassDeclarationWithConstructorInES6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] +Scope children mismatch: +after transform: ScopeId(5): [ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(4): [ScopeId(5), ScopeId(6)] + tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/emitClassDeclarationWithExtensionAndTypeArgumentInES6.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(4): [ScopeId(5)] tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/emitClassDeclarationWithTypeArgumentAndOverloadInES6.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/emitClassDeclarationWithTypeArgumentInES6.ts semantic error: Bindings mismatch: @@ -18542,7 +22821,10 @@ after transform: ScopeId(2): ScopeFlags(0x0) rebuilt : ScopeId(2): ScopeFlags(Function) tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames48_ES5.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Bindings mismatch: after transform: ScopeId(2): ["E", "x"] rebuilt : ScopeId(1): ["E"] Scope flags mismatch: @@ -18550,7 +22832,10 @@ after transform: ScopeId(2): ScopeFlags(0x0) rebuilt : ScopeId(1): ScopeFlags(Function) tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames48_ES6.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Bindings mismatch: after transform: ScopeId(2): ["E", "x"] rebuilt : ScopeId(1): ["E"] Scope flags mismatch: @@ -18577,71 +22862,173 @@ tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/compute semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "o"] rebuilt : ScopeId(0): ["o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType1_ES6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "o"] rebuilt : ScopeId(0): ["o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType2_ES5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "o"] rebuilt : ScopeId(0): ["o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType2_ES6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "o"] rebuilt : ScopeId(0): ["o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType3_ES5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "o"] rebuilt : ScopeId(0): ["o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType3_ES6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "o"] rebuilt : ScopeId(0): ["o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType4_ES5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "o"] rebuilt : ScopeId(0): ["o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType4_ES6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "o"] rebuilt : ScopeId(0): ["o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType5_ES5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "o"] rebuilt : ScopeId(0): ["o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType5_ES6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "o"] rebuilt : ScopeId(0): ["o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType6_ES5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType6_ES6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType7_ES5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "J"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType7_ES6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "J"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/accessor/decoratorOnClassAccessor1.es6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/decoratorOnClass1.es6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/decoratorOnClass2.es6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/decoratorOnClass3.es6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/decoratorOnClass4.es6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/decoratorOnClass5.es6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/decoratorOnClass6.es6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/decoratorOnClass7.es6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/decoratorOnClass8.es6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/method/decoratorOnClassMethod1.es6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/method/parameter/decoratorOnClassMethodParameter1.es6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/property/decoratorOnClassProperty1.es6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/declarationInAmbientContext.ts semantic error: Bindings mismatch: @@ -18660,11 +23047,17 @@ tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructurin semantic error: Bindings mismatch: after transform: ScopeId(0): ["F", "F1", "a1", "a2", "b1", "b21", "b3", "b4", "b52", "bar", "c0", "c1", "d1", "foo", "foo1"] rebuilt : ScopeId(0): ["a1", "a2", "b1", "b21", "b3", "b4", "b52", "bar", "c0", "c1", "d1", "foo", "foo1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringObjectBindingPatternAndAssignment1ES6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["F", "F1", "a1", "a2", "b1", "b21", "b3", "b4", "b52", "bar", "c0", "c1", "d1", "foo", "foo1"] rebuilt : ScopeId(0): ["a1", "a2", "b1", "b21", "b3", "b4", "b52", "bar", "c0", "c1", "d1", "foo", "foo1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringObjectBindingPatternAndAssignment7.ts semantic error: Bindings mismatch: @@ -18686,11 +23079,17 @@ tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructurin semantic error: Bindings mismatch: after transform: ScopeId(0): ["ISomething", "baz", "foo", "one", "two"] rebuilt : ScopeId(0): ["baz", "foo", "one", "two"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringParameterDeclaration7ES5iterable.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ISomething", "baz", "foo", "one", "two"] rebuilt : ScopeId(0): ["baz", "foo", "one", "two"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringVoid.ts semantic error: Bindings mismatch: @@ -18704,6 +23103,9 @@ tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of58. semantic error: Bindings mismatch: after transform: ScopeId(0): ["X", "Y", "arr"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(2): Some("arr") rebuilt : ReferenceId(0): None @@ -18716,6 +23118,11 @@ rebuilt : ScopeId(2): [] tasks/coverage/typescript/tests/cases/conformance/es6/moduleExportsSystem/topLevelVarHoistingCommonJS.ts semantic error: 'with' statements are not allowed +tasks/coverage/typescript/tests/cases/conformance/es6/modules/defaultExportWithOverloads01.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/conformance/es6/modules/exportsAndImports1-amd.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -18797,26 +23204,51 @@ tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateSt semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "f", "x"] rebuilt : ScopeId(0): ["f", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsWithManyCallAndMemberExpressionsES6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "f", "x"] rebuilt : ScopeId(0): ["f", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsWithOverloadResolution2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsWithOverloadResolution2_ES6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsWithTypedTags.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "f"] rebuilt : ScopeId(0): ["f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsWithTypedTagsES6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "f"] rebuilt : ScopeId(0): ["f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplatesWithTypeArguments1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Stuff", "T", "a", "b", "c", "obj"] rebuilt : ScopeId(0): ["a", "b", "c"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] Reference mismatch: after transform: ReferenceId(27): Some("obj") rebuilt : ReferenceId(8): None @@ -18824,6 +23256,11 @@ Reference mismatch: after transform: ReferenceId(34): Some("obj") rebuilt : ReferenceId(14): None +tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorOverloads4.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] + tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorOverloads5.ts semantic error: Semantic Collector failed after transform Missing SymbolId: M @@ -18831,10 +23268,23 @@ Missing SymbolId: _M Missing ReferenceId: M Missing ReferenceId: M +tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck45.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] + +tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck46.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] + tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck62.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Nothing1", "Nothing2", "Nothing3", "State", "StrategicState", "Strategy", "strategy"] rebuilt : ScopeId(0): ["Nothing1", "Nothing2", "Nothing3", "strategy"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(6), ScopeId(7), ScopeId(8)] Bindings mismatch: after transform: ScopeId(2): ["T", "gen", "stratName"] rebuilt : ScopeId(1): ["gen", "stratName"] @@ -18936,6 +23386,9 @@ tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "dec", "method"] rebuilt : ScopeId(0): ["C", "method"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(0): Some("dec") rebuilt : ReferenceId(0): None @@ -18958,6 +23411,9 @@ tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "dec", "x"] rebuilt : ScopeId(0): ["C", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(0): Some("dec") rebuilt : ReferenceId(0): None @@ -18966,6 +23422,9 @@ tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "dec", "method"] rebuilt : ScopeId(0): ["C", "method"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(0): Some("dec") rebuilt : ReferenceId(0): None @@ -18974,6 +23433,9 @@ tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["C1", "C2", "C3", "dec", "x"] rebuilt : ScopeId(0): ["C1", "C2", "C3", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Reference mismatch: after transform: ReferenceId(0): Some("dec") rebuilt : ReferenceId(0): None @@ -18988,6 +23450,9 @@ tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "dec"] rebuilt : ScopeId(0): ["C"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(0): Some("dec") rebuilt : ReferenceId(0): None @@ -19306,6 +23771,9 @@ tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/c semantic error: Bindings mismatch: after transform: ScopeId(0): ["dec", "method"] rebuilt : ScopeId(0): ["method"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(0): Some("dec") rebuilt : ReferenceId(0): None @@ -19328,6 +23796,9 @@ tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/c semantic error: Bindings mismatch: after transform: ScopeId(0): ["dec", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(0): Some("dec") rebuilt : ReferenceId(0): None @@ -19336,6 +23807,9 @@ tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/c semantic error: Bindings mismatch: after transform: ScopeId(0): ["dec", "method"] rebuilt : ScopeId(0): ["method"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(0): Some("dec") rebuilt : ReferenceId(0): None @@ -19344,6 +23818,9 @@ tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/c semantic error: Bindings mismatch: after transform: ScopeId(0): ["dec", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Reference mismatch: after transform: ReferenceId(0): Some("dec") rebuilt : ReferenceId(0): None @@ -19358,6 +23835,9 @@ tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/c semantic error: Bindings mismatch: after transform: ScopeId(0): ["dec"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(0): Some("dec") rebuilt : ReferenceId(0): None @@ -19845,6 +24325,9 @@ tasks/coverage/typescript/tests/cases/conformance/esDecorators/esDecorators-pres semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "D", "instance"] rebuilt : ScopeId(0): ["C", "D"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(5)] Reference mismatch: after transform: ReferenceId(5): Some("instance") rebuilt : ReferenceId(0): None @@ -19864,7 +24347,10 @@ after transform: ReferenceId(0): Some("metadata") rebuilt : ReferenceId(0): None tasks/coverage/typescript/tests/cases/conformance/expressions/arrayLiterals/arrayLiteralInference.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] +Bindings mismatch: after transform: ScopeId(1): ["AdvancedList", "AppType", "Composite", "HeaderDetail", "HeaderMultiDetail", "ListOnly", "ModuleSettings", "Relationship", "Report", "Standard"] rebuilt : ScopeId(1): ["AppType"] Scope flags mismatch: @@ -19881,11 +24367,17 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/arrayLiterals/arra semantic error: Bindings mismatch: after transform: ScopeId(0): ["a0", "a1", "a2", "a3", "a4", "a5", "b0", "b1", "c0", "c1", "c2", "c3", "d0", "d1", "d2", "d3", "d4", "d5", "d6", "d7", "d8", "d9", "myArray", "myArray2", "temp", "temp1", "temp2", "temp3", "temp4"] rebuilt : ScopeId(0): ["a0", "a1", "a2", "a3", "a4", "a5", "b0", "b1", "c0", "c1", "c2", "c3", "d0", "d1", "d2", "d3", "d4", "d5", "d6", "d7", "d8", "d9", "temp", "temp1", "temp2", "temp3", "temp4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/expressions/arrayLiterals/arrayLiterals2ES6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["a0", "a1", "a2", "a3", "a4", "a5", "b0", "b1", "c0", "c1", "c2", "c3", "d0", "d1", "d2", "d3", "d4", "d5", "d6", "d7", "d8", "d9", "myArray", "myArray2", "temp", "temp1", "temp2"] rebuilt : ScopeId(0): ["a0", "a1", "a2", "a3", "a4", "a5", "b0", "b1", "c0", "c1", "c2", "c3", "d0", "d1", "d2", "d3", "d4", "d5", "d6", "d7", "d8", "d9", "temp", "temp1", "temp2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/expressions/asOperator/asOpEmitParens.ts semantic error: Bindings mismatch: @@ -19901,8 +24393,21 @@ Reference mismatch: after transform: ReferenceId(2): Some("x") rebuilt : ReferenceId(2): None +tasks/coverage/typescript/tests/cases/conformance/expressions/asOperator/asOperator3.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/conformance/expressions/asOperator/asOperatorASI.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/conformance/expressions/assignmentOperator/assignmentGenericLookupTypeNarrowing.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] +Bindings mismatch: after transform: ScopeId(3): ["K", "element", "key", "x"] rebuilt : ScopeId(1): ["element", "key", "x"] @@ -19910,6 +24415,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/assignmentOperator semantic error: Bindings mismatch: after transform: ScopeId(0): ["AOrArrA", "a", "arr", "x"] rebuilt : ScopeId(0): ["a", "arr", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/additionOperator/additionOperatorWithAnyAndEveryType.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -19970,16 +24478,32 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/co semantic error: Bindings mismatch: after transform: ScopeId(0): ["A1", "A2", "A3", "A4", "A5", "A6", "B1", "B2", "B3", "B4", "B5", "B6", "Base", "a1", "a2", "a3", "a4", "a5", "a6", "b1", "b2", "b3", "b4", "b5", "b6", "base1", "base2", "r1a1", "r1a2", "r1a3", "r1a4", "r1a5", "r1a6", "r1a7", "r1b1", "r1b2", "r1b3", "r1b4", "r1b5", "r1b6", "r1b7", "r2a1", "r2a2", "r2a3", "r2a4", "r2a5", "r2a6", "r2a7", "r2b1", "r2b2", "r2b3", "r2b4", "r2b5", "r2b6", "r2b7", "r3a1", "r3a2", "r3a3", "r3a4", "r3a5", "r3a6", "r3a7", "r3b1", "r3b2", "r3b3", "r3b4", "r3b5", "r3b6", "r3b7", "r4a1", "r4a2", "r4a3", "r4a4", "r4a5", "r4a6", "r4a7", "r4b1", "r4b2", "r4b3", "r4b4", "r4b5", "r4b6", "r4b7", "r5a1", "r5a2", "r5a3", "r5a4", "r5a5", "r5a6", "r5a7", "r5b1", "r5b2", "r5b3", "r5b4", "r5b5", "r5b6", "r5b7", "r6a1", "r6a2", "r6a3", "r6a4", "r6a5", "r6a6", "r6a7", "r6b1", "r6b2", "r6b3", "r6b4", "r6b5", "r6b6", "r6b7", "r7a1", "r7a2", "r7a3", "r7a4", "r7a5", "r7a6", "r7a7", "r7b1", "r7b2", "r7b3", "r7b4", "r7b5", "r7b6", "r7b7", "r8a1", "r8a2", "r8a3", "r8a4", "r8a5", "r8a6", "r8a7", "r8b1", "r8b2", "r8b3", "r8b4", "r8b5", "r8b6", "r8b7"] rebuilt : ScopeId(0): ["A1", "A2", "B1", "B2", "Base", "a1", "a2", "a3", "a4", "a5", "a6", "b1", "b2", "b3", "b4", "b5", "b6", "base1", "base2", "r1a1", "r1a2", "r1a3", "r1a4", "r1a5", "r1a6", "r1a7", "r1b1", "r1b2", "r1b3", "r1b4", "r1b5", "r1b6", "r1b7", "r2a1", "r2a2", "r2a3", "r2a4", "r2a5", "r2a6", "r2a7", "r2b1", "r2b2", "r2b3", "r2b4", "r2b5", "r2b6", "r2b7", "r3a1", "r3a2", "r3a3", "r3a4", "r3a5", "r3a6", "r3a7", "r3b1", "r3b2", "r3b3", "r3b4", "r3b5", "r3b6", "r3b7", "r4a1", "r4a2", "r4a3", "r4a4", "r4a5", "r4a6", "r4a7", "r4b1", "r4b2", "r4b3", "r4b4", "r4b5", "r4b6", "r4b7", "r5a1", "r5a2", "r5a3", "r5a4", "r5a5", "r5a6", "r5a7", "r5b1", "r5b2", "r5b3", "r5b4", "r5b5", "r5b6", "r5b7", "r6a1", "r6a2", "r6a3", "r6a4", "r6a5", "r6a6", "r6a7", "r6b1", "r6b2", "r6b3", "r6b4", "r6b5", "r6b6", "r6b7", "r7a1", "r7a2", "r7a3", "r7a4", "r7a5", "r7a6", "r7a7", "r7b1", "r7b2", "r7b3", "r7b4", "r7b5", "r7b6", "r7b7", "r8a1", "r8a2", "r8a3", "r8a4", "r8a5", "r8a6", "r8a7", "r8b1", "r8b2", "r8b3", "r8b4", "r8b5", "r8b6", "r8b7"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8)] tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithIdenticalTypeParameter.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["T", "r1", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "t"] rebuilt : ScopeId(1): ["r1", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "t"] +tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipObjectsOnInstantiatedCallSignature.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] + +tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipObjectsOnInstantiatedConstructorSignature.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] + tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNumericLiteral.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["BrandedNum", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithOneOperandIsAny.ts semantic error: Bindings mismatch: @@ -20011,10 +24535,38 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(0x0) rebuilt : ScopeId(1): ScopeFlags(Function) +tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeObjectOnCallSignature.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeObjectOnConstructorSignature.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeObjectOnInstantiatedCallSignature.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeObjectOnInstantiatedConstructorSignature.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeObjectOnOptionalProperty.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "J", "a", "b", "ra1", "ra2", "rb1", "rb2", "rc1", "rc2", "rd1", "rd2", "re1", "re2", "rf1", "rf2", "rg1", "rg2", "rh1", "rh2"] rebuilt : ScopeId(0): ["a", "b", "ra1", "ra2", "rb1", "rb2", "rc1", "rc2", "rd1", "rd2", "re1", "re2", "rf1", "rf2", "rg1", "rg2", "rh1", "rh2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/instanceofOperator/instanceofOperatorWithInvalidStaticToString.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/instanceofOperator/instanceofOperatorWithLHSIsTypeParameter.ts semantic error: Bindings mismatch: @@ -20025,6 +24577,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/in semantic error: Bindings mismatch: after transform: ScopeId(0): ["HasInstanceOf", "HasInstanceOf1", "HasInstanceOf2", "Line", "Point", "Point3D", "Point3D2", "Rhs14", "Rhs15", "lhs0", "lhs1", "lhs2", "lhs3", "lhs4", "obj", "rhs0", "rhs1", "rhs14", "rhs15", "rhs2", "rhs3", "rhs4", "rhs5", "rhs6"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(38), ScopeId(39), ScopeId(41), ScopeId(43)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference mismatch: after transform: ReferenceId(53): Some("lhs0") rebuilt : ReferenceId(0): None @@ -20495,6 +25050,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/in semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "f1", "f2", "f3", "f4", "r1", "r2", "r3", "r4", "r5", "r6", "x"] rebuilt : ScopeId(0): ["f1", "f2", "f3", "f4", "r1", "r2", "r3", "r4", "r5", "r6", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/logicalAndOperator/logicalAndOperatorWithTypeParameters.ts semantic error: Bindings mismatch: @@ -20531,6 +25089,11 @@ Bindings mismatch: after transform: ScopeId(15): ["T", "U"] rebuilt : ScopeId(15): [] +tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/functionExpressionContextualTyping3.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/generatedContextualTyping.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -20546,7 +25109,10 @@ Namespaces exporting non-const are not supported by Babel. Change to const or se Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/parenthesizedContexualTyping3.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14)] +Bindings mismatch: after transform: ScopeId(3): ["T", "g", "tempStrs", "x"] rebuilt : ScopeId(1): ["g", "tempStrs", "x"] @@ -20559,6 +25125,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/s semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "CBase", "ContextualType"] rebuilt : ScopeId(0): ["C", "CBase"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(1): [] @@ -20567,6 +25136,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/t semantic error: Bindings mismatch: after transform: ScopeId(0): ["FuncType", "tempTag1"] rebuilt : ScopeId(0): ["tempTag1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] Bindings mismatch: after transform: ScopeId(4): ["T", "rest"] rebuilt : ScopeId(1): ["rest"] @@ -20581,11 +25153,17 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/t semantic error: Bindings mismatch: after transform: ScopeId(0): ["FuncType1", "FuncType2", "tempTag2"] rebuilt : ScopeId(0): ["tempTag2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] tasks/coverage/typescript/tests/cases/conformance/expressions/elementAccess/stringEnumInElementAccess01.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E", "Item", "e", "item", "snb"] rebuilt : ScopeId(0): ["E", "snb"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(1): ["A", "B", "C", "E"] rebuilt : ScopeId(1): ["E"] @@ -20603,32 +25181,52 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/call semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "D", "X", "a", "foo", "obj", "xa", "z"] rebuilt : ScopeId(0): ["C", "D", "a", "foo", "obj", "xa", "z"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5)] tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/callWithSpreadES6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "D", "X", "a", "foo", "obj", "xa", "z"] rebuilt : ScopeId(0): ["C", "D", "a", "foo", "obj", "xa", "z"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5)] tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/newWithSpread.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "D", "a", "b", "c", "d", "e", "f", "f2", "g", "h", "i"] rebuilt : ScopeId(0): ["B", "a", "b", "c", "d", "e", "f", "f2", "g", "h", "i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/newWithSpreadES5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "D", "a", "b", "c", "d", "e", "f", "f2", "g", "h", "i"] rebuilt : ScopeId(0): ["B", "a", "b", "c", "d", "e", "f", "f2", "g", "h", "i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/newWithSpreadES6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "D", "a", "b", "c", "d", "e", "f", "f2", "g", "h", "i"] rebuilt : ScopeId(0): ["B", "a", "b", "c", "d", "e", "f", "f2", "g", "h", "i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/typeArgumentInferenceTransitiveConstraints.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["A", "B", "C", "a", "b", "c"] rebuilt : ScopeId(1): ["a", "b", "c"] +tasks/coverage/typescript/tests/cases/conformance/expressions/functions/contextuallyTypedFunctionExpressionsAndReturnAnnotations.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + tasks/coverage/typescript/tests/cases/conformance/expressions/functions/typeOfThisInFunctionExpression.ts semantic error: Semantic Collector failed after transform Missing SymbolId: M @@ -20640,25 +25238,40 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/functions/voidPara semantic error: Bindings mismatch: after transform: ScopeId(0): ["Obj", "gg", "o"] rebuilt : ScopeId(0): ["gg"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(4): Some("o") rebuilt : ReferenceId(2): None tasks/coverage/typescript/tests/cases/conformance/expressions/newOperator/newOperatorConformance.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(14)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8)] +Bindings mismatch: after transform: ScopeId(4): ["T"] rebuilt : ScopeId(4): [] Bindings mismatch: after transform: ScopeId(10): ["T", "p", "s"] rebuilt : ScopeId(6): ["p", "s"] +Scope children mismatch: +after transform: ScopeId(10): [ScopeId(11)] +rebuilt : ScopeId(6): [] Bindings mismatch: after transform: ScopeId(12): ["T", "p", "s"] rebuilt : ScopeId(7): ["p", "s"] +Scope children mismatch: +after transform: ScopeId(12): [ScopeId(13)] +rebuilt : ScopeId(7): [] tasks/coverage/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/nullishCoalescingOperator1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "a1", "a2", "a3", "a4", "aa1", "aa2", "aa3", "aa4", "b1", "b2", "b3", "b4", "bb1", "bb2", "bb3", "bb4", "c1", "c2", "c3", "c4", "cc1", "cc2", "cc3", "cc4", "d1", "d2", "d3", "d4", "dd1", "dd2", "dd3", "dd4", "maybeBool"] rebuilt : ScopeId(0): ["aa1", "aa2", "aa3", "aa4", "bb1", "bb2", "bb3", "bb4", "cc1", "cc2", "cc3", "cc4", "dd1", "dd2", "dd3", "dd4", "maybeBool"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] Reference mismatch: after transform: ReferenceId(4): Some("a1") rebuilt : ReferenceId(0): None @@ -20708,6 +25321,11 @@ Reference mismatch: after transform: ReferenceId(19): Some("d4") rebuilt : ReferenceId(15): None +tasks/coverage/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/nullishCoalescingOperator10.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/nullishCoalescingOperator2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["a1", "a2", "a3", "a4", "a5", "a6", "a7", "a8", "a9", "aa1", "aa2", "aa3", "aa4", "aa5", "aa6", "aa7", "aa8", "aa9"] @@ -20796,6 +25414,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/nullishCoalescingO semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "b", "n1", "n2", "n3"] rebuilt : ScopeId(0): ["n1", "n2", "n3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(0): Some("a") rebuilt : ReferenceId(0): None @@ -21013,6 +25634,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/c semantic error: Bindings mismatch: after transform: ScopeId(0): ["T", "o1", "o2", "o3", "o4", "o5", "v"] rebuilt : ScopeId(0): ["v"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(0): Some("o1") rebuilt : ReferenceId(0): None @@ -21102,6 +25726,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/c semantic error: Bindings mismatch: after transform: ScopeId(0): ["Y", "value"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(3): Some("value") rebuilt : ReferenceId(0): None @@ -21165,6 +25792,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/e semantic error: Bindings mismatch: after transform: ScopeId(0): ["T", "o1", "o2", "o3", "o4", "o5", "o6"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(0): Some("o1") rebuilt : ReferenceId(0): None @@ -21218,6 +25848,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/o semantic error: Bindings mismatch: after transform: ScopeId(0): ["b1", "b2", "b3", "b4", "b5", "b6", "b7", "b8", "fnu", "ofnu", "osu", "su", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8"] rebuilt : ScopeId(0): ["b1", "b2", "b3", "b4", "b5", "b6", "b7", "b8", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(2): Some("su") rebuilt : ReferenceId(0): None @@ -21261,6 +25894,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/p semantic error: Bindings mismatch: after transform: ScopeId(0): ["T", "o1", "o2", "o3", "o4", "o5", "o6"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(0): Some("o1") rebuilt : ReferenceId(0): None @@ -21317,29 +25953,64 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGua semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "D", "I1", "a", "b", "f1", "obj", "subType", "union", "union2", "union3"] rebuilt : ScopeId(0): ["A", "B", "C", "D", "a", "b", "f1", "obj", "subType", "union", "union2", "union3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(10), ScopeId(11)] + +tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardFunctionGenerics.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardIntersectionTypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "Beast", "Legged", "Winged", "X", "Y", "Z", "beastFoo", "f1", "hasLegs", "hasWings", "identifyBeast", "isB", "union"] rebuilt : ScopeId(0): ["beastFoo", "f1", "hasLegs", "hasWings", "identifyBeast", "isB", "union"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(32)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(20)] tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardNarrowsPrimitiveIntersection.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Tag", "Tag2", "value"] rebuilt : ScopeId(0): ["Tag2", "value"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] Scope flags mismatch: after transform: ScopeId(7): ScopeFlags(0x0) rebuilt : ScopeId(3): ScopeFlags(Function) +tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardNarrowsToLiteralType.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardNarrowsToLiteralTypeUnion.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormFunctionEquality.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormInstanceOfOnInterface.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C1", "C2", "D1", "c1", "c1Orc2", "c2", "c2Ord1", "d1", "num", "r2", "str", "strOrNum"] rebuilt : ScopeId(0): ["c1", "c1Orc2", "c2", "c2Ord1", "d1", "num", "r2", "str", "strOrNum"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormIsTypeOnInterfaces.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C1", "C2", "D1", "c1", "c1Orc2", "c2", "c2Ord1", "d1", "isC1", "isC2", "isD1", "num", "r2", "str", "strOrNum"] rebuilt : ScopeId(0): ["c1", "c1Orc2", "c2", "c2Ord1", "d1", "isC1", "isC2", "isD1", "num", "r2", "str", "strOrNum"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormTypeOfFunction.ts semantic error: Bindings mismatch: @@ -21352,10 +26023,18 @@ Bindings mismatch: after transform: ScopeId(25): ["S", "reducer", "rootReducer"] rebuilt : ScopeId(25): ["reducer", "rootReducer"] +tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormTypeOfPrimitiveSubtype.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] + tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFromPropNameInUnionType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "AWithOptionalProp", "B", "BWithOptionalProp", "C", "ClassWithUnionProp", "D", "InMemberOfClass", "Indexed", "NestedClassWithProp", "SelfAssert", "anonymousClasses", "f", "inParenthesizedExpression", "inProperty", "innestedProperty", "multipleClasses", "namedClasses", "positiveTestClassesWithOptionalProperties"] rebuilt : ScopeId(0): ["A", "AWithOptionalProp", "B", "BWithOptionalProp", "C", "ClassWithUnionProp", "D", "InMemberOfClass", "NestedClassWithProp", "SelfAssert", "anonymousClasses", "f", "inParenthesizedExpression", "inProperty", "innestedProperty", "multipleClasses", "namedClasses", "positiveTestClassesWithOptionalProperties"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(8), ScopeId(11), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(19), ScopeId(22), ScopeId(23), ScopeId(26), ScopeId(27), ScopeId(30), ScopeId(34), ScopeId(38), ScopeId(39)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(8), ScopeId(11), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(19), ScopeId(22), ScopeId(23), ScopeId(26), ScopeId(27), ScopeId(30), ScopeId(34), ScopeId(38)] tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardsInFunctionAndModuleBlock.ts semantic error: Semantic Collector failed after transform @@ -21392,31 +26071,49 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typePre semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/expressions/typeSatisfaction/typeSatisfaction_contextualTyping1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Predicates", "p"] rebuilt : ScopeId(0): ["p"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/expressions/typeSatisfaction/typeSatisfaction_contextualTyping3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["StringOrNumberFunc", "fn", "obj", "obj2"] rebuilt : ScopeId(0): ["fn", "obj", "obj2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/conformance/expressions/typeSatisfaction/typeSatisfaction_ensureInterfaceImpl.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Movable", "car"] rebuilt : ScopeId(0): ["car"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/conformance/expressions/typeSatisfaction/typeSatisfaction_propertyValueConformance1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Facts", "M", "m", "x", "x2"] rebuilt : ScopeId(0): ["m", "x", "x2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/expressions/typeSatisfaction/typeSatisfaction_propertyValueConformance2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Facts", "M", "m", "x", "x2"] rebuilt : ScopeId(0): ["m", "x", "x2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/expressions/unaryOperators/bitwiseNotOperator/bitwiseNotOperatorWithBooleanType.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -21479,6 +26176,9 @@ tasks/coverage/typescript/tests/cases/conformance/externalModules/amdImportNotAs semantic error: Bindings mismatch: after transform: ScopeId(0): ["C1", "E1", "I1", "M1"] rebuilt : ScopeId(0): ["C1", "E1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(5): ["A", "B", "C", "E1"] rebuilt : ScopeId(2): ["E1"] @@ -21501,6 +26201,9 @@ tasks/coverage/typescript/tests/cases/conformance/externalModules/commonJSImport semantic error: Bindings mismatch: after transform: ScopeId(0): ["C1", "E1", "I1", "M1"] rebuilt : ScopeId(0): ["C1", "E1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(5): ["A", "B", "C", "E1"] rebuilt : ScopeId(2): ["E1"] @@ -21508,6 +26211,16 @@ Scope flags mismatch: after transform: ScopeId(5): ScopeFlags(StrictMode) rebuilt : ScopeId(2): ScopeFlags(StrictMode | Function) +tasks/coverage/typescript/tests/cases/conformance/externalModules/es6/es6modulekindWithES5Target.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] + +tasks/coverage/typescript/tests/cases/conformance/externalModules/es6/es6modulekindWithES5Target11.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/conformance/externalModules/es6/es6modulekindWithES5Target12.ts semantic error: Semantic Collector failed after transform Missing SymbolId: _C @@ -21531,6 +26244,11 @@ Missing ReferenceId: _F Missing ReferenceId: F Missing ReferenceId: F +tasks/coverage/typescript/tests/cases/conformance/externalModules/es6/es6modulekindWithES5Target3.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/conformance/externalModules/es6/es6modulekindWithES5Target5.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["E1", "value1"] @@ -21552,6 +26270,16 @@ Missing SymbolId: _N Missing ReferenceId: N Missing ReferenceId: N +tasks/coverage/typescript/tests/cases/conformance/externalModules/esnext/esnextmodulekindWithES5Target.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] + +tasks/coverage/typescript/tests/cases/conformance/externalModules/esnext/esnextmodulekindWithES5Target11.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/conformance/externalModules/esnext/esnextmodulekindWithES5Target12.ts semantic error: Semantic Collector failed after transform Missing SymbolId: _C @@ -21575,6 +26303,11 @@ Missing ReferenceId: _F Missing ReferenceId: F Missing ReferenceId: F +tasks/coverage/typescript/tests/cases/conformance/externalModules/esnext/esnextmodulekindWithES5Target3.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/conformance/externalModules/esnext/esnextmodulekindWithES5Target5.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["E1", "value1"] @@ -21596,6 +26329,11 @@ Missing SymbolId: _N Missing ReferenceId: N Missing ReferenceId: N +tasks/coverage/typescript/tests/cases/conformance/externalModules/exportAmbientClassNameWithObject.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/conformance/externalModules/exportAssignDottedName.ts semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. Please consider using `import lib from '...';` alongside Typescript's --allowSyntheticDefaultImports option, or add @babel/plugin-transform-modules-commonjs to your Babel config. @@ -21665,11 +26403,17 @@ tasks/coverage/typescript/tests/cases/conformance/externalModules/exportTypeMerg semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyType", "Something", "myValue"] rebuilt : ScopeId(0): ["Something", "myValue"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/externalModules/globalAugmentationModuleResolution.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["global"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/externalModules/importImportOnlyModule.ts semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. @@ -21711,11 +26455,17 @@ tasks/coverage/typescript/tests/cases/conformance/externalModules/topLevelAmbien semantic error: Bindings mismatch: after transform: ScopeId(0): ["foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/externalModules/topLevelAwait.1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "C1", "C2", "C3", "_await", "dec", "x", "y"] rebuilt : ScopeId(0): ["C", "C1", "C2", "C3", "x", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] Reference mismatch: after transform: ReferenceId(11): Some("dec") rebuilt : ReferenceId(11): None @@ -21734,11 +26484,17 @@ tasks/coverage/typescript/tests/cases/conformance/externalModules/typeAndNamespa semantic error: Bindings mismatch: after transform: ScopeId(0): ["Drink"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/ambient.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "ns"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/cjsImportInES2015.ts semantic error: Bindings mismatch: @@ -21754,11 +26510,17 @@ tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/expor semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/implementsClause.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Component"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/importDefaultNamedType.ts semantic error: Bindings mismatch: @@ -21779,11 +26541,17 @@ tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/merge semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/namespaceImportTypeQuery2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/nestedNamespace.ts semantic error: Semantic Collector failed after transform @@ -21798,11 +26566,17 @@ tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/prese semantic error: Bindings mismatch: after transform: ScopeId(0): ["D", "b", "c"] rebuilt : ScopeId(0): ["b", "c"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/preserveValueImports_errors.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/typeQuery.ts semantic error: Bindings mismatch: @@ -21813,6 +26587,14 @@ tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnlyMerge1 semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/conformance/externalModules/typeValueMerge1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/externalModules/verbatimModuleSyntaxConstEnum.ts semantic error: Bindings mismatch: @@ -21834,16 +26616,35 @@ tasks/coverage/typescript/tests/cases/conformance/externalModules/verbatimModule semantic error: Bindings mismatch: after transform: ScopeId(0): ["Typey"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/conformance/functions/functionOverloadCompatibilityWithVoid02.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/functions/functionOverloadCompatibilityWithVoid03.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/functions/strictBindCallApply2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "Test", "fb", "fn"] rebuilt : ScopeId(0): ["fb", "fn"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/generators/generatorReturnTypeIndirectReferenceToGlobalType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1", "f1"] rebuilt : ScopeId(0): ["f1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/generators/generatorYieldContextualType.ts semantic error: Semantic Collector failed after transform @@ -21872,6 +26673,9 @@ tasks/coverage/typescript/tests/cases/conformance/inferFromBindingPattern.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Person", "SelectProps", "SelectResult", "any", "foo", "isAny", "isStringTuple", "john", "nufinspecial", "person", "personAgain", "whatever", "x", "x1", "x2", "x3"] rebuilt : ScopeId(0): ["any", "foo", "isAny", "isStringTuple", "john", "nufinspecial", "person", "personAgain", "whatever", "x", "x1", "x2", "x3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(4): ["T"] rebuilt : ScopeId(1): [] @@ -21880,6 +26684,9 @@ tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["M", "M2", "N"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/mergeThreeInterfaces.ts semantic error: Semantic Collector failed after transform @@ -21964,11 +26771,17 @@ tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "M", "M2", "M3"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/mergedInterfacesWithIndexers.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "a", "r", "r2", "r3"] rebuilt : ScopeId(0): ["a", "r", "r2", "r3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/mergedInterfacesWithMultipleBases.ts semantic error: Semantic Collector failed after transform @@ -21988,6 +26801,9 @@ tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "C", "C2", "C3", "C4", "D"] rebuilt : ScopeId(0): ["C", "C2", "C3", "C4", "D"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] @@ -22005,6 +26821,9 @@ tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "D", "b", "c", "d", "r", "r2", "r3"] rebuilt : ScopeId(0): ["b", "c", "d", "r", "r2", "r3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(6), ScopeId(9), ScopeId(12), ScopeId(15), ScopeId(17), ScopeId(19)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/twoMergedInterfacesWithDifferingOverloads2.ts semantic error: Semantic Collector failed after transform @@ -22024,46 +26843,73 @@ tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclaratio semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "Derived"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceExtendsObjectIntersection.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C1", "C2", "C20", "C21", "C22", "C23", "C3", "C4", "C5", "C6", "C7", "Constructor", "EX", "I1", "I10", "I11", "I12", "I13", "I2", "I20", "I21", "I22", "I23", "I3", "I4", "I5", "I6", "I7", "Identifiable", "NX", "T1", "T10", "T11", "T12", "T13", "T2", "T3", "T4", "T5", "T6", "T7"] rebuilt : ScopeId(0): ["C1", "C2", "C20", "C21", "C22", "C23", "C3", "C4", "C5", "C6", "C7"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceThatHidesBaseProperty.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "Derived"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithCallAndConstructSignature.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "f", "r", "r2"] rebuilt : ScopeId(0): ["f", "r", "r2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithCallSignaturesThatHidesBaseSignature.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Derived", "Foo", "d", "r"] rebuilt : ScopeId(0): ["d", "r"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithCallSignaturesThatHidesBaseSignature2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Derived", "Foo", "d", "r"] rebuilt : ScopeId(0): ["d", "r"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithConstructSignaturesThatHidesBaseSignature.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Derived", "Foo", "d", "r"] rebuilt : ScopeId(0): ["d", "r"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithConstructSignaturesThatHidesBaseSignature2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Derived", "Foo", "d", "r"] rebuilt : ScopeId(0): ["d", "r"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithOverloadedCallAndConstructSignatures.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "f", "r1", "r2", "r3", "r4"] rebuilt : ScopeId(0): ["f", "r1", "r2", "r3", "r4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithPropertyOfEveryType.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -22072,11 +26918,17 @@ tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclaratio semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "f", "r", "r2", "r3", "r4"] rebuilt : ScopeId(0): ["f", "r", "r2", "r3", "r4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/interfaces/interfacesExtendingClasses/interfaceExtendingClass.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "I", "f", "i", "r1", "r2", "r3"] rebuilt : ScopeId(0): ["Foo", "f", "i", "r1", "r2", "r3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/AmbientModuleAndNonAmbientClassWithSameNameAndCommonRoot.ts semantic error: Semantic Collector failed after transform @@ -22196,6 +27048,9 @@ tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMer semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "X", "l", "p"] rebuilt : ScopeId(0): ["l", "p"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(8), ScopeId(13), ScopeId(17)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/TwoInternalModulesThatMergeEachWithExportedAndNonExportedLocalVarsOfTheSameName.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -22204,6 +27059,9 @@ tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMer semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "X", "l", "p"] rebuilt : ScopeId(0): ["l", "p"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(14), ScopeId(18)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMerging/TwoInternalModulesThatMergeEachWithExportedModulesOfTheSameName.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -22324,6 +27182,9 @@ tasks/coverage/typescript/tests/cases/conformance/internalModules/exportDeclarat semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/internalModules/exportDeclarations/ExportInterfaceWithInaccessibleTypeInTypeParameterConstraint.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -22409,36 +27270,57 @@ tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag7.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag8.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag9.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/inferThis.ts semantic error: Cannot use export statement outside a module @@ -22452,6 +27334,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocLinkTag1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocLinkTag2.ts semantic error: Bindings mismatch: @@ -22462,16 +27347,25 @@ tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocLinkTag3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocLinkTag4.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocLinkTag5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocParseMatchingBackticks.ts semantic error: Cannot use export statement outside a module @@ -22480,6 +27374,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocTwoLineTypedef.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["LoadCallback"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/overloadTag3.ts semantic error: Cannot use export statement outside a module @@ -22488,6 +27385,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsdoc/typeParameterExtendsUnio semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "f", "f2"] rebuilt : ScopeId(0): ["f", "f2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(2): ["T", "a"] rebuilt : ScopeId(1): ["a"] @@ -22504,11 +27404,17 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxChildrenProperty10 semantic error: Bindings mismatch: after transform: ScopeId(0): ["Button", "JSX", "_jsxFileName", "_reactJsxRuntime", "k1", "k2", "k3", "k4"] rebuilt : ScopeId(0): ["Button", "_jsxFileName", "_reactJsxRuntime", "k1", "k2", "k3", "k4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxChildrenProperty11.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["Button", "JSX", "_jsxFileName", "_reactJsxRuntime", "k1", "k2", "k3", "k4"] rebuilt : ScopeId(0): ["Button", "_jsxFileName", "_reactJsxRuntime", "k1", "k2", "k3", "k4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxChildrenProperty12.tsx semantic error: Semantic Collector failed after transform @@ -22544,6 +27450,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxIntersectionElemen semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "JSX", "_jsxFileName", "_reactJsxRuntime", "x", "y"] rebuilt : ScopeId(0): ["C", "_jsxFileName", "_reactJsxRuntime", "x", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(5): ["T"] rebuilt : ScopeId(1): [] @@ -22552,6 +27461,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxSubtleSkipContextS semantic error: Bindings mismatch: after transform: ScopeId(0): ["AsyncLoader", "AsyncLoaderProps", "ErrorResult", "React", "_jsxFileName", "load", "loader"] rebuilt : ScopeId(0): ["AsyncLoader", "React", "_jsxFileName", "load", "loader"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] Bindings mismatch: after transform: ScopeId(3): ["TResult"] rebuilt : ScopeId(1): [] @@ -22560,6 +27472,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxUnionSFXContextual semantic error: Bindings mismatch: after transform: ScopeId(0): ["ComponentWithUnion", "HereIsTheError", "PM", "PS", "React", "_jsxFileName"] rebuilt : ScopeId(0): ["ComponentWithUnion", "HereIsTheError", "React", "_jsxFileName"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] tasks/coverage/typescript/tests/cases/conformance/jsx/commentEmittingInPreserveJsx1.tsx semantic error: Semantic Collector failed after transform @@ -22580,6 +27495,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/jsxParsingError4.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "React", "_jsxFileName", "a", "b"] rebuilt : ScopeId(0): ["_jsxFileName", "a", "b"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(1): Some("React") rebuilt : ReferenceId(0): None @@ -22676,6 +27594,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxAttributeResolution.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxAttributeResolution16.tsx semantic error: Semantic Collector failed after transform @@ -22686,11 +27607,17 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxAttributeResolution8.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "_jsxFileName", "_reactJsxRuntime", "x"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxCorrectlyParseLessThanComparison1.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "React", "ShortDetails", "_jsxFileName"] rebuilt : ScopeId(0): ["ShortDetails", "_jsxFileName"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(5): Some("React") rebuilt : ReferenceId(1): None @@ -22709,11 +27636,17 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxDynamicTagName4.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["CustomTag", "JSX", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["CustomTag", "_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxDynamicTagName6.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "_jsxFileName", "_reactJsxRuntime", "foo", "t"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime", "foo", "t"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution.tsx semantic error: Semantic Collector failed after transform @@ -22728,41 +27661,65 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution13.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "Obj1", "_jsxFileName", "_reactJsxRuntime", "obj1"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime", "obj1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution14.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "Obj1", "_jsxFileName", "_reactJsxRuntime", "obj1"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime", "obj1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution17.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "elements1", "elements2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(6)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution19.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "MyClass"] rebuilt : ScopeId(0): ["MyClass"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution2.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution5.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxEmit1.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "SomeClass", "_jsxFileName", "_reactJsxRuntime", "openClosed1", "openClosed2", "openClosed3", "openClosed4", "openClosed5", "p", "selfClosed1", "selfClosed2", "selfClosed3", "selfClosed4", "selfClosed5", "selfClosed6", "selfClosed7", "whitespace1", "whitespace2", "whitespace3"] rebuilt : ScopeId(0): ["SomeClass", "_jsxFileName", "_reactJsxRuntime", "openClosed1", "openClosed2", "openClosed3", "openClosed4", "openClosed5", "p", "selfClosed1", "selfClosed2", "selfClosed3", "selfClosed4", "selfClosed5", "selfClosed6", "selfClosed7", "whitespace1", "whitespace2", "whitespace3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxEmit2.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "_jsxFileName", "_reactJsxRuntime", "p1", "p2", "p3", "spreads1", "spreads2", "spreads3", "spreads4", "spreads5"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime", "p1", "p2", "p3", "spreads1", "spreads2", "spreads3", "spreads4", "spreads5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxEmitSpreadAttribute.ts semantic error: Bindings mismatch: @@ -22829,11 +27786,17 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxFragmentPreserveEmit.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "React", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxFragmentReactEmit.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "React", "_jsxFileName"] rebuilt : ScopeId(0): ["_jsxFileName"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(1): Some("React") rebuilt : ReferenceId(0): None @@ -22950,6 +27913,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxInArrowFunction.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxNamespacedAttributeName1.tsx semantic error: Namespace tags are not supported by default. React's JSX doesn't support namespace tags. You can set `throwIfNamespace: false` to bypass this warning. @@ -22969,6 +27935,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxOpeningClosingNames.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "JSX", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(2): Some("A") rebuilt : ReferenceId(2): None @@ -22977,11 +27946,17 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxParseTests1.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "_jsxFileName", "_reactJsxRuntime", "x"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxParseTests2.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "_jsxFileName", "_reactJsxRuntime", "x"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxPreserveEmit1.tsx semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -22994,6 +27969,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxPreserveEmit3.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactComponentWithDefaultTypeParameter1.tsx semantic error: Semantic Collector failed after transform @@ -23009,6 +27987,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactEmit1.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "React", "SomeClass", "_jsxFileName", "openClosed1", "openClosed2", "openClosed3", "openClosed4", "openClosed5", "p", "selfClosed1", "selfClosed2", "selfClosed3", "selfClosed4", "selfClosed5", "selfClosed6", "selfClosed7", "whitespace1", "whitespace2", "whitespace3"] rebuilt : ScopeId(0): ["SomeClass", "_jsxFileName", "openClosed1", "openClosed2", "openClosed3", "openClosed4", "openClosed5", "p", "selfClosed1", "selfClosed2", "selfClosed3", "selfClosed4", "selfClosed5", "selfClosed6", "selfClosed7", "whitespace1", "whitespace2", "whitespace3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference mismatch: after transform: ReferenceId(17): Some("React") rebuilt : ReferenceId(0): None @@ -23077,6 +28058,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactEmit2.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "React", "_jsxFileName", "p1", "p2", "p3", "spreads1", "spreads2", "spreads3", "spreads4", "spreads5"] rebuilt : ScopeId(0): ["_jsxFileName", "p1", "p2", "p3", "spreads1", "spreads2", "spreads3", "spreads4", "spreads5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(15): Some("React") rebuilt : ReferenceId(0): None @@ -23097,6 +28081,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactEmit3.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo", "JSX", "React", "_jsxFileName", "baz"] rebuilt : ScopeId(0): ["_jsxFileName"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(21): Some("React") rebuilt : ReferenceId(0): None @@ -23132,16 +28119,25 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactEmit5.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactEmit6.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactEmitEntities.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "React", "_jsxFileName"] rebuilt : ScopeId(0): ["_jsxFileName"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(1): Some("React") rebuilt : ReferenceId(0): None @@ -23187,6 +28183,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactEmitWhitespace.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "React", "_jsxFileName", "p"] rebuilt : ScopeId(0): ["_jsxFileName", "p"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(4): Some("React") rebuilt : ReferenceId(0): None @@ -23225,6 +28224,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactEmitWhitespace2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "React", "_jsxFileName"] rebuilt : ScopeId(0): ["_jsxFileName"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(3): Some("React") rebuilt : ReferenceId(0): None @@ -23310,6 +28312,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxStatelessFunctionCompon semantic error: Bindings mismatch: after transform: ScopeId(0): ["Context", "_jsxFileName", "_reactJsxRuntime", "obj2", "three1", "three2", "three3", "two1", "two2", "two3", "two4", "two5"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime", "obj2", "three1", "three2", "three3", "two1", "two2", "two3", "two4", "two5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxStatelessFunctionComponentOverload6.tsx semantic error: Semantic Collector failed after transform @@ -23391,6 +28396,9 @@ tasks/coverage/typescript/tests/cases/conformance/moduleResolution/resolutionMod semantic error: Bindings mismatch: after transform: ScopeId(0): ["Default", "Import", "ImportRelative", "Require", "RequireRelative"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/moduleResolution/resolvesWithoutExportsDiagnostic1.ts semantic error: Bindings mismatch: @@ -23437,6 +28445,9 @@ tasks/coverage/typescript/tests/cases/conformance/nonjsExtensions/declarationFil semantic error: Bindings mismatch: after transform: ScopeId(0): ["HTML5Element", "blogPost", "doc"] rebuilt : ScopeId(0): ["HTML5Element", "blogPost"] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [] Reference mismatch: after transform: ReferenceId(1): Some("doc") rebuilt : ReferenceId(0): None @@ -23445,6 +28456,9 @@ tasks/coverage/typescript/tests/cases/conformance/nonjsExtensions/declarationFil semantic error: Bindings mismatch: after transform: ScopeId(0): ["HTML5Element", "blogPost", "doc"] rebuilt : ScopeId(0): ["HTML5Element", "blogPost"] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [] Reference mismatch: after transform: ReferenceId(1): Some("doc") rebuilt : ReferenceId(0): None @@ -23458,8 +28472,29 @@ after transform: ReferenceId(0): Some("val") rebuilt : ReferenceId(0): None tasks/coverage/typescript/tests/cases/conformance/nonjsExtensions/declarationFilesForNodeNativeModules.ts -semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. -Please consider using `import lib from '...';` alongside Typescript's --allowSyntheticDefaultImports option, or add @babel/plugin-transform-modules-commonjs to your Babel config. +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration16.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration17.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration19.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration20.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/EnumDeclarations/parserEnum1.ts semantic error: Bindings mismatch: @@ -23502,6 +28537,9 @@ tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/EnumDeclara semantic error: Bindings mismatch: after transform: ScopeId(0): ["E"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/EnumDeclarations/parserEnumDeclaration5.ts semantic error: Bindings mismatch: @@ -23553,11 +28591,22 @@ tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecove semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration5.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration8.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["M"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserGenericClass1.ts semantic error: Bindings mismatch: @@ -23578,76 +28627,121 @@ tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/InterfaceDe semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/InterfaceDeclarations/parserInterfaceDeclaration7.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/InterfaceDeclarations/parserInterfaceDeclaration9.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1", "I2", "I3"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature10.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature11.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature12.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature4.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature7.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature8.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature9.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModule1.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -23658,41 +28752,65 @@ tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDecla semantic error: Bindings mismatch: after transform: ScopeId(0): ["string", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration12.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration4.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["M"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["number"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration7.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["number"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration8.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["a"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration9.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["a"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertyAssignments/parserFunctionPropertyAssignment4.ts semantic error: Bindings mismatch: @@ -23703,71 +28821,118 @@ tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySig semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature10.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature11.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature12.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature4.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature7.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature8.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature9.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Protected/Protected8.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegressionTests/parser643728.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegressionTests/parser645484.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegularExpressions/parserRegularExpression6.ts semantic error: Bindings mismatch: @@ -23784,11 +28949,17 @@ tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Symbols/par semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserExportAsFunctionIdentifier.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "f", "x"] rebuilt : ScopeId(0): ["f", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserNotRegex2.ts semantic error: Bindings mismatch: @@ -23808,26 +28979,56 @@ tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserOptio semantic error: Bindings mismatch: after transform: ScopeId(0): ["PropertyDescriptor2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserOverloadOnConstants1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Document"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Symbols/parserSymbolIndexer1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Symbols/parserSymbolProperty1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Symbols/parserSymbolProperty2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Symbols/parserSymbolProperty3.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Symbols/parserSymbolProperty4.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Symbols/parserSymbolProperty8.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/salsa/annotatedThisPropertyInitializerDoesntNarrow.ts semantic error: Cannot use export statement outside a module @@ -23836,6 +29037,9 @@ tasks/coverage/typescript/tests/cases/conformance/salsa/inferingFromAny.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "a", "t"] rebuilt : ScopeId(0): ["a", "t"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(20), ScopeId(22)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/salsa/moduleExportAlias.ts semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. @@ -23848,11 +29052,22 @@ tasks/coverage/typescript/tests/cases/conformance/salsa/propertyAssignmentUsePar semantic error: Bindings mismatch: after transform: ScopeId(0): ["N", "ignoreJsdoc", "inlined", "interfaced"] rebuilt : ScopeId(0): ["ignoreJsdoc", "inlined", "interfaced"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] + +tasks/coverage/typescript/tests/cases/conformance/salsa/sourceFileMergeWithFunction.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/salsa/typeFromPropertyAssignment30.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Combo", "c"] rebuilt : ScopeId(0): ["c"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/salsa/typeFromPropertyAssignmentWithExport.ts semantic error: Cannot use export statement outside a module @@ -24101,6 +29316,9 @@ tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["Point", "a", "declSpace", "fn", "p", "x"] rebuilt : ScopeId(0): ["a", "declSpace", "fn", "p", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5)] tasks/coverage/typescript/tests/cases/conformance/statements/forStatements/forStatements.ts semantic error: Semantic Collector failed after transform @@ -24117,6 +29335,9 @@ tasks/coverage/typescript/tests/cases/conformance/statements/forStatements/forSt semantic error: Bindings mismatch: after transform: ScopeId(0): ["Point", "a", "declSpace", "fn", "p", "x"] rebuilt : ScopeId(0): ["a", "declSpace", "fn", "p", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] tasks/coverage/typescript/tests/cases/conformance/statements/ifDoWhileStatements/ifDoWhileStatements.ts semantic error: Semantic Collector failed after transform @@ -24141,6 +29362,9 @@ tasks/coverage/typescript/tests/cases/conformance/statements/returnStatements/re semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "D", "I", "fn1", "fn10", "fn11", "fn12", "fn13", "fn2", "fn3", "fn4", "fn5", "fn6", "fn7", "fn8"] rebuilt : ScopeId(0): ["C", "D", "fn1", "fn10", "fn11", "fn12", "fn13", "fn2", "fn3", "fn4", "fn5", "fn6", "fn7", "fn8"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15)] tasks/coverage/typescript/tests/cases/conformance/statements/throwStatements/throwInEnclosingStatements.ts semantic error: Bindings mismatch: @@ -24165,6 +29389,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/any/assignEveryTypeToAny semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "E", "I", "a", "b", "c", "d", "e", "e2", "f", "g", "h", "i", "j", "x"] rebuilt : ScopeId(0): ["C", "E", "a", "b", "c", "d", "e", "e2", "f", "g", "h", "i", "j", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] Bindings mismatch: after transform: ScopeId(1): ["A", "E"] rebuilt : ScopeId(1): ["E"] @@ -24178,23 +29405,40 @@ Bindings mismatch: after transform: ScopeId(6): ["T", "a"] rebuilt : ScopeId(5): ["a"] +tasks/coverage/typescript/tests/cases/conformance/types/asyncGenerators/types.asyncGenerators.es2018.1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(49): [ScopeId(50)] +rebuilt : ScopeId(49): [] + tasks/coverage/typescript/tests/cases/conformance/types/conditional/variance.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo", "foo", "x", "y", "z"] rebuilt : ScopeId(0): ["Bar", "foo", "x", "y", "z"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(2): [] tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/asyncFunctions/contextuallyTypeAsyncFunctionAwaitOperand.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Obj", "fn1"] rebuilt : ScopeId(0): ["fn1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/asyncFunctions/contextuallyTypeAsyncFunctionReturnType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AsyncFunc", "Done", "Func", "ILocalExtension", "Metadata", "Obj", "ProcessTreeNode", "TestFunction", "copyExtensions", "fn1", "fn2", "fn3", "fn4", "test"] rebuilt : ScopeId(0): ["copyExtensions", "fn1", "fn2", "fn3", "fn4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(12)] Reference mismatch: after transform: ReferenceId(23): Some("test") rebuilt : ReferenceId(4): None @@ -24203,11 +29447,27 @@ tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/methodDe semantic error: Bindings mismatch: after transform: ScopeId(0): ["Nested", "Show", "StringIdentity", "StringUnion", "Tuples", "f", "f2", "f3", "ff", "g", "h", "id"] rebuilt : ScopeId(0): ["f", "f2", "f3", "ff", "g", "h", "id"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(17), ScopeId(18)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/methodDeclarations/contextuallyTypedObjectLiteralMethodDeclaration01.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "Foo", "getFoo1", "getFoo2", "getFoo3"] rebuilt : ScopeId(0): ["getFoo1", "getFoo2", "getFoo3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(9), ScopeId(12)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7)] + +tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/partiallyAnnotatedFunction/partiallyAnnotatedFunctionInferenceWithTypeParameter.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13)] + +tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/partiallyAnnotatedFunction/partiallyAnnotatedFunctionWitoutTypeParameter.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/types/forAwait/types.forAwait.es2018.1.ts semantic error: Bindings mismatch: @@ -24254,6 +29514,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectio semantic error: Bindings mismatch: after transform: ScopeId(0): ["Ex", "U", "x"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(5): Some("x") rebuilt : ReferenceId(0): None @@ -24262,6 +29525,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectio semantic error: Bindings mismatch: after transform: ScopeId(0): ["AorB", "X", "q"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference mismatch: after transform: ReferenceId(2): Some("q") rebuilt : ReferenceId(0): None @@ -24284,16 +29550,25 @@ tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectio semantic error: Bindings mismatch: after transform: ScopeId(0): ["Component", "Label", "Thing1", "Thing2", "Thing3", "Thing4", "Thing5", "f1", "f2", "test"] rebuilt : ScopeId(0): ["f1", "f2", "test"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(12), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionTypeEquivalence.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "ab", "bc", "y", "z", "z1"] rebuilt : ScopeId(0): ["ab", "bc", "y", "z", "z1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionTypeInference2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "b", "obj"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(3): Some("a") rebuilt : ReferenceId(1): None @@ -24311,6 +29586,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectio semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "Nominal", "a", "b", "c1", "c2"] rebuilt : ScopeId(0): ["c1", "c2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(9): Some("a") rebuilt : ReferenceId(1): None @@ -24322,16 +29600,25 @@ tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectio semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "D", "E", "F", "F1", "F2", "G", "X", "Y", "Z", "abc", "de", "defg", "f", "n", "s", "xyz"] rebuilt : ScopeId(0): ["abc", "de", "defg", "f", "n", "s", "xyz"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionTypeOverloading.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["F", "G", "fg", "gf", "x", "y"] rebuilt : ScopeId(0): ["fg", "gf", "x", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionsAndEmptyObjects.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "D", "Dictionary", "E", "Foo1", "Foo2", "IMyChoiceList", "IUnknownChoiceList", "choices", "d1", "d2", "d3", "d4", "d5", "d6", "defaultChoices", "defaultChoicesAndEmpty", "intersectDictionaries", "myChoices", "myChoicesAndEmpty", "testDictionary", "unknownChoices", "unknownChoicesAndEmpty", "x01", "x02", "x03", "x04", "x05", "x06", "x07", "x08", "x09", "x10", "x11", "x12", "x13", "x14"] rebuilt : ScopeId(0): ["d1", "d2", "d3", "d4", "d5", "d6", "defaultChoices", "defaultChoicesAndEmpty", "intersectDictionaries", "myChoices", "myChoicesAndEmpty", "testDictionary", "unknownChoices", "unknownChoicesAndEmpty", "x01", "x02", "x03", "x04", "x05", "x06", "x07", "x08", "x09", "x10", "x11", "x12", "x13", "x14"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(15)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(7): ["F1", "F2", "d1", "d2"] rebuilt : ScopeId(1): ["d1", "d2"] @@ -24343,21 +29630,33 @@ tasks/coverage/typescript/tests/cases/conformance/types/intersection/operatorsAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["Guid", "SerialNo", "b1", "b2", "b3", "b4", "createGuid", "createSerialNo", "guid", "map1", "map2", "n1", "n2", "s1", "s2", "s3", "s4", "s5", "serialNo"] rebuilt : ScopeId(0): ["b1", "b2", "b3", "b4", "createGuid", "createSerialNo", "guid", "map1", "map2", "n1", "n2", "s1", "s2", "s3", "s4", "s5", "serialNo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/types/literal/booleanLiteralTypes1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A1", "A2", "Item", "assertNever", "f1", "f10", "f11", "f12", "f13", "f2", "f20", "f21", "f3", "f4", "f5"] rebuilt : ScopeId(0): ["assertNever", "f1", "f10", "f11", "f12", "f13", "f2", "f20", "f21", "f3", "f4", "f5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(19), ScopeId(22), ScopeId(23), ScopeId(25)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(14), ScopeId(17), ScopeId(19)] tasks/coverage/typescript/tests/cases/conformance/types/literal/booleanLiteralTypes2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A1", "A2", "Item", "assertNever", "f1", "f10", "f11", "f12", "f13", "f2", "f20", "f21", "f3", "f4", "f5"] rebuilt : ScopeId(0): ["assertNever", "f1", "f10", "f11", "f12", "f13", "f2", "f20", "f21", "f3", "f4", "f5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(19), ScopeId(22), ScopeId(23), ScopeId(25)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(14), ScopeId(17), ScopeId(19)] tasks/coverage/typescript/tests/cases/conformance/types/literal/enumLiteralTypes1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Choice", "Item", "NoYes", "UnknownYesNo", "YesNo", "assertNever", "f1", "f10", "f11", "f12", "f13", "f2", "f20", "f21", "f3", "f4", "f5"] rebuilt : ScopeId(0): ["Choice", "assertNever", "f1", "f10", "f11", "f12", "f13", "f2", "f20", "f21", "f3", "f4", "f5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(21), ScopeId(24), ScopeId(25), ScopeId(27)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(15), ScopeId(18), ScopeId(20)] Bindings mismatch: after transform: ScopeId(1): ["Choice", "No", "Unknown", "Yes"] rebuilt : ScopeId(1): ["Choice"] @@ -24369,6 +29668,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/literal/enumLiteralTypes semantic error: Bindings mismatch: after transform: ScopeId(0): ["Choice", "Item", "NoYes", "UnknownYesNo", "YesNo", "assertNever", "f1", "f10", "f11", "f12", "f13", "f2", "f20", "f21", "f3", "f4", "f5"] rebuilt : ScopeId(0): ["Choice", "assertNever", "f1", "f10", "f11", "f12", "f13", "f2", "f20", "f21", "f3", "f4", "f5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(21), ScopeId(24), ScopeId(25), ScopeId(27)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(15), ScopeId(18), ScopeId(20)] Bindings mismatch: after transform: ScopeId(1): ["Choice", "No", "Unknown", "Yes"] rebuilt : ScopeId(1): ["Choice"] @@ -24380,6 +29682,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/literal/literalTypeWiden semantic error: Bindings mismatch: after transform: ScopeId(0): ["E", "FAILURE", "LangCode", "Obj", "Result", "Set", "TestEvent", "a", "arr", "b", "doWork", "f1", "f2", "f3", "f4", "f5", "f6", "increment", "isFailure", "isSuccess", "keys", "langCodeSet", "langCodes", "onMouseOver", "result", "test", "x"] rebuilt : ScopeId(0): ["E", "FAILURE", "Set", "a", "arr", "b", "doWork", "f1", "f2", "f3", "f4", "f5", "f6", "increment", "isFailure", "isSuccess", "keys", "langCodeSet", "langCodes", "onMouseOver", "result", "test", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18)] Bindings mismatch: after transform: ScopeId(11): ["T"] rebuilt : ScopeId(7): [] @@ -24409,11 +29714,17 @@ tasks/coverage/typescript/tests/cases/conformance/types/literal/literalTypes1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Falsy", "f1", "f2", "f3", "f4", "f5", "one", "oneOrTwo", "two", "zero"] rebuilt : ScopeId(0): ["f1", "f2", "f3", "f4", "f5", "one", "oneOrTwo", "two", "zero"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(9), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(8), ScopeId(10)] tasks/coverage/typescript/tests/cases/conformance/types/literal/literalTypes2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bit", "C1", "C2", "E", "a", "aa", "append", "cond", "f1", "f10", "f11", "f12", "f2", "f20", "f3", "f4", "f5", "f6", "makeArray", "x1", "x10", "x11", "x2", "x3", "x4", "x5", "x6", "x7", "x8", "x9"] rebuilt : ScopeId(0): ["C1", "C2", "E", "a", "aa", "append", "cond", "f1", "f10", "f11", "f12", "f2", "f20", "f3", "f4", "f5", "f6", "makeArray", "x1", "x10", "x11", "x2", "x3", "x4", "x5", "x6", "x7", "x8", "x9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(14), ScopeId(17), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(14), ScopeId(17), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28)] Bindings mismatch: after transform: ScopeId(1): ["A", "B", "C", "E"] rebuilt : ScopeId(1): ["E"] @@ -24431,6 +29742,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/literal/literalTypesAndD semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "a1", "a2", "a3", "a4", "b1", "b2", "b3", "b4", "bar", "x"] rebuilt : ScopeId(0): ["a1", "a2", "a3", "a4", "b1", "b2", "b3", "b4", "bar"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(0): Some("x") rebuilt : ReferenceId(0): None @@ -24460,16 +29774,25 @@ tasks/coverage/typescript/tests/cases/conformance/types/literal/numericLiteralTy semantic error: Bindings mismatch: after transform: ScopeId(0): ["A1", "A2", "A3", "A4", "A5", "B1", "B2", "B3", "Item", "Tag", "assertNever", "f1", "f10", "f11", "f12", "f13", "f14", "f15", "f2", "f20", "f21", "f3", "f4", "f5"] rebuilt : ScopeId(0): ["assertNever", "f1", "f10", "f11", "f12", "f13", "f14", "f15", "f2", "f20", "f21", "f3", "f4", "f5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(26), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(34)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(14), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(21)] tasks/coverage/typescript/tests/cases/conformance/types/literal/numericLiteralTypes2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A1", "A2", "A3", "A4", "A5", "B1", "B2", "B3", "Item", "Tag", "assertNever", "f1", "f10", "f11", "f12", "f13", "f14", "f15", "f2", "f20", "f21", "f3", "f4", "f5"] rebuilt : ScopeId(0): ["assertNever", "f1", "f10", "f11", "f12", "f13", "f14", "f15", "f2", "f20", "f21", "f3", "f4", "f5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(26), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(34)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(14), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(21)] tasks/coverage/typescript/tests/cases/conformance/types/literal/stringEnumLiteralTypes1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Choice", "Item", "NoYes", "UnknownYesNo", "YesNo", "assertNever", "f1", "f10", "f11", "f12", "f13", "f2", "f20", "f21", "f3", "f5"] rebuilt : ScopeId(0): ["Choice", "assertNever", "f1", "f10", "f11", "f12", "f13", "f2", "f20", "f21", "f3", "f5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(20), ScopeId(23), ScopeId(24), ScopeId(26)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(14), ScopeId(17), ScopeId(19)] Bindings mismatch: after transform: ScopeId(1): ["Choice", "No", "Unknown", "Yes"] rebuilt : ScopeId(1): ["Choice"] @@ -24481,6 +29804,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/literal/stringEnumLitera semantic error: Bindings mismatch: after transform: ScopeId(0): ["Choice", "Item", "NoYes", "UnknownYesNo", "YesNo", "assertNever", "f1", "f10", "f11", "f12", "f13", "f2", "f20", "f21", "f3", "f5"] rebuilt : ScopeId(0): ["Choice", "assertNever", "f1", "f10", "f11", "f12", "f13", "f2", "f20", "f21", "f3", "f5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(20), ScopeId(23), ScopeId(24), ScopeId(26)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(14), ScopeId(17), ScopeId(19)] Bindings mismatch: after transform: ScopeId(1): ["Choice", "No", "Unknown", "Yes"] rebuilt : ScopeId(1): ["Choice"] @@ -24492,11 +29818,17 @@ tasks/coverage/typescript/tests/cases/conformance/types/literal/stringMappingDef semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "D", "E", "F", "G", "x1", "x2", "x3", "x4", "x5"] rebuilt : ScopeId(0): ["x1", "x2", "x3", "x4", "x5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(12)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/literal/stringMappingReduction.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["EMap", "EPlusFallback", "Keys", "T00", "T01", "T02", "T10", "T11", "T12", "T20", "T21", "T22", "T30", "T31", "T32", "VirtualEvent", "_virtualOn", "virtualOn"] rebuilt : ScopeId(0): ["virtualOn"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(17), ScopeId(19)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(19): ["T", "eventQrl"] rebuilt : ScopeId(1): ["eventQrl"] @@ -24508,6 +29840,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/literal/templateLiteralT semantic error: Bindings mismatch: after transform: ScopeId(0): ["Keyof", "Registry", "f2"] rebuilt : ScopeId(0): ["f2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(4): ["Event", "Scope", "event", "scope"] rebuilt : ScopeId(1): ["event", "scope"] @@ -24516,6 +29851,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/literal/templateLiteralT semantic error: Bindings mismatch: after transform: ScopeId(0): ["E", "Stringify", "z1", "z2"] rebuilt : ScopeId(0): ["E", "z1", "z2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(1): ["E", "a", "b"] rebuilt : ScopeId(1): ["E"] @@ -24527,6 +29865,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/localTypes/localTypes1.t semantic error: Bindings mismatch: after transform: ScopeId(1): ["A", "C", "E", "I", "a"] rebuilt : ScopeId(1): ["C", "E", "a"] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(2): ["A", "B", "C", "E"] rebuilt : ScopeId(2): ["E"] @@ -24536,6 +29877,9 @@ rebuilt : ScopeId(2): ScopeFlags(Function) Bindings mismatch: after transform: ScopeId(7): ["A", "C", "E", "I", "a"] rebuilt : ScopeId(5): ["C", "a"] +Scope children mismatch: +after transform: ScopeId(7): [ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(5): [ScopeId(6), ScopeId(7)] Bindings mismatch: after transform: ScopeId(8): ["A", "B", "C", "E"] rebuilt : ScopeId(6): ["E"] @@ -24554,9 +29898,15 @@ rebuilt : ScopeId(10): ScopeFlags(Function) Bindings mismatch: after transform: ScopeId(15): ["A", "C", "I", "a"] rebuilt : ScopeId(11): ["C", "a"] +Scope children mismatch: +after transform: ScopeId(15): [ScopeId(16), ScopeId(17), ScopeId(18)] +rebuilt : ScopeId(11): [ScopeId(12)] Bindings mismatch: after transform: ScopeId(19): ["A", "C", "J", "c"] rebuilt : ScopeId(13): ["A", "c"] +Scope children mismatch: +after transform: ScopeId(19): [ScopeId(20), ScopeId(21), ScopeId(22)] +rebuilt : ScopeId(13): [ScopeId(14)] Bindings mismatch: after transform: ScopeId(24): ["C", "E"] rebuilt : ScopeId(16): ["C"] @@ -24686,6 +30036,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypeConstra semantic error: Bindings mismatch: after transform: ScopeId(0): ["TargetProps", "f0", "f1", "f2", "f3", "f4", "modifier"] rebuilt : ScopeId(0): ["f0", "f1", "f2", "f3", "f4", "modifier"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] Bindings mismatch: after transform: ScopeId(1): ["T", "obj"] rebuilt : ScopeId(1): ["obj"] @@ -24709,16 +30062,28 @@ tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypeIndexSi semantic error: Bindings mismatch: after transform: ScopeId(0): ["Identity", "Obj1", "Obj10", "Obj11", "Obj12", "Obj13", "Obj2", "Obj3", "Obj4", "Obj5", "Obj6", "Obj7", "Obj8", "Obj9", "Res1", "Res10", "Res11", "Res12", "Res13", "Res2", "Res3", "Res4", "Res5", "Res6", "Res7", "Res8", "Res9", "StrippingIdentity", "StrippingPick"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(31), ScopeId(32)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypeModifiers.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "BP", "BPR", "BR", "Boxified", "Foo", "T", "TP", "TPR", "TR", "b00", "b01", "b02", "b03", "b04", "f1", "f2", "f3", "f4", "v00", "v01", "v02", "v03", "v04"] rebuilt : ScopeId(0): ["b00", "b01", "b02", "b03", "b04", "f1", "f2", "f3", "f4", "v00", "v01", "v02", "v03", "v04"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +Scope children mismatch: +after transform: ScopeId(29): [ScopeId(30)] +rebuilt : ScopeId(4): [] tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypeOverlappingStringEnumKeys.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AlienAnimalTypes", "AlienCat", "AnimalTypes", "CatMap", "Cats", "TerrestrialAnimalTypes", "TerrestrialCat", "catMap"] rebuilt : ScopeId(0): ["AlienAnimalTypes", "TerrestrialAnimalTypes", "catMap"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["CAT", "DOG", "TerrestrialAnimalTypes"] rebuilt : ScopeId(1): ["TerrestrialAnimalTypes"] @@ -24736,81 +30101,140 @@ tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypesGeneri semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "D", "K", "K0", "K1", "KA", "KB", "KC", "KD", "Keys", "Keys1", "Keys2", "M", "M0", "M1", "R1", "R2", "T1", "T2", "T3", "T4", "V0", "V1"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(25), ScopeId(27), ScopeId(29), ScopeId(31), ScopeId(32)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypesGenericTuples2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/members/augmentedTypeBracketAccessIndexSignature.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo", "Function", "Object", "a", "b"] rebuilt : ScopeId(0): ["a", "b"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeHidingMembersOfObject.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "a", "b", "c", "i", "r1", "r2", "r3", "r4"] rebuilt : ScopeId(0): ["C", "a", "b", "c", "i", "r1", "r2", "r3", "r4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypePropertyAccess.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "a", "c", "i", "r1", "r10", "r11", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9"] rebuilt : ScopeId(0): ["C", "a", "c", "i", "r1", "r10", "r11", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeWithCallSignatureAppearsToBeFunctionType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "b", "i", "r2", "r2b", "r4", "rb4"] rebuilt : ScopeId(0): ["b", "i", "r2", "r2b", "r4", "rb4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeWithCallSignatureHidingMembersOfExtendedFunction.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Function", "I", "i", "r1", "r1b", "r1c", "r1d", "r1e", "r2", "r2b", "r2c", "r2d", "r2e", "x"] rebuilt : ScopeId(0): ["i", "r1", "r1b", "r1c", "r1d", "r1e", "r2", "r2b", "r2c", "r2d", "r2e", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeWithCallSignatureHidingMembersOfFunction.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "i", "r1", "r1b", "r1c", "r2", "r2b", "r2c", "x"] rebuilt : ScopeId(0): ["i", "r1", "r1b", "r1c", "r2", "r2b", "r2c", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeWithConstructSignatureHidingMembersOfExtendedFunction.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Function", "I", "i", "r1", "r1b", "r1c", "r1d", "r1e", "r2", "r2b", "r2c", "r2d", "r2e", "x"] rebuilt : ScopeId(0): ["i", "r1", "r1b", "r1c", "r1d", "r1e", "r2", "r2b", "r2c", "r2d", "r2e", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeWithConstructSignatureHidingMembersOfFunction.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "i", "r1", "r1b", "r1c", "r2", "r2b", "r2c", "x"] rebuilt : ScopeId(0): ["i", "r1", "r1b", "r1c", "r2", "r2b", "r2c", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeWithNumericProperty.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "a", "b", "c", "i", "r1", "r2", "r3", "r4"] rebuilt : ScopeId(0): ["C", "a", "b", "c", "i", "r1", "r2", "r3", "r4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeWithStringNamedPropertyOfIllegalCharacters.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "a", "b", "c", "i", "r", "r2", "r3", "r4"] rebuilt : ScopeId(0): ["C", "a", "b", "c", "i", "r", "r2", "r3", "r4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/members/typesWithOptionalProperty.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "a", "b", "c", "d", "i"] rebuilt : ScopeId(0): ["a", "b", "c", "d", "i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/members/typesWithSpecializedCallSignatures.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "C", "Derived1", "Derived2", "I", "a", "c", "i", "r1", "r2", "r3"] rebuilt : ScopeId(0): ["Base", "C", "Derived1", "Derived2", "a", "c", "i", "r1", "r2", "r3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(9), ScopeId(13), ScopeId(14), ScopeId(15)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(4): [ScopeId(5)] tasks/coverage/typescript/tests/cases/conformance/types/members/typesWithSpecializedConstructSignatures.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "C", "Derived1", "Derived2", "I", "a", "c", "i", "r1", "r2", "r3"] rebuilt : ScopeId(0): ["Base", "C", "Derived1", "Derived2", "a", "c", "i", "r1", "r2", "r3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(9), ScopeId(13), ScopeId(14), ScopeId(15)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(4): [ScopeId(5)] tasks/coverage/typescript/tests/cases/conformance/types/namedTypes/classWithOnlyPublicMembersEquivalentToInterface.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "c", "i"] rebuilt : ScopeId(0): ["C", "c", "i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/namedTypes/classWithOnlyPublicMembersEquivalentToInterface2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "c", "i"] rebuilt : ScopeId(0): ["C", "c", "i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/namedTypes/classWithOptionalParameter.ts semantic error: Bindings mismatch: @@ -24821,21 +30245,33 @@ tasks/coverage/typescript/tests/cases/conformance/types/namedTypes/genericInstan semantic error: Bindings mismatch: after transform: ScopeId(0): ["Pair", "x", "y"] rebuilt : ScopeId(0): ["x", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/never/neverInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Comparator", "LinkedList", "Node", "a1", "a2", "list", "neverArray"] rebuilt : ScopeId(0): ["a1", "a2", "list", "neverArray"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/types/never/neverUnionIntersection.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T01", "T02", "T03", "T04", "T05", "T06", "T07", "T08", "T09", "T10", "T11", "T12"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/callSignatureWithoutAnnotationsOrBody.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "a", "foo", "i", "r", "r2", "r3", "r4", "r5"] rebuilt : ScopeId(0): ["a", "foo", "i", "r", "r2", "r3", "r4", "r5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/callSignatureWithoutReturnTypeAnnotationInference.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -24847,41 +30283,68 @@ tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSi semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "I2", "I3", "T", "a", "a2"] rebuilt : ScopeId(0): ["a", "a2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/callSignaturesThatDifferOnlyByReturnType3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "I2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/callSignaturesWithOptionalParameters.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "a", "b", "c", "f", "f2", "foo", "i"] rebuilt : ScopeId(0): ["C", "a", "b", "c", "f", "f2", "foo", "i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8)] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/callSignaturesWithOptionalParameters2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "a", "c", "foo", "foo2", "i"] rebuilt : ScopeId(0): ["C", "a", "c", "foo", "foo2", "i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(12), ScopeId(15), ScopeId(16)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +Scope children mismatch: +after transform: ScopeId(6): [ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5)] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/identicalCallSignatures.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "I2", "T", "a"] rebuilt : ScopeId(0): ["a"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/identicalCallSignatures2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "I", "I2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/identicalCallSignatures3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "I2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/parametersWithNoAnnotationAreAny.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "a", "b", "f", "f2", "f3", "foo"] rebuilt : ScopeId(0): ["C", "a", "b", "f", "f2", "f3", "foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9)] Bindings mismatch: after transform: ScopeId(4): ["T", "x"] rebuilt : ScopeId(4): ["x"] @@ -24890,22 +30353,45 @@ tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSi semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "C2", "C3", "I", "I2", "I3", "T", "a", "a2", "a3", "foo"] rebuilt : ScopeId(0): ["C", "C2", "C3", "a", "a2", "a3", "foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(8), ScopeId(13), ScopeId(18), ScopeId(22), ScopeId(26), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6)] +Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(2): [ScopeId(3)] Bindings mismatch: after transform: ScopeId(8): ["T"] rebuilt : ScopeId(4): [] +Scope children mismatch: +after transform: ScopeId(8): [ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] +rebuilt : ScopeId(4): [ScopeId(5)] Bindings mismatch: after transform: ScopeId(13): ["T"] rebuilt : ScopeId(6): [] +Scope children mismatch: +after transform: ScopeId(13): [ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17)] +rebuilt : ScopeId(6): [ScopeId(7)] + +tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/specializedSignatureWithOptional.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/stringLiteralTypesInImplementationSignatures.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "a", "b", "f", "f2", "foo"] rebuilt : ScopeId(0): ["C", "a", "b", "f", "f2", "foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8)] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/typeParameterAsTypeArgument.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "foo"] rebuilt : ScopeId(0): ["C", "foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["T", "U", "x", "y"] rebuilt : ScopeId(1): ["x", "y"] @@ -24993,27 +30479,51 @@ tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSi semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "I2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/constructSignatures/constructSignaturesWithIdenticalOverloads.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "C2", "I", "I2", "a", "b", "i", "i2", "r1", "r2", "r3", "r4", "r5", "r6"] rebuilt : ScopeId(0): ["C", "C2", "a", "b", "i", "i2", "r1", "r2", "r3", "r4", "r5", "r6"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(9), ScopeId(12), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] Bindings mismatch: after transform: ScopeId(5): ["T"] rebuilt : ScopeId(3): [] +Scope children mismatch: +after transform: ScopeId(5): [ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(3): [ScopeId(4)] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/constructSignatures/constructSignaturesWithOverloads.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "C2", "I", "I2", "a", "b", "i", "i2", "r1", "r2", "r3", "r4", "r5", "r6"] rebuilt : ScopeId(0): ["C", "C2", "a", "b", "i", "i2", "r1", "r2", "r3", "r4", "r5", "r6"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(9), ScopeId(12), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] Bindings mismatch: after transform: ScopeId(5): ["T"] rebuilt : ScopeId(3): [] +Scope children mismatch: +after transform: ScopeId(5): [ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(3): [ScopeId(4)] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/constructSignatures/constructSignaturesWithOverloadsThatDifferOnlyByReturnType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "C2", "I", "I2", "a", "b"] rebuilt : ScopeId(0): ["C", "C2", "a", "b"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(8), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(3): [] @@ -25022,31 +30532,49 @@ tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/indexS semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "a", "b", "b2", "c", "i", "r1", "r1a", "r1b", "r2", "r2a", "r2b", "r3", "r4", "r5", "r6"] rebuilt : ScopeId(0): ["C", "a", "b", "b2", "c", "i", "r1", "r1a", "r1b", "r2", "r2a", "r2b", "r3", "r4", "r5", "r6"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/indexSignatures/stringIndexingResults.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "a", "b", "c", "i", "r1", "r10", "r11", "r12", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9"] rebuilt : ScopeId(0): ["C", "a", "b", "c", "i", "r1", "r10", "r11", "r12", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/methodSignatures/functionLiterals.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T", "b", "b2", "c", "c2"] rebuilt : ScopeId(0): ["b", "b2", "c", "c2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/methodSignatures/methodSignaturesWithOverloads2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T", "c", "c2"] rebuilt : ScopeId(0): ["c", "c2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/propertySignatures/propertyNameWithoutTypeAnnotation.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "a", "b", "r1", "r2", "r3", "r4"] rebuilt : ScopeId(0): ["C", "a", "b", "r1", "r2", "r3", "r4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/propertySignatures/propertyNamesOfReservedWords.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "E", "I", "a", "c", "i", "r1", "r2", "r3", "r4", "r5", "r6", "r7", "r8"] rebuilt : ScopeId(0): ["C", "E", "a", "c", "i", "r1", "r2", "r3", "r4", "r5", "r6", "r7", "r8"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(3): ["E", "abstract", "as", "boolean", "break", "byte", "case", "catch", "char", "class", "const", "continue", "debugger", "default", "delete", "do", "double", "else", "enum", "export", "extends", "false", "final", "finally", "float", "for", "function", "goto", "if", "implements", "import", "in", "instanceof", "int", "interface", "is", "long", "namespace", "native", "new", "null", "package", "private", "protected", "public", "return", "short", "static", "super", "switch", "synchronized", "this", "throw", "throws", "transient", "true", "try", "typeof", "use", "var", "void", "volatile", "while", "with"] rebuilt : ScopeId(2): ["E"] @@ -25058,16 +30586,25 @@ tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/proper semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "a", "b", "c", "i", "r1", "r1b", "r2", "r3", "r4"] rebuilt : ScopeId(0): ["C", "a", "b", "c", "i", "r1", "r1b", "r2", "r3", "r4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/primitives/boolean/extendBooleanInterface.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Boolean", "a", "b", "c", "d", "x"] rebuilt : ScopeId(0): ["a", "b", "c", "d", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/primitives/number/extendNumberInterface.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Number", "a", "b", "c", "d", "x"] rebuilt : ScopeId(0): ["a", "b", "c", "d", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/primitives/number/validNumberAssignments.ts semantic error: Bindings mismatch: @@ -25081,6 +30618,14 @@ tasks/coverage/typescript/tests/cases/conformance/types/primitives/string/extend semantic error: Bindings mismatch: after transform: ScopeId(0): ["String", "a", "b", "c", "d", "x"] rebuilt : ScopeId(0): ["a", "b", "c", "d", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/conformance/types/primitives/stringLiteral/stringLiteralType.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/primitives/undefined/invalidUndefinedValues.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -25089,6 +30634,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/primitives/undefined/val semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "a", "b", "c", "d", "e", "f", "g", "h", "i", "x"] rebuilt : ScopeId(0): ["C", "a", "b", "c", "d", "e", "f", "g", "h", "i", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(4): ["T", "a"] rebuilt : ScopeId(2): ["a"] @@ -25097,6 +30645,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/rest/genericObjectRest.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["Item", "a", "f1", "f2", "f3", "f4", "sa", "sb"] rebuilt : ScopeId(0): ["a", "f1", "f2", "f3", "f4", "sa", "sb"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Bindings mismatch: after transform: ScopeId(1): ["T", "a1", "a2", "a3", "a4", "a5", "b2", "obj", "r0", "r1", "r2", "r3", "r4", "r5"] rebuilt : ScopeId(1): ["a1", "a2", "a3", "a4", "a5", "b2", "obj", "r0", "r1", "r2", "r3", "r4", "r5"] @@ -25110,10 +30661,28 @@ Bindings mismatch: after transform: ScopeId(5): ["K1", "K2", "a1", "a2", "k1", "k2", "obj", "r1"] rebuilt : ScopeId(4): ["a1", "a2", "k1", "k2", "obj", "r1"] +tasks/coverage/typescript/tests/cases/conformance/types/rest/objectRest2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/types/rest/objectRestParameter.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(7)] + +tasks/coverage/typescript/tests/cases/conformance/types/rest/objectRestParameterES5.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(7)] + tasks/coverage/typescript/tests/cases/conformance/types/rest/objectRestReadonly.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ObjType", "foo", "obj", "rest"] rebuilt : ScopeId(0): ["foo", "obj", "rest"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeLiterals/arrayOfFunctionTypes3.ts semantic error: Bindings mismatch: @@ -25124,6 +30693,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeLite semantic error: Bindings mismatch: after transform: ScopeId(0): ["T", "x", "y", "y2", "z"] rebuilt : ScopeId(0): ["x", "y", "y2", "z"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(2): ["T", "x"] rebuilt : ScopeId(2): ["x"] @@ -25134,14 +30706,26 @@ after transform: ScopeId(0): ["T", "f", "f2", "f3", "f4"] rebuilt : ScopeId(0): ["f", "f2", "f3", "f4"] tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeLiterals/functionLiteralForOverloads2.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] +Bindings mismatch: after transform: ScopeId(5): ["T"] rebuilt : ScopeId(3): [] +Scope children mismatch: +after transform: ScopeId(5): [ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(3): [ScopeId(4)] tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeQueries/typeQueryOnClass.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13)] Bindings mismatch: after transform: ScopeId(18): ["T"] rebuilt : ScopeId(14): [] @@ -25150,6 +30734,14 @@ tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeQuer semantic error: Bindings mismatch: after transform: ScopeId(0): ["Controller", "IScope"] rebuilt : ScopeId(0): ["Controller"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeQueries/typeofClass2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeQueries/typeofModuleWithoutExports.ts semantic error: Semantic Collector failed after transform @@ -25162,6 +30754,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/spread/objectSpread.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "Header", "a", "addAfter", "addBefore", "anything", "c", "changeTypeAfter", "changeTypeBoth", "combined", "combinedAfter", "combinedNestedChangeType", "conditionalSpreadBoolean", "conditionalSpreadNumber", "conditionalSpreadString", "container", "cplus", "exclusive", "f", "from16326", "genericSpread", "getter", "nested", "o", "o2", "op", "overlap", "overlapConflict", "override", "overwriteId", "propertyNested", "shortCutted", "spreadAny", "spreadC", "spreadFunc", "spreadNonPrimitive", "swap"] rebuilt : ScopeId(0): ["C", "a", "addAfter", "addBefore", "anything", "c", "changeTypeAfter", "changeTypeBoth", "combined", "combinedAfter", "combinedNestedChangeType", "conditionalSpreadBoolean", "conditionalSpreadNumber", "conditionalSpreadString", "container", "cplus", "exclusive", "f", "from16326", "genericSpread", "getter", "nested", "o", "o2", "op", "overlap", "overlapConflict", "override", "overwriteId", "propertyNested", "shortCutted", "spreadAny", "spreadC", "spreadFunc", "spreadNonPrimitive", "swap"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] Bindings mismatch: after transform: ScopeId(13): ["T", "U", "t", "u"] rebuilt : ScopeId(11): ["t", "u"] @@ -25173,11 +30768,17 @@ tasks/coverage/typescript/tests/cases/conformance/types/spread/objectSpreadRepea semantic error: Bindings mismatch: after transform: ScopeId(0): ["Props", "parseWithSpread"] rebuilt : ScopeId(0): ["parseWithSpread"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/spread/spreadContextualTypedBindingPattern.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Person", "age", "alice", "bob", "naam"] rebuilt : ScopeId(0): ["age", "naam"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(2): Some("bob") rebuilt : ReferenceId(0): None @@ -25189,6 +30790,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/spread/spreadExcessPrope semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "a1", "extra1"] rebuilt : ScopeId(0): ["a1", "extra1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/spread/spreadNonPrimitive.ts semantic error: Bindings mismatch: @@ -25230,36 +30834,57 @@ tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLite semantic error: Bindings mismatch: after transform: ScopeId(0): ["S", "T", "f"] rebuilt : ScopeId(0): ["f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralCheckedInIf02.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["S", "T", "f", "isS"] rebuilt : ScopeId(0): ["f", "isS"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralMatchedInSwitch01.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["S", "T", "foo"] rebuilt : ScopeId(0): ["foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypeAssertion01.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["S", "T", "s", "str", "t"] rebuilt : ScopeId(0): ["s", "str", "t"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/thisType/contextualThisType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["X", "Y", "x", "y"] rebuilt : ScopeId(0): ["x", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/thisType/fluentInterfaces.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "c", "z"] rebuilt : ScopeId(0): ["c", "z"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/thisType/inferThisType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Check", "This", "r1", "r2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(8)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeAndConstraints.ts semantic error: Bindings mismatch: @@ -25279,24 +30904,44 @@ tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInClass semantic error: Bindings mismatch: after transform: ScopeId(0): ["C1", "C2", "C3", "C5", "Foo"] rebuilt : ScopeId(0): ["C1", "C2", "C3", "C5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5)] + +tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInFunctions3.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInFunctions4.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["CorrectObject", "WrongObject", "problemFunction"] rebuilt : ScopeId(0): ["problemFunction"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(6): ["T", "name"] rebuilt : ScopeId(2): ["name"] +Scope children mismatch: +after transform: ScopeId(6): [ScopeId(7)] +rebuilt : ScopeId(2): [] tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInInterfaces.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "I1", "I2", "I3"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInObjectLiterals.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "i", "impl", "mutuallyRecursive", "o"] rebuilt : ScopeId(0): ["i", "impl", "mutuallyRecursive", "o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInTaggedTemplateCall.ts semantic error: Bindings mismatch: @@ -25307,6 +30952,14 @@ tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInTuple semantic error: Bindings mismatch: after transform: ScopeId(0): ["Array", "a", "b", "c", "t"] rebuilt : ScopeId(0): ["a", "b", "c", "t"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInTypePredicate.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeOptionalCall.ts semantic error: Bindings mismatch: @@ -25317,6 +30970,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/tuple/named/partiallyNam semantic error: Bindings mismatch: after transform: ScopeId(0): ["AddMixedConditional", "AddMixedConditionalBoolean", "AddMixedConditionalLiteral", "AddMixedConditionalNumberPrimitive", "AnonymousToAnonymous", "AnonymousToMixed", "ConditionalTuple", "MixedSpread", "MixedToAnonymous", "MixedToMixed", "NamedAndAnonymous", "NamedAnonymousMixed", "NamedToAnonymous", "NamedToMixed", "ToAnonymousTuple", "ToMixedTuple", "fa1", "fa2", "fb1", "fb2", "fb3", "input", "output"] rebuilt : ScopeId(0): ["fa1", "fa2", "fb1", "fb2", "fb3", "output"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(21), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] Reference mismatch: after transform: ReferenceId(37): Some("input") rebuilt : ReferenceId(1): None @@ -25325,6 +30981,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/tuple/named/partiallyNam semantic error: Bindings mismatch: after transform: ScopeId(0): ["GetKeys", "GetResult", "MultiKeyMap", "id1", "matches", "x"] rebuilt : ScopeId(0): ["id1", "matches", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/tuple/named/partiallyNamedTuples3.ts semantic error: Bindings mismatch: @@ -25335,13 +30994,21 @@ after transform: ReferenceId(1): Some("tuple") rebuilt : ReferenceId(1): None tasks/coverage/typescript/tests/cases/conformance/types/tuple/typeInferenceWithTupleType.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] +Bindings mismatch: after transform: ScopeId(1): ["T", "U", "x", "y"] rebuilt : ScopeId(1): ["x", "y"] Bindings mismatch: after transform: ScopeId(2): ["T", "U", "array1", "array2", "i", "length", "zipResult"] rebuilt : ScopeId(2): ["array1", "array2", "i", "length", "zipResult"] +tasks/coverage/typescript/tests/cases/conformance/types/tuple/wideningTuples1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/conformance/types/typeAliases/asiPreventsParsingAsTypeAlias02.ts semantic error: Semantic Collector failed after transform Missing SymbolId: container @@ -25353,37 +31020,61 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeAliases/circularType semantic error: Bindings mismatch: after transform: ScopeId(0): ["I0", "I3", "I4", "T0", "T3", "T4", "v0", "v3", "v4"] rebuilt : ScopeId(0): ["I0", "I3", "I4", "v0", "v3", "v4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/conformance/types/typeAliases/circularTypeAliasForUnionWithInterface.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I0", "I1", "I2", "I3", "I4", "T0", "T1", "T2", "T3", "T4", "v0", "v1", "v2", "v3", "v4"] rebuilt : ScopeId(0): ["v0", "v1", "v2", "v3", "v4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/typeAliases/classDoesNotDependOnBaseTypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["StringTree", "StringTreeCollection", "StringTreeCollectionBase", "x"] rebuilt : ScopeId(0): ["StringTreeCollection", "StringTreeCollectionBase", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/conformance/types/typeAliases/genericTypeAliases.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AB", "Bar", "Foo", "Lazy", "Pair", "Strange", "TaggedPair", "Tree", "a", "b", "f", "g", "ls", "p", "s", "tree", "x", "y", "z"] rebuilt : ScopeId(0): ["a", "b", "f", "g", "ls", "p", "s", "tree", "x", "y", "z"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(12)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(10): ["A", "Foo", "x"] rebuilt : ScopeId(2): ["x"] +Scope children mismatch: +after transform: ScopeId(10): [ScopeId(11)] +rebuilt : ScopeId(2): [] Bindings mismatch: after transform: ScopeId(12): ["B", "Bar", "x"] rebuilt : ScopeId(3): ["x"] +Scope children mismatch: +after transform: ScopeId(12): [ScopeId(13)] +rebuilt : ScopeId(3): [] tasks/coverage/typescript/tests/cases/conformance/types/typeAliases/interfaceDoesNotDependOnBaseTypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["StringTree", "StringTreeArray", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/typeAliases/typeAliases.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C7", "E", "I13", "I6", "Meters", "StringAndBoolean", "T1", "T10", "T11", "T13", "T14", "T2", "T3", "T4", "T5", "T6", "T7", "T8", "T9", "x", "x1", "x10", "x11", "x13_1", "x13_2", "x14", "x2", "x3", "x4", "x5", "x6", "x7", "x8", "x9", "y"] rebuilt : ScopeId(0): ["C7", "E", "x", "x1", "x10", "x11", "x13_1", "x13_2", "x14", "x2", "x3", "x4", "x5", "x6", "x7", "x8", "x9", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(24): ["E", "x"] rebuilt : ScopeId(2): ["E"] @@ -25395,6 +31086,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgum semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "C2", "I", "I2", "T", "f", "f2", "f3", "i", "i2", "r", "r2", "r3", "r4", "r5", "r6", "r7"] rebuilt : ScopeId(0): ["C", "C2", "f", "f2", "f3", "i", "i2", "r", "r2", "r3", "r4", "r5", "r6", "r7"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5)] Bindings mismatch: after transform: ScopeId(1): ["T", "x"] rebuilt : ScopeId(1): ["x"] @@ -25428,10 +31122,18 @@ Bindings mismatch: after transform: ScopeId(8): ["T"] rebuilt : ScopeId(8): [] +tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/constraintSatisfactionWithAny2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/constraintSatisfactionWithEmptyObject.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "C2", "I", "I2", "a", "foo", "foo2", "i", "i2", "r", "r2"] rebuilt : ScopeId(0): ["C", "C2", "a", "foo", "foo2", "i", "i2", "r", "r2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5)] Bindings mismatch: after transform: ScopeId(1): ["T", "x"] rebuilt : ScopeId(1): ["x"] @@ -25449,6 +31151,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgum semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "C2", "F2", "I", "I2", "T", "a", "a2", "b", "b2", "c", "c2", "f2", "foo", "foo2", "i", "i2", "r", "r1", "r10", "r11", "r12", "r13", "r14", "r15", "r16", "r17", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9"] rebuilt : ScopeId(0): ["C", "C2", "a", "a2", "b", "b2", "c", "c2", "f2", "foo", "foo2", "i", "i2", "r", "r1", "r10", "r11", "r12", "r13", "r14", "r15", "r16", "r17", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] Bindings mismatch: after transform: ScopeId(1): ["T", "x"] rebuilt : ScopeId(1): ["x"] @@ -25475,6 +31180,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgum semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "C2", "I", "I2", "T", "a", "a2", "b", "b2", "c", "c2", "foo", "i", "i2", "r1", "r10", "r12", "r15", "r2", "r3", "r4", "r5", "r8", "r9"] rebuilt : ScopeId(0): ["C", "C2", "a", "a2", "b", "b2", "c", "c2", "foo", "i", "i2", "r1", "r10", "r12", "r15", "r2", "r3", "r4", "r5", "r8", "r9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] Bindings mismatch: after transform: ScopeId(1): ["T", "x"] rebuilt : ScopeId(1): ["x"] @@ -25500,6 +31208,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgum semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "a", "b", "foo", "foo2", "r", "r2", "r3"] rebuilt : ScopeId(0): ["a", "b", "foo", "foo2", "r", "r2", "r3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["T", "U", "x", "y"] rebuilt : ScopeId(1): ["x", "y"] @@ -25511,6 +31222,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgum semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "a", "b", "c", "foo", "foo2"] rebuilt : ScopeId(0): ["a", "b", "c", "foo", "foo2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] Bindings mismatch: after transform: ScopeId(4): ["T", "U", "V", "x", "y", "z"] rebuilt : ScopeId(1): ["x", "y", "z"] @@ -25522,6 +31236,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgum semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "a", "b", "c", "foo", "foo2"] rebuilt : ScopeId(0): ["a", "b", "c", "foo", "foo2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] Bindings mismatch: after transform: ScopeId(4): ["T", "U", "V", "x", "y", "z"] rebuilt : ScopeId(1): ["x", "y", "z"] @@ -25533,6 +31250,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgum semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "Foo", "c", "r", "y"] rebuilt : ScopeId(0): ["C", "c", "r", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] @@ -25588,6 +31308,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParam semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "T", "a", "b", "i", "r", "r2", "r2b", "r3", "r3b", "r4"] rebuilt : ScopeId(0): ["C", "a", "b", "i", "r", "r2", "r2b", "r3", "r3b", "r4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] @@ -25599,6 +31322,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParam semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "T", "U", "a", "aB", "b", "i", "r1", "r1b", "r2", "r2b", "r3", "r3b", "r3c", "r3d", "r4"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "aB", "b", "i", "r1", "r1b", "r2", "r2b", "r3", "r3b", "r3c", "r3d", "r4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(8)] Bindings mismatch: after transform: ScopeId(5): ["T", "U"] rebuilt : ScopeId(5): [] @@ -25610,6 +31336,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParam semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "T", "U", "a", "b", "i", "r1a", "r1b", "r2", "r2b", "r3", "r3b", "r3c", "r3d", "r4"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "i", "r1a", "r1b", "r2", "r2b", "r3", "r3b", "r3c", "r3d", "r4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(8)] Bindings mismatch: after transform: ScopeId(5): ["T", "U"] rebuilt : ScopeId(5): [] @@ -25621,6 +31350,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParam semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "T", "a", "b", "i", "r", "r2", "r2b", "r3", "r3b", "r4"] rebuilt : ScopeId(0): ["C", "a", "b", "i", "r", "r2", "r2b", "r3", "r3b", "r4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] @@ -25628,15 +31360,26 @@ Bindings mismatch: after transform: ScopeId(4): ["T", "a", "x"] rebuilt : ScopeId(3): ["a", "x"] +tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/typeParameterConstModifiersReverseMappedTypes.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/typeParameterConstModifiersWithIntersection.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Config", "result"] rebuilt : ScopeId(0): ["result"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/typeParameterUsedAsConstraint.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "C2", "C3", "C4", "C5", "C6", "I", "I2", "I3", "I4", "I5", "I6", "T", "U", "V", "a", "a2", "a3", "a4", "a5", "a6", "e", "e2", "e3", "e4", "e5", "e6", "f", "f2", "f3", "f4", "f5", "f6"] rebuilt : ScopeId(0): ["C", "C2", "C3", "C4", "C5", "C6", "a", "a2", "a3", "a4", "a5", "a6", "e", "e2", "e3", "e4", "e5", "e6", "f", "f2", "f3", "f4", "f5", "f6"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18)] Bindings mismatch: after transform: ScopeId(1): ["T", "U"] rebuilt : ScopeId(1): [] @@ -25722,6 +31465,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assign semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "E", "I", "T", "a", "ac", "ae", "ai", "b", "c", "d", "e", "f", "foo", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q"] rebuilt : ScopeId(0): ["C", "E", "a", "ac", "ae", "ai", "b", "c", "d", "e", "f", "foo", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(3): ["A", "E"] rebuilt : ScopeId(2): ["E"] @@ -25745,6 +31491,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assign semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "S", "T", "U", "g", "h"] rebuilt : ScopeId(0): ["g", "h"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembers.ts semantic error: Semantic Collector failed after transform @@ -25761,51 +31510,81 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assign semantic error: Bindings mismatch: after transform: ScopeId(0): ["S", "S2", "T", "T2", "a", "a2", "b", "b2", "s", "s2", "t", "t2"] rebuilt : ScopeId(0): ["S", "T", "a", "a2", "b", "b2", "s", "s2", "t", "t2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembers3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["S", "S2", "T", "T2", "a", "a2", "b", "b2", "s", "s2", "t", "t2"] rebuilt : ScopeId(0): ["S", "T", "a", "a2", "b", "b2", "s", "s2", "t", "t2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembersNumericNames.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["S", "S2", "T", "T2", "a", "a2", "b", "b2", "s", "s2", "t", "t2"] rebuilt : ScopeId(0): ["S", "T", "a", "a2", "b", "b2", "s", "s2", "t", "t2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/callSignatureAssignabilityInInheritance2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "Base", "Derived", "Derived2", "I", "OtherDerived"] rebuilt : ScopeId(0): ["Base", "Derived", "Derived2", "OtherDerived"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/callSignatureAssignabilityInInheritance4.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "Base", "Derived", "Derived2", "I", "OtherDerived"] rebuilt : ScopeId(0): ["Base", "Derived", "Derived2", "OtherDerived"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/callSignatureAssignabilityInInheritance5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "Base", "Derived", "Derived2", "I", "OtherDerived"] rebuilt : ScopeId(0): ["Base", "Derived", "Derived2", "OtherDerived"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/constructSignatureAssignabilityInInheritance2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "Base", "Derived", "Derived2", "I", "OtherDerived"] rebuilt : ScopeId(0): ["Base", "Derived", "Derived2", "OtherDerived"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(18)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/constructSignatureAssignabilityInInheritance4.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "Base", "Derived", "Derived2", "I", "OtherDerived"] rebuilt : ScopeId(0): ["Base", "Derived", "Derived2", "OtherDerived"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(18)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/constructSignatureAssignabilityInInheritance5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "Base", "Derived", "Derived2", "I", "OtherDerived"] rebuilt : ScopeId(0): ["Base", "Derived", "Derived2", "OtherDerived"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/everyTypeAssignableToAny.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "E", "I", "T", "a", "ac", "ae", "ai", "b", "c", "d", "e", "f", "foo", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q"] rebuilt : ScopeId(0): ["C", "E", "a", "ac", "ae", "ai", "b", "c", "d", "e", "f", "foo", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(3): ["A", "E"] rebuilt : ScopeId(2): ["E"] @@ -25820,6 +31599,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assign semantic error: Bindings mismatch: after transform: ScopeId(0): ["Test1", "Test2", "hasOwn", "source", "target", "toString"] rebuilt : ScopeId(0): ["hasOwn", "target", "toString"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(3): Some("source") rebuilt : ReferenceId(0): None @@ -25828,6 +31610,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assign semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "E", "I", "T", "ac", "ae", "ai", "b", "c", "d", "e", "f", "foo", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q"] rebuilt : ScopeId(0): ["C", "E", "ac", "ae", "ai", "b", "c", "d", "e", "f", "foo", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(3): ["A", "E"] rebuilt : ScopeId(2): ["E"] @@ -25850,6 +31635,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assign semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "E", "I", "T", "ac", "ae", "ai", "b", "c", "d", "e", "f", "foo", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q"] rebuilt : ScopeId(0): ["C", "E", "ac", "ae", "ai", "b", "c", "d", "e", "f", "foo", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(3): ["A", "E"] rebuilt : ScopeId(2): ["E"] @@ -25903,6 +31691,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/compar semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1", "I2", "x", "y", "z"] rebuilt : ScopeId(0): ["x", "y", "z"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/comparable/independentPropertyVariance.ts semantic error: Bindings mismatch: @@ -25941,11 +31732,17 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/recurs semantic error: Bindings mismatch: after transform: ScopeId(0): ["AA", "BB"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/recursiveTypes/infiniteExpansionThroughTypeInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["G", "ff"] rebuilt : ScopeId(0): ["ff"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(2): ["T", "g"] rebuilt : ScopeId(1): ["g"] @@ -25954,11 +31751,17 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/recurs semantic error: Bindings mismatch: after transform: ScopeId(0): ["BinaryTuple", "List", "Sequence"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/recursiveTypes/nominalSubtypeCheckOfTypeParameter2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "A2", "A3", "B", "C"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/recursiveTypes/recursiveTypeInGenericConstraint.ts semantic error: Bindings mismatch: @@ -25972,7 +31775,10 @@ after transform: ScopeId(3): ["T"] rebuilt : ScopeId(3): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/recursiveTypes/recursiveTypesUsedAsFunctionParameters.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] Bindings mismatch: @@ -25987,6 +31793,9 @@ rebuilt : ScopeId(4): ["x"] Bindings mismatch: after transform: ScopeId(9): ["T", "U", "foo3", "foo4", "foo5", "list", "myList", "r", "r2"] rebuilt : ScopeId(5): ["foo3", "foo4", "foo5", "list", "myList", "r", "r2"] +Scope children mismatch: +after transform: ScopeId(9): [ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17)] +rebuilt : ScopeId(5): [ScopeId(6), ScopeId(7), ScopeId(8)] Bindings mismatch: after transform: ScopeId(11): ["V", "x"] rebuilt : ScopeId(6): ["x"] @@ -26005,6 +31814,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtyp semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "E", "I", "f1", "f10", "f11", "f12", "f13", "f14", "f15", "f16", "f2", "f3", "f4", "f5", "f6", "f7", "f8", "f9"] rebuilt : ScopeId(0): ["C", "E", "f1", "f10", "f11", "f12", "f13", "f14", "f15", "f16", "f2", "f3", "f4", "f5", "f6", "f7", "f8", "f9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69), ScopeId(70), ScopeId(71)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38)] Bindings mismatch: after transform: ScopeId(58): ["T", "x"] rebuilt : ScopeId(33): ["x"] @@ -26045,7 +31857,10 @@ Missing ReferenceId: CallSignature Missing ReferenceId: CallSignature tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithCallSignatures2.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(55), ScopeId(57), ScopeId(59), ScopeId(61), ScopeId(63), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69), ScopeId(70), ScopeId(71), ScopeId(72), ScopeId(73), ScopeId(74), ScopeId(75), ScopeId(76), ScopeId(77), ScopeId(78)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(25), ScopeId(27), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42)] +Bindings mismatch: after transform: ScopeId(41): ["T", "x"] rebuilt : ScopeId(5): ["x"] Bindings mismatch: @@ -26112,7 +31927,10 @@ Missing ReferenceId: WithGenericSignaturesInBaseType Missing ReferenceId: WithGenericSignaturesInBaseType tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithCallSignatures4.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24)] +Bindings mismatch: after transform: ScopeId(27): ["T", "x"] rebuilt : ScopeId(5): ["x"] Bindings mismatch: @@ -26184,6 +32002,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtyp semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "Derived", "Derived2", "OtherDerived", "T", "U", "r1", "r10", "r10a", "r10arg1", "r10arg2", "r10b", "r11", "r11a", "r11arg1", "r11arg2", "r11b", "r12", "r12a", "r12arg1", "r12arg2", "r12b", "r13", "r13a", "r13arg1", "r13arg2", "r13b", "r14", "r14a", "r14arg1", "r14arg2", "r14b", "r15", "r15arg1", "r16", "r16arg1", "r17", "r17arg1", "r18", "r18arg1", "r1a", "r1arg1", "r1arg2", "r1b", "r2", "r2a", "r2arg1", "r2arg2", "r2b", "r3", "r3a", "r3arg1", "r3arg2", "r3b", "r4", "r4a", "r4arg1", "r4arg2", "r4b", "r5", "r5a", "r5arg1", "r5arg2", "r5b", "r6", "r6a", "r6arg1", "r6arg2", "r6b", "r7", "r7a", "r7arg1", "r7arg2", "r7b", "r8", "r8a", "r8arg1", "r8arg2", "r8b", "r9", "r9a", "r9arg1", "r9arg2", "r9b"] rebuilt : ScopeId(0): ["Base", "Derived", "Derived2", "OtherDerived", "r1", "r10", "r10a", "r10arg1", "r10arg2", "r10b", "r11", "r11a", "r11arg1", "r11arg2", "r11b", "r12", "r12a", "r12arg1", "r12arg2", "r12b", "r13", "r13a", "r13arg1", "r13arg2", "r13b", "r14", "r14a", "r14arg1", "r14arg2", "r14b", "r15", "r15arg1", "r16", "r16arg1", "r17", "r17arg1", "r18", "r18arg1", "r1a", "r1arg1", "r1arg2", "r1b", "r2", "r2a", "r2arg1", "r2arg2", "r2b", "r3", "r3a", "r3arg1", "r3arg2", "r3b", "r4", "r4a", "r4arg1", "r4arg2", "r4b", "r5", "r5a", "r5arg1", "r5arg2", "r5b", "r6", "r6a", "r6arg1", "r6arg2", "r6b", "r7", "r7a", "r7arg1", "r7arg2", "r7b", "r8", "r8a", "r8arg1", "r8arg2", "r8b", "r9", "r9a", "r9arg1", "r9arg2", "r9b"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(36), ScopeId(37), ScopeId(40), ScopeId(41), ScopeId(44), ScopeId(45), ScopeId(52)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithConstructSignatures3.ts semantic error: Semantic Collector failed after transform @@ -26200,11 +32021,17 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtyp semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "Derived", "Derived2", "OtherDerived", "T", "U", "V", "r1", "r11", "r11a", "r11arg", "r11arg2", "r11b", "r15", "r15a", "r15arg", "r15arg2", "r15b", "r16", "r16a", "r16arg", "r16arg2", "r16b", "r17", "r17arg", "r18", "r18arg", "r1a", "r1arg", "r1arg2", "r1b", "r2", "r2a", "r2arg", "r2arg2", "r2b", "r3", "r3a", "r3arg", "r3arg2", "r3b", "r4", "r4a", "r4arg", "r4arg2", "r4b", "r5", "r5a", "r5arg", "r5arg2", "r5b", "r6", "r6a", "r6arg", "r6arg2", "r6b"] rebuilt : ScopeId(0): ["Base", "Derived", "Derived2", "OtherDerived", "r1", "r11", "r11a", "r11arg", "r11arg2", "r11b", "r15", "r15a", "r15arg", "r15arg2", "r15b", "r16", "r16a", "r16arg", "r16arg2", "r16b", "r17", "r17arg", "r18", "r18arg", "r1a", "r1arg", "r1arg2", "r1b", "r2", "r2a", "r2arg", "r2arg2", "r2b", "r3", "r3a", "r3arg", "r3arg2", "r3b", "r4", "r4a", "r4arg", "r4arg2", "r4b", "r5", "r5a", "r5arg", "r5arg2", "r5b", "r6", "r6a", "r6arg", "r6arg2", "r6b"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(26), ScopeId(27), ScopeId(34)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithConstructSignatures5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "Base", "Derived", "Derived2", "I", "OtherDerived"] rebuilt : ScopeId(0): ["Base", "Derived", "Derived2", "OtherDerived"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembersOptionality.ts semantic error: Semantic Collector failed after transform @@ -26217,11 +32044,17 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtyp semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "Derived", "S", "S2", "S3", "T", "T2", "T3", "a", "b", "r"] rebuilt : ScopeId(0): ["a", "b", "r"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembersOptionality4.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "Derived", "S", "S2", "S3", "T", "T2", "T3", "a", "b", "r"] rebuilt : ScopeId(0): ["a", "b", "r"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithOptionalProperties.ts semantic error: Bindings mismatch: @@ -26236,6 +32069,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(3): [] @@ -26244,6 +32080,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "E", "I", "a", "b", "foo10", "foo11", "foo12", "foo13", "foo14", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "E", "a", "b", "foo10", "foo11", "foo12", "foo13", "foo14", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(3): [] @@ -26258,6 +32097,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "I2", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Bindings mismatch: after transform: ScopeId(5): ["T"] rebuilt : ScopeId(5): [] @@ -26266,6 +32108,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "I2", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Bindings mismatch: after transform: ScopeId(5): ["T"] rebuilt : ScopeId(5): [] @@ -26274,6 +32119,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "I2", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Bindings mismatch: after transform: ScopeId(5): ["T"] rebuilt : ScopeId(5): [] @@ -26282,24 +32130,45 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "I2", "a", "foo13", "foo14", "foo14b", "foo15", "foo2", "foo3", "foo4", "foo5"] rebuilt : ScopeId(0): ["a", "foo13", "foo14", "foo14b", "foo15", "foo2", "foo3", "foo4", "foo5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithCallSignaturesWithOverloads.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "I2", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(9), ScopeId(14), ScopeId(17), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69), ScopeId(70), ScopeId(71), ScopeId(72), ScopeId(73), ScopeId(74), ScopeId(75), ScopeId(76), ScopeId(77), ScopeId(78), ScopeId(79), ScopeId(80)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] +Scope children mismatch: +after transform: ScopeId(5): [ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(3): [ScopeId(4)] Bindings mismatch: after transform: ScopeId(9): ["T"] rebuilt : ScopeId(5): [] +Scope children mismatch: +after transform: ScopeId(9): [ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13)] +rebuilt : ScopeId(5): [ScopeId(6)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithComplexConstraints.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "foo"] rebuilt : ScopeId(0): ["foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithConstructSignatures.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "I2", "a", "foo1", "foo10", "foo12", "foo12b", "foo13", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "foo1", "foo10", "foo12", "foo12b", "foo13", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22)] Bindings mismatch: after transform: ScopeId(5): ["T"] rebuilt : ScopeId(5): [] @@ -26308,6 +32177,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "C", "I", "I2", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] rebuilt : ScopeId(0): ["B", "C", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(3): [] @@ -26316,6 +32188,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "C", "I", "I2", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] rebuilt : ScopeId(0): ["B", "C", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(3): [] @@ -26324,6 +32199,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "I2", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Bindings mismatch: after transform: ScopeId(2): ["T", "x"] rebuilt : ScopeId(2): ["x"] @@ -26341,6 +32219,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "I2", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Bindings mismatch: after transform: ScopeId(2): ["T", "U", "x", "y"] rebuilt : ScopeId(2): ["x", "y"] @@ -26358,6 +32239,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "I2", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Bindings mismatch: after transform: ScopeId(2): ["T", "x"] rebuilt : ScopeId(2): ["x"] @@ -26375,6 +32259,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "D", "I", "I2", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo6", "foo6c", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "D", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo6", "foo6c", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69), ScopeId(70), ScopeId(71), ScopeId(72), ScopeId(73), ScopeId(74), ScopeId(75), ScopeId(76), ScopeId(77)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30)] Bindings mismatch: after transform: ScopeId(2): ["T", "U", "x", "y"] rebuilt : ScopeId(2): ["x", "y"] @@ -26395,6 +32282,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "D", "Five", "Four", "I", "I2", "One", "Six", "Three", "Two", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo6", "foo6c", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "D", "One", "Two", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo6", "foo6c", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69), ScopeId(70), ScopeId(71), ScopeId(72), ScopeId(73), ScopeId(74), ScopeId(75), ScopeId(76), ScopeId(77), ScopeId(78), ScopeId(79), ScopeId(80), ScopeId(81), ScopeId(82), ScopeId(83)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32)] Bindings mismatch: after transform: ScopeId(8): ["T", "U", "x", "y"] rebuilt : ScopeId(4): ["x", "y"] @@ -26415,6 +32305,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "I2", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Bindings mismatch: after transform: ScopeId(2): ["T", "x"] rebuilt : ScopeId(2): ["x"] @@ -26432,6 +32325,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "I2", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Bindings mismatch: after transform: ScopeId(2): ["T", "x"] rebuilt : ScopeId(2): ["x"] @@ -26449,6 +32345,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "I2", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Bindings mismatch: after transform: ScopeId(2): ["T", "x"] rebuilt : ScopeId(2): ["x"] @@ -26466,11 +32365,17 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "D", "I", "I2", "Z", "a", "foo1", "foo13", "foo14", "foo14b", "foo15", "foo2", "foo3"] rebuilt : ScopeId(0): ["a", "foo1", "foo13", "foo14", "foo14b", "foo15", "foo2", "foo3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingTypeParameterNames.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "I2", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Bindings mismatch: after transform: ScopeId(2): ["T", "x"] rebuilt : ScopeId(2): ["x"] @@ -26488,6 +32393,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "I2", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Bindings mismatch: after transform: ScopeId(2): ["T", "x", "y"] rebuilt : ScopeId(2): ["x", "y"] @@ -26505,6 +32413,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "I2", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Bindings mismatch: after transform: ScopeId(2): ["T", "U", "x", "y"] rebuilt : ScopeId(2): ["x", "y"] @@ -26522,6 +32433,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "I2", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Bindings mismatch: after transform: ScopeId(2): ["T", "U", "x", "y"] rebuilt : ScopeId(2): ["x", "y"] @@ -26539,6 +32453,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "C", "I", "I2", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] rebuilt : ScopeId(0): ["B", "C", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18)] Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] @@ -26553,6 +32470,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "C", "D", "I", "I2", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5c", "foo6c", "foo8", "foo9"] rebuilt : ScopeId(0): ["B", "C", "D", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5c", "foo6c", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22)] Bindings mismatch: after transform: ScopeId(1): ["T", "U"] rebuilt : ScopeId(1): [] @@ -26570,6 +32490,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "C", "D", "Five", "Four", "I", "I2", "One", "Six", "Three", "Two", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5c", "foo6c", "foo8", "foo9"] rebuilt : ScopeId(0): ["B", "C", "D", "One", "Two", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5c", "foo6c", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24)] Bindings mismatch: after transform: ScopeId(7): ["T", "U"] rebuilt : ScopeId(3): [] @@ -26587,6 +32510,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "C", "I", "I2", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo8", "foo9"] rebuilt : ScopeId(0): ["B", "C", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20)] Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] @@ -26601,6 +32527,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "C", "I", "I2", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] rebuilt : ScopeId(0): ["B", "C", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19)] Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] @@ -26615,6 +32544,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "C", "I", "I2", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] rebuilt : ScopeId(0): ["B", "C", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18)] Bindings mismatch: after transform: ScopeId(1): ["U", "V"] rebuilt : ScopeId(1): [] @@ -26629,6 +32561,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "C", "I", "I2", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] rebuilt : ScopeId(0): ["B", "C", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18)] Bindings mismatch: after transform: ScopeId(1): ["U"] rebuilt : ScopeId(1): [] @@ -26643,6 +32578,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "C", "I", "I2", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] rebuilt : ScopeId(0): ["B", "C", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18)] Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] @@ -26657,6 +32595,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "C", "I", "I2", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] rebuilt : ScopeId(0): ["B", "C", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18)] Bindings mismatch: after transform: ScopeId(1): ["T", "U"] rebuilt : ScopeId(1): [] @@ -26671,6 +32612,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "C", "I", "I2", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] rebuilt : ScopeId(0): ["B", "C", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18)] Bindings mismatch: after transform: ScopeId(1): ["T", "U"] rebuilt : ScopeId(1): [] @@ -26685,6 +32629,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "PA", "PB", "a", "b", "foo1", "foo10", "foo11", "foo11b", "foo11c", "foo12", "foo13", "foo14", "foo15", "foo16", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo5d", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "PA", "PB", "a", "b", "foo1", "foo10", "foo11", "foo11b", "foo11c", "foo12", "foo13", "foo14", "foo15", "foo16", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo5d", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69), ScopeId(70), ScopeId(71), ScopeId(72), ScopeId(73), ScopeId(74), ScopeId(75)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(3): [] @@ -26693,6 +32640,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "Base", "C", "Derived", "I", "PA", "PB", "a", "b", "foo1", "foo10", "foo11", "foo11b", "foo11c", "foo12", "foo13", "foo14", "foo15", "foo16", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo5d", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "Base", "C", "Derived", "PA", "PB", "a", "b", "foo1", "foo10", "foo11", "foo11b", "foo11c", "foo12", "foo13", "foo14", "foo15", "foo16", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo5d", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69), ScopeId(70), ScopeId(71), ScopeId(72), ScopeId(73), ScopeId(74), ScopeId(75), ScopeId(76), ScopeId(77)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30)] Bindings mismatch: after transform: ScopeId(5): ["T"] rebuilt : ScopeId(5): [] @@ -26701,6 +32651,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "PA", "PB", "a", "b", "foo1", "foo10", "foo11", "foo11b", "foo11c", "foo12", "foo13", "foo14", "foo15", "foo16", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo5d", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "PA", "PB", "a", "b", "foo1", "foo10", "foo11", "foo11b", "foo11c", "foo12", "foo13", "foo14", "foo15", "foo16", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo5d", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69), ScopeId(70), ScopeId(71), ScopeId(72), ScopeId(73), ScopeId(74), ScopeId(75)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(3): [] @@ -26709,6 +32662,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "a", "b", "foo10", "foo12", "foo13", "foo14", "foo2", "foo3", "foo6", "foo7", "foo8"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo10", "foo12", "foo13", "foo14", "foo2", "foo3", "foo6", "foo7", "foo8"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(3): [] @@ -26717,12 +32673,18 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "PA", "PB", "a", "b", "foo1", "foo10", "foo11", "foo11b", "foo11c", "foo12", "foo13", "foo14", "foo15", "foo16", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo5d", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "PA", "PB", "a", "b", "foo1", "foo10", "foo11", "foo11b", "foo11c", "foo12", "foo13", "foo14", "foo15", "foo16", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo5d", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69), ScopeId(70), ScopeId(71), ScopeId(72), ScopeId(73), ScopeId(74), ScopeId(75)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(3): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithPrivates2.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] Bindings mismatch: @@ -26733,6 +32695,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(3): [] @@ -26741,6 +32706,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "PA", "PB", "a", "b", "foo1", "foo10", "foo11", "foo11b", "foo11c", "foo12", "foo13", "foo14", "foo15", "foo16", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo5d", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "PA", "PB", "a", "b", "foo1", "foo10", "foo11", "foo11b", "foo11c", "foo12", "foo13", "foo14", "foo15", "foo16", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo5d", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69), ScopeId(70), ScopeId(71), ScopeId(72), ScopeId(73), ScopeId(74), ScopeId(75)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(3): [] @@ -26749,12 +32717,18 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "Base", "C", "Derived", "I", "PA", "PB", "a", "b", "foo1", "foo10", "foo11", "foo11b", "foo11c", "foo12", "foo13", "foo14", "foo15", "foo16", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo5d", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "Base", "C", "Derived", "PA", "PB", "a", "b", "foo1", "foo10", "foo11", "foo11b", "foo11c", "foo12", "foo13", "foo14", "foo15", "foo16", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo5d", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69), ScopeId(70), ScopeId(71), ScopeId(72), ScopeId(73), ScopeId(74), ScopeId(75), ScopeId(76), ScopeId(77)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30)] Bindings mismatch: after transform: ScopeId(5): ["T"] rebuilt : ScopeId(5): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/primtiveTypesAreIdentical.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +Bindings mismatch: after transform: ScopeId(17): ["A", "E"] rebuilt : ScopeId(6): ["E"] Scope flags mismatch: @@ -26765,6 +32739,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "C2", "I", "I2", "foo1", "foo2", "foo3"] rebuilt : ScopeId(0): ["C", "C2", "foo1", "foo2", "foo3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(14), ScopeId(27), ScopeId(37), ScopeId(46)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(11)] Bindings mismatch: after transform: ScopeId(3): ["T", "x"] rebuilt : ScopeId(1): ["x"] @@ -26774,9 +32751,15 @@ rebuilt : ScopeId(2): ["x"] Bindings mismatch: after transform: ScopeId(7): ["T", "U", "inner", "inner2", "x", "y"] rebuilt : ScopeId(3): ["inner", "inner2", "x", "y"] +Scope children mismatch: +after transform: ScopeId(7): [ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5)] Bindings mismatch: after transform: ScopeId(14): ["T"] rebuilt : ScopeId(6): [] +Scope children mismatch: +after transform: ScopeId(14): [ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] +rebuilt : ScopeId(6): [ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] Bindings mismatch: after transform: ScopeId(20): ["U", "a", "x"] rebuilt : ScopeId(8): ["a", "x"] @@ -26789,6 +32772,9 @@ rebuilt : ScopeId(10): ["x"] Bindings mismatch: after transform: ScopeId(27): ["T"] rebuilt : ScopeId(11): [] +Scope children mismatch: +after transform: ScopeId(27): [ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36)] +rebuilt : ScopeId(11): [ScopeId(12), ScopeId(13), ScopeId(14)] Bindings mismatch: after transform: ScopeId(33): ["U", "a", "x"] rebuilt : ScopeId(13): ["a", "x"] @@ -26800,6 +32786,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeIn semantic error: Bindings mismatch: after transform: ScopeId(0): ["Array", "a", "b", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(4): Some("a") rebuilt : ReferenceId(0): None @@ -26811,11 +32800,17 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeIn semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo", "FooA", "FooBar", "InferA", "Item", "x1", "x2"] rebuilt : ScopeId(0): ["x1", "x2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallTypeArgumentInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "c", "foo", "foo2", "foo2b", "i", "r", "r10", "r11", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9"] rebuilt : ScopeId(0): ["C", "c", "foo", "foo2", "foo2b", "i", "r", "r10", "r11", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(14)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Bindings mismatch: after transform: ScopeId(1): ["T", "t"] rebuilt : ScopeId(1): ["t"] @@ -26856,6 +32851,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeIn semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "C", "Derived", "Derived2", "I", "b", "c", "d1", "d2", "foo", "foo2", "foo2b", "foo2c", "i", "r", "r10", "r11", "r2", "r3", "r3b", "r4", "r5", "r6", "r7", "r8", "r8b", "r9"] rebuilt : ScopeId(0): ["Base", "C", "Derived", "Derived2", "b", "c", "d1", "d2", "foo", "foo2", "foo2b", "foo2c", "i", "r", "r10", "r11", "r2", "r3", "r3b", "r4", "r5", "r6", "r7", "r8", "r8b", "r9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(18)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] Bindings mismatch: after transform: ScopeId(4): ["T", "t"] rebuilt : ScopeId(4): ["t"] @@ -26899,7 +32897,10 @@ after transform: ScopeId(1): ["T", "U", "cb", "u"] rebuilt : ScopeId(1): ["cb", "u"] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithFunctionTypedArguments4.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +Bindings mismatch: after transform: ScopeId(5): ["T", "U", "cb", "u"] rebuilt : ScopeId(3): ["cb", "u"] @@ -26929,6 +32930,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeIn semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "Derived", "Derived2", "I", "f", "f2", "i", "r", "r2", "r3", "r4"] rebuilt : ScopeId(0): ["Base", "Derived", "Derived2", "f", "f2", "i", "r", "r2", "r3", "r4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] Bindings mismatch: after transform: ScopeId(4): ["T", "U", "a"] rebuilt : ScopeId(4): ["a"] @@ -26951,6 +32955,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeIn semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "Derived", "I", "f", "f2", "f3", "i", "r", "r2", "r3", "r4", "r5", "r6", "r7"] rebuilt : ScopeId(0): ["Base", "Derived", "f", "f2", "f3", "i", "r", "r2", "r3", "r4", "r5", "r6", "r7"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] Bindings mismatch: after transform: ScopeId(3): ["T", "r", "x"] rebuilt : ScopeId(3): ["r", "x"] @@ -27045,16 +33052,25 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeIn semantic error: Bindings mismatch: after transform: ScopeId(0): ["AssignAction", "Config", "LowInfer", "Meta", "PartialAssigner", "PropertyAssigner"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericContextualTypes3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AssignAction", "Config", "LowInfer", "Meta", "PartialAssigner", "PropertyAssigner"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/intraExpressionInferencesJsx.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "AnimatedViewProps", "Animations", "B", "C", "Component", "Foo", "Props", "StyleParam", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["Component", "Foo", "_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13)] Bindings mismatch: after transform: ScopeId(10): ["T", "animations", "style"] rebuilt : ScopeId(1): ["animations", "style"] @@ -27066,11 +33082,17 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeIn semantic error: Bindings mismatch: after transform: ScopeId(0): ["X", "a", "b", "c"] rebuilt : ScopeId(0): ["a", "b", "c"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/keyofInferenceLowerPriorityThanReturn.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["BookDef", "BookReq", "MakeTable", "bookTable", "f", "insertOnConflictDoNothing"] rebuilt : ScopeId(0): ["bookTable", "f", "insertOnConflictDoNothing"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(11): ["Def", "Req", "_conflictTarget", "_table"] rebuilt : ScopeId(1): ["_conflictTarget", "_table"] @@ -27079,6 +33101,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeIn semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bear", "ITest", "Man", "Maybe", "Pig", "Y", "assign", "baz1", "createTest", "createTestAsync", "destructure", "foo", "foo1", "func", "get", "isNonVoid", "isVoid", "mbp", "res", "result", "value", "x1", "x2", "y"] rebuilt : ScopeId(0): ["assign", "baz1", "createTest", "createTestAsync", "destructure", "foo", "foo1", "func", "get", "isNonVoid", "isVoid", "res", "result", "value", "x1", "x2", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(10), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(9), ScopeId(12), ScopeId(13), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18)] Bindings mismatch: after transform: ScopeId(2): ["a", "haveValue", "haveY", "r", "something"] rebuilt : ScopeId(1): ["haveValue", "haveY", "something"] @@ -27110,10 +33135,18 @@ Reference mismatch: after transform: ReferenceId(53): Some("mbp") rebuilt : ReferenceId(26): None +tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/unionAndIntersectionInference2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/unionAndIntersectionInference3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AB", "Bar1", "Bar2", "ComponentClass", "ComponentType", "Foo1", "Foo2", "FunctionComponent", "Maybe", "MyComponent", "Props", "R", "RouteComponentProps", "S", "T", "U", "a", "ab", "b", "f1", "f2", "g", "g1", "g2", "sa", "sx", "x1", "x2", "y1", "y2", "z"] rebuilt : ScopeId(0): ["g", "x1", "x2", "y1", "y2", "z"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(3): ["R", "S", "U", "com"] rebuilt : ScopeId(1): ["com"] @@ -27166,35 +33199,58 @@ Reference mismatch: after transform: ReferenceId(122): Some("b") rebuilt : ReferenceId(23): None +tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/widenedTypes/strictNullChecksNoWidening.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/conformance/types/union/contextualTypeWithUnionTypeCallSignatures.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IWithCallSignatures", "IWithCallSignatures2", "IWithCallSignatures3", "IWithCallSignatures4", "IWithNoCallSignatures", "x", "x2", "x3", "x4"] rebuilt : ScopeId(0): ["x", "x2", "x3", "x4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] tasks/coverage/typescript/tests/cases/conformance/types/union/contextualTypeWithUnionTypeIndexSignatures.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IWithNoNumberIndexSignature", "IWithNoStringIndexSignature", "IWithNumberIndexSignature1", "IWithNumberIndexSignature2", "IWithStringIndexSignature1", "IWithStringIndexSignature2", "SomeType", "SomeType2", "x", "x2", "x3", "x4"] rebuilt : ScopeId(0): ["x", "x2", "x3", "x4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] tasks/coverage/typescript/tests/cases/conformance/types/union/contextualTypeWithUnionTypeMembers.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1", "I11", "I2", "I21", "arrayI1OrI2", "arrayOrI11OrI21", "i1", "i11", "i11Ori21", "i1Ori2", "i2", "i21"] rebuilt : ScopeId(0): ["arrayI1OrI2", "arrayOrI11OrI21", "i1", "i11", "i11Ori21", "i1Ori2", "i2", "i21"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(31), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24)] tasks/coverage/typescript/tests/cases/conformance/types/union/discriminatedUnionTypes3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Correct", "Err", "SomeReturnType", "example"] rebuilt : ScopeId(0): ["example"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/union/unionTypeCallSignatures2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "a1", "a2", "a3", "f1", "f2", "f3", "n1", "n2", "n3", "s1", "s2", "s3"] rebuilt : ScopeId(0): ["a1", "a2", "a3", "f1", "f2", "f3", "n1", "n2", "n3", "s1", "s2", "s3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/union/unionTypeCallSignatures7.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Callable", "f", "result"] rebuilt : ScopeId(0): ["result"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference mismatch: after transform: ReferenceId(4): Some("f") rebuilt : ReferenceId(0): None @@ -27203,11 +33259,20 @@ tasks/coverage/typescript/tests/cases/conformance/types/union/unionTypeReduction semantic error: Bindings mismatch: after transform: ScopeId(0): ["I2", "I3", "e1", "e2", "i2", "i3", "r1", "r2"] rebuilt : ScopeId(0): ["e1", "e2", "i2", "i3", "r1", "r2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/uniqueSymbol/uniqueSymbols.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "C0", "C1", "Context", "I", "L", "N", "arrayOfConstCall", "asyncFuncReturnConstCall", "asyncFuncReturnLetCall", "asyncFuncReturnVarCall", "asyncGenFuncYieldConstCall", "asyncGenFuncYieldLetCall", "asyncGenFuncYieldVarCall", "c", "ce0", "constCall", "constInitToCReadonlyCall", "constInitToCReadonlyCallWithIndexedAccess", "constInitToCReadonlyCallWithTypeQuery", "constInitToCReadonlyStaticCall", "constInitToCReadonlyStaticCallWithTypeQuery", "constInitToCReadonlyStaticType", "constInitToCReadonlyStaticTypeAndCall", "constInitToCReadonlyStaticTypeAndCallWithTypeQuery", "constInitToCReadonlyStaticTypeWithTypeQuery", "constInitToCReadwriteCall", "constInitToCReadwriteCallWithIndexedAccess", "constInitToCReadwriteCallWithTypeQuery", "constInitToCReadwriteStaticCall", "constInitToCReadwriteStaticCallWithTypeQuery", "constInitToConstCall", "constInitToConstCallWithTypeQuery", "constInitToConstDeclAmbient", "constInitToConstDeclAmbientWithTypeQuery", "constInitToIReadonlyType", "constInitToIReadonlyTypeWithIndexedAccess", "constInitToIReadonlyTypeWithTypeQuery", "constInitToLReadonlyNestedType", "constInitToLReadonlyNestedTypeWithIndexedAccess", "constInitToLReadonlyNestedTypeWithTypeQuery", "constInitToLReadonlyType", "constInitToLReadonlyTypeWithIndexedAccess", "constInitToLReadonlyTypeWithTypeQuery", "constInitToLetCall", "constInitToVarCall", "constType", "constTypeAndCall", "fromAny", "funcInferredReturnType", "funcReturnConstCall", "funcReturnConstCallWithTypeQuery", "funcReturnLetCall", "funcReturnVarCall", "genFuncYieldConstCall", "genFuncYieldConstCallWithTypeQuery", "genFuncYieldLetCall", "genFuncYieldVarCall", "i", "l", "letCall", "letInitToConstCall", "letInitToConstDeclAmbient", "letInitToLetCall", "letInitToVarCall", "o", "o2", "o3", "o4", "promiseForConstCall", "s", "varCall", "varInitToConstCall", "varInitToConstDeclAmbient", "varInitToLetCall", "varInitToVarCall"] rebuilt : ScopeId(0): ["C", "C0", "C1", "arrayOfConstCall", "asyncFuncReturnConstCall", "asyncFuncReturnLetCall", "asyncFuncReturnVarCall", "asyncGenFuncYieldConstCall", "asyncGenFuncYieldLetCall", "asyncGenFuncYieldVarCall", "ce0", "constCall", "constInitToCReadonlyCall", "constInitToCReadonlyCallWithIndexedAccess", "constInitToCReadonlyCallWithTypeQuery", "constInitToCReadonlyStaticCall", "constInitToCReadonlyStaticCallWithTypeQuery", "constInitToCReadonlyStaticType", "constInitToCReadonlyStaticTypeAndCall", "constInitToCReadonlyStaticTypeAndCallWithTypeQuery", "constInitToCReadonlyStaticTypeWithTypeQuery", "constInitToCReadwriteCall", "constInitToCReadwriteCallWithIndexedAccess", "constInitToCReadwriteCallWithTypeQuery", "constInitToCReadwriteStaticCall", "constInitToCReadwriteStaticCallWithTypeQuery", "constInitToConstCall", "constInitToConstCallWithTypeQuery", "constInitToConstDeclAmbient", "constInitToConstDeclAmbientWithTypeQuery", "constInitToIReadonlyType", "constInitToIReadonlyTypeWithIndexedAccess", "constInitToIReadonlyTypeWithTypeQuery", "constInitToLReadonlyNestedType", "constInitToLReadonlyNestedTypeWithIndexedAccess", "constInitToLReadonlyNestedTypeWithTypeQuery", "constInitToLReadonlyType", "constInitToLReadonlyTypeWithIndexedAccess", "constInitToLReadonlyTypeWithTypeQuery", "constInitToLetCall", "constInitToVarCall", "constTypeAndCall", "fromAny", "funcInferredReturnType", "funcReturnConstCall", "funcReturnConstCallWithTypeQuery", "funcReturnLetCall", "funcReturnVarCall", "genFuncYieldConstCall", "genFuncYieldConstCallWithTypeQuery", "genFuncYieldLetCall", "genFuncYieldVarCall", "letCall", "letInitToConstCall", "letInitToConstDeclAmbient", "letInitToLetCall", "letInitToVarCall", "o2", "o3", "o4", "promiseForConstCall", "varCall", "varInitToConstCall", "varInitToConstDeclAmbient", "varInitToLetCall", "varInitToVarCall"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(33), ScopeId(34), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(50)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(38)] +Scope children mismatch: +after transform: ScopeId(50): [ScopeId(51)] +rebuilt : ScopeId(38): [] Reference mismatch: after transform: ReferenceId(7): Some("constType") rebuilt : ReferenceId(7): None diff --git a/tasks/transform_conformance/babel.snap.md b/tasks/transform_conformance/babel.snap.md index e13aa0c8e997f..d5045be53ea90 100644 --- a/tasks/transform_conformance/babel.snap.md +++ b/tasks/transform_conformance/babel.snap.md @@ -1,6 +1,6 @@ commit: 12619ffe -Passed: 403/953 +Passed: 396/953 # All Passed: * babel-preset-react @@ -1651,6 +1651,10 @@ preset-env: unknown field `shippedProposals`, expected `targets` or `bugfixes` | after transform: ScopeId(0): ["_unused"] | rebuilt : ScopeId(0): [] + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] + | rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + x Bindings mismatch: | after transform: No scope | rebuilt : ScopeId(2): [] @@ -1669,6 +1673,10 @@ preset-env: unknown field `shippedProposals`, expected `targets` or `bugfixes` | after transform: ScopeId(0): ["_unused"] | rebuilt : ScopeId(0): [] + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] + | rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] + x Bindings mismatch: | after transform: No scope | rebuilt : ScopeId(2): [] @@ -1753,7 +1761,7 @@ preset-env: unknown field `shippedProposals`, expected `targets` or `bugfixes` -# babel-plugin-transform-typescript (58/151) +# babel-plugin-transform-typescript (51/151) * class/accessor-allowDeclareFields-false/input.ts x TS(18010): An accessibility modifier cannot be used with a private | identifier. @@ -1782,23 +1790,49 @@ preset-env: unknown field `shippedProposals`, expected `targets` or `bugfixes` | rebuilt : ScopeId(1): [] +* class/methods/input.ts + x Scope children mismatch: + | after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), + | ScopeId(5)] + | rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] + + +* class/private-method-override/input.ts + x Scope children mismatch: + | after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] + | rebuilt : ScopeId(1): [ScopeId(2)] + + * declarations/erased/input.ts x Bindings mismatch: | after transform: ScopeId(0): ["E", "I", "M", "N", "T", "m", "x"] | rebuilt : ScopeId(0): [] + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), + | ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] + | rebuilt : ScopeId(0): [] + * declarations/export-declare-enum/input.ts x Bindings mismatch: | after transform: ScopeId(0): ["A"] | rebuilt : ScopeId(0): [] + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1)] + | rebuilt : ScopeId(0): [] + * declarations/nested-namespace/input.mjs x Bindings mismatch: | after transform: ScopeId(0): ["P"] | rebuilt : ScopeId(0): [] + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1)] + | rebuilt : ScopeId(0): [] + * enum/boolean-value/input.ts x Bindings mismatch: @@ -2049,12 +2083,33 @@ preset-env: unknown field `shippedProposals`, expected `targets` or `bugfixes` | rebuilt : ScopeId(2): ScopeFlags(StrictMode | Function) +* exports/declare-namespace/input.ts + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] + | rebuilt : ScopeId(0): [ScopeId(1)] + + +* exports/declare-shadowed/input.ts + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), + | ScopeId(4)] + | rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + + * exports/declared-types/input.ts x Bindings mismatch: | after transform: ScopeId(0): ["AA", "AA2", "BB", "BB2", "Bar", "C2", "E", | "I", "II2", "II3", "M", "N", "T", "foo", "m", "x"] | rebuilt : ScopeId(0): ["BB", "BB2", "C2", "foo"] + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), + | ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), + | ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), + | ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18)] + | rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), + | ScopeId(4), ScopeId(5)] + x Bindings mismatch: | after transform: ScopeId(12): ["BB", "K"] | rebuilt : ScopeId(2): ["BB"] @@ -2092,6 +2147,12 @@ preset-env: unknown field `shippedProposals`, expected `targets` or `bugfixes` | rebuilt : ReferenceId(3): None +* exports/default-function/input.ts + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] + | rebuilt : ScopeId(0): [ScopeId(1)] + + * exports/export-const-enums/input.ts x Scope flags mismatch: | after transform: ScopeId(1): ScopeFlags(StrictMode) @@ -2114,6 +2175,10 @@ preset-env: unknown field `shippedProposals`, expected `targets` or `bugfixes` | after transform: ScopeId(0): ["A"] | rebuilt : ScopeId(0): [] + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1)] + | rebuilt : ScopeId(0): [] + * exports/export=/input.ts ! `export = ;` is only supported when compiling modules to CommonJS. @@ -2142,24 +2207,52 @@ preset-env: unknown field `shippedProposals`, expected `targets` or `bugfixes` | after transform: ScopeId(0): ["A", "I"] | rebuilt : ScopeId(0): [] + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] + | rebuilt : ScopeId(0): [] + * exports/issue-9916-1/input.ts x Bindings mismatch: | after transform: ScopeId(0): ["PromiseRejectCb", "PromiseResolveCb", "a"] | rebuilt : ScopeId(0): ["a"] + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] + | rebuilt : ScopeId(0): [] + * exports/issue-9916-2/input.ts x Bindings mismatch: | after transform: ScopeId(0): ["PromiseRejectCb", "PromiseResolveCb"] | rebuilt : ScopeId(0): [] + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] + | rebuilt : ScopeId(0): [] + * exports/issue-9916-3/input.ts x Bindings mismatch: | after transform: ScopeId(0): ["PromiseRejectCb", "PromiseResolveCb", "a"] | rebuilt : ScopeId(0): ["a"] + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] + | rebuilt : ScopeId(0): [] + + +* function/overloads/input.ts + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] + | rebuilt : ScopeId(0): [ScopeId(1)] + + +* function/overloads-exports/input.mjs + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] + | rebuilt : ScopeId(0): [ScopeId(1)] + * function/parameters/input.ts x Bindings mismatch: @@ -2234,6 +2327,10 @@ preset-env: unknown field `shippedProposals`, expected `targets` or `bugfixes` | "H", "Iface", "x", "y"] | rebuilt : ScopeId(0): ["A", "Class", "x", "y"] + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] + | rebuilt : ScopeId(0): [ScopeId(1)] + * imports/elision-qualifiedname/input.ts x Bindings mismatch: @@ -3825,6 +3922,10 @@ preset-env: unknown field `shippedProposals`, expected `targets` or `bugfixes` | after transform: ScopeId(0): ["Platform"] | rebuilt : ScopeId(0): [] + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1)] + | rebuilt : ScopeId(0): [] + * namespace/module-nested/input.ts x Semantic Collector failed after transform diff --git a/tasks/transform_conformance/oxc.snap.md b/tasks/transform_conformance/oxc.snap.md index 8ca188f1f0cbc..7840eec58fa12 100644 --- a/tasks/transform_conformance/oxc.snap.md +++ b/tasks/transform_conformance/oxc.snap.md @@ -1,6 +1,6 @@ commit: 12619ffe -Passed: 9/35 +Passed: 8/35 # All Passed: @@ -12,6 +12,10 @@ Passed: 9/35 | after transform: ScopeId(0): ["_unused", "_unused2"] | rebuilt : ScopeId(0): ["_unused"] + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] + | rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + x Bindings mismatch: | after transform: No scope | rebuilt : ScopeId(2): [] @@ -26,7 +30,7 @@ Passed: 9/35 -# babel-plugin-transform-typescript (3/7) +# babel-plugin-transform-typescript (2/7) * computed-constant-value/input.ts x Semantic Collector failed after transform @@ -64,6 +68,10 @@ Passed: 9/35 | after transform: ScopeId(0): ["A", "ReactiveMarkerSymbol"] | rebuilt : ScopeId(0): [] + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1)] + | rebuilt : ScopeId(0): [] + * enum-member-reference/input.ts x Semantic Collector failed after transform @@ -115,6 +123,12 @@ Passed: 9/35 `---- +* redeclarations/input.ts + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] + | rebuilt : ScopeId(0): [] + + # babel-plugin-transform-react-jsx (6/27) * refresh/can-handle-implicit-arrow-returns/input.jsx @@ -232,6 +246,10 @@ Passed: 9/35 * refresh/generates-valid-signature-for-exotic-ways-to-call-hooks/input.jsx + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1)] + | rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] + x Bindings mismatch: | after transform: No scope | rebuilt : ScopeId(3): [] @@ -250,6 +268,11 @@ Passed: 9/35 * refresh/includes-custom-hooks-into-the-signatures/input.jsx + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] + | rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), + | ScopeId(5), ScopeId(6)] + x Bindings mismatch: | after transform: No scope | rebuilt : ScopeId(2): []