From e632a7b15825eb420784f4fd2a16c6a286d7aca8 Mon Sep 17 00:00:00 2001 From: Boshen <1430279+Boshen@users.noreply.github.com> Date: Mon, 23 Dec 2024 08:24:54 +0000 Subject: [PATCH] feat(transformer): remove typescript symbols after transform (#8069) part of #7460 --- crates/oxc_semantic/src/scope.rs | 19 +- crates/oxc_transformer/src/typescript/mod.rs | 1 + crates/oxc_traverse/src/context/scoping.rs | 4 + tasks/coverage/snapshots/semantic_babel.snap | 882 +- tasks/coverage/snapshots/semantic_misc.snap | 40 +- .../snapshots/semantic_typescript.snap | 12767 +++------------- .../snapshots/babel.snap.md | 38 +- .../snapshots/oxc.snap.md | 8 +- 8 files changed, 2365 insertions(+), 11394 deletions(-) diff --git a/crates/oxc_semantic/src/scope.rs b/crates/oxc_semantic/src/scope.rs index 808898db5ad30..522351e65fe63 100644 --- a/crates/oxc_semantic/src/scope.rs +++ b/crates/oxc_semantic/src/scope.rs @@ -8,9 +8,11 @@ use oxc_syntax::{ node::NodeId, reference::ReferenceId, scope::{ScopeFlags, ScopeId}, - symbol::SymbolId, + symbol::{SymbolFlags, SymbolId}, }; +use crate::SymbolTable; + pub(crate) type Bindings<'a> = hashbrown::HashMap<&'a str, SymbolId, FxBuildHasher, &'a Allocator>; pub type UnresolvedReferences<'a> = hashbrown::HashMap<&'a str, ArenaVec<'a, ReferenceId>, FxBuildHasher, &'a Allocator>; @@ -462,4 +464,19 @@ impl ScopeTree { }); } } + + pub fn delete_typescript_bindings(&mut self, symbol_table: &SymbolTable) { + self.cell.with_dependent_mut(|_allocator, inner| { + for bindings in &mut inner.bindings { + bindings.retain(|_name, symbol_id| { + let flags = symbol_table.get_flags(*symbol_id); + !flags.intersects( + SymbolFlags::TypeAlias + | SymbolFlags::Interface + | SymbolFlags::TypeParameter, + ) + }); + } + }); + } } diff --git a/crates/oxc_transformer/src/typescript/mod.rs b/crates/oxc_transformer/src/typescript/mod.rs index d841ae3511931..140605784e6cc 100644 --- a/crates/oxc_transformer/src/typescript/mod.rs +++ b/crates/oxc_transformer/src/typescript/mod.rs @@ -79,6 +79,7 @@ impl<'a, 'ctx> Traverse<'a> for TypeScript<'a, 'ctx> { fn exit_program(&mut self, program: &mut Program<'a>, ctx: &mut TraverseCtx<'a>) { self.annotations.exit_program(program, ctx); self.module.exit_program(program, ctx); + ctx.scoping.delete_typescript_bindings(); } fn enter_arrow_function_expression( diff --git a/crates/oxc_traverse/src/context/scoping.rs b/crates/oxc_traverse/src/context/scoping.rs index b932e5e8bc783..d86e139c0c704 100644 --- a/crates/oxc_traverse/src/context/scoping.rs +++ b/crates/oxc_traverse/src/context/scoping.rs @@ -435,6 +435,10 @@ impl TraverseScoping { .map(CompactStr::from) .collect() } + + pub fn delete_typescript_bindings(&mut self) { + self.scopes.delete_typescript_bindings(&self.symbols); + } } /// Create base for UID name based on provided `name`. diff --git a/tasks/coverage/snapshots/semantic_babel.snap b/tasks/coverage/snapshots/semantic_babel.snap index e6e8101c93c03..b92ade877ba70 100644 --- a/tasks/coverage/snapshots/semantic_babel.snap +++ b/tasks/coverage/snapshots/semantic_babel.snap @@ -2,7 +2,7 @@ commit: 54a8389f semantic_babel Summary: AST Parsed : 2218/2218 (100.00%) -Positive Passed: 1849/2218 (83.36%) +Positive Passed: 1889/2218 (85.17%) tasks/coverage/babel/packages/babel-parser/test/fixtures/annex-b/enabled/3.3-function-in-if-body/input.js semantic error: Symbol scope ID mismatch for "f": after transform: SymbolId(0): ScopeId(4294967294) @@ -110,10 +110,7 @@ after transform: [] rebuilt : ["require"] tasks/coverage/babel/packages/babel-parser/test/fixtures/estree/typescript/literals/input.js -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo", "Foo2", "Foo3", "Foo4", "Foo5", "Foo6", "Foo7"] -rebuilt : ScopeId(0): [] -Scope children 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): [] Unresolved references mismatch: @@ -162,56 +159,16 @@ semantic error: Unresolved references mismatch: after transform: ["v"] rebuilt : [] -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"] -rebuilt : ScopeId(1): [] - -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/arrow-function/async-await-null-babel-7/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] - -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/arrow-function/async-generic-after-await/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] - -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/arrow-function/async-generic-after-await-babel-7/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] - tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/arrow-function/async-generic-false-positive/input.ts semantic error: Unresolved references mismatch: after transform: ["T", "async"] rebuilt : ["async"] -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/arrow-function/async-generic-tokens-true/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "a"] -rebuilt : ScopeId(2): ["a"] - -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/arrow-function/async-generic-tokens-true-babel-7/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "a"] -rebuilt : ScopeId(2): ["a"] - tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/arrow-function/destructuring-with-annotation-newline/input.ts semantic error: Unresolved references mismatch: after transform: ["T"] rebuilt : [] -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/arrow-function/generic/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "a"] -rebuilt : ScopeId(1): ["a"] - -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/arrow-function/generic-babel-7/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "a"] -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` @@ -249,10 +206,7 @@ after transform: ["asserts"] rebuilt : [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/assign/TSTypeParameterInstantiation/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["M"] -rebuilt : ScopeId(1): [] -Symbol reference IDs mismatch for "AbstractClass": +semantic error: Symbol reference IDs mismatch for "AbstractClass": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(3)] rebuilt : SymbolId(0): [ReferenceId(0)] Symbol reference IDs mismatch for "ConcreteClass": @@ -260,10 +214,7 @@ after transform: SymbolId(2): [ReferenceId(4), ReferenceId(6)] rebuilt : SymbolId(1): [ReferenceId(1)] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/assign/TSTypeParameterInstantiation-babel-7/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["M"] -rebuilt : ScopeId(1): [] -Symbol reference IDs mismatch for "AbstractClass": +semantic error: Symbol reference IDs mismatch for "AbstractClass": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(3)] rebuilt : SymbolId(0): [ReferenceId(0)] Symbol reference IDs mismatch for "ConcreteClass": @@ -357,22 +308,6 @@ semantic error: Unresolved references mismatch: after transform: ["T", "X", "f"] rebuilt : ["f"] -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/expression-generic/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(2): ["C", "T"] -rebuilt : ScopeId(2): ["C"] - -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/expression-generic-babel-7/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(2): ["C", "T"] -rebuilt : ScopeId(2): ["C"] - tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/expression-implements/input.ts semantic error: Unresolved references mismatch: after transform: ["T", "X"] @@ -398,16 +333,6 @@ semantic error: Unresolved references mismatch: after transform: ["T", "X", "f"] rebuilt : ["f"] -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/generic/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] - -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/generic-babel-7/input.ts -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)] @@ -451,68 +376,6 @@ Unresolved references mismatch: after transform: ["Symbol"] rebuilt : [] -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"] -rebuilt : ScopeId(2): ["a", "b", "c"] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] - -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/method-generic-babel-7/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["T", "a", "b", "c"] -rebuilt : ScopeId(2): ["a", "b", "c"] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] - -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/method-modifier-name-with-type-parameters/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(4): ["T"] -rebuilt : ScopeId(4): [] -Bindings mismatch: -after transform: ScopeId(5): ["T"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(6): ["T"] -rebuilt : ScopeId(6): [] -Bindings mismatch: -after transform: ScopeId(7): ["T"] -rebuilt : ScopeId(7): [] -Bindings mismatch: -after transform: ScopeId(8): ["T"] -rebuilt : ScopeId(8): [] - -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/method-modifier-name-with-type-parameters-babel-7/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(4): ["T"] -rebuilt : ScopeId(4): [] -Bindings mismatch: -after transform: ScopeId(5): ["T"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(6): ["T"] -rebuilt : ScopeId(6): [] -Bindings mismatch: -after transform: ScopeId(7): ["T"] -rebuilt : ScopeId(7): [] -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)] @@ -593,18 +456,12 @@ 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: +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-new-line/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -614,18 +471,12 @@ after transform: ScopeId(0): ["x"] rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/declare/pattern-parameters/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["B"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -634,34 +485,6 @@ semantic error: Bindings mismatch: after transform: ScopeId(0): ["x"] rebuilt : ScopeId(0): [] -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/disallow-jsx-ambiguity/type-parameter-unambiguous/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(2): ["T", "x"] -rebuilt : ScopeId(2): ["x"] -Bindings mismatch: -after transform: ScopeId(3): ["T", "x"] -rebuilt : ScopeId(3): ["x"] -Bindings mismatch: -after transform: ScopeId(4): ["T", "x"] -rebuilt : ScopeId(4): ["x"] - -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/disallow-jsx-ambiguity/type-parameter-unambiguous-babel-7/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(2): ["T", "x"] -rebuilt : ScopeId(2): ["x"] -Bindings mismatch: -after transform: ScopeId(3): ["T", "x"] -rebuilt : ScopeId(3): ["x"] -Bindings mismatch: -after transform: ScopeId(4): ["T", "x"] -rebuilt : ScopeId(4): ["x"] - tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/enum/const/input.ts semantic error: Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) @@ -783,7 +606,7 @@ 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"] +after transform: ScopeId(0): ["M", "N", "_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)] @@ -800,16 +623,13 @@ after transform: ReferenceId(0): ReferenceFlags(Read | Type) rebuilt : ReferenceId(1): ReferenceFlags(Read) tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/export/export-type/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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"] +after transform: ScopeId(0): ["b"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] @@ -842,39 +662,13 @@ Binding symbols mismatch: after transform: ScopeId(1): [SymbolId(2), SymbolId(3)] rebuilt : ScopeId(1): [SymbolId(2), SymbolId(3)] -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/function/annotated/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "x"] -rebuilt : ScopeId(1): ["x"] - -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/function/annotated-babel-7/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "x"] -rebuilt : ScopeId(1): ["x"] - -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/function/anonymous/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "x"] -rebuilt : ScopeId(1): ["x"] - -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/function/anonymous-babel-7/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "x"] -rebuilt : ScopeId(1): ["x"] - tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/function/anonymous-generator/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "input"] -rebuilt : ScopeId(1): ["input"] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["Generator"] rebuilt : [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/function/anonymous-generator-babel-7/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "input"] -rebuilt : ScopeId(1): ["input"] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["Generator"] rebuilt : [] @@ -1031,50 +825,32 @@ after transform: ScopeId(0): ["a"] rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/call-signature/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +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/interface/extends/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -1082,10 +858,7 @@ after transform: ["X", "Z"] rebuilt : [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/extends-babel-7/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -1093,106 +866,67 @@ after transform: ["X", "Z"] rebuilt : [] 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -1200,18 +934,12 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/ge semantic error: Expected `(` but found `:` tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/index-signature/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -1219,10 +947,7 @@ after transform: ["Symbol"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -1230,90 +955,57 @@ after transform: ["Symbol"] rebuilt : [] 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -1321,34 +1013,22 @@ after transform: ["Symbol"] rebuilt : [] 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: +semantic error: 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)] +semantic error: 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [] @@ -1444,35 +1124,13 @@ 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: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] - -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/regression/async-arrow-generic-9560-babel-7/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] - tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/regression/destructuring-in-function-type/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["AnotherType", "MyType"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +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/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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] @@ -1482,10 +1140,7 @@ after transform: ["b", "c"] rebuilt : ["c"] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] Scope flags mismatch: @@ -1496,26 +1151,17 @@ after transform: SymbolId(1): SymbolFlags(RegularEnum) rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/regression/issue-7742/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -1523,10 +1169,7 @@ after transform: ["this"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -1534,10 +1177,7 @@ after transform: ["var"] rebuilt : [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/regression/keyword-qualified-type-2-babel-7/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "T"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -1545,10 +1185,7 @@ after transform: ["var"] rebuilt : [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/regression/keyword-qualified-type-babel-7/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "T"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -1562,10 +1199,7 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/regression/n semantic error: Expected `,` but found `extends` tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/regression/nested-extends-in-arrow-type-return/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Equals"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -1573,10 +1207,7 @@ after transform: ["A", "B", "C", "D", "E", "F", "G"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -1653,18 +1284,12 @@ 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: +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-interface-before/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -1680,18 +1305,12 @@ after transform: ["N"] rebuilt : [] 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: +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-type-before/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -1717,7 +1336,10 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/module 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: +semantic error: Bindings mismatch: +after transform: ScopeId(0): [] +rebuilt : ScopeId(0): ["A"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol flags mismatch for "A": @@ -1728,7 +1350,10 @@ after transform: SymbolId(0): [Span { start: 21, end: 22 }] rebuilt : SymbolId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-const-type/input.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): [] +rebuilt : ScopeId(0): ["X"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Symbol flags mismatch for "X": @@ -1767,7 +1392,10 @@ after transform: SymbolId(0): [Span { start: 17, end: 20 }] rebuilt : SymbolId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-function-interface/input.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): [] +rebuilt : ScopeId(0): ["A"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol flags mismatch for "A": @@ -1778,7 +1406,10 @@ after transform: SymbolId(0): [Span { start: 26, end: 27 }] rebuilt : SymbolId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-function-type/input.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): [] +rebuilt : ScopeId(0): ["A"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol flags mismatch for "A": @@ -1888,10 +1519,7 @@ after transform: SymbolId(3): [Span { start: 185, end: 189 }] rebuilt : SymbolId(3): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-import-type-type/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Global", "a"] -rebuilt : ScopeId(0): ["a"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -1973,7 +1601,7 @@ rebuilt : SymbolId(3): [] 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"] +after transform: ScopeId(0): ["test", "test/submodule"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] @@ -1981,7 +1609,7 @@ 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"] +after transform: ScopeId(0): ["JSONSchema7", "foo", "fooBar", "test/submodule", "test/submodule2"] rebuilt : ScopeId(0): ["foo", "fooBar"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] @@ -1999,7 +1627,10 @@ 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: +semantic error: Bindings mismatch: +after transform: ScopeId(0): [] +rebuilt : ScopeId(0): ["A"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol flags mismatch for "A": @@ -2013,7 +1644,10 @@ after transform: SymbolId(0): [Span { start: 21, end: 22 }] rebuilt : SymbolId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-interface-function/input.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): [] +rebuilt : ScopeId(0): ["A"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol flags mismatch for "A": @@ -2027,15 +1661,15 @@ after transform: SymbolId(0): [Span { start: 24, end: 25 }] rebuilt : SymbolId(0): [] 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: +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/redeclaration-interface-let/input.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): [] +rebuilt : ScopeId(0): ["A"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Symbol flags mismatch for "A": @@ -2049,7 +1683,10 @@ after transform: SymbolId(0): [Span { start: 19, end: 20 }] rebuilt : SymbolId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-interface-var/input.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): [] +rebuilt : ScopeId(0): ["A"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Symbol flags mismatch for "A": @@ -2063,7 +1700,10 @@ after transform: SymbolId(0): [Span { start: 19, end: 20 }] rebuilt : SymbolId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-let-interface/input.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): [] +rebuilt : ScopeId(0): ["A"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Symbol flags mismatch for "A": @@ -2074,7 +1714,10 @@ after transform: SymbolId(0): [Span { start: 17, end: 18 }] rebuilt : SymbolId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-let-type/input.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): [] +rebuilt : ScopeId(0): ["X"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Symbol flags mismatch for "X": @@ -2085,7 +1728,10 @@ after transform: SymbolId(0): [Span { start: 17, end: 18 }] rebuilt : SymbolId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-type-function/input.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): [] +rebuilt : ScopeId(0): ["A"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol flags mismatch for "A": @@ -2099,7 +1745,10 @@ after transform: SymbolId(0): [Span { start: 26, end: 27 }] rebuilt : SymbolId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-type-let/input.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): [] +rebuilt : ScopeId(0): ["A"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Symbol flags mismatch for "A": @@ -2113,7 +1762,10 @@ after transform: SymbolId(0): [Span { start: 21, end: 22 }] rebuilt : SymbolId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-type-var/input.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): [] +rebuilt : ScopeId(0): ["A"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Symbol flags mismatch for "A": @@ -2127,7 +1779,10 @@ after transform: SymbolId(0): [Span { start: 21, end: 22 }] rebuilt : SymbolId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-var-interface/input.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): [] +rebuilt : ScopeId(0): ["A"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Symbol flags mismatch for "A": @@ -2138,7 +1793,10 @@ after transform: SymbolId(0): [Span { start: 17, end: 18 }] rebuilt : SymbolId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-var-type/input.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): [] +rebuilt : ScopeId(0): ["X"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Symbol flags mismatch for "X": @@ -2149,18 +1807,12 @@ after transform: SymbolId(0): [Span { start: 17, end: 18 }] rebuilt : SymbolId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/tsx/anonymous-function-generator/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "input"] -rebuilt : ScopeId(1): ["input"] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["Generator"] rebuilt : [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/tsx/anonymous-function-generator-babel-7/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "input"] -rebuilt : ScopeId(1): ["input"] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["Generator"] rebuilt : [] @@ -2170,63 +1822,35 @@ after transform: ["D", "T"] rebuilt : ["D"] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/tsx/type-arguments/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["C", "T", "f"] rebuilt : ["C", "f"] -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/tsx/type-parameters/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] - -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/tsx/type-parameters-babel-7/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] - tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-alias/declare/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -2234,10 +1858,7 @@ after transform: ["Array"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -2245,10 +1866,7 @@ after transform: ["Array"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -2263,10 +1881,7 @@ after transform: ["Q", "W", "f"] rebuilt : ["f"] 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: +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)] Unresolved references mismatch: @@ -2313,68 +1928,28 @@ semantic error: Unresolved references mismatch: after transform: ["C", "T"] rebuilt : ["C"] -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-arguments/whitespace/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] - -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-arguments/whitespace-babel-7/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] - tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-arguments-bit-shift-left-like/after-bit-shift/input.ts semantic error: Unresolved references mismatch: after transform: ["T", "f", "x"] rebuilt : ["f", "x"] -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-arguments-bit-shift-left-like/call-expression/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T"] -rebuilt : ScopeId(0): [] - tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-arguments-bit-shift-left-like/class-heritage/input.ts semantic error: Expected `{` but found `<<` -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-arguments-bit-shift-left-like/decorator-call-expression/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T"] -rebuilt : ScopeId(0): [] - tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-arguments-bit-shift-left-like/jsx-opening-element/input.tsx semantic error: Unexpected token -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-arguments-bit-shift-left-like/new-expression/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T"] -rebuilt : ScopeId(0): [] - tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-arguments-bit-shift-left-like-babel-7/after-bit-shift/input.ts semantic error: Unresolved references mismatch: after transform: ["T", "f", "x"] rebuilt : ["f", "x"] -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-arguments-bit-shift-left-like-babel-7/call-expression/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T"] -rebuilt : ScopeId(0): [] - tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-arguments-bit-shift-left-like-babel-7/class-heritage/input.ts semantic error: Expected `{` but found `<<` -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-arguments-bit-shift-left-like-babel-7/decorator-call-expression/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T"] -rebuilt : ScopeId(0): [] - tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-arguments-bit-shift-left-like-babel-7/jsx-opening-element/input.tsx semantic error: Unexpected token -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-arguments-bit-shift-left-like-babel-7/new-expression/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T"] -rebuilt : ScopeId(0): [] - tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-only-import-export-specifiers/export-type-only-as-as-keyword/input.ts semantic error: Unresolved references mismatch: after transform: ["as"] @@ -2421,18 +1996,12 @@ 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: +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-babel-7/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Element"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -2444,16 +2013,6 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/const- semantic error: Identifier `method` has already been declared Identifier `method` has already been declared -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/function-generic/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T", "f"] -rebuilt : ScopeId(0): ["f"] - -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/function-generic-babel-7/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T", "f"] -rebuilt : ScopeId(0): ["f"] - tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/function-in-generic/input.ts semantic error: Unresolved references mismatch: after transform: ["Array"] @@ -2480,10 +2039,7 @@ after transform: ["K", "T"] rebuilt : [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/infer-with-constraints/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["X3", "X4", "X5", "X6", "X7", "X8", "X9"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -2491,26 +2047,17 @@ after transform: ["MustBeNumber"] rebuilt : [] 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: +semantic error: 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -2518,24 +2065,15 @@ after transform: ["MustBeNumber"] rebuilt : [] 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -2543,10 +2081,7 @@ after transform: ["intrinsic"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -2563,26 +2098,13 @@ semantic error: Unresolved references mismatch: after transform: ["bar"] rebuilt : [] -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/literal-string-4/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["bar", "x"] -rebuilt : ScopeId(0): ["x"] - -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/literal-string-4-babel-7/input.ts -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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -2590,10 +2112,7 @@ after transform: ["Exclude", "NewKeyType"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -2605,45 +2124,23 @@ 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: -after transform: ScopeId(1): ["T", "value"] -rebuilt : ScopeId(1): ["value"] - -tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/object-shorthand-babel-7/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "value"] -rebuilt : ScopeId(1): ["value"] - tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/parenthesized/input.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -2663,34 +2160,22 @@ after transform: ["Array"] rebuilt : [] 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -2698,10 +2183,7 @@ after transform: ["A", "B"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -2709,10 +2191,7 @@ after transform: ["A", "B"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -2720,10 +2199,7 @@ after transform: ["A", "B"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -2751,10 +2227,7 @@ after transform: ["y"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -2762,10 +2235,7 @@ after transform: ["a"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -2778,34 +2248,22 @@ after transform: ["w", "y"] rebuilt : [] 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] diff --git a/tasks/coverage/snapshots/semantic_misc.snap b/tasks/coverage/snapshots/semantic_misc.snap index 9401c58a134f1..42575c7a4c573 100644 --- a/tasks/coverage/snapshots/semantic_misc.snap +++ b/tasks/coverage/snapshots/semantic_misc.snap @@ -1,6 +1,6 @@ semantic_misc Summary: AST Parsed : 30/30 (100.00%) -Positive Passed: 18/30 (60.00%) +Positive Passed: 19/30 (63.33%) tasks/coverage/misc/pass/oxc-1288.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["from"] @@ -12,37 +12,22 @@ after transform: ScopeId(0): ["infer", "target", "type"] rebuilt : ScopeId(0): [] tasks/coverage/misc/pass/oxc-2087.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Helpers"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] tasks/coverage/misc/pass/oxc-3443.tsx -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["F"] rebuilt : [] @@ -176,23 +161,12 @@ after transform: SymbolId(14): SymbolFlags(RegularEnum) rebuilt : SymbolId(14): SymbolFlags(FunctionScopedVariable) tasks/coverage/misc/pass/oxc-5177.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Bang", "Foo"] -rebuilt : ScopeId(0): ["Bang"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/misc/pass/oxc-5955.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["B", "C", "a"] -rebuilt : ScopeId(0): ["B", "a"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] -tasks/coverage/misc/pass/swc-7187.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["K"] -rebuilt : ScopeId(0): [] - diff --git a/tasks/coverage/snapshots/semantic_typescript.snap b/tasks/coverage/snapshots/semantic_typescript.snap index b60ce1b25ae13..2847908bf50ac 100644 --- a/tasks/coverage/snapshots/semantic_typescript.snap +++ b/tasks/coverage/snapshots/semantic_typescript.snap @@ -2,7 +2,7 @@ commit: d85767ab semantic_typescript Summary: AST Parsed : 6503/6503 (100.00%) -Positive Passed: 2701/6503 (41.53%) +Positive Passed: 2848/6503 (43.80%) tasks/coverage/typescript/tests/cases/compiler/2dArrays.ts semantic error: Symbol reference IDs mismatch for "Cell": after transform: SymbolId(0): [ReferenceId(1)] @@ -210,7 +210,7 @@ rebuilt : ["console", "process", "require"] 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"] +after transform: ScopeId(0): ["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)] @@ -332,26 +332,17 @@ after transform: ["Date", "undefined"] rebuilt : ["console", "fs", "process", "undefined"] tasks/coverage/typescript/tests/cases/compiler/DeclarationErrorsNoEmitOnError.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I", "T"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/abstractInterfaceIdentifierName.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["abstract"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(7)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Scope children mismatch: @@ -381,18 +372,12 @@ after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(4), R rebuilt : SymbolId(0): [ReferenceId(0)] tasks/coverage/typescript/tests/cases/compiler/addMoreCallSignaturesToBaseSignature.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Bar", "Foo", "a", "kitty"] -rebuilt : ScopeId(0): ["a", "kitty"] -Scope children mismatch: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] @@ -433,10 +418,7 @@ after transform: ScopeId(2): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(2): ScopeFlags(Function) 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: +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), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(16), ScopeId(17), ScopeId(18)] rebuilt : ScopeId(0): [] @@ -568,10 +550,7 @@ after transform: ScopeId(0): ["x"] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/allowSyntheticDefaultImportsCanPaintCrossModuleDeclaration.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Color"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Reference symbol mismatch for "Color": @@ -606,10 +585,7 @@ after transform: ["A", "C"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/ambientClassMergesOverloadsWithInterface.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] rebuilt : ScopeId(0): [] @@ -620,9 +596,6 @@ rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/ambientConstLiterals.ts semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "x"] -rebuilt : ScopeId(1): ["x"] -Bindings mismatch: after transform: ScopeId(2): ["A", "B", "C", "E", "non identifier"] rebuilt : ScopeId(2): ["E"] Scope flags mismatch: @@ -772,15 +745,9 @@ after transform: SymbolId(1): [ReferenceId(2), ReferenceId(3), ReferenceId(5)] rebuilt : SymbolId(1): [] tasks/coverage/typescript/tests/cases/compiler/amdDeclarationEmitNoExtraDeclare.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Configurable", "Constructor"] -rebuilt : ScopeId(0): ["Configurable"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] -Bindings mismatch: -after transform: ScopeId(3): ["T", "base"] -rebuilt : ScopeId(1): ["base"] tasks/coverage/typescript/tests/cases/compiler/amdModuleConstEnumUsage.ts semantic error: Bindings mismatch: @@ -794,15 +761,9 @@ after transform: SymbolId(0): SymbolFlags(ConstEnum) rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/typescript/tests/cases/compiler/anonClassDeclarationEmitIsAnon.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Constructor", "Timestamped", "wrapClass"] -rebuilt : ScopeId(0): ["Timestamped", "wrapClass"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] -Bindings mismatch: -after transform: ScopeId(5): ["Base", "TBase"] -rebuilt : ScopeId(4): ["Base"] tasks/coverage/typescript/tests/cases/compiler/anonterface.ts semantic error: Missing SymbolId: "M" @@ -848,26 +809,17 @@ after transform: ["require"] rebuilt : ["isTreeHeader1", "require", "x1", "x2"] tasks/coverage/typescript/tests/cases/compiler/anyIsAssignableToObject.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["P", "Q"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: @@ -884,9 +836,9 @@ Missing ReferenceId: "Test" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0)] rebuilt : ScopeId(0): [SymbolId(0)] -Bindings mismatch: -after transform: ScopeId(1): ["Bug", "ILineTokens", "IMode", "IState", "IToken", "_Test"] -rebuilt : ScopeId(1): ["Bug", "_Test"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(5), SymbolId(9)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -898,10 +850,7 @@ after transform: SymbolId(5): [] rebuilt : SymbolId(2): [ReferenceId(1)] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -917,9 +866,9 @@ Missing ReferenceId: "NonEmptyTypes" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(28)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(22)] -Bindings mismatch: -after transform: ScopeId(1): ["_EmptyTypes", "base", "base2", "derived", "f", "iface"] -rebuilt : ScopeId(1): ["_EmptyTypes", "base", "base2", "derived", "f"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5), SymbolId(56)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -929,9 +878,9 @@ rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] Scope children mismatch: after transform: ScopeId(6): [ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] rebuilt : ScopeId(5): [ScopeId(6), ScopeId(7)] -Bindings mismatch: -after transform: ScopeId(12): ["_NonEmptyTypes", "base", "base2", "derived", "f", "iface"] -rebuilt : ScopeId(8): ["_NonEmptyTypes", "base", "base2", "derived", "f"] +Binding symbols mismatch: +after transform: ScopeId(12): [SymbolId(30), SymbolId(31), SymbolId(32), SymbolId(33), SymbolId(57)] +rebuilt : ScopeId(8): [SymbolId(23), SymbolId(24), SymbolId(25), SymbolId(26), SymbolId(27)] Scope flags mismatch: after transform: ScopeId(12): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(8): ScopeFlags(Function) @@ -954,24 +903,15 @@ after transform: ["ArrayBuffer", "ArrayBufferView", "Object"] rebuilt : ["ArrayBuffer"] 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: +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", "T1", "a", "b"] -rebuilt : ScopeId(1): ["a", "b"] Unresolved references mismatch: after transform: ["Array"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -985,16 +925,6 @@ semantic error: Unresolved references mismatch: after transform: ["ReadonlyArray"] rebuilt : [] -tasks/coverage/typescript/tests/cases/compiler/arrayFlatNoCrashInference.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "arr", "depth"] -rebuilt : ScopeId(1): ["arr", "depth"] - -tasks/coverage/typescript/tests/cases/compiler/arrayFlatNoCrashInferenceDeclarations.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "arr", "depth"] -rebuilt : ScopeId(1): ["arr", "depth"] - tasks/coverage/typescript/tests/cases/compiler/arrayFromAsync.ts semantic error: `await` is only allowed within async functions and at the top levels of modules `await` is only allowed within async functions and at the top levels of modules @@ -1009,10 +939,7 @@ semantic error: `await` is only allowed within async functions and at the top le `await` is only allowed within async functions and at the top levels of modules 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: +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), ScopeId(4)] @@ -1054,10 +981,7 @@ after transform: ["WinJS"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -1091,31 +1015,7 @@ after transform: [] rebuilt : ["a", "value"] tasks/coverage/typescript/tests/cases/compiler/arrowFunctionParsingGenericInObject.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["T", "value"] -rebuilt : ScopeId(2): ["value"] -Bindings mismatch: -after transform: ScopeId(5): ["T", "value"] -rebuilt : ScopeId(6): ["value"] -Bindings mismatch: -after transform: ScopeId(8): ["T", "value"] -rebuilt : ScopeId(10): ["value"] -Bindings mismatch: -after transform: ScopeId(11): ["T", "value"] -rebuilt : ScopeId(14): ["value"] -Bindings mismatch: -after transform: ScopeId(15): ["T", "value"] -rebuilt : ScopeId(19): ["value"] -Bindings mismatch: -after transform: ScopeId(18): ["T", "value"] -rebuilt : ScopeId(23): ["value"] -Bindings mismatch: -after transform: ScopeId(20): ["T", "value"] -rebuilt : ScopeId(26): ["value"] -Bindings mismatch: -after transform: ScopeId(22): ["T", "value"] -rebuilt : ScopeId(29): ["value"] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["Promise", "arguments", "require"] rebuilt : ["arguments", "require"] @@ -1140,18 +1040,12 @@ 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"] -rebuilt : ScopeId(1): ["obj"] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["Error", "NonNullable", "undefined"] rebuilt : ["Error", "undefined"] tasks/coverage/typescript/tests/cases/compiler/assertionFunctionsCanNarrowByDiscriminant.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Animal", "Cat", "Dog", "animal", "animalOrUndef"] -rebuilt : ScopeId(0): ["animal", "animalOrUndef"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -1166,9 +1060,9 @@ Missing ReferenceId: "M" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0)] rebuilt : ScopeId(0): [SymbolId(0)] -Bindings mismatch: -after transform: ScopeId(1): ["I", "_M", "x"] -rebuilt : ScopeId(1): ["_M", "x"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(2), SymbolId(3)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -1257,14 +1151,6 @@ tasks/coverage/typescript/tests/cases/compiler/assignmentCompatability9.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 -tasks/coverage/typescript/tests/cases/compiler/assignmentCompatibilityForConstrainedTypeParameters.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "bar"] -rebuilt : ScopeId(1): ["bar"] -Bindings mismatch: -after transform: ScopeId(2): ["S", "x", "y"] -rebuilt : ScopeId(2): ["x", "y"] - tasks/coverage/typescript/tests/cases/compiler/assignmentNonObjectTypeConstraints.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["A", "B", "C", "E"] @@ -1272,12 +1158,6 @@ rebuilt : ScopeId(1): ["E"] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(0x0) rebuilt : ScopeId(1): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(2): ["T", "x", "y"] -rebuilt : ScopeId(2): ["x", "y"] -Bindings mismatch: -after transform: ScopeId(5): ["T", "x", "y"] -rebuilt : ScopeId(5): ["x", "y"] Symbol flags mismatch for "E": after transform: SymbolId(0): SymbolFlags(ConstEnum) rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) @@ -1294,10 +1174,7 @@ after transform: ["Promise", "arguments", "require"] rebuilt : ["arguments", "require"] tasks/coverage/typescript/tests/cases/compiler/asyncFunctionContextuallyTypedReturns.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["MyCallback", "_asyncToGenerator", "increment", "increment2"] -rebuilt : ScopeId(0): ["_asyncToGenerator", "increment", "increment2"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(25)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(6), ScopeId(9), ScopeId(11), ScopeId(15), ScopeId(19)] Unresolved references mismatch: @@ -1313,39 +1190,9 @@ after transform: ["Promise", "require"] rebuilt : ["require"] tasks/coverage/typescript/tests/cases/compiler/asyncFunctionReturnType.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Obj", "_asyncToGenerator", "_fAsync", "_fAsyncExplicit", "_fGenericIndexedTypeForAnyProp", "_fGenericIndexedTypeForExplicitPromiseOfAnyProp", "_fGenericIndexedTypeForExplicitPromiseOfKProp", "_fGenericIndexedTypeForExplicitPromiseOfStringProp", "_fGenericIndexedTypeForKProp", "_fGenericIndexedTypeForPromiseOfAnyProp", "_fGenericIndexedTypeForPromiseOfKProp", "_fGenericIndexedTypeForPromiseOfStringProp", "_fGenericIndexedTypeForStringProp", "_fIndexedTypeForAnyProp", "_fIndexedTypeForExplicitPromiseOfAnyProp", "_fIndexedTypeForExplicitPromiseOfStringProp", "_fIndexedTypeForPromiseOfAnyProp", "_fIndexedTypeForPromiseOfStringProp", "_fIndexedTypeForStringProp", "fAsync", "fAsyncExplicit", "fGenericIndexedTypeForAnyProp", "fGenericIndexedTypeForExplicitPromiseOfAnyProp", "fGenericIndexedTypeForExplicitPromiseOfKProp", "fGenericIndexedTypeForExplicitPromiseOfStringProp", "fGenericIndexedTypeForKProp", "fGenericIndexedTypeForPromiseOfAnyProp", "fGenericIndexedTypeForPromiseOfKProp", "fGenericIndexedTypeForPromiseOfStringProp", "fGenericIndexedTypeForStringProp", "fIndexedTypeForAnyProp", "fIndexedTypeForExplicitPromiseOfAnyProp", "fIndexedTypeForExplicitPromiseOfStringProp", "fIndexedTypeForPromiseOfAnyProp", "fIndexedTypeForPromiseOfStringProp", "fIndexedTypeForStringProp"] -rebuilt : ScopeId(0): ["_asyncToGenerator", "_fAsync", "_fAsyncExplicit", "_fGenericIndexedTypeForAnyProp", "_fGenericIndexedTypeForExplicitPromiseOfAnyProp", "_fGenericIndexedTypeForExplicitPromiseOfKProp", "_fGenericIndexedTypeForExplicitPromiseOfStringProp", "_fGenericIndexedTypeForKProp", "_fGenericIndexedTypeForPromiseOfAnyProp", "_fGenericIndexedTypeForPromiseOfKProp", "_fGenericIndexedTypeForPromiseOfStringProp", "_fGenericIndexedTypeForStringProp", "_fIndexedTypeForAnyProp", "_fIndexedTypeForExplicitPromiseOfAnyProp", "_fIndexedTypeForExplicitPromiseOfStringProp", "_fIndexedTypeForPromiseOfAnyProp", "_fIndexedTypeForPromiseOfStringProp", "_fIndexedTypeForStringProp", "fAsync", "fAsyncExplicit", "fGenericIndexedTypeForAnyProp", "fGenericIndexedTypeForExplicitPromiseOfAnyProp", "fGenericIndexedTypeForExplicitPromiseOfKProp", "fGenericIndexedTypeForExplicitPromiseOfStringProp", "fGenericIndexedTypeForKProp", "fGenericIndexedTypeForPromiseOfAnyProp", "fGenericIndexedTypeForPromiseOfKProp", "fGenericIndexedTypeForPromiseOfStringProp", "fGenericIndexedTypeForStringProp", "fIndexedTypeForAnyProp", "fIndexedTypeForExplicitPromiseOfAnyProp", "fIndexedTypeForExplicitPromiseOfStringProp", "fIndexedTypeForPromiseOfAnyProp", "fIndexedTypeForPromiseOfStringProp", "fIndexedTypeForStringProp"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(3), 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(2), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(10), ScopeId(11), ScopeId(13), ScopeId(14), ScopeId(16), ScopeId(17), ScopeId(19), ScopeId(20), ScopeId(22), ScopeId(23), ScopeId(25), ScopeId(26), ScopeId(28), ScopeId(29), ScopeId(31), ScopeId(32), ScopeId(34), ScopeId(35), ScopeId(37), ScopeId(38), ScopeId(40), ScopeId(41), ScopeId(43), ScopeId(44), ScopeId(46), ScopeId(47), ScopeId(49), ScopeId(50)] -Bindings mismatch: -after transform: ScopeId(10): ["TObj", "obj"] -rebuilt : ScopeId(27): ["obj"] -Bindings mismatch: -after transform: ScopeId(11): ["TObj", "obj"] -rebuilt : ScopeId(30): ["obj"] -Bindings mismatch: -after transform: ScopeId(12): ["TObj", "obj"] -rebuilt : ScopeId(33): ["obj"] -Bindings mismatch: -after transform: ScopeId(13): ["TObj", "obj"] -rebuilt : ScopeId(36): ["obj"] -Bindings mismatch: -after transform: ScopeId(14): ["TObj", "obj"] -rebuilt : ScopeId(39): ["obj"] -Bindings mismatch: -after transform: ScopeId(15): ["TObj", "obj"] -rebuilt : ScopeId(42): ["obj"] -Bindings mismatch: -after transform: ScopeId(16): ["K", "TObj", "key", "obj"] -rebuilt : ScopeId(45): ["key", "obj"] -Bindings mismatch: -after transform: ScopeId(17): ["K", "TObj", "key", "obj"] -rebuilt : ScopeId(48): ["key", "obj"] -Bindings mismatch: -after transform: ScopeId(18): ["K", "TObj", "key", "obj"] -rebuilt : ScopeId(51): ["key", "obj"] Unresolved reference IDs mismatch for "Promise": after transform: [ReferenceId(0), ReferenceId(2), ReferenceId(6), ReferenceId(8), ReferenceId(11), ReferenceId(13), ReferenceId(17), ReferenceId(21), ReferenceId(23), ReferenceId(26), ReferenceId(28), ReferenceId(33), ReferenceId(38), ReferenceId(40), ReferenceId(44), ReferenceId(46), ReferenceId(51), ReferenceId(56), ReferenceId(58), ReferenceId(62), ReferenceId(64), ReferenceId(71), ReferenceId(80), ReferenceId(83), ReferenceId(90), ReferenceId(93)] rebuilt : [ReferenceId(24), ReferenceId(32), ReferenceId(47), ReferenceId(55), ReferenceId(70), ReferenceId(78), ReferenceId(93), ReferenceId(101), ReferenceId(117), ReferenceId(126)] @@ -1363,7 +1210,7 @@ rebuilt : ["arguments", "require", "resolve1", "resolve2"] tasks/coverage/typescript/tests/cases/compiler/asyncYieldStarContextualType.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Author", "Book", "BookWithAuthor", "Result", "T", "U", "V", "_asyncGeneratorDelegate", "_asyncIterator", "_awaitAsyncGenerator", "_f", "_wrapAsyncGenerator", "authorPromise", "f", "g", "mapper"] +after transform: ScopeId(0): ["_asyncGeneratorDelegate", "_asyncIterator", "_awaitAsyncGenerator", "_f", "_wrapAsyncGenerator", "authorPromise", "f", "g", "mapper"] rebuilt : ScopeId(0): ["_asyncGeneratorDelegate", "_asyncIterator", "_awaitAsyncGenerator", "_f", "_wrapAsyncGenerator", "f"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(8)] @@ -1391,10 +1238,7 @@ after transform: ["AsyncGenerator", "Generator", "Promise", "Symbol", "arguments rebuilt : ["arguments", "authorPromise", "g", "mapper", "require"] tasks/coverage/typescript/tests/cases/compiler/augmentArray.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Array"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -1461,10 +1305,7 @@ after transform: [] rebuilt : ["require"] tasks/coverage/typescript/tests/cases/compiler/augmentedTypeBracketNamedPropertyAccess.ts -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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -1512,10 +1353,7 @@ after transform: SymbolId(0): [Span { start: 29, end: 32 }] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/avoidCycleWithVoidExpressionReturnedFromArrow.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Howl", "HowlErrorCallback", "HowlOptions", "instance"] -rebuilt : ScopeId(0): ["Howl", "instance"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] @@ -1534,10 +1372,7 @@ after transform: [] rebuilt : ["foo"] tasks/coverage/typescript/tests/cases/compiler/awaitUnionPromise.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["AsyncEnumeratorDone", "IAsyncEnumerator", "_asyncToGenerator", "_main", "main"] -rebuilt : ScopeId(0): ["AsyncEnumeratorDone", "_asyncToGenerator", "_main", "main"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(8), ScopeId(9)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Symbol reference IDs mismatch for "AsyncEnumeratorDone": @@ -1548,18 +1383,12 @@ after transform: ["Promise", "arguments", "require"] rebuilt : ["arguments", "require"] tasks/coverage/typescript/tests/cases/compiler/awaitedTypeCrash.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(3): [] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["AsyncGenerator", "Promise", "arguments", "require"] rebuilt : ["arguments", "require"] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(9), ScopeId(10)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -1567,15 +1396,9 @@ after transform: ["Awaited", "Element", "Error", "PromiseLike"] rebuilt : [] 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: +semantic error: 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: @@ -1588,10 +1411,7 @@ after transform: ScopeId(0): ["http"] rebuilt : ScopeId(0): [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Symbol reference IDs mismatch for "Base": @@ -1602,21 +1422,12 @@ after transform: SymbolId(1): [ReferenceId(6), ReferenceId(7)] rebuilt : SymbolId(1): [] 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: +semantic error: 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: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(4): ["T"] -rebuilt : ScopeId(4): [] -Symbol reference IDs mismatch for "Class2": +semantic error: Symbol reference IDs mismatch for "Class2": after transform: SymbolId(2): [ReferenceId(1), ReferenceId(3)] rebuilt : SymbolId(2): [] Symbol reference IDs mismatch for "Class4": @@ -1624,22 +1435,7 @@ after transform: SymbolId(5): [ReferenceId(0)] rebuilt : SymbolId(4): [] tasks/coverage/typescript/tests/cases/compiler/baseTypeWrappingInstantiationChain.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T3"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(3): ["T2"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(4): ["T4"] -rebuilt : ScopeId(4): [] -Bindings mismatch: -after transform: ScopeId(6): ["T5"] -rebuilt : ScopeId(6): [] -Bindings mismatch: -after transform: ScopeId(7): ["T1"] -rebuilt : ScopeId(7): [] -Symbol reference IDs mismatch for "Parameter": +semantic error: Symbol reference IDs mismatch for "Parameter": after transform: SymbolId(5): [ReferenceId(0)] rebuilt : SymbolId(3): [] Symbol reference IDs mismatch for "Wrapper": @@ -1647,18 +1443,12 @@ after transform: SymbolId(8): [ReferenceId(3), ReferenceId(10), ReferenceId(14)] rebuilt : SymbolId(5): [] 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: +semantic error: 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/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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [] @@ -1728,7 +1518,7 @@ semantic error: Invalid Character ` 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"] +after transform: ScopeId(0): ["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)] @@ -1747,10 +1537,7 @@ after transform: ["Array", "Boolean"] rebuilt : ["Boolean", "Bullean", "anys", "realanys"] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Unresolved references mismatch: @@ -1783,54 +1570,30 @@ after transform: ScopeId(0): ["x"] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/callExpressionWithTypeParameterConstrainedToOuterTypeParameter.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I", "i", "y"] -rebuilt : ScopeId(0): ["i", "y"] -Scope children mismatch: +semantic error: 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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(11): ["T", "arg", "useT"] -rebuilt : ScopeId(4): ["arg", "useT"] Unresolved references mismatch: after transform: ["Function", "Parameters"] rebuilt : [] 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: +semantic error: 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: +semantic error: 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): [] @@ -1890,9 +1653,6 @@ tasks/coverage/typescript/tests/cases/compiler/castExpressionParentheses.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "a"] rebuilt : ScopeId(0): [] -Bindings mismatch: -after transform: ScopeId(1): ["Tany"] -rebuilt : ScopeId(1): [] Reference symbol mismatch for "a": after transform: SymbolId(0) "a" rebuilt : @@ -1934,10 +1694,7 @@ after transform: [] rebuilt : ["A", "a"] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -1975,37 +1732,22 @@ after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] tasks/coverage/typescript/tests/cases/compiler/chainedSpecializationToObjectTypeLiteral.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Sequence", "s", "s2", "s3"] -rebuilt : ScopeId(0): ["s", "s2", "s3"] -Scope children mismatch: +semantic error: 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: +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/checkInfiniteExpansionTermination2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["IObservable", "ISubject", "fn"] -rebuilt : ScopeId(0): ["fn"] -Scope children 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)] -Bindings mismatch: -after transform: ScopeId(5): ["T", "values"] -rebuilt : ScopeId(1): ["values"] tasks/coverage/typescript/tests/cases/compiler/checkInterfaceBases.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["SecondEvent", "Third"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -2031,18 +1773,12 @@ after transform: ["Array", "use"] rebuilt : ["use"] tasks/coverage/typescript/tests/cases/compiler/circularConstrainedMappedTypeNoCrash.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Loop"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(6)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] Symbol reference IDs mismatch for "getPrismaClient": @@ -2053,10 +1789,7 @@ after transform: ["ReturnType"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/circularContextualMappedType.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Func", "Mapped"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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)] @@ -2116,7 +1849,7 @@ rebuilt : SymbolId(4): [ReferenceId(3)] tasks/coverage/typescript/tests/cases/compiler/circularlySimplifyingConditionalTypesNoCrash.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["ComponentClass", "Connect", "InferableComponentEnhancerWithProps", "Omit", "Shared", "connect", "myStoreConnect"] +after transform: ScopeId(0): ["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)] @@ -2131,22 +1864,6 @@ rebuilt : ["connect"] tasks/coverage/typescript/tests/cases/compiler/classDeclarationMergedInModuleWithContinuation.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/classExpressionTest1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["X"] -rebuilt : ScopeId(2): [] -Bindings mismatch: -after transform: ScopeId(3): ["T", "t", "x"] -rebuilt : ScopeId(3): ["t", "x"] - -tasks/coverage/typescript/tests/cases/compiler/classExpressionTest2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["C", "X"] -rebuilt : ScopeId(2): ["C"] -Bindings mismatch: -after transform: ScopeId(3): ["T", "t", "x"] -rebuilt : ScopeId(3): ["t", "x"] - tasks/coverage/typescript/tests/cases/compiler/classExpressionWithResolutionOfNamespaceOfSameName01.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "x"] @@ -2187,29 +1904,17 @@ after transform: [] rebuilt : ["console"] 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: +semantic error: 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: +semantic error: 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): [] tasks/coverage/typescript/tests/cases/compiler/classExtendingAny.ts semantic error: Bindings mismatch: @@ -2268,10 +1973,7 @@ after transform: [ReferenceId(0), ReferenceId(2)] rebuilt : [ReferenceId(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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -2313,10 +2015,7 @@ after transform: ["M1"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/classImplementsMethodWIthTupleArgs.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Settable"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -2344,7 +2043,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/classNonUniqueSymbolMethodHasSymbolIndexer.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "Constructor", "Mixer", "a", "e1"] +after transform: ScopeId(0): ["A", "Mixer", "a", "e1"] rebuilt : ScopeId(0): ["A", "Mixer"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5)] @@ -2368,10 +2067,7 @@ after transform: SymbolId(2): [ReferenceId(0), ReferenceId(1)] rebuilt : SymbolId(2): [ReferenceId(0)] tasks/coverage/typescript/tests/cases/compiler/classReferencedInContextualParameterWithinItsOwnBaseExpression.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "Class", "Fields", "OutputFrom", "Pretty", "Schema", "Self", "Type"] -rebuilt : ScopeId(0): ["A"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(9), ScopeId(10)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch for "A": @@ -2385,10 +2081,7 @@ after transform: ["JSON", "string"] rebuilt : ["Class", "JSON", "string"] tasks/coverage/typescript/tests/cases/compiler/classVarianceCircularity.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] -Symbol reference IDs mismatch for "Bar": +semantic error: Symbol reference IDs mismatch for "Bar": after transform: SymbolId(2): [ReferenceId(0), ReferenceId(3), ReferenceId(4)] rebuilt : SymbolId(2): [ReferenceId(0)] @@ -2396,9 +2089,6 @@ tasks/coverage/typescript/tests/cases/compiler/classVarianceResolveCircularity1. 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): [] Symbol reference IDs mismatch for "Bar": after transform: SymbolId(0): [ReferenceId(2), ReferenceId(3)] rebuilt : SymbolId(0): [] @@ -2407,12 +2097,6 @@ tasks/coverage/typescript/tests/cases/compiler/classVarianceResolveCircularity2. 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: -after transform: ScopeId(4): ["T"] -rebuilt : ScopeId(2): [] Symbol reference IDs mismatch for "Bar": after transform: SymbolId(0): [ReferenceId(6), ReferenceId(8)] rebuilt : SymbolId(0): [] @@ -2450,9 +2134,9 @@ rebuilt : ScopeId(0): [ScopeId(1), ScopeId(10), ScopeId(11), ScopeId(14), 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)] rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] -Bindings mismatch: -after transform: ScopeId(15): ["_m", "b", "d", "ib"] -rebuilt : ScopeId(11): ["_m", "b", "d"] +Binding symbols mismatch: +after transform: ScopeId(15): [SymbolId(10), SymbolId(11), SymbolId(30)] +rebuilt : ScopeId(11): [SymbolId(6), SymbolId(7), SymbolId(8)] Scope flags mismatch: after transform: ScopeId(15): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(11): ScopeFlags(Function) @@ -2498,24 +2182,18 @@ semantic error: Missing SymbolId: "M" Missing SymbolId: "_M" Missing ReferenceId: "M" Missing ReferenceId: "M" -Binding symbols mismatch: -after transform: ScopeId(0): [SymbolId(0), SymbolId(3), SymbolId(6)] -rebuilt : ScopeId(0): [SymbolId(0), SymbolId(4), SymbolId(5)] +Bindings mismatch: +after transform: ScopeId(0): ["M"] +rebuilt : ScopeId(0): ["Bar", "Foo", "M"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5)] -Binding symbols mismatch: -after transform: ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(9)] -rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3)] +Bindings mismatch: +after transform: ScopeId(1): ["_M"] +rebuilt : ScopeId(1): ["C", "D", "_M"] 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(7): ["T"] -rebuilt : ScopeId(4): [] -Bindings mismatch: -after transform: ScopeId(8): ["T"] -rebuilt : ScopeId(5): [] Symbol flags mismatch for "C": after transform: SymbolId(1): SymbolFlags(Class | Interface) rebuilt : SymbolId(2): SymbolFlags(Class) @@ -2556,12 +2234,9 @@ Missing ReferenceId: "_Foo" Missing ReferenceId: "Baz" Missing ReferenceId: "Foo" Missing ReferenceId: "Foo" -Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(3): ["Bar", "Baz", "_Foo"] -rebuilt : ScopeId(3): ["Baz", "_Foo"] +Binding symbols mismatch: +after transform: ScopeId(3): [SymbolId(3), SymbolId(4)] +rebuilt : ScopeId(3): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(3): ScopeFlags(Function) @@ -2586,9 +2261,6 @@ semantic error: Missing SymbolId: "_Service" Missing ReferenceId: "_Service" Missing ReferenceId: "Service" Missing ReferenceId: "Service" -Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] Binding symbols mismatch: after transform: ScopeId(3): [SymbolId(3), SymbolId(4)] rebuilt : ScopeId(3): [SymbolId(2), SymbolId(3)] @@ -2611,15 +2283,12 @@ Missing ReferenceId: "_$" Missing ReferenceId: "ajax" Missing ReferenceId: "$" Missing ReferenceId: "$" -Bindings mismatch: -after transform: ScopeId(0): ["$", "it"] -rebuilt : ScopeId(0): ["it"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1)] -Bindings mismatch: -after transform: ScopeId(4): ["AjaxSettings", "_$", "ajax"] -rebuilt : ScopeId(1): ["_$", "ajax"] +Binding symbols mismatch: +after transform: ScopeId(4): [SymbolId(3), SymbolId(6)] +rebuilt : ScopeId(1): [SymbolId(0), SymbolId(1)] Scope flags mismatch: after transform: ScopeId(4): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -2672,14 +2341,11 @@ semantic error: Namespaces exporting non-const are not supported by Babel. Chang tasks/coverage/typescript/tests/cases/compiler/coAndContraVariantInferences.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "Action", "B", "a", "actionA", "actionB", "b", "call", "printFn"] +after transform: ScopeId(0): ["a", "actionA", "actionB", "b", "call", "printFn"] rebuilt : ScopeId(0): ["actionA", "actionB", "call", "printFn"] 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(6): ["TName", "TPayload", "action", "fn"] -rebuilt : ScopeId(1): ["action", "fn"] Symbol reference IDs mismatch for "actionA": after transform: SymbolId(11): [ReferenceId(24), ReferenceId(29)] rebuilt : SymbolId(0): [ReferenceId(11)] @@ -2698,7 +2364,7 @@ rebuilt : ["a", "b", "console", "fab", "foo"] 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"] +after transform: ScopeId(0): ["SyntaxKind", "SyntaxKind1", "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)] @@ -2739,7 +2405,7 @@ rebuilt : ["assertNode", "canHaveLocals", "cast", "consume", "every", "is 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"] +after transform: ScopeId(0): ["DISALLOW_DECORATORS", "SyntaxKind", "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)] @@ -2777,7 +2443,7 @@ rebuilt : ["DISALLOW_DECORATORS", "buildOverload", "every", "isArray", "i tasks/coverage/typescript/tests/cases/compiler/coAndContraVariantInferences4.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Decorator", "Modifier", "Node", "SyntaxKind", "foo", "modifiers"] +after transform: ScopeId(0): ["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)] @@ -2805,10 +2471,7 @@ after transform: ["every", "isDecorator", "isModifier"] rebuilt : ["every", "isDecorator", "isModifier", "modifiers"] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: @@ -2816,10 +2479,7 @@ after transform: ["Array", "select"] rebuilt : ["select"] tasks/coverage/typescript/tests/cases/compiler/coAndContraVariantInferences7.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Request", "Schema", "validate"] -rebuilt : ScopeId(0): ["validate"] -Scope children 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)] @@ -2844,21 +2504,9 @@ after transform: [] rebuilt : ["fn", "x", "y"] 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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(8): ["T", "U"] -rebuilt : ScopeId(4): [] -Bindings mismatch: -after transform: ScopeId(11): ["T", "U", "message", "messageList"] -rebuilt : ScopeId(7): ["message", "messageList"] Symbol reference IDs mismatch for "Message": after transform: SymbolId(2): [ReferenceId(0), ReferenceId(3), ReferenceId(4), ReferenceId(6), ReferenceId(10), ReferenceId(21)] rebuilt : SymbolId(0): [] @@ -2872,10 +2520,7 @@ 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(10)] rebuilt : ScopeId(0): [] @@ -2982,9 +2627,9 @@ Missing ReferenceId: "m1" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(3)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(3)] -Bindings mismatch: -after transform: ScopeId(1): ["_m", "m1", "m2"] -rebuilt : ScopeId(1): ["_m", "m2"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(2), SymbolId(4)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -3294,10 +2939,7 @@ 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7)] rebuilt : ScopeId(0): [] @@ -3566,10 +3208,7 @@ after transform: SymbolId(0): SymbolFlags(RegularEnum) rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/typescript/tests/cases/compiler/commentOnInterface1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I", "I2"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] @@ -3677,18 +3316,12 @@ after transform: SymbolId(4): [] rebuilt : SymbolId(5): [ReferenceId(7)] tasks/coverage/typescript/tests/cases/compiler/commentsInheritance.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["c1", "c1_i", "c2", "c2_i", "c3", "c3_i", "c4", "c4_i", "i1", "i1_i", "i2", "i2_i", "i3", "i3_i"] -rebuilt : ScopeId(0): ["c1", "c1_i", "c2", "c2_i", "c3", "c3_i", "c4", "c4_i", "i1_i", "i2_i", "i3_i"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(6), ScopeId(11), ScopeId(21), ScopeId(27), ScopeId(28), ScopeId(33)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(6), ScopeId(16), ScopeId(22)] tasks/coverage/typescript/tests/cases/compiler/commentsInterface.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["i1", "i1_i", "i2", "i2_i", "i2_i_fnfoo", "i2_i_fnfoo_r", "i2_i_foo", "i2_i_foo_r", "i2_i_i2_ii", "i2_i_i2_si", "i2_i_n", "i2_i_nc_fnfoo", "i2_i_nc_fnfoo_r", "i2_i_nc_foo", "i2_i_nc_foo_r", "i2_i_nc_x", "i2_i_r", "i2_i_x", "i3", "i3_i", "nc_i1", "nc_i1_i"] -rebuilt : ScopeId(0): ["i1_i", "i2_i", "i2_i_fnfoo", "i2_i_fnfoo_r", "i2_i_foo", "i2_i_foo_r", "i2_i_i2_ii", "i2_i_i2_si", "i2_i_n", "i2_i_nc_fnfoo", "i2_i_nc_fnfoo_r", "i2_i_nc_foo", "i2_i_nc_foo_r", "i2_i_nc_x", "i2_i_r", "i2_i_x", "i3_i", "nc_i1_i"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(7), ScopeId(10)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -3794,10 +3427,7 @@ after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/commentsOverloads.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["c", "c1", "c1_i_1", "c1_i_2", "c2", "c2_i_1", "c2_i_2", "c3", "c3_i_1", "c3_i_2", "c4", "c4_i_1", "c4_i_2", "c5", "c5_i_1", "c5_i_2", "c_i", "f1", "f2", "f3", "f4", "i1", "i1_i", "i2", "i2_i", "i3", "i3_i", "i4"] -rebuilt : ScopeId(0): ["c", "c1", "c1_i_1", "c1_i_2", "c2", "c2_i_1", "c2_i_2", "c3", "c3_i_1", "c3_i_2", "c4", "c4_i_1", "c4_i_2", "c5", "c5_i_1", "c5_i_2", "c_i", "f1", "f2", "f3", "f4", "i1_i", "i2_i", "i3_i"] -Scope children 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(27), ScopeId(30), ScopeId(33), ScopeId(36), ScopeId(52), ScopeId(56), ScopeId(60), ScopeId(64), ScopeId(68)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19)] Scope children mismatch: @@ -3819,26 +3449,6 @@ Scope children mismatch: after transform: ScopeId(68): [ScopeId(69), ScopeId(70), ScopeId(71)] rebuilt : ScopeId(19): [ScopeId(20)] -tasks/coverage/typescript/tests/cases/compiler/commentsTypeParameters.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(2): ["U", "a"] -rebuilt : ScopeId(2): ["a"] -Bindings mismatch: -after transform: ScopeId(3): ["U", "a"] -rebuilt : ScopeId(3): ["a"] -Bindings mismatch: -after transform: ScopeId(4): ["U", "a"] -rebuilt : ScopeId(4): ["a"] -Bindings mismatch: -after transform: ScopeId(5): ["U", "a"] -rebuilt : ScopeId(5): ["a"] -Bindings mismatch: -after transform: ScopeId(6): ["T", "a", "b"] -rebuilt : ScopeId(6): ["a", "b"] - tasks/coverage/typescript/tests/cases/compiler/commentsdoNotEmitComments.ts semantic error: Missing SymbolId: "m1" Missing SymbolId: "_m" @@ -3847,7 +3457,7 @@ Missing ReferenceId: "b" Missing ReferenceId: "m1" Missing ReferenceId: "m1" Bindings mismatch: -after transform: ScopeId(0): ["c", "color", "foo", "fooVar", "i", "i1", "i1_i", "m1", "myVariable", "shade", "x"] +after transform: ScopeId(0): ["c", "color", "foo", "fooVar", "i", "i1_i", "m1", "myVariable", "shade", "x"] rebuilt : ScopeId(0): ["c", "color", "foo", "fooVar", "i", "i1_i", "m1", "myVariable", "shade"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(10), ScopeId(13), ScopeId(17)] @@ -3888,7 +3498,7 @@ Missing ReferenceId: "b" Missing ReferenceId: "m1" Missing ReferenceId: "m1" Bindings mismatch: -after transform: ScopeId(0): ["c", "foo", "fooVar", "i", "i1", "i1_i", "m1", "myVariable", "x"] +after transform: ScopeId(0): ["c", "foo", "fooVar", "i", "i1_i", "m1", "myVariable", "x"] rebuilt : ScopeId(0): ["c", "foo", "fooVar", "i", "i1_i", "m1", "myVariable"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(10), ScopeId(13)] @@ -3922,22 +3532,8 @@ Unresolved references mismatch: after transform: [] rebuilt : ["c", "require"] -tasks/coverage/typescript/tests/cases/compiler/comparabilityTypeParametersRelatedByUnion.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(3): ["U", "y"] -rebuilt : ScopeId(3): ["y"] -Bindings mismatch: -after transform: ScopeId(5): ["U", "y"] -rebuilt : ScopeId(5): ["y"] - tasks/coverage/typescript/tests/cases/compiler/comparableRelationBidirectional.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Automation", "AutomationMode", "ExtensionData", "ThemePreset", "UserSettings", "getMockData"] -rebuilt : ScopeId(0): ["AutomationMode", "getMockData"] -Scope children mismatch: +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)] Bindings mismatch: @@ -3954,10 +3550,7 @@ after transform: SymbolId(0): [ReferenceId(0), ReferenceId(11)] rebuilt : SymbolId(0): [ReferenceId(5)] tasks/coverage/typescript/tests/cases/compiler/comparisonOfPartialDeepAndIndexedAccessTerminatesWithoutError.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Collection", "Many", "PartialDeep", "x"] -rebuilt : ScopeId(0): ["x"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [] @@ -3965,10 +3558,7 @@ 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 tasks/coverage/typescript/tests/cases/compiler/complicatedIndexesOfIntersectionsAreInferencable.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["FormikConfig"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: @@ -3976,21 +3566,10 @@ after transform: ["Exclude", "Extract", "Func", "Partial", "Pick", "Readonly"] rebuilt : ["Func"] tasks/coverage/typescript/tests/cases/compiler/compositeContextualSignature.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "v"] -rebuilt : ScopeId(1): ["v"] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["ReadonlyArray", "console", "undefined"] rebuilt : ["console", "undefined"] -tasks/coverage/typescript/tests/cases/compiler/compositeGenericFunction.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "value"] -rebuilt : ScopeId(1): ["value"] -Bindings mismatch: -after transform: ScopeId(2): ["R", "func"] -rebuilt : ScopeId(2): ["func"] - tasks/coverage/typescript/tests/cases/compiler/compositeWithNodeModulesSourceFile.ts semantic error: Missing SymbolId: "myModule" Missing ReferenceId: "require" @@ -4126,7 +3705,7 @@ rebuilt : SymbolId(0) "NS" tasks/coverage/typescript/tests/cases/compiler/computedPropertiesWithSetterAssignment.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo", "Props", "foo", "k"] +after transform: ScopeId(0): ["Props", "foo", "k"] rebuilt : ScopeId(0): ["Props", "k"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -4168,16 +3747,13 @@ after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/computedTypesKeyofNoIndexSignatureType.ts -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: +semantic error: 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"] +after transform: ScopeId(0): ["a", "b"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(6)] @@ -4187,10 +3763,7 @@ after transform: ["Date"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [] @@ -4200,10 +3773,7 @@ after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), Sc 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(6)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -4211,72 +3781,42 @@ after transform: ["MyRecord", "MySet"] rebuilt : [] 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: +semantic error: 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), ScopeId(5)] rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(6): ["P", "attrs"] -rebuilt : ScopeId(2): ["attrs"] Scope children mismatch: after transform: ScopeId(6): [ScopeId(7), ScopeId(8)] 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: +semantic error: 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"] Unresolved references mismatch: after transform: ["Record"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/conditionalTypeGenericInSignatureTypeParameterConstraint.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["H_inline1", "Result"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: 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): [] Unresolved references mismatch: after transform: ["Partial", "f", "undefined"] rebuilt : ["f", "undefined"] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(6), ScopeId(7)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -4292,56 +3832,17 @@ after transform: ["Field"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/conditionalTypesASI.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["JSONSchema4"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] 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"] +after transform: ScopeId(0): ["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"] -Bindings mismatch: -after transform: ScopeId(2): ["T", "x", "y"] -rebuilt : ScopeId(2): ["x", "y"] -Bindings mismatch: -after transform: ScopeId(3): ["Params", "params"] -rebuilt : ScopeId(3): ["params"] -Bindings mismatch: -after transform: ScopeId(4): ["T", "x", "y"] -rebuilt : ScopeId(4): ["x", "y"] -Bindings mismatch: -after transform: ScopeId(9): ["Params", "params"] -rebuilt : ScopeId(5): ["params"] -Bindings mismatch: -after transform: ScopeId(10): ["T", "x", "y"] -rebuilt : ScopeId(6): ["x", "y"] -Bindings mismatch: -after transform: ScopeId(11): ["Params", "params"] -rebuilt : ScopeId(7): ["params"] -Bindings mismatch: -after transform: ScopeId(12): ["T", "x", "y"] -rebuilt : ScopeId(8): ["x", "y"] -Bindings mismatch: -after transform: ScopeId(15): ["Params", "params"] -rebuilt : ScopeId(9): ["params"] -Bindings mismatch: -after transform: ScopeId(16): ["T", "x", "y"] -rebuilt : ScopeId(10): ["x", "y"] -Bindings mismatch: -after transform: ScopeId(17): ["Params", "params"] -rebuilt : ScopeId(11): ["params"] -Bindings mismatch: -after transform: ScopeId(18): ["T", "x", "y"] -rebuilt : ScopeId(12): ["x", "y"] Reference symbol mismatch for "z": after transform: SymbolId(56) "z" rebuilt : @@ -4662,9 +4163,6 @@ rebuilt : ScopeId(1): ["En"] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(0x0) rebuilt : ScopeId(1): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(2): ["T", "x"] -rebuilt : ScopeId(2): ["x"] Symbol flags mismatch for "En": after transform: SymbolId(0): SymbolFlags(ConstEnum) rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) @@ -4998,10 +4496,7 @@ after transform: ["A", "A0"] rebuilt : ["E"] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: @@ -5058,10 +4553,7 @@ after transform: SymbolId(3): [ReferenceId(3)] rebuilt : SymbolId(3): [] tasks/coverage/typescript/tests/cases/compiler/constraintCheckInGenericBaseTypeReference.ts -semantic error: Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] -Symbol reference IDs mismatch for "Constraint": +semantic error: Symbol reference IDs mismatch for "Constraint": after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] Symbol reference IDs mismatch for "Derived": @@ -5072,57 +4564,23 @@ after transform: SymbolId(4): [ReferenceId(2)] rebuilt : SymbolId(3): [] tasks/coverage/typescript/tests/cases/compiler/constraintOfRecursivelyMappedTypeWithConditionalIsResolvable.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["IImmutableMap", "IImmutableMap2", "ImmutableModel", "ImmutableModel2", "ImmutableTypes", "ImmutableTypes2", "Map", "isImmutableType"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: -after transform: ScopeId(1): ["T", "x"] -rebuilt : ScopeId(1): ["x"] -Bindings mismatch: -after transform: ScopeId(2): ["S", "x", "y"] -rebuilt : ScopeId(2): ["x", "y"] - tasks/coverage/typescript/tests/cases/compiler/constraintReferencingTypeParameterFromSameTypeParameterList.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I1", "I2", "I3", "I4", "IComparable", "f", "foo"] -rebuilt : ScopeId(0): ["f", "foo"] -Scope children mismatch: +semantic error: 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): [] -Bindings mismatch: -after transform: ScopeId(8): ["T", "U", "V"] -rebuilt : ScopeId(2): [] tasks/coverage/typescript/tests/cases/compiler/constraintsThatReferenceOtherContstraints1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Bar", "Foo", "Object", "x"] -rebuilt : ScopeId(0): ["Bar", "Foo", "x"] -Scope children 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(2): ["T", "U"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(3): ["T", "U"] -rebuilt : ScopeId(2): [] Symbol reference IDs mismatch for "Foo": after transform: SymbolId(1): [ReferenceId(3), ReferenceId(6)] rebuilt : SymbolId(0): [] -tasks/coverage/typescript/tests/cases/compiler/constraintsUsedInPrototypeProperty.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "U", "V"] -rebuilt : ScopeId(1): [] - tasks/coverage/typescript/tests/cases/compiler/constructorArgWithGenericCallSignature.ts semantic error: Missing SymbolId: "Test" Missing SymbolId: "_Test" @@ -5135,9 +4593,9 @@ Missing ReferenceId: "Test" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(7), SymbolId(8)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(6), SymbolId(7)] -Bindings mismatch: -after transform: ScopeId(1): ["F", "MyClass", "MyFunc", "_Test"] -rebuilt : ScopeId(1): ["F", "MyClass", "_Test"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(3), SymbolId(5), SymbolId(9)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(4)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -5161,10 +4619,7 @@ after transform: ["Test"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] @@ -5178,7 +4633,7 @@ 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"] +after transform: ScopeId(0): ["M"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -5189,14 +4644,9 @@ semantic error: Scope children mismatch: after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] rebuilt : ScopeId(1): [ScopeId(2)] -tasks/coverage/typescript/tests/cases/compiler/constructorReturningAPrimitive.ts -semantic error: Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] - tasks/coverage/typescript/tests/cases/compiler/constructorTypeWithTypeParameters.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T", "X", "Y", "anotherVar"] +after transform: ScopeId(0): ["X", "Y", "anotherVar"] rebuilt : ScopeId(0): ["anotherVar"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -5208,10 +4658,7 @@ after transform: SymbolId(1): [ReferenceId(0), ReferenceId(2), ReferenceId(5), R rebuilt : SymbolId(1): [ReferenceId(1), ReferenceId(4), ReferenceId(10)] tasks/coverage/typescript/tests/cases/compiler/contextSensitiveReturnTypeInference.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["DEPS", "IData"] -rebuilt : ScopeId(0): ["DEPS"] -Scope children mismatch: +semantic error: 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)] Symbol reference IDs mismatch for "DEPS": @@ -5219,12 +4666,12 @@ after transform: SymbolId(4): [ReferenceId(6), ReferenceId(8), ReferenceId(11), rebuilt : SymbolId(0): [ReferenceId(3), ReferenceId(7), ReferenceId(11), ReferenceId(15), ReferenceId(18)] 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: +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)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +Bindings mismatch: +after transform: ScopeId(10): [] +rebuilt : ScopeId(2): ["propName"] Symbol flags mismatch for "propName": after transform: SymbolId(11): SymbolFlags(FunctionScopedVariable | TypeParameter) rebuilt : SymbolId(2): SymbolFlags(FunctionScopedVariable) @@ -5239,41 +4686,23 @@ after transform: SymbolId(11): [Span { start: 551, end: 569 }] rebuilt : SymbolId(2): [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/contextualOuterTypeParameters.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T", "fn1", "fn2", "obj"] -rebuilt : ScopeId(0): ["fn1", "fn2", "obj"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(7), ScopeId(12), ScopeId(17)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] -Bindings mismatch: -after transform: ScopeId(2): ["IsObject", "isArray", "t"] -rebuilt : ScopeId(1): ["t"] Scope children mismatch: after transform: ScopeId(2): [ScopeId(3), ScopeId(5)] rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(7): ["IsObject", "isArray", "t"] -rebuilt : ScopeId(2): ["t"] Scope children mismatch: after transform: ScopeId(7): [ScopeId(8), ScopeId(10)] rebuilt : ScopeId(2): [] -Bindings mismatch: -after transform: ScopeId(12): ["IsObject", "isArray", "t", "test"] -rebuilt : ScopeId(3): ["t", "test"] Scope children mismatch: after transform: ScopeId(12): [ScopeId(13), ScopeId(15)] rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(17): ["IsObject", "isArray", "t"] -rebuilt : ScopeId(4): ["t"] Scope children mismatch: after transform: ScopeId(17): [ScopeId(18), ScopeId(20)] rebuilt : ScopeId(4): [] @@ -5339,10 +4768,7 @@ after transform: ["contextual", "toInstantiate"] rebuilt : ["toInstantiate"] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6)] rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: @@ -5353,78 +4779,30 @@ tasks/coverage/typescript/tests/cases/compiler/contextualSignatureInstantiation1 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: -after transform: ScopeId(4): ["K", "x", "y"] -rebuilt : ScopeId(2): ["x", "y"] - -tasks/coverage/typescript/tests/cases/compiler/contextualSignatureInstantiation2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["S", "T", "U", "dot", "id", "r23"] -rebuilt : ScopeId(0): ["dot", "id", "r23"] -Bindings mismatch: -after transform: ScopeId(1): ["S", "T", "f"] -rebuilt : ScopeId(1): ["f"] -Bindings mismatch: -after transform: ScopeId(2): ["U", "g"] -rebuilt : ScopeId(2): ["g"] - -tasks/coverage/typescript/tests/cases/compiler/contextualSignatureInstantiation3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "U", "f", "items"] -rebuilt : ScopeId(1): ["f", "items"] -Bindings mismatch: -after transform: ScopeId(2): ["T", "x"] -rebuilt : ScopeId(2): ["x"] -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"] -rebuilt : ScopeId(0): ["f", "h", "x"] -Bindings mismatch: -after transform: ScopeId(1): ["T", "g"] -rebuilt : ScopeId(1): ["g"] -Bindings mismatch: -after transform: ScopeId(2): ["U", "u"] -rebuilt : ScopeId(2): ["u"] - tasks/coverage/typescript/tests/cases/compiler/contextualSignatureInstatiationCovariance.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Animal", "Giraffe", "T", "TallThing", "f2", "g2", "h2"] -rebuilt : ScopeId(0): ["f2", "g2", "h2"] -Scope children mismatch: +semantic error: 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: +semantic error: 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: +semantic error: 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/contextualTypeBasedOnIntersectionWithAnyInTheMix1.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Attrs", "BaseProps", "ComponentProps", "ComponentType", "Flex", "StyledFunction", "StyledInterface", "StyledSelect", "styled"] +after transform: ScopeId(0): ["Flex", "StyledSelect", "styled"] rebuilt : ScopeId(0): ["StyledSelect"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(8)] @@ -5440,24 +4818,18 @@ after transform: ["Partial"] rebuilt : ["Flex", "styled"] tasks/coverage/typescript/tests/cases/compiler/contextualTypeBasedOnIntersectionWithAnyInTheMix2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Component", "IntrinsicElements", "MDXComponents", "MDXProps", "NestedMDXComponents"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +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)] tasks/coverage/typescript/tests/cases/compiler/contextualTypeBasedOnIntersectionWithAnyInTheMix3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["TypeMap", "a", "b", "c", "d", "result", "x"] -rebuilt : ScopeId(0): ["a", "b", "c", "d", "result", "x"] -Scope children mismatch: +semantic error: 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/contextualTypeBasedOnIntersectionWithAnyInTheMix5.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["App", "ComponentOptions", "ComponentOptionsBase", "ComponentPublicInstance", "ComputedGetter", "ComputedOptions", "ExtractComputedReturns", "InjectionKey", "Ref", "ThemeInstance", "ThemeSymbol", "app"] +after transform: ScopeId(0): ["ThemeSymbol", "app"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16)] @@ -5474,7 +4846,7 @@ rebuilt : ["ThemeSymbol", "app", "inject", "reactive"] 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"] +after transform: ScopeId(0): ["A", "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)] @@ -5495,29 +4867,17 @@ after transform: ["DMap", "Iterable", "true"] rebuilt : ["DMap"] tasks/coverage/typescript/tests/cases/compiler/contextualTypeObjectSpreadExpression.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I", "_objectSpread", "i"] -rebuilt : ScopeId(0): ["_objectSpread", "i"] -Scope children mismatch: +semantic error: 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: +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)] -Bindings mismatch: -after transform: ScopeId(5): ["K", "x", "y"] -rebuilt : ScopeId(2): ["x", "y"] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: @@ -5525,10 +4885,7 @@ after transform: ["Generator", "console"] rebuilt : ["console"] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: @@ -5537,7 +4894,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/contextualTypeSelfReferencing.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["def", "narrow", "parse", "result"] +after transform: ScopeId(0): ["parse", "result"] rebuilt : ScopeId(0): ["result"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] @@ -5550,16 +4907,13 @@ after transform: [] rebuilt : ["parse"] 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: +semantic error: 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/contextualTypesNegatedTypeLikeConstraintInGenericMappedType1.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["DEFAULT_TABS_TAG", "ElementType", "IntrinsicElements", "Props", "TabGroup", "TabGroupProps", "_internal_ComponentTabGroup"] +after transform: ScopeId(0): ["DEFAULT_TABS_TAG", "TabGroup"] rebuilt : ScopeId(0): ["DEFAULT_TABS_TAG"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] @@ -5576,7 +4930,7 @@ rebuilt : ["TabGroup"] tasks/coverage/typescript/tests/cases/compiler/contextualTypesNegatedTypeLikeConstraintInGenericMappedType3.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["DEFAULT_TABS_TAG", "ElementType", "IntrinsicElements", "MappedOmit", "Props", "TabGroup", "TabGroupProps", "_internal_ComponentTabGroup"] +after transform: ScopeId(0): ["DEFAULT_TABS_TAG", "TabGroup"] rebuilt : ScopeId(0): ["DEFAULT_TABS_TAG"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] @@ -5603,10 +4957,7 @@ after transform: SymbolId(2): [ReferenceId(4)] rebuilt : SymbolId(2): [] tasks/coverage/typescript/tests/cases/compiler/contextualTypingFunctionReturningFunction.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(6)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -5621,16 +4972,13 @@ after transform: SymbolId(3): [ReferenceId(2), ReferenceId(3), ReferenceId(4)] rebuilt : SymbolId(3): [ReferenceId(2), ReferenceId(3)] 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: +semantic error: 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"] +after transform: ScopeId(0): ["JSX", "_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)] @@ -5640,10 +4988,7 @@ after transform: ["App4", "JSX", "app", "app2", "app3", "foo", "require", "undef rebuilt : ["App4", "app", "app2", "app3", "foo", "require", "undefined"] 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: +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)] Unresolved references mismatch: @@ -5651,33 +4996,12 @@ after transform: ["RegExp"] rebuilt : [] 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: +semantic error: 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: -after transform: ScopeId(1): ["T", "x"] -rebuilt : ScopeId(1): ["x"] - -tasks/coverage/typescript/tests/cases/compiler/contextualTypingWithGenericAndNonGenericSignature.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T", "U", "f2", "f3"] -rebuilt : ScopeId(0): ["f2", "f3"] - -tasks/coverage/typescript/tests/cases/compiler/contextualTypingWithGenericSignature.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T", "U", "f2"] -rebuilt : ScopeId(0): ["f2"] - tasks/coverage/typescript/tests/cases/compiler/contextuallyTypeAsyncFunctionReturnTypeFromUnion.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["LoadCallback", "_asyncToGenerator", "cb1", "cb2", "cb3", "fn1"] -rebuilt : ScopeId(0): ["_asyncToGenerator", "cb1", "cb2", "cb3", "fn1"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(17), ScopeId(19)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(12), ScopeId(15)] Unresolved references mismatch: @@ -5688,10 +5012,7 @@ after transform: [ReferenceId(2), ReferenceId(7), ReferenceId(8), ReferenceId(9) rebuilt : [ReferenceId(3), ReferenceId(7), ReferenceId(9)] tasks/coverage/typescript/tests/cases/compiler/contextuallyTypeGeneratorReturnTypeFromUnion.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Action", "Action2", "_awaitAsyncGenerator", "_wrapAsyncGenerator", "test1", "test2"] -rebuilt : ScopeId(0): ["_awaitAsyncGenerator", "_wrapAsyncGenerator", "test1", "test2"] -Scope children 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)] Unresolved references mismatch: @@ -5699,31 +5020,17 @@ after transform: ["AsyncGenerator", "Generator", "Promise", "require"] rebuilt : ["Promise", "require"] tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedBooleanLiterals.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Box", "Observable", "bb1", "bb2", "bn1", "bn2", "x"] -rebuilt : ScopeId(0): ["bb1", "bb2", "bn1", "bn2", "x"] -Scope children mismatch: +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/contextuallyTypedByDiscriminableUnion.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["ADT", "invoke", "kind"] -rebuilt : ScopeId(0): ["invoke", "kind"] -Scope children mismatch: +semantic error: 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: -after transform: ScopeId(1): ["A", "T", "arg"] -rebuilt : ScopeId(1): ["arg"] - 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: +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)] @@ -5731,15 +5038,9 @@ tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedJsxAttribute2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ComponentPropsWithRef", "ElementType", "React", "UnwrappedLink", "UnwrappedLink2", "_jsxFileName"] rebuilt : ScopeId(0): ["React", "UnwrappedLink", "UnwrappedLink2", "_jsxFileName"] -Bindings mismatch: -after transform: ScopeId(1): ["T", "props"] -rebuilt : ScopeId(1): ["props"] Scope children mismatch: after transform: ScopeId(1): [ScopeId(2)] rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(4): ["T", "props"] -rebuilt : ScopeId(3): ["props"] Scope children mismatch: after transform: ScopeId(4): [ScopeId(5)] rebuilt : ScopeId(3): [] @@ -5790,10 +5091,7 @@ after transform: ["Record", "test1"] rebuilt : ["num", "test1"] tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedParametersWithInitializers3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["CanvasDirection", "GraphActions"] -rebuilt : ScopeId(0): [] -Scope children 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)] @@ -5807,7 +5105,7 @@ rebuilt : ["test"] tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedSymbolNamedProperties.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "Action", "B", "ab", "x"] +after transform: ScopeId(0): ["A", "B", "ab", "x"] rebuilt : ScopeId(0): ["A", "B", "x"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(6)] @@ -5825,16 +5123,8 @@ Unresolved references mismatch: after transform: ["Symbol", "f"] rebuilt : ["Symbol", "ab", "f"] -tasks/coverage/typescript/tests/cases/compiler/contextuallyTypingOrOperator3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "U", "u", "x3"] -rebuilt : ScopeId(1): ["u", "x3"] - tasks/coverage/typescript/tests/cases/compiler/contravariantInferenceAndTypeGuard.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["FilterFn", "IteratorFn", "ListItem", "Test", "filter1", "list2", "x"] -rebuilt : ScopeId(0): ["filter1", "list2", "x"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(9), ScopeId(10)] rebuilt : ScopeId(0): [ScopeId(1)] Unresolved reference IDs mismatch for "List": @@ -5842,10 +5132,7 @@ after transform: [ReferenceId(5), ReferenceId(11), ReferenceId(15), ReferenceId( rebuilt : [ReferenceId(0)] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: @@ -5859,7 +5146,7 @@ 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"] +after transform: ScopeId(0): ["f1", "f2", "g1", "g2"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] @@ -5913,21 +5200,13 @@ Symbol reference IDs mismatch for "User": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(3), ReferenceId(5), ReferenceId(6), ReferenceId(13)] rebuilt : SymbolId(0): [ReferenceId(5), ReferenceId(6), ReferenceId(8), ReferenceId(10), ReferenceId(11)] -tasks/coverage/typescript/tests/cases/compiler/controlFlowCommaExpressionAssertionMultiple.ts -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: +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)] @@ -5991,10 +5270,7 @@ after transform: ["Record", "isObject1", "isObject2"] rebuilt : ["isObject1", "isObject2", "obj1", "obj2", "obj3", "obj4"] tasks/coverage/typescript/tests/cases/compiler/controlFlowForCatchAndFinally.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Browser", "Foo", "Page", "_asyncToGenerator", "_test", "test"] -rebuilt : ScopeId(0): ["Foo", "_asyncToGenerator", "_test", "test"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(13), ScopeId(15), ScopeId(22), ScopeId(23)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(8)] Unresolved references mismatch: @@ -6017,7 +5293,7 @@ rebuilt : ["obj"] 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"] +after transform: ScopeId(0): ["A", "B", "C", "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)] @@ -6042,15 +5318,9 @@ after transform: [ReferenceId(0), ReferenceId(1), ReferenceId(3), ReferenceId(6) rebuilt : [ReferenceId(1), ReferenceId(4), ReferenceId(9), ReferenceId(18), ReferenceId(22), ReferenceId(25)] tasks/coverage/typescript/tests/cases/compiler/controlFlowInstanceofWithSymbolHasInstance.ts -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: +semantic error: 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): [] @@ -6081,11 +5351,6 @@ Symbol reference IDs mismatch for "Choice": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2)] rebuilt : SymbolId(0): [ReferenceId(5), ReferenceId(6)] -tasks/coverage/typescript/tests/cases/compiler/controlFlowOuterVariable.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["T", "t"] -rebuilt : ScopeId(2): ["t"] - tasks/coverage/typescript/tests/cases/compiler/controlFlowPropertyDeclarations.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["HTMLDOMPropertyConfig", "HTMLtoJSX", "StyleParser", "endsWith", "hyphenToCamelCase", "isConvertiblePixelValue", "isEmpty", "mapFrom", "propname", "repeatString", "require", "trimEnd"] @@ -6098,13 +5363,7 @@ after transform: ["Error", "JSON", "RegExp"] rebuilt : ["Error", "JSON", "RegExp", "require"] tasks/coverage/typescript/tests/cases/compiler/controlFlowUnionContainingTypeParameter1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(7): ["T"] -rebuilt : ScopeId(7): [] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["Date"] rebuilt : [] @@ -6123,10 +5382,7 @@ after transform: [] rebuilt : ["cond"] tasks/coverage/typescript/tests/cases/compiler/correctOrderOfPromiseMethod.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B", "_asyncToGenerator", "_countEverything", "countEverything", "expected"] -rebuilt : ScopeId(0): ["_asyncToGenerator", "_countEverything", "countEverything", "expected"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(11), ScopeId(12)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Unresolved reference IDs mismatch for "Promise": @@ -6135,65 +5391,14 @@ rebuilt : [ReferenceId(11), ReferenceId(22)] tasks/coverage/typescript/tests/cases/compiler/correlatedUnions.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "ACaller", "ALL_BARS", "ArgMap", "B", "BAR_LOOKUP", "BCaller", "BarLookup", "Baz", "Config", "DataEntry", "Ev", "FieldMap", "Foo", "Foo1", "FormField", "Func", "Funcs", "HandlerMap", "KeyOfOriginal", "Keys", "LetterCaller", "LetterMap", "MappedFromOriginal", "MyObj", "NestedKeyOfOriginalFor", "Original", "RecordMap", "RenderFunc", "RenderFuncMap", "SameKeys", "SelectFieldData", "TextFieldData", "TypeMap", "UnionRecord", "call", "clickEvent", "createEventListener", "data", "f1", "f2", "f3", "f4", "ff1", "foo", "func", "getConfigOrDefault", "getStringAndNumberFromOriginalAndMapped", "getValueConcrete", "handlers", "process", "processEvents", "processRecord", "r1", "r2", "ref", "renderField", "renderFuncs", "renderSelectField", "renderTextField", "scrollEvent", "xx"] +after transform: ScopeId(0): ["ALL_BARS", "BAR_LOOKUP", "call", "clickEvent", "createEventListener", "data", "f1", "f2", "f3", "f4", "ff1", "foo", "func", "getConfigOrDefault", "getStringAndNumberFromOriginalAndMapped", "getValueConcrete", "handlers", "process", "processEvents", "processRecord", "r1", "r2", "ref", "renderField", "renderFuncs", "renderSelectField", "renderTextField", "scrollEvent", "xx"] rebuilt : ScopeId(0): ["ALL_BARS", "BAR_LOOKUP", "call", "clickEvent", "createEventListener", "data", "f1", "f2", "f3", "f4", "ff1", "foo", "func", "getConfigOrDefault", "getStringAndNumberFromOriginalAndMapped", "getValueConcrete", "handlers", "process", "processEvents", "processRecord", "ref", "renderField", "renderFuncs", "renderSelectField", "renderTextField", "scrollEvent"] 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(11), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(24), ScopeId(27), ScopeId(28), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(37), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(70), ScopeId(71), ScopeId(73), ScopeId(74), ScopeId(75), ScopeId(76), ScopeId(79), ScopeId(80), ScopeId(81), ScopeId(82), ScopeId(83), ScopeId(84)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(11), ScopeId(12), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35)] -Bindings mismatch: -after transform: ScopeId(4): ["K", "rec"] -rebuilt : ScopeId(1): ["rec"] -Bindings mismatch: -after transform: ScopeId(15): ["K", "field", "renderFn"] -rebuilt : ScopeId(5): ["field", "renderFn"] -Bindings mismatch: -after transform: ScopeId(24): ["K", "data"] -rebuilt : ScopeId(8): ["data"] -Bindings mismatch: -after transform: ScopeId(30): ["K", "caller", "letter"] -rebuilt : ScopeId(11): ["caller", "letter"] -Bindings mismatch: -after transform: ScopeId(37): ["K", "events"] -rebuilt : ScopeId(12): ["events"] -Bindings mismatch: -after transform: ScopeId(41): ["K", "callback", "name", "once"] -rebuilt : ScopeId(16): ["callback", "name", "once"] -Bindings mismatch: -after transform: ScopeId(46): ["ArgMap", "Keys", "apply", "funs", "x1", "x2"] -rebuilt : ScopeId(21): ["apply", "funs", "x1", "x2"] Scope children mismatch: after transform: ScopeId(46): [ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52)] rebuilt : ScopeId(21): [ScopeId(22), ScopeId(23), ScopeId(24)] -Bindings mismatch: -after transform: ScopeId(52): ["K", "args", "fn", "funKey"] -rebuilt : ScopeId(24): ["args", "fn", "funKey"] -Bindings mismatch: -after transform: ScopeId(57): ["K", "arg", "funcs", "key"] -rebuilt : ScopeId(25): ["arg", "funcs", "key"] -Bindings mismatch: -after transform: ScopeId(58): ["K", "arg", "func", "funcs", "key"] -rebuilt : ScopeId(26): ["arg", "func", "funcs", "key"] -Bindings mismatch: -after transform: ScopeId(59): ["K", "arg", "func", "funcs", "key"] -rebuilt : ScopeId(27): ["arg", "func", "funcs", "key"] -Bindings mismatch: -after transform: ScopeId(60): ["K", "x", "y"] -rebuilt : ScopeId(28): ["x", "y"] -Bindings mismatch: -after transform: ScopeId(62): ["K", "k", "myObj", "myObj2"] -rebuilt : ScopeId(29): ["k", "myObj", "myObj2"] -Bindings mismatch: -after transform: ScopeId(66): ["T", "f", "prop"] -rebuilt : ScopeId(32): ["f", "prop"] -Bindings mismatch: -after transform: ScopeId(80): ["K", "N", "key", "mappedFromOriginal", "nestedKey", "original"] -rebuilt : ScopeId(33): ["key", "mappedFromOriginal", "nestedKey", "original"] -Bindings mismatch: -after transform: ScopeId(82): ["T", "assertedCheck", "defaultValue", "key", "userConfig", "userValue"] -rebuilt : ScopeId(34): ["assertedCheck", "defaultValue", "key", "userConfig", "userValue"] -Bindings mismatch: -after transform: ScopeId(84): ["K", "k", "o"] -rebuilt : ScopeId(35): ["k", "o"] Symbol reference IDs mismatch for "BAR_LOOKUP": after transform: SymbolId(137): [ReferenceId(232)] rebuilt : SymbolId(74): [] @@ -6222,9 +5427,9 @@ Missing ReferenceId: "M" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0)] rebuilt : ScopeId(0): [SymbolId(0)] -Bindings mismatch: -after transform: ScopeId(1): ["X", "XX", "Y", "_M", "a", "b", "f"] -rebuilt : ScopeId(1): ["XX", "_M", "a", "b", "f"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(2), SymbolId(5), SymbolId(7), SymbolId(8), SymbolId(9)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(4), SymbolId(6), SymbolId(7)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -6239,31 +5444,17 @@ after transform: SymbolId(5): [ReferenceId(4), ReferenceId(7)] rebuilt : SymbolId(4): [ReferenceId(4), ReferenceId(5), ReferenceId(7)] tasks/coverage/typescript/tests/cases/compiler/crashInGetTextOfComputedPropertyName.ts -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: +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/crashInResolveInterface.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Q", "q1", "x"] -rebuilt : ScopeId(0): ["q1", "x"] -Scope children mismatch: +semantic error: 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: -after transform: ScopeId(5): ["P0", "dialogType"] -rebuilt : ScopeId(5): ["dialogType"] - tasks/coverage/typescript/tests/cases/compiler/curiousNestedConditionalEvaluationResult.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Hmm"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -6271,10 +5462,7 @@ after transform: ["true"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/customAsyncIterator.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["AsyncIterator", "Error", "IteratorResult", "Promise", "require"] rebuilt : ["Error", "require"] @@ -6284,13 +5472,7 @@ after transform: ["CustomEvent"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/cyclicGenericTypeInstantiation.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "y", "z"] -rebuilt : ScopeId(1): ["y", "z"] -Bindings mismatch: -after transform: ScopeId(2): ["T", "y", "z"] -rebuilt : ScopeId(2): ["y", "z"] -Symbol reference IDs mismatch for "z": +semantic error: Symbol reference IDs mismatch for "z": after transform: SymbolId(2): [ReferenceId(2)] rebuilt : SymbolId(1): [] Symbol reference IDs mismatch for "y": @@ -6304,16 +5486,7 @@ after transform: SymbolId(7): [ReferenceId(5), ReferenceId(7)] rebuilt : SymbolId(5): [ReferenceId(3)] tasks/coverage/typescript/tests/cases/compiler/cyclicGenericTypeInstantiationInference.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "y", "z"] -rebuilt : ScopeId(1): ["y", "z"] -Bindings mismatch: -after transform: ScopeId(2): ["T", "y", "z"] -rebuilt : ScopeId(2): ["y", "z"] -Bindings mismatch: -after transform: ScopeId(3): ["T", "x"] -rebuilt : ScopeId(3): ["x"] -Symbol reference IDs mismatch for "z": +semantic error: Symbol reference IDs mismatch for "z": after transform: SymbolId(2): [ReferenceId(2)] rebuilt : SymbolId(1): [] Symbol reference IDs mismatch for "y": @@ -6338,13 +5511,7 @@ after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/cyclicTypeInstantiation.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "x"] -rebuilt : ScopeId(1): ["x"] -Bindings mismatch: -after transform: ScopeId(2): ["T", "x"] -rebuilt : ScopeId(2): ["x"] -Symbol reference IDs mismatch for "x": +semantic error: Symbol reference IDs mismatch for "x": after transform: SymbolId(2): [ReferenceId(1), ReferenceId(2)] rebuilt : SymbolId(1): [ReferenceId(0)] Symbol reference IDs mismatch for "x": @@ -6378,18 +5545,12 @@ after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/declFileCallSignatures.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["ICallSignature", "ICallSignatureWithOverloads", "ICallSignatureWithOwnTypeParametes", "ICallSignatureWithParameters", "ICallSignatureWithRestParameters", "ICallSignatureWithTypeParameters"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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/declFileConstructSignatures.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["IConstructSignature", "IConstructSignatureWithOverloads", "IConstructSignatureWithOwnTypeParametes", "IConstructSignatureWithParameters", "IConstructSignatureWithRestParameters", "IConstructSignatureWithTypeParameters"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(10), ScopeId(12)] rebuilt : ScopeId(0): [] @@ -6460,10 +5621,7 @@ tasks/coverage/typescript/tests/cases/compiler/declFileExportAssignmentImportInt 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/declFileExportAssignmentOfGenericInterface.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Reference symbol mismatch for "Foo": @@ -6535,10 +5693,7 @@ after transform: SymbolId(0) "m1" rebuilt : SymbolId(0) "m1" tasks/coverage/typescript/tests/cases/compiler/declFileForClassWithMultipleBaseClasses.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B", "D", "I", "J"] -rebuilt : ScopeId(0): ["A", "B", "D"] -Scope children mismatch: +semantic error: 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)] Symbol reference IDs mismatch for "A": @@ -6574,64 +5729,35 @@ after transform: [] rebuilt : ["require"] tasks/coverage/typescript/tests/cases/compiler/declFileForFunctionTypeAsTypeParameter.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C", "I", "X"] -rebuilt : ScopeId(0): ["C", "X"] -Scope children 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): ["T"] -rebuilt : ScopeId(1): [] Symbol reference IDs mismatch for "X": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1)] rebuilt : SymbolId(0): [ReferenceId(0)] tasks/coverage/typescript/tests/cases/compiler/declFileForInterfaceWithOptionalFunction.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/declFileForInterfaceWithRestParams.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["x"] rebuilt : [] -tasks/coverage/typescript/tests/cases/compiler/declFileForTypeParameters.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] - tasks/coverage/typescript/tests/cases/compiler/declFileFunctions.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)] 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(11): ["T", "a"] -rebuilt : ScopeId(8): ["a"] tasks/coverage/typescript/tests/cases/compiler/declFileGenericClassWithGenericExtendedClass.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Base", "Baz", "Derived", "IBar", "IFoo"] -rebuilt : ScopeId(0): ["Base", "Baz", "Derived"] -Scope children 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(2): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(2): [] Symbol reference IDs mismatch for "Derived": after transform: SymbolId(3): [ReferenceId(3), ReferenceId(7)] rebuilt : SymbolId(1): [] @@ -6662,42 +5788,15 @@ Missing ReferenceId: "_C" Missing ReferenceId: "D" Missing ReferenceId: "C" Missing ReferenceId: "C" -Bindings mismatch: -after transform: ScopeId(0): ["C", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "x"] -rebuilt : ScopeId(0): ["C", "a", "b", "c", "d", "e", "f", "g", "h", "j", "x"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(24), SymbolId(25), SymbolId(26), SymbolId(27), SymbolId(28), SymbolId(29), SymbolId(30), SymbolId(32), SymbolId(33), SymbolId(35)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(17), SymbolId(18), SymbolId(19), SymbolId(20), SymbolId(21), SymbolId(22), SymbolId(23), SymbolId(24), SymbolId(25), SymbolId(26)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(12), ScopeId(13), ScopeId(14)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(12), ScopeId(13)] Binding symbols mismatch: after transform: ScopeId(1): [SymbolId(1), SymbolId(3), SymbolId(4), SymbolId(7), SymbolId(10), SymbolId(13), SymbolId(16), SymbolId(18), SymbolId(21), SymbolId(36)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(6), SymbolId(8), SymbolId(10), SymbolId(12), SymbolId(13), SymbolId(15)] -Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] -Bindings mismatch: -after transform: ScopeId(4): ["T", "x"] -rebuilt : ScopeId(4): ["x"] -Bindings mismatch: -after transform: ScopeId(5): ["T", "x"] -rebuilt : ScopeId(5): ["x"] -Bindings mismatch: -after transform: ScopeId(6): ["T", "x"] -rebuilt : ScopeId(6): ["x"] -Bindings mismatch: -after transform: ScopeId(7): ["T", "x"] -rebuilt : ScopeId(7): ["x"] -Bindings mismatch: -after transform: ScopeId(8): ["T"] -rebuilt : ScopeId(8): [] -Bindings mismatch: -after transform: ScopeId(9): ["T", "x"] -rebuilt : ScopeId(9): ["x"] -Bindings mismatch: -after transform: ScopeId(10): ["T"] -rebuilt : ScopeId(10): [] -Bindings mismatch: -after transform: ScopeId(12): ["T"] -rebuilt : ScopeId(12): [] Symbol reference IDs mismatch for "A": after transform: SymbolId(1): [ReferenceId(1), ReferenceId(9), ReferenceId(16)] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -6840,9 +5939,6 @@ rebuilt : ScopeId(3): [SymbolId(5), SymbolId(6)] Scope flags mismatch: after transform: ScopeId(21): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(3): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(22): ["ModelType"] -rebuilt : ScopeId(4): [] Binding symbols mismatch: after transform: ScopeId(24): [SymbolId(20), SymbolId(31)] rebuilt : ScopeId(6): [SymbolId(7), SymbolId(8)] @@ -6867,9 +5963,6 @@ rebuilt : ScopeId(9): [SymbolId(13), SymbolId(14)] Scope flags mismatch: after transform: ScopeId(27): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(9): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(28): ["ModelType"] -rebuilt : ScopeId(10): [] Symbol reference IDs mismatch for "AbstractElementController": after transform: SymbolId(18): [] rebuilt : SymbolId(6): [ReferenceId(2)] @@ -6947,18 +6040,12 @@ rebuilt : ScopeId(0): ["List"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1)] -Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] Symbol reference IDs mismatch for "List": after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/declFileIndexSignatures.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["IBothIndexSignature", "IIndexSignatureWithTypeParameter", "INumberIndexSignature", "IStringIndexSignature"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [] @@ -6967,10 +6054,7 @@ 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 tasks/coverage/typescript/tests/cases/compiler/declFileMethods.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I1", "c1"] -rebuilt : ScopeId(0): ["c1"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(26)] rebuilt : ScopeId(0): [ScopeId(1)] Scope children mismatch: @@ -7057,18 +6141,12 @@ tasks/coverage/typescript/tests/cases/compiler/declFileModuleWithPropertyOfTypeM 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/declFileOptionalInterfaceMethod.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["X"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/declFilePrivateMethodOverloads.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["IContext", "c1"] -rebuilt : ScopeId(0): ["c1"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(10)] rebuilt : ScopeId(0): [ScopeId(1)] Scope children mismatch: @@ -7078,14 +6156,6 @@ Unresolved references mismatch: after transform: ["Array"] rebuilt : [] -tasks/coverage/typescript/tests/cases/compiler/declFileRestParametersOfFunctionAndFunctionType.ts -semantic error: Bindings mismatch: -after transform: ScopeId(4): ["T"] -rebuilt : ScopeId(4): [] -Bindings mismatch: -after transform: ScopeId(5): ["T"] -rebuilt : ScopeId(5): [] - tasks/coverage/typescript/tests/cases/compiler/declFileTypeAnnotationArrayType.ts semantic error: Missing SymbolId: "m" Missing SymbolId: "_m" @@ -7104,12 +6174,6 @@ rebuilt : ScopeId(2): [SymbolId(2), SymbolId(3), SymbolId(4)] Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(2): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(4): ["T"] -rebuilt : ScopeId(4): [] -Bindings mismatch: -after transform: ScopeId(5): ["T"] -rebuilt : ScopeId(5): [] Symbol reference IDs mismatch for "c": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2), ReferenceId(12), ReferenceId(13), ReferenceId(14)] rebuilt : SymbolId(0): [ReferenceId(6), ReferenceId(7), ReferenceId(14), ReferenceId(15)] @@ -7161,12 +6225,6 @@ rebuilt : ScopeId(2): [SymbolId(2), SymbolId(3), SymbolId(4)] Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(2): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(4): ["T"] -rebuilt : ScopeId(4): [] -Bindings mismatch: -after transform: ScopeId(5): ["T"] -rebuilt : ScopeId(5): [] Symbol reference IDs mismatch for "c": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2), ReferenceId(7), ReferenceId(10)] rebuilt : SymbolId(0): [ReferenceId(6), ReferenceId(11)] @@ -7206,9 +6264,6 @@ rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(5) 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)] -Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] Binding symbols mismatch: after transform: ScopeId(3): [SymbolId(4), SymbolId(8)] rebuilt : ScopeId(3): [SymbolId(3), SymbolId(4)] @@ -7246,12 +6301,6 @@ rebuilt : ScopeId(2): [SymbolId(2), SymbolId(3), SymbolId(4)] Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(2): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(4): ["T"] -rebuilt : ScopeId(4): [] -Bindings mismatch: -after transform: ScopeId(5): ["T"] -rebuilt : ScopeId(5): [] Symbol reference IDs mismatch for "c": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2)] rebuilt : SymbolId(0): [ReferenceId(6), ReferenceId(7)] @@ -7295,12 +6344,6 @@ rebuilt : ScopeId(2): [SymbolId(2), SymbolId(3), SymbolId(4)] Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(2): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(4): ["T"] -rebuilt : ScopeId(4): [] -Bindings mismatch: -after transform: ScopeId(5): ["T"] -rebuilt : ScopeId(5): [] Symbol reference IDs mismatch for "c": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2)] rebuilt : SymbolId(0): [ReferenceId(6), ReferenceId(7)] @@ -7347,12 +6390,6 @@ rebuilt : ScopeId(2): [SymbolId(2), SymbolId(3), SymbolId(4)] Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(2): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(4): ["T"] -rebuilt : ScopeId(4): [] -Bindings mismatch: -after transform: ScopeId(5): ["T"] -rebuilt : ScopeId(5): [] Symbol reference IDs mismatch for "c": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2), ReferenceId(4), ReferenceId(8), ReferenceId(11), ReferenceId(14)] rebuilt : SymbolId(0): [ReferenceId(6), ReferenceId(8), ReferenceId(12), ReferenceId(15)] @@ -7609,10 +6646,7 @@ 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/compiler/declFileTypeofClass.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] -Symbol reference IDs mismatch for "c": +semantic error: Symbol reference IDs mismatch for "c": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2)] rebuilt : SymbolId(0): [ReferenceId(0)] @@ -7799,9 +6833,6 @@ rebuilt : ScopeId(8): [SymbolId(13), SymbolId(14)] Scope flags mismatch: after transform: ScopeId(12): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(8): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(13): ["TValue"] -rebuilt : ScopeId(9): [] Symbol reference IDs mismatch for "W": after transform: SymbolId(7): [] rebuilt : SymbolId(6): [ReferenceId(2)] @@ -8086,9 +7117,9 @@ Missing ReferenceId: "M" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0)] rebuilt : ScopeId(0): [SymbolId(0)] -Bindings mismatch: -after transform: ScopeId(1): ["C", "D", "E", "I1", "I2", "_M"] -rebuilt : ScopeId(1): ["C", "D", "E", "_M"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(5), SymbolId(8)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -8106,7 +7137,10 @@ after transform: SymbolId(5): [] rebuilt : SymbolId(4): [ReferenceId(4)] tasks/coverage/typescript/tests/cases/compiler/declInput.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): [] +rebuilt : ScopeId(0): ["bar"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol flags mismatch for "bar": @@ -8123,10 +7157,7 @@ after transform: SymbolId(0): [Span { start: 26, end: 29 }] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/declInput3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["bar", "bar2"] -rebuilt : ScopeId(0): ["bar"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch for "bar": @@ -8145,9 +7176,9 @@ Missing ReferenceId: "M" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0)] rebuilt : ScopeId(0): [SymbolId(0)] -Bindings mismatch: -after transform: ScopeId(1): ["C", "D", "E", "I1", "I2", "_M"] -rebuilt : ScopeId(1): ["C", "D", "E", "_M"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(5), SymbolId(7)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -8162,10 +7193,7 @@ after transform: SymbolId(5): [] rebuilt : SymbolId(4): [ReferenceId(3)] tasks/coverage/typescript/tests/cases/compiler/declarationEmitAliasExportStar.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["ThingB"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -8175,10 +7203,7 @@ after transform: ScopeId(0): ["FlatpickrFn", "fp"] rebuilt : ScopeId(0): ["fp"] tasks/coverage/typescript/tests/cases/compiler/declarationEmitAliasInlineing.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I", "O", "fn"] -rebuilt : ScopeId(0): ["fn"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: @@ -8186,10 +7211,7 @@ after transform: ["Omit"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/declarationEmitArrayTypesFromGenericArrayUsage.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -8197,35 +7219,20 @@ after transform: ["Array"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/declarationEmitArrowFunctionNoRenaming.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["BoundedInteger", "Brand", "toBoundedInteger"] -rebuilt : ScopeId(0): ["toBoundedInteger"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1)] -Bindings mismatch: -after transform: ScopeId(4): ["LowerBound", "UpperBound", "bounds"] -rebuilt : ScopeId(1): ["bounds"] tasks/coverage/typescript/tests/cases/compiler/declarationEmitBindingPatternWithReservedWord.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["ConvertLocaleConfig", "GetLocalesOptions", "LocaleConfig", "LocaleData", "getLocales"] -rebuilt : ScopeId(0): ["getLocales"] -Scope children 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)] -Bindings mismatch: -after transform: ScopeId(5): ["T", "app", "defaultLocalesConfig", "name", "userLocalesConfig"] -rebuilt : ScopeId(1): ["app", "defaultLocalesConfig", "name", "userLocalesConfig"] Unresolved references mismatch: after transform: ["Partial", "Record"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/declarationEmitBindingPatternsFunctionExpr.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Named", "duplicateIndetifiers", "duplicateIndetifiers2", "duplicateIndetifiers3", "notReferenced", "shadowedVariable", "value"] -rebuilt : ScopeId(0): ["duplicateIndetifiers", "duplicateIndetifiers2", "duplicateIndetifiers3", "notReferenced", "shadowedVariable", "value"] -Scope children mismatch: +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)] Symbol reference IDs mismatch for "value": @@ -8233,16 +7240,13 @@ after transform: SymbolId(12): [ReferenceId(5), ReferenceId(6)] rebuilt : SymbolId(11): [ReferenceId(0)] tasks/coverage/typescript/tests/cases/compiler/declarationEmitBundlePreservesHasNoDefaultLibDirective.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Array", "Boolean", "Function", "IArguments", "Number", "Object", "RegExp", "String"] -rebuilt : ScopeId(0): [] -Scope children 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)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/declarationEmitBundleWithAmbientReferences.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Result", "T"] +after transform: ScopeId(0): ["Result"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] @@ -8252,26 +7256,17 @@ after transform: ["Error"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/declarationEmitCastReusesTypeNode1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C", "P", "fn", "fnWithPartialAnnotationOnDefaultparam", "fnWithRequiredDefaultParam", "vConst", "vLet"] -rebuilt : ScopeId(0): ["C", "fn", "fnWithPartialAnnotationOnDefaultparam", "fnWithRequiredDefaultParam", "vConst", "vLet"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(10)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(9)] tasks/coverage/typescript/tests/cases/compiler/declarationEmitCastReusesTypeNode3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C", "P", "fn", "fnWithPartialAnnotationOnDefaultparam", "fnWithRequiredDefaultParam", "vConst", "vLet"] -rebuilt : ScopeId(0): ["C", "fn", "fnWithPartialAnnotationOnDefaultparam", "fnWithRequiredDefaultParam", "vConst", "vLet"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(10)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(9)] tasks/coverage/typescript/tests/cases/compiler/declarationEmitCastReusesTypeNode5.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C", "R", "vLiteral", "vNumberLiteral", "vStringLiteral"] -rebuilt : ScopeId(0): ["C", "vLiteral", "vNumberLiteral", "vStringLiteral"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -8315,10 +7310,7 @@ after transform: ["Symbol", "const"] rebuilt : ["Symbol"] tasks/coverage/typescript/tests/cases/compiler/declarationEmitClassMixinLocalClassDeclaration.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["AnyConstructor", "AnyFunction", "Base", "Mixin", "MixinHelperFunc", "XmlElement2"] -rebuilt : ScopeId(0): ["Base", "Mixin", "XmlElement2"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Symbol reference IDs mismatch for "Base": @@ -8326,26 +7318,17 @@ after transform: SymbolId(10): [ReferenceId(11), ReferenceId(13), ReferenceId(14 rebuilt : SymbolId(1): [ReferenceId(1)] tasks/coverage/typescript/tests/cases/compiler/declarationEmitClassPrivateConstructor.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["ExportedClass1", "ExportedClass2", "ExportedClass3", "ExportedClass4", "PrivateInterface"] -rebuilt : ScopeId(0): ["ExportedClass1", "ExportedClass2", "ExportedClass3", "ExportedClass4"] -Scope children mismatch: +semantic error: 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), ScopeId(7)] tasks/coverage/typescript/tests/cases/compiler/declarationEmitClassPrivateConstructor2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["ExportedClass1", "ExportedClass2", "PrivateInterface"] -rebuilt : ScopeId(0): ["ExportedClass1", "ExportedClass2"] -Scope children mismatch: +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/declarationEmitComputedNameCausesImportToBePainted.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Context", "Key"] -rebuilt : ScopeId(0): ["Key"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Symbol reference IDs mismatch for "Key": @@ -8364,18 +7347,12 @@ after transform: SymbolId(0): SymbolFlags(RegularEnum) rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) tasks/coverage/typescript/tests/cases/compiler/declarationEmitComputedPropertyName1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["IData", "c"] -rebuilt : ScopeId(0): ["c"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/declarationEmitComputedPropertyNameEnum1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Enum", "Type"] -rebuilt : ScopeId(0): ["Enum"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: @@ -8406,10 +7383,7 @@ tasks/coverage/typescript/tests/cases/compiler/declarationEmitDestructuringPriva 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/declarationEmitDistributiveConditionalWithInfer.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["Collection", "Field", "subFun"] -rebuilt : ScopeId(1): ["subFun"] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["FlatArray"] rebuilt : [] @@ -8441,15 +7415,15 @@ Missing SymbolId: "_Translation" Missing ReferenceId: "_Translation" Missing ReferenceId: "Translation" Missing ReferenceId: "Translation" -Binding symbols mismatch: -after transform: ScopeId(0): [SymbolId(0)] -rebuilt : ScopeId(0): [SymbolId(0)] +Bindings mismatch: +after transform: ScopeId(0): [] +rebuilt : ScopeId(0): ["Translation"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] -Binding symbols mismatch: -after transform: ScopeId(2): [SymbolId(1), SymbolId(2)] -rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] +Bindings mismatch: +after transform: ScopeId(2): ["_Translation"] +rebuilt : ScopeId(1): ["TranslationKeyEnum", "_Translation"] Scope children mismatch: after transform: ScopeId(2): [ScopeId(3)] rebuilt : ScopeId(1): [] @@ -8467,23 +7441,17 @@ after transform: SymbolId(1): [Span { start: 198, end: 216 }] rebuilt : SymbolId(2): [] tasks/coverage/typescript/tests/cases/compiler/declarationEmitExactOptionalPropertyTypesNodeNotReused.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["In", "InexactOptionals", "Out", "baddts", "foo"] -rebuilt : ScopeId(0): ["baddts", "foo"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(7), ScopeId(8), ScopeId(9)] rebuilt : ScopeId(0): [ScopeId(1)] -Bindings mismatch: -after transform: ScopeId(9): ["A"] -rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/compiler/declarationEmitExpandoWithGenericConstraint.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): [] +rebuilt : ScopeId(0): ["Point", "Rect"] +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): ["a", "b", "p"] -rebuilt : ScopeId(2): ["a", "b"] Symbol flags mismatch for "Point": after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Interface) rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable) @@ -8510,10 +7478,7 @@ after transform: SymbolId(1): [Span { start: 237, end: 241 }] rebuilt : SymbolId(3): [] tasks/coverage/typescript/tests/cases/compiler/declarationEmitExportAliasVisibiilityMarking.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Rank", "Suit"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] @@ -8523,18 +7488,12 @@ after transform: ScopeId(0): ["Component", "getComp"] rebuilt : ScopeId(0): ["getComp"] tasks/coverage/typescript/tests/cases/compiler/declarationEmitExportAssignment.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Buzz", "bar", "foo"] -rebuilt : ScopeId(0): ["bar", "foo"] -Scope children mismatch: +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/declarationEmitExportDeclaration.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Buzz", "bar", "foo"] -rebuilt : ScopeId(0): ["bar", "foo"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -8549,33 +7508,10 @@ Symbol reference IDs mismatch for "B": after transform: SymbolId(3): [ReferenceId(2)] rebuilt : SymbolId(2): [] -tasks/coverage/typescript/tests/cases/compiler/declarationEmitExpressionInExtends2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "U"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(2): ["T", "c"] -rebuilt : ScopeId(2): ["c"] - tasks/coverage/typescript/tests/cases/compiler/declarationEmitExpressionInExtends3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["ExportedClass", "ExportedInterface", "LocalClass", "LocalInterface", "MyClass", "MyClass2", "MyClass3", "MyClass4", "getExportedClass", "getLocalClass"] -rebuilt : ScopeId(0): ["ExportedClass", "LocalClass", "MyClass", "MyClass2", "MyClass3", "MyClass4", "getExportedClass", "getLocalClass"] -Scope children 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)] 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: -after transform: ScopeId(2): ["T", "U"] -rebuilt : ScopeId(2): [] -Bindings mismatch: -after transform: ScopeId(5): ["T", "c"] -rebuilt : ScopeId(3): ["c"] -Bindings mismatch: -after transform: ScopeId(6): ["T", "c"] -rebuilt : ScopeId(4): ["c"] tasks/coverage/typescript/tests/cases/compiler/declarationEmitExpressionInExtends5.ts semantic error: Missing SymbolId: "Test" @@ -8591,18 +7527,15 @@ Missing ReferenceId: "Test" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0)] rebuilt : ScopeId(0): [SymbolId(0)] -Bindings mismatch: -after transform: ScopeId(1): ["Derived", "IFace", "SomeClass", "_Test", "getClass"] -rebuilt : ScopeId(1): ["Derived", "SomeClass", "_Test", "getClass"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(6)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) Scope children mismatch: after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] -Bindings mismatch: -after transform: ScopeId(5): ["T"] -rebuilt : ScopeId(4): [] Symbol reference IDs mismatch for "SomeClass": after transform: SymbolId(2): [ReferenceId(4)] rebuilt : SymbolId(2): [ReferenceId(1), ReferenceId(5)] @@ -8613,28 +7546,8 @@ Symbol reference IDs mismatch for "getClass": after transform: SymbolId(4): [ReferenceId(1)] rebuilt : SymbolId(4): [ReferenceId(2), ReferenceId(7)] -tasks/coverage/typescript/tests/cases/compiler/declarationEmitFBoundedTypeParams.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["a", "b", "result", "value"] -rebuilt : ScopeId(1): ["result", "value"] - tasks/coverage/typescript/tests/cases/compiler/declarationEmitFirstTypeArgumentGenericFunctionType.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Tany", "X", "Y", "f1", "f2", "f3", "f4", "prop11", "prop12", "prop2", "prop3", "prop4"] -rebuilt : ScopeId(0): ["X", "Y", "f1", "f2", "f3", "f4", "prop11", "prop12", "prop2", "prop3", "prop4"] -Bindings mismatch: -after transform: ScopeId(1): ["A"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(4): ["Tany"] -rebuilt : ScopeId(4): [] -Bindings mismatch: -after transform: ScopeId(5): ["Tany"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(6): ["A", "B"] -rebuilt : ScopeId(6): [] -Symbol reference IDs mismatch for "X": +semantic error: Symbol reference IDs mismatch for "X": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2), ReferenceId(6), ReferenceId(9)] rebuilt : SymbolId(0): [] Symbol reference IDs mismatch for "Y": @@ -8642,10 +7555,7 @@ after transform: SymbolId(11): [ReferenceId(12), ReferenceId(14), ReferenceId(16 rebuilt : SymbolId(7): [] tasks/coverage/typescript/tests/cases/compiler/declarationEmitForDefaultExportClassExtendingExpression01.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "Greeter", "GreeterConstructor", "getGreeterBase"] -rebuilt : ScopeId(0): ["A", "getGreeterBase"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] @@ -8668,10 +7578,7 @@ after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/declarationEmitForTypesWhichNeedImportTypes.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Named", "createNamed"] -rebuilt : ScopeId(0): ["createNamed"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -8681,10 +7588,7 @@ after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/declarationEmitGlobalThisPreserved.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "AsClassProperty", "AsFunctionType", "AsObjectProperty", "a1", "a2", "a3", "a4", "a4Return", "a4oReturn", "aObj", "b1", "b2", "b3", "b4", "b4Return", "b4oReturn", "bObj", "c1", "c2", "c3", "c4", "c4Return", "c4oReturn", "cObj", "d1", "d2", "d3", "d4", "d4Return", "explicitlyTypedFunction", "explicitlyTypedVariable", "fromParameter"] -rebuilt : ScopeId(0): ["A", "AsClassProperty", "a1", "a2", "a3", "a4", "aObj", "b1", "b2", "b3", "b4", "bObj", "c1", "c2", "c3", "c4", "cObj", "d1", "d2", "d3", "d4", "explicitlyTypedFunction", "explicitlyTypedVariable", "fromParameter"] -Scope children 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(34), ScopeId(37), ScopeId(40), ScopeId(43), ScopeId(44), ScopeId(49), 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), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(28), ScopeId(31), ScopeId(34), ScopeId(37), ScopeId(42), ScopeId(44), ScopeId(45), ScopeId(46)] Symbol reference IDs mismatch for "a4": @@ -8722,26 +7626,17 @@ rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/declarationEmitHigherOrderRetainedGenerics.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Covariant", "DataFirst", "DataLast", "Invariant", "Kind", "SK", "SemiApplicative", "SemiProduct", "TypeClass", "TypeLambda", "Types", "URI", "dual", "zipRight", "zipWith"] +after transform: ScopeId(0): ["SK", "Types", "URI", "dual", "zipRight", "zipWith"] rebuilt : ScopeId(0): ["SK", "zipRight", "zipWith"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(17)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5)] Bindings mismatch: -after transform: ScopeId(13): ["A", "B", "_", "b"] -rebuilt : ScopeId(1): ["_", "b"] -Bindings mismatch: -after transform: ScopeId(14): ["A", "B", "C", "E1", "E2", "F", "O1", "O2", "R1", "R2"] +after transform: ScopeId(14): [] rebuilt : ScopeId(2): ["F"] Bindings mismatch: -after transform: ScopeId(15): ["A", "B", "C", "E1", "E2", "O1", "O2", "R1", "R2", "f", "self", "that"] -rebuilt : ScopeId(3): ["f", "self", "that"] -Bindings mismatch: -after transform: ScopeId(17): ["B", "E1", "E2", "F", "O1", "O2", "R1", "R2", "_"] +after transform: ScopeId(17): [] rebuilt : ScopeId(5): ["F"] -Bindings mismatch: -after transform: ScopeId(18): ["B", "E1", "E2", "O1", "O2", "R1", "R2", "_", "self", "that"] -rebuilt : ScopeId(6): ["self", "that"] Symbol flags mismatch for "F": after transform: SymbolId(55): SymbolFlags(FunctionScopedVariable | TypeParameter) rebuilt : SymbolId(4): SymbolFlags(FunctionScopedVariable) @@ -8779,64 +7674,35 @@ rebuilt : ["dual"] tasks/coverage/typescript/tests/cases/compiler/declarationEmitImportInExportAssignmentModule.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/declarationEmitIndexTypeArray.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "keys"] -rebuilt : ScopeId(1): ["keys"] - tasks/coverage/typescript/tests/cases/compiler/declarationEmitInferredTypeAlias4.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["A", "Foo", "x"] -rebuilt : ScopeId(1): ["x"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(1): [ScopeId(2)] rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/compiler/declarationEmitInferredTypeAlias8.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo", "returnSomeGlobalValue", "x"] -rebuilt : ScopeId(0): ["returnSomeGlobalValue", "x"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/declarationEmitInferredTypeAlias9.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo", "returnSomeGlobalValue", "x"] -rebuilt : ScopeId(0): ["returnSomeGlobalValue", "x"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/declarationEmitInlinedDistributiveConditional.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["Obj", "obj"] -rebuilt : ScopeId(1): ["obj"] -Bindings mismatch: -after transform: ScopeId(2): ["Obj", "obj"] -rebuilt : ScopeId(2): ["obj"] +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/declarationEmitKeywordDestructuring.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["P", "_excluded", "_excluded2", "_excluded3", "_excluded4", "_excluded5", "_objectWithoutProperties", "f1", "f2", "f3", "f4", "f5"] -rebuilt : ScopeId(0): ["_excluded", "_excluded2", "_excluded3", "_excluded4", "_excluded5", "_objectWithoutProperties", "f1", "f2", "f3", "f4", "f5"] -Scope children mismatch: +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/declarationEmitLocalClassDeclarationMixin.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Constructor", "Filter", "FilteredThing", "Mixed", "Unmixed", "mixin"] -rebuilt : ScopeId(0): ["Filter", "FilteredThing", "Mixed", "Unmixed", "mixin"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(9)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6)] -Bindings mismatch: -after transform: ScopeId(3): ["B", "Base", "PrivateMixed"] -rebuilt : ScopeId(1): ["Base", "PrivateMixed"] -Bindings mismatch: -after transform: ScopeId(6): ["C", "FilterMixin", "ctor"] -rebuilt : ScopeId(4): ["FilterMixin", "ctor"] Scope children mismatch: after transform: ScopeId(7): [ScopeId(8)] rebuilt : ScopeId(5): [] @@ -8865,30 +7731,21 @@ after transform: SymbolId(3): [Span { start: 149, end: 150 }] rebuilt : SymbolId(2): [] tasks/coverage/typescript/tests/cases/compiler/declarationEmitMappedTypeDistributivityPreservesConstraints.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["AllArg", "Fns", "Map", "fn"] -rebuilt : ScopeId(0): ["fn"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6)] rebuilt : ScopeId(0): [ScopeId(1)] -Bindings mismatch: -after transform: ScopeId(6): ["T", "sliceIndex"] -rebuilt : ScopeId(1): ["sliceIndex"] Unresolved references mismatch: after transform: ["Parameters", "Record"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/declarationEmitMappedTypePropertyFromNumericStringKey.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "arg"] -rebuilt : ScopeId(1): ["arg"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(1): [ScopeId(2)] rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/compiler/declarationEmitMergedAliasWithConst.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Color", "Colors"] +after transform: ScopeId(0): [] rebuilt : ScopeId(0): ["Color"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -8966,7 +7823,7 @@ Missing ReferenceId: "biz" Missing ReferenceId: "Bar" Missing ReferenceId: "Bar" Bindings mismatch: -after transform: ScopeId(0): ["Bar", "Foo"] +after transform: ScopeId(0): [] rebuilt : ScopeId(0): ["Bar"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] @@ -8982,21 +7839,12 @@ after transform: SymbolId(2): [] rebuilt : SymbolId(2): [ReferenceId(1)] tasks/coverage/typescript/tests/cases/compiler/declarationEmitNestedAnonymousMappedType.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["Members", "Part1", "Part2"] -rebuilt : ScopeId(1): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(1): [ScopeId(2), ScopeId(5)] rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/compiler/declarationEmitNestedGenerics.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "g", "p"] -rebuilt : ScopeId(1): ["g", "p"] -Bindings mismatch: -after transform: ScopeId(2): ["T", "x", "y"] -rebuilt : ScopeId(2): ["x", "y"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(2): [ScopeId(3)] rebuilt : ScopeId(2): [] Symbol reference IDs mismatch for "p": @@ -9007,10 +7855,7 @@ after transform: SymbolId(6): [ReferenceId(5), ReferenceId(7)] rebuilt : SymbolId(4): [] tasks/coverage/typescript/tests/cases/compiler/declarationEmitNoNonRequiredParens.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Test", "TestType", "bar"] -rebuilt : ScopeId(0): ["Test", "bar"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: @@ -9030,10 +7875,7 @@ after transform: ["Extract"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/declarationEmitNonExportedBindingPattern.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["AliasType", "AliasType2", "AliasType3", "c", "foo", "getFoo", "getNested", "renamed"] -rebuilt : ScopeId(0): ["c", "foo", "getFoo", "getNested", "renamed"] -Scope children 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)] Symbol reference IDs mismatch for "foo": @@ -9066,9 +7908,6 @@ tasks/coverage/typescript/tests/cases/compiler/declarationEmitOverloadedPrivateI semantic error: Scope children mismatch: after transform: ScopeId(3): [ScopeId(4), ScopeId(5), ScopeId(6)] rebuilt : ScopeId(3): [ScopeId(4)] -Bindings mismatch: -after transform: ScopeId(6): ["T", "U", "fn"] -rebuilt : ScopeId(4): ["fn"] Unresolved references mismatch: after transform: ["true"] rebuilt : [] @@ -9086,7 +7925,7 @@ rebuilt : SymbolId(2): [] tasks/coverage/typescript/tests/cases/compiler/declarationEmitPartialNodeReuseTypeReferences.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["N", "PrivateSpecialString", "SpecialString", "o"] +after transform: ScopeId(0): ["N", "o"] rebuilt : ScopeId(0): ["o"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5)] @@ -9107,62 +7946,32 @@ after transform: SymbolId(2): [ReferenceId(2)] rebuilt : SymbolId(2): [] tasks/coverage/typescript/tests/cases/compiler/declarationEmitPrefersPathKindBasedOnBundling.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Scalar", "scalar"] -rebuilt : ScopeId(0): ["scalar"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/declarationEmitPrefersPathKindBasedOnBundling2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Scalar", "scalar"] -rebuilt : ScopeId(0): ["scalar"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/declarationEmitPreserveReferencedImports.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Evt"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/declarationEmitPreservesHasNoDefaultLibDirective.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Array", "Boolean", "Foo", "Function", "IArguments", "Number", "Object", "RegExp", "String"] -rebuilt : ScopeId(0): ["Foo"] -Scope children 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)] tasks/coverage/typescript/tests/cases/compiler/declarationEmitPrivateNameCausesError.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["CtorT", "ctor"] -rebuilt : ScopeId(1): ["ctor"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] rebuilt : ScopeId(1): [ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/declarationEmitPromise.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(2): ["A", "B", "C", "D", "E", "a", "b", "c", "d", "e", "func", "result", "rfunc"] -rebuilt : ScopeId(4): ["a", "b", "c", "d", "e", "func", "result", "rfunc"] -Bindings mismatch: -after transform: ScopeId(4): ["T", "f"] -rebuilt : ScopeId(6): ["f"] -Bindings mismatch: -after transform: ScopeId(5): ["A", "B", "C", "D", "E", "a", "b", "c", "d", "e", "func", "result", "rfunc"] -rebuilt : ScopeId(9): ["a", "b", "c", "d", "e", "func", "result", "rfunc"] -Bindings mismatch: -after transform: ScopeId(7): ["T", "f"] -rebuilt : ScopeId(11): ["f"] -Symbol reference IDs mismatch for "bluebird": +semantic error: Symbol reference IDs mismatch for "bluebird": after transform: SymbolId(0): [ReferenceId(1), ReferenceId(2), ReferenceId(4), ReferenceId(6), ReferenceId(8), ReferenceId(10), ReferenceId(12), ReferenceId(31), ReferenceId(33), ReferenceId(35), ReferenceId(37), ReferenceId(39), ReferenceId(41)] rebuilt : SymbolId(1): [ReferenceId(4), ReferenceId(21)] Symbol reference IDs mismatch for "func": @@ -9189,23 +7998,17 @@ tasks/coverage/typescript/tests/cases/compiler/declarationEmitRecursiveCondition semantic error: Bindings mismatch: after transform: ScopeId(0): ["Power", "power"] rebuilt : ScopeId(0): ["power"] -Bindings mismatch: -after transform: ScopeId(1): ["Num", "PowerOf", "num", "powerOf"] -rebuilt : ScopeId(1): ["num", "powerOf"] tasks/coverage/typescript/tests/cases/compiler/declarationEmitRedundantTripleSlashModuleAugmentation.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["FooOptions", "foo"] +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/declarationEmitResolveTypesIfNotReusable.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "a", "o1", "o2", "o3", "o4", "u"] -rebuilt : ScopeId(0): ["a", "o1", "o2", "o3", "o4", "u"] -Scope children 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), ScopeId(4)] Symbol reference IDs mismatch for "u": @@ -9218,11 +8021,6 @@ Unresolved references mismatch: after transform: ["const"] rebuilt : [] -tasks/coverage/typescript/tests/cases/compiler/declarationEmitRetainedAnnotationRetainsImportInOutput.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["E", "i"] -rebuilt : ScopeId(1): ["i"] - tasks/coverage/typescript/tests/cases/compiler/declarationEmitRetainsJsdocyComments.ts semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(6)] @@ -9232,18 +8030,9 @@ tasks/coverage/typescript/tests/cases/compiler/declarationEmitReusesLambdaParame semantic error: Bindings mismatch: after transform: ScopeId(0): ["CustomSelect1", "CustomSelect2", "Props"] rebuilt : ScopeId(0): ["CustomSelect1", "CustomSelect2"] -Bindings mismatch: -after transform: ScopeId(1): ["Option", "x"] -rebuilt : ScopeId(1): ["x"] -Bindings mismatch: -after transform: ScopeId(2): ["Option", "x"] -rebuilt : ScopeId(2): ["x"] tasks/coverage/typescript/tests/cases/compiler/declarationEmitScopeConsistency.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "f"] -rebuilt : ScopeId(0): ["f"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -9253,15 +8042,9 @@ after transform: SymbolId(3): [ReferenceId(0)] rebuilt : SymbolId(3): [] tasks/coverage/typescript/tests/cases/compiler/declarationEmitShadowingInferNotRenamed.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Client", "UpdatedClient", "createClient"] -rebuilt : ScopeId(0): ["createClient"] -Scope children 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): ["D", "clientDef"] -rebuilt : ScopeId(1): ["clientDef"] Scope children mismatch: after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] rebuilt : ScopeId(1): [] @@ -9281,10 +8064,7 @@ after transform: SymbolId(0): SymbolFlags(RegularEnum) rebuilt : SymbolId(1): SymbolFlags(FunctionScopedVariable) tasks/coverage/typescript/tests/cases/compiler/declarationEmitStringEnumUsedInNonlocalSpread.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "ITest", "TestEnum"] -rebuilt : ScopeId(0): ["A", "TestEnum"] -Scope children 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: @@ -9301,18 +8081,12 @@ after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(3), R rebuilt : SymbolId(0): [ReferenceId(3), ReferenceId(4)] tasks/coverage/typescript/tests/cases/compiler/declarationEmitSymlinkPaths.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["NotificationRequest", "NotificationResponse", "getNotification"] -rebuilt : ScopeId(0): ["getNotification"] -Scope children mismatch: +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/declarationEmitToDeclarationDirWithCompositeOption.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Reference symbol mismatch for "Foo": @@ -9326,10 +8100,7 @@ after transform: [] rebuilt : ["Foo"] tasks/coverage/typescript/tests/cases/compiler/declarationEmitToDeclarationDirWithDeclarationOption.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Reference symbol mismatch for "Foo": @@ -9343,10 +8114,7 @@ after transform: [] rebuilt : ["Foo"] tasks/coverage/typescript/tests/cases/compiler/declarationEmitTopLevelNodeFromCrossFile.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["X", "fn"] -rebuilt : ScopeId(0): ["fn"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -9360,95 +8128,43 @@ semantic error: Unresolved references mismatch: after transform: ["Url"] rebuilt : [] -tasks/coverage/typescript/tests/cases/compiler/declarationEmitTupleRestSignatureLeadingVariadic.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["TFirstArgs", "TLastArg", "args"] -rebuilt : ScopeId(1): ["args"] - tasks/coverage/typescript/tests/cases/compiler/declarationEmitTypeAliasWithTypeParameters1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Bar", "Foo", "y"] -rebuilt : ScopeId(0): ["y"] -Scope children mismatch: +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/declarationEmitTypeAliasWithTypeParameters2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Baa", "Bar", "Baz", "y"] -rebuilt : ScopeId(0): ["y"] -Scope children mismatch: +semantic error: 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/declarationEmitTypeAliasWithTypeParameters3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo", "bar"] -rebuilt : ScopeId(0): ["bar"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/declarationEmitTypeAliasWithTypeParameters4.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo", "SubFoo", "foo"] -rebuilt : ScopeId(0): ["foo"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/declarationEmitTypeAliasWithTypeParameters5.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo", "SubFoo", "foo"] -rebuilt : ScopeId(0): ["foo"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/declarationEmitTypeAliasWithTypeParameters6.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo", "SubFoo", "foo"] -rebuilt : ScopeId(0): ["foo"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1)] -tasks/coverage/typescript/tests/cases/compiler/declarationEmitTypeParamMergedWithPrivate.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] - tasks/coverage/typescript/tests/cases/compiler/declarationEmitTypeParameterNameInOuterScope.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B", "a", "a2", "a3", "a4", "b", "b2"] -rebuilt : ScopeId(0): ["A", "a", "a2", "a3", "a4", "b", "b2"] -Scope children 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)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] -Bindings mismatch: -after transform: ScopeId(2): ["A", "x"] -rebuilt : ScopeId(2): ["x"] -Bindings mismatch: -after transform: ScopeId(3): ["A", "x"] -rebuilt : ScopeId(3): ["x"] -Bindings mismatch: -after transform: ScopeId(4): ["A", "x"] -rebuilt : ScopeId(4): ["x"] -Bindings mismatch: -after transform: ScopeId(5): ["A", "x"] -rebuilt : ScopeId(5): ["x"] -Bindings mismatch: -after transform: ScopeId(7): ["B", "x"] -rebuilt : ScopeId(6): ["x"] -Bindings mismatch: -after transform: ScopeId(8): ["B", "x"] -rebuilt : ScopeId(7): ["x"] tasks/coverage/typescript/tests/cases/compiler/declarationEmitTypeParameterNameReusedInOverloads.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Base", "Derived", "Derived2", "Foo"] -rebuilt : ScopeId(0): ["Base", "Derived", "Derived2"] -Scope children 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)] Symbol reference IDs mismatch for "Base": @@ -9462,13 +8178,7 @@ after transform: SymbolId(2): [ReferenceId(8)] rebuilt : SymbolId(2): [] tasks/coverage/typescript/tests/cases/compiler/declarationEmitTypeParameterNameShadowedInternally.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "inner", "x"] -rebuilt : ScopeId(1): ["inner", "x"] -Bindings mismatch: -after transform: ScopeId(2): ["T", "y"] -rebuilt : ScopeId(2): ["y"] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["const"] rebuilt : [] @@ -9501,10 +8211,7 @@ after transform: [] rebuilt : ["require"] tasks/coverage/typescript/tests/cases/compiler/declarationEmitUsingAlternativeContainingModules1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["IEntry", "baseUrl", "entryKeys", "testApi", "useEntries", "useQuery"] -rebuilt : ScopeId(0): ["baseUrl", "entryKeys", "testApi", "useEntries", "useQuery"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6), ScopeId(7)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(6)] Unresolved references mismatch: @@ -9512,10 +8219,7 @@ after transform: ["Promise", "console", "const", "fetch"] rebuilt : ["console", "fetch"] tasks/coverage/typescript/tests/cases/compiler/declarationEmitUsingAlternativeContainingModules2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["IEntry", "baseUrl", "entryKeys", "testApi", "useEntries", "useQuery"] -rebuilt : ScopeId(0): ["baseUrl", "entryKeys", "testApi", "useEntries", "useQuery"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6), ScopeId(7)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(6)] Unresolved references mismatch: @@ -9528,10 +8232,7 @@ after transform: ScopeId(0): ["bar", "goodDeclaration", "shouldBeElided", "shoul rebuilt : ScopeId(0): ["bar", "goodDeclaration"] tasks/coverage/typescript/tests/cases/compiler/declarationEmitWithComposite.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Reference symbol mismatch for "Foo": @@ -9546,7 +8247,7 @@ rebuilt : ["Foo"] tasks/coverage/typescript/tests/cases/compiler/declarationEmitWithDefaultAsComputedName.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Experiment", "Name", "createExperiment"] +after transform: ScopeId(0): ["createExperiment"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] @@ -9560,7 +8261,7 @@ rebuilt : ["createExperiment"] tasks/coverage/typescript/tests/cases/compiler/declarationEmitWithDefaultAsComputedName2.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Experiment", "Name", "createExperiment"] +after transform: ScopeId(0): ["createExperiment"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] @@ -9573,15 +8274,9 @@ after transform: [] rebuilt : ["createExperiment"] tasks/coverage/typescript/tests/cases/compiler/declarationEmitWithInvalidPackageJsonTypings.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["MutableRefObject", "useCsvParser", "useRef"] -rebuilt : ScopeId(0): ["useCsvParser", "useRef"] -Scope children 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(2): ["T", "current"] -rebuilt : ScopeId(1): ["current"] tasks/coverage/typescript/tests/cases/compiler/declarationFilesGeneratingTypeReferences.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 @@ -9624,7 +8319,7 @@ rebuilt : ScopeId(1): ScopeFlags(Function) tasks/coverage/typescript/tests/cases/compiler/declarationImportTypeAliasInferredAndEmittable.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Conn", "Wrap", "x"] +after transform: ScopeId(0): ["Wrap", "x"] rebuilt : ScopeId(0): ["Wrap"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -9654,10 +8349,7 @@ after transform: ["m2", "module"] rebuilt : ["module"] tasks/coverage/typescript/tests/cases/compiler/declarationMerging1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -9669,11 +8361,6 @@ Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] -tasks/coverage/typescript/tests/cases/compiler/declarationNoDanglingGenerics.ts -semantic error: Bindings mismatch: -after transform: ScopeId(3): ["TKind", "kind"] -rebuilt : ScopeId(3): ["kind"] - tasks/coverage/typescript/tests/cases/compiler/declarationQuotedMembers.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["example", "mapped"] @@ -9689,10 +8376,7 @@ after transform: [] rebuilt : ["mapped"] tasks/coverage/typescript/tests/cases/compiler/declarationsForFileShadowingGlobalNoError.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["DOMNode"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -9700,10 +8384,7 @@ after transform: ["Node"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/declarationsForIndirectTypeAliasReference.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Hash", "StringHash", "StringHash2"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [] @@ -9713,27 +8394,9 @@ after transform: ["Foo"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/declarationsWithRecursiveInternalTypesProduceUniqueTypeParams.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Key", "Value", "_objectSpread", "p1", "p2", "p3", "testRecFun", "updateIfChanged"] -rebuilt : ScopeId(0): ["_objectSpread", "p1", "p2", "p3", "testRecFun", "updateIfChanged"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(10)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(8)] -Bindings mismatch: -after transform: ScopeId(3): ["T", "reduce", "t"] -rebuilt : ScopeId(1): ["reduce", "t"] -Bindings mismatch: -after transform: ScopeId(4): ["U", "set", "u", "update"] -rebuilt : ScopeId(2): ["set", "u", "update"] -Bindings mismatch: -after transform: ScopeId(6): ["K", "key"] -rebuilt : ScopeId(4): ["key"] -Bindings mismatch: -after transform: ScopeId(10): ["T", "parent"] -rebuilt : ScopeId(8): ["parent"] -Bindings mismatch: -after transform: ScopeId(11): ["U", "child"] -rebuilt : ScopeId(9): ["child"] Unresolved reference IDs mismatch for "Object": after transform: [ReferenceId(10), ReferenceId(16), ReferenceId(34), ReferenceId(51), ReferenceId(54)] rebuilt : [ReferenceId(0), ReferenceId(6), ReferenceId(11)] @@ -9804,10 +8467,7 @@ after transform: ["m2", "module"] rebuilt : ["module"] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [] @@ -9831,9 +8491,6 @@ tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataConditionalType. 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): [] @@ -9975,15 +8632,9 @@ after transform: ScopeId(0): ["Bar", "Yoha", "foo"] rebuilt : ScopeId(0): ["Bar", "foo"] 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: +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(4): ["T"] -rebuilt : ScopeId(2): [] tasks/coverage/typescript/tests/cases/compiler/decoratorWithUnderscoreMethod.ts semantic error: Bindings mismatch: @@ -10000,35 +8651,20 @@ after transform: ["Function", "PropertyDescriptor"] rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/deeplyNestedConditionalTypes.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo", "T0", "T1"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(102), ScopeId(103)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/deeplyNestedConstraints.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["BufferPool", "Enum", "TypeMap"] -rebuilt : ScopeId(0): ["BufferPool"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1)] -Bindings mismatch: -after transform: ScopeId(4): ["E", "M"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(5): ["K", "_", "array"] -rebuilt : ScopeId(2): ["_", "array"] Unresolved references mismatch: after transform: ["ArrayLike", "Extract", "Record"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/deeplyNestedTemplateLiteralIntersection.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Props", "R", "S", "T", "X", "_S", "_objectSpread", "a1", "a2", "b"] -rebuilt : ScopeId(0): ["_objectSpread", "a1", "a2", "b"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -10041,15 +8677,9 @@ after transform: SymbolId(1): [ReferenceId(0)] rebuilt : SymbolId(1): [] tasks/coverage/typescript/tests/cases/compiler/defaultDeclarationEmitNamedCorrectly.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["MyComponent", "Props", "Things", "make"] -rebuilt : ScopeId(0): ["MyComponent", "make"] -Scope children mismatch: +semantic error: 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(2): ["CTor", "P", "x"] -rebuilt : ScopeId(1): ["x"] Scope children mismatch: after transform: ScopeId(2): [ScopeId(3)] rebuilt : ScopeId(1): [] @@ -10060,15 +8690,12 @@ Missing SymbolId: "_Something" Missing ReferenceId: "_Something" Missing ReferenceId: "Something" Missing ReferenceId: "Something" -Bindings mismatch: -after transform: ScopeId(0): ["MyComponent", "Props", "Something", "Things", "make", "me"] -rebuilt : ScopeId(0): ["MyComponent", "Something", "make", "me"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(4), SymbolId(9), SymbolId(10)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(3), SymbolId(4)] 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)] -Bindings mismatch: -after transform: ScopeId(2): ["CTor", "P", "x"] -rebuilt : ScopeId(1): ["x"] Scope children mismatch: after transform: ScopeId(2): [ScopeId(3)] rebuilt : ScopeId(1): [] @@ -10077,7 +8704,10 @@ after transform: ScopeId(6): [SymbolId(11), SymbolId(12), SymbolId(13)] rebuilt : ScopeId(3): [SymbolId(5), SymbolId(6), SymbolId(7)] tasks/coverage/typescript/tests/cases/compiler/defaultNamedExportWithType1.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): [] +rebuilt : ScopeId(0): ["Foo"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Symbol flags mismatch for "Foo": @@ -10091,7 +8721,10 @@ after transform: SymbolId(0): [Span { start: 32, end: 35 }] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/defaultNamedExportWithType2.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): [] +rebuilt : ScopeId(0): ["Foo"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Symbol flags mismatch for "Foo": @@ -10105,7 +8738,10 @@ after transform: SymbolId(0): [Span { start: 25, end: 28 }] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/defaultNamedExportWithType3.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): [] +rebuilt : ScopeId(0): ["Foo"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Symbol flags mismatch for "Foo": @@ -10119,7 +8755,10 @@ after transform: SymbolId(0): [Span { start: 30, end: 33 }] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/defaultNamedExportWithType4.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): [] +rebuilt : ScopeId(0): ["Foo"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Symbol flags mismatch for "Foo": @@ -10134,7 +8773,7 @@ rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/defaultParameterAddsUndefinedWithStrictNullChecks.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["OptionalNullableString", "allowsNull", "cond", "f", "foo1", "foo2", "foo3", "foo4", "g", "removeNothing", "removeUndefinedButNotFalse", "total"] +after transform: ScopeId(0): ["allowsNull", "cond", "f", "foo1", "foo2", "foo3", "foo4", "g", "removeNothing", "removeUndefinedButNotFalse", "total"] rebuilt : ScopeId(0): ["allowsNull", "f", "foo1", "foo2", "foo3", "foo4", "g", "removeNothing", "removeUndefinedButNotFalse", "total"] 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)] @@ -10147,10 +8786,7 @@ after transform: ["undefined"] rebuilt : ["cond", "undefined"] 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: +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(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): [] Unresolved references mismatch: @@ -10158,10 +8794,7 @@ after transform: ["true"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(7), ScopeId(10), ScopeId(13), ScopeId(14)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -10169,24 +8802,15 @@ after transform: ["true"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/deferredLookupTypeResolution.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["First", "ObjectHasKey", "StringContains", "T1", "T2", "f2", "f3"] -rebuilt : ScopeId(0): ["f2", "f3"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(10)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] -Bindings mismatch: -after transform: ScopeId(9): ["A", "a"] -rebuilt : ScopeId(1): ["a"] Unresolved references mismatch: after transform: ["Extract", "f1"] rebuilt : ["f1"] tasks/coverage/typescript/tests/cases/compiler/deferredLookupTypeResolution2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B", "C", "D", "DeepError", "DeepOK", "E", "Juxtapose", "ObjectHasKey", "StringContains"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -10194,30 +8818,21 @@ after transform: ["Extract"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/deferredTypeReferenceWithinArrayWithinTuple.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["TypeStructure"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +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"] -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"] +after transform: ScopeId(0): ["a", "b", "f"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] @@ -10270,7 +8885,7 @@ rebuilt : ["a", "b", "f"] tasks/coverage/typescript/tests/cases/compiler/deleteExpressionMustBeOptional_exactOptionalPropertyTypes.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["AA", "BB", "Foo", "a", "b", "f", "g"] +after transform: ScopeId(0): ["a", "b", "f", "g"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] @@ -10372,9 +8987,6 @@ tasks/coverage/typescript/tests/cases/compiler/dependentReturnType8.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["array", "getObject", "record"] rebuilt : ScopeId(0): ["getObject"] -Bindings mismatch: -after transform: ScopeId(1): ["T", "group"] -rebuilt : ScopeId(1): ["group"] Scope children mismatch: after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] rebuilt : ScopeId(1): [] @@ -10389,10 +9001,7 @@ after transform: ["Record", "undefined"] rebuilt : ["array", "record", "undefined"] tasks/coverage/typescript/tests/cases/compiler/destructureOfVariableSameAsShorthand.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["AxiosResponse", "_asyncToGenerator", "_main", "main"] -rebuilt : ScopeId(0): ["_asyncToGenerator", "_main", "main"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6), ScopeId(7)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Unresolved references mismatch: @@ -10400,10 +9009,7 @@ after transform: ["Promise", "arguments", "get", "require"] rebuilt : ["arguments", "get", "require"] tasks/coverage/typescript/tests/cases/compiler/destructureOptionalParameter.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["QueryMetadata", "QueryMetadataFactory", "Type", "f2"] -rebuilt : ScopeId(0): ["f2"] -Scope children 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)] Unresolved references mismatch: @@ -10411,73 +9017,46 @@ after transform: ["ParameterDecorator"] rebuilt : [] 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: +semantic error: 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", "_excluded", "_excluded2", "_objectSpread", "_objectWithoutProperties"] -rebuilt : ScopeId(0): ["Child", "Parent", "_excluded", "_excluded2", "_objectSpread", "_objectWithoutProperties"] -Scope children mismatch: +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)] 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: +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/destructuringWithConstraint.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Props", "foo"] -rebuilt : ScopeId(0): ["foo"] -Scope children 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): ["P", "foo", "props"] -rebuilt : ScopeId(1): ["foo", "props"] Unresolved references mismatch: after transform: ["Readonly"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/destructuringWithGenericParameter.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(2): ["T", "callback", "object"] -rebuilt : ScopeId(2): ["callback", "object"] -Symbol reference IDs mismatch for "GenericClass": +semantic error: Symbol reference IDs mismatch for "GenericClass": after transform: SymbolId(0): [ReferenceId(1), ReferenceId(2)] rebuilt : SymbolId(0): [ReferenceId(0)] tasks/coverage/typescript/tests/cases/compiler/discriminableUnionWithIntersectedMembers.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["X", "Y", "x", "y"] -rebuilt : ScopeId(0): ["x", "y"] -Scope children mismatch: +semantic error: 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: +semantic error: 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"] +after transform: ScopeId(0): ["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)] @@ -10496,10 +9075,7 @@ after transform: ["Object", "PropertyKey", "Record", "is", "isPlainObject2", "pa rebuilt : ["Object", "is", "isPlainObject2", "kPresentationInheritanceParents", "myObj2", "parentElementOrShadowHost"] 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: +semantic error: 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: @@ -10531,10 +9107,7 @@ after transform: ["Partial", "Record", "console", "isType", "never", "true", "un rebuilt : ["console", "isType", "never", "undefined"] 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: +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)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Unresolved references mismatch: @@ -10542,16 +9115,13 @@ after transform: ["f", "parseInt", "true", "undefined"] rebuilt : ["f", "parseInt", "undefined"] tasks/coverage/typescript/tests/cases/compiler/discriminantUsingEvaluatableTemplateExpression.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["N", "S"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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"] +after transform: ScopeId(0): ["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)] @@ -10576,10 +9146,7 @@ after transform: ["Error", "undefined"] rebuilt : ["Error", "c", "undefined"] 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: +semantic error: 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: @@ -10596,24 +9163,18 @@ after transform: SymbolId(10): [ReferenceId(26), ReferenceId(28), ReferenceId(36 rebuilt : SymbolId(8): [ReferenceId(17)] 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: +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(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: +semantic error: 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"] +after transform: ScopeId(0): ["weirdoBox", "weirdoBox2"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(6), ScopeId(7), ScopeId(14)] @@ -10636,7 +9197,7 @@ rebuilt : ["weirdoBox", "weirdoBox2"] tasks/coverage/typescript/tests/cases/compiler/discriminateWithOptionalProperty1.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Box", "box"] +after transform: ScopeId(0): ["box"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -10652,15 +9213,9 @@ after transform: ["true"] rebuilt : ["box"] tasks/coverage/typescript/tests/cases/compiler/discriminateWithOptionalProperty2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["PromiseOrValue", "_asyncToGenerator", "doubles", "items", "iterable", "mapAsyncIterable"] -rebuilt : ScopeId(0): ["_asyncToGenerator", "doubles", "items", "iterable", "mapAsyncIterable"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(18), ScopeId(19), ScopeId(20)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(23), ScopeId(24), ScopeId(25)] -Bindings mismatch: -after transform: ScopeId(2): ["R", "T", "U", "_mapResult", "callback", "iterable", "iterator", "mapResult"] -rebuilt : ScopeId(1): ["_mapResult", "callback", "iterable", "iterator", "mapResult"] Unresolved references mismatch: after transform: ["AsyncGenerator", "AsyncIterable", "IteratorResult", "Promise", "Symbol", "arguments", "require", "undefined"] rebuilt : ["Promise", "Symbol", "arguments", "require", "undefined"] @@ -10669,10 +9224,7 @@ after transform: [ReferenceId(0), ReferenceId(20), ReferenceId(34), ReferenceId( rebuilt : [ReferenceId(39)] tasks/coverage/typescript/tests/cases/compiler/discriminateWithOptionalProperty3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["CoercedVariableValues", "ExecutionArgs", "ExecutionContext", "Maybe", "buildExecutionContext"] -rebuilt : ScopeId(0): ["buildExecutionContext"] -Scope children 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)] Unresolved references mismatch: @@ -10680,16 +9232,10 @@ after transform: ["Error", "GraphQLError", "ReadonlyArray", "getVariableValues"] rebuilt : ["getVariableValues"] tasks/coverage/typescript/tests/cases/compiler/discriminatedUnionJsxElement.tsx -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["IData", "IListItemData", "ListItem", "ListItemVariant", "Menu", "_jsxFileName", "_reactJsxRuntime"] -rebuilt : ScopeId(0): ["ListItem", "ListItemVariant", "Menu", "_jsxFileName", "_reactJsxRuntime"] -Scope children 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(2): ["MenuItemVariant", "_data$menuItemsVarian", "data", "listItemVariant"] -rebuilt : ScopeId(1): ["_data$menuItemsVarian", "data", "listItemVariant"] -Bindings mismatch: after transform: ScopeId(4): ["Avatar", "ListItemVariant", "OneLine"] rebuilt : ScopeId(2): ["ListItemVariant"] Scope flags mismatch: @@ -10703,10 +9249,7 @@ after transform: SymbolId(7): [ReferenceId(0), ReferenceId(1), ReferenceId(3), R rebuilt : SymbolId(6): [ReferenceId(5), ReferenceId(15)] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -10715,7 +9258,7 @@ rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/discriminatingUnionWithUnionPropertyAgainstUndefinedWithoutStrictNullChecks.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "A2", "B", "B2", "X", "Y", "opts", "testMethod"] +after transform: ScopeId(0): ["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)] @@ -10731,10 +9274,7 @@ after transform: [] rebuilt : ["opts"] tasks/coverage/typescript/tests/cases/compiler/distributiveConditionalTypeNeverIntersection1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Conflicted", "Ex1", "Ex2", "Ex3", "IsNumber"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -10742,24 +9282,15 @@ after transform: ["true"] rebuilt : [] 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: +semantic error: 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: +semantic error: 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)] @@ -10807,27 +9338,10 @@ Unresolved references mismatch: after transform: [] rebuilt : ["u1"] -tasks/coverage/typescript/tests/cases/compiler/divergentAccessorsTypes7.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["S"] -rebuilt : ScopeId(1): [] - 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: +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), 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"] -Bindings mismatch: -after transform: ScopeId(17): ["U"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(19): ["Q", "filter", "middleware"] -rebuilt : ScopeId(5): ["filter", "middleware"] Symbol reference IDs mismatch for "EventHub": after transform: SymbolId(30): [ReferenceId(80), ReferenceId(92), ReferenceId(99)] rebuilt : SymbolId(3): [ReferenceId(8)] @@ -10858,7 +9372,7 @@ rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/doNotInferUnrelatedTypes.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["LiteralType", "alt", "foo"] +after transform: ScopeId(0): ["alt", "foo"] rebuilt : ScopeId(0): ["foo"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -10871,10 +9385,7 @@ after transform: ["Array", "ReadonlyArray", "dearray"] rebuilt : ["alt", "dearray"] tasks/coverage/typescript/tests/cases/compiler/doNotWidenAtObjectLiteralPropertyAssignment.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["IIntervalTreeNode", "ITestEventInterval", "test"] -rebuilt : ScopeId(0): ["test"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] @@ -10925,10 +9436,7 @@ after transform: SymbolId(0) "A" rebuilt : SymbolId(0) "A" 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: +semantic error: 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)] Symbol reference IDs mismatch for "Base": @@ -10936,18 +9444,9 @@ after transform: SymbolId(2): [ReferenceId(5)] rebuilt : SymbolId(0): [] 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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(6): ["Base", "C"] -rebuilt : ScopeId(3): ["Base"] Symbol reference IDs mismatch for "Mixin1": after transform: SymbolId(1): [ReferenceId(3), ReferenceId(10)] rebuilt : SymbolId(0): [ReferenceId(3)] @@ -11007,10 +9506,7 @@ after transform: SymbolId(7): [] rebuilt : SymbolId(6): [ReferenceId(15)] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -11132,18 +9628,12 @@ after transform: ScopeId(12): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(12): ScopeFlags(Function) tasks/coverage/typescript/tests/cases/compiler/duplicateConstructSignature.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -11153,10 +9643,7 @@ 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: +semantic error: Scope children mismatch: after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(1): [ScopeId(2)] @@ -11167,9 +9654,9 @@ Missing ReferenceId: "_Shapes" Missing ReferenceId: "Point" Missing ReferenceId: "Shapes" Missing ReferenceId: "Shapes" -Bindings mismatch: -after transform: ScopeId(0): ["IPoint", "Shapes"] -rebuilt : ScopeId(0): ["Shapes"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(1)] +rebuilt : ScopeId(0): [SymbolId(0)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -11181,10 +9668,7 @@ after transform: SymbolId(2): [] rebuilt : SymbolId(2): [ReferenceId(1)] tasks/coverage/typescript/tests/cases/compiler/duplicateOverloadInTypeAugmentation1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Array", "a", "r5"] -rebuilt : ScopeId(0): ["a", "r5"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -11234,10 +9718,7 @@ after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) tasks/coverage/typescript/tests/cases/compiler/dynamicNames.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T0", "T3", "c0", "c1", "s0"] -rebuilt : ScopeId(0): ["c0", "c1", "s0"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [] Symbol reference IDs mismatch for "c0": @@ -11275,15 +9756,9 @@ after transform: [] rebuilt : ["require"] tasks/coverage/typescript/tests/cases/compiler/emitClassExpressionInDeclarationFile.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Constructor", "FooItem", "Test", "WithTags", "circularReference", "simpleExample", "test"] -rebuilt : ScopeId(0): ["FooItem", "Test", "WithTags", "circularReference", "simpleExample", "test"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(14)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(9), ScopeId(13)] -Bindings mismatch: -after transform: ScopeId(10): ["Base", "T"] -rebuilt : ScopeId(9): ["Base"] Symbol reference IDs mismatch for "C": after transform: SymbolId(2): [ReferenceId(0), ReferenceId(1), ReferenceId(3), ReferenceId(4)] rebuilt : SymbolId(2): [] @@ -11376,7 +9851,7 @@ rebuilt : SymbolId(4) "Model" tasks/coverage/typescript/tests/cases/compiler/emitTopOfFileTripleSlashCommentOnNotEmittedNodeIfRemoveCommentsIsFalse.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["F", "OData"] +after transform: ScopeId(0): ["OData"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] @@ -11386,12 +9861,6 @@ tasks/coverage/typescript/tests/cases/compiler/emptyAnonymousObjectNarrowing.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["f1", "f2", "foo", "nonNull", "obj", "union"] rebuilt : ScopeId(0): ["f1", "f2", "foo"] -Bindings mismatch: -after transform: ScopeId(5): ["T", "x"] -rebuilt : ScopeId(5): ["x"] -Bindings mismatch: -after transform: ScopeId(8): ["T", "x"] -rebuilt : ScopeId(8): ["x"] Reference symbol mismatch for "nonNull": after transform: SymbolId(0) "nonNull" rebuilt : @@ -11502,16 +9971,13 @@ after transform: SymbolId(0): SymbolFlags(RegularEnum) rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) 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: +semantic error: 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"] +after transform: ScopeId(0): ["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)] @@ -11593,10 +10059,7 @@ after transform: SymbolId(0): SymbolFlags(RegularEnum) rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) 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: +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)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] Bindings mismatch: @@ -11611,12 +10074,6 @@ rebuilt : ScopeId(2): ["B"] Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(0x0) rebuilt : ScopeId(2): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(5): ["T"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(6): ["T", "arg"] -rebuilt : ScopeId(4): ["arg"] Symbol flags mismatch for "A": after transform: SymbolId(0): SymbolFlags(RegularEnum) rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) @@ -11828,7 +10285,7 @@ rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/errorConstructorSubtypes.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["ErrorConstructor", "x"] +after transform: ScopeId(0): ["x"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] @@ -13660,10 +12117,7 @@ after transform: SymbolId(0): [Span { start: 82, end: 83 }] rebuilt : SymbolId(0): [] 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: +semantic error: 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: @@ -13845,18 +12299,12 @@ after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] tasks/coverage/typescript/tests/cases/compiler/es6ImportNamedImportWithTypesAndValues.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C", "C2", "I", "I2"] -rebuilt : ScopeId(0): ["C", "C2"] -Scope children 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)] tasks/coverage/typescript/tests/cases/compiler/es6ImportWithoutFromClauseNonInstantiatedModule.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["i"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -14258,10 +12706,7 @@ after transform: ["DecoratorContext"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/esNextWeakRefs_IterableWeakMap.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["K", "V"] -rebuilt : ScopeId(2): [] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["FinalizationRegistry", "Generator", "Iterable", "Object", "Set", "Symbol", "WeakMap", "WeakRef", "undefined"] rebuilt : ["FinalizationRegistry", "Object", "Set", "Symbol", "WeakMap", "WeakRef", "undefined"] Unresolved reference IDs mismatch for "WeakRef": @@ -14282,26 +12727,15 @@ 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 tasks/coverage/typescript/tests/cases/compiler/eventEmitterPatternWithRecordOfFunction.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "Args", "B", "EventMap"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6)] rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Function", "Record"] rebuilt : [] -tasks/coverage/typescript/tests/cases/compiler/evolvingArrayTypeInAssert.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "_value"] -rebuilt : ScopeId(1): ["_value"] - tasks/coverage/typescript/tests/cases/compiler/excessPropertyCheckWithNestedArrayIntersection.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["BugRepro", "ValueAndKeyFields", "ValueOnlyFields", "repro"] -rebuilt : ScopeId(0): ["repro"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -14309,15 +12743,9 @@ after transform: ["Array"] rebuilt : [] 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: +semantic error: 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"] tasks/coverage/typescript/tests/cases/compiler/exhaustiveSwitchWithWideningLiteralTypes.ts semantic error: Symbol reference IDs mismatch for "A": @@ -14328,10 +12756,7 @@ after transform: SymbolId(1): [ReferenceId(1)] rebuilt : SymbolId(1): [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: @@ -14339,10 +12764,7 @@ after transform: ["Partial"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Symbol reference IDs mismatch for "mySymbol": @@ -14364,18 +12786,12 @@ after transform: SymbolId(0): [Span { start: 44, end: 47 }] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/expandoFunctionNullishProperty.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["TestNull", "TestNull2", "TestUndefined", "testNull", "testNull2", "testUndefined"] -rebuilt : ScopeId(0): ["testNull", "testNull2", "testUndefined"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(8)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] tasks/coverage/typescript/tests/cases/compiler/expandoFunctionSymbolProperty.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["TestSymb", "symb", "test"] -rebuilt : ScopeId(0): ["symb", "test"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch for "symb": @@ -14383,10 +12799,7 @@ after transform: SymbolId(0): [ReferenceId(1), ReferenceId(4)] rebuilt : SymbolId(0): [ReferenceId(2)] tasks/coverage/typescript/tests/cases/compiler/expandoFunctionSymbolPropertyJs.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["TestSymb", "symb"] -rebuilt : ScopeId(0): ["symb"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Symbol reference IDs mismatch for "symb": @@ -14409,7 +12822,7 @@ rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportAssignValueAndType.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["http", "server", "x"] +after transform: ScopeId(0): ["http", "x"] rebuilt : ScopeId(0): ["server", "x"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] @@ -14431,10 +12844,7 @@ after transform: [ReferenceId(1), ReferenceId(2)] rebuilt : [ReferenceId(0)] tasks/coverage/typescript/tests/cases/compiler/exportAssignedTypeAsTypeAnnotation.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["x"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Reference symbol mismatch for "x": @@ -14488,10 +12898,7 @@ after transform: [] rebuilt : ["require"] tasks/coverage/typescript/tests/cases/compiler/exportAssignmentInterface.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Reference symbol mismatch for "A": @@ -14519,9 +12926,20 @@ after transform: ["T"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/exportAssignmentOfGenericType1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["X"] -rebuilt : ScopeId(1): [] +semantic error: Missing SymbolId: "q" +Missing ReferenceId: "require" +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3)] +Symbol reference IDs mismatch for "M": +after transform: SymbolId(1): [ReferenceId(1)] +rebuilt : SymbolId(1): [] +Reference symbol mismatch for "q": +after transform: SymbolId(0) "q" +rebuilt : SymbolId(0) "q" +Unresolved references mismatch: +after transform: [] +rebuilt : ["require"] tasks/coverage/typescript/tests/cases/compiler/exportAssignmentVariable.ts semantic error: Missing SymbolId: "y" @@ -14540,23 +12958,14 @@ tasks/coverage/typescript/tests/cases/compiler/exportAssignmentWithImportStateme 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/exportAssignmentWithPrivacyError.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["connectexport", "connectmodule", "server"] -rebuilt : ScopeId(0): ["server"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportClassExtendingIntersection.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Constructor", "MyBaseClass"] -rebuilt : ScopeId(0): ["MyBaseClass"] -Scope children 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"] -rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/compiler/exportDeclarationForModuleOrEnumWithMemberOfSameName.ts semantic error: Missing SymbolId: "A" @@ -14605,32 +13014,23 @@ 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: +semantic error: 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: +semantic error: 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: +semantic error: 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"] +after transform: ScopeId(0): ["x"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -14704,7 +13104,10 @@ after transform: [] rebuilt : ["require"] tasks/coverage/typescript/tests/cases/compiler/exportEqualNamespaces.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): ["x"] +rebuilt : ScopeId(0): ["server", "x"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] rebuilt : ScopeId(0): [] Symbol flags mismatch for "server": @@ -14845,9 +13248,9 @@ rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(2): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(3): ["DialogResult", "DialogResultCallback", "MessageBoxButtons", "_Dialogs", "someExportedFunction"] -rebuilt : ScopeId(3): ["DialogResult", "MessageBoxButtons", "_Dialogs", "someExportedFunction"] +Binding symbols mismatch: +after transform: ScopeId(3): [SymbolId(3), SymbolId(12), SymbolId(13), SymbolId(29)] +rebuilt : ScopeId(3): [SymbolId(5), SymbolId(6), SymbolId(8), SymbolId(9)] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(3): ScopeFlags(Function) @@ -14931,10 +13334,7 @@ after transform: ["A", "B"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/exportImportNonInstantiatedModule2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Widget1"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Reference symbol mismatch for "Widget1": @@ -14965,7 +13365,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/compiler/exportRedeclarationTypeAliases.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): [] +rebuilt : ScopeId(0): ["Foo"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol flags mismatch for "Foo": @@ -14990,98 +13393,62 @@ after transform: ["X", "Y"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/exportStarForValues.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] @@ -15091,10 +13458,7 @@ after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1)] rebuilt : SymbolId(0): [ReferenceId(0)] tasks/coverage/typescript/tests/cases/compiler/exportedInterfaceInaccessibleInCallbackInModule.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["ProgressCallback"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -15188,10 +13552,7 @@ after transform: SymbolId(1): [ReferenceId(3), ReferenceId(4)] rebuilt : SymbolId(1): [ReferenceId(1)] tasks/coverage/typescript/tests/cases/compiler/extendConstructSignatureInInterface.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C", "CStatic", "E", "e"] -rebuilt : ScopeId(0): ["CStatic", "E", "e"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch for "E": @@ -15199,10 +13560,7 @@ after transform: SymbolId(2): [ReferenceId(3), ReferenceId(4)] rebuilt : SymbolId(1): [ReferenceId(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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] rebuilt : ScopeId(0): [] @@ -15268,10 +13626,7 @@ after transform: [] rebuilt : ["require"] tasks/coverage/typescript/tests/cases/compiler/externalModuleQualification.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["A", "B", "C"] -rebuilt : ScopeId(1): [] -Symbol reference IDs mismatch for "DiffEditor": +semantic error: Symbol reference IDs mismatch for "DiffEditor": after transform: SymbolId(1): [ReferenceId(2)] rebuilt : SymbolId(1): [] Symbol reference IDs mismatch for "NavigateAction": @@ -15331,9 +13686,9 @@ rebuilt : ScopeId(1): ["Foo"] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) -Bindings mismatch: -after transform: ScopeId(2): ["A", "B", "_X", "f"] -rebuilt : ScopeId(2): ["_X", "f"] +Binding symbols mismatch: +after transform: ScopeId(2): [SymbolId(6), SymbolId(8)] +rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] Scope children mismatch: after transform: ScopeId(2): [ScopeId(3), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(2): [ScopeId(3)] @@ -15371,9 +13726,9 @@ rebuilt : ScopeId(1): ["Foo"] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) -Bindings mismatch: -after transform: ScopeId(2): ["A", "B", "_X", "f"] -rebuilt : ScopeId(2): ["_X", "f"] +Binding symbols mismatch: +after transform: ScopeId(2): [SymbolId(6), SymbolId(9)] +rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] Scope children mismatch: after transform: ScopeId(2): [ScopeId(3), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(2): [ScopeId(3)] @@ -15417,9 +13772,9 @@ Missing ReferenceId: "Consumer" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(5)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(5)] -Bindings mismatch: -after transform: ScopeId(1): ["EventEmitter", "ListenerCallback", "_Events"] -rebuilt : ScopeId(1): ["EventEmitter", "_Events"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(2), SymbolId(9)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -15441,11 +13796,8 @@ rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/fatArrowfunctionAsType.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T", "b", "c"] +after transform: ScopeId(0): ["b", "c"] rebuilt : ScopeId(0): ["c"] -Bindings mismatch: -after transform: ScopeId(1): ["T", "x"] -rebuilt : ScopeId(1): ["x"] Reference symbol mismatch for "b": after transform: SymbolId(0) "b" rebuilt : @@ -15464,18 +13816,12 @@ 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"] -rebuilt : ScopeId(1): [] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["Object"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/fixCrashAliasLookupForDefauledImport.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -15485,10 +13831,7 @@ after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), Sc 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: +semantic error: 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)] @@ -15498,10 +13841,7 @@ after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), Sc 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: +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: @@ -15523,10 +13863,7 @@ after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2)] rebuilt : SymbolId(0): [ReferenceId(1)] tasks/coverage/typescript/tests/cases/compiler/forAwaitForUnion.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "_didIteratorError", "_iterator", "_iteratorAbruptCompletion", "_iteratorError", "_step", "source"] -rebuilt : ScopeId(3): ["_didIteratorError", "_iterator", "_iteratorAbruptCompletion", "_iteratorError", "_step", "source"] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["AsyncIterable", "Iterable", "arguments", "require"] rebuilt : ["arguments", "require"] @@ -15545,11 +13882,6 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -tasks/coverage/typescript/tests/cases/compiler/forInStatement3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "a", "expr"] -rebuilt : ScopeId(1): ["a", "expr"] - tasks/coverage/typescript/tests/cases/compiler/forLoopEndingMultilineComments.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "consoleTestResultHandler"] @@ -15572,7 +13904,7 @@ rebuilt : ["a"] tasks/coverage/typescript/tests/cases/compiler/forOfStringConstituents.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "AB", "B", "C", "CD", "D", "x", "y"] +after transform: ScopeId(0): ["x", "y"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] @@ -15618,7 +13950,7 @@ rebuilt : ["a"] 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"] +after transform: ScopeId(0): ["Cls2", "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)] @@ -15719,15 +14051,15 @@ after transform: ["m1"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/functionDeclarationWithResolutionOfTypeNamedArguments01.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["arguments", "f"] -rebuilt : ScopeId(0): ["f"] -Scope children mismatch: +semantic error: 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: +semantic error: Bindings mismatch: +after transform: ScopeId(0): [] +rebuilt : ScopeId(0): ["f"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol flags mismatch for "f": @@ -15749,26 +14081,17 @@ after transform: ["Function", "undefined"] rebuilt : ["undefined"] 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: +semantic error: 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -15966,18 +14289,12 @@ 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: +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)] 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: +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)] @@ -16002,18 +14319,12 @@ 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -16024,15 +14335,6 @@ tasks/coverage/typescript/tests/cases/compiler/functionOverloadsRecursiveGeneric 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: -after transform: ScopeId(2): ["U"] -rebuilt : ScopeId(2): [] -Bindings mismatch: -after transform: ScopeId(5): ["T", "v_args"] -rebuilt : ScopeId(3): ["v_args"] Symbol reference IDs mismatch for "B": after transform: SymbolId(0): [ReferenceId(1)] rebuilt : SymbolId(0): [] @@ -16056,24 +14358,18 @@ Missing ReferenceId: "test" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0)] rebuilt : ScopeId(0): [SymbolId(0)] -Bindings mismatch: -after transform: ScopeId(1): ["Array", "_test", "map"] -rebuilt : ScopeId(1): ["_test", "map"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(3), SymbolId(6)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) Scope children mismatch: after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] rebuilt : ScopeId(1): [ScopeId(2)] -Bindings mismatch: -after transform: ScopeId(3): ["U", "ys"] -rebuilt : ScopeId(2): ["ys"] tasks/coverage/typescript/tests/cases/compiler/functionsWithImplicitReturnTypeAssignableToUndefined.ts -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: +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), ScopeId(8)] Unresolved references mismatch: @@ -16082,7 +14378,7 @@ rebuilt : ["Math"] tasks/coverage/typescript/tests/cases/compiler/funduleExportedClassIsUsedBeforeDeclaration.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B"] +after transform: ScopeId(0): ["B"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] @@ -16112,9 +14408,6 @@ Missing ReferenceId: "M" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(3)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(2)] -Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] Binding symbols mismatch: after transform: ScopeId(3): [SymbolId(4), SymbolId(6)] rebuilt : ScopeId(3): [SymbolId(3), SymbolId(4)] @@ -16132,34 +14425,18 @@ after transform: SymbolId(5): [ReferenceId(2), ReferenceId(3)] rebuilt : SymbolId(5): [ReferenceId(0)] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] -tasks/coverage/typescript/tests/cases/compiler/genericArray0.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["U", "ys"] -rebuilt : ScopeId(1): ["ys"] - -tasks/coverage/typescript/tests/cases/compiler/genericBaseClassLiteralProperty.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] - tasks/coverage/typescript/tests/cases/compiler/genericBaseClassLiteralProperty2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["TItem"] -rebuilt : ScopeId(2): [] -Symbol reference IDs mismatch for "CollectionItem2": +semantic error: Symbol reference IDs mismatch for "CollectionItem2": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(3), ReferenceId(4)] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/genericCallInferenceConditionalType1.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["FirstParameter", "T", "X", "f", "g", "h"] +after transform: ScopeId(0): ["f", "g", "h"] rebuilt : ScopeId(0): ["h"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] @@ -16179,14 +14456,11 @@ rebuilt : ["f", "g"] tasks/coverage/typescript/tests/cases/compiler/genericCallInferenceConditionalType2.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["ComponentProps", "FirstParameter", "RetrievedProps", "T", "WrappedComponent", "X", "f", "g", "h"] +after transform: ScopeId(0): ["WrappedComponent", "f", "g", "h"] rebuilt : ScopeId(0): ["WrappedComponent", "h"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8)] rebuilt : ScopeId(0): [ScopeId(1)] -Bindings mismatch: -after transform: ScopeId(4): ["T", "props"] -rebuilt : ScopeId(1): ["props"] Symbol reference IDs mismatch for "WrappedComponent": after transform: SymbolId(5): [ReferenceId(7)] rebuilt : SymbolId(0): [] @@ -16203,57 +14477,18 @@ Unresolved references mismatch: after transform: ["wrapComponent"] rebuilt : ["f", "g", "wrapComponent"] -tasks/coverage/typescript/tests/cases/compiler/genericCallInferenceWithGenericLocalFunction.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["I", "O", "tr"] -rebuilt : ScopeId(1): ["tr"] -Bindings mismatch: -after transform: ScopeId(2): ["P", "m", "p"] -rebuilt : ScopeId(2): ["m", "p"] -Bindings mismatch: -after transform: ScopeId(3): ["I", "from"] -rebuilt : ScopeId(3): ["from"] - -tasks/coverage/typescript/tests/cases/compiler/genericCallOnMemberReturningClosedOverObject.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T1", "x"] -rebuilt : ScopeId(1): ["x"] -Bindings mismatch: -after transform: ScopeId(2): ["T2", "t2"] -rebuilt : ScopeId(2): ["t2"] - tasks/coverage/typescript/tests/cases/compiler/genericCallWithFixedArguments.ts -semantic error: Bindings mismatch: -after transform: ScopeId(5): ["T", "U", "x"] -rebuilt : ScopeId(5): ["x"] -Symbol reference IDs mismatch for "A": +semantic error: Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(1)] rebuilt : SymbolId(0): [] Symbol reference IDs mismatch for "B": after transform: SymbolId(1): [ReferenceId(2)] rebuilt : SymbolId(1): [] -tasks/coverage/typescript/tests/cases/compiler/genericCallWithNonGenericArgs1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "x"] -rebuilt : ScopeId(1): ["x"] - tasks/coverage/typescript/tests/cases/compiler/genericCallWithinOwnBodyCastTypeParameterIdentity.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Thenable", "toThenable", "toThenableInferred"] -rebuilt : ScopeId(0): ["toThenable", "toThenableInferred"] -Scope children mismatch: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(5): ["V", "onFulfilled"] -rebuilt : ScopeId(3): ["onFulfilled"] -Bindings mismatch: -after transform: ScopeId(6): ["Input", "Result", "fn"] -rebuilt : ScopeId(4): ["fn"] tasks/coverage/typescript/tests/cases/compiler/genericCallbacksAndClassHierarchy.ts semantic error: Missing SymbolId: "M" @@ -16271,27 +14506,15 @@ Missing ReferenceId: "M" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0)] rebuilt : ScopeId(0): [SymbolId(0)] -Bindings mismatch: -after transform: ScopeId(1): ["A", "B", "C1", "D", "I", "_M"] -rebuilt : ScopeId(1): ["A", "B", "C1", "D", "_M"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(3), SymbolId(5), SymbolId(7), SymbolId(9), SymbolId(16)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) Scope children mismatch: after transform: ScopeId(1): [ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] -Bindings mismatch: -after transform: ScopeId(4): ["T"] -rebuilt : ScopeId(2): [] -Bindings mismatch: -after transform: ScopeId(5): ["T"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(6): ["T"] -rebuilt : ScopeId(4): [] -Bindings mismatch: -after transform: ScopeId(7): ["T"] -rebuilt : ScopeId(5): [] Symbol reference IDs mismatch for "C1": after transform: SymbolId(3): [ReferenceId(3)] rebuilt : SymbolId(2): [ReferenceId(1), ReferenceId(4)] @@ -16305,11 +14528,6 @@ Symbol reference IDs mismatch for "D": after transform: SymbolId(9): [] rebuilt : SymbolId(5): [ReferenceId(12)] -tasks/coverage/typescript/tests/cases/compiler/genericCapturingFunctionNarrowing.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["First", "Second", "SubFirst", "SubFirstMore", "hasAFoo", "thing"] -rebuilt : ScopeId(1): ["hasAFoo", "thing"] - tasks/coverage/typescript/tests/cases/compiler/genericClassImplementingGenericInterfaceFromAnotherModule.ts semantic error: Missing SymbolId: "bar" Missing SymbolId: "_bar" @@ -16329,9 +14547,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(4): ["T"] -rebuilt : ScopeId(2): [] Symbol reference IDs mismatch for "Foo": after transform: SymbolId(4): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -16383,7 +14598,7 @@ Missing ReferenceId: "_PortalFx" Missing ReferenceId: "PortalFx" Missing ReferenceId: "PortalFx" Bindings mismatch: -after transform: ScopeId(0): ["Contract", "KnockoutObservable", "KnockoutObservableArray", "KnockoutObservableArrayStatic", "KnockoutObservableBase", "Portal", "PortalFx", "ViewModel", "ko"] +after transform: ScopeId(0): ["Portal", "PortalFx", "ViewModel", "ko"] rebuilt : ScopeId(0): ["Portal", "PortalFx", "ViewModel"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(7), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(31), ScopeId(37), ScopeId(38)] @@ -16406,9 +14621,6 @@ rebuilt : ScopeId(3): [SymbolId(5), SymbolId(6)] Scope flags mismatch: after transform: ScopeId(26): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(3): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(27): ["TValue"] -rebuilt : ScopeId(4): [] Binding symbols mismatch: after transform: ScopeId(31): [SymbolId(18), SymbolId(31)] rebuilt : ScopeId(8): [SymbolId(10), SymbolId(11)] @@ -16433,12 +14645,6 @@ rebuilt : ScopeId(11): [SymbolId(16), SymbolId(17)] Scope flags mismatch: after transform: ScopeId(34): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(11): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(35): ["TValue"] -rebuilt : ScopeId(12): [] -Bindings mismatch: -after transform: ScopeId(38): ["TValue"] -rebuilt : ScopeId(14): [] Symbol reference IDs mismatch for "Validator": after transform: SymbolId(13): [] rebuilt : SymbolId(6): [ReferenceId(1)] @@ -16452,14 +14658,6 @@ Unresolved references mismatch: after transform: ["PortalFx", "ko"] rebuilt : ["ko"] -tasks/coverage/typescript/tests/cases/compiler/genericClassStaticMethod.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] - tasks/coverage/typescript/tests/cases/compiler/genericClassWithStaticFactory.ts semantic error: Missing SymbolId: "Editor" Missing SymbolId: "_Editor" @@ -16478,21 +14676,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(19)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] -Bindings mismatch: -after transform: ScopeId(21): ["T"] -rebuilt : ScopeId(21): [] -Bindings mismatch: -after transform: ScopeId(22): ["T", "entry"] -rebuilt : ScopeId(22): ["entry"] -Bindings mismatch: -after transform: ScopeId(23): ["T", "data", "entry"] -rebuilt : ScopeId(23): ["data", "entry"] -Bindings mismatch: -after transform: ScopeId(24): ["T", "entry"] -rebuilt : ScopeId(24): ["entry"] Symbol reference IDs mismatch for "List": after transform: SymbolId(1): [ReferenceId(0), ReferenceId(2), ReferenceId(10), ReferenceId(18), ReferenceId(28), ReferenceId(46), ReferenceId(48), ReferenceId(50), ReferenceId(52), ReferenceId(61), ReferenceId(63), ReferenceId(72), ReferenceId(74), ReferenceId(82), ReferenceId(86), ReferenceId(88), ReferenceId(90), ReferenceId(98), ReferenceId(100), ReferenceId(102), ReferenceId(110), ReferenceId(112)] rebuilt : SymbolId(2): [ReferenceId(52), ReferenceId(53), ReferenceId(59)] @@ -16501,54 +14684,25 @@ after transform: SymbolId(19): [ReferenceId(4), ReferenceId(7)] rebuilt : SymbolId(19): [ReferenceId(2), ReferenceId(74)] tasks/coverage/typescript/tests/cases/compiler/genericClasses0.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Symbol reference IDs mismatch for "C": +semantic error: Symbol reference IDs mismatch for "C": after transform: SymbolId(0): [ReferenceId(1)] rebuilt : SymbolId(0): [] -tasks/coverage/typescript/tests/cases/compiler/genericClasses1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] - tasks/coverage/typescript/tests/cases/compiler/genericClasses2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C", "Foo", "v1", "w", "y", "z"] -rebuilt : ScopeId(0): ["C", "v1", "w", "y", "z"] -Scope children 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"] -rebuilt : ScopeId(1): [] Symbol reference IDs mismatch for "C": after transform: SymbolId(2): [ReferenceId(5)] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/genericClasses3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] -Symbol reference IDs mismatch for "C": +semantic error: Symbol reference IDs mismatch for "C": after transform: SymbolId(2): [ReferenceId(5)] rebuilt : SymbolId(1): [] tasks/coverage/typescript/tests/cases/compiler/genericClasses4.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["A"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(3): ["B", "f", "retval", "x", "y"] -rebuilt : ScopeId(3): ["f", "retval", "x", "y"] -Bindings mismatch: -after transform: ScopeId(4): ["B", "f", "retval", "x", "y"] -rebuilt : ScopeId(4): ["f", "retval", "x", "y"] -Symbol reference IDs mismatch for "Vec2_T": +semantic error: Symbol reference IDs mismatch for "Vec2_T": after transform: SymbolId(0): [ReferenceId(4), ReferenceId(10), ReferenceId(12), ReferenceId(16), ReferenceId(19), ReferenceId(25), ReferenceId(27)] rebuilt : SymbolId(0): [ReferenceId(4), ReferenceId(10)] @@ -16570,9 +14724,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] Symbol reference IDs mismatch for "B": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -16587,18 +14738,9 @@ after transform: ["Foo"] rebuilt : [] 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: +semantic error: 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): [] -Bindings mismatch: -after transform: ScopeId(6): ["T2"] -rebuilt : ScopeId(4): [] Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(3)] rebuilt : SymbolId(0): [] @@ -16610,21 +14752,12 @@ tasks/coverage/typescript/tests/cases/compiler/genericCloduleInModule.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/genericConstraint3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B", "C"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/genericConstraintDeclaration.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] -Symbol reference IDs mismatch for "List": +semantic error: Symbol reference IDs mismatch for "List": after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] @@ -16652,9 +14785,9 @@ Missing ReferenceId: "_EndGate2" Missing ReferenceId: "_EndGate2" Missing ReferenceId: "EndGate" Missing ReferenceId: "EndGate" -Bindings mismatch: -after transform: ScopeId(0): ["EndGate", "Number"] -rebuilt : ScopeId(0): ["EndGate"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0)] +rebuilt : ScopeId(0): [SymbolId(0)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(9)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(5)] @@ -16670,9 +14803,6 @@ rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] Scope flags mismatch: after transform: ScopeId(6): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(2): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(7): ["T"] -rebuilt : ScopeId(3): [] Binding symbols mismatch: after transform: ScopeId(9): [SymbolId(7), SymbolId(12)] rebuilt : ScopeId(5): [SymbolId(6), SymbolId(7)] @@ -16719,9 +14849,9 @@ Missing ReferenceId: "_EndGate3" Missing ReferenceId: "_EndGate3" Missing ReferenceId: "EndGate" Missing ReferenceId: "EndGate" -Bindings mismatch: -after transform: ScopeId(0): ["EndGate", "Number"] -rebuilt : ScopeId(0): ["EndGate"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0)] +rebuilt : ScopeId(0): [SymbolId(0)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(9)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(5)] @@ -16737,9 +14867,6 @@ rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] Scope flags mismatch: after transform: ScopeId(6): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(2): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(7): ["T"] -rebuilt : ScopeId(3): [] Binding symbols mismatch: after transform: ScopeId(9): [SymbolId(7), SymbolId(13)] rebuilt : ScopeId(5): [SymbolId(6), SymbolId(7)] @@ -16763,21 +14890,13 @@ after transform: ["EndGate", "ICloneable", "Tween"] rebuilt : ["Tween"] tasks/coverage/typescript/tests/cases/compiler/genericConstructSignatureInInterface.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C", "r", "v"] -rebuilt : ScopeId(0): ["r", "v"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] -tasks/coverage/typescript/tests/cases/compiler/genericFunctionHasFreshTypeArgs.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "p"] -rebuilt : ScopeId(1): ["p"] - tasks/coverage/typescript/tests/cases/compiler/genericFunctionInference2.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["HandleCreatorsFactory", "MyState", "Props", "Reducer", "enhancer4", "foo", "myReducer1", "myReducer2"] +after transform: ScopeId(0): ["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)] @@ -16796,72 +14915,27 @@ tasks/coverage/typescript/tests/cases/compiler/genericFunctionSpecializations1.t 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: -after transform: ScopeId(4): ["T", "test"] -rebuilt : ScopeId(2): ["test"] Unresolved references mismatch: after transform: ["String"] rebuilt : [] -tasks/coverage/typescript/tests/cases/compiler/genericFunctions0.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "x"] -rebuilt : ScopeId(1): ["x"] - -tasks/coverage/typescript/tests/cases/compiler/genericFunctions1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "x"] -rebuilt : ScopeId(1): ["x"] - tasks/coverage/typescript/tests/cases/compiler/genericFunctions2.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/genericFunctions3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Query", "from"] -rebuilt : ScopeId(0): ["from"] -Scope children mismatch: +semantic error: 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"] tasks/coverage/typescript/tests/cases/compiler/genericFunctionsAndConditionalInference.ts -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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(13): ["F", "at"] -rebuilt : ScopeId(2): ["at"] -Bindings mismatch: -after transform: ScopeId(14): ["F", "at"] -rebuilt : ScopeId(3): ["at"] - -tasks/coverage/typescript/tests/cases/compiler/genericFunctionsNotContextSensitive.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["F", "G", "_"] -rebuilt : ScopeId(1): ["_"] -Bindings mismatch: -after transform: ScopeId(2): ["K", "_"] -rebuilt : ScopeId(2): ["_"] tasks/coverage/typescript/tests/cases/compiler/genericFunctionsWithOptionalParameters1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Utils", "utils"] -rebuilt : ScopeId(0): ["utils"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -16869,29 +14943,17 @@ after transform: ["Array"] rebuilt : [] 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: +semantic error: 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): [] Symbol reference IDs mismatch for "Collection": after transform: SymbolId(0): [ReferenceId(1), ReferenceId(8), ReferenceId(14), ReferenceId(17)] rebuilt : SymbolId(0): [ReferenceId(0)] tasks/coverage/typescript/tests/cases/compiler/genericIndexedAccessMethodIntersectionCanBeAccessed.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["ExtendedService", "Service", "createService"] -rebuilt : ScopeId(0): ["createService"] -Scope children mismatch: +semantic error: 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"] tasks/coverage/typescript/tests/cases/compiler/genericInference2.ts semantic error: Bindings mismatch: @@ -16902,93 +14964,49 @@ 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: +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/genericInferenceDefaultTypeParameterJsxReact.tsx semantic error: Bindings mismatch: -after transform: ScopeId(0): ["ButtonBaseProps", "Component", "ComponentPropsWithRef", "ElementType", "React", "ReactNode", "_jsxFileName", "v1"] +after transform: ScopeId(0): ["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"] tasks/coverage/typescript/tests/cases/compiler/genericInheritedDefaultConstructors.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B", "Constructor", "c"] -rebuilt : ScopeId(0): ["A", "B", "c"] -Scope children mismatch: +semantic error: 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): [] -Bindings mismatch: -after transform: ScopeId(4): ["V"] -rebuilt : ScopeId(2): [] Symbol reference IDs mismatch for "B": after transform: SymbolId(4): [ReferenceId(7), ReferenceId(8)] rebuilt : SymbolId(1): [ReferenceId(1)] 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: +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"] -rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/compiler/genericInterfaceFunctionTypeParameter.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["IFoo", "foo"] -rebuilt : ScopeId(0): ["foo"] -Scope children 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", "fn"] -rebuilt : ScopeId(1): ["fn"] 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: +semantic error: 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): [] -Bindings mismatch: -after transform: ScopeId(6): ["U"] -rebuilt : ScopeId(3): [] 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: +semantic error: 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: -after transform: ScopeId(1): ["T", "a", "obj", "rest"] -rebuilt : ScopeId(1): ["a", "obj", "rest"] - tasks/coverage/typescript/tests/cases/compiler/genericMethodOverspecialization.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Document", "HTMLElement", "document", "elements", "names", "widths", "xxx"] +after transform: ScopeId(0): ["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)] @@ -17001,36 +15019,22 @@ after transform: [] rebuilt : ["document"] tasks/coverage/typescript/tests/cases/compiler/genericNumberIndex.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["X"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] -tasks/coverage/typescript/tests/cases/compiler/genericObjectCreationWithoutTypeArgs.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] - tasks/coverage/typescript/tests/cases/compiler/genericObjectLitReturnType.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Symbol reference IDs mismatch for "X": +semantic error: Symbol reference IDs mismatch for "X": after transform: SymbolId(0): [ReferenceId(2)] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/genericObjectSpreadResultInSwitch.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Params", "_excluded", "_objectWithoutProperties", "getType", "params"] +after transform: ScopeId(0): ["_excluded", "_objectWithoutProperties", "getType", "params"] rebuilt : ScopeId(0): ["_excluded", "_objectWithoutProperties", "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"] Reference symbol mismatch for "params": after transform: SymbolId(6) "params" rebuilt : @@ -17061,9 +15065,6 @@ Missing ReferenceId: "M" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(3), SymbolId(7)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(2), SymbolId(8)] -Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] Binding symbols mismatch: after transform: ScopeId(3): [SymbolId(4), SymbolId(6), SymbolId(8)] rebuilt : ScopeId(3): [SymbolId(3), SymbolId(4), SymbolId(7)] @@ -17113,9 +15114,6 @@ Missing ReferenceId: "N" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(3), SymbolId(7)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(2), SymbolId(8)] -Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] Binding symbols mismatch: after transform: ScopeId(3): [SymbolId(4), SymbolId(6), SymbolId(9)] rebuilt : ScopeId(3): [SymbolId(3), SymbolId(4), SymbolId(7)] @@ -17151,42 +15149,17 @@ after transform: ["M"] rebuilt : [] 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: +semantic error: 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): [] Symbol reference IDs mismatch for "C2": after transform: SymbolId(13): [ReferenceId(9), ReferenceId(12)] rebuilt : SymbolId(2): [] -tasks/coverage/typescript/tests/cases/compiler/genericParameterAssignability1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "x"] -rebuilt : ScopeId(1): ["x"] -Bindings mismatch: -after transform: ScopeId(2): ["T", "x"] -rebuilt : ScopeId(2): ["x"] - -tasks/coverage/typescript/tests/cases/compiler/genericPrototypeProperty.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] - 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: +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), ScopeId(4)] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(2): [] Symbol reference IDs mismatch for "BaseEvent": after transform: SymbolId(1): [ReferenceId(2), ReferenceId(4)] rebuilt : SymbolId(0): [ReferenceId(0)] @@ -17195,10 +15168,7 @@ after transform: SymbolId(2): [ReferenceId(6)] rebuilt : SymbolId(1): [] tasks/coverage/typescript/tests/cases/compiler/genericPrototypeProperty3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] -Symbol reference IDs mismatch for "BaseEvent": +semantic error: Symbol reference IDs mismatch for "BaseEvent": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2)] rebuilt : SymbolId(0): [ReferenceId(0)] Symbol reference IDs mismatch for "MyEvent": @@ -17219,9 +15189,9 @@ Missing ReferenceId: "TypeScript2" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0)] rebuilt : ScopeId(0): [SymbolId(0)] -Bindings mismatch: -after transform: ScopeId(1): ["DeclKind", "PullSymbol", "PullSymbolVisibility", "PullTypeSymbol", "PullTypesymbol", "SymbolLinkKind", "_TypeScript"] -rebuilt : ScopeId(1): ["PullSymbol", "PullSymbolVisibility", "PullTypeSymbol", "_TypeScript"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(4), SymbolId(7), SymbolId(18), SymbolId(22)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(4), SymbolId(9)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -17234,15 +15204,6 @@ rebuilt : ScopeId(2): ["PullSymbolVisibility"] Scope flags mismatch: after transform: ScopeId(5): ScopeFlags(0x0) rebuilt : ScopeId(2): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(8): ["A", "B", "C", "kind", "linkTo"] -rebuilt : ScopeId(5): ["kind", "linkTo"] -Bindings mismatch: -after transform: ScopeId(9): ["A", "B", "C"] -rebuilt : ScopeId(6): [] -Bindings mismatch: -after transform: ScopeId(10): ["A", "B", "C"] -rebuilt : ScopeId(7): [] Symbol flags mismatch for "PullSymbolVisibility": after transform: SymbolId(4): SymbolFlags(RegularEnum) rebuilt : SymbolId(2): SymbolFlags(BlockScopedVariable) @@ -17257,56 +15218,33 @@ after transform: SymbolId(18): [ReferenceId(3)] rebuilt : SymbolId(9): [ReferenceId(12)] tasks/coverage/typescript/tests/cases/compiler/genericReversingTypeParameters.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["K", "V"] -rebuilt : ScopeId(1): [] -Symbol reference IDs mismatch for "BiMap": +semantic error: Symbol reference IDs mismatch for "BiMap": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(5), ReferenceId(8)] rebuilt : SymbolId(0): [ReferenceId(0)] tasks/coverage/typescript/tests/cases/compiler/genericReversingTypeParameters2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["K", "V"] -rebuilt : ScopeId(1): [] -Symbol reference IDs mismatch for "BiMap": +semantic error: Symbol reference IDs mismatch for "BiMap": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(5), ReferenceId(8)] rebuilt : SymbolId(0): [ReferenceId(0)] tasks/coverage/typescript/tests/cases/compiler/genericSignatureInheritance.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I", "I2"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: 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: +semantic error: 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: -after transform: ScopeId(2): ["T", "source", "value"] -rebuilt : ScopeId(2): ["source", "value"] -Bindings mismatch: -after transform: ScopeId(4): ["T", "source"] -rebuilt : ScopeId(4): ["source"] - tasks/coverage/typescript/tests/cases/compiler/genericTemplateOverloadResolution.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["IFooFn", "fooFn"] +after transform: ScopeId(0): ["fooFn"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -17319,119 +15257,50 @@ after transform: ["Promise", "TemplateStringsArray", "expect"] rebuilt : ["expect", "fooFn"] tasks/coverage/typescript/tests/cases/compiler/genericTupleWithSimplifiableElements.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I", "SS1", "SS2", "y", "z"] -rebuilt : ScopeId(0): ["I", "y", "z"] -Scope children 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)] -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: -after transform: ScopeId(0): ["T", "r", "s"] -rebuilt : ScopeId(0): ["r", "s"] - -tasks/coverage/typescript/tests/cases/compiler/genericTypeParameterEquivalence2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["A", "B", "C", "f", "g"] -rebuilt : ScopeId(1): ["f", "g"] -Bindings mismatch: -after transform: ScopeId(3): ["A", "f", "i", "list"] -rebuilt : ScopeId(3): ["f", "i", "list"] -Bindings mismatch: -after transform: ScopeId(6): ["A", "ar", "f", "ret"] -rebuilt : ScopeId(6): ["ar", "f", "ret"] -Bindings mismatch: -after transform: ScopeId(9): ["A", "ar"] -rebuilt : ScopeId(9): ["ar"] -Bindings mismatch: -after transform: ScopeId(10): ["A", "B", "C", "f"] -rebuilt : ScopeId(10): ["f"] -Bindings mismatch: -after transform: ScopeId(13): ["A", "pred"] -rebuilt : ScopeId(13): ["pred"] -Bindings mismatch: -after transform: ScopeId(14): ["A", "pred", "where"] -rebuilt : ScopeId(14): ["pred", "where"] - 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: +semantic error: 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): [] tasks/coverage/typescript/tests/cases/compiler/genericTypeWithCallableMembers2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "f"] -rebuilt : ScopeId(1): ["f"] -Bindings mismatch: -after transform: ScopeId(2): ["T", "f"] -rebuilt : ScopeId(2): ["f"] -Scope children mismatch: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] - tasks/coverage/typescript/tests/cases/compiler/genericWithIndexerOfTypeParameterType2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["TItem"] -rebuilt : ScopeId(1): [] -Symbol reference IDs mismatch for "CollectionItem": +semantic error: Symbol reference IDs mismatch for "CollectionItem": after transform: SymbolId(3): [ReferenceId(0), ReferenceId(4)] rebuilt : SymbolId(2): [ReferenceId(1)] Symbol reference IDs mismatch for "ListItem": @@ -17439,80 +15308,39 @@ after transform: SymbolId(4): [ReferenceId(3)] rebuilt : SymbolId(3): [] tasks/coverage/typescript/tests/cases/compiler/generics0.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["G", "v2", "z"] -rebuilt : ScopeId(0): ["v2", "z"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/generics1NoError.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B", "C", "G", "v1", "v2", "v4"] -rebuilt : ScopeId(0): ["v1", "v2", "v4"] -Scope children mismatch: +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/generics2NoError.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B", "C", "G", "v1", "v2", "v4"] -rebuilt : ScopeId(0): ["v1", "v2", "v4"] -Scope children mismatch: +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/generics3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C", "X", "Y", "a", "b"] -rebuilt : ScopeId(0): ["C", "a", "b"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1)] -Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] Symbol reference IDs mismatch for "C": after transform: SymbolId(0): [ReferenceId(1), ReferenceId(3)] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/generics4NoError.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C", "X", "Y", "a", "b"] -rebuilt : ScopeId(0): ["C", "a", "b"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1)] -Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] Symbol reference IDs mismatch for "C": after transform: SymbolId(0): [ReferenceId(1), ReferenceId(3)] rebuilt : SymbolId(0): [] -tasks/coverage/typescript/tests/cases/compiler/genericsAndHigherOrderFunctions.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["K", "M", "N", "R", "S", "T", "U", "combine", "foo"] -rebuilt : ScopeId(0): ["combine", "foo"] -Bindings mismatch: -after transform: ScopeId(1): ["S", "T", "f"] -rebuilt : ScopeId(1): ["f"] -Bindings mismatch: -after transform: ScopeId(2): ["U", "g"] -rebuilt : ScopeId(2): ["g"] -Bindings mismatch: -after transform: ScopeId(4): ["K", "N", "g"] -rebuilt : ScopeId(4): ["g"] -Bindings mismatch: -after transform: ScopeId(5): ["M", "h"] -rebuilt : ScopeId(5): ["h"] -Bindings mismatch: -after transform: ScopeId(6): ["R", "f"] -rebuilt : ScopeId(6): ["f"] - tasks/coverage/typescript/tests/cases/compiler/genericsManyTypeParameters.ts semantic error: Bindings mismatch: -after transform: ScopeId(1): ["a1", "a10", "a11", "a111", "a112", "a113", "a114", "a115", "a116", "a117", "a118", "a119", "a12", "a13", "a14", "a15", "a16", "a17", "a18", "a2", "a21", "a210", "a211", "a212", "a213", "a214", "a215", "a216", "a217", "a218", "a219", "a22", "a23", "a24", "a25", "a26", "a27", "a28", "a29", "a3", "a31", "a310", "a311", "a312", "a313", "a314", "a315", "a316", "a317", "a318", "a319", "a32", "a33", "a34", "a35", "a36", "a37", "a38", "a39", "a4", "a41", "a410", "a411", "a412", "a413", "a414", "a415", "a416", "a417", "a418", "a419", "a42", "a43", "a44", "a45", "a46", "a47", "a48", "a49", "a5", "a51", "a510", "a511", "a512", "a513", "a514", "a515", "a516", "a517", "a518", "a519", "a52", "a53", "a54", "a55", "a56", "a57", "a58", "a59", "a6", "a61", "a610", "a611", "a612", "a613", "a614", "a615", "a616", "a617", "a618", "a619", "a62", "a63", "a64", "a65", "a66", "a67", "a68", "a69", "a7", "a71", "a8", "a81", "a9", "a91", "b1", "b10", "b11", "b12", "b13", "b14", "b15", "b16", "b17", "b18", "b2", "b3", "b4", "b5", "b6", "b7", "b8", "b9", "c1", "c10", "c11", "c12", "c13", "c14", "c15", "c16", "c17", "c18", "c2", "c3", "c4", "c5", "c6", "c7", "c8", "c9", "x1", "x10", "x11", "x12", "x13", "x14", "x15", "x16", "x17", "x18", "x2", "x3", "x4", "x5", "x6", "x7", "x8", "x9", "y1", "y10", "y12", "y13", "y14", "y15", "y16", "y17", "y18", "y19", "y2", "y3", "y4", "y5", "y6", "y7", "y8", "y9", "z1", "z10", "z11", "z12", "z13", "z14", "z15", "z16", "z17", "z18", "z2", "z3", "z4", "z5", "z6", "z7", "z8", "z9"] +after transform: ScopeId(1): ["a10", "a11", "a12", "a13", "a14", "a15", "a16", "a17", "a18", "a2", "a3", "a4", "a5", "a6", "a7", "a8", "a9", "b1", "b10", "b11", "b12", "b13", "b14", "b15", "b16", "b17", "b18", "b2", "b3", "b4", "b5", "b6", "b7", "b8", "b9", "c1", "c10", "c11", "c12", "c13", "c14", "c15", "c16", "c17", "c18", "c2", "c3", "c4", "c5", "c6", "c7", "c8", "c9", "x1", "x10", "x11", "x12", "x13", "x14", "x15", "x16", "x17", "x18", "x2", "x3", "x4", "x5", "x6", "x7", "x8", "x9", "y1", "y10", "y12", "y13", "y14", "y15", "y16", "y17", "y18", "y19", "y2", "y3", "y4", "y5", "y6", "y7", "y8", "y9", "z1", "z10", "z11", "z12", "z13", "z14", "z15", "z16", "z17", "z18", "z2", "z3", "z4", "z5", "z6", "z7", "z8", "z9"] rebuilt : ScopeId(1): ["a1", "a10", "a11", "a12", "a13", "a14", "a15", "a16", "a17", "a18", "a2", "a3", "a4", "a5", "a6", "a7", "a8", "a9", "b1", "b10", "b11", "b12", "b13", "b14", "b15", "b16", "b17", "b18", "b2", "b3", "b4", "b5", "b6", "b7", "b8", "b9", "c1", "c10", "c11", "c12", "c13", "c14", "c15", "c16", "c17", "c18", "c2", "c3", "c4", "c5", "c6", "c7", "c8", "c9", "x1", "x10", "x11", "x12", "x13", "x14", "x15", "x16", "x17", "x18", "x2", "x3", "x4", "x5", "x6", "x7", "x8", "x9", "y1", "y10", "y12", "y13", "y14", "y15", "y16", "y17", "y18", "y19", "y2", "y3", "y4", "y5", "y6", "y7", "y8", "y9", "z1", "z10", "z11", "z12", "z13", "z14", "z15", "z16", "z17", "z18", "z2", "z3", "z4", "z5", "z6", "z7", "z8", "z9"] Symbol flags mismatch for "a1": after transform: SymbolId(1): SymbolFlags(FunctionScopedVariable | TypeParameter) @@ -17554,10 +15382,7 @@ after transform: ["Array", "_"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/getParameterNameAtPosition.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Mock", "Tester"] -rebuilt : ScopeId(0): [] -Scope children 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)] Unresolved references mismatch: @@ -17565,10 +15390,7 @@ after transform: ["Function", "cases", "fn"] rebuilt : ["cases", "fn"] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(0): [] @@ -17578,10 +15400,7 @@ after transform: ["Object", "PropertyDescriptor"] rebuilt : ["Object"] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(8), ScopeId(16), ScopeId(17)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(8), ScopeId(16)] @@ -17631,45 +15450,27 @@ after transform: SymbolId(0) "mod" rebuilt : SymbolId(0) "mod" 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: +semantic error: 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: +semantic error: 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: +semantic error: 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"] +after transform: ScopeId(0): ["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"] -Bindings mismatch: -after transform: ScopeId(2): ["K", "L", "T", "U", "a", "b"] -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): [] @@ -17681,18 +15482,12 @@ after transform: [] rebuilt : ["f"] tasks/coverage/typescript/tests/cases/compiler/homomorphicMappedTypeIntersectionAssignability.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["TType", "a", "b", "c"] -rebuilt : ScopeId(1): ["a", "b", "c"] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["Readonly"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(8)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -17700,10 +15495,7 @@ after transform: ["Array"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -17711,29 +15503,17 @@ after transform: ["PropertyKey", "Record", "func1"] rebuilt : ["func1"] 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: +semantic error: 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: +semantic error: 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): [] @@ -17742,10 +15522,7 @@ after transform: ["Boolean", "Error", "Number", "String"] rebuilt : ["Error"] 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: +semantic error: 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)] Unresolved references mismatch: @@ -17753,35 +15530,17 @@ after transform: ["Omit", "Pick", "Required"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/identityAndDivergentNormalizedTypes.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["ApiPost", "PostBody", "PostPath", "_excluded", "_objectWithoutProperties", "fx1", "post", "tmp"] -rebuilt : ScopeId(0): ["_excluded", "_objectWithoutProperties", "fx1", "post", "tmp"] -Scope children mismatch: +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)] -Bindings mismatch: -after transform: ScopeId(4): ["PATH", "_ref", "body", "options", "path"] -rebuilt : ScopeId(1): ["_ref", "body", "options", "path"] -Bindings mismatch: -after transform: ScopeId(5): ["PATH", "body", "path"] -rebuilt : ScopeId(2): ["body", "path"] -Bindings mismatch: -after transform: ScopeId(6): ["P", "x", "y"] -rebuilt : ScopeId(3): ["x", "y"] Unresolved references mismatch: after transform: ["Extract", "Omit", "RequestInit", "require"] rebuilt : ["require"] tasks/coverage/typescript/tests/cases/compiler/identityRelationNeverTypes.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Equals", "f1"] -rebuilt : ScopeId(0): ["f1"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(7)] rebuilt : ScopeId(0): [ScopeId(1)] -Bindings mismatch: -after transform: ScopeId(8): ["T1", "T2"] -rebuilt : ScopeId(2): [] Scope children mismatch: after transform: ScopeId(8): [ScopeId(9), ScopeId(10)] rebuilt : ScopeId(2): [] @@ -17793,40 +15552,22 @@ after transform: ["State", "true"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/illegalGenericWrapping1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Sequence"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: 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: +semantic error: 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: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] -Bindings mismatch: -after transform: ScopeId(4): ["T"] -rebuilt : ScopeId(4): [] -Symbol reference IDs mismatch for "C": +semantic error: Symbol reference IDs mismatch for "C": after transform: SymbolId(0): [ReferenceId(1), ReferenceId(2), ReferenceId(3), ReferenceId(4), ReferenceId(5)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2), ReferenceId(3)] Symbol reference IDs mismatch for "D": @@ -17834,10 +15575,7 @@ after transform: SymbolId(6): [ReferenceId(7), ReferenceId(8), ReferenceId(9), R rebuilt : SymbolId(5): [ReferenceId(4), ReferenceId(5), ReferenceId(6), ReferenceId(7), ReferenceId(8)] 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: +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)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] Bindings mismatch: @@ -17976,7 +15714,10 @@ after transform: SymbolId(0): SymbolFlags(RegularEnum) rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/typescript/tests/cases/compiler/importElisionExportNonExportAndDefault.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): [] +rebuilt : ScopeId(0): ["MyFunction"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol flags mismatch for "MyFunction": @@ -17996,9 +15737,6 @@ tasks/coverage/typescript/tests/cases/compiler/importHelpers.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "dec", "id", "result"] rebuilt : ScopeId(0): ["A", "B", "C", "id", "result"] -Bindings mismatch: -after transform: ScopeId(5): ["T", "x"] -rebuilt : ScopeId(5): ["x"] Reference symbol mismatch for "dec": after transform: SymbolId(2) "dec" rebuilt : @@ -18097,18 +15835,9 @@ after transform: ["module"] rebuilt : ["module", "require"] tasks/coverage/typescript/tests/cases/compiler/importTypeGenericArrowTypeParenthesized.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["MakeItWork", "fail1", "fail2", "fn", "works1", "works2"] -rebuilt : ScopeId(0): ["fail1", "fail2", "fn", "works1", "works2"] -Scope children 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), ScopeId(4)] -Bindings mismatch: -after transform: ScopeId(1): ["T", "x"] -rebuilt : ScopeId(1): ["x"] -Bindings mismatch: -after transform: ScopeId(2): ["T", "x"] -rebuilt : ScopeId(2): ["x"] tasks/coverage/typescript/tests/cases/compiler/importUsedInExtendsList1.ts semantic error: Missing SymbolId: "foo" @@ -18213,7 +15942,7 @@ rebuilt : ["require"] tasks/coverage/typescript/tests/cases/compiler/importedAliasedConditionalTypeInstantiation.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Actual", "Expected", "Handler", "lambdaTester"] +after transform: ScopeId(0): ["Handler", "lambdaTester"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -18303,10 +16032,7 @@ 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: +semantic error: 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)] Symbol reference IDs mismatch for "A": @@ -18329,32 +16055,11 @@ rebuilt : ["invariant"] 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"] +after transform: ScopeId(0): ["A", "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"] -Bindings mismatch: -after transform: ScopeId(111): ["A", "value"] -rebuilt : ScopeId(109): ["value"] -Bindings mismatch: -after transform: ScopeId(114): ["T", "table"] -rebuilt : ScopeId(112): ["table"] -Bindings mismatch: -after transform: ScopeId(115): ["P", "a"] -rebuilt : ScopeId(113): ["a"] -Bindings mismatch: -after transform: ScopeId(116): ["T", "obj"] -rebuilt : ScopeId(114): ["obj"] -Bindings mismatch: -after transform: ScopeId(119): ["T", "obj"] -rebuilt : ScopeId(117): ["obj"] -Bindings mismatch: -after transform: ScopeId(122): ["T", "obj"] -rebuilt : ScopeId(120): ["obj"] Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(5), ReferenceId(27), ReferenceId(34), ReferenceId(40)] rebuilt : SymbolId(0): [] @@ -18416,16 +16121,8 @@ Unresolved references mismatch: after transform: ["Array", "Error", "Record", "Symbol", "Window", "globalThis", "isAOrB", "window"] rebuilt : ["Array", "Symbol", "error", "isAOrB", "window", "x"] -tasks/coverage/typescript/tests/cases/compiler/inOperatorWithGeneric.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] - 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -18450,19 +16147,8 @@ Symbol flags mismatch for "E": after transform: SymbolId(1): SymbolFlags(RegularEnum) rebuilt : SymbolId(2): SymbolFlags(BlockScopedVariable) -tasks/coverage/typescript/tests/cases/compiler/indexSignaturesInferentialTyping.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "items"] -rebuilt : ScopeId(1): ["items"] -Bindings mismatch: -after transform: ScopeId(2): ["T", "items"] -rebuilt : ScopeId(2): ["items"] - tasks/coverage/typescript/tests/cases/compiler/indexTypeNoSubstitutionTemplateLiteral.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo", "Test"] -rebuilt : ScopeId(0): ["Foo"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Symbol reference IDs mismatch for "Foo": @@ -18470,24 +16156,9 @@ after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1)] rebuilt : SymbolId(0): [ReferenceId(0)] 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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(2): ["K", "T", "x"] -rebuilt : ScopeId(2): ["x"] -Bindings mismatch: -after transform: ScopeId(3): ["K", "T", "p1", "p2", "t"] -rebuilt : ScopeId(3): ["p1", "p2", "t"] -Bindings mismatch: -after transform: ScopeId(9): ["K", "P", "S", "key", "props", "store", "value"] -rebuilt : ScopeId(4): ["key", "props", "store", "value"] Unresolved references mismatch: after transform: ["Partial", "PropertyKey", "Record", "hasOwnProperty", "undefined"] rebuilt : ["hasOwnProperty", "undefined"] @@ -18496,15 +16167,9 @@ tasks/coverage/typescript/tests/cases/compiler/indexedAccessCanBeHighOrder.ts 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"] tasks/coverage/typescript/tests/cases/compiler/indexedAccessKeyofNestedSimplifiedSubstituteUnwrapped.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "AWrapped", "AnyFunction", "B", "BWrapped", "Params", "Wrapper"] -rebuilt : ScopeId(0): ["A", "B"] -Scope children mismatch: +semantic error: 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)] Unresolved references mismatch: @@ -18512,24 +16177,12 @@ after transform: ["Extract", "Parameters"] rebuilt : [] 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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(5): ["M", "k", "mymap", "q1", "q2", "q3", "z"] -rebuilt : ScopeId(2): ["k", "mymap", "q1", "q2", "q3", "z"] tasks/coverage/typescript/tests/cases/compiler/indexedAccessRetainsIndexSignature.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Diff", "O", "Omit", "Omit1", "Omit2", "o"] -rebuilt : ScopeId(0): ["o"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -18537,46 +16190,22 @@ after transform: ["Pick"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/indexedAccessToThisTypeOnIntersection01.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "T"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: 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): [] -Bindings mismatch: -after transform: ScopeId(6): ["C"] -rebuilt : ScopeId(4): [] -Bindings mismatch: -after transform: ScopeId(8): ["C", "T"] -rebuilt : ScopeId(6): [] -Bindings mismatch: -after transform: ScopeId(10): ["C", "T", "x", "y"] -rebuilt : ScopeId(8): ["x", "y"] 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] @@ -18594,22 +16223,16 @@ after transform: SymbolId(1): [ReferenceId(1)] rebuilt : SymbolId(1): [] 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: +semantic error: 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): [] Symbol reference IDs mismatch for "c": after transform: SymbolId(4): [ReferenceId(4)] rebuilt : SymbolId(2): [] 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"] +after transform: ScopeId(0): ["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)] @@ -18625,15 +16248,9 @@ after transform: ["Record", "Required", "genericFn1", "genericFn2", "genericFn3" rebuilt : ["genericFn1", "genericFn2", "genericFn3", "key", "obj"] tasks/coverage/typescript/tests/cases/compiler/indirectTypeParameterReferences.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["B", "combined", "flowtypes", "literal", "n"] -rebuilt : ScopeId(0): ["combined", "flowtypes", "literal", "n"] -Scope children mismatch: +semantic error: 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)] @@ -18644,10 +16261,7 @@ after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(6), ScopeId(7)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -18655,27 +16269,9 @@ after transform: ["Pick", "U"] rebuilt : [] 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: +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(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): [] -Bindings mismatch: -after transform: ScopeId(21): ["B", "transformer"] -rebuilt : ScopeId(16): ["transformer"] -Bindings mismatch: -after transform: ScopeId(25): ["T", "fns"] -rebuilt : ScopeId(19): ["fns"] -Bindings mismatch: -after transform: ScopeId(28): ["A", "B", "fn"] -rebuilt : ScopeId(22): ["fn"] -Bindings mismatch: -after transform: ScopeId(31): ["A", "predicate"] -rebuilt : ScopeId(25): ["predicate"] Symbol reference IDs mismatch for "SetOf": after transform: SymbolId(38): [ReferenceId(61), ReferenceId(63), ReferenceId(65), ReferenceId(72), ReferenceId(74), ReferenceId(76), ReferenceId(78), ReferenceId(80), ReferenceId(82), ReferenceId(84), ReferenceId(86), ReferenceId(88), ReferenceId(90), ReferenceId(103), ReferenceId(105), ReferenceId(107), ReferenceId(109), ReferenceId(111), ReferenceId(118), ReferenceId(120), ReferenceId(122), ReferenceId(124), ReferenceId(132)] rebuilt : SymbolId(23): [ReferenceId(42), ReferenceId(48), ReferenceId(55)] @@ -18711,18 +16307,12 @@ 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Unresolved references mismatch: @@ -18735,10 +16325,7 @@ 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: +semantic error: 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): [] Unresolved references mismatch: @@ -18750,22 +16337,8 @@ 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: -after transform: ScopeId(1): ["T", "args", "array"] -rebuilt : ScopeId(1): ["args", "array"] -Bindings mismatch: -after transform: ScopeId(3): ["T", "args", "nonarray"] -rebuilt : ScopeId(3): ["args", "nonarray"] -Bindings mismatch: -after transform: ScopeId(4): ["T", "array", "opt"] -rebuilt : ScopeId(4): ["array", "opt"] - tasks/coverage/typescript/tests/cases/compiler/inferTypeConstraintInstantiationCircularity.ts -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: +semantic error: 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): [] Unresolved references mismatch: @@ -18774,17 +16347,11 @@ rebuilt : [] 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"] +after transform: ScopeId(0): ["BaseClass", "Klass", "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): [] -Bindings mismatch: -after transform: ScopeId(13): ["V"] -rebuilt : ScopeId(3): [] Symbol reference IDs mismatch for "BaseClass": after transform: SymbolId(17): [ReferenceId(17), ReferenceId(19)] rebuilt : SymbolId(0): [ReferenceId(1)] @@ -18799,16 +16366,13 @@ after transform: ["Error"] rebuilt : ["Error", "m"] tasks/coverage/typescript/tests/cases/compiler/inferTypesWithFixedTupleExtendsAtVariadicPosition.ts -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: +semantic error: 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"] +after transform: ScopeId(0): ["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)] @@ -18833,60 +16397,33 @@ after transform: [] rebuilt : ["a", "map", "typeClass"] tasks/coverage/typescript/tests/cases/compiler/inferenceAndSelfReferentialConstraint.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Test", "res1", "res2", "res3", "test"] -rebuilt : ScopeId(0): ["res1", "res2", "res3", "test"] -Scope children mismatch: +semantic error: 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"] Unresolved references mismatch: after transform: ["true"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/inferenceDoesNotAddUndefinedOrNull.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Node", "NodeArray", "flatMapChildren", "flatMapChildren2"] -rebuilt : ScopeId(0): ["flatMapChildren", "flatMapChildren2"] -Scope children mismatch: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(9): ["T", "cb", "node", "result"] -rebuilt : ScopeId(4): ["cb", "node", "result"] Unresolved references mismatch: after transform: ["ReadonlyArray", "toArray", "undefined"] rebuilt : ["toArray", "undefined"] tasks/coverage/typescript/tests/cases/compiler/inferenceDoesntCompareAgainstUninstantiatedTypeParameter.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["ClassA", "ConcreteClass", "SettingsInterface", "ValueInterface", "thisGetsTheFalseError", "thisIsOk"] -rebuilt : ScopeId(0): ["ClassA", "ConcreteClass", "thisGetsTheFalseError", "thisIsOk"] -Scope children mismatch: +semantic error: 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): [] Symbol reference IDs mismatch for "ConcreteClass": after transform: SymbolId(8): [ReferenceId(8), ReferenceId(11), ReferenceId(13)] rebuilt : SymbolId(3): [ReferenceId(3), ReferenceId(6)] 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", "_asyncToGenerator"] -rebuilt : ScopeId(0): ["SomeAbstractClass", "SomeClass", "_asyncToGenerator"] -Scope children mismatch: +semantic error: 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): [] @@ -18901,23 +16438,14 @@ after transform: ["Promise", "SomeBaseClass", "require"] rebuilt : ["SomeBaseClass", "require"] tasks/coverage/typescript/tests/cases/compiler/inferenceExactOptionalProperties1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Test1"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +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): ["T", "i", "o"] -rebuilt : ScopeId(1): ["i", "o"] tasks/coverage/typescript/tests/cases/compiler/inferenceLimit.ts semantic error: Bindings mismatch: @@ -18928,15 +16456,9 @@ after transform: ["Array", "Promise"] rebuilt : ["Promise"] tasks/coverage/typescript/tests/cases/compiler/inferenceOfNullableObjectTypesWithCommonBase.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["B", "D", "equal", "v"] -rebuilt : ScopeId(0): ["equal", "v"] -Scope children 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", "a", "b"] -rebuilt : ScopeId(1): ["a", "b"] tasks/coverage/typescript/tests/cases/compiler/inferenceOptionalProperties.ts semantic error: Bindings mismatch: @@ -18996,30 +16518,9 @@ after transform: ["Math", "Object", "encodeURIComponent", "foo", "require"] rebuilt : ["Math", "Object", "encodeURIComponent", "foo", "require", "x1", "x2", "x3", "x4"] tasks/coverage/typescript/tests/cases/compiler/inferenceOuterResultNotIncorrectlyInstantiatedWithInnerResult.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Assign", "Base", "Foo", "Supervisor", "Test", "Zip"] -rebuilt : ScopeId(0): ["Base", "Foo", "Test", "Zip"] -Scope children mismatch: +semantic error: 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): [] -Bindings mismatch: -after transform: ScopeId(3): ["C", "c"] -rebuilt : ScopeId(3): ["c"] -Bindings mismatch: -after transform: ScopeId(6): ["T0", "T1"] -rebuilt : ScopeId(4): [] -Bindings mismatch: -after transform: ScopeId(8): ["A", "right"] -rebuilt : ScopeId(6): ["right"] -Bindings mismatch: -after transform: ScopeId(10): ["T"] -rebuilt : ScopeId(7): [] -Bindings mismatch: -after transform: ScopeId(12): ["T"] -rebuilt : ScopeId(9): [] Symbol reference IDs mismatch for "Test": after transform: SymbolId(0): [ReferenceId(3), ReferenceId(6)] rebuilt : SymbolId(0): [ReferenceId(2)] @@ -19031,10 +16532,7 @@ after transform: ["Object", "Omit"] rebuilt : ["Object"] tasks/coverage/typescript/tests/cases/compiler/inferenceUnionOfObjectsMappedContextualType.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Entity", "RowRenderer", "RowRendererMeta", "test"] -rebuilt : ScopeId(0): ["test"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: @@ -19042,89 +16540,51 @@ after transform: ["Date"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/inferentialTypingObjectLiteralMethod1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Int"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +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/inferentialTypingUsingApparentType1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "x"] -rebuilt : ScopeId(1): ["x"] - tasks/coverage/typescript/tests/cases/compiler/inferentialTypingUsingApparentType2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "x"] -rebuilt : ScopeId(1): ["x"] -Scope children mismatch: +semantic error: 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1)] Unresolved reference IDs mismatch for "identity": after transform: [ReferenceId(6), ReferenceId(15), ReferenceId(16), ReferenceId(24), ReferenceId(27), ReferenceId(28), ReferenceId(31), ReferenceId(34)] rebuilt : [ReferenceId(0), ReferenceId(9), ReferenceId(16), ReferenceId(19), ReferenceId(22), ReferenceId(25)] -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", "_"] -rebuilt : ScopeId(1): ["_"] - tasks/coverage/typescript/tests/cases/compiler/inferredReturnTypeIncorrectReuse1.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Type", "Type2", "inferPipe", "inferPipe2", "out", "out2", "t", "t2"] +after transform: ScopeId(0): ["out", "out2", "t", "t2"] rebuilt : ScopeId(0): ["out", "out2"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(11), ScopeId(13)] @@ -19153,88 +16613,25 @@ Unresolved references mismatch: after transform: [] rebuilt : ["User"] -tasks/coverage/typescript/tests/cases/compiler/inferringAnyFunctionType1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "p"] -rebuilt : ScopeId(1): ["p"] - -tasks/coverage/typescript/tests/cases/compiler/inferringAnyFunctionType2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "p"] -rebuilt : ScopeId(1): ["p"] - -tasks/coverage/typescript/tests/cases/compiler/inferringAnyFunctionType3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "p"] -rebuilt : ScopeId(1): ["p"] - -tasks/coverage/typescript/tests/cases/compiler/inferringAnyFunctionType4.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "p"] -rebuilt : ScopeId(1): ["p"] - -tasks/coverage/typescript/tests/cases/compiler/inferringAnyFunctionType5.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "p"] -rebuilt : ScopeId(1): ["p"] - -tasks/coverage/typescript/tests/cases/compiler/inferringReturnTypeFromConstructSignatureGeneric.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(5): ["T"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(7): ["T", "type"] -rebuilt : ScopeId(7): ["type"] -Bindings mismatch: -after transform: ScopeId(8): ["T"] -rebuilt : ScopeId(8): [] - tasks/coverage/typescript/tests/cases/compiler/infiniteExpandingTypeThroughInheritanceInstantiation.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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): [] -Bindings mismatch: -after transform: ScopeId(8): ["TValue"] -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)] @@ -19249,58 +16646,34 @@ after transform: [ReferenceId(12), ReferenceId(15)] rebuilt : [ReferenceId(0)] 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: +semantic error: 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: +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/infinitelyExpandingTypes3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["List", "OwnerList", "OwnerList2", "o1", "o2"] -rebuilt : ScopeId(0): ["o1", "o2"] -Scope children mismatch: +semantic error: 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: +semantic error: 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: +semantic error: 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: +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)] -Bindings mismatch: -after transform: ScopeId(1): ["V"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] Symbol reference IDs mismatch for "Functionality": after transform: SymbolId(0): [ReferenceId(4)] rebuilt : SymbolId(0): [] @@ -19309,18 +16682,12 @@ after transform: SymbolId(2): [ReferenceId(2), ReferenceId(10)] rebuilt : SymbolId(1): [ReferenceId(0)] tasks/coverage/typescript/tests/cases/compiler/infinitelyGenerativeInheritance1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["MyStack", "Stack"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +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)] Symbol reference IDs mismatch for "C": @@ -19331,13 +16698,7 @@ after transform: SymbolId(2): [ReferenceId(3)] rebuilt : SymbolId(2): [] tasks/coverage/typescript/tests/cases/compiler/inheritanceOfGenericConstructorMethod1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] -Symbol reference IDs mismatch for "B": +semantic error: Symbol reference IDs mismatch for "B": after transform: SymbolId(2): [ReferenceId(4), ReferenceId(5), ReferenceId(7), ReferenceId(9)] rebuilt : SymbolId(1): [ReferenceId(2), ReferenceId(3), ReferenceId(4)] Unresolved references mismatch: @@ -19370,18 +16731,12 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] Binding symbols mismatch: after transform: ScopeId(4): [SymbolId(5), SymbolId(6), SymbolId(13)] rebuilt : ScopeId(4): [SymbolId(5), SymbolId(6), SymbolId(7)] Scope flags mismatch: after transform: ScopeId(4): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(4): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(6): ["T"] -rebuilt : ScopeId(6): [] Symbol reference IDs mismatch for "C1": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -19422,18 +16777,12 @@ after transform: SymbolId(1): [ReferenceId(2)] rebuilt : SymbolId(1): [] tasks/coverage/typescript/tests/cases/compiler/inheritedConstructorPropertyContextualType.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Assignment", "State"] -rebuilt : ScopeId(0): ["Assignment"] -Scope children mismatch: +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/inheritedFunctionAssignmentCompatibility.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["IResultCallback", "fn"] -rebuilt : ScopeId(0): ["fn"] -Scope children 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)] Unresolved references mismatch: @@ -19441,10 +16790,7 @@ after transform: ["Function"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -19452,18 +16798,12 @@ after transform: ["Date", "undefined"] rebuilt : ["undefined"] 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: +semantic error: 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: +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): [] @@ -19476,15 +16816,9 @@ 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: +semantic error: 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): [] @@ -19493,29 +16827,14 @@ after transform: ["Extract"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/inlineMappedTypeModifierDeclarationEmit.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Obj", "processedInternally1", "processedInternally2", "test1", "test2", "wrappedTest1", "wrappedTest2"] -rebuilt : ScopeId(0): ["processedInternally1", "processedInternally2", "test1", "test2", "wrappedTest1", "wrappedTest2"] -Scope children 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): ["K", "T", "k", "obj"] -rebuilt : ScopeId(1): ["k", "obj"] -Bindings mismatch: -after transform: ScopeId(2): ["K", "T", "k", "obj"] -rebuilt : ScopeId(2): ["k", "obj"] 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: +semantic error: 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): [] @@ -19566,9 +16885,9 @@ Missing ReferenceId: "_M" Missing ReferenceId: "Foo" Missing ReferenceId: "M" Missing ReferenceId: "M" -Bindings mismatch: -after transform: ScopeId(0): ["Array", "M"] -rebuilt : ScopeId(0): ["M"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0)] +rebuilt : ScopeId(0): [SymbolId(0)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -19646,15 +16965,9 @@ 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: +semantic error: 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"] tasks/coverage/typescript/tests/cases/compiler/instanceAndStaticDeclarations1.ts semantic error: Symbol reference IDs mismatch for "Point": @@ -19662,10 +16975,7 @@ after transform: SymbolId(0): [ReferenceId(0), ReferenceId(8), ReferenceId(9), R rebuilt : SymbolId(0): [ReferenceId(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: +semantic error: 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)] Symbol reference IDs mismatch for "Derived1": @@ -19698,26 +17008,17 @@ after transform: [] rebuilt : ["require"] tasks/coverage/typescript/tests/cases/compiler/instanceSubtypeCheck1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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"] +after transform: ScopeId(0): ["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"] -Bindings mismatch: -after transform: ScopeId(4): ["T", "o"] -rebuilt : ScopeId(2): ["o"] Reference symbol mismatch for "o": after transform: SymbolId(8) "o" rebuilt : @@ -19729,10 +17030,7 @@ after transform: [ReferenceId(1), ReferenceId(5), ReferenceId(6), ReferenceId(9) rebuilt : [ReferenceId(1), ReferenceId(3), ReferenceId(5)] tasks/coverage/typescript/tests/cases/compiler/instantiateConstraintsToTypeArguments2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] @@ -19742,17 +17040,14 @@ Missing SymbolId: "_N" Missing ReferenceId: "N1" Missing ReferenceId: "N1" Bindings mismatch: -after transform: ScopeId(0): ["A", "ActionHandler", "ActionType", "AppState", "BaseProps", "BoxConsumerFromOuterBox", "DooDad", "Handler", "InnerBox", "Interesting", "N1", "NON_VOID_ACTION", "O", "OuterBox", "R", "VOID_ACTION", "defaultState", "fn", "handlers", "obj", "outerBoxOfString", "x", "xx"] +after transform: ScopeId(0): ["Interesting", "N1", "NON_VOID_ACTION", "VOID_ACTION", "defaultState", "fn", "handlers", "obj", "outerBoxOfString", "x", "xx"] rebuilt : ScopeId(0): ["Interesting", "N1", "NON_VOID_ACTION", "VOID_ACTION", "defaultState", "fn", "obj", "xx"] 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), ScopeId(13), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(24), ScopeId(25), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(12), ScopeId(13), ScopeId(22), ScopeId(23), ScopeId(24)] -Bindings mismatch: -after transform: ScopeId(2): ["a", "value", "values"] -rebuilt : ScopeId(1): ["value", "values"] -Bindings mismatch: -after transform: ScopeId(25): ["ComponentClass", "CreateElementChildren", "InferFunctionTypes", "_N"] -rebuilt : ScopeId(8): ["InferFunctionTypes", "_N"] +Binding symbols mismatch: +after transform: ScopeId(25): [SymbolId(60), SymbolId(86)] +rebuilt : ScopeId(8): [SymbolId(14), SymbolId(15)] Scope children mismatch: after transform: ScopeId(25): [ScopeId(26), ScopeId(28), ScopeId(30), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37)] rebuilt : ScopeId(8): [ScopeId(9), ScopeId(10), ScopeId(11)] @@ -19776,10 +17071,7 @@ after transform: [ReferenceId(14), ReferenceId(65), ReferenceId(79)] rebuilt : [ReferenceId(15)] tasks/coverage/typescript/tests/cases/compiler/instantiateContextuallyTypedGenericThis.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["$", "JQuery", "lines"] -rebuilt : ScopeId(0): ["$", "lines"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -19789,10 +17081,7 @@ 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch for "Bar": @@ -19800,26 +17089,17 @@ after transform: SymbolId(3): [ReferenceId(5)] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/instantiatedBaseTypeConstraints2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +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/instantiatedTypeAliasDisplay.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["X", "Y", "Z", "x1", "x2"] -rebuilt : ScopeId(0): ["x1", "x2"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(0): [] @@ -19839,9 +17119,9 @@ Missing ReferenceId: "A" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(3)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(5)] -Binding symbols mismatch: -after transform: ScopeId(1): [SymbolId(1), SymbolId(4)] -rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] +Bindings mismatch: +after transform: ScopeId(1): ["_A"] +rebuilt : ScopeId(1): ["B", "_A"] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -19880,9 +17160,9 @@ Missing ReferenceId: "A" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(3)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(5)] -Binding symbols mismatch: -after transform: ScopeId(1): [SymbolId(1), SymbolId(4)] -rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] +Bindings mismatch: +after transform: ScopeId(1): ["_A"] +rebuilt : ScopeId(1): ["B", "_A"] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -19919,9 +17199,9 @@ Missing ReferenceId: "A" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(3)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(5)] -Binding symbols mismatch: -after transform: ScopeId(1): [SymbolId(1), SymbolId(4)] -rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] +Bindings mismatch: +after transform: ScopeId(1): ["_A"] +rebuilt : ScopeId(1): ["B", "_A"] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -19955,9 +17235,9 @@ Missing ReferenceId: "A" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(3)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(5)] -Binding symbols mismatch: -after transform: ScopeId(1): [SymbolId(1), SymbolId(4)] -rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] +Bindings mismatch: +after transform: ScopeId(1): ["_A"] +rebuilt : ScopeId(1): ["B", "_A"] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -19993,9 +17273,9 @@ Missing ReferenceId: "A" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(3)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(5)] -Binding symbols mismatch: -after transform: ScopeId(1): [SymbolId(1), SymbolId(4)] -rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] +Bindings mismatch: +after transform: ScopeId(1): ["_A"] +rebuilt : ScopeId(1): ["B", "_A"] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -20031,9 +17311,9 @@ Missing ReferenceId: "A" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(3)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(5)] -Binding symbols mismatch: -after transform: ScopeId(1): [SymbolId(1), SymbolId(4)] -rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] +Bindings mismatch: +after transform: ScopeId(1): ["_A"] +rebuilt : ScopeId(1): ["B", "_A"] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -20054,15 +17334,15 @@ after transform: SymbolId(0) "A" rebuilt : SymbolId(0) "A" 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: +semantic error: 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: +semantic error: Bindings mismatch: +after transform: ScopeId(0): ["Bar", "bar", "obj"] +rebuilt : ScopeId(0): ["Bar", "Foo", "bar", "obj"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(9)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Symbol flags mismatch for "Foo": @@ -20076,7 +17356,10 @@ after transform: SymbolId(0): [Span { start: 149, end: 152 }] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/interfaceClassMerging2.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): ["bar", "foo"] +rebuilt : ScopeId(0): ["Bar", "Foo", "bar", "foo"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Symbol flags mismatch for "Foo": @@ -20099,16 +17382,13 @@ after transform: SymbolId(1): [Span { start: 273, end: 276 }] rebuilt : SymbolId(1): [] 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: +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/interfaceDeclaration2.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I1", "I2", "I3", "I4"] +after transform: ScopeId(0): [] 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)] @@ -20142,18 +17422,12 @@ after transform: SymbolId(3): [Span { start: 120, end: 129 }] rebuilt : SymbolId(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: +semantic error: 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: +semantic error: 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)] Symbol reference IDs mismatch for "Control": @@ -20161,10 +17435,7 @@ after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2), R rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2)] 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: +semantic error: 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)] @@ -20181,9 +17452,9 @@ rebuilt : ScopeId(0): [SymbolId(0)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] -Bindings mismatch: -after transform: ScopeId(2): ["_m2", "f", "n"] -rebuilt : ScopeId(1): ["_m2", "n"] +Binding symbols mismatch: +after transform: ScopeId(2): [SymbolId(2), SymbolId(4)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -20195,10 +17466,7 @@ after transform: SymbolId(2): [] rebuilt : SymbolId(2): [ReferenceId(1)] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] @@ -20214,50 +17482,32 @@ after transform: ["ReturnType"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/interfaceOnly.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["foo"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/interfaceWithOptionalProperty.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/interfacedecl.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["a", "a0", "a1", "a2", "b", "c", "c1", "d", "instance2"] -rebuilt : ScopeId(0): ["c1", "instance2"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -20656,18 +17906,12 @@ after transform: SymbolId(3): [ReferenceId(0)] rebuilt : SymbolId(2): [] tasks/coverage/typescript/tests/cases/compiler/intersectionApparentTypeCaching.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T0", "T1", "TX"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: 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): [] Unresolved references mismatch: @@ -20689,10 +17933,7 @@ after transform: [] rebuilt : ["x"] tasks/coverage/typescript/tests/cases/compiler/intersectionOfTypeVariableHasApparentSignatures.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Component", "Props"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: @@ -20700,31 +17941,14 @@ after transform: ["Readonly", "f"] rebuilt : ["f"] 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: +semantic error: 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: +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(3): ["T", "newParam", "param1"] -rebuilt : ScopeId(1): ["newParam", "param1"] -Bindings mismatch: -after transform: ScopeId(4): ["T", "newParam"] -rebuilt : ScopeId(2): ["newParam"] - -tasks/coverage/typescript/tests/cases/compiler/intersectionTypeInference1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(3): ["OwnProps", "f"] -rebuilt : ScopeId(3): ["f"] tasks/coverage/typescript/tests/cases/compiler/intersectionTypeNormalization.ts semantic error: Missing SymbolId: "enums" @@ -20737,15 +17961,15 @@ Missing ReferenceId: "_enums" Missing ReferenceId: "C" Missing ReferenceId: "enums" Missing ReferenceId: "enums" -Bindings mismatch: -after transform: ScopeId(0): ["A", "B", "Bar", "BoxedValue", "C", "D", "Foo", "FooBar", "IntersectionFail", "IntersectionInline", "M", "N", "ToString", "X", "X1", "X2", "X3", "Y", "Y1", "Y2", "Y3", "Z1", "Z2", "Z3", "Z4", "enums", "foo", "getValueAsString", "x", "y", "z"] -rebuilt : ScopeId(0): ["enums", "foo", "getValueAsString", "x", "y", "z"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(7), SymbolId(13), SymbolId(20), SymbolId(25), SymbolId(27), SymbolId(49)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(5), SymbolId(13)] 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(22), ScopeId(23), ScopeId(24), ScopeId(26), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(7)] -Bindings mismatch: -after transform: ScopeId(26): ["A", "B", "C", "Genre", "_enums"] -rebuilt : ScopeId(3): ["A", "B", "C", "_enums"] +Binding symbols mismatch: +after transform: ScopeId(26): [SymbolId(28), SymbolId(35), SymbolId(40), SymbolId(53)] +rebuilt : ScopeId(3): [SymbolId(6), SymbolId(7), SymbolId(9), SymbolId(11)] Scope flags mismatch: after transform: ScopeId(26): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(3): ScopeFlags(Function) @@ -20793,32 +18017,20 @@ after transform: ["enums"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/intersectionTypeWithLeadingOperator.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B", "C"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -20827,7 +18039,7 @@ rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/intersectionsAndOptionalProperties2.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A_Obj", "A_Primitive", "B_Obj", "B_Primitive", "C_Obj", "C_Primitive", "Foo", "ab_disabled_read", "ab_obj", "ab_primitive", "ab_prop_read", "ac_disabled_read", "ac_obj", "ac_primitive", "ac_prop_read"] +after transform: ScopeId(0): ["ab_disabled_read", "ab_obj", "ab_primitive", "ab_prop_read", "ac_disabled_read", "ac_obj", "ac_primitive", "ac_prop_read"] rebuilt : ScopeId(0): ["ab_disabled_read", "ab_prop_read", "ac_disabled_read", "ac_prop_read"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] @@ -20862,7 +18074,7 @@ rebuilt : ["ab_obj", "ab_primitive", "ac_obj", "ac_primitive", "undefined tasks/coverage/typescript/tests/cases/compiler/intersectionsAndOptionalProperties3.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A_Obj", "A_Primitive", "B_Obj", "B_Primitive", "C_Obj", "C_Primitive", "Foo", "ab_disabled_read", "ab_obj", "ab_primitive", "ab_prop_read", "ac_disabled_read", "ac_obj", "ac_primitive", "ac_prop_read"] +after transform: ScopeId(0): ["ab_disabled_read", "ab_obj", "ab_primitive", "ab_prop_read", "ac_disabled_read", "ac_obj", "ac_primitive", "ac_prop_read"] rebuilt : ScopeId(0): ["ab_disabled_read", "ab_prop_read", "ac_disabled_read", "ac_prop_read"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] @@ -20896,10 +18108,7 @@ after transform: ["undefined"] rebuilt : ["ab_obj", "ab_primitive", "ac_obj", "ac_primitive", "undefined"] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -20915,10 +18124,7 @@ after transform: ["Windows"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(7)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -20989,18 +18195,12 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(2): ["T", "schema"] -rebuilt : ScopeId(2): ["schema"] Binding symbols mismatch: after transform: ScopeId(3): [SymbolId(4), SymbolId(30)] rebuilt : ScopeId(3): [SymbolId(4), SymbolId(5)] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(3): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(4): ["T", "schema"] -rebuilt : ScopeId(4): ["schema"] Binding symbols mismatch: after transform: ScopeId(5): [SymbolId(7), SymbolId(31)] rebuilt : ScopeId(5): [SymbolId(7), SymbolId(8)] @@ -21034,39 +18234,24 @@ rebuilt : ScopeId(11): [SymbolId(16), SymbolId(17)] Scope flags mismatch: after transform: ScopeId(14): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(11): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(15): ["T", "schema"] -rebuilt : ScopeId(12): ["schema"] Binding symbols mismatch: after transform: ScopeId(16): [SymbolId(19), SymbolId(35)] rebuilt : ScopeId(13): [SymbolId(19), SymbolId(20)] Scope flags mismatch: after transform: ScopeId(16): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(13): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(17): ["T", "schema"] -rebuilt : ScopeId(14): ["schema"] Binding symbols mismatch: after transform: ScopeId(18): [SymbolId(22), SymbolId(36)] rebuilt : ScopeId(15): [SymbolId(22), SymbolId(23)] Scope flags mismatch: after transform: ScopeId(18): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(15): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(19): ["T", "schema"] -rebuilt : ScopeId(16): ["schema"] Binding symbols mismatch: after transform: ScopeId(20): [SymbolId(25), SymbolId(37)] rebuilt : ScopeId(17): [SymbolId(25), SymbolId(26)] Scope flags mismatch: after transform: ScopeId(20): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(17): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(22): ["T"] -rebuilt : ScopeId(19): [] -Bindings mismatch: -after transform: ScopeId(23): ["T", "v"] -rebuilt : ScopeId(20): ["v"] Symbol reference IDs mismatch for "createValidator1": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(2)] @@ -21120,10 +18305,7 @@ after transform: ["BuiltinIteratorReturn", "Iterable", "IterableIterator"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/isolatedModulesConstEnum.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["E2"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -21131,10 +18313,7 @@ after transform: ["EventName"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/isolatedModulesDontElideReExportStar.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -21211,17 +18390,14 @@ rebuilt : ["module", "require"] tasks/coverage/typescript/tests/cases/compiler/isolatedModulesShadowGlobalTypeNotValue.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Date", "Event"] +after transform: ScopeId(0): ["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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -21242,7 +18418,7 @@ rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/iterableTReturnTNext.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["MyMap", "Next", "_source", "_wrapAsyncGenerator", "doubles", "map", "r1", "r2", "r3", "set", "source"] +after transform: ScopeId(0): ["MyMap", "_source", "_wrapAsyncGenerator", "doubles", "map", "r1", "r2", "r3", "set", "source"] rebuilt : ScopeId(0): ["MyMap", "_source", "_wrapAsyncGenerator", "doubles", "r1", "r2", "r3", "source"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(14), ScopeId(15)] @@ -21265,7 +18441,7 @@ rebuilt : [ReferenceId(15)] tasks/coverage/typescript/tests/cases/compiler/jqueryInference.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["DoNothingAlias", "MyPromise", "p1", "p2"] +after transform: ScopeId(0): ["p1", "p2"] rebuilt : ScopeId(0): ["p2"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5)] @@ -21289,32 +18465,20 @@ after transform: SymbolId(0): SymbolFlags(RegularEnum) rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/typescript/tests/cases/compiler/jsonFileImportChecksCallCorrectlyTwice.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo", "data", "fn"] -rebuilt : ScopeId(0): ["data", "fn"] -Scope children mismatch: +semantic error: 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", "_jsx", "_jsxFileName"] -rebuilt : ScopeId(0): ["MyComponent", "_jsx", "_jsxFileName"] -Scope children mismatch: +semantic error: 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): [] Unresolved references mismatch: after transform: ["Component", "Readonly"] rebuilt : ["Component"] tasks/coverage/typescript/tests/cases/compiler/jsxChildrenSingleChildConfusableWithMultipleChildrenNoError.tsx -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["App", "Props", "React", "Tab", "TabLayout", "_jsxFileName"] -rebuilt : ScopeId(0): ["App", "React", "TabLayout", "_jsxFileName"] -Scope children 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)] Symbol reference IDs mismatch for "React": @@ -21322,15 +18486,9 @@ after transform: SymbolId(0): [ReferenceId(0), ReferenceId(3), ReferenceId(7), R rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(2), ReferenceId(3), ReferenceId(6), ReferenceId(8)] 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", "_objectSpread", "createReactSingleSelect"] -rebuilt : ScopeId(0): ["React", "_jsxFileName", "_objectSpread", "createReactSingleSelect"] -Scope children mismatch: +semantic error: 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"] Symbol reference IDs mismatch for "React": after transform: SymbolId(0): [ReferenceId(17), ReferenceId(19), ReferenceId(44), ReferenceId(50), ReferenceId(54), ReferenceId(82), ReferenceId(85), ReferenceId(88), ReferenceId(102), ReferenceId(180), ReferenceId(195), ReferenceId(206), ReferenceId(209), ReferenceId(233), ReferenceId(236), ReferenceId(242)] rebuilt : SymbolId(0): [ReferenceId(0)] @@ -21343,7 +18501,7 @@ rebuilt : [ReferenceId(1)] tasks/coverage/typescript/tests/cases/compiler/jsxContainsOnlyTriviaWhiteSpacesNotCountedAsChild.tsx semantic error: Bindings mismatch: -after transform: ScopeId(0): ["JSX", "NoticeList", "Props", "_jsxFileName", "_reactJsxRuntime"] +after transform: ScopeId(0): ["JSX", "NoticeList", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["NoticeList", "_jsxFileName", "_reactJsxRuntime"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] @@ -21356,9 +18514,6 @@ rebuilt : ScopeId(0): ["ElemClass", "_jsxFileName", "_reactJsxRuntime", " 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): [] Unresolved references mismatch: after transform: ["JSX", "require"] rebuilt : ["require"] @@ -21423,10 +18578,7 @@ after transform: ["JSX", "undefined"] rebuilt : ["undefined"] tasks/coverage/typescript/tests/cases/compiler/jsxEmptyExpressionNotCountedAsChild.tsx -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Props", "React", "Wrapper", "_jsx", "_jsxFileName", "element"] -rebuilt : ScopeId(0): ["React", "Wrapper", "_jsx", "_jsxFileName", "element"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch for "React": @@ -21527,7 +18679,7 @@ rebuilt : ["undefined"] tasks/coverage/typescript/tests/cases/compiler/jsxFragmentFactoryNoUnusedLocals.tsx semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Counter", "CounterProps", "Fragment", "_jsxFileName", "createElement"] +after transform: ScopeId(0): ["Counter", "Fragment", "_jsxFileName", "createElement"] rebuilt : ScopeId(0): ["Counter", "_jsxFileName"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -21548,15 +18700,9 @@ after transform: ["GenericComponent", "Omit", "omit", "require"] rebuilt : ["GenericComponent", "omit", "otherProps", "require"] 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: +semantic error: 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): [] tasks/coverage/typescript/tests/cases/compiler/jsxInExtendsClause.tsx semantic error: Bindings mismatch: @@ -21575,15 +18721,12 @@ rebuilt : [ReferenceId(1), ReferenceId(2)] tasks/coverage/typescript/tests/cases/compiler/jsxInferenceProducesLiteralAsExpected.tsx semantic error: Missing SymbolId: "React" Missing ReferenceId: "require" -Bindings mismatch: -after transform: ScopeId(0): ["FunctionPropertyNames", "React", "Test", "TestObject", "TestProps", "_jsxFileName", "el1", "el2", "model"] -rebuilt : ScopeId(0): ["React", "Test", "TestObject", "_jsxFileName", "el1", "el2", "model"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(4), SymbolId(7), SymbolId(10), SymbolId(11), SymbolId(12), SymbolId(13)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(5), SymbolId(6), SymbolId(7)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(6), ScopeId(7)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] -Bindings mismatch: -after transform: ScopeId(7): ["T", "props"] -rebuilt : ScopeId(3): ["props"] Symbol reference IDs mismatch for "TestObject": after transform: SymbolId(4): [ReferenceId(11), ReferenceId(16)] rebuilt : SymbolId(2): [ReferenceId(3)] @@ -21604,13 +18747,7 @@ after transform: ["Function"] rebuilt : ["require"] tasks/coverage/typescript/tests/cases/compiler/jsxIntrinsicElementsCompatability.tsx -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "props"] -rebuilt : ScopeId(1): ["props"] -Bindings mismatch: -after transform: ScopeId(2): ["T", "el"] -rebuilt : ScopeId(2): ["el"] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["JSX"] rebuilt : [] @@ -21713,7 +18850,7 @@ 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"] +after transform: ScopeId(0): ["Info", "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)] @@ -21727,20 +18864,14 @@ rebuilt : ["infoProps"] tasks/coverage/typescript/tests/cases/compiler/keyRemappingKeyofResult.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Okay", "Oops", "Orig", "Remapped", "f", "g", "sym", "x"] +after transform: ScopeId(0): ["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): [] @@ -21758,18 +18889,9 @@ after transform: ["Exclude", "PropertyKey", "Record", "Symbol"] rebuilt : ["Symbol", "x"] tasks/coverage/typescript/tests/cases/compiler/keyofGenericExtendingClassDoubleLayer.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["AutoModel", "Model", "ModelAttributes", "PersonModel"] -rebuilt : ScopeId(0): ["AutoModel", "Model", "PersonModel"] -Scope children 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): ["Attributes"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(2): [] Symbol reference IDs mismatch for "Model": after transform: SymbolId(0): [ReferenceId(3), ReferenceId(4)] rebuilt : SymbolId(0): [ReferenceId(0)] @@ -21786,10 +18908,7 @@ 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Symbol reference IDs mismatch for "obj": @@ -21817,27 +18936,15 @@ after transform: [] rebuilt : ["React"] tasks/coverage/typescript/tests/cases/compiler/lambdaParameterWithTupleArgsHasCorrectAssignability.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["GenericClass", "GenericFunction", "MyTuple", "MyTupleItem", "consumeClass", "createClass"] -rebuilt : ScopeId(0): ["GenericClass", "consumeClass", "createClass"] -Scope children 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)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] -Bindings mismatch: -after transform: ScopeId(4): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(5): ["T", "f"] -rebuilt : ScopeId(2): ["f"] Symbol reference IDs mismatch for "GenericClass": after transform: SymbolId(4): [ReferenceId(10), ReferenceId(12), ReferenceId(14)] rebuilt : SymbolId(0): [ReferenceId(0)] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(10), ScopeId(12), ScopeId(16)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -21868,10 +18975,7 @@ after transform: ScopeId(2): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(2): ScopeFlags(Function) tasks/coverage/typescript/tests/cases/compiler/libdtsFix.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["HTMLElement"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -21904,18 +19008,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(6), SymbolId(8) Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(4): ["U", "entry"] -rebuilt : ScopeId(4): ["entry"] -Bindings mismatch: -after transform: ScopeId(5): ["U"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(6): ["U", "data"] -rebuilt : ScopeId(6): ["data"] -Bindings mismatch: -after transform: ScopeId(7): ["T"] -rebuilt : ScopeId(7): [] Symbol reference IDs mismatch for "Buffer": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(5)] @@ -22053,21 +19145,9 @@ after transform: [] rebuilt : ["Key"] tasks/coverage/typescript/tests/cases/compiler/localTypeParameterInferencePriority.ts -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: +semantic error: 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): [] -Bindings mismatch: -after transform: ScopeId(6): ["C"] -rebuilt : ScopeId(2): [] -Bindings mismatch: -after transform: ScopeId(7): ["S"] -rebuilt : ScopeId(3): [] Symbol reference IDs mismatch for "Table": after transform: SymbolId(4): [ReferenceId(14), ReferenceId(17), ReferenceId(22), ReferenceId(25)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(2)] @@ -22076,10 +19156,7 @@ after transform: ["Array", "Pick", "Record"] rebuilt : [] 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: +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)] Symbol reference IDs mismatch for "C1": @@ -22097,10 +19174,7 @@ after transform: ["Map", "WeakMap", "const"] rebuilt : ["Map", "WeakMap"] 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: +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), ScopeId(4)] Unresolved reference IDs mismatch for "Set": @@ -22108,24 +19182,18 @@ after transform: [ReferenceId(4), ReferenceId(6)] rebuilt : [ReferenceId(4)] tasks/coverage/typescript/tests/cases/compiler/mapOnTupleTypes02.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Point", "increment"] -rebuilt : ScopeId(0): ["increment"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] 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: +semantic error: 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"] +after transform: ScopeId(0): ["E", "a", "fn", "x"] rebuilt : ScopeId(0): ["E", "x"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] @@ -22153,10 +19221,7 @@ after transform: ["Record", "enumValues"] rebuilt : ["a", "enumValues", "fn"] tasks/coverage/typescript/tests/cases/compiler/mappedTypeAndIndexSignatureRelation.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Bar", "Bar2", "Bar3", "Foo", "Identity", "Merge2", "Merge3", "Same", "T1", "T2"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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): [] Unresolved references mismatch: @@ -22164,59 +19229,35 @@ after transform: ["PropertyKey", "Record"] rebuilt : [] 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: +semantic error: 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: +semantic error: 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/mappedTypeGenericIndexedAccess.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["P", "Test", "TypeHandlers", "Types", "TypesMap", "onSomeEvent", "typeHandlers"] -rebuilt : ScopeId(0): ["Test", "onSomeEvent", "typeHandlers"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(6), ScopeId(7)] Scope children mismatch: after transform: ScopeId(2): [ScopeId(3), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] -Bindings mismatch: -after transform: ScopeId(5): ["T", "_this$entries$name", "entry", "name"] -rebuilt : ScopeId(3): ["_this$entries$name", "entry", "name"] -Bindings mismatch: -after transform: ScopeId(13): ["T", "_typeHandlers$p$t", "p"] -rebuilt : ScopeId(7): ["_typeHandlers$p$t", "p"] Unresolved references mismatch: after transform: ["console", "true"] rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/mappedTypeGenericInstantiationPreservesHomomorphism.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["PrivateMapped"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/mappedTypeGenericInstantiationPreservesInlineForm.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "schema"] -rebuilt : ScopeId(1): ["schema"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(1): [ScopeId(2)] rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(3): ["T", "schema"] -rebuilt : ScopeId(2): ["schema"] Scope children mismatch: after transform: ScopeId(3): [ScopeId(4)] rebuilt : ScopeId(2): [] @@ -22225,25 +19266,16 @@ after transform: ["Record", "Required"] rebuilt : [] 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: +semantic error: 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"] tasks/coverage/typescript/tests/cases/compiler/mappedTypeInferenceCircularity.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Block", "HTML", "h"] +after transform: ScopeId(0): ["h"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] @@ -22267,50 +19299,29 @@ after transform: ["Base"] rebuilt : [] 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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"] 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: +semantic error: 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): [] Symbol reference IDs mismatch for "MyClass": after transform: SymbolId(1): [ReferenceId(3), ReferenceId(5)] rebuilt : SymbolId(0): [ReferenceId(0)] @@ -22319,34 +19330,19 @@ after transform: ["Partial"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/mappedTypePartialNonHomomorphicBaseConstraint.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Errors", "Model"] -rebuilt : ScopeId(0): ["Model"] -Scope children mismatch: +semantic error: 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): [] 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: +semantic error: 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: +semantic error: 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): [] @@ -22364,7 +19360,7 @@ rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/mappedTypeWithNameClauseAppliedToArrayType.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Mappy", "NotArray", "x"] +after transform: ScopeId(0): ["x"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] @@ -22376,11 +19372,6 @@ Unresolved references mismatch: after transform: ["doArrayStuff"] rebuilt : ["doArrayStuff", "x"] -tasks/coverage/typescript/tests/cases/compiler/matchingOfObjectLiteralConstraints.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "U", "x", "z"] -rebuilt : ScopeId(1): ["x", "z"] - tasks/coverage/typescript/tests/cases/compiler/memberAccessMustUseModuleInstances.ts semantic error: Symbol reference IDs mismatch for "Promise": after transform: SymbolId(0): [ReferenceId(0)] @@ -22412,10 +19403,7 @@ tasks/coverage/typescript/tests/cases/compiler/mergedDeclarations4.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/mergedDeclarations5.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B"] -rebuilt : ScopeId(0): ["B"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -22451,13 +19439,7 @@ after transform: ["a"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/mergedInstantiationAssignment.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] -Symbol reference IDs mismatch for "GenericObject": +semantic error: Symbol reference IDs mismatch for "GenericObject": after transform: SymbolId(0): [ReferenceId(1), ReferenceId(2)] rebuilt : SymbolId(0): [ReferenceId(0)] Symbol reference IDs mismatch for "GenericObjectWithoutSetter": @@ -22468,10 +19450,7 @@ after transform: SymbolId(7): [ReferenceId(8), ReferenceId(9)] rebuilt : SymbolId(5): [ReferenceId(4)] tasks/coverage/typescript/tests/cases/compiler/mergedInterfaceFromMultipleFiles1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C", "I"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] rebuilt : ScopeId(0): [] @@ -22810,10 +19789,7 @@ after transform: SymbolId(5): [] rebuilt : SymbolId(6): [ReferenceId(6)] tasks/coverage/typescript/tests/cases/compiler/metadataOfEventAlias.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Event"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -22869,21 +19845,6 @@ Missing ReferenceId: "E" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(4), SymbolId(8), SymbolId(14), SymbolId(19), SymbolId(23)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(3), SymbolId(6), SymbolId(10), SymbolId(14), SymbolId(19)] -Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(4): ["T"] -rebuilt : ScopeId(4): [] -Bindings mismatch: -after transform: ScopeId(7): ["T"] -rebuilt : ScopeId(7): [] -Bindings mismatch: -after transform: ScopeId(9): ["U", "u"] -rebuilt : ScopeId(9): ["u"] -Bindings mismatch: -after transform: ScopeId(12): ["U", "u"] -rebuilt : ScopeId(12): ["u"] Binding symbols mismatch: after transform: ScopeId(13): [SymbolId(20), SymbolId(27)] rebuilt : ScopeId(13): [SymbolId(15), SymbolId(16)] @@ -23010,43 +19971,22 @@ after transform: ["someValue"] rebuilt : ["someNumber", "someString", "unionOfEnum"] tasks/coverage/typescript/tests/cases/compiler/mixinIntersectionIsValidbaseType.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["AMixin", "Constructor", "Initable", "Serializable"] -rebuilt : ScopeId(0): ["AMixin", "Serializable"] -Scope children mismatch: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(7): ["K", "SomeHowNotOkay", "SomeHowOkay", "SuperClass"] -rebuilt : ScopeId(4): ["SomeHowNotOkay", "SomeHowOkay", "SuperClass"] 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: +semantic error: 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"] Unresolved references mismatch: after transform: ["Object"] rebuilt : [] 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: +semantic error: 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"] tasks/coverage/typescript/tests/cases/compiler/mixingFunctionAndAmbientModule1.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 @@ -23148,9 +20088,9 @@ Missing ReferenceId: "B1" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(3), SymbolId(10), SymbolId(11), SymbolId(21), SymbolId(24)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(3), SymbolId(10), SymbolId(11), SymbolId(23), SymbolId(26)] -Bindings mismatch: -after transform: ScopeId(1): ["IMode", "Mode", "_modes2"] -rebuilt : ScopeId(1): ["Mode", "_modes2"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(2), SymbolId(28)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -23175,9 +20115,9 @@ rebuilt : ScopeId(10): [SymbolId(18), SymbolId(19)] Scope flags mismatch: after transform: ScopeId(11): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(10): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(15): ["A1C1", "A1I1", "_A"] -rebuilt : ScopeId(14): ["A1C1", "_A"] +Binding symbols mismatch: +after transform: ScopeId(15): [SymbolId(23), SymbolId(32)] +rebuilt : ScopeId(14): [SymbolId(24), SymbolId(25)] Scope flags mismatch: after transform: ScopeId(15): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(14): ScopeFlags(Function) @@ -23264,10 +20204,7 @@ after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationDoesInterfaceMergeOfReexport.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -23423,10 +20360,7 @@ 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Reference symbol mismatch for "I": @@ -23503,10 +20437,7 @@ tasks/coverage/typescript/tests/cases/compiler/moduleCodegenTest4.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/moduleDeclarationExportStarShadowingGlobalIsNameable.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Account", "Account2"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] @@ -23514,10 +20445,7 @@ tasks/coverage/typescript/tests/cases/compiler/moduleIdentifiers.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/moduleImportedForTypeArgumentPosition.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["M2C"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -23577,9 +20505,9 @@ rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(2): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(5): ["ISyntaxElement", "ISyntaxToken", "PositionedElement", "PositionedToken", "_TypeScript2"] -rebuilt : ScopeId(5): ["PositionedElement", "PositionedToken", "_TypeScript2"] +Binding symbols mismatch: +after transform: ScopeId(5): [SymbolId(5), SymbolId(7), SymbolId(26)] +rebuilt : ScopeId(5): [SymbolId(5), SymbolId(6), SymbolId(8)] Scope flags mismatch: after transform: ScopeId(5): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(5): ScopeFlags(Function) @@ -23767,9 +20695,9 @@ Missing ReferenceId: "M" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0)] rebuilt : ScopeId(0): [SymbolId(0)] -Bindings mismatch: -after transform: ScopeId(1): ["C1", "I", "_M"] -rebuilt : ScopeId(1): ["C1", "_M"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(1), SymbolId(4)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -23813,9 +20741,9 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(3): ["C2", "I", "_M2"] -rebuilt : ScopeId(3): ["C2", "_M2"] +Binding symbols mismatch: +after transform: ScopeId(3): [SymbolId(3), SymbolId(5)] +rebuilt : ScopeId(3): [SymbolId(3), SymbolId(4)] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(3): ScopeFlags(Function) @@ -24227,9 +21155,9 @@ rebuilt : ScopeId(4): [SymbolId(6), SymbolId(7)] Scope flags mismatch: after transform: ScopeId(4): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(4): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(5): ["M", "_M2", "bar"] -rebuilt : ScopeId(5): ["_M2", "bar"] +Binding symbols mismatch: +after transform: ScopeId(5): [SymbolId(6), SymbolId(10)] +rebuilt : ScopeId(5): [SymbolId(8), SymbolId(9)] Scope flags mismatch: after transform: ScopeId(5): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(5): ScopeFlags(Function) @@ -24375,18 +21303,12 @@ 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/compiler/multiCallOverloads.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["ICallback", "f1", "f2", "load"] -rebuilt : ScopeId(0): ["f1", "f2", "load"] -Scope children mismatch: +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/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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [] @@ -24411,7 +21333,7 @@ semantic error: Namespaces exporting non-const are not supported by Babel. Chang 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"] +after transform: ScopeId(0): ["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)] @@ -24422,7 +21344,7 @@ rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/multipleInferenceContexts.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["ComponentOptionsProperties", "ConstructorOptions", "Data", "Instance", "Moon", "r2"] +after transform: ScopeId(0): ["Moon", "r2"] rebuilt : ScopeId(0): ["r2"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6)] @@ -24435,48 +21357,27 @@ after transform: ["ThisType"] rebuilt : ["Moon"] 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: +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)] 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: +semantic error: 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: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] -Symbol reference IDs mismatch for "foo2": +semantic error: Symbol reference IDs mismatch for "foo2": after transform: SymbolId(2): [ReferenceId(0)] rebuilt : SymbolId(1): [] tasks/coverage/typescript/tests/cases/compiler/mutuallyRecursiveInference.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["A"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(2): ["RT"] -rebuilt : ScopeId(2): [] -Symbol reference IDs mismatch for "X": +semantic error: Symbol reference IDs mismatch for "X": after transform: SymbolId(4): [ReferenceId(5)] rebuilt : SymbolId(2): [] tasks/coverage/typescript/tests/cases/compiler/mutuallyRecursiveInterfaceDeclaration.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] @@ -24583,7 +21484,7 @@ rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/namespacesWithTypeAliasOnlyExportsMerge.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "Q", "Q2", "Q3", "Q4", "try1", "try2", "try3", "try4"] +after transform: ScopeId(0): ["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)] @@ -24593,10 +21494,7 @@ after transform: ["Q", "Q2", "Q3", "Q4"] rebuilt : [] 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: +semantic error: 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)] Symbol reference IDs mismatch for "ACTOR_TYPE": @@ -24607,10 +21505,7 @@ after transform: ["Array", "Error", "Function", "URIError", "console"] rebuilt : ["Array", "Error", "URIError", "console"] 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: +semantic error: 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)] Unresolved reference IDs mismatch for "RegExp": @@ -24679,26 +21574,17 @@ after transform: [] rebuilt : ["f"] tasks/coverage/typescript/tests/cases/compiler/narrowByClauseExpressionInSwitchTrue5.ts -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: +semantic error: 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: +semantic error: 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: +semantic error: 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)] Symbol reference IDs mismatch for "Person": @@ -24709,18 +21595,12 @@ after transform: SymbolId(17): [ReferenceId(34)] rebuilt : SymbolId(12): [] 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: +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/narrowBySwitchDiscriminantUndefinedCase1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "assertUnreachable", "func", "func2"] -rebuilt : ScopeId(0): ["assertUnreachable", "func", "func2"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] Unresolved references mismatch: @@ -24728,10 +21608,7 @@ after transform: ["Error", "Math", "const", "undefined"] rebuilt : ["Error", "Math", "undefined"] 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: +semantic error: 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)] Symbol reference IDs mismatch for "Match": @@ -24771,24 +21648,15 @@ after transform: [] rebuilt : ["require"] tasks/coverage/typescript/tests/cases/compiler/narrowingAssignmentReadonlyRespectsAssertion.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["MultiCaseFixture", "TestCase", "dataFunc", "subDataFunc", "testFunc"] -rebuilt : ScopeId(0): ["dataFunc", "subDataFunc", "testFunc"] -Scope children 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(4): ["T", "subFunc"] -rebuilt : ScopeId(2): ["subFunc"] Unresolved references mismatch: after transform: ["Array", "ReadonlyArray", "console"] rebuilt : ["Array", "console"] 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: +semantic error: 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)] Unresolved references mismatch: @@ -24796,101 +21664,38 @@ after transform: ["true"] rebuilt : [] 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: +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(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"] -Bindings mismatch: -after transform: ScopeId(25): ["T", "x"] -rebuilt : ScopeId(24): ["x"] -Bindings mismatch: -after transform: ScopeId(27): ["T", "x"] -rebuilt : ScopeId(26): ["x"] -Bindings mismatch: -after transform: ScopeId(33): ["T", "x"] -rebuilt : ScopeId(30): ["x"] -Bindings mismatch: -after transform: ScopeId(35): ["X", "Y", "xy"] -rebuilt : ScopeId(32): ["xy"] -Bindings mismatch: -after transform: ScopeId(37): ["X", "Y", "xy"] -rebuilt : ScopeId(34): ["xy"] -Bindings mismatch: -after transform: ScopeId(39): ["X", "Y", "xy"] -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"] Unresolved references mismatch: after transform: ["Function", "true"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/narrowingConstrainedTypeParameter.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Pet", "isPet", "speak"] -rebuilt : ScopeId(0): ["isPet", "speak"] -Scope children 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(3): ["TPet", "pet", "voice"] -rebuilt : ScopeId(2): ["pet", "voice"] tasks/coverage/typescript/tests/cases/compiler/narrowingDestructuring.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["X", "Z", "_excluded", "_excluded2", "_excluded3", "_excluded4", "_objectWithoutProperties", "farr", "func", "func2", "func3"] -rebuilt : ScopeId(0): ["_excluded", "_excluded2", "_excluded3", "_excluded4", "_objectWithoutProperties", "farr", "func", "func2", "func3"] -Scope children mismatch: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(6): ["T", "value"] -rebuilt : ScopeId(4): ["value"] -Bindings mismatch: -after transform: ScopeId(9): ["T", "t"] -rebuilt : ScopeId(7): ["t"] -Bindings mismatch: -after transform: ScopeId(12): ["T", "head", "tail", "x"] -rebuilt : ScopeId(10): ["head", "tail", "x"] 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: +semantic error: 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", "_objectSpread", "m", "map", "something"] -rebuilt : ScopeId(0): ["_objectSpread", "m", "map", "something"] -Scope children 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(4): ["A", "B", "f", "items"] -rebuilt : ScopeId(1): ["f", "items"] Unresolved references mismatch: after transform: ["NoInfer", "const", "require", "test2"] rebuilt : ["require", "test2"] @@ -24902,14 +21707,11 @@ rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/narrowingRestGenericCall.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Slugs", "_excluded", "_objectWithoutProperties", "call", "obj"] +after transform: ScopeId(0): ["_excluded", "_objectWithoutProperties", "call", "obj"] rebuilt : ScopeId(0): ["_excluded", "_objectWithoutProperties", "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"] Reference symbol mismatch for "obj": after transform: SymbolId(5) "obj" rebuilt : @@ -24918,29 +21720,17 @@ after transform: ["console", "require"] rebuilt : ["console", "obj", "require"] 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: +semantic error: 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: +semantic error: 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"] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] @@ -24974,29 +21764,17 @@ tasks/coverage/typescript/tests/cases/compiler/narrowingTypeofUndefined2.ts 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"] Unresolved references mismatch: after transform: ["Array", "takeArray"] rebuilt : ["takeArray"] tasks/coverage/typescript/tests/cases/compiler/narrowingUnionToUnion.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["EmptyString", "Falsy", "MyDiscriminatedUnion", "TEST_CASES", "Union", "assertRelationIsNullOrStringArray", "broken", "check1", "check2", "example1", "example2", "example3", "f1", "f1x", "f2", "fx1", "fx10", "fx2", "fx3", "fx4", "fx5", "isEmpty", "test", "test1", "test3", "v1", "v2", "working", "workingAgain"] +after transform: ScopeId(0): ["TEST_CASES", "assertRelationIsNullOrStringArray", "broken", "check1", "check2", "example1", "example2", "example3", "f1", "f1x", "f2", "fx1", "fx10", "fx2", "fx3", "fx4", "fx5", "isEmpty", "test", "test1", "test3", "v1", "v2", "working", "workingAgain"] rebuilt : ScopeId(0): ["TEST_CASES", "assertRelationIsNullOrStringArray", "check1", "check2", "example1", "example2", "example3", "f1", "f1x", "f2", "fx1", "fx10", "fx2", "fx3", "fx4", "fx5", "isEmpty", "test", "test1", "test3", "v1", "v2"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(20), ScopeId(21), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(38), ScopeId(41), ScopeId(46), ScopeId(49), ScopeId(54), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(69), ScopeId(70), ScopeId(71), ScopeId(72), ScopeId(73), ScopeId(74), ScopeId(77), ScopeId(80)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(12), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(23), ScopeId(26), ScopeId(31), ScopeId(34), ScopeId(39), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(57), ScopeId(60)] -Bindings mismatch: -after transform: ScopeId(5): ["T", "x"] -rebuilt : ScopeId(3): ["x"] -Bindings mismatch: -after transform: ScopeId(7): ["T", "x"] -rebuilt : ScopeId(5): ["x"] -Bindings mismatch: -after transform: ScopeId(17): ["T", "c", "obj"] -rebuilt : ScopeId(9): ["c", "obj"] Reference symbol mismatch for "working": after transform: SymbolId(62) "working" rebuilt : @@ -25029,26 +21807,17 @@ after transform: ["Record", "X", "XS", "Y", "YS", "assert", "isA", "isEmptyArray rebuilt : ["assert", "broken", "isA", "isEmptyArray", "isEmptyStrOrUndefined", "isEmptyString", "isFalsy", "isMaybeEmptyArray", "isMaybeEmptyString", "isMaybeZero", "isMyDiscriminatedUnion", "isXSorY", "isZero", "undefined", "working", "workingAgain"] tasks/coverage/typescript/tests/cases/compiler/narrowingUnionWithBang.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["BorkedType", "FixedType", "WorkingType", "_fixed$thing", "borked", "fixed", "working"] -rebuilt : ScopeId(0): ["_fixed$thing", "borked", "fixed", "working"] -Scope children 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)] tasks/coverage/typescript/tests/cases/compiler/nearbyIdenticalGenericLambdasAssignable.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T", "TA", "TB", "TC", "TL", "fA", "fB", "fC"] +after transform: ScopeId(0): ["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): [] -Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] Symbol reference IDs mismatch for "fB": after transform: SymbolId(2): [ReferenceId(4), ReferenceId(14), ReferenceId(20), ReferenceId(26), ReferenceId(32)] rebuilt : SymbolId(0): [ReferenceId(3), ReferenceId(9), ReferenceId(15), ReferenceId(21)] @@ -25072,10 +21841,7 @@ after transform: ["accA", "accB", "accC", "accL"] rebuilt : ["accA", "accB", "accC", "accL", "fA"] tasks/coverage/typescript/tests/cases/compiler/nestedGenericConditionalTypeWithGenericImportType.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Name"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -25083,23 +21849,14 @@ tasks/coverage/typescript/tests/cases/compiler/nestedGenericSpreadInference.ts 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"] 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -25107,10 +21864,7 @@ after transform: ["Partial"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] @@ -25201,10 +21955,7 @@ after transform: [ReferenceId(1), ReferenceId(6)] rebuilt : [ReferenceId(1)] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -25217,10 +21968,7 @@ after transform: ["Record", "direct", "hasZField", "nested", "nestedUnion"] rebuilt : ["direct", "hasZField", "nested", "nestedUnion"] tasks/coverage/typescript/tests/cases/compiler/neverAsDiscriminantType.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo1", "Foo2", "GatewayEvents", "GatewayOpcode", "GatewayParams", "GatewayPayload", "GatewayPayloadStructure", "_adaptSession", "_asyncToGenerator", "adaptSession", "assertMessage", "f1", "f2"] -rebuilt : ScopeId(0): ["GatewayOpcode", "_adaptSession", "_asyncToGenerator", "adaptSession", "assertMessage", "f1", "f2"] -Scope children mismatch: +semantic error: 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(19), ScopeId(20)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] Bindings mismatch: @@ -25255,18 +22003,12 @@ after transform: SymbolId(1): [ReferenceId(0), ReferenceId(2)] rebuilt : SymbolId(2): [] tasks/coverage/typescript/tests/cases/compiler/newExpressionWithTypeParameterConstrainedToOuterTypeParameter.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I", "i", "y"] -rebuilt : ScopeId(0): ["i", "y"] -Scope children mismatch: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -25274,18 +22016,9 @@ after transform: ["a"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/noAsConstNameLookup.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C", "Cleaner", "FeatureRunner", "Store", "_asyncToGenerator"] -rebuilt : ScopeId(0): ["C", "FeatureRunner", "_asyncToGenerator"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(7)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(7)] -Bindings mismatch: -after transform: ScopeId(3): ["W"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(7): ["T"] -rebuilt : ScopeId(7): [] Symbol reference IDs mismatch for "FeatureRunner": after transform: SymbolId(3): [ReferenceId(1)] rebuilt : SymbolId(1): [] @@ -25328,36 +22061,21 @@ after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/noConstraintInReturnType1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] -Symbol reference IDs mismatch for "List": +semantic error: Symbol reference IDs mismatch for "List": after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] 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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(4): ["T"] -rebuilt : ScopeId(2): [] Unresolved references mismatch: after transform: ["Function"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/noCrashUMDMergedWithGlobalValue.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["SomeInterface", "value"] +after transform: ScopeId(0): ["value"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] @@ -25378,39 +22096,22 @@ after transform: [] rebuilt : ["decorator"] tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyDestructuringInPrivateMethod.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Arg", "Bar"] -rebuilt : ScopeId(0): ["Bar"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1)] -tasks/coverage/typescript/tests/cases/compiler/noImplicitAnyFunctionExpressionAssignment.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "x"] -rebuilt : ScopeId(1): ["x"] -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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -25447,10 +22148,7 @@ after transform: SymbolId(16): SymbolFlags(RegularEnum) rebuilt : SymbolId(13): SymbolFlags(FunctionScopedVariable) tasks/coverage/typescript/tests/cases/compiler/noUsedBeforeDefinedErrorInTypeContext.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["IThing", "bar", "baz", "foo", "qwe"] -rebuilt : ScopeId(0): ["bar", "baz", "foo", "qwe"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Symbol reference IDs mismatch for "foo": @@ -25465,7 +22163,7 @@ rebuilt : SymbolId(3): [] tasks/coverage/typescript/tests/cases/compiler/nodeModuleReexportFromDottedPath.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["EnhancedPrisma", "PrismaClient", "TPrismaClientCtor", "enhancePrisma"] +after transform: ScopeId(0): ["EnhancedPrisma", "PrismaClient", "enhancePrisma"] rebuilt : ScopeId(0): ["EnhancedPrisma", "PrismaClient"] Reference symbol mismatch for "enhancePrisma": after transform: SymbolId(1) "enhancePrisma" @@ -25555,29 +22253,18 @@ after transform: [] rebuilt : ["require"] tasks/coverage/typescript/tests/cases/compiler/nonConflictingRecursiveBaseTypeMembers.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B", "C"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: 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: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] - tasks/coverage/typescript/tests/cases/compiler/nonInferrableTypePropagation1.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Box", "Op", "Thing", "result1", "result2", "thing"] +after transform: ScopeId(0): ["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)] @@ -25594,7 +22281,7 @@ rebuilt : ["box", "createAndUnbox", "log", "map", "tap", "thing"] 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"] +after transform: ScopeId(0): ["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)] @@ -25610,18 +22297,12 @@ after transform: ["ReadonlyArray", "exists", "pipe"] rebuilt : ["es", "exists", "filter", "pipe"] 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: +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/nonNullMappedType.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["A", "p0", "p1", "v"] -rebuilt : ScopeId(1): ["p0", "p1", "v"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(1): [ScopeId(2)] rebuilt : ScopeId(1): [] @@ -25629,15 +22310,9 @@ tasks/coverage/typescript/tests/cases/compiler/nonNullParameterExtendingStringAs 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"] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: @@ -25645,10 +22320,7 @@ after transform: ["HTMLElement"] rebuilt : [] 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: +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(10), ScopeId(11)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -25656,61 +22328,23 @@ after transform: ["NonNullable"] rebuilt : [] 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: +semantic error: 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"] 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: +semantic error: 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"] - -tasks/coverage/typescript/tests/cases/compiler/nonNullableTypes1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "x", "y"] -rebuilt : ScopeId(1): ["x", "y"] -Bindings mismatch: -after transform: ScopeId(3): ["T", "x"] -rebuilt : ScopeId(3): ["x"] -Bindings mismatch: -after transform: ScopeId(5): ["T", "obj"] -rebuilt : ScopeId(5): ["obj"] tasks/coverage/typescript/tests/cases/compiler/nonNullableWithNullableGenericIndexedAccessArg.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Ordering", "Query", "QueryHandler", "StateNodesConfig", "StateSchema"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -25718,18 +22352,12 @@ after transform: ["NonNullable", "StateNode"] rebuilt : [] 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -25738,7 +22366,7 @@ rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/nongenericPartialInstantiationsRelatedInBothDirections.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo", "ObjectContaining", "cafoo", "cfoo"] +after transform: ScopeId(0): ["cafoo", "cfoo"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -25765,10 +22393,7 @@ after transform: ["SVGRectElement", "document"] rebuilt : ["document"] tasks/coverage/typescript/tests/cases/compiler/nounusedTypeParameterConstraint.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["IEventSourcedEntity"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -25792,7 +22417,7 @@ Missing ReferenceId: "N1" Missing ReferenceId: "N2" Missing ReferenceId: "N2" Bindings mismatch: -after transform: ScopeId(0): ["Bins1", "Bins2", "E", "E1", "E2", "N1", "N2", "T1", "b1", "b2", "e", "e1", "e2", "x"] +after transform: ScopeId(0): ["E", "E1", "E2", "N1", "N2", "b1", "b2", "e", "e1", "e2", "x"] rebuilt : ScopeId(0): ["E1", "N1", "N2", "b1", "b2", "e", "e1", "e2", "x"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(12)] @@ -25863,10 +22488,7 @@ after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1)] rebuilt : SymbolId(0): [ReferenceId(0)] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(8)] rebuilt : ScopeId(0): [] Symbol reference IDs mismatch for "data1": @@ -25907,23 +22529,14 @@ after transform: ["Object"] rebuilt : ["Object", "union"] 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: +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/objectInstantiationFromUnionSpread.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Fail", "Item", "Success", "_objectSpread", "f1", "f2"] -rebuilt : ScopeId(0): ["_objectSpread", "f1", "f2"] -Scope children mismatch: +semantic error: 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"] Unresolved references mismatch: after transform: ["require", "true"] rebuilt : ["require"] @@ -25934,23 +22547,12 @@ after transform: ["Object", "PropertyDescriptor", "eval"] rebuilt : ["Object", "eval"] tasks/coverage/typescript/tests/cases/compiler/objectLiteralArraySpecialization.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["MyArrayWrapper", "thing"] -rebuilt : ScopeId(0): ["thing"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5)] rebuilt : ScopeId(0): [ScopeId(1)] -tasks/coverage/typescript/tests/cases/compiler/objectLiteralDeclarationGeneration1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: @@ -25976,26 +22578,17 @@ after transform: SymbolId(12): SymbolFlags(RegularEnum) rebuilt : SymbolId(9): SymbolFlags(FunctionScopedVariable) tasks/coverage/typescript/tests/cases/compiler/objectLiteralIndexerNoImplicitAny.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I", "x"] -rebuilt : ScopeId(0): ["x"] -Scope children mismatch: +semantic error: 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch for "AAA": @@ -26004,7 +22597,7 @@ rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/objectRestBindingContextualInference.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["ImageHolder", "SetupImageRefs", "SetupImages", "TestInterface", "_objectWithoutProperties", "_setupImages", "prepare", "rest", "test"] +after transform: ScopeId(0): ["_objectWithoutProperties", "_setupImages", "prepare", "rest", "test"] rebuilt : ScopeId(0): ["_objectWithoutProperties", "_setupImages", "prepare", "rest"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7)] @@ -26040,10 +22633,7 @@ after transform: ["require"] rebuilt : ["_obj", "require"] 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: +semantic error: 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)] Unresolved references mismatch: @@ -26051,10 +22641,7 @@ after transform: ["Observable", "from", "of"] rebuilt : ["from", "of"] tasks/coverage/typescript/tests/cases/compiler/omitTypeTests01.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Bar", "Baz", "Foo", "getBarA", "getBazA"] -rebuilt : ScopeId(0): ["getBarA", "getBazA"] -Scope children 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)] Unresolved references mismatch: @@ -26062,16 +22649,13 @@ after transform: ["Omit"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/optionalAccessorsInInterface1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["MyPropertyDescriptor", "MyPropertyDescriptor2"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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"] +after transform: ScopeId(0): ["a"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -26104,21 +22688,12 @@ after transform: SymbolId(3): [ReferenceId(1), ReferenceId(2)] rebuilt : SymbolId(3): [ReferenceId(1)] 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: +semantic error: 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"] tasks/coverage/typescript/tests/cases/compiler/optionalTupleElementsAndUndefined.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo", "Test", "UnNullify", "v"] -rebuilt : ScopeId(0): ["v"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -26157,18 +22732,12 @@ after transform: SymbolId(6): [ReferenceId(3)] rebuilt : SymbolId(6): [] tasks/coverage/typescript/tests/cases/compiler/overloadBindingAcrossDeclarationBoundaries.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "Opt1", "Opt2", "Opt3", "Opt4", "a", "a1"] -rebuilt : ScopeId(0): ["a", "a1"] -Scope children mismatch: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(0): [] @@ -26178,23 +22747,14 @@ 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: +semantic error: 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: +semantic error: 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"] Symbol reference IDs mismatch for "A1": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2), ReferenceId(5), ReferenceId(7)] rebuilt : SymbolId(0): [] @@ -26203,15 +22763,6 @@ tasks/coverage/typescript/tests/cases/compiler/overloadGenericFunctionWithRestAr 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: -after transform: ScopeId(2): ["U"] -rebuilt : ScopeId(2): [] -Bindings mismatch: -after transform: ScopeId(4): ["T", "v_args"] -rebuilt : ScopeId(3): ["v_args"] Symbol reference IDs mismatch for "B": after transform: SymbolId(0): [ReferenceId(1)] rebuilt : SymbolId(0): [] @@ -26220,10 +22771,7 @@ after transform: SymbolId(2): [ReferenceId(4), ReferenceId(7), ReferenceId(9)] rebuilt : SymbolId(1): [ReferenceId(0)] tasks/coverage/typescript/tests/cases/compiler/overloadOnConstConstraintChecks1.ts -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: +semantic error: 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: @@ -26293,10 +22841,7 @@ after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), Sc 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -26306,34 +22851,22 @@ 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] Scope children mismatch: @@ -26351,10 +22884,7 @@ after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), Sc 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -26365,9 +22895,6 @@ tasks/coverage/typescript/tests/cases/compiler/overloadOnGenericClassAndNonGener 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): [] Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(2), ReferenceId(9)] rebuilt : SymbolId(0): [] @@ -26404,9 +22931,9 @@ Missing ReferenceId: "Bugs" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0)] rebuilt : ScopeId(0): [SymbolId(0)] -Bindings mismatch: -after transform: ScopeId(1): ["IState", "IStateToken", "IToken", "_Bugs", "bug3"] -rebuilt : ScopeId(1): ["_Bugs", "bug3"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(4), SymbolId(6)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -26420,18 +22947,12 @@ after transform: ["RegExp"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/overloadRet.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +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)] Symbol reference IDs mismatch for "Accessor": @@ -26444,15 +22965,9 @@ after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), Sc 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: +semantic error: 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)] @@ -26461,15 +22976,9 @@ after transform: ["Exclude", "true"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/overloadedStaticMethodSpecialization.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Scope children mismatch: +semantic error: 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"] Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2), ReferenceId(5), ReferenceId(7)] rebuilt : SymbolId(0): [] @@ -26493,29 +23002,17 @@ after transform: ["Number", "String", "f"] rebuilt : ["f"] 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: +semantic error: 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"] Symbol reference IDs mismatch for "Point": after transform: SymbolId(7): [ReferenceId(2), ReferenceId(8)] rebuilt : SymbolId(4): [ReferenceId(6)] tasks/coverage/typescript/tests/cases/compiler/parameterReferenceInInitializer1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C", "Y", "fn"] -rebuilt : ScopeId(0): ["C", "fn"] -Scope children 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): ["a", "set", "y"] -rebuilt : ScopeId(1): ["set", "y"] tasks/coverage/typescript/tests/cases/compiler/parameterReferencesOtherParameter1.ts semantic error: Symbol reference IDs mismatch for "Model": @@ -26528,18 +23025,10 @@ after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/parenthesisDoesNotBlockAliasSymbolCreation.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "A2", "InvalidKeys", "InvalidKeys2", "a", "a2", "a3", "a4"] -rebuilt : ScopeId(0): ["a", "a2", "a3", "a4"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6)] rebuilt : ScopeId(0): [] -tasks/coverage/typescript/tests/cases/compiler/parseArrowFunctionWithFunctionReturnType.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] - tasks/coverage/typescript/tests/cases/compiler/parseEntityNameWithReservedWord.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["Bool", "false"] @@ -26556,14 +23045,11 @@ rebuilt : SymbolId(0): [ReferenceId(3), ReferenceId(4)] tasks/coverage/typescript/tests/cases/compiler/parseGenericArrowRatherThanLeftShift.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Bar", "T", "a", "b", "foo"] +after transform: ScopeId(0): ["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"] Unresolved references mismatch: after transform: ["ReturnType"] rebuilt : [] @@ -26580,16 +23066,13 @@ after transform: [] rebuilt : ["React"] tasks/coverage/typescript/tests/cases/compiler/parseShortform.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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"] +after transform: ScopeId(0): ["keys", "obj", "obj2"] rebuilt : ScopeId(0): ["obj", "obj2"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(7)] @@ -26605,10 +23088,7 @@ after transform: ["Partial"] rebuilt : ["keys"] tasks/coverage/typescript/tests/cases/compiler/partialTypeNarrowedToByTypeGuard.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Obj", "PartialUser", "User", "getUserName", "isUser"] -rebuilt : ScopeId(0): ["getUserName", "isUser"] -Scope children 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)] Unresolved references mismatch: @@ -26644,10 +23124,7 @@ after transform: SymbolId(0): [Span { start: 62, end: 65 }] rebuilt : SymbolId(0): [] 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: +semantic error: 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)] Symbol reference IDs mismatch for "Square": @@ -26781,54 +23258,9 @@ after transform: ScopeId(0): ["p1"] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/performanceComparisonOfStructurallyIdenticalInterfacesWithGenericSignatures.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B", "InterfaceA", "InterfaceB", "ThenArg"] -rebuilt : ScopeId(0): ["A", "B"] -Scope children mismatch: +semantic error: 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): [] -Bindings mismatch: -after transform: ScopeId(33): ["D", "callback"] -rebuilt : ScopeId(3): ["callback"] -Bindings mismatch: -after transform: ScopeId(34): ["R"] -rebuilt : ScopeId(4): [] -Bindings mismatch: -after transform: ScopeId(35): ["R"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(36): ["R"] -rebuilt : ScopeId(6): [] -Bindings mismatch: -after transform: ScopeId(37): ["R"] -rebuilt : ScopeId(7): [] -Bindings mismatch: -after transform: ScopeId(38): ["R"] -rebuilt : ScopeId(8): [] -Bindings mismatch: -after transform: ScopeId(39): ["R"] -rebuilt : ScopeId(9): [] -Bindings mismatch: -after transform: ScopeId(40): ["R"] -rebuilt : ScopeId(10): [] -Bindings mismatch: -after transform: ScopeId(41): ["R"] -rebuilt : ScopeId(11): [] -Bindings mismatch: -after transform: ScopeId(42): ["R"] -rebuilt : ScopeId(12): [] -Bindings mismatch: -after transform: ScopeId(43): ["R"] -rebuilt : ScopeId(13): [] -Bindings mismatch: -after transform: ScopeId(44): ["R"] -rebuilt : ScopeId(14): [] -Bindings mismatch: -after transform: ScopeId(45): ["T"] -rebuilt : ScopeId(15): [] Symbol reference IDs mismatch for "B": after transform: SymbolId(47): [ReferenceId(111), ReferenceId(116), ReferenceId(121), ReferenceId(126), ReferenceId(131), ReferenceId(136), ReferenceId(141), ReferenceId(146), ReferenceId(151), ReferenceId(156), ReferenceId(161), ReferenceId(166), ReferenceId(171)] rebuilt : SymbolId(3): [] @@ -26837,10 +23269,7 @@ after transform: ["PromiseLike", "undefined"] rebuilt : ["undefined"] tasks/coverage/typescript/tests/cases/compiler/pickOfLargeObjectUnionWorks.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B", "Base", "C", "HTMLDataAttributes", "xyz"] -rebuilt : ScopeId(0): ["xyz"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -26859,15 +23288,9 @@ after transform: SymbolId(0): SymbolFlags(ConstEnum) rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) 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: +semantic error: 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): [] Symbol reference IDs mismatch for "Cat": after transform: SymbolId(1): [ReferenceId(1), ReferenceId(3)] rebuilt : SymbolId(0): [ReferenceId(0)] @@ -26881,10 +23304,7 @@ after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/primitiveUnionDetection.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Kind", "result"] -rebuilt : ScopeId(0): ["result"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] @@ -27051,18 +23471,15 @@ Missing ReferenceId: "_Query" Missing ReferenceId: "fromDoWhile" Missing ReferenceId: "Query" Missing ReferenceId: "Query" -Bindings mismatch: -after transform: ScopeId(0): ["Iterator", "Query", "x"] -rebuilt : ScopeId(0): ["Query", "x"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(3)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Binding symbols mismatch: after transform: ScopeId(2): [SymbolId(4), SymbolId(7), SymbolId(9)] rebuilt : ScopeId(1): [SymbolId(2), SymbolId(3), SymbolId(5)] -Bindings mismatch: -after transform: ScopeId(3): ["T", "doWhile"] -rebuilt : ScopeId(2): ["doWhile"] Symbol flags mismatch for "fromDoWhile": after transform: SymbolId(4): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(3): SymbolFlags(FunctionScopedVariable) @@ -27083,18 +23500,15 @@ Missing ReferenceId: "Q" Missing SymbolId: "_Q2" Missing ReferenceId: "Q" Missing ReferenceId: "Q" -Bindings mismatch: -after transform: ScopeId(0): ["Iterator", "Q", "x"] -rebuilt : ScopeId(0): ["Q", "x"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(3)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Binding symbols mismatch: after transform: ScopeId(2): [SymbolId(4), SymbolId(8)] rebuilt : ScopeId(1): [SymbolId(2), SymbolId(3)] -Bindings mismatch: -after transform: ScopeId(3): ["T", "x"] -rebuilt : ScopeId(2): ["x"] Binding symbols mismatch: after transform: ScopeId(4): [SymbolId(7), SymbolId(9)] rebuilt : ScopeId(3): [SymbolId(5), SymbolId(6)] @@ -27109,15 +23523,15 @@ after transform: SymbolId(7): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(6): SymbolFlags(FunctionScopedVariable) tasks/coverage/typescript/tests/cases/compiler/privacyCheckCallbackOfInterfaceMethodWithTypeParameter.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/privacyCheckExportAssignmentOnExportedGenericInterface1.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): [] +rebuilt : ScopeId(0): ["Foo"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] rebuilt : ScopeId(0): [] Symbol flags mismatch for "Foo": @@ -27137,18 +23551,26 @@ tasks/coverage/typescript/tests/cases/compiler/privacyCheckExportAssignmentOnExp 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/privacyCheckExternalModuleExportAssignmentOfGenericClass.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["A"] -rebuilt : ScopeId(1): [] +semantic error: Missing SymbolId: "Foo" +Missing ReferenceId: "require" +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0)] +rebuilt : ScopeId(0): [SymbolId(0)] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] +Reference symbol mismatch for "Bar": +after transform: SymbolId(1) "Bar" +rebuilt : +Reference flags mismatch for "Bar": +after transform: ReferenceId(0): ReferenceFlags(Type) +rebuilt : ReferenceId(2): ReferenceFlags(Read) +Unresolved references mismatch: +after transform: ["module"] +rebuilt : ["Bar", "module", "require"] tasks/coverage/typescript/tests/cases/compiler/privacyCheckOnTypeParameterReferenceInConstructorParameter.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T1"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(3): ["T2"] -rebuilt : ScopeId(3): [] -Symbol reference IDs mismatch for "A": +semantic error: Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] @@ -27202,21 +23624,21 @@ Missing ReferenceId: "_m2" Missing ReferenceId: "m2_C12_public" Missing ReferenceId: "m2" Missing ReferenceId: "m2" -Bindings mismatch: -after transform: ScopeId(0): ["glo_C10_private", "glo_C11_public", "glo_C12_public", "glo_C1_private", "glo_C2_private", "glo_C3_public", "glo_C4_public", "glo_C5_private", "glo_C6_private", "glo_C7_public", "glo_C8_public", "glo_C9_private", "glo_c_private", "glo_c_public", "glo_i_private", "glo_i_public", "m1", "m2"] -rebuilt : ScopeId(0): ["glo_C10_private", "glo_C11_public", "glo_C12_public", "glo_C1_private", "glo_C2_private", "glo_C3_public", "glo_C4_public", "glo_C5_private", "glo_C6_private", "glo_C7_public", "glo_C8_public", "glo_C9_private", "glo_c_private", "glo_c_public", "m1", "m2"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(17), SymbolId(36), SymbolId(37), SymbolId(38), SymbolId(39), SymbolId(40), SymbolId(41), SymbolId(42), SymbolId(43), SymbolId(44), SymbolId(45), SymbolId(46), SymbolId(47), SymbolId(48), SymbolId(49)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(16), SymbolId(32), SymbolId(33), SymbolId(34), SymbolId(35), SymbolId(36), SymbolId(37), SymbolId(38), SymbolId(39), SymbolId(40), SymbolId(41), SymbolId(42), SymbolId(43), SymbolId(44), SymbolId(45)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(19), ScopeId(37), ScopeId(38), ScopeId(39), 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)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(17), ScopeId(33), 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)] -Bindings mismatch: -after transform: ScopeId(1): ["_m", "m1_C10_private", "m1_C11_public", "m1_C12_public", "m1_C1_private", "m1_C2_private", "m1_C3_public", "m1_C4_public", "m1_C5_private", "m1_C6_private", "m1_C7_public", "m1_C8_public", "m1_C9_private", "m1_c_private", "m1_c_public", "m1_i_private", "m1_i_public"] -rebuilt : ScopeId(1): ["_m", "m1_C10_private", "m1_C11_public", "m1_C12_public", "m1_C1_private", "m1_C2_private", "m1_C3_public", "m1_C4_public", "m1_C5_private", "m1_C6_private", "m1_C7_public", "m1_C8_public", "m1_C9_private", "m1_c_private", "m1_c_public"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(3), SymbolId(4), SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8), SymbolId(9), SymbolId(10), SymbolId(11), SymbolId(12), SymbolId(13), SymbolId(14), SymbolId(15), SymbolId(16), SymbolId(50)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8), SymbolId(9), SymbolId(10), SymbolId(11), SymbolId(12), SymbolId(13), SymbolId(14), SymbolId(15)] Scope children mismatch: after transform: 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)] rebuilt : ScopeId(1): [ScopeId(2), 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)] -Bindings mismatch: -after transform: ScopeId(19): ["_m2", "m2_C10_private", "m2_C11_public", "m2_C12_public", "m2_C1_private", "m2_C2_private", "m2_C3_public", "m2_C4_public", "m2_C5_private", "m2_C6_private", "m2_C7_public", "m2_C8_public", "m2_C9_private", "m2_c_private", "m2_c_public", "m2_i_private", "m2_i_public"] -rebuilt : ScopeId(17): ["_m2", "m2_C10_private", "m2_C11_public", "m2_C12_public", "m2_C1_private", "m2_C2_private", "m2_C3_public", "m2_C4_public", "m2_C5_private", "m2_C6_private", "m2_C7_public", "m2_C8_public", "m2_C9_private", "m2_c_private", "m2_c_public"] +Binding symbols mismatch: +after transform: ScopeId(19): [SymbolId(20), SymbolId(21), SymbolId(22), SymbolId(23), SymbolId(24), SymbolId(25), SymbolId(26), SymbolId(27), SymbolId(28), SymbolId(29), SymbolId(30), SymbolId(31), SymbolId(32), SymbolId(33), SymbolId(51)] +rebuilt : ScopeId(17): [SymbolId(17), SymbolId(18), SymbolId(19), SymbolId(20), SymbolId(21), SymbolId(22), SymbolId(23), SymbolId(24), SymbolId(25), SymbolId(26), SymbolId(27), SymbolId(28), SymbolId(29), SymbolId(30), SymbolId(31)] Scope children mismatch: after transform: ScopeId(19): [ScopeId(20), ScopeId(21), ScopeId(22), 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)] rebuilt : ScopeId(17): [ScopeId(18), 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)] @@ -27286,21 +23708,21 @@ Missing ReferenceId: "_privateModule" Missing ReferenceId: "publicClassImplementingFromPrivateModuleInterface" Missing ReferenceId: "privateModule" Missing ReferenceId: "privateModule" -Bindings mismatch: -after transform: ScopeId(0): ["privateClassImplementingFromPrivateModuleInterface", "privateClassImplementingPrivateInterfaceInModule", "privateClassImplementingPublicInterface", "privateInterface", "privateModule", "publicClassImplementingFromPrivateModuleInterface", "publicClassImplementingPrivateInterface", "publicClassImplementingPublicInterface", "publicInterface", "publicModule"] -rebuilt : ScopeId(0): ["privateClassImplementingFromPrivateModuleInterface", "privateClassImplementingPrivateInterfaceInModule", "privateClassImplementingPublicInterface", "privateModule", "publicClassImplementingFromPrivateModuleInterface", "publicClassImplementingPrivateInterface", "publicClassImplementingPublicInterface", "publicModule"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(10), SymbolId(21), SymbolId(22), SymbolId(23), SymbolId(24), SymbolId(25), SymbolId(26)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(9), SymbolId(17), SymbolId(18), SymbolId(19), SymbolId(20), SymbolId(21), SymbolId(22)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(11), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(9), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21)] -Bindings mismatch: -after transform: ScopeId(1): ["_publicModule", "privateClassImplementingFromPrivateModuleInterface", "privateClassImplementingPrivateInterfaceInModule", "privateClassImplementingPublicInterfaceInModule", "privateInterfaceInPublicModule", "publicClassImplementingFromPrivateModuleInterface", "publicClassImplementingPrivateAndPublicInterface", "publicClassImplementingPrivateInterfaceInModule", "publicClassImplementingPublicInterfaceInModule", "publicInterfaceInPublicModule"] -rebuilt : ScopeId(1): ["_publicModule", "privateClassImplementingFromPrivateModuleInterface", "privateClassImplementingPrivateInterfaceInModule", "privateClassImplementingPublicInterfaceInModule", "publicClassImplementingFromPrivateModuleInterface", "publicClassImplementingPrivateAndPublicInterface", "publicClassImplementingPrivateInterfaceInModule", "publicClassImplementingPublicInterfaceInModule"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(3), SymbolId(4), SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8), SymbolId(9), SymbolId(27)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8)] 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), ScopeId(6), ScopeId(7), ScopeId(8)] -Bindings mismatch: -after transform: ScopeId(11): ["_privateModule", "privateClassImplementingFromPrivateModuleInterface", "privateClassImplementingPrivateInterfaceInModule", "privateClassImplementingPublicInterfaceInModule", "privateInterfaceInPrivateModule", "publicClassImplementingFromPrivateModuleInterface", "publicClassImplementingPrivateInterfaceInModule", "publicClassImplementingPublicInterfaceInModule", "publicInterfaceInPrivateModule"] -rebuilt : ScopeId(9): ["_privateModule", "privateClassImplementingFromPrivateModuleInterface", "privateClassImplementingPrivateInterfaceInModule", "privateClassImplementingPublicInterfaceInModule", "publicClassImplementingFromPrivateModuleInterface", "publicClassImplementingPrivateInterfaceInModule", "publicClassImplementingPublicInterfaceInModule"] +Binding symbols mismatch: +after transform: ScopeId(11): [SymbolId(13), SymbolId(14), SymbolId(15), SymbolId(16), SymbolId(17), SymbolId(18), SymbolId(28)] +rebuilt : ScopeId(9): [SymbolId(10), SymbolId(11), SymbolId(12), SymbolId(13), SymbolId(14), SymbolId(15), SymbolId(16)] Scope children mismatch: after transform: ScopeId(11): [ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19)] rebuilt : ScopeId(9): [ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15)] @@ -27462,21 +23884,21 @@ Missing ReferenceId: "_privateModule" Missing ReferenceId: "publicFunctionWithPrivateModuleParameterTypes" Missing ReferenceId: "privateModule" Missing ReferenceId: "privateModule" -Bindings mismatch: -after transform: ScopeId(0): ["privateClass", "privateClassWithPrivateModuleParameterTypes", "privateClassWithWithPrivateParmeterTypes", "privateClassWithWithPublicParmeterTypes", "privateFunctionWithPrivateModuleParameterTypes", "privateFunctionWithPrivateParmeterTypes", "privateFunctionWithPublicParmeterTypes", "privateInterfaceWithPrivateModuleParameterTypes", "privateInterfaceWithPrivateParmeterTypes", "privateInterfaceWithPublicParmeterTypes", "privateModule", "publicClass", "publicClassWithPrivateModuleParameterTypes", "publicClassWithWithPrivateParmeterTypes", "publicClassWithWithPublicParmeterTypes", "publicFunctionWithPrivateModuleParameterTypes", "publicFunctionWithPrivateParmeterTypes", "publicFunctionWithPublicParmeterTypes", "publicInterfaceWithPrivateModuleParameterTypes", "publicInterfaceWithPrivateParmeterTypes", "publicInterfaceWithPublicParmeterTypes", "publicModule"] -rebuilt : ScopeId(0): ["privateClass", "privateClassWithPrivateModuleParameterTypes", "privateClassWithWithPrivateParmeterTypes", "privateClassWithWithPublicParmeterTypes", "privateFunctionWithPrivateModuleParameterTypes", "privateFunctionWithPrivateParmeterTypes", "privateFunctionWithPublicParmeterTypes", "privateModule", "publicClass", "publicClassWithPrivateModuleParameterTypes", "publicClassWithWithPrivateParmeterTypes", "publicClassWithWithPublicParmeterTypes", "publicFunctionWithPrivateModuleParameterTypes", "publicFunctionWithPrivateParmeterTypes", "publicFunctionWithPublicParmeterTypes", "publicModule"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(6), SymbolId(14), SymbolId(22), SymbolId(30), SymbolId(38), SymbolId(40), SymbolId(42), SymbolId(44), SymbolId(51), SymbolId(57), SymbolId(61), SymbolId(67), SymbolId(70), SymbolId(141)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(10), SymbolId(18), SymbolId(26), SymbolId(34), SymbolId(36), SymbolId(38), SymbolId(40), SymbolId(42), SymbolId(48), SymbolId(50), SymbolId(56), SymbolId(58), SymbolId(118)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(9), ScopeId(12), ScopeId(15), ScopeId(21), ScopeId(27), ScopeId(33), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(50), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(59), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(130)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(9), ScopeId(15), ScopeId(21), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(35), ScopeId(36), ScopeId(40), ScopeId(41), ScopeId(82)] -Bindings mismatch: -after transform: ScopeId(65): ["_publicModule", "privateClass", "privateClassWithPrivateModuleParameterTypes", "privateClassWithWithPrivateParmeterTypes", "privateClassWithWithPublicParmeterTypes", "privateFunctionWithPrivateModuleParameterTypes", "privateFunctionWithPrivateParmeterTypes", "privateFunctionWithPublicParmeterTypes", "privateInterfaceWithPrivateModuleParameterTypes", "privateInterfaceWithPrivateParmeterTypes", "privateInterfaceWithPublicParmeterTypes", "publicClass", "publicClassWithPrivateModuleParameterTypes", "publicClassWithWithPrivateParmeterTypes", "publicClassWithWithPublicParmeterTypes", "publicFunctionWithPrivateModuleParameterTypes", "publicFunctionWithPrivateParmeterTypes", "publicFunctionWithPublicParmeterTypes", "publicInterfaceWithPrivateModuleParameterTypes", "publicInterfaceWithPrivateParmeterTypes", "publicInterfaceWithPublicParmeterTypes"] -rebuilt : ScopeId(41): ["_publicModule", "privateClass", "privateClassWithPrivateModuleParameterTypes", "privateClassWithWithPrivateParmeterTypes", "privateClassWithWithPublicParmeterTypes", "privateFunctionWithPrivateModuleParameterTypes", "privateFunctionWithPrivateParmeterTypes", "privateFunctionWithPublicParmeterTypes", "publicClass", "publicClassWithPrivateModuleParameterTypes", "publicClassWithWithPrivateParmeterTypes", "publicClassWithWithPublicParmeterTypes", "publicFunctionWithPrivateModuleParameterTypes", "publicFunctionWithPrivateParmeterTypes", "publicFunctionWithPublicParmeterTypes"] +Binding symbols mismatch: +after transform: ScopeId(65): [SymbolId(71), SymbolId(72), SymbolId(77), SymbolId(85), SymbolId(93), SymbolId(101), SymbolId(109), SymbolId(111), SymbolId(113), SymbolId(115), SymbolId(122), SymbolId(128), SymbolId(132), SymbolId(138), SymbolId(212)] +rebuilt : ScopeId(41): [SymbolId(59), SymbolId(60), SymbolId(61), SymbolId(62), SymbolId(70), SymbolId(78), SymbolId(86), SymbolId(94), SymbolId(96), SymbolId(98), SymbolId(100), SymbolId(102), SymbolId(108), SymbolId(110), SymbolId(116)] Scope children mismatch: after transform: ScopeId(65): [ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(71), ScopeId(74), ScopeId(77), ScopeId(80), ScopeId(86), ScopeId(92), ScopeId(98), ScopeId(104), ScopeId(105), ScopeId(106), ScopeId(107), ScopeId(108), ScopeId(109), ScopeId(110), ScopeId(111), ScopeId(112), ScopeId(115), ScopeId(119), ScopeId(120), ScopeId(121), ScopeId(124), ScopeId(128), ScopeId(129)] rebuilt : ScopeId(41): [ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(50), ScopeId(56), ScopeId(62), ScopeId(68), ScopeId(69), ScopeId(70), ScopeId(71), ScopeId(72), ScopeId(76), ScopeId(77), ScopeId(81)] -Bindings mismatch: -after transform: ScopeId(130): ["_privateModule", "privateClass", "privateClassWithPrivateModuleParameterTypes", "privateClassWithWithPrivateParmeterTypes", "privateClassWithWithPublicParmeterTypes", "privateFunctionWithPrivateModuleParameterTypes", "privateFunctionWithPrivateParmeterTypes", "privateFunctionWithPublicParmeterTypes", "privateInterfaceWithPrivateModuleParameterTypes", "privateInterfaceWithPrivateParmeterTypes", "privateInterfaceWithPublicParmeterTypes", "publicClass", "publicClassWithPrivateModuleParameterTypes", "publicClassWithWithPrivateParmeterTypes", "publicClassWithWithPublicParmeterTypes", "publicFunctionWithPrivateModuleParameterTypes", "publicFunctionWithPrivateParmeterTypes", "publicFunctionWithPublicParmeterTypes", "publicInterfaceWithPrivateModuleParameterTypes", "publicInterfaceWithPrivateParmeterTypes", "publicInterfaceWithPublicParmeterTypes"] -rebuilt : ScopeId(82): ["_privateModule", "privateClass", "privateClassWithPrivateModuleParameterTypes", "privateClassWithWithPrivateParmeterTypes", "privateClassWithWithPublicParmeterTypes", "privateFunctionWithPrivateModuleParameterTypes", "privateFunctionWithPrivateParmeterTypes", "privateFunctionWithPublicParmeterTypes", "publicClass", "publicClassWithPrivateModuleParameterTypes", "publicClassWithWithPrivateParmeterTypes", "publicClassWithWithPublicParmeterTypes", "publicFunctionWithPrivateModuleParameterTypes", "publicFunctionWithPrivateParmeterTypes", "publicFunctionWithPublicParmeterTypes"] +Binding symbols mismatch: +after transform: ScopeId(130): [SymbolId(142), SymbolId(143), SymbolId(148), SymbolId(156), SymbolId(164), SymbolId(172), SymbolId(180), SymbolId(182), SymbolId(184), SymbolId(186), SymbolId(193), SymbolId(199), SymbolId(203), SymbolId(209), SymbolId(213)] +rebuilt : ScopeId(82): [SymbolId(119), SymbolId(120), SymbolId(121), SymbolId(122), SymbolId(130), SymbolId(138), SymbolId(146), SymbolId(154), SymbolId(156), SymbolId(158), SymbolId(160), SymbolId(162), SymbolId(168), SymbolId(170), SymbolId(176)] Scope children mismatch: after transform: ScopeId(130): [ScopeId(131), ScopeId(132), ScopeId(133), ScopeId(136), ScopeId(139), ScopeId(142), ScopeId(145), ScopeId(151), ScopeId(157), ScopeId(163), ScopeId(169), ScopeId(170), ScopeId(171), ScopeId(172), ScopeId(173), ScopeId(174), ScopeId(175), ScopeId(176), ScopeId(177), ScopeId(180), ScopeId(184), ScopeId(185), ScopeId(186), ScopeId(189), ScopeId(193), ScopeId(194)] rebuilt : ScopeId(82): [ScopeId(83), ScopeId(84), ScopeId(85), ScopeId(91), ScopeId(97), ScopeId(103), ScopeId(109), ScopeId(110), ScopeId(111), ScopeId(112), ScopeId(113), ScopeId(117), ScopeId(118), ScopeId(122)] @@ -27623,21 +24045,21 @@ Missing ReferenceId: "_privateModule" Missing ReferenceId: "publicFunctionWithPrivateModuleParameterTypes1" Missing ReferenceId: "privateModule" Missing ReferenceId: "privateModule" -Bindings mismatch: -after transform: ScopeId(0): ["privateClass", "privateClassWithPrivateModuleParameterTypes", "privateClassWithWithPrivateParmeterTypes", "privateClassWithWithPublicParmeterTypes", "privateFunctionWithPrivateModuleParameterTypes", "privateFunctionWithPrivateModuleParameterTypes1", "privateFunctionWithPrivateParmeterTypes", "privateFunctionWithPrivateParmeterTypes1", "privateFunctionWithPublicParmeterTypes", "privateFunctionWithPublicParmeterTypes1", "privateInterfaceWithPrivateModuleParameterTypes", "privateInterfaceWithPrivateParmeterTypes", "privateInterfaceWithPublicParmeterTypes", "privateModule", "publicClass", "publicClassWithPrivateModuleParameterTypes", "publicClassWithWithPrivateParmeterTypes", "publicClassWithWithPublicParmeterTypes", "publicFunctionWithPrivateModuleParameterTypes", "publicFunctionWithPrivateModuleParameterTypes1", "publicFunctionWithPrivateParmeterTypes", "publicFunctionWithPrivateParmeterTypes1", "publicFunctionWithPublicParmeterTypes", "publicFunctionWithPublicParmeterTypes1", "publicInterfaceWithPrivateModuleParameterTypes", "publicInterfaceWithPrivateParmeterTypes", "publicInterfaceWithPublicParmeterTypes", "publicModule"] -rebuilt : ScopeId(0): ["privateClass", "privateClassWithPrivateModuleParameterTypes", "privateClassWithWithPrivateParmeterTypes", "privateClassWithWithPublicParmeterTypes", "privateFunctionWithPrivateModuleParameterTypes", "privateFunctionWithPrivateModuleParameterTypes1", "privateFunctionWithPrivateParmeterTypes", "privateFunctionWithPrivateParmeterTypes1", "privateFunctionWithPublicParmeterTypes", "privateFunctionWithPublicParmeterTypes1", "privateModule", "publicClass", "publicClassWithPrivateModuleParameterTypes", "publicClassWithWithPrivateParmeterTypes", "publicClassWithWithPublicParmeterTypes", "publicFunctionWithPrivateModuleParameterTypes", "publicFunctionWithPrivateModuleParameterTypes1", "publicFunctionWithPrivateParmeterTypes", "publicFunctionWithPrivateParmeterTypes1", "publicFunctionWithPublicParmeterTypes", "publicFunctionWithPublicParmeterTypes1", "publicModule"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(6), SymbolId(7), SymbolId(8), SymbolId(9), SymbolId(10), SymbolId(11), SymbolId(12), SymbolId(13), SymbolId(14), SymbolId(15), SymbolId(16), SymbolId(17), SymbolId(19), SymbolId(20), SymbolId(21), SymbolId(23), SymbolId(24), SymbolId(25), SymbolId(26), SymbolId(53)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8), SymbolId(9), SymbolId(10), SymbolId(11), SymbolId(12), SymbolId(13), SymbolId(14), SymbolId(15), SymbolId(16), SymbolId(17), SymbolId(18), SymbolId(19), SymbolId(20), SymbolId(42)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(9), ScopeId(12), ScopeId(15), ScopeId(24), ScopeId(33), ScopeId(42), 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(66), ScopeId(71), ScopeId(72), ScopeId(73), ScopeId(74), ScopeId(77), ScopeId(82), ScopeId(83), ScopeId(84), ScopeId(85), ScopeId(170)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(12), ScopeId(21), ScopeId(30), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(122)] -Bindings mismatch: -after transform: ScopeId(85): ["_publicModule", "privateClass", "privateClassWithPrivateModuleParameterTypes", "privateClassWithWithPrivateParmeterTypes", "privateClassWithWithPublicParmeterTypes", "privateFunctionWithPrivateModuleParameterTypes", "privateFunctionWithPrivateModuleParameterTypes1", "privateFunctionWithPrivateParmeterTypes", "privateFunctionWithPrivateParmeterTypes1", "privateFunctionWithPublicParmeterTypes", "privateFunctionWithPublicParmeterTypes1", "privateInterfaceWithPrivateModuleParameterTypes", "privateInterfaceWithPrivateParmeterTypes", "privateInterfaceWithPublicParmeterTypes", "publicClass", "publicClassWithPrivateModuleParameterTypes", "publicClassWithWithPrivateParmeterTypes", "publicClassWithWithPublicParmeterTypes", "publicFunctionWithPrivateModuleParameterTypes", "publicFunctionWithPrivateModuleParameterTypes1", "publicFunctionWithPrivateParmeterTypes", "publicFunctionWithPrivateParmeterTypes1", "publicFunctionWithPublicParmeterTypes", "publicFunctionWithPublicParmeterTypes1", "publicInterfaceWithPrivateModuleParameterTypes", "publicInterfaceWithPrivateParmeterTypes", "publicInterfaceWithPublicParmeterTypes"] -rebuilt : ScopeId(61): ["_publicModule", "privateClass", "privateClassWithPrivateModuleParameterTypes", "privateClassWithWithPrivateParmeterTypes", "privateClassWithWithPublicParmeterTypes", "privateFunctionWithPrivateModuleParameterTypes", "privateFunctionWithPrivateModuleParameterTypes1", "privateFunctionWithPrivateParmeterTypes", "privateFunctionWithPrivateParmeterTypes1", "privateFunctionWithPublicParmeterTypes", "privateFunctionWithPublicParmeterTypes1", "publicClass", "publicClassWithPrivateModuleParameterTypes", "publicClassWithWithPrivateParmeterTypes", "publicClassWithWithPublicParmeterTypes", "publicFunctionWithPrivateModuleParameterTypes", "publicFunctionWithPrivateModuleParameterTypes1", "publicFunctionWithPrivateParmeterTypes", "publicFunctionWithPrivateParmeterTypes1", "publicFunctionWithPublicParmeterTypes", "publicFunctionWithPublicParmeterTypes1"] +Binding symbols mismatch: +after transform: ScopeId(85): [SymbolId(27), SymbolId(28), SymbolId(33), SymbolId(34), SymbolId(35), SymbolId(36), SymbolId(37), SymbolId(38), SymbolId(39), SymbolId(40), SymbolId(41), SymbolId(42), SymbolId(43), SymbolId(44), SymbolId(46), SymbolId(47), SymbolId(48), SymbolId(50), SymbolId(51), SymbolId(52), SymbolId(80)] +rebuilt : ScopeId(61): [SymbolId(21), SymbolId(22), SymbolId(23), SymbolId(24), SymbolId(25), SymbolId(26), SymbolId(27), SymbolId(28), SymbolId(29), SymbolId(30), SymbolId(31), SymbolId(32), SymbolId(33), SymbolId(34), SymbolId(35), SymbolId(36), SymbolId(37), SymbolId(38), SymbolId(39), SymbolId(40), SymbolId(41)] Scope children mismatch: after transform: ScopeId(85): [ScopeId(86), ScopeId(87), ScopeId(88), ScopeId(91), ScopeId(94), ScopeId(97), ScopeId(100), ScopeId(109), ScopeId(118), ScopeId(127), ScopeId(136), ScopeId(137), ScopeId(138), ScopeId(139), ScopeId(140), ScopeId(141), ScopeId(142), ScopeId(143), ScopeId(144), ScopeId(145), ScopeId(146), ScopeId(147), ScopeId(148), ScopeId(151), ScopeId(156), ScopeId(157), ScopeId(158), ScopeId(159), ScopeId(162), ScopeId(167), ScopeId(168), ScopeId(169)] rebuilt : ScopeId(61): [ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(73), ScopeId(82), ScopeId(91), ScopeId(100), ScopeId(101), ScopeId(102), ScopeId(103), ScopeId(104), ScopeId(105), ScopeId(106), ScopeId(107), ScopeId(108), ScopeId(113), ScopeId(114), ScopeId(115), ScopeId(120), ScopeId(121)] -Bindings mismatch: -after transform: ScopeId(170): ["_privateModule", "privateClass", "privateClassWithPrivateModuleParameterTypes", "privateClassWithWithPrivateParmeterTypes", "privateClassWithWithPublicParmeterTypes", "privateFunctionWithPrivateModuleParameterTypes", "privateFunctionWithPrivateModuleParameterTypes1", "privateFunctionWithPrivateParmeterTypes", "privateFunctionWithPrivateParmeterTypes1", "privateFunctionWithPublicParmeterTypes", "privateFunctionWithPublicParmeterTypes1", "privateInterfaceWithPrivateModuleParameterTypes", "privateInterfaceWithPrivateParmeterTypes", "privateInterfaceWithPublicParmeterTypes", "publicClass", "publicClassWithPrivateModuleParameterTypes", "publicClassWithWithPrivateParmeterTypes", "publicClassWithWithPublicParmeterTypes", "publicFunctionWithPrivateModuleParameterTypes", "publicFunctionWithPrivateModuleParameterTypes1", "publicFunctionWithPrivateParmeterTypes", "publicFunctionWithPrivateParmeterTypes1", "publicFunctionWithPublicParmeterTypes", "publicFunctionWithPublicParmeterTypes1", "publicInterfaceWithPrivateModuleParameterTypes", "publicInterfaceWithPrivateParmeterTypes", "publicInterfaceWithPublicParmeterTypes"] -rebuilt : ScopeId(122): ["_privateModule", "privateClass", "privateClassWithPrivateModuleParameterTypes", "privateClassWithWithPrivateParmeterTypes", "privateClassWithWithPublicParmeterTypes", "privateFunctionWithPrivateModuleParameterTypes", "privateFunctionWithPrivateModuleParameterTypes1", "privateFunctionWithPrivateParmeterTypes", "privateFunctionWithPrivateParmeterTypes1", "privateFunctionWithPublicParmeterTypes", "privateFunctionWithPublicParmeterTypes1", "publicClass", "publicClassWithPrivateModuleParameterTypes", "publicClassWithWithPrivateParmeterTypes", "publicClassWithWithPublicParmeterTypes", "publicFunctionWithPrivateModuleParameterTypes", "publicFunctionWithPrivateModuleParameterTypes1", "publicFunctionWithPrivateParmeterTypes", "publicFunctionWithPrivateParmeterTypes1", "publicFunctionWithPublicParmeterTypes", "publicFunctionWithPublicParmeterTypes1"] +Binding symbols mismatch: +after transform: ScopeId(170): [SymbolId(54), SymbolId(55), SymbolId(60), SymbolId(61), SymbolId(62), SymbolId(63), SymbolId(64), SymbolId(65), SymbolId(66), SymbolId(67), SymbolId(68), SymbolId(69), SymbolId(70), SymbolId(71), SymbolId(73), SymbolId(74), SymbolId(75), SymbolId(77), SymbolId(78), SymbolId(79), SymbolId(81)] +rebuilt : ScopeId(122): [SymbolId(43), SymbolId(44), SymbolId(45), SymbolId(46), SymbolId(47), SymbolId(48), SymbolId(49), SymbolId(50), SymbolId(51), SymbolId(52), SymbolId(53), SymbolId(54), SymbolId(55), SymbolId(56), SymbolId(57), SymbolId(58), SymbolId(59), SymbolId(60), SymbolId(61), SymbolId(62), SymbolId(63)] Scope children mismatch: after transform: ScopeId(170): [ScopeId(171), ScopeId(172), ScopeId(173), ScopeId(176), ScopeId(179), ScopeId(182), ScopeId(185), ScopeId(194), ScopeId(203), ScopeId(212), ScopeId(221), ScopeId(222), ScopeId(223), ScopeId(224), ScopeId(225), ScopeId(226), ScopeId(227), ScopeId(228), ScopeId(229), ScopeId(230), ScopeId(231), ScopeId(232), ScopeId(233), ScopeId(236), ScopeId(241), ScopeId(242), ScopeId(243), ScopeId(244), ScopeId(247), ScopeId(252), ScopeId(253), ScopeId(254)] rebuilt : ScopeId(122): [ScopeId(123), ScopeId(124), ScopeId(125), ScopeId(134), ScopeId(143), ScopeId(152), ScopeId(161), ScopeId(162), ScopeId(163), ScopeId(164), ScopeId(165), ScopeId(166), ScopeId(167), ScopeId(168), ScopeId(169), ScopeId(174), ScopeId(175), ScopeId(176), ScopeId(181), ScopeId(182)] @@ -27913,15 +24335,15 @@ Missing ReferenceId: "_m" Missing ReferenceId: "m1_C12_public" Missing ReferenceId: "m1" Missing ReferenceId: "m1" -Bindings mismatch: -after transform: ScopeId(0): ["glo_C11_public", "glo_C3_public", "glo_C7_public", "glo_c_public", "glo_i_public", "m1"] -rebuilt : ScopeId(0): ["glo_C11_public", "glo_C3_public", "glo_C7_public", "glo_c_public", "m1"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(18), SymbolId(19), SymbolId(20), SymbolId(21)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(16), SymbolId(17), SymbolId(18), SymbolId(19)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(19), ScopeId(20), ScopeId(22), ScopeId(23), ScopeId(24)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(17), ScopeId(19), ScopeId(20), ScopeId(21)] -Bindings mismatch: -after transform: ScopeId(1): ["_m", "m1_C10_private", "m1_C11_public", "m1_C12_public", "m1_C1_private", "m1_C2_private", "m1_C3_public", "m1_C4_public", "m1_C5_private", "m1_C6_private", "m1_C7_public", "m1_C8_public", "m1_C9_private", "m1_c_private", "m1_c_public", "m1_i_private", "m1_i_public"] -rebuilt : ScopeId(1): ["_m", "m1_C10_private", "m1_C11_public", "m1_C12_public", "m1_C1_private", "m1_C2_private", "m1_C3_public", "m1_C4_public", "m1_C5_private", "m1_C6_private", "m1_C7_public", "m1_C8_public", "m1_C9_private", "m1_c_private", "m1_c_public"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(3), SymbolId(4), SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8), SymbolId(9), SymbolId(10), SymbolId(11), SymbolId(12), SymbolId(13), SymbolId(14), SymbolId(15), SymbolId(16), SymbolId(22)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8), SymbolId(9), SymbolId(10), SymbolId(11), SymbolId(12), SymbolId(13), SymbolId(14), SymbolId(15)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -28226,14 +24648,14 @@ Missing ReferenceId: "C1_public" Missing ReferenceId: "m1" Missing ReferenceId: "m1" Bindings mismatch: -after transform: ScopeId(0): ["C5_public", "C7_public", "glo_C3_public", "glo_i_public", "m1", "m3"] +after transform: ScopeId(0): ["C5_public", "m1", "m3"] rebuilt : ScopeId(0): ["C5_public", "m1"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(23), ScopeId(25), ScopeId(30), ScopeId(41), ScopeId(43)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(5)] -Bindings mismatch: -after transform: ScopeId(1): ["C1_public", "C2_private", "C3_public", "C4_private", "_m"] -rebuilt : ScopeId(1): ["C1_public", "C2_private", "_m"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(18)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -28302,20 +24724,20 @@ Missing ReferenceId: "C1_public" Missing ReferenceId: "m2" Missing ReferenceId: "m2" Bindings mismatch: -after transform: ScopeId(0): ["C5_public", "C6_private", "C7_public", "C8_private", "glo_C1_private", "glo_C2_private", "glo_C3_public", "glo_C4_public", "glo_C5_private", "glo_C6_public", "glo_i_private", "glo_i_public", "m1", "m2", "m3", "m4"] +after transform: ScopeId(0): ["C5_public", "C6_private", "m1", "m2", "m3", "m4"] rebuilt : ScopeId(0): ["C5_public", "C6_private", "m1", "m2"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(23), ScopeId(45), ScopeId(47), ScopeId(48), ScopeId(57), ScopeId(66), ScopeId(77), ScopeId(88), ScopeId(90), ScopeId(92), ScopeId(93), ScopeId(94), ScopeId(95), ScopeId(96), ScopeId(97)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(9), ScopeId(11)] -Bindings mismatch: -after transform: ScopeId(1): ["C1_public", "C2_private", "C3_public", "C4_private", "_m"] -rebuilt : ScopeId(1): ["C1_public", "C2_private", "_m"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(40)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3)] Scope children mismatch: after transform: ScopeId(1): [ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(14)] rebuilt : ScopeId(1): [ScopeId(2), ScopeId(4)] -Bindings mismatch: -after transform: ScopeId(23): ["C1_public", "C2_private", "C3_public", "C4_private", "_m2"] -rebuilt : ScopeId(5): ["C1_public", "C2_private", "_m2"] +Binding symbols mismatch: +after transform: ScopeId(23): [SymbolId(6), SymbolId(7), SymbolId(41)] +rebuilt : ScopeId(5): [SymbolId(5), SymbolId(6), SymbolId(7)] Scope children mismatch: after transform: ScopeId(23): [ScopeId(24), ScopeId(26), ScopeId(27), ScopeId(36)] rebuilt : ScopeId(5): [ScopeId(6), ScopeId(8)] @@ -28340,7 +24762,7 @@ rebuilt : SymbolId(9): [] tasks/coverage/typescript/tests/cases/compiler/privacyInterfaceExtendsClauseDeclFile.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["privateInterface", "privateInterfaceImplementingFromPrivateModuleInterface", "privateInterfaceImplementingPrivateInterfaceInModule", "privateInterfaceImplementingPublicInterface", "privateModule", "publicInterface", "publicInterfaceImplementingFromPrivateModuleInterface", "publicInterfaceImplementingPrivateInterface", "publicInterfaceImplementingPublicInterface", "publicModule"] +after transform: ScopeId(0): ["privateModule", "publicModule"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(11), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27)] @@ -28422,102 +24844,9 @@ 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 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: +semantic error: 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): [] -Bindings mismatch: -after transform: ScopeId(17): ["T"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(18): ["T"] -rebuilt : ScopeId(6): [] -Bindings mismatch: -after transform: ScopeId(19): ["T"] -rebuilt : ScopeId(7): [] -Bindings mismatch: -after transform: ScopeId(21): ["T"] -rebuilt : ScopeId(9): [] -Bindings mismatch: -after transform: ScopeId(22): ["T"] -rebuilt : ScopeId(10): [] -Bindings mismatch: -after transform: ScopeId(23): ["T"] -rebuilt : ScopeId(11): [] -Bindings mismatch: -after transform: ScopeId(24): ["T"] -rebuilt : ScopeId(12): [] -Bindings mismatch: -after transform: ScopeId(26): ["T"] -rebuilt : ScopeId(14): [] -Bindings mismatch: -after transform: ScopeId(27): ["T"] -rebuilt : ScopeId(15): [] -Bindings mismatch: -after transform: ScopeId(28): ["T"] -rebuilt : ScopeId(16): [] -Bindings mismatch: -after transform: ScopeId(29): ["T"] -rebuilt : ScopeId(17): [] -Bindings mismatch: -after transform: ScopeId(31): ["T"] -rebuilt : ScopeId(19): [] -Bindings mismatch: -after transform: ScopeId(32): ["T"] -rebuilt : ScopeId(20): [] -Bindings mismatch: -after transform: ScopeId(33): ["T"] -rebuilt : ScopeId(21): [] -Bindings mismatch: -after transform: ScopeId(34): ["T"] -rebuilt : ScopeId(22): [] -Bindings mismatch: -after transform: ScopeId(35): ["T"] -rebuilt : ScopeId(23): [] -Bindings mismatch: -after transform: ScopeId(36): ["T"] -rebuilt : ScopeId(24): [] -Bindings mismatch: -after transform: ScopeId(37): ["T"] -rebuilt : ScopeId(25): [] -Bindings mismatch: -after transform: ScopeId(38): ["T"] -rebuilt : ScopeId(26): [] -Bindings mismatch: -after transform: ScopeId(46): ["T"] -rebuilt : ScopeId(28): [] -Bindings mismatch: -after transform: ScopeId(47): ["T"] -rebuilt : ScopeId(29): [] -Bindings mismatch: -after transform: ScopeId(48): ["T"] -rebuilt : ScopeId(30): [] -Bindings mismatch: -after transform: ScopeId(49): ["T"] -rebuilt : ScopeId(31): [] -Bindings mismatch: -after transform: ScopeId(51): ["T"] -rebuilt : ScopeId(33): [] -Bindings mismatch: -after transform: ScopeId(52): ["T"] -rebuilt : ScopeId(34): [] -Bindings mismatch: -after transform: ScopeId(53): ["T"] -rebuilt : ScopeId(35): [] -Bindings mismatch: -after transform: ScopeId(54): ["T"] -rebuilt : ScopeId(36): [] -Bindings mismatch: -after transform: ScopeId(55): ["T"] -rebuilt : ScopeId(37): [] -Bindings mismatch: -after transform: ScopeId(56): ["T"] -rebuilt : ScopeId(38): [] Symbol reference IDs mismatch for "privateClass": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2), ReferenceId(3), ReferenceId(4), ReferenceId(5), ReferenceId(12), ReferenceId(13), ReferenceId(14), ReferenceId(15), ReferenceId(16), ReferenceId(17), ReferenceId(24), ReferenceId(25), ReferenceId(26), ReferenceId(27), ReferenceId(32), ReferenceId(33), ReferenceId(34), ReferenceId(35), ReferenceId(40), ReferenceId(42)] rebuilt : SymbolId(0): [] @@ -28566,330 +24895,24 @@ Missing ReferenceId: "_privateModule" Missing ReferenceId: "publicFunctionWithPublicTypeParametersWithoutExtends" Missing ReferenceId: "privateModule" Missing ReferenceId: "privateModule" -Bindings mismatch: -after transform: ScopeId(0): ["privateClass", "privateClassWithWithPrivateModuleTypeParameters", "privateClassWithWithPrivateTypeParameters", "privateClassWithWithPublicTypeParameters", "privateClassWithWithPublicTypeParametersWithoutExtends", "privateFunctionWithPrivateMopduleTypeParameters", "privateFunctionWithPrivateTypeParameters", "privateFunctionWithPublicTypeParameters", "privateFunctionWithPublicTypeParametersWithoutExtends", "privateInterfaceWithPrivatModuleTypeParameters", "privateInterfaceWithPrivateTypeParameters", "privateInterfaceWithPublicTypeParameters", "privateInterfaceWithPublicTypeParametersWithoutExtends", "privateModule", "publicClass", "publicClassWithWithPrivateModuleTypeParameters", "publicClassWithWithPrivateTypeParameters", "publicClassWithWithPublicTypeParameters", "publicClassWithWithPublicTypeParametersWithoutExtends", "publicFunctionWithPrivateMopduleTypeParameters", "publicFunctionWithPrivateTypeParameters", "publicFunctionWithPublicTypeParameters", "publicFunctionWithPublicTypeParametersWithoutExtends", "publicInterfaceWithPrivatModuleTypeParameters", "publicInterfaceWithPrivateTypeParameters", "publicInterfaceWithPublicTypeParameters", "publicInterfaceWithPublicTypeParametersWithoutExtends", "publicModule"] -rebuilt : ScopeId(0): ["privateClass", "privateClassWithWithPrivateModuleTypeParameters", "privateClassWithWithPrivateTypeParameters", "privateClassWithWithPublicTypeParameters", "privateClassWithWithPublicTypeParametersWithoutExtends", "privateFunctionWithPrivateMopduleTypeParameters", "privateFunctionWithPrivateTypeParameters", "privateFunctionWithPublicTypeParameters", "privateFunctionWithPublicTypeParametersWithoutExtends", "privateModule", "publicClass", "publicClassWithWithPrivateModuleTypeParameters", "publicClassWithWithPrivateTypeParameters", "publicClassWithWithPublicTypeParameters", "publicClassWithWithPublicTypeParametersWithoutExtends", "publicFunctionWithPrivateMopduleTypeParameters", "publicFunctionWithPrivateTypeParameters", "publicFunctionWithPublicTypeParameters", "publicFunctionWithPublicTypeParametersWithoutExtends", "publicModule"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(18), SymbolId(23), SymbolId(28), SymbolId(33), SymbolId(38), SymbolId(40), SymbolId(42), SymbolId(44), SymbolId(54), SymbolId(59), SymbolId(64), SymbolId(66), SymbolId(72), SymbolId(75), SymbolId(81), SymbolId(84), SymbolId(86), SymbolId(173)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8), SymbolId(9), SymbolId(10), SymbolId(11), SymbolId(12), SymbolId(13), SymbolId(14), SymbolId(15), SymbolId(16), SymbolId(17), SymbolId(18), SymbolId(38)] 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), ScopeId(57), ScopeId(60), ScopeId(63), ScopeId(64), ScopeId(67), ScopeId(70), ScopeId(71), ScopeId(142)] 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), ScopeId(39), ScopeId(42), ScopeId(43), ScopeId(46), ScopeId(47), ScopeId(94)] -Bindings mismatch: -after transform: ScopeId(16): ["T"] -rebuilt : ScopeId(4): [] -Bindings mismatch: -after transform: ScopeId(17): ["T"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(18): ["T"] -rebuilt : ScopeId(6): [] -Bindings mismatch: -after transform: ScopeId(19): ["T"] -rebuilt : ScopeId(7): [] -Bindings mismatch: -after transform: ScopeId(21): ["T"] -rebuilt : ScopeId(9): [] -Bindings mismatch: -after transform: ScopeId(22): ["T"] -rebuilt : ScopeId(10): [] -Bindings mismatch: -after transform: ScopeId(23): ["T"] -rebuilt : ScopeId(11): [] -Bindings mismatch: -after transform: ScopeId(24): ["T"] -rebuilt : ScopeId(12): [] -Bindings mismatch: -after transform: ScopeId(26): ["T"] -rebuilt : ScopeId(14): [] -Bindings mismatch: -after transform: ScopeId(27): ["T"] -rebuilt : ScopeId(15): [] -Bindings mismatch: -after transform: ScopeId(28): ["T"] -rebuilt : ScopeId(16): [] -Bindings mismatch: -after transform: ScopeId(29): ["T"] -rebuilt : ScopeId(17): [] -Bindings mismatch: -after transform: ScopeId(31): ["T"] -rebuilt : ScopeId(19): [] -Bindings mismatch: -after transform: ScopeId(32): ["T"] -rebuilt : ScopeId(20): [] -Bindings mismatch: -after transform: ScopeId(33): ["T"] -rebuilt : ScopeId(21): [] -Bindings mismatch: -after transform: ScopeId(34): ["T"] -rebuilt : ScopeId(22): [] -Bindings mismatch: -after transform: ScopeId(35): ["T"] -rebuilt : ScopeId(23): [] -Bindings mismatch: -after transform: ScopeId(36): ["T"] -rebuilt : ScopeId(24): [] -Bindings mismatch: -after transform: ScopeId(37): ["T"] -rebuilt : ScopeId(25): [] -Bindings mismatch: -after transform: ScopeId(38): ["T"] -rebuilt : ScopeId(26): [] -Bindings mismatch: -after transform: ScopeId(46): ["T"] -rebuilt : ScopeId(28): [] -Bindings mismatch: -after transform: ScopeId(47): ["T"] -rebuilt : ScopeId(29): [] -Bindings mismatch: -after transform: ScopeId(48): ["T"] -rebuilt : ScopeId(30): [] -Bindings mismatch: -after transform: ScopeId(49): ["T"] -rebuilt : ScopeId(31): [] -Bindings mismatch: -after transform: ScopeId(51): ["T"] -rebuilt : ScopeId(33): [] -Bindings mismatch: -after transform: ScopeId(52): ["T"] -rebuilt : ScopeId(34): [] -Bindings mismatch: -after transform: ScopeId(53): ["T"] -rebuilt : ScopeId(35): [] -Bindings mismatch: -after transform: ScopeId(54): ["T"] -rebuilt : ScopeId(36): [] -Bindings mismatch: -after transform: ScopeId(55): ["T"] -rebuilt : ScopeId(37): [] -Bindings mismatch: -after transform: ScopeId(56): ["T"] -rebuilt : ScopeId(38): [] -Bindings mismatch: -after transform: ScopeId(61): ["T"] -rebuilt : ScopeId(40): [] -Bindings mismatch: -after transform: ScopeId(62): ["T"] -rebuilt : ScopeId(41): [] -Bindings mismatch: -after transform: ScopeId(63): ["T"] -rebuilt : ScopeId(42): [] -Bindings mismatch: -after transform: ScopeId(68): ["T"] -rebuilt : ScopeId(44): [] -Bindings mismatch: -after transform: ScopeId(69): ["T"] -rebuilt : ScopeId(45): [] -Bindings mismatch: -after transform: ScopeId(70): ["T"] -rebuilt : ScopeId(46): [] -Bindings mismatch: -after transform: ScopeId(71): ["_publicModule", "privateClass", "privateClassWithWithPrivateModuleTypeParameters", "privateClassWithWithPrivateTypeParameters", "privateClassWithWithPublicTypeParameters", "privateClassWithWithPublicTypeParametersWithoutExtends", "privateFunctionWithPrivateMopduleTypeParameters", "privateFunctionWithPrivateTypeParameters", "privateFunctionWithPublicTypeParameters", "privateFunctionWithPublicTypeParametersWithoutExtends", "privateInterfaceWithPrivatModuleTypeParameters", "privateInterfaceWithPrivateTypeParameters", "privateInterfaceWithPublicTypeParameters", "privateInterfaceWithPublicTypeParametersWithoutExtends", "publicClass", "publicClassWithWithPrivateModuleTypeParameters", "publicClassWithWithPrivateTypeParameters", "publicClassWithWithPublicTypeParameters", "publicClassWithWithPublicTypeParametersWithoutExtends", "publicFunctionWithPrivateMopduleTypeParameters", "publicFunctionWithPrivateTypeParameters", "publicFunctionWithPublicTypeParameters", "publicFunctionWithPublicTypeParametersWithoutExtends", "publicInterfaceWithPrivatModuleTypeParameters", "publicInterfaceWithPrivateTypeParameters", "publicInterfaceWithPublicTypeParameters", "publicInterfaceWithPublicTypeParametersWithoutExtends"] -rebuilt : ScopeId(47): ["_publicModule", "privateClass", "privateClassWithWithPrivateModuleTypeParameters", "privateClassWithWithPrivateTypeParameters", "privateClassWithWithPublicTypeParameters", "privateClassWithWithPublicTypeParametersWithoutExtends", "privateFunctionWithPrivateMopduleTypeParameters", "privateFunctionWithPrivateTypeParameters", "privateFunctionWithPublicTypeParameters", "privateFunctionWithPublicTypeParametersWithoutExtends", "publicClass", "publicClassWithWithPrivateModuleTypeParameters", "publicClassWithWithPrivateTypeParameters", "publicClassWithWithPublicTypeParameters", "publicClassWithWithPublicTypeParametersWithoutExtends", "publicFunctionWithPrivateMopduleTypeParameters", "publicFunctionWithPrivateTypeParameters", "publicFunctionWithPublicTypeParameters", "publicFunctionWithPublicTypeParametersWithoutExtends"] +Binding symbols mismatch: +after transform: ScopeId(71): [SymbolId(87), SymbolId(88), SymbolId(105), SymbolId(110), SymbolId(115), SymbolId(120), SymbolId(125), SymbolId(127), SymbolId(129), SymbolId(131), SymbolId(141), SymbolId(146), SymbolId(151), SymbolId(153), SymbolId(159), SymbolId(162), SymbolId(168), SymbolId(171), SymbolId(242)] +rebuilt : ScopeId(47): [SymbolId(19), SymbolId(20), SymbolId(21), SymbolId(22), SymbolId(23), SymbolId(24), SymbolId(25), SymbolId(26), SymbolId(27), SymbolId(28), SymbolId(29), SymbolId(30), SymbolId(31), SymbolId(32), SymbolId(33), SymbolId(34), SymbolId(35), SymbolId(36), SymbolId(37)] Scope children mismatch: after transform: ScopeId(71): [ScopeId(72), ScopeId(73), ScopeId(74), ScopeId(77), ScopeId(80), ScopeId(83), ScopeId(86), ScopeId(91), ScopeId(96), ScopeId(101), ScopeId(106), ScopeId(107), ScopeId(108), ScopeId(109), ScopeId(110), ScopeId(113), ScopeId(116), ScopeId(121), ScopeId(126), ScopeId(127), ScopeId(128), ScopeId(131), ScopeId(134), ScopeId(135), ScopeId(138), ScopeId(141)] rebuilt : ScopeId(47): [ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(55), ScopeId(60), ScopeId(65), ScopeId(70), ScopeId(71), ScopeId(72), ScopeId(73), ScopeId(74), ScopeId(79), ScopeId(84), ScopeId(85), ScopeId(86), ScopeId(89), ScopeId(90), ScopeId(93)] -Bindings mismatch: -after transform: ScopeId(87): ["T"] -rebuilt : ScopeId(51): [] -Bindings mismatch: -after transform: ScopeId(88): ["T"] -rebuilt : ScopeId(52): [] -Bindings mismatch: -after transform: ScopeId(89): ["T"] -rebuilt : ScopeId(53): [] -Bindings mismatch: -after transform: ScopeId(90): ["T"] -rebuilt : ScopeId(54): [] -Bindings mismatch: -after transform: ScopeId(92): ["T"] -rebuilt : ScopeId(56): [] -Bindings mismatch: -after transform: ScopeId(93): ["T"] -rebuilt : ScopeId(57): [] -Bindings mismatch: -after transform: ScopeId(94): ["T"] -rebuilt : ScopeId(58): [] -Bindings mismatch: -after transform: ScopeId(95): ["T"] -rebuilt : ScopeId(59): [] -Bindings mismatch: -after transform: ScopeId(97): ["T"] -rebuilt : ScopeId(61): [] -Bindings mismatch: -after transform: ScopeId(98): ["T"] -rebuilt : ScopeId(62): [] -Bindings mismatch: -after transform: ScopeId(99): ["T"] -rebuilt : ScopeId(63): [] -Bindings mismatch: -after transform: ScopeId(100): ["T"] -rebuilt : ScopeId(64): [] -Bindings mismatch: -after transform: ScopeId(102): ["T"] -rebuilt : ScopeId(66): [] -Bindings mismatch: -after transform: ScopeId(103): ["T"] -rebuilt : ScopeId(67): [] -Bindings mismatch: -after transform: ScopeId(104): ["T"] -rebuilt : ScopeId(68): [] -Bindings mismatch: -after transform: ScopeId(105): ["T"] -rebuilt : ScopeId(69): [] -Bindings mismatch: -after transform: ScopeId(106): ["T"] -rebuilt : ScopeId(70): [] -Bindings mismatch: -after transform: ScopeId(107): ["T"] -rebuilt : ScopeId(71): [] -Bindings mismatch: -after transform: ScopeId(108): ["T"] -rebuilt : ScopeId(72): [] -Bindings mismatch: -after transform: ScopeId(109): ["T"] -rebuilt : ScopeId(73): [] -Bindings mismatch: -after transform: ScopeId(117): ["T"] -rebuilt : ScopeId(75): [] -Bindings mismatch: -after transform: ScopeId(118): ["T"] -rebuilt : ScopeId(76): [] -Bindings mismatch: -after transform: ScopeId(119): ["T"] -rebuilt : ScopeId(77): [] -Bindings mismatch: -after transform: ScopeId(120): ["T"] -rebuilt : ScopeId(78): [] -Bindings mismatch: -after transform: ScopeId(122): ["T"] -rebuilt : ScopeId(80): [] -Bindings mismatch: -after transform: ScopeId(123): ["T"] -rebuilt : ScopeId(81): [] -Bindings mismatch: -after transform: ScopeId(124): ["T"] -rebuilt : ScopeId(82): [] -Bindings mismatch: -after transform: ScopeId(125): ["T"] -rebuilt : ScopeId(83): [] -Bindings mismatch: -after transform: ScopeId(126): ["T"] -rebuilt : ScopeId(84): [] -Bindings mismatch: -after transform: ScopeId(127): ["T"] -rebuilt : ScopeId(85): [] -Bindings mismatch: -after transform: ScopeId(132): ["T"] -rebuilt : ScopeId(87): [] -Bindings mismatch: -after transform: ScopeId(133): ["T"] -rebuilt : ScopeId(88): [] -Bindings mismatch: -after transform: ScopeId(134): ["T"] -rebuilt : ScopeId(89): [] -Bindings mismatch: -after transform: ScopeId(139): ["T"] -rebuilt : ScopeId(91): [] -Bindings mismatch: -after transform: ScopeId(140): ["T"] -rebuilt : ScopeId(92): [] -Bindings mismatch: -after transform: ScopeId(141): ["T"] -rebuilt : ScopeId(93): [] -Bindings mismatch: -after transform: ScopeId(142): ["_privateModule", "privateClass", "privateClassWithWithPrivateTypeParameters", "privateClassWithWithPublicTypeParameters", "privateClassWithWithPublicTypeParametersWithoutExtends", "privateFunctionWithPrivateTypeParameters", "privateFunctionWithPublicTypeParameters", "privateFunctionWithPublicTypeParametersWithoutExtends", "privateInterfaceWithPrivateTypeParameters", "privateInterfaceWithPublicTypeParameters", "privateInterfaceWithPublicTypeParametersWithoutExtends", "publicClass", "publicClassWithWithPrivateTypeParameters", "publicClassWithWithPublicTypeParameters", "publicClassWithWithPublicTypeParametersWithoutExtends", "publicFunctionWithPrivateTypeParameters", "publicFunctionWithPublicTypeParameters", "publicFunctionWithPublicTypeParametersWithoutExtends", "publicInterfaceWithPrivateTypeParameters", "publicInterfaceWithPublicTypeParameters", "publicInterfaceWithPublicTypeParametersWithoutExtends"] -rebuilt : ScopeId(94): ["_privateModule", "privateClass", "privateClassWithWithPrivateTypeParameters", "privateClassWithWithPublicTypeParameters", "privateClassWithWithPublicTypeParametersWithoutExtends", "privateFunctionWithPrivateTypeParameters", "privateFunctionWithPublicTypeParameters", "privateFunctionWithPublicTypeParametersWithoutExtends", "publicClass", "publicClassWithWithPrivateTypeParameters", "publicClassWithWithPublicTypeParameters", "publicClassWithWithPublicTypeParametersWithoutExtends", "publicFunctionWithPrivateTypeParameters", "publicFunctionWithPublicTypeParameters", "publicFunctionWithPublicTypeParametersWithoutExtends"] +Binding symbols mismatch: +after transform: ScopeId(142): [SymbolId(174), SymbolId(175), SymbolId(192), SymbolId(197), SymbolId(202), SymbolId(207), SymbolId(212), SymbolId(214), SymbolId(216), SymbolId(218), SymbolId(228), SymbolId(233), SymbolId(238), SymbolId(240), SymbolId(243)] +rebuilt : ScopeId(94): [SymbolId(39), SymbolId(40), SymbolId(41), SymbolId(42), SymbolId(43), SymbolId(44), SymbolId(45), SymbolId(46), SymbolId(47), SymbolId(48), SymbolId(49), SymbolId(50), SymbolId(51), SymbolId(52), SymbolId(53)] Scope children mismatch: after transform: ScopeId(142): [ScopeId(143), ScopeId(144), ScopeId(145), ScopeId(148), ScopeId(151), ScopeId(154), ScopeId(157), ScopeId(162), ScopeId(167), ScopeId(172), ScopeId(177), ScopeId(178), ScopeId(179), ScopeId(180), ScopeId(181), ScopeId(184), ScopeId(187), ScopeId(192), ScopeId(197), ScopeId(198)] rebuilt : ScopeId(94): [ScopeId(95), ScopeId(96), ScopeId(97), ScopeId(102), ScopeId(107), ScopeId(112), ScopeId(117), ScopeId(118), ScopeId(119), ScopeId(120), ScopeId(121), ScopeId(126), ScopeId(131), ScopeId(132)] -Bindings mismatch: -after transform: ScopeId(158): ["T"] -rebuilt : ScopeId(98): [] -Bindings mismatch: -after transform: ScopeId(159): ["T"] -rebuilt : ScopeId(99): [] -Bindings mismatch: -after transform: ScopeId(160): ["T"] -rebuilt : ScopeId(100): [] -Bindings mismatch: -after transform: ScopeId(161): ["T"] -rebuilt : ScopeId(101): [] -Bindings mismatch: -after transform: ScopeId(163): ["T"] -rebuilt : ScopeId(103): [] -Bindings mismatch: -after transform: ScopeId(164): ["T"] -rebuilt : ScopeId(104): [] -Bindings mismatch: -after transform: ScopeId(165): ["T"] -rebuilt : ScopeId(105): [] -Bindings mismatch: -after transform: ScopeId(166): ["T"] -rebuilt : ScopeId(106): [] -Bindings mismatch: -after transform: ScopeId(168): ["T"] -rebuilt : ScopeId(108): [] -Bindings mismatch: -after transform: ScopeId(169): ["T"] -rebuilt : ScopeId(109): [] -Bindings mismatch: -after transform: ScopeId(170): ["T"] -rebuilt : ScopeId(110): [] -Bindings mismatch: -after transform: ScopeId(171): ["T"] -rebuilt : ScopeId(111): [] -Bindings mismatch: -after transform: ScopeId(173): ["T"] -rebuilt : ScopeId(113): [] -Bindings mismatch: -after transform: ScopeId(174): ["T"] -rebuilt : ScopeId(114): [] -Bindings mismatch: -after transform: ScopeId(175): ["T"] -rebuilt : ScopeId(115): [] -Bindings mismatch: -after transform: ScopeId(176): ["T"] -rebuilt : ScopeId(116): [] -Bindings mismatch: -after transform: ScopeId(177): ["T"] -rebuilt : ScopeId(117): [] -Bindings mismatch: -after transform: ScopeId(178): ["T"] -rebuilt : ScopeId(118): [] -Bindings mismatch: -after transform: ScopeId(179): ["T"] -rebuilt : ScopeId(119): [] -Bindings mismatch: -after transform: ScopeId(180): ["T"] -rebuilt : ScopeId(120): [] -Bindings mismatch: -after transform: ScopeId(188): ["T"] -rebuilt : ScopeId(122): [] -Bindings mismatch: -after transform: ScopeId(189): ["T"] -rebuilt : ScopeId(123): [] -Bindings mismatch: -after transform: ScopeId(190): ["T"] -rebuilt : ScopeId(124): [] -Bindings mismatch: -after transform: ScopeId(191): ["T"] -rebuilt : ScopeId(125): [] -Bindings mismatch: -after transform: ScopeId(193): ["T"] -rebuilt : ScopeId(127): [] -Bindings mismatch: -after transform: ScopeId(194): ["T"] -rebuilt : ScopeId(128): [] -Bindings mismatch: -after transform: ScopeId(195): ["T"] -rebuilt : ScopeId(129): [] -Bindings mismatch: -after transform: ScopeId(196): ["T"] -rebuilt : ScopeId(130): [] -Bindings mismatch: -after transform: ScopeId(197): ["T"] -rebuilt : ScopeId(131): [] -Bindings mismatch: -after transform: ScopeId(198): ["T"] -rebuilt : ScopeId(132): [] Symbol reference IDs mismatch for "privateClass": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2), ReferenceId(3), ReferenceId(4), ReferenceId(5), ReferenceId(12), ReferenceId(13), ReferenceId(14), ReferenceId(15), ReferenceId(16), ReferenceId(17), ReferenceId(24), ReferenceId(25), ReferenceId(26), ReferenceId(27), ReferenceId(32), ReferenceId(33), ReferenceId(34), ReferenceId(35), ReferenceId(40), ReferenceId(42)] rebuilt : SymbolId(0): [] @@ -28997,25 +25020,7 @@ after transform: ["privateModule"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/privacyTypeParametersOfClass.ts -semantic error: Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(5): ["T"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(7): ["T"] -rebuilt : ScopeId(7): [] -Bindings mismatch: -after transform: ScopeId(9): ["T"] -rebuilt : ScopeId(9): [] -Bindings mismatch: -after transform: ScopeId(11): ["T"] -rebuilt : ScopeId(11): [] -Bindings mismatch: -after transform: ScopeId(13): ["T"] -rebuilt : ScopeId(13): [] -Symbol reference IDs mismatch for "privateClass": +semantic error: Symbol reference IDs mismatch for "privateClass": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(8)] rebuilt : SymbolId(0): [] Symbol reference IDs mismatch for "publicClass": @@ -29052,78 +25057,12 @@ Missing ReferenceId: "privateModule" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(5), SymbolId(8), SymbolId(11), SymbolId(14), SymbolId(17), SymbolId(20), SymbolId(23), SymbolId(26), SymbolId(53)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(4), SymbolId(6), SymbolId(8), SymbolId(10), SymbolId(12), SymbolId(14), SymbolId(16), SymbolId(18), SymbolId(38)] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(5): ["T"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(7): ["T"] -rebuilt : ScopeId(7): [] -Bindings mismatch: -after transform: ScopeId(9): ["T"] -rebuilt : ScopeId(9): [] -Bindings mismatch: -after transform: ScopeId(11): ["T"] -rebuilt : ScopeId(11): [] -Bindings mismatch: -after transform: ScopeId(13): ["T"] -rebuilt : ScopeId(13): [] -Bindings mismatch: -after transform: ScopeId(15): ["T"] -rebuilt : ScopeId(15): [] -Bindings mismatch: -after transform: ScopeId(17): ["T"] -rebuilt : ScopeId(17): [] Binding symbols mismatch: after transform: ScopeId(19): [SymbolId(27), SymbolId(28), SymbolId(29), SymbolId(32), SymbolId(35), SymbolId(38), SymbolId(41), SymbolId(44), SymbolId(47), SymbolId(50), SymbolId(74)] rebuilt : ScopeId(19): [SymbolId(19), SymbolId(20), SymbolId(21), SymbolId(22), SymbolId(24), SymbolId(26), SymbolId(28), SymbolId(30), SymbolId(32), SymbolId(34), SymbolId(36)] -Bindings mismatch: -after transform: ScopeId(22): ["T"] -rebuilt : ScopeId(22): [] -Bindings mismatch: -after transform: ScopeId(24): ["T"] -rebuilt : ScopeId(24): [] -Bindings mismatch: -after transform: ScopeId(26): ["T"] -rebuilt : ScopeId(26): [] -Bindings mismatch: -after transform: ScopeId(28): ["T"] -rebuilt : ScopeId(28): [] -Bindings mismatch: -after transform: ScopeId(30): ["T"] -rebuilt : ScopeId(30): [] -Bindings mismatch: -after transform: ScopeId(32): ["T"] -rebuilt : ScopeId(32): [] -Bindings mismatch: -after transform: ScopeId(34): ["T"] -rebuilt : ScopeId(34): [] -Bindings mismatch: -after transform: ScopeId(36): ["T"] -rebuilt : ScopeId(36): [] Binding symbols mismatch: after transform: ScopeId(38): [SymbolId(54), SymbolId(55), SymbolId(56), SymbolId(59), SymbolId(62), SymbolId(65), SymbolId(68), SymbolId(71), SymbolId(75)] rebuilt : ScopeId(38): [SymbolId(39), SymbolId(40), SymbolId(41), SymbolId(42), SymbolId(44), SymbolId(46), SymbolId(48), SymbolId(50), SymbolId(52)] -Bindings mismatch: -after transform: ScopeId(41): ["T"] -rebuilt : ScopeId(41): [] -Bindings mismatch: -after transform: ScopeId(43): ["T"] -rebuilt : ScopeId(43): [] -Bindings mismatch: -after transform: ScopeId(45): ["T"] -rebuilt : ScopeId(45): [] -Bindings mismatch: -after transform: ScopeId(47): ["T"] -rebuilt : ScopeId(47): [] -Bindings mismatch: -after transform: ScopeId(49): ["T"] -rebuilt : ScopeId(49): [] -Bindings mismatch: -after transform: ScopeId(51): ["T"] -rebuilt : ScopeId(51): [] Symbol reference IDs mismatch for "privateClass": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(8)] rebuilt : SymbolId(0): [] @@ -29168,18 +25107,9 @@ after transform: ["privateModule"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/privacyTypeParametersOfInterface.ts -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: +semantic error: 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): [] -Bindings mismatch: -after transform: ScopeId(4): ["T"] -rebuilt : ScopeId(4): [] Symbol reference IDs mismatch for "privateClass": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(6), ReferenceId(10), ReferenceId(19), ReferenceId(23), ReferenceId(26), ReferenceId(32), ReferenceId(36), ReferenceId(45), ReferenceId(49)] rebuilt : SymbolId(0): [] @@ -29210,42 +25140,24 @@ Missing ReferenceId: "_privateModule" Missing ReferenceId: "publicClassInPrivateModuleT" Missing ReferenceId: "privateModule" Missing ReferenceId: "privateModule" -Bindings mismatch: -after transform: ScopeId(0): ["privateClass", "privateClassT", "privateInterfaceWithPrivateModuleTypeParameterConstraints", "privateInterfaceWithPrivateTypeParameters", "privateInterfaceWithPublicTypeParameters", "privateInterfaceWithPublicTypeParametersWithoutExtends", "privateModule", "publicClass", "publicClassT", "publicInterfaceWithPrivateModuleTypeParameterConstraints", "publicInterfaceWithPrivateTypeParameters", "publicInterfaceWithPublicTypeParameters", "publicInterfaceWithPublicTypeParametersWithoutExtends", "publicModule"] -rebuilt : ScopeId(0): ["privateClass", "privateClassT", "privateModule", "publicClass", "publicClassT", "publicModule"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(4), SymbolId(22), SymbolId(45)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(10)] 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), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(82)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(10)] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(4): ["T"] -rebuilt : ScopeId(4): [] -Bindings mismatch: -after transform: ScopeId(41): ["_publicModule", "privateClassInPublicModule", "privateClassInPublicModuleT", "privateInterfaceWithPrivateModuleTypeParameterConstraints", "privateInterfaceWithPrivateTypeParameters", "privateInterfaceWithPublicTypeParameters", "privateInterfaceWithPublicTypeParametersWithoutExtends", "publicClassInPublicModule", "publicClassInPublicModuleT", "publicInterfaceWithPrivateModuleTypeParameterConstraints", "publicInterfaceWithPrivateTypeParameters", "publicInterfaceWithPublicTypeParameters", "publicInterfaceWithPublicTypeParametersWithoutExtends"] -rebuilt : ScopeId(5): ["_publicModule", "privateClassInPublicModule", "privateClassInPublicModuleT", "publicClassInPublicModule", "publicClassInPublicModuleT"] +Binding symbols mismatch: +after transform: ScopeId(41): [SymbolId(23), SymbolId(24), SymbolId(25), SymbolId(27), SymbolId(64)] +rebuilt : ScopeId(5): [SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8), SymbolId(9)] Scope children mismatch: after transform: ScopeId(41): [ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(53), ScopeId(60), ScopeId(67), ScopeId(74), ScopeId(77), ScopeId(80), ScopeId(81)] rebuilt : ScopeId(5): [ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] -Bindings mismatch: -after transform: ScopeId(44): ["T"] -rebuilt : ScopeId(8): [] -Bindings mismatch: -after transform: ScopeId(45): ["T"] -rebuilt : ScopeId(9): [] -Bindings mismatch: -after transform: ScopeId(82): ["_privateModule", "privateClassInPrivateModule", "privateClassInPrivateModuleT", "privateInterfaceWithPrivateTypeParameters", "privateInterfaceWithPublicTypeParameters", "privateInterfaceWithPublicTypeParametersWithoutExtends", "publicClassInPrivateModule", "publicClassInPrivateModuleT", "publicInterfaceWithPrivateTypeParameters", "publicInterfaceWithPublicTypeParameters", "publicInterfaceWithPublicTypeParametersWithoutExtends"] -rebuilt : ScopeId(10): ["_privateModule", "privateClassInPrivateModule", "privateClassInPrivateModuleT", "publicClassInPrivateModule", "publicClassInPrivateModuleT"] +Binding symbols mismatch: +after transform: ScopeId(82): [SymbolId(46), SymbolId(47), SymbolId(48), SymbolId(50), SymbolId(65)] +rebuilt : ScopeId(10): [SymbolId(11), SymbolId(12), SymbolId(13), SymbolId(14), SymbolId(15)] Scope children mismatch: after transform: ScopeId(82): [ScopeId(83), ScopeId(84), ScopeId(85), ScopeId(86), ScopeId(87), ScopeId(94), ScopeId(101), ScopeId(108), ScopeId(115), ScopeId(118)] rebuilt : ScopeId(10): [ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14)] -Bindings mismatch: -after transform: ScopeId(85): ["T"] -rebuilt : ScopeId(13): [] -Bindings mismatch: -after transform: ScopeId(86): ["T"] -rebuilt : ScopeId(14): [] Symbol reference IDs mismatch for "privateClass": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(6), ReferenceId(10), ReferenceId(19), ReferenceId(23), ReferenceId(26), ReferenceId(32), ReferenceId(36), ReferenceId(45), ReferenceId(49)] rebuilt : SymbolId(0): [] @@ -29332,10 +25244,7 @@ after transform: SymbolId(5): [ReferenceId(1)] rebuilt : SymbolId(6): [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch for "SyncableObject": @@ -29343,34 +25252,17 @@ after transform: SymbolId(1): [ReferenceId(1)] rebuilt : SymbolId(0): [] 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: +semantic error: 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: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(3): ["S", "cb", "result", "z"] -rebuilt : ScopeId(3): ["cb", "result", "z"] -Symbol reference IDs mismatch for "Chain": +semantic error: Symbol reference IDs mismatch for "Chain": after transform: SymbolId(0): [ReferenceId(3), ReferenceId(8)] rebuilt : SymbolId(0): [ReferenceId(4)] -tasks/coverage/typescript/tests/cases/compiler/promiseDefinitionTest.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] - 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -29845,10 +25737,7 @@ after transform: [ReferenceId(0), ReferenceId(9), ReferenceId(18), ReferenceId(3 rebuilt : [ReferenceId(43), ReferenceId(70), ReferenceId(88), ReferenceId(90), ReferenceId(103), ReferenceId(105), ReferenceId(127), ReferenceId(130), ReferenceId(143), ReferenceId(145), ReferenceId(158), ReferenceId(160), ReferenceId(182), ReferenceId(185), ReferenceId(207), ReferenceId(210), ReferenceId(223), ReferenceId(225), ReferenceId(238), ReferenceId(240), ReferenceId(253), ReferenceId(255), ReferenceId(257), ReferenceId(260), ReferenceId(262), ReferenceId(264), ReferenceId(267), ReferenceId(270), ReferenceId(272), ReferenceId(274), ReferenceId(276), ReferenceId(277), ReferenceId(279), ReferenceId(280), ReferenceId(282), ReferenceId(285), ReferenceId(287), ReferenceId(289), ReferenceId(292), ReferenceId(295), ReferenceId(297), ReferenceId(299), ReferenceId(301), ReferenceId(302), ReferenceId(304), ReferenceId(305), ReferenceId(306), ReferenceId(308), ReferenceId(310), ReferenceId(312), ReferenceId(314)] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7)] rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: @@ -30334,10 +26223,7 @@ after transform: [ReferenceId(0), ReferenceId(9), ReferenceId(18), ReferenceId(3 rebuilt : [ReferenceId(43), ReferenceId(70), ReferenceId(88), ReferenceId(90), ReferenceId(103), ReferenceId(105), ReferenceId(127), ReferenceId(130), ReferenceId(143), ReferenceId(145), ReferenceId(158), ReferenceId(160), ReferenceId(182), ReferenceId(185), ReferenceId(207), ReferenceId(210), ReferenceId(223), ReferenceId(225), ReferenceId(238), ReferenceId(240), ReferenceId(253), ReferenceId(255), ReferenceId(257), ReferenceId(260), ReferenceId(262), ReferenceId(264), ReferenceId(267), ReferenceId(270), ReferenceId(272), ReferenceId(274), ReferenceId(276), ReferenceId(277), ReferenceId(279), ReferenceId(280), ReferenceId(282), ReferenceId(285), ReferenceId(287), ReferenceId(289), ReferenceId(292), ReferenceId(295), ReferenceId(297), ReferenceId(299), ReferenceId(301), ReferenceId(302), ReferenceId(304), ReferenceId(305)] 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: +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)] Unresolved references mismatch: @@ -30348,26 +26234,17 @@ after transform: [ReferenceId(0), ReferenceId(2)] rebuilt : [ReferenceId(0)] 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: +semantic error: 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(0): [] Symbol reference IDs mismatch for "PropTypes": @@ -30389,10 +26266,7 @@ 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -30404,16 +26278,8 @@ rebuilt : SymbolId(0): [] 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 -tasks/coverage/typescript/tests/cases/compiler/prototypeInstantiatedWithBaseConstraint.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] - tasks/coverage/typescript/tests/cases/compiler/prototypeOnConstructorFunctions.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I1", "i"] -rebuilt : ScopeId(0): ["i"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -30458,9 +26324,6 @@ Missing ReferenceId: "require" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(5)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2)] -Bindings mismatch: -after transform: ScopeId(1): ["App", "C", "P"] -rebuilt : ScopeId(1): ["App", "C"] Reference symbol mismatch for "React": after transform: SymbolId(0) "React" rebuilt : SymbolId(1) "React" @@ -30509,10 +26372,7 @@ after transform: ["React"] rebuilt : ["Bar", "React", "_Bar", "x"] tasks/coverage/typescript/tests/cases/compiler/reactReadonlyHOCAssignabilityReal.tsx -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["Inner", "P"] -rebuilt : ScopeId(1): ["Inner"] -Symbol reference IDs mismatch for "React": +semantic error: Symbol reference IDs mismatch for "React": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2), ReferenceId(4), ReferenceId(10)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(1)] @@ -30585,10 +26445,7 @@ after transform: [ReferenceId(1), ReferenceId(7), ReferenceId(8), ReferenceId(9) rebuilt : [ReferenceId(9)] tasks/coverage/typescript/tests/cases/compiler/readonlyInDeclarationFile.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C", "Foo", "f", "g", "z"] -rebuilt : ScopeId(0): ["C", "f", "g", "z"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(21), ScopeId(25)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(20), ScopeId(24)] Unresolved references mismatch: @@ -30600,15 +26457,15 @@ semantic error: Missing SymbolId: "Foo" Missing SymbolId: "_Foo" Missing ReferenceId: "Foo" Missing ReferenceId: "Foo" -Bindings mismatch: -after transform: ScopeId(0): ["A", "Foo"] -rebuilt : ScopeId(0): ["Foo"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(1)] +rebuilt : ScopeId(0): [SymbolId(0)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] -Bindings mismatch: -after transform: ScopeId(2): ["A", "B", "_Foo"] -rebuilt : ScopeId(1): ["A", "_Foo"] +Binding symbols mismatch: +after transform: ScopeId(2): [SymbolId(2), SymbolId(4)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -30626,9 +26483,9 @@ Missing ReferenceId: "M" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0)] rebuilt : ScopeId(0): [SymbolId(0)] -Bindings mismatch: -after transform: ScopeId(1): ["I", "_M", "f", "i"] -rebuilt : ScopeId(1): ["_M", "f", "i"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(2), SymbolId(4), SymbolId(5)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(4)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -30640,10 +26497,7 @@ after transform: SymbolId(2): [ReferenceId(3), ReferenceId(5), ReferenceId(7), R rebuilt : SymbolId(2): [ReferenceId(0), ReferenceId(2), ReferenceId(3), ReferenceId(5), ReferenceId(6), ReferenceId(8), ReferenceId(9), ReferenceId(10)] 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: +semantic error: 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: @@ -30677,7 +26531,7 @@ rebuilt : [ReferenceId(0)] tasks/coverage/typescript/tests/cases/compiler/recursiveClassBaseType.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Base", "Base1", "C", "Derived1", "T", "p"] +after transform: ScopeId(0): ["Base", "Base1", "C", "Derived1", "p"] rebuilt : ScopeId(0): ["Base1", "C", "Derived1"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6)] @@ -30744,26 +26598,17 @@ after transform: SymbolId(7): [ReferenceId(2)] rebuilt : SymbolId(7): [] tasks/coverage/typescript/tests/cases/compiler/recursiveConditionalCrash1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C1", "C2"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: 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: +semantic error: 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): [] Unresolved references mismatch: @@ -30772,7 +26617,7 @@ rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/recursiveConditionalEvaluationNonInfinite.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Test", "a", "b", "x", "y"] +after transform: ScopeId(0): ["a", "b", "x", "y"] rebuilt : ScopeId(0): ["b", "y"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] @@ -30788,10 +26633,7 @@ after transform: [] rebuilt : ["a", "x"] 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: +semantic error: 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)] Unresolved references mismatch: @@ -30799,10 +26641,7 @@ after transform: ["NonNullable", "Record"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -30836,26 +26675,12 @@ after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] 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: +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", "func"] -rebuilt : ScopeId(1): ["func"] - -tasks/coverage/typescript/tests/cases/compiler/recursiveGenericSignatureInstantiation.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "x"] -rebuilt : ScopeId(1): ["x"] tasks/coverage/typescript/tests/cases/compiler/recursiveGenericTypeHierarchy.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] @@ -30882,10 +26707,7 @@ after transform: ["Test1", "Test2"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] @@ -30897,9 +26719,9 @@ Missing ReferenceId: "M" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0)] rebuilt : ScopeId(0): [SymbolId(0)] -Bindings mismatch: -after transform: ScopeId(1): ["I", "_M", "f", "i"] -rebuilt : ScopeId(1): ["_M", "f", "i"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(2), SymbolId(4), SymbolId(5)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(4)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -30909,7 +26731,7 @@ rebuilt : ScopeId(1): [ScopeId(2)] 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"] +after transform: ScopeId(0): ["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)] @@ -30963,10 +26785,7 @@ after transform: [ReferenceId(0), ReferenceId(2), ReferenceId(3), ReferenceId(6) rebuilt : [ReferenceId(5)] tasks/coverage/typescript/tests/cases/compiler/recursiveResolveDeclaredMembers.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["D", "F"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -30974,54 +26793,33 @@ after transform: ["E"] rebuilt : [] 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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(5): ["T", "l", "x"] -rebuilt : ScopeId(2): ["l", "x"] tasks/coverage/typescript/tests/cases/compiler/recursiveSpecializationOfExtendedTypeWithError.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["HTMLSelectElement"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/recursiveSpecializationOfSignatures.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["A", "B"] -rebuilt : ScopeId(1): [] -Symbol reference IDs mismatch for "S0": +semantic error: Symbol reference IDs mismatch for "S0": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1)] rebuilt : SymbolId(0): [] 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: +semantic error: 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: +semantic error: 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"] +after transform: ScopeId(0): ["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)] @@ -31058,34 +26856,19 @@ after transform: ["Array"] rebuilt : ["opt1", "opt2", "opt3"] 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: +semantic error: 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: +semantic error: 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: +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: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(2): [] Symbol reference IDs mismatch for "X": after transform: SymbolId(0): [ReferenceId(1)] rebuilt : SymbolId(0): [] @@ -31094,31 +26877,19 @@ after transform: SymbolId(6): [ReferenceId(6)] rebuilt : SymbolId(3): [] tasks/coverage/typescript/tests/cases/compiler/recursiveTypeParameterReferenceError2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["List", "List2"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: 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: +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", "x"] -rebuilt : ScopeId(1): ["x"] tasks/coverage/typescript/tests/cases/compiler/recursivelySpecializedConstructorDeclaration.ts semantic error: Missing SymbolId: "MsPortal" @@ -31168,21 +26939,15 @@ rebuilt : ScopeId(3): [SymbolId(5), SymbolId(6)] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(3): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(4): ["Interface", "ItemValue", "ViewModel", "_ItemList"] -rebuilt : ScopeId(4): ["ItemValue", "ViewModel", "_ItemList"] +Binding symbols mismatch: +after transform: ScopeId(4): [SymbolId(6), SymbolId(9), SymbolId(14)] +rebuilt : ScopeId(4): [SymbolId(7), SymbolId(8), SymbolId(10)] Scope flags mismatch: after transform: ScopeId(4): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(4): ScopeFlags(Function) Scope children mismatch: after transform: ScopeId(4): [ScopeId(5), ScopeId(6), ScopeId(8)] rebuilt : ScopeId(4): [ScopeId(5), ScopeId(7)] -Bindings mismatch: -after transform: ScopeId(6): ["T"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(8): ["TValue"] -rebuilt : ScopeId(7): [] Symbol reference IDs mismatch for "ItemValue": after transform: SymbolId(6): [ReferenceId(3)] rebuilt : SymbolId(8): [ReferenceId(1), ReferenceId(2)] @@ -31196,10 +26961,7 @@ 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: +semantic error: 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: @@ -31216,7 +26978,10 @@ after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2), ReferenceId(4), R rebuilt : SymbolId(0): [ReferenceId(7), ReferenceId(8)] tasks/coverage/typescript/tests/cases/compiler/reexportNameAliasedAndHoisted.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): [] +rebuilt : ScopeId(0): ["Sizing"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Symbol flags mismatch for "Sizing": @@ -31240,15 +27005,9 @@ after transform: ["Math", "RegExpExecArray", "RegExpMatchArray", "undefined"] rebuilt : ["Math", "undefined"] 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: +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)] -Bindings mismatch: -after transform: ScopeId(4): ["T"] -rebuilt : ScopeId(3): [] Symbol reference IDs mismatch for "Model": after transform: SymbolId(0): [ReferenceId(4)] rebuilt : SymbolId(0): [] @@ -31258,7 +27017,7 @@ rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/relatedViaDiscriminatedTypeNoError2.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["AObjOrBObj", "AOrBObj", "Generic", "T", "x", "y"] +after transform: ScopeId(0): ["x", "y"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] @@ -31280,10 +27039,7 @@ after transform: [] rebuilt : ["x", "y"] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [] @@ -31612,10 +27368,7 @@ after transform: ScopeId(0): ["foobar"] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/requiredInitializedParameter3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C1", "I1"] -rebuilt : ScopeId(0): ["C1"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -31636,7 +27389,10 @@ after transform: ScopeId(0): ["a", "b"] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/resolveInterfaceNameWithSameLetDeclarationName1.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): [] +rebuilt : ScopeId(0): ["bar"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Symbol flags mismatch for "bar": @@ -31653,7 +27409,10 @@ after transform: SymbolId(0): [Span { start: 22, end: 30 }] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/resolveInterfaceNameWithSameLetDeclarationName2.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): [] +rebuilt : ScopeId(0): ["bar", "foo"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] Symbol flags mismatch for "bar": @@ -31721,7 +27480,10 @@ after transform: SymbolId(0): [Span { start: 91, end: 99 }] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/resolveTypeAliasWithSameLetDeclarationName1.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): ["C"] +rebuilt : ScopeId(0): ["C", "baz"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch for "C": @@ -31741,10 +27503,7 @@ after transform: SymbolId(1): [Span { start: 30, end: 38 }] rebuilt : SymbolId(1): [] tasks/coverage/typescript/tests/cases/compiler/restParamUsingMappedTypeOverUnionConstraint.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["HomomorphicMappedType"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] rebuilt : ScopeId(0): [] @@ -31760,26 +27519,14 @@ after transform: SymbolId(7): [ReferenceId(4)] rebuilt : SymbolId(7): [] tasks/coverage/typescript/tests/cases/compiler/restParameterTypeInstantiation.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["TestGeneric", "_excluded", "_objectWithoutProperties", "removeF", "result"] -rebuilt : ScopeId(0): ["_excluded", "_objectWithoutProperties", "removeF", "result"] -Scope children 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): ["TX", "_ref", "f", "rest"] -rebuilt : ScopeId(1): ["_ref", "f", "rest"] 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: +semantic error: 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"] tasks/coverage/typescript/tests/cases/compiler/restUnion2.ts semantic error: Bindings mismatch: @@ -31802,18 +27549,12 @@ after transform: ["require"] rebuilt : ["nullUnion", "require", "undefinedUnion"] tasks/coverage/typescript/tests/cases/compiler/returnInfiniteIntersection.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["T", "subkey"] -rebuilt : ScopeId(2): ["subkey"] -Symbol reference IDs mismatch for "x": +semantic error: Symbol reference IDs mismatch for "x": after transform: SymbolId(1): [ReferenceId(2), ReferenceId(3)] rebuilt : SymbolId(1): [ReferenceId(1)] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(0): [] @@ -31842,17 +27583,11 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) Bindings mismatch: -after transform: ScopeId(2): ["A", "ar", "e", "f"] -rebuilt : ScopeId(2): ["ar", "e", "f"] -Bindings mismatch: after transform: ScopeId(3): ["A", "_M2", "compose", "compose2"] rebuilt : ScopeId(3): ["_M2", "compose", "compose2"] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(3): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(5): ["B", "C", "D", "f", "g"] -rebuilt : ScopeId(5): ["f", "g"] Symbol reference IDs mismatch for "reduce": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(7)] @@ -31872,14 +27607,6 @@ Unresolved reference IDs mismatch for "Array": after transform: [ReferenceId(0), ReferenceId(2)] rebuilt : [ReferenceId(0)] -tasks/coverage/typescript/tests/cases/compiler/returnTypePredicateIsInstantiateInContextOfTarget.tsx -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(2): ["T", "obj"] -rebuilt : ScopeId(2): ["obj"] - tasks/coverage/typescript/tests/cases/compiler/reuseInnerModuleMember.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["M"] @@ -31888,37 +27615,23 @@ 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/reverseMappedIntersectionInference1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Errors", "Results", "res"] -rebuilt : ScopeId(0): ["res"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/compiler/reverseMappedIntersectionInference2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Errors", "Results", "res"] -rebuilt : ScopeId(0): ["res"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] 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: +semantic error: 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)] Unresolved references mismatch: @@ -31926,10 +27639,7 @@ after transform: ["Record", "create", "test1", "test2", "test4"] rebuilt : ["create", "test1", "test2", "test4"] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -31937,10 +27647,7 @@ after transform: ["Record", "true"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/reverseMappedTypeContextualTypesPerElementOfTupleConstraint.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Tuple"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Unresolved references mismatch: @@ -31949,7 +27656,7 @@ rebuilt : ["bindAll"] tasks/coverage/typescript/tests/cases/compiler/reverseMappedTypeDeepDeclarationEmit.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["NativeTypeValidator", "ObjValidator", "ObjectValidator", "SimpleStringValidator", "V", "Validator", "outputExample", "test", "validatorFunc"] +after transform: ScopeId(0): ["ObjValidator", "SimpleStringValidator", "outputExample", "test", "validatorFunc"] rebuilt : ScopeId(0): ["outputExample", "test", "validatorFunc"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] @@ -31965,10 +27672,7 @@ after transform: [] rebuilt : ["ObjValidator", "SimpleStringValidator"] tasks/coverage/typescript/tests/cases/compiler/reverseMappedTypeInferenceSameSource1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Action", "ConfigureStoreOptions", "Reducer", "ReducersMapObject", "UnknownAction", "counterReducer1", "store2"] -rebuilt : ScopeId(0): ["counterReducer1", "store2"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(10)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] @@ -31978,21 +27682,12 @@ 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: +semantic error: 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"] 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: +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)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Unresolved references mismatch: @@ -32000,16 +27695,13 @@ after transform: ["const", "createExtractor", "isIdentifier", "isStringLiteral", rebuilt : ["createExtractor", "isIdentifier", "isStringLiteral", "unionType"] 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: +semantic error: 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"] +after transform: ScopeId(0): ["X", "o", "window"] rebuilt : ScopeId(0): ["X", "o"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6)] @@ -32027,10 +27719,7 @@ 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7)] rebuilt : ScopeId(0): [] @@ -32068,21 +27757,12 @@ 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: +semantic error: 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"] tasks/coverage/typescript/tests/cases/compiler/signatureCombiningRestParameters2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Console", "logs", "originalLog"] -rebuilt : ScopeId(0): ["logs", "originalLog"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] Unresolved reference IDs mismatch for "console": @@ -32090,13 +27770,7 @@ after transform: [ReferenceId(0), ReferenceId(1)] rebuilt : [ReferenceId(0)] tasks/coverage/typescript/tests/cases/compiler/signatureInstantiationWithRecursiveConstraints.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["T", "arg"] -rebuilt : ScopeId(2): ["arg"] -Bindings mismatch: -after transform: ScopeId(4): ["T", "arg"] -rebuilt : ScopeId(4): ["arg"] -Symbol reference IDs mismatch for "Foo": +semantic error: Symbol reference IDs mismatch for "Foo": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(4)] rebuilt : SymbolId(0): [] Symbol reference IDs mismatch for "Bar": @@ -32109,10 +27783,7 @@ after transform: ScopeId(2): [ScopeId(3), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(2): [ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/silentNeverPropagation.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["ModuleWithState", "MoreState", "State", "breaks"] -rebuilt : ScopeId(0): ["breaks"] -Scope children mismatch: +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)] @@ -32131,36 +27802,15 @@ after transform: ["Math", "Promise", "arguments", "require"] rebuilt : ["Math", "arguments", "ps", "require"] tasks/coverage/typescript/tests/cases/compiler/simplifyingConditionalWithInteriorConditionalIsRelated.ts -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: +semantic error: 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): [] -Bindings mismatch: -after transform: ScopeId(4): ["T"] -rebuilt : ScopeId(2): [] -Bindings mismatch: -after transform: ScopeId(5): ["T"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(6): ["T"] -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: +semantic error: 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): [] Unresolved references mismatch: @@ -32219,9 +27869,9 @@ Missing ReferenceId: "_Shapes" Missing ReferenceId: "foo" Missing ReferenceId: "Shapes" Missing ReferenceId: "Shapes" -Bindings mismatch: -after transform: ScopeId(0): ["IPoint", "Shapes", "dist", "p"] -rebuilt : ScopeId(0): ["Shapes", "dist", "p"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(1), SymbolId(8), SymbolId(9)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(8), SymbolId(9)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -32242,10 +27892,7 @@ after transform: SymbolId(1) "Shapes" rebuilt : SymbolId(0) "Shapes" tasks/coverage/typescript/tests/cases/compiler/sourceMap-InterfacePrecedingVariableDeclaration1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I", "x"] -rebuilt : ScopeId(0): ["x"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -32255,7 +27902,7 @@ Missing SymbolId: "_Foo" Missing ReferenceId: "Foo" Missing ReferenceId: "Foo" Bindings mismatch: -after transform: ScopeId(0): ["Document", "Foo", "Window", "window"] +after transform: ScopeId(0): ["Foo", "window"] rebuilt : ScopeId(0): ["Foo"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] @@ -32326,7 +27973,7 @@ semantic error: Unexpected token tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForArrayBindingPattern.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["MultiSkilledRobot", "Robot", "console", "getMultiRobot", "getRobot", "multiRobotA", "multiRobotB", "robotA"] +after transform: ScopeId(0): ["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)] @@ -32409,7 +28056,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForArrayBindingPattern2.ts 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"] +after transform: ScopeId(0): ["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(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)] @@ -32492,7 +28139,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForArrayBindingPatternDefaultValues.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["MultiSkilledRobot", "Robot", "console", "getMultiRobot", "getRobot", "multiRobotA", "multiRobotB", "robotA"] +after transform: ScopeId(0): ["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)] @@ -32566,7 +28213,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForArrayBindingPatternDefaultValues2.ts 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"] +after transform: ScopeId(0): ["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(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)] @@ -32640,7 +28287,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForObjectBindingPattern.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["MultiRobot", "Robot", "console", "getMultiRobot", "getRobot", "multiRobot", "robot"] +after transform: ScopeId(0): ["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)] @@ -32687,7 +28334,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForObjectBindingPattern2.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["MultiRobot", "Robot", "console", "getMultiRobot", "getRobot", "i", "multiRobot", "name", "nameA", "primary", "primaryA", "robot", "secondary", "secondaryA", "skill", "skillA"] +after transform: ScopeId(0): ["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(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)] @@ -32770,7 +28417,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForObjectBindingPatternDefaultValues.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["MultiRobot", "Robot", "console", "getMultiRobot", "getRobot", "multiRobot", "robot"] +after transform: ScopeId(0): ["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)] @@ -32817,7 +28464,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForObjectBindingPatternDefaultValues2.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["MultiRobot", "Robot", "console", "getMultiRobot", "getRobot", "i", "multiRobot", "name", "nameA", "primary", "primaryA", "robot", "secondary", "secondaryA", "skill", "skillA"] +after transform: ScopeId(0): ["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(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)] @@ -32900,7 +28547,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForOfArrayBindingPattern.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["MultiSkilledRobot", "Robot", "console", "getMultiRobots", "getRobots", "multiRobotA", "multiRobotB", "multiRobots", "robotA", "robotB", "robots"] +after transform: ScopeId(0): ["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)] @@ -32983,7 +28630,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForOfArrayBindingPattern2.ts 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"] +after transform: ScopeId(0): ["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(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)] @@ -33066,7 +28713,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["MultiSkilledRobot", "Robot", "console", "getMultiRobots", "getRobots", "multiRobotA", "multiRobotB", "multiRobots", "robotA", "robotB", "robots"] +after transform: ScopeId(0): ["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)] @@ -33140,7 +28787,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2.ts 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"] +after transform: ScopeId(0): ["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(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)] @@ -33214,7 +28861,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForOfObjectBindingPattern.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["MultiRobot", "Robot", "console", "getMultiRobots", "getRobots", "multiRobots", "robots"] +after transform: ScopeId(0): ["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)] @@ -33261,7 +28908,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForOfObjectBindingPattern2.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["MultiRobot", "Robot", "console", "getMultiRobots", "getRobots", "i", "multiRobots", "name", "nameA", "primary", "primaryA", "robots", "secondary", "secondaryA", "skill", "skillA"] +after transform: ScopeId(0): ["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(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)] @@ -33344,7 +28991,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["MultiRobot", "Robot", "console", "getMultiRobots", "getRobots", "multiRobots", "robots"] +after transform: ScopeId(0): ["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)] @@ -33391,7 +29038,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["MultiRobot", "Robot", "console", "getMultiRobots", "getRobots", "i", "multiRobots", "name", "nameA", "primary", "primaryA", "robots", "secondary", "secondaryA", "skill", "skillA"] +after transform: ScopeId(0): ["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(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)] @@ -33474,7 +29121,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringParameterNestedObjectBindingPattern.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Robot", "console", "foo1", "foo2", "foo3", "robotA"] +after transform: ScopeId(0): ["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)] @@ -33494,7 +29141,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringParameterNestedObjectBindingPatternDefaultValues.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Robot", "console", "foo1", "foo2", "foo3", "robotA"] +after transform: ScopeId(0): ["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)] @@ -33514,7 +29161,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringParameterObjectBindingPattern.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Robot", "console", "foo1", "foo2", "foo3", "hello", "robotA"] +after transform: ScopeId(0): ["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)] @@ -33534,7 +29181,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringParameterObjectBindingPatternDefaultValues.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Robot", "console", "foo1", "foo2", "foo3", "hello", "robotA"] +after transform: ScopeId(0): ["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)] @@ -33554,7 +29201,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringParametertArrayBindingPattern.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Robot", "console", "foo1", "foo2", "foo3", "foo4", "robotA"] +after transform: ScopeId(0): ["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)] @@ -33577,7 +29224,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringParametertArrayBindingPattern2.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Robot", "console", "foo1", "foo2", "foo3", "foo4", "robotA"] +after transform: ScopeId(0): ["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)] @@ -33600,7 +29247,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringParametertArrayBindingPatternDefaultValues.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Robot", "console", "foo1", "foo2", "foo3", "foo4", "robotA"] +after transform: ScopeId(0): ["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)] @@ -33623,7 +29270,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringParametertArrayBindingPatternDefaultValues2.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Robot", "console", "foo1", "foo2", "foo3", "robotA"] +after transform: ScopeId(0): ["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)] @@ -33643,7 +29290,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatement.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Robot", "console", "hello", "nameA", "nameB", "nameC", "robotA", "robotB", "skillB", "skillC"] +after transform: ScopeId(0): ["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)] @@ -33660,7 +29307,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatement1.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Robot", "a", "a1", "b", "b1", "c", "c1", "console", "hello", "nameA", "nameB", "nameC", "robotA", "robotB", "skillB", "skillC"] +after transform: ScopeId(0): ["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)] @@ -33677,7 +29324,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatementArrayBindingPattern.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Robot", "console", "nameA", "nameA2", "nameC", "numberA2", "numberA3", "numberB", "numberC", "numberC2", "robotA", "robotAInfo", "robotB", "skillA2", "skillC"] +after transform: ScopeId(0): ["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)] @@ -33691,7 +29338,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatementArrayBindingPattern2.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["MultiSkilledRobot", "console", "multiRobotA", "multiRobotAInfo", "multiRobotB", "nameMA", "nameMB", "nameMC", "nameMC2", "primarySkillA", "primarySkillC", "secondarySkillA", "secondarySkillC", "skillA"] +after transform: ScopeId(0): ["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)] @@ -33705,7 +29352,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatementArrayBindingPattern3.ts 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"] +after transform: ScopeId(0): ["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)] @@ -33719,7 +29366,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Robot", "console", "nameA", "nameA2", "nameC", "numberA2", "numberA3", "numberB", "numberC", "numberC2", "robotA", "robotAInfo", "robotB", "skillA2", "skillC"] +after transform: ScopeId(0): ["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)] @@ -33733,7 +29380,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues2.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["MultiSkilledRobot", "console", "multiRobotA", "multiRobotB", "nameMA", "nameMB", "nameMC", "nameMC2", "primarySkillA", "primarySkillC", "secondarySkillA", "secondarySkillC", "skillA"] +after transform: ScopeId(0): ["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)] @@ -33747,7 +29394,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatementArrayBindingPatternDefaultValues3.ts 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"] +after transform: ScopeId(0): ["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)] @@ -33761,7 +29408,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatementDefaultValues.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Robot", "console", "hello", "nameA", "nameB", "nameC", "robotA", "robotB", "skillB", "skillC"] +after transform: ScopeId(0): ["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)] @@ -33778,7 +29425,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatementNestedObjectBindingPattern.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Robot", "console", "nameB", "nameC", "primaryA", "primaryB", "robotA", "robotB", "secondaryA", "secondaryB"] +after transform: ScopeId(0): ["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)] @@ -33795,7 +29442,7 @@ rebuilt : ["console"] tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatementNestedObjectBindingPatternWithDefaultValues.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Robot", "console", "nameB", "nameC", "primaryA", "primaryB", "robotA", "robotB", "secondaryA", "secondaryB"] +after transform: ScopeId(0): ["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)] @@ -33880,10 +29527,7 @@ after transform: SymbolId(0) "m1" rebuilt : SymbolId(0) "m1" 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: +semantic error: 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): [] Unresolved references mismatch: @@ -33891,10 +29535,7 @@ after transform: ["Array", "Partial", "ReadonlyArray", "spected", "true"] rebuilt : ["spected"] tasks/coverage/typescript/tests/cases/compiler/specializationError.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Bar", "Promise"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] rebuilt : ScopeId(0): [] @@ -33914,9 +29555,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] Symbol reference IDs mismatch for "C": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -33925,43 +29563,25 @@ after transform: SymbolId(0) "M" rebuilt : SymbolId(0) "M" tasks/coverage/typescript/tests/cases/compiler/specializationsShouldNotAffectEachOther.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Series", "foo", "keyExtent2", "series"] -rebuilt : ScopeId(0): ["foo", "keyExtent2", "series"] -Scope children mismatch: +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/specializeVarArgs1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Observable", "ObservableArray", "a", "observableArray"] -rebuilt : ScopeId(0): ["a", "observableArray"] -Scope children mismatch: +semantic error: 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): [] tasks/coverage/typescript/tests/cases/compiler/specializedInheritedConstructors1.ts -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: +semantic error: 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): [] Symbol reference IDs mismatch for "Model": after transform: SymbolId(5): [ReferenceId(5), ReferenceId(7), ReferenceId(8), ReferenceId(10)] rebuilt : SymbolId(2): [ReferenceId(1), ReferenceId(3)] tasks/coverage/typescript/tests/cases/compiler/specializedLambdaTypeArguments.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["A", "Tany"] -rebuilt : ScopeId(1): [] -Symbol reference IDs mismatch for "X": +semantic error: Symbol reference IDs mismatch for "X": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2)] rebuilt : SymbolId(0): [] @@ -33977,24 +29597,18 @@ after transform: SymbolId(1): [ReferenceId(1), ReferenceId(4)] rebuilt : SymbolId(1): [] tasks/coverage/typescript/tests/cases/compiler/specializedSignatureInInterface.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: 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"] +after transform: ScopeId(0): ["foo1", "foo2"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] @@ -34016,29 +29630,12 @@ after transform: ["Array"] rebuilt : ["Array", "foo1", "foo2"] tasks/coverage/typescript/tests/cases/compiler/spreadExpressionContextualType.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Apple", "Orange", "_objectSpread", "test", "test2"] -rebuilt : ScopeId(0): ["_objectSpread", "test", "test2"] -Scope children 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(3): ["T", "item"] -rebuilt : ScopeId(1): ["item"] -Bindings mismatch: -after transform: ScopeId(4): ["T", "item", "x"] -rebuilt : ScopeId(2): ["item", "x"] - -tasks/coverage/typescript/tests/cases/compiler/spreadExpressionContextualTypeWithNamespace.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "thing"] -rebuilt : ScopeId(1): ["thing"] tasks/coverage/typescript/tests/cases/compiler/spreadIdenticalTypesRemoved.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Animal", "Animal2", "_objectSpread", "billOwner", "clonePet"] -rebuilt : ScopeId(0): ["_objectSpread", "billOwner", "clonePet"] -Scope children 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)] @@ -34052,7 +29649,7 @@ rebuilt : SymbolId(3): [] tasks/coverage/typescript/tests/cases/compiler/spreadObjectNoCircular1.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Box", "Foo", "_objectSpread", "b"] +after transform: ScopeId(0): ["Foo", "_objectSpread", "b"] rebuilt : ScopeId(0): ["Foo", "_objectSpread"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -34186,10 +29783,7 @@ after transform: ["require"] rebuilt : ["m", "require"] tasks/coverage/typescript/tests/cases/compiler/spreadOfObjectLiteralAssignableToIndexSignature.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["RecordOfRecords", "RecordOfRecordsOrEmpty", "_objectSpread", "foo", "recordOfRecords", "recordsOfRecordsOrEmpty"] -rebuilt : ScopeId(0): ["_objectSpread", "foo", "recordOfRecords", "recordsOfRecordsOrEmpty"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -34197,29 +29791,15 @@ after transform: ["Record", "require", "undefined"] rebuilt : ["require", "undefined"] tasks/coverage/typescript/tests/cases/compiler/spreadParameterTupleType.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["A", "C"] -rebuilt : ScopeId(1): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(1): [ScopeId(2)] -Bindings mismatch: -after transform: ScopeId(5): ["A", "B", "C", "D"] -rebuilt : ScopeId(3): [] Scope children mismatch: after transform: ScopeId(5): [ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] rebuilt : ScopeId(3): [ScopeId(4)] -tasks/coverage/typescript/tests/cases/compiler/spreadTupleAccessedByTypeParameter.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["N", "i", "rest", "singleton", "singletons"] -rebuilt : ScopeId(1): ["i", "rest", "singleton", "singletons"] - tasks/coverage/typescript/tests/cases/compiler/spreadTypeRemovesReadonly.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["ReadonlyData", "_objectSpread", "clone", "data"] -rebuilt : ScopeId(0): ["_objectSpread", "clone", "data"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -34232,10 +29812,7 @@ after transform: ["const", "foo", "fx1", "fx2"] rebuilt : ["foo", "fx1", "fx2"] tasks/coverage/typescript/tests/cases/compiler/spuriousCircularityOnTypeImport.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["SelectorMap"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -34257,81 +29834,18 @@ Missing ReferenceId: "_tessst" Missing ReferenceId: "funkyFor" Missing ReferenceId: "tessst" Missing ReferenceId: "tessst" -Bindings mismatch: -after transform: ScopeId(0): ["Array", "ListWrapper", "ListWrapper2", "Scanner", "cloned", "outer", "tessst", "y"] -rebuilt : ScopeId(0): ["ListWrapper", "ListWrapper2", "cloned", "outer", "tessst", "y"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(4), SymbolId(5), SymbolId(13), SymbolId(24), SymbolId(124)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(3), SymbolId(4), SymbolId(10), SymbolId(18), SymbolId(101)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(6), ScopeId(12), ScopeId(14), ScopeId(55), ScopeId(56), ScopeId(57)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(6), ScopeId(12)] -Bindings mismatch: -after transform: ScopeId(1): ["Inner", "T", "x"] -rebuilt : ScopeId(1): ["Inner", "x"] -Bindings mismatch: -after transform: ScopeId(4): ["T", "array", "dit"] -rebuilt : ScopeId(4): ["array", "dit"] -Bindings mismatch: -after transform: ScopeId(5): ["T", "a", "array", "dit"] -rebuilt : ScopeId(5): ["a", "array", "dit"] Binding symbols mismatch: after transform: ScopeId(6): [SymbolId(14), SymbolId(130)] rebuilt : ScopeId(6): [SymbolId(11), SymbolId(12)] Scope flags mismatch: after transform: ScopeId(6): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(6): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(7): ["T", "U", "array", "callback"] -rebuilt : ScopeId(7): ["array", "callback"] -Bindings mismatch: -after transform: ScopeId(17): ["T", "array", "dit"] -rebuilt : ScopeId(15): ["array", "dit"] -Bindings mismatch: -after transform: ScopeId(18): ["T", "array", "dit", "fn", "i"] -rebuilt : ScopeId(16): ["array", "dit", "fn", "i"] -Bindings mismatch: -after transform: ScopeId(21): ["T", "array", "dit"] -rebuilt : ScopeId(19): ["array", "dit"] -Bindings mismatch: -after transform: ScopeId(22): ["T", "array", "dit"] -rebuilt : ScopeId(20): ["array", "dit"] -Bindings mismatch: -after transform: ScopeId(23): ["T", "array", "dit", "startIndex", "value"] -rebuilt : ScopeId(21): ["array", "dit", "startIndex", "value"] -Bindings mismatch: -after transform: ScopeId(24): ["T", "dit", "el", "list"] -rebuilt : ScopeId(22): ["dit", "el", "list"] -Bindings mismatch: -after transform: ScopeId(25): ["T", "a", "array", "dit", "scanner"] -rebuilt : ScopeId(23): ["a", "array", "dit", "scanner"] -Bindings mismatch: -after transform: ScopeId(29): ["T", "dit", "index", "list", "value"] -rebuilt : ScopeId(27): ["dit", "index", "list", "value"] -Bindings mismatch: -after transform: ScopeId(30): ["T", "dit", "index", "list", "res"] -rebuilt : ScopeId(28): ["dit", "index", "list", "res"] -Bindings mismatch: -after transform: ScopeId(31): ["T", "dit", "i", "index", "items", "list"] -rebuilt : ScopeId(29): ["dit", "i", "index", "items", "list"] -Bindings mismatch: -after transform: ScopeId(34): ["T", "dit", "el", "index", "list"] -rebuilt : ScopeId(32): ["dit", "el", "index", "list"] -Bindings mismatch: -after transform: ScopeId(42): ["T", "dit", "from", "l", "to"] -rebuilt : ScopeId(40): ["dit", "from", "l", "to"] -Bindings mismatch: -after transform: ScopeId(43): ["T", "dit", "from", "l", "length"] -rebuilt : ScopeId(41): ["dit", "from", "l", "length"] -Bindings mismatch: -after transform: ScopeId(44): ["T", "compareFn", "dit", "l"] -rebuilt : ScopeId(42): ["compareFn", "dit", "l"] -Bindings mismatch: -after transform: ScopeId(47): ["T", "dit", "l"] -rebuilt : ScopeId(45): ["dit", "l"] -Bindings mismatch: -after transform: ScopeId(48): ["T", "dit", "l"] -rebuilt : ScopeId(46): ["dit", "l"] -Bindings mismatch: -after transform: ScopeId(49): ["T", "candidate", "candidateValue", "dit", "index", "list", "maxValue", "predicate", "solution"] -rebuilt : ScopeId(47): ["candidate", "candidateValue", "dit", "index", "list", "maxValue", "predicate", "solution"] Symbol reference IDs mismatch for "ListWrapper2": after transform: SymbolId(5): [ReferenceId(5), ReferenceId(9), ReferenceId(12)] rebuilt : SymbolId(4): [ReferenceId(4)] @@ -34346,10 +29860,7 @@ after transform: SymbolId(13) "tessst" rebuilt : SymbolId(10) "tessst" tasks/coverage/typescript/tests/cases/compiler/staticFieldWithInterfaceContext.ts -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: +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), 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)] @@ -34378,10 +29889,7 @@ after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/staticInterfaceAssignmentCompat.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Shape", "ShapeFactory", "x"] -rebuilt : ScopeId(0): ["Shape", "x"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch for "Shape": @@ -34389,25 +29897,7 @@ after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2), R rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(1)] tasks/coverage/typescript/tests/cases/compiler/staticMethodWithTypeParameterExtendsClauseDeclFile.ts -semantic error: Bindings mismatch: -after transform: ScopeId(4): ["T"] -rebuilt : ScopeId(4): [] -Bindings mismatch: -after transform: ScopeId(5): ["T"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(6): ["T"] -rebuilt : ScopeId(6): [] -Bindings mismatch: -after transform: ScopeId(7): ["T"] -rebuilt : ScopeId(7): [] -Bindings mismatch: -after transform: ScopeId(8): ["T"] -rebuilt : ScopeId(8): [] -Bindings mismatch: -after transform: ScopeId(9): ["T"] -rebuilt : ScopeId(9): [] -Symbol reference IDs mismatch for "privateClass": +semantic error: Symbol reference IDs mismatch for "privateClass": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1)] rebuilt : SymbolId(0): [] Symbol reference IDs mismatch for "publicClass": @@ -34415,16 +29905,13 @@ after transform: SymbolId(1): [ReferenceId(2), ReferenceId(3), ReferenceId(4), R rebuilt : SymbolId(1): [] tasks/coverage/typescript/tests/cases/compiler/staticPrototypePropertyOnClass.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(5): [ScopeId(6), ScopeId(7), ScopeId(8)] rebuilt : ScopeId(5): [ScopeId(6)] tasks/coverage/typescript/tests/cases/compiler/strictFunctionTypes1.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B", "Func", "a", "b", "never", "t1", "t2", "t3", "t4", "t5", "t6", "x", "x1", "x10", "x11", "x2", "x3", "x4"] +after transform: ScopeId(0): ["a", "b", "never", "t1", "t2", "t3", "t4", "t5", "t6", "x", "x1", "x10", "x11", "x2", "x3", "x4"] rebuilt : ScopeId(0): ["t1", "t2", "t3", "t4", "t5", "t6", "x", "x1", "x10", "x11", "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)] @@ -34469,30 +29956,15 @@ after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(5)] rebuilt : SymbolId(0): [ReferenceId(3), ReferenceId(4)] tasks/coverage/typescript/tests/cases/compiler/strictNullNotNullIndexTypeShouldWork.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "Foo", "FooClass", "Test", "Test2"] -rebuilt : ScopeId(0): ["FooClass", "Test", "Test2"] -Scope children mismatch: +semantic error: 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): [] -Bindings mismatch: -after transform: ScopeId(5): ["P"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(7): ["T"] -rebuilt : ScopeId(5): [] Unresolved references mismatch: after transform: ["Readonly"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/strictOptionalProperties2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T1", "T2"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -34537,9 +30009,9 @@ Missing ReferenceId: "M" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0)] rebuilt : ScopeId(0): [SymbolId(0)] -Bindings mismatch: -after transform: ScopeId(1): ["I", "_M", "f"] -rebuilt : ScopeId(1): ["_M", "f"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(2), SymbolId(4)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -34555,7 +30027,7 @@ semantic error: Namespaces exporting non-const are not supported by Babel. Chang tasks/coverage/typescript/tests/cases/compiler/styledComponentsInstantiaionLimitNotReached.ts 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"] +after transform: ScopeId(0): ["React"] 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)] @@ -34565,10 +30037,7 @@ after transform: ["Exclude", "Extract", "JSX", "Omit", "Partial", "Pick", "true" rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(9), ScopeId(10)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch for "C": @@ -34576,24 +30045,12 @@ after transform: SymbolId(12): [ReferenceId(31), ReferenceId(33)] rebuilt : SymbolId(0): [ReferenceId(0)] 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: +semantic error: 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): [] -Bindings mismatch: -after transform: ScopeId(6): ["Z"] -rebuilt : ScopeId(3): [] tasks/coverage/typescript/tests/cases/compiler/substituteReturnTypeSatisfiesConstraint.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["FFG", "M", "O", "X"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -34601,26 +30058,17 @@ after transform: ["ReturnType"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/substitutionTypeForIndexedAccessType1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["AddPropToObject"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -34628,24 +30076,15 @@ after transform: ["Record"] rebuilt : [] 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: +semantic error: 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"] Unresolved references mismatch: after transform: ["Record"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/substitutionTypePassedToExtends.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Bar1", "Bar2", "Foo1", "Foo2"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -34653,10 +30092,7 @@ after transform: ["Set"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -34664,34 +30100,14 @@ after transform: ["Exclude"] rebuilt : [] 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: +semantic error: 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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(11): ["T", "a", "t", "x"] -rebuilt : ScopeId(3): ["a", "t", "x"] - -tasks/coverage/typescript/tests/cases/compiler/subtypeRelationForNever.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["a", "haveFew", "haveNone", "r", "values"] -rebuilt : ScopeId(2): ["haveFew", "haveNone", "values"] -Bindings mismatch: -after transform: ScopeId(3): ["a", "value"] -rebuilt : ScopeId(3): ["value"] tasks/coverage/typescript/tests/cases/compiler/subtypingTransitivity.ts semantic error: Symbol reference IDs mismatch for "B": @@ -34754,7 +30170,10 @@ after transform: [ReferenceId(0), ReferenceId(2)] rebuilt : [ReferenceId(0)] tasks/coverage/typescript/tests/cases/compiler/superHasMethodsFromMergedInterface.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): ["Sub"] +rebuilt : ScopeId(0): ["C", "Sub"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Symbol flags mismatch for "C": @@ -34765,13 +30184,7 @@ after transform: SymbolId(0): [Span { start: 31, end: 32 }] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/superWithGenericSpecialization.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] -Symbol reference IDs mismatch for "D": +semantic error: Symbol reference IDs mismatch for "D": after transform: SymbolId(2): [ReferenceId(3)] rebuilt : SymbolId(1): [] @@ -34790,7 +30203,7 @@ rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/symbolLinkDeclarationEmitModuleNames.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Constructor", "ControllerClass"] +after transform: ScopeId(0): ["Constructor"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] @@ -34798,7 +30211,7 @@ rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/symbolLinkDeclarationEmitModuleNamesRootDir.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Constructor", "ControllerClass"] +after transform: ScopeId(0): ["Constructor"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] @@ -34816,10 +30229,7 @@ after transform: SymbolId(0): [Span { start: 35, end: 36 }] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/symbolObserverMismatchingPolyfillsWorkTogether.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["SymbolConstructor", "obj"] -rebuilt : ScopeId(0): ["obj"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] @@ -34839,10 +30249,7 @@ 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -35109,15 +30516,9 @@ after transform: SymbolId(0) "ns" rebuilt : SymbolId(0) "ns" tasks/coverage/typescript/tests/cases/compiler/taggedPrimitiveNarrowing.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Hash", "getHashLength", "getHashLength2"] -rebuilt : ScopeId(0): ["getHashLength", "getHashLength2"] -Scope children mismatch: +semantic error: 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(4): ["T", "hash"] -rebuilt : ScopeId(3): ["hash"] Unresolved references mismatch: after transform: ["Error", "true"] rebuilt : ["Error"] @@ -35143,9 +30544,6 @@ rebuilt : ScopeId(0): [SymbolId(0)] Binding symbols mismatch: after transform: ScopeId(1): [SymbolId(1), SymbolId(4), SymbolId(5), SymbolId(6)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(4), SymbolId(5)] -Bindings mismatch: -after transform: ScopeId(2): ["T", "x"] -rebuilt : ScopeId(2): ["x"] Symbol flags mismatch for "id": after transform: SymbolId(1): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(2): SymbolFlags(FunctionScopedVariable) @@ -35154,10 +30552,7 @@ after transform: SymbolId(4): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(4): SymbolFlags(FunctionScopedVariable) tasks/coverage/typescript/tests/cases/compiler/tailRecursiveConditionalTypes.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["GetChars", "GetCharsRec", "Reverse", "ReverseRec", "T10", "T11", "T20", "T30", "T31", "T40", "T41", "Trim", "TupleOf", "TupleOfRec"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(12), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(21)] rebuilt : ScopeId(0): [] @@ -35167,34 +30562,22 @@ after transform: ScopeId(0): ["Input", "MyComponent", "TemplateRef"] rebuilt : ScopeId(0): ["Input", "MyComponent"] tasks/coverage/typescript/tests/cases/compiler/templateExpressionAsPossiblyDiscriminantValue.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["BiomeButtonProps", "BiomePlainLinkProps", "ClickableDiscriminatedUnion", "p3"] -rebuilt : ScopeId(0): ["p3"] -Scope children mismatch: +semantic error: 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: +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/templateLiteralConstantEvaluation.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "arg"] -rebuilt : ScopeId(1): ["arg"] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["const"] rebuilt : [] 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: +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): [] Symbol reference IDs mismatch for "a": @@ -35203,7 +30586,7 @@ rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/templateLiteralIntersection3.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Path", "lowercasePath", "options1", "path"] +after transform: ScopeId(0): ["lowercasePath", "options1", "path"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] @@ -35228,10 +30611,7 @@ after transform: ["Lowercase"] rebuilt : ["lowercasePath", "options1", "path"] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -35265,49 +30645,28 @@ after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) tasks/coverage/typescript/tests/cases/compiler/testTypings.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["IComparable"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: 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): [] Symbol reference IDs mismatch for "C": after transform: SymbolId(5): [ReferenceId(5), ReferenceId(8)] rebuilt : SymbolId(2): [ReferenceId(2)] tasks/coverage/typescript/tests/cases/compiler/thisExpressionOfGenericObject.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Symbol reference IDs mismatch for "MyClass1": +semantic error: Symbol reference IDs mismatch for "MyClass1": after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/thisInGenericStaticMembers.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["T", "source", "value"] -rebuilt : ScopeId(2): ["source", "value"] -Bindings mismatch: -after transform: ScopeId(3): ["T", "source"] -rebuilt : ScopeId(3): ["source"] -Symbol reference IDs mismatch for "B": +semantic error: Symbol reference IDs mismatch for "B": after transform: SymbolId(6): [ReferenceId(7), ReferenceId(8), ReferenceId(10), ReferenceId(11)] rebuilt : SymbolId(4): [] @@ -35343,23 +30702,14 @@ after transform: ["Function"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/thisInTupleTypeParameterConstraints.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Array", "Boolean", "Function", "IArguments", "Number", "Object", "RegExp", "String", "x"] -rebuilt : ScopeId(0): ["x"] -Scope children 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(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: +semantic error: 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): [] @@ -35368,15 +30718,9 @@ after transform: ["Error", "this"] rebuilt : ["Error"] 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: +semantic error: 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"] Unresolved references mismatch: after transform: ["Component", "Readonly"] rebuilt : ["Component"] @@ -35384,11 +30728,6 @@ Unresolved reference IDs mismatch for "Component": after transform: [ReferenceId(6), ReferenceId(9)] rebuilt : [ReferenceId(0)] -tasks/coverage/typescript/tests/cases/compiler/thisTypeAsConstraint.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] - tasks/coverage/typescript/tests/cases/compiler/this_inside-object-literal-getters-and-setters.ts semantic error: Missing SymbolId: "ObjectLiteral" Missing SymbolId: "_ObjectLiteral" @@ -35405,10 +30744,7 @@ after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) tasks/coverage/typescript/tests/cases/compiler/tooFewArgumentsInGenericFunctionTypedArgument.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Collection", "Combinators", "_", "c2", "r1a", "r1b", "rf1"] -rebuilt : ScopeId(0): ["_", "c2", "r1a", "r1b", "rf1"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(8)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -35416,18 +30752,12 @@ 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 tasks/coverage/typescript/tests/cases/compiler/topLevelBlockExpando.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Person"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/trackedSymbolsNoCrash.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Node", "Node0", "Node1", "Node10", "Node11", "Node12", "Node13", "Node14", "Node15", "Node16", "Node17", "Node18", "Node19", "Node2", "Node20", "Node21", "Node22", "Node23", "Node24", "Node25", "Node26", "Node27", "Node28", "Node29", "Node3", "Node30", "Node31", "Node32", "Node33", "Node34", "Node35", "Node36", "Node37", "Node38", "Node39", "Node4", "Node40", "Node41", "Node42", "Node43", "Node44", "Node45", "Node46", "Node47", "Node48", "Node49", "Node5", "Node50", "Node51", "Node52", "Node53", "Node54", "Node55", "Node56", "Node57", "Node58", "Node59", "Node6", "Node60", "Node61", "Node62", "Node63", "Node64", "Node65", "Node66", "Node67", "Node68", "Node69", "Node7", "Node70", "Node71", "Node72", "Node73", "Node74", "Node75", "Node76", "Node77", "Node78", "Node79", "Node8", "Node80", "Node81", "Node82", "Node83", "Node84", "Node85", "Node86", "Node87", "Node88", "Node89", "Node9", "Node90", "Node91", "Node92", "Node93", "Node94", "Node95", "Node96", "Node97", "Node98", "Node99", "SyntaxKind"] -rebuilt : ScopeId(0): ["SyntaxKind"] -Scope children 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(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), ScopeId(84), ScopeId(85), ScopeId(86), ScopeId(87), ScopeId(88), ScopeId(89), ScopeId(90), ScopeId(91), ScopeId(92), ScopeId(93), ScopeId(94), ScopeId(95), ScopeId(96), ScopeId(97), ScopeId(98), ScopeId(99), ScopeId(100), ScopeId(101), ScopeId(102)] rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: @@ -35454,19 +30784,13 @@ after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), Sc 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: +semantic error: 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): [] tasks/coverage/typescript/tests/cases/compiler/trivialSubtypeReductionNoStructuralCheck2.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Wizard", "WizardStepProps", "_objectSpread", "props"] +after transform: ScopeId(0): ["Wizard", "_objectSpread", "props"] rebuilt : ScopeId(0): ["Wizard", "_objectSpread"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] @@ -35482,10 +30806,7 @@ after transform: [] rebuilt : ["props"] tasks/coverage/typescript/tests/cases/compiler/truthinessCallExpressionCoercion3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I", "f", "g"] -rebuilt : ScopeId(0): ["f", "g"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] @@ -35509,10 +30830,7 @@ 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(7)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Symbol flags mismatch for "createElement": @@ -35538,7 +30856,7 @@ rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) tasks/coverage/typescript/tests/cases/compiler/tsxDiscriminantPropertyInference.tsx semantic error: Bindings mismatch: -after transform: ScopeId(0): ["DiscriminatorFalse", "DiscriminatorTrue", "JSX", "Props", "_jsxFileName", "_reactJsxRuntime"] +after transform: ScopeId(0): ["JSX", "_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)] @@ -35560,23 +30878,17 @@ rebuilt : ["React"] tasks/coverage/typescript/tests/cases/compiler/tsxInferenceShouldNotYieldAnyOnUnions.tsx semantic error: Bindings mismatch: -after transform: ScopeId(0): ["JSX", "Props", "PropsBase", "PropsWithConvert", "ShouldInferFromData", "_jsxFileName", "_reactJsxRuntime", "f1", "f2", "f3"] +after transform: ScopeId(0): ["JSX", "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"] Unresolved references mismatch: after transform: ["JSX", "require"] rebuilt : ["require"] tasks/coverage/typescript/tests/cases/compiler/tsxReactPropsInferenceSucceedsOnIntersections.tsx -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["ButtonProps", "CustomButton", "CustomButtonProps", "React", "_jsxFileName"] -rebuilt : ScopeId(0): ["CustomButton", "React", "_jsxFileName"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch for "React": @@ -35592,10 +30904,7 @@ after transform: ScopeId(0): ["Foo", "Test", "_jsx", "_jsxFileName"] rebuilt : ScopeId(0): ["Foo", "_jsx", "_jsxFileName"] tasks/coverage/typescript/tests/cases/compiler/tsxStatelessComponentDefaultProps.tsx -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["BackButton", "Props", "React", "_jsxFileName", "a"] -rebuilt : ScopeId(0): ["BackButton", "React", "_jsxFileName", "a"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -35609,7 +30918,7 @@ 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", "_jsx", "_jsxFileName", "_objectSpread", "component", "component2", "getProps", "props", "props2"] +after transform: ScopeId(0): ["AnimalComponent", "JSX", "_jsx", "_jsxFileName", "_objectSpread", "component", "component2", "getProps", "props", "props2"] rebuilt : ScopeId(0): ["AnimalComponent", "_jsx", "_jsxFileName", "_objectSpread", "component", "component2", "getProps", "props", "props2"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] @@ -35620,7 +30929,7 @@ rebuilt : ["undefined"] tasks/coverage/typescript/tests/cases/compiler/tupleTypeInference.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["$q", "IPromise", "IQService", "a", "b", "c"] +after transform: ScopeId(0): ["$q", "a", "b", "c"] rebuilt : ScopeId(0): ["a", "b", "c"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(6)] @@ -35657,18 +30966,12 @@ after transform: [] rebuilt : ["$q"] 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: +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)] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(8), ScopeId(9), ScopeId(10)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -35676,10 +30979,7 @@ after transform: ["Exclude", "Pick", "Required", "set"] rebuilt : ["set"] tasks/coverage/typescript/tests/cases/compiler/typeAliasDeclarationEmit2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -35707,14 +31007,11 @@ rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/typeAliasFunctionTypeSharedSymbol.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Crashes", "Mixin", "ReturnTypeOf"] +after transform: ScopeId(0): [] 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)] @@ -35729,94 +31026,45 @@ after transform: SymbolId(0): [Span { start: 152, end: 157 }] rebuilt : SymbolId(0): [] 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: -after transform: ScopeId(1): ["T", "n"] -rebuilt : ScopeId(1): ["n"] -Bindings mismatch: -after transform: ScopeId(2): ["T", "n"] -rebuilt : ScopeId(2): ["n"] -Bindings mismatch: -after transform: ScopeId(3): ["T", "fun", "n", "n2"] -rebuilt : ScopeId(3): ["fun", "n", "n2"] - tasks/coverage/typescript/tests/cases/compiler/typeArgumentInferenceApparentType1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "iterable"] -rebuilt : ScopeId(1): ["iterable"] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["Iterable"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/typeArgumentInferenceApparentType2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "inner", "iterable"] -rebuilt : ScopeId(1): ["inner", "iterable"] -Bindings mismatch: -after transform: ScopeId(2): ["U", "res", "u"] -rebuilt : ScopeId(2): ["res", "u"] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["Iterable"] rebuilt : [] 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: +semantic error: 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"] tasks/coverage/typescript/tests/cases/compiler/typeArgumentInferenceWithRecursivelyReferencedTypeAliasToTypeLiteral01.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["TreeNode", "nodes"] -rebuilt : ScopeId(0): ["nodes"] -Scope children mismatch: +semantic error: 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: +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/typeArgumentsInFunctionExpressions.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "a", "f", "x"] -rebuilt : ScopeId(1): ["a", "f", "x"] -Bindings mismatch: -after transform: ScopeId(2): ["T", "a", "f", "x"] -rebuilt : ScopeId(2): ["a", "f", "x"] - tasks/coverage/typescript/tests/cases/compiler/typeCheckObjectCreationExpressionWithUndefinedCallResolutionData.ts semantic error: Missing SymbolId: "f" Missing ReferenceId: "require" @@ -35831,15 +31079,9 @@ after transform: [] rebuilt : ["require"] tasks/coverage/typescript/tests/cases/compiler/typeConstraintsWithConstructSignatures.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C", "Constructable"] -rebuilt : ScopeId(0): ["C"] -Scope children mismatch: +semantic error: 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): [] tasks/coverage/typescript/tests/cases/compiler/typeGuardConstructorNarrowPrimitivesInUnion.ts semantic error: Unresolved references mismatch: @@ -35898,10 +31140,7 @@ after transform: ["ArrayLike", "Iterable", "PropertyKey", "hasOwnProperty"] rebuilt : ["arrayLikeOrIterable", "hasOwnProperty"] tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowsIndexedAccessOfKnownProperty1.ts -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: +semantic error: 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)] @@ -35969,24 +31208,18 @@ after transform: ["const"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowsIndexedAccessOfKnownProperty3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo", "foo", "index"] -rebuilt : ScopeId(0): ["foo", "index"] -Scope children mismatch: +semantic error: 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: +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/typeGuardNarrowsIndexedAccessOfKnownProperty6.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo", "a", "aIndex", "b", "bIndex", "c", "cIndex"] +after transform: ScopeId(0): ["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)] @@ -36056,36 +31289,19 @@ after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(2)] tasks/coverage/typescript/tests/cases/compiler/typeInferenceCacheInvalidation.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Callback"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: -after transform: ScopeId(1): ["a", "fold", "r", "result", "values"] -rebuilt : ScopeId(1): ["fold", "result", "values"] -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: +semantic error: 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"] Symbol reference IDs mismatch for "NumCoercible": after transform: SymbolId(2): [ReferenceId(13), ReferenceId(15), ReferenceId(18)] rebuilt : SymbolId(0): [ReferenceId(5)] @@ -36094,27 +31310,9 @@ after transform: ["Array", "Date", "undefined"] rebuilt : ["undefined"] tasks/coverage/typescript/tests/cases/compiler/typeInferenceReturnTypeCallback.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Cons", "IList", "Nil"] -rebuilt : ScopeId(0): ["Cons", "Nil"] -Scope children mismatch: +semantic error: 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): [] -Bindings mismatch: -after transform: ScopeId(4): ["D", "f"] -rebuilt : ScopeId(2): ["f"] -Bindings mismatch: -after transform: ScopeId(5): ["T"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(6): ["U", "f"] -rebuilt : ScopeId(4): ["f"] -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: @@ -36122,22 +31320,16 @@ 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: +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(2): ["T", "obj"] -rebuilt : ScopeId(1): ["obj"] tasks/coverage/typescript/tests/cases/compiler/typeInferenceWithExcessPropertiesJsx.tsx semantic error: Missing SymbolId: "React" Missing ReferenceId: "require" -Bindings mismatch: -after transform: ScopeId(0): ["React", "TProps", "TranslationEntry", "Translations", "_jsxFileName", "_reactJsxRuntime"] -rebuilt : ScopeId(0): ["React", "_jsxFileName", "_reactJsxRuntime"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(8), SymbolId(9)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -36154,18 +31346,12 @@ 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: +semantic error: 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", "_wrapAsyncGenerator", "asyncFactory", "looserAsyncFactory", "looserSyncFactory", "syncFactory"] -rebuilt : ScopeId(0): ["_wrapAsyncGenerator", "asyncFactory", "looserAsyncFactory", "looserSyncFactory", "syncFactory"] -Scope children mismatch: +semantic error: 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)] Unresolved references mismatch: @@ -36173,7 +31359,10 @@ after transform: ["AsyncGenerator", "Generator", "require"] rebuilt : ["require"] tasks/coverage/typescript/tests/cases/compiler/typeParameterAndArgumentOfSameName1.ts -semantic error: Symbol flags mismatch for "A": +semantic error: Bindings mismatch: +after transform: ScopeId(1): ["r"] +rebuilt : ScopeId(1): ["A", "r"] +Symbol flags mismatch for "A": after transform: SymbolId(1): SymbolFlags(FunctionScopedVariable | TypeParameter) rebuilt : SymbolId(1): SymbolFlags(FunctionScopedVariable) Symbol span mismatch for "A": @@ -36189,72 +31378,28 @@ Unresolved references mismatch: after transform: ["Number"] rebuilt : [] -tasks/coverage/typescript/tests/cases/compiler/typeParameterAsElementType.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "arr", "t"] -rebuilt : ScopeId(1): ["arr", "t"] - -tasks/coverage/typescript/tests/cases/compiler/typeParameterAssignmentWithConstraints.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["A", "B", "a", "b"] -rebuilt : ScopeId(1): ["a", "b"] - tasks/coverage/typescript/tests/cases/compiler/typeParameterCompatibilityAccrossDeclarations.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I", "I2", "a", "a2", "i", "i2"] -rebuilt : ScopeId(0): ["a", "a2", "i", "i2"] -Scope children mismatch: +semantic error: 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"] tasks/coverage/typescript/tests/cases/compiler/typeParameterConstrainedToOuterTypeParameter2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B", "a", "b"] -rebuilt : ScopeId(0): ["a", "b"] -Scope children mismatch: +semantic error: 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: +semantic error: 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: -after transform: ScopeId(1): ["Top", "diamondMiddle"] -rebuilt : ScopeId(1): ["diamondMiddle"] -Bindings mismatch: -after transform: ScopeId(2): ["T", "U", "diamondBottom"] -rebuilt : ScopeId(2): ["diamondBottom"] -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"] -rebuilt : ScopeId(2): [] -Bindings mismatch: -after transform: ScopeId(3): ["U", "p"] -rebuilt : ScopeId(3): ["p"] - tasks/coverage/typescript/tests/cases/compiler/typeParameterExtendingUnion1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(6): ["T", "a"] -rebuilt : ScopeId(6): ["a"] -Symbol reference IDs mismatch for "Animal": +semantic error: Symbol reference IDs mismatch for "Animal": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(1)] Symbol reference IDs mismatch for "Cat": @@ -36265,10 +31410,7 @@ after transform: SymbolId(2): [ReferenceId(5)] rebuilt : SymbolId(2): [] tasks/coverage/typescript/tests/cases/compiler/typeParameterExtendingUnion2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(6): ["T", "a"] -rebuilt : ScopeId(6): ["a"] -Symbol reference IDs mismatch for "Cat": +semantic error: Symbol reference IDs mismatch for "Cat": after transform: SymbolId(1): [ReferenceId(2), ReferenceId(5)] rebuilt : SymbolId(1): [] Symbol reference IDs mismatch for "Dog": @@ -36276,74 +31418,36 @@ after transform: SymbolId(2): [ReferenceId(3), ReferenceId(6)] rebuilt : SymbolId(2): [] 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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(5): ["T", "i", "n"] -rebuilt : ScopeId(2): ["i", "n"] -Bindings mismatch: -after transform: ScopeId(6): ["K", "T", "array", "prop", "result"] -rebuilt : ScopeId(3): ["array", "prop", "result"] Unresolved references mismatch: after transform: ["Record"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/typeParameterFixingWithConstraints.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["IBar", "IFoo", "foo"] -rebuilt : ScopeId(0): ["foo"] -Scope children mismatch: +semantic error: 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: +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)] -Bindings mismatch: -after transform: ScopeId(1): ["T", "U", "f", "x", "y"] -rebuilt : ScopeId(1): ["f", "x", "y"] tasks/coverage/typescript/tests/cases/compiler/typeParameterFixingWithContextSensitiveArguments4.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B", "a", "b", "d", "f"] -rebuilt : ScopeId(0): ["a", "b", "d", "f"] -Scope children 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): ["T", "U", "p", "p1", "y", "y1"] -rebuilt : ScopeId(1): ["p", "p1", "y", "y1"] tasks/coverage/typescript/tests/cases/compiler/typeParameterFixingWithContextSensitiveArguments5.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B", "a", "b", "d", "f"] -rebuilt : ScopeId(0): ["a", "b", "d", "f"] -Scope children 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): ["T", "U", "pf1", "pf2", "t1", "u1"] -rebuilt : ScopeId(1): ["pf1", "pf2", "t1", "u1"] - -tasks/coverage/typescript/tests/cases/compiler/typeParameterInConstraint1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "U"] -rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/compiler/typeParameterLeak.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Box", "BoxFactory", "BoxFactoryFactory", "BoxTypes", "_f", "b", "f"] +after transform: ScopeId(0): ["_f", "b", "f"] rebuilt : ScopeId(0): ["_f", "b"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7)] @@ -36355,44 +31459,21 @@ Unresolved references mismatch: after transform: [] rebuilt : ["f"] -tasks/coverage/typescript/tests/cases/compiler/typeParameterListWithTrailingComma1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] - 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: +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(2): ["T", "U", "x"] -rebuilt : ScopeId(1): ["x"] -Bindings mismatch: -after transform: ScopeId(3): ["T", "U", "x"] -rebuilt : ScopeId(2): ["x"] tasks/coverage/typescript/tests/cases/compiler/typePartameterConstraintInstantiatedWithDefaultWhenCheckingDefault.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Identity", "Settable", "Test1", "Test2", "Test2Base", "test1", "test2"] -rebuilt : ScopeId(0): ["Identity", "test1", "test2"] -Scope children mismatch: +semantic error: 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): [] Symbol reference IDs mismatch for "Identity": after transform: SymbolId(3): [ReferenceId(3), ReferenceId(10), ReferenceId(12), ReferenceId(18), ReferenceId(26)] rebuilt : SymbolId(0): [ReferenceId(1)] tasks/coverage/typescript/tests/cases/compiler/typePredicateAcceptingPartialOfRefinedType.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Options", "Test"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -36400,47 +31481,21 @@ after transform: ["Partial"] rebuilt : [] 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: +semantic error: 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): [] -Bindings mismatch: -after transform: ScopeId(6): ["TNarrow", "narrow"] -rebuilt : ScopeId(2): ["narrow"] -Bindings mismatch: -after transform: ScopeId(7): ["T", "value"] -rebuilt : ScopeId(3): ["value"] Unresolved references mismatch: after transform: ["Array"] rebuilt : [] 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: +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)] -Bindings mismatch: -after transform: ScopeId(3): ["T", "value"] -rebuilt : ScopeId(1): ["value"] -Bindings mismatch: -after transform: ScopeId(5): ["T", "value"] -rebuilt : ScopeId(3): ["value"] - -tasks/coverage/typescript/tests/cases/compiler/typePredicateTopLevelTypeParameter.ts -semantic error: Bindings mismatch: -after transform: ScopeId(3): ["T", "a"] -rebuilt : ScopeId(3): ["a"] tasks/coverage/typescript/tests/cases/compiler/typePredicateWithThisParameter.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Bar", "Foo", "isFoo1", "isFoo2", "test"] +after transform: ScopeId(0): ["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)] @@ -36491,10 +31546,7 @@ after transform: ["const", "isOneOf"] rebuilt : ["fruit", "fruit2", "isOneOf"] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -36510,48 +31562,30 @@ after transform: [ReferenceId(1), ReferenceId(5)] rebuilt : [ReferenceId(3)] 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: +semantic error: 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", "_x$y", "isNotNull", "title", "x"] -rebuilt : ScopeId(0): ["_x$y", "isNotNull", "title", "x"] -Scope children 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(2): ["A", "x"] -rebuilt : ScopeId(1): ["x"] Unresolved references mismatch: after transform: ["NonNullable", "undefined"] rebuilt : ["undefined"] tasks/coverage/typescript/tests/cases/compiler/typePredicatesOptionalChaining2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Person", "getName1", "getName2", "isString"] -rebuilt : ScopeId(0): ["getName1", "getName2", "isString"] -Scope children 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)] 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: +semantic error: 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/typeReferenceDirectives1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -36560,7 +31594,7 @@ rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/typeReferenceDirectives10.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["$", "A"] +after transform: ScopeId(0): ["$"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] @@ -36568,17 +31602,14 @@ rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/typeReferenceDirectives13.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["$", "A"] +after transform: ScopeId(0): ["$"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/typeReferenceDirectives2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -36586,10 +31617,7 @@ after transform: ["$"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/typeReferenceDirectives3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -36603,7 +31631,7 @@ rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/typeReferenceDirectives5.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["$", "A"] +after transform: ScopeId(0): ["$"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] @@ -36695,30 +31723,30 @@ Missing ReferenceId: "TopLevelModule2" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(49)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(50)] -Bindings mismatch: -after transform: ScopeId(1): ["ClassA", "InterfaceY", "NotExportedModule", "SubModule1", "SubModule2", "_TopLevelModule"] -rebuilt : ScopeId(1): ["ClassA", "NotExportedModule", "SubModule1", "SubModule2", "_TopLevelModule"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(1), SymbolId(37), SymbolId(45), SymbolId(47), SymbolId(52)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(39), SymbolId(46), SymbolId(47)] Scope children mismatch: after transform: ScopeId(1): [ScopeId(2), ScopeId(16), ScopeId(29), ScopeId(31), ScopeId(33)] rebuilt : ScopeId(1): [ScopeId(2), ScopeId(14), ScopeId(22), ScopeId(24)] Binding symbols mismatch: after transform: ScopeId(2): [SymbolId(2), SymbolId(31), SymbolId(53)] rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4), SymbolId(33)] -Bindings mismatch: -after transform: ScopeId(3): ["ClassA", "ClassB", "InterfaceX", "NonExportedClassQ", "_SubSubModule"] -rebuilt : ScopeId(3): ["ClassA", "ClassB", "NonExportedClassQ", "_SubSubModule"] +Binding symbols mismatch: +after transform: ScopeId(3): [SymbolId(3), SymbolId(13), SymbolId(25), SymbolId(54)] +rebuilt : ScopeId(3): [SymbolId(5), SymbolId(6), SymbolId(16), SymbolId(27)] Scope children mismatch: after transform: ScopeId(3): [ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(10)] rebuilt : ScopeId(3): [ScopeId(4), ScopeId(6), ScopeId(8)] -Bindings mismatch: -after transform: ScopeId(16): ["InterfaceY", "SubSubModule2", "_SubModule2"] -rebuilt : ScopeId(14): ["SubSubModule2", "_SubModule2"] +Binding symbols mismatch: +after transform: ScopeId(16): [SymbolId(38), SymbolId(55)] +rebuilt : ScopeId(14): [SymbolId(40), SymbolId(41)] Scope children mismatch: after transform: ScopeId(16): [ScopeId(17), ScopeId(27)] rebuilt : ScopeId(14): [ScopeId(15)] -Bindings mismatch: -after transform: ScopeId(17): ["ClassA", "ClassB", "ClassC", "InterfaceY", "NonExportedInterfaceQ", "_SubSubModule2"] -rebuilt : ScopeId(15): ["ClassA", "ClassB", "ClassC", "_SubSubModule2"] +Binding symbols mismatch: +after transform: ScopeId(17): [SymbolId(39), SymbolId(40), SymbolId(41), SymbolId(56)] +rebuilt : ScopeId(15): [SymbolId(42), SymbolId(43), SymbolId(44), SymbolId(45)] Scope children mismatch: after transform: ScopeId(17): [ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26)] rebuilt : ScopeId(15): [ScopeId(16), ScopeId(18), ScopeId(20)] @@ -36757,7 +31785,10 @@ after transform: ["SubModule1", "SubSubModule1", "TopLevelModule1", "TopLevelMod rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/typeVal.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): [] +rebuilt : ScopeId(0): ["I"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Symbol flags mismatch for "I": @@ -36774,59 +31805,20 @@ after transform: SymbolId(0): [Span { start: 35, end: 38 }] rebuilt : SymbolId(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: +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(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"] -Bindings mismatch: -after transform: ScopeId(49): ["K", "handler", "kind", "option"] -rebuilt : ScopeId(9): ["handler", "kind", "option"] 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: +semantic error: 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): [] -Bindings mismatch: -after transform: ScopeId(7): ["T"] -rebuilt : ScopeId(4): [] -Bindings mismatch: -after transform: ScopeId(16): ["T", "obj"] -rebuilt : ScopeId(11): ["obj"] -Bindings mismatch: -after transform: ScopeId(18): ["T", "obj"] -rebuilt : ScopeId(13): ["obj"] -Bindings mismatch: -after transform: ScopeId(20): ["T", "obj"] -rebuilt : ScopeId(15): ["obj"] -Bindings mismatch: -after transform: ScopeId(22): ["T", "obj", "x"] -rebuilt : ScopeId(17): ["obj", "x"] -Bindings mismatch: -after transform: ScopeId(24): ["K", "T", "key", "obj"] -rebuilt : ScopeId(19): ["key", "obj"] -Bindings mismatch: -after transform: ScopeId(26): ["T", "a"] -rebuilt : ScopeId(21): ["a"] Unresolved references mismatch: after transform: ["Partial", "Readonly"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/typedArrayConstructorOverloads.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["TypedArrayConstructor", "makeTypedArray"] -rebuilt : ScopeId(0): ["makeTypedArray"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: @@ -36834,21 +31826,10 @@ after transform: ["ArrayBuffer", "BigInt64ArrayConstructor", "Float64ArrayConstr rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/typedArrays.ts -semantic error: Bindings mismatch: -after transform: ScopeId(8): ["T", "mapFn", "obj", "typedArrays"] -rebuilt : ScopeId(8): ["mapFn", "obj", "typedArrays"] -Bindings mismatch: -after transform: ScopeId(11): ["T", "mapFn", "obj", "thisArg", "typedArrays"] -rebuilt : ScopeId(11): ["mapFn", "obj", "thisArg", "typedArrays"] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["ArrayLike", "Float32Array", "Float64Array", "Int16Array", "Int32Array", "Int8Array", "Uint16Array", "Uint32Array", "Uint8Array", "Uint8ClampedArray"] rebuilt : ["Float32Array", "Float64Array", "Int16Array", "Int32Array", "Int8Array", "Uint16Array", "Uint32Array", "Uint8Array", "Uint8ClampedArray"] -tasks/coverage/typescript/tests/cases/compiler/typedGenericPrototypeMember.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] - tasks/coverage/typescript/tests/cases/compiler/typeofEnum.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["E", "e1", "e2"] @@ -36864,21 +31845,18 @@ after transform: SymbolId(0): [ReferenceId(0), ReferenceId(7)] rebuilt : SymbolId(0): [ReferenceId(5)] tasks/coverage/typescript/tests/cases/compiler/typeofImportInstantiationExpression.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Arg", "myFunction"] -rebuilt : ScopeId(0): ["myFunction"] -Scope children 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", "arg"] -rebuilt : ScopeId(1): ["arg"] Unresolved references mismatch: after transform: ["Record", "true"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/typeofInterface.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): ["j", "k"] +rebuilt : ScopeId(0): ["I", "j", "k"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Symbol flags mismatch for "I": @@ -36895,24 +31873,9 @@ after transform: SymbolId(1): [ReferenceId(2)] rebuilt : SymbolId(1): [] 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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(4): ["O", "fn"] -rebuilt : ScopeId(4): ["fn"] -Bindings mismatch: -after transform: ScopeId(7): ["O", "fn"] -rebuilt : ScopeId(7): ["fn"] -Bindings mismatch: -after transform: ScopeId(11): ["O", "fn"] -rebuilt : ScopeId(10): ["fn"] Symbol reference IDs mismatch for "val": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(4), ReferenceId(6), ReferenceId(10), ReferenceId(15), ReferenceId(17), ReferenceId(22)] rebuilt : SymbolId(0): [ReferenceId(1), ReferenceId(4), ReferenceId(7), ReferenceId(10)] @@ -36923,10 +31886,7 @@ after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(6)] rebuilt : ScopeId(0): [] Symbol reference IDs mismatch for "ALL": @@ -36956,10 +31916,7 @@ after transform: ["undefined"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch for "C": @@ -37115,14 +32072,9 @@ Unresolved references mismatch: after transform: [] rebuilt : ["index", "lineTokens", "token", "tokens"] -tasks/coverage/typescript/tests/cases/compiler/undefinedArgumentInference.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "f1"] -rebuilt : ScopeId(1): ["f1"] - tasks/coverage/typescript/tests/cases/compiler/undefinedAsDiscriminantWithUnknown.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["S", "s"] +after transform: ScopeId(0): ["s"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] @@ -37140,11 +32092,6 @@ Unresolved references mismatch: after transform: ["undefined"] rebuilt : ["s", "undefined"] -tasks/coverage/typescript/tests/cases/compiler/undefinedInferentialTyping.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "arr", "elemnt"] -rebuilt : ScopeId(1): ["arr", "elemnt"] - tasks/coverage/typescript/tests/cases/compiler/underscoreEscapedNameInEnum.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["E", "__foo", "bar"] @@ -37167,7 +32114,7 @@ rebuilt : SymbolId(1) "E" tasks/coverage/typescript/tests/cases/compiler/underscoreMapFirst.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["IData", "ISeries", "MyView", "_"] +after transform: ScopeId(0): ["MyView", "_"] rebuilt : ScopeId(0): ["MyView"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] @@ -37199,7 +32146,7 @@ rebuilt : ScopeId(4): ScopeFlags(Function) tasks/coverage/typescript/tests/cases/compiler/unionCallMixedTypeParameterPresence.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Err", "Ok", "e", "e2"] +after transform: ScopeId(0): ["e", "e2"] rebuilt : ScopeId(0): ["e2"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] @@ -37212,16 +32159,13 @@ after transform: [] rebuilt : ["e"] tasks/coverage/typescript/tests/cases/compiler/unionExcessPropertyCheckNoApparentPropTypeMismatchErrors.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["INumberDictionary", "IStringDictionary", "count"] -rebuilt : ScopeId(0): ["count"] -Scope children mismatch: +semantic error: 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", "_objectSpread", "a", "ab"] +after transform: ScopeId(0): ["_objectSpread", "a", "ab"] rebuilt : ScopeId(0): ["_objectSpread"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -37237,16 +32181,13 @@ after transform: ["require"] rebuilt : ["a", "ab", "require"] tasks/coverage/typescript/tests/cases/compiler/unionOfArraysFilterCall.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Buzz", "Fizz"] -rebuilt : ScopeId(0): [] -Scope children 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)] 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"] +after transform: ScopeId(0): ["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)] @@ -37262,10 +32203,7 @@ after transform: ["Array", "Bar", "Baz", "Foo", "Promise", "Test"] rebuilt : ["a", "tmp"] 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: +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: @@ -37274,9 +32212,6 @@ rebuilt : ScopeId(1): ["Enum"] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(0x0) rebuilt : ScopeId(1): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(3): ["T", "x"] -rebuilt : ScopeId(2): ["x"] Symbol flags mismatch for "Enum": after transform: SymbolId(0): SymbolFlags(RegularEnum) rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) @@ -37297,7 +32232,7 @@ rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/unionReductionMutualSubtypes.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["ReturnVal", "k", "run", "val"] +after transform: ScopeId(0): ["k", "run", "val"] rebuilt : ScopeId(0): ["k", "run"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] @@ -37321,53 +32256,32 @@ after transform: ["Capitalize", "upperFirst"] rebuilt : ["upperFirst"] 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: +semantic error: 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: +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): ["U", "value"] -rebuilt : ScopeId(1): ["value"] tasks/coverage/typescript/tests/cases/compiler/unionTypeWithIndexAndMethodSignature.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Options"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/unionTypeWithLeadingOperator.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B", "C", "D"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [] @@ -37386,18 +32300,9 @@ after transform: SymbolId(3): [ReferenceId(2), ReferenceId(7)] rebuilt : SymbolId(3): [] 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: +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)] -Bindings mismatch: -after transform: ScopeId(3): ["T", "arr", "zz"] -rebuilt : ScopeId(1): ["arr", "zz"] -Bindings mismatch: -after transform: ScopeId(6): ["T", "arr"] -rebuilt : ScopeId(3): ["arr"] Unresolved reference IDs mismatch for "Int32Array": after transform: [ReferenceId(6), ReferenceId(8), ReferenceId(11)] rebuilt : [ReferenceId(2)] @@ -37409,9 +32314,6 @@ tasks/coverage/typescript/tests/cases/compiler/uniqueSymbolAssignmentOnGlobalAug semantic error: 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"] Symbol reference IDs mismatch for "FOO_SYMBOL": after transform: SymbolId(0): [ReferenceId(1), ReferenceId(5)] rebuilt : SymbolId(0): [ReferenceId(2)] @@ -37434,10 +32336,7 @@ after transform: [] rebuilt : ["Op"] tasks/coverage/typescript/tests/cases/compiler/unknownLikeUnionObjectFlagsNotPropagated.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["MyType", "_asyncToGenerator", "_myUnusedFunction", "myUnusedFunction", "myVar"] -rebuilt : ScopeId(0): ["_asyncToGenerator", "_myUnusedFunction", "myUnusedFunction", "myVar"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -37551,9 +32450,9 @@ Missing ReferenceId: "Validation" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0)] rebuilt : ScopeId(0): [SymbolId(0)] -Bindings mismatch: -after transform: ScopeId(1): ["_Validation", "c1", "i1", "i2", "i3"] -rebuilt : ScopeId(1): ["_Validation", "c1"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(4), SymbolId(5)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -37589,9 +32488,6 @@ Missing ReferenceId: "N" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(3), SymbolId(5), SymbolId(7), SymbolId(9), SymbolId(10), SymbolId(13), SymbolId(14), SymbolId(17), SymbolId(23), SymbolId(29)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(2), SymbolId(4), SymbolId(6), SymbolId(8), SymbolId(9), SymbolId(12), SymbolId(13), SymbolId(16), SymbolId(22), SymbolId(28)] -Bindings mismatch: -after transform: ScopeId(1): ["T", "a"] -rebuilt : ScopeId(1): ["a"] Binding symbols mismatch: after transform: ScopeId(43): [SymbolId(30), SymbolId(31)] rebuilt : ScopeId(43): [SymbolId(29), SymbolId(30)] @@ -37608,10 +32504,7 @@ 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: +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)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -37619,10 +32512,7 @@ after transform: ["Array"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/unusedMethodsInInterface.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I1"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -37637,28 +32527,22 @@ after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2), ReferenceId(4), R rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameters6.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameters7.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameters9.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C1", "C2", "C3"] +after transform: ScopeId(0): [] 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): [] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(2): [] Symbol flags mismatch for "C1": after transform: SymbolId(0): SymbolFlags(Class | Interface) rebuilt : SymbolId(0): SymbolFlags(Class) @@ -37673,35 +32557,17 @@ after transform: SymbolId(3): [Span { start: 116, end: 118 }] rebuilt : SymbolId(1): [] tasks/coverage/typescript/tests/cases/compiler/unusedTypeParametersNotCheckedByNoUnusedLocals.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C", "I", "T", "f", "l"] -rebuilt : ScopeId(0): ["C", "f", "l"] -Scope children mismatch: +semantic error: 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): [] -Bindings mismatch: -after transform: ScopeId(4): ["T"] -rebuilt : ScopeId(2): [] -Bindings mismatch: -after transform: ScopeId(5): ["V"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(6): ["T"] -rebuilt : ScopeId(4): [] tasks/coverage/typescript/tests/cases/compiler/unwitnessedTypeParameterVariance.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B", "CalcObj", "CalcValue", "a", "b", "foo"] +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(5), ScopeId(6)] rebuilt : ScopeId(0): [ScopeId(1)] -Bindings mismatch: -after transform: ScopeId(3): ["O", "unk", "x"] -rebuilt : ScopeId(1): ["unk", "x"] Reference symbol mismatch for "b": after transform: SymbolId(14) "b" rebuilt : @@ -37915,10 +32781,7 @@ after transform: [ReferenceId(14), ReferenceId(15)] rebuilt : [ReferenceId(7)] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Symbol reference IDs mismatch for "A": @@ -37933,10 +32796,7 @@ 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/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: +semantic error: 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)] Unresolved references mismatch: @@ -37945,7 +32805,7 @@ rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/varianceCantBeStrictWhileStructureIsnt.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Bar", "Foo", "a", "a2", "b", "b2"] +after transform: ScopeId(0): ["a", "a2", "b", "b2"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -38003,39 +32863,9 @@ after transform: [] rebuilt : ["a", "a2", "b", "b2"] tasks/coverage/typescript/tests/cases/compiler/varianceProblingAndZeroOrderIndexSignatureRelationsAlign.ts -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: +semantic error: 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): [] -Bindings mismatch: -after transform: ScopeId(4): ["B", "f"] -rebuilt : ScopeId(3): ["f"] -Bindings mismatch: -after transform: ScopeId(5): ["B", "fab"] -rebuilt : ScopeId(4): ["fab"] -Bindings mismatch: -after transform: ScopeId(6): ["A", "L"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(8): ["B", "f"] -rebuilt : ScopeId(7): ["f"] -Bindings mismatch: -after transform: ScopeId(9): ["B", "fab"] -rebuilt : ScopeId(8): ["fab"] -Bindings mismatch: -after transform: ScopeId(10): ["A", "I", "O"] -rebuilt : ScopeId(9): [] -Bindings mismatch: -after transform: ScopeId(22): ["N", "n"] -rebuilt : ScopeId(12): ["n"] -Bindings mismatch: -after transform: ScopeId(23): ["X"] -rebuilt : ScopeId(13): [] Symbol reference IDs mismatch for "Left": after transform: SymbolId(3): [ReferenceId(0)] rebuilt : SymbolId(0): [] @@ -38047,39 +32877,9 @@ after transform: SymbolId(19): [ReferenceId(51), ReferenceId(60)] rebuilt : SymbolId(8): [] tasks/coverage/typescript/tests/cases/compiler/varianceProblingAndZeroOrderIndexSignatureRelationsAlign2.ts -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: +semantic error: 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): [] -Bindings mismatch: -after transform: ScopeId(4): ["B", "f"] -rebuilt : ScopeId(3): ["f"] -Bindings mismatch: -after transform: ScopeId(5): ["B", "fab"] -rebuilt : ScopeId(4): ["fab"] -Bindings mismatch: -after transform: ScopeId(6): ["A", "L"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(8): ["B", "f"] -rebuilt : ScopeId(7): ["f"] -Bindings mismatch: -after transform: ScopeId(9): ["B", "fab"] -rebuilt : ScopeId(8): ["fab"] -Bindings mismatch: -after transform: ScopeId(10): ["A", "I", "O"] -rebuilt : ScopeId(9): [] -Bindings mismatch: -after transform: ScopeId(22): ["N", "n"] -rebuilt : ScopeId(12): ["n"] -Bindings mismatch: -after transform: ScopeId(23): ["X"] -rebuilt : ScopeId(13): [] Symbol reference IDs mismatch for "Left": after transform: SymbolId(3): [ReferenceId(0)] rebuilt : SymbolId(0): [] @@ -38091,10 +32891,7 @@ after transform: SymbolId(19): [ReferenceId(51), ReferenceId(60)] rebuilt : SymbolId(8): [] tasks/coverage/typescript/tests/cases/compiler/varianceRepeatedlyPropegatesWithUnreliableFlag.ts -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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -38102,10 +32899,7 @@ after transform: ["Pick", "Record"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/verbatim-declarations-parameters.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo", "Map", "MapOrUndefined", "foo1"] -rebuilt : ScopeId(0): ["Foo", "foo1"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Unresolved references mismatch: @@ -38135,9 +32929,9 @@ semantic error: Missing SymbolId: "fs" Missing ReferenceId: "require" Missing SymbolId: "server" Missing ReferenceId: "require" -Bindings mismatch: -after transform: ScopeId(0): ["IConfiguration", "fs", "server"] -rebuilt : ScopeId(0): ["fs", "server"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(1)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -38145,29 +32939,15 @@ Unresolved references mismatch: after transform: [] rebuilt : ["require"] -tasks/coverage/typescript/tests/cases/compiler/visibilityOfTypeParameters.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["T", "val"] -rebuilt : ScopeId(2): ["val"] - 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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(7): ["P", "props"] -rebuilt : ScopeId(4): ["props"] Unresolved references mismatch: after transform: ["Readonly", "undefined"] rebuilt : ["undefined"] @@ -38176,9 +32956,6 @@ tasks/coverage/typescript/tests/cases/compiler/voidUndefinedReduction.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["foo", "isDefined"] rebuilt : ScopeId(0): ["isDefined"] -Bindings mismatch: -after transform: ScopeId(1): ["T", "value"] -rebuilt : ScopeId(1): ["value"] Reference symbol mismatch for "foo": after transform: SymbolId(3) "foo" rebuilt : @@ -38190,10 +32967,7 @@ after transform: ["console", "undefined"] rebuilt : ["console", "foo", "undefined"] 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: +semantic error: 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)] Unresolved references mismatch: @@ -38201,10 +32975,7 @@ after transform: ["Readonly", "Record", "ThisType", "test"] rebuilt : ["test"] 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: +semantic error: 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)] Unresolved references mismatch: @@ -38212,10 +32983,7 @@ after transform: ["Readonly", "Record", "ThisType", "test"] rebuilt : ["test"] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(10)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] Unresolved references mismatch: @@ -38223,24 +32991,12 @@ after transform: ["true"] rebuilt : [] 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: +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), 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): [] @@ -38319,7 +33075,7 @@ semantic error: 'with' statements are not allowed tasks/coverage/typescript/tests/cases/compiler/yieldStarContextualType.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T", "U", "V", "f", "g"] +after transform: ScopeId(0): ["f", "g"] rebuilt : ScopeId(0): ["f"] Reference symbol mismatch for "g": after transform: SymbolId(0) "g" @@ -38332,10 +33088,7 @@ after transform: ["Generator"] rebuilt : ["g"] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -38474,7 +33227,7 @@ Missing ReferenceId: "f1" Missing ReferenceId: "M" Missing ReferenceId: "M" Bindings mismatch: -after transform: ScopeId(0): ["C", "M", "MyPromise", "_asyncToGenerator", "_f", "_f2", "_f3", "_f5", "f0", "f1", "f10", "f11", "f12", "f13", "f14", "f3", "f4", "f5", "f6", "f7", "f8", "f9", "mp", "o", "p"] +after transform: ScopeId(0): ["C", "M", "_asyncToGenerator", "_f", "_f2", "_f3", "_f5", "f0", "f1", "f10", "f11", "f12", "f13", "f14", "f3", "f4", "f5", "f6", "f7", "f8", "f9", "mp", "o", "p"] rebuilt : ScopeId(0): ["C", "M", "_asyncToGenerator", "_f", "_f2", "_f3", "_f5", "f0", "f1", "f10", "f11", "f12", "f13", "f14", "f3", "f4", "f5", "f6", "f7", "f8", "f9", "o"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(18), ScopeId(25), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(37), ScopeId(39), ScopeId(41), ScopeId(43), ScopeId(45), ScopeId(47), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(60), ScopeId(61)] @@ -38800,7 +33553,7 @@ rebuilt : ["arguments", "p", "require"] tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitInheritedPromise_es2017.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "_asyncToGenerator", "_f", "a", "f"] +after transform: ScopeId(0): ["_asyncToGenerator", "_f", "a", "f"] rebuilt : ScopeId(0): ["_asyncToGenerator", "_f", "f"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] @@ -38853,7 +33606,7 @@ Missing ReferenceId: "f1" Missing ReferenceId: "M" Missing ReferenceId: "M" Bindings mismatch: -after transform: ScopeId(0): ["C", "M", "MyPromise", "_asyncToGenerator", "_f", "_f2", "_f3", "_f5", "f0", "f1", "f10", "f11", "f12", "f13", "f14", "f3", "f4", "f5", "f6", "f7", "f8", "f9", "mp", "o", "p"] +after transform: ScopeId(0): ["C", "M", "_asyncToGenerator", "_f", "_f2", "_f3", "_f5", "f0", "f1", "f10", "f11", "f12", "f13", "f14", "f3", "f4", "f5", "f6", "f7", "f8", "f9", "mp", "o", "p"] rebuilt : ScopeId(0): ["C", "M", "_asyncToGenerator", "_f", "_f2", "_f3", "_f5", "f0", "f1", "f10", "f11", "f12", "f13", "f14", "f3", "f4", "f5", "f6", "f7", "f8", "f9", "o"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(18), ScopeId(25), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(37), ScopeId(39), ScopeId(41), ScopeId(43), ScopeId(45), ScopeId(47), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(60), ScopeId(61)] @@ -38894,8 +33647,8 @@ rebuilt : ["arguments", "mp", "p", "require"] tasks/coverage/typescript/tests/cases/conformance/async/es5/asyncImportedPromise_es5.ts semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] +after transform: ScopeId(0): ["Task", "Test", "_asyncToGenerator"] +rebuilt : ScopeId(0): ["Test", "_asyncToGenerator"] tasks/coverage/typescript/tests/cases/conformance/async/es5/asyncQualifiedReturnType_es5.ts semantic error: Missing SymbolId: "X" @@ -38913,9 +33666,6 @@ rebuilt : ScopeId(1): [SymbolId(2), SymbolId(3)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] Symbol reference IDs mismatch for "MyPromise": after transform: SymbolId(1): [] rebuilt : SymbolId(3): [ReferenceId(3)] @@ -39247,10 +33997,7 @@ after transform: ["Promise", "arguments", "require"] rebuilt : ["arguments", "require"] tasks/coverage/typescript/tests/cases/conformance/async/es6/asyncAliasReturnType_es6.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["PromiseAlias", "_asyncToGenerator", "_f", "f"] -rebuilt : ScopeId(0): ["_asyncToGenerator", "_f", "f"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Unresolved references mismatch: @@ -39278,7 +34025,7 @@ Missing ReferenceId: "f1" Missing ReferenceId: "M" Missing ReferenceId: "M" Bindings mismatch: -after transform: ScopeId(0): ["C", "M", "MyPromise", "_asyncToGenerator", "_f", "_f2", "_f3", "_f5", "f0", "f1", "f10", "f11", "f12", "f13", "f14", "f3", "f4", "f5", "f6", "f7", "f8", "f9", "mp", "o", "p"] +after transform: ScopeId(0): ["C", "M", "_asyncToGenerator", "_f", "_f2", "_f3", "_f5", "f0", "f1", "f10", "f11", "f12", "f13", "f14", "f3", "f4", "f5", "f6", "f7", "f8", "f9", "mp", "o", "p"] rebuilt : ScopeId(0): ["C", "M", "_asyncToGenerator", "_f", "_f2", "_f3", "_f5", "f0", "f1", "f10", "f11", "f12", "f13", "f14", "f3", "f4", "f5", "f6", "f7", "f8", "f9", "o"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(18), ScopeId(25), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(37), ScopeId(39), ScopeId(41), ScopeId(43), ScopeId(45), ScopeId(47), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(60), ScopeId(61)] @@ -39644,18 +34391,12 @@ after transform: ["Promise", "arguments", "require"] rebuilt : ["arguments", "require"] tasks/coverage/typescript/tests/cases/conformance/asyncGenerators/asyncGeneratorGenericNonWrappedReturn.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "a"] -rebuilt : ScopeId(3): ["a"] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["AsyncGenerator", "arguments"] rebuilt : ["arguments"] tasks/coverage/typescript/tests/cases/conformance/asyncGenerators/asyncGeneratorPromiseNextType.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Result", "_awaitAsyncGenerator", "_saverGen", "_saverGen2", "_wrapAsyncGenerator", "saverGen", "saverGen2", "storeResults"] -rebuilt : ScopeId(0): ["_awaitAsyncGenerator", "_saverGen", "_saverGen2", "_wrapAsyncGenerator", "saverGen", "saverGen2", "storeResults"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6), ScopeId(7), ScopeId(8)] Unresolved references mismatch: @@ -39670,15 +34411,15 @@ semantic error: Missing SymbolId: "M" Missing SymbolId: "_M" Missing ReferenceId: "M" Missing ReferenceId: "M" -Binding symbols mismatch: -after transform: ScopeId(0): [SymbolId(0), SymbolId(1)] -rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1)] +Bindings mismatch: +after transform: ScopeId(0): ["M"] +rebuilt : ScopeId(0): ["C", "M"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] -Binding symbols mismatch: -after transform: ScopeId(3): [SymbolId(2), SymbolId(3)] -rebuilt : ScopeId(2): [SymbolId(2), SymbolId(3)] +Bindings mismatch: +after transform: ScopeId(3): ["_M"] +rebuilt : ScopeId(2): ["D", "_M"] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(2): ScopeFlags(Function) @@ -39715,16 +34456,7 @@ after transform: ["Object"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/classHeritageSpecification/classExtendingClass.ts -semantic error: Bindings mismatch: -after transform: ScopeId(5): ["T"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(7): ["T", "x"] -rebuilt : ScopeId(7): ["x"] -Bindings mismatch: -after transform: ScopeId(8): ["T"] -rebuilt : ScopeId(8): [] -Symbol reference IDs mismatch for "D": +semantic error: Symbol reference IDs mismatch for "D": after transform: SymbolId(1): [ReferenceId(1), ReferenceId(5)] rebuilt : SymbolId(1): [ReferenceId(4)] Symbol reference IDs mismatch for "D2": @@ -39753,16 +34485,13 @@ after transform: SymbolId(2): [ReferenceId(3)] rebuilt : SymbolId(2): [] tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/mergeClassInterfaceAndModule.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C1", "C2", "C3", "C4"] -rebuilt : ScopeId(0): [] -Scope children 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)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/mergedClassInterface.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C1", "C2", "C3", "C4", "C5", "c5"] +after transform: ScopeId(0): ["c5"] rebuilt : ScopeId(0): ["C3", "C4", "c5"] 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)] @@ -39785,7 +34514,7 @@ rebuilt : SymbolId(1): [] 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"] +after transform: ScopeId(0): ["BaseClass", "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)] @@ -39843,23 +34572,6 @@ Unresolved references mismatch: after transform: [] rebuilt : ["require"] -tasks/coverage/typescript/tests/cases/conformance/classes/classExpressions/genericClassExpressionInFunction.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(2): ["U"] -rebuilt : ScopeId(2): [] -Bindings mismatch: -after transform: ScopeId(4): ["V"] -rebuilt : ScopeId(4): [] -Bindings mismatch: -after transform: ScopeId(6): ["W"] -rebuilt : ScopeId(6): [] -Bindings mismatch: -after transform: ScopeId(7): ["Inner", "TInner"] -rebuilt : ScopeId(7): ["Inner"] - tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlock11.ts semantic error: Symbol reference IDs mismatch for "C": after transform: SymbolId(1): [ReferenceId(2)] @@ -39882,15 +34594,9 @@ tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclaration 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)] @@ -39902,18 +34608,10 @@ tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclaration 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: -after transform: ScopeId(7): ["T"] -rebuilt : ScopeId(7): [] - tasks/coverage/typescript/tests/cases/conformance/classes/members/accessibility/classPropertyIsPublicByDefault.ts semantic error: Symbol reference IDs mismatch for "C": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(5), ReferenceId(6), ReferenceId(7), ReferenceId(8)] @@ -39943,23 +34641,12 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(4), SymbolId(5) Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] -Bindings mismatch: -after transform: ScopeId(5): ["T"] -rebuilt : ScopeId(5): [] tasks/coverage/typescript/tests/cases/conformance/classes/members/classTypes/indexersInClassType.ts semantic error: Unresolved references mismatch: after transform: ["Date", "Object"] rebuilt : [] -tasks/coverage/typescript/tests/cases/conformance/classes/members/constructorFunctionTypes/classWithNoConstructorOrBaseClass.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["T", "U"] -rebuilt : ScopeId(2): [] - tasks/coverage/typescript/tests/cases/conformance/classes/members/constructorFunctionTypes/constructorHasPrototypeProperty.ts semantic error: Missing SymbolId: "NonGeneric" Missing SymbolId: "_NonGeneric" @@ -39984,12 +34671,6 @@ rebuilt : ScopeId(4): [SymbolId(7), SymbolId(8), SymbolId(9), SymbolId(10 Scope flags mismatch: after transform: ScopeId(4): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(4): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(5): ["T", "U"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(6): ["T", "U"] -rebuilt : ScopeId(6): [] tasks/coverage/typescript/tests/cases/conformance/classes/members/inheritanceAndOverriding/derivedClassIncludesInheritedMembers.ts semantic error: Symbol reference IDs mismatch for "Derived": @@ -40112,23 +34793,10 @@ 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"] -rebuilt : ScopeId(1): [] -Symbol reference IDs mismatch for "C": +semantic error: Symbol reference IDs mismatch for "C": after transform: SymbolId(0): [ReferenceId(6)] rebuilt : SymbolId(0): [] -tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers.ts -semantic error: Bindings mismatch: -after transform: ScopeId(4): ["T"] -rebuilt : ScopeId(4): [] - -tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] - tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameComputedPropertyName1.ts semantic error: Unresolved references mismatch: after transform: ["Record", "console"] @@ -40141,7 +34809,7 @@ rebuilt : SymbolId(1): [ReferenceId(4)] tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/privateNameConstructorSignature.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C", "D"] +after transform: ScopeId(0): [] rebuilt : ScopeId(0): ["C"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] @@ -40169,20 +34837,17 @@ after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(3), R rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(3), ReferenceId(5), ReferenceId(6), ReferenceId(7), ReferenceId(8), ReferenceId(9), ReferenceId(10), ReferenceId(11)] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/classes/mixinAbstractClasses.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): ["AbstractBase", "ConcreteBase", "DerivedFromAbstract", "DerivedFromConcrete", "wasAbstract", "wasConcrete"] +rebuilt : ScopeId(0): ["AbstractBase", "ConcreteBase", "DerivedFromAbstract", "DerivedFromConcrete", "Mixin", "wasAbstract", "wasConcrete"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(11)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8)] -Bindings mismatch: -after transform: ScopeId(3): ["MixinClass", "TBaseClass", "baseClass"] -rebuilt : ScopeId(1): ["MixinClass", "baseClass"] Scope children mismatch: after transform: ScopeId(8): [ScopeId(9)] rebuilt : ScopeId(6): [] @@ -40200,32 +34865,20 @@ after transform: SymbolId(0): [Span { start: 55, end: 60 }] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/conformance/classes/mixinAbstractClassesReturnTypeInference.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["AbstractBase", "DerivedFromAbstract2", "Mixin1", "Mixin2"] -rebuilt : ScopeId(0): ["AbstractBase", "DerivedFromAbstract2", "Mixin2"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(9)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6)] Scope children mismatch: after transform: ScopeId(3): [ScopeId(4)] rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(5): ["MixinClass", "TBase", "baseClass"] -rebuilt : ScopeId(2): ["MixinClass", "baseClass"] tasks/coverage/typescript/tests/cases/conformance/classes/mixinClassesAnnotated.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Base", "Constructor", "Derived", "Printable", "Tagged", "Thing1", "Thing2", "Thing3", "f1", "f2"] +after transform: ScopeId(0): ["Base", "Derived", "Thing1", "Thing2", "Thing3", "f1", "f2"] rebuilt : ScopeId(0): ["Base", "Derived", "Printable", "Tagged", "Thing1", "Thing2", "Thing3", "f1", "f2"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(11), ScopeId(12), ScopeId(15), ScopeId(16), ScopeId(17)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(8), ScopeId(11), ScopeId(12), ScopeId(13)] -Bindings mismatch: -after transform: ScopeId(8): ["T", "superClass"] -rebuilt : ScopeId(5): ["superClass"] -Bindings mismatch: -after transform: ScopeId(12): ["C", "T", "superClass"] -rebuilt : ScopeId(8): ["C", "superClass"] Symbol reference IDs mismatch for "Base": after transform: SymbolId(2): [ReferenceId(1), ReferenceId(5)] rebuilt : SymbolId(0): [ReferenceId(2)] @@ -40255,21 +34908,9 @@ after transform: SymbolId(13): [Span { start: 596, end: 602 }] rebuilt : SymbolId(10): [] 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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(9): ["C", "T", "superClass"] -rebuilt : ScopeId(8): ["C", "superClass"] -Bindings mismatch: -after transform: ScopeId(17): ["Base", "CT"] -rebuilt : ScopeId(16): ["Base"] Symbol reference IDs mismatch for "Base": after transform: SymbolId(2): [ReferenceId(1), ReferenceId(5)] rebuilt : SymbolId(0): [ReferenceId(2)] @@ -40359,7 +35000,7 @@ rebuilt : ["Mixed1", "Mixed2", "Mixed3", "Mixed4", "Mixed5"] tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/accessorsOverrideProperty5.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["B", "C", "I"] +after transform: ScopeId(0): ["C"] rebuilt : ScopeId(0): ["B", "C"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] @@ -40375,10 +35016,7 @@ after transform: SymbolId(1): [Span { start: 62, end: 63 }] rebuilt : SymbolId(0): [] 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: +semantic error: 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)] Unresolved references mismatch: @@ -40387,14 +35025,11 @@ rebuilt : ["classWithProperties"] 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"] +after transform: ScopeId(0): ["ApiEnum", "ApiEnumMember", "ApiItem"] 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"] Symbol reference IDs mismatch for "ApiItem": after transform: SymbolId(6): [ReferenceId(5), ReferenceId(7), ReferenceId(9), ReferenceId(10), ReferenceId(11), ReferenceId(13), ReferenceId(22), ReferenceId(25)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(5)] @@ -40433,10 +35068,7 @@ after transform: SymbolId(0): [ReferenceId(0), ReferenceId(3)] rebuilt : SymbolId(0): [ReferenceId(3)] 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: +semantic error: Scope children mismatch: after transform: ScopeId(3): [ScopeId(4)] rebuilt : ScopeId(3): [] @@ -40450,38 +35082,21 @@ semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] -tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/memberAccessorDeclarations/typeOfThisInAccessor.ts -semantic error: Bindings mismatch: -after transform: ScopeId(4): ["T"] -rebuilt : ScopeId(4): [] - tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/memberFunctionDeclarations/memberFunctionsWithPublicOverloads.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), 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: -after transform: ScopeId(4): ["T"] -rebuilt : ScopeId(4): [] -Bindings mismatch: -after transform: ScopeId(7): ["T"] -rebuilt : ScopeId(7): [] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["Date"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/overrideInterfaceProperty.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Kasizz", "Mup", "MupConstructor", "Sizz"] -rebuilt : ScopeId(0): ["Kasizz", "Sizz"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(7)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Reference symbol mismatch for "Mup": @@ -40578,24 +35193,11 @@ Unresolved references mismatch: after transform: ["const"] rebuilt : [] -tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/thisInInstanceMemberInitializer.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] - -tasks/coverage/typescript/tests/cases/conformance/classes/staticIndexSignature/staticIndexSignature6.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] - tasks/coverage/typescript/tests/cases/conformance/constEnums/constEnum1.ts semantic error: Enum member must have initializer. 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: +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: @@ -40628,10 +35230,7 @@ after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(8), Sc 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: @@ -40647,29 +35246,17 @@ after transform: ["const", "f"] rebuilt : ["f"] 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: +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)] 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: +semantic error: 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)] @@ -40678,15 +35265,9 @@ after transform: ["Error", "console", "const", "undefined"] rebuilt : ["Error", "console", "undefined"] 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: +semantic error: 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"] Unresolved references mismatch: after transform: ["Record", "undefined"] rebuilt : ["undefined"] @@ -40723,10 +35304,7 @@ after transform: [] rebuilt : ["config"] tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowElementAccessNoCrash1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["TestTscCompile", "TestTscEdit", "VerifyTscEditDiscrepanciesInput", "testTscCompile", "verifyTscEditDiscrepancies"] -rebuilt : ScopeId(0): ["testTscCompile", "verifyTscEditDiscrepancies"] -Scope children 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)] @@ -40737,7 +35315,7 @@ rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowForInStatement2.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B", "c", "keywordA", "keywordB", "stringB"] +after transform: ScopeId(0): ["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)] @@ -40782,18 +35360,9 @@ after transform: ["RegExp"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowIfStatement.ts -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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(12): ["T", "data"] -rebuilt : ScopeId(12): ["data"] Symbol reference IDs mismatch for "x": after transform: SymbolId(15): [ReferenceId(29), ReferenceId(30)] rebuilt : SymbolId(11): [ReferenceId(23)] @@ -40803,7 +35372,7 @@ rebuilt : ["Error", "JSON"] tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowInOperator.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B", "a", "b", "c", "d", "uniqueID_54790", "uniqueID_54790_2", "uniqueID_54790_3"] +after transform: ScopeId(0): ["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)] @@ -40862,16 +35431,13 @@ after transform: SymbolId(1): [ReferenceId(2), ReferenceId(5), ReferenceId(7), R rebuilt : SymbolId(0): [ReferenceId(2), ReferenceId(6), ReferenceId(8)] 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: +semantic error: 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"] +after transform: ScopeId(0): ["value"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -40901,12 +35467,6 @@ tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowTruthin 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: -after transform: ScopeId(26): ["T", "x"] -rebuilt : ScopeId(25): ["x"] tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowWithTemplateLiterals.ts semantic error: Bindings mismatch: @@ -40929,10 +35489,7 @@ after transform: [] rebuilt : ["envVar", "obj"] tasks/coverage/typescript/tests/cases/conformance/controlFlow/dependentDestructuredVariablesFromNestedPatterns.ts -semantic error: Bindings mismatch: -after transform: ScopeId(5): ["T", "fn", "promises"] -rebuilt : ScopeId(7): ["fn", "promises"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(5): [ScopeId(6), ScopeId(7)] rebuilt : ScopeId(7): [ScopeId(8)] Unresolved references mismatch: @@ -40942,11 +35499,6 @@ Unresolved reference IDs mismatch for "Error": after transform: [ReferenceId(0), ReferenceId(4), ReferenceId(15), ReferenceId(22), ReferenceId(29)] rebuilt : [ReferenceId(17)] -tasks/coverage/typescript/tests/cases/conformance/controlFlow/switchWithConstrainedTypeVariable.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "key"] -rebuilt : ScopeId(1): ["key"] - 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)] @@ -40959,16 +35511,7 @@ after transform: ["Object", "RegExpExecArray", "getFooOrNull", "getStringOrNumbe rebuilt : ["getFooOrNull", "getStringOrNumberOrNull"] tasks/coverage/typescript/tests/cases/conformance/controlFlow/typeGuardsTypeParameters.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["T", "x"] -rebuilt : ScopeId(2): ["x"] -Bindings mismatch: -after transform: ScopeId(4): ["T", "x"] -rebuilt : ScopeId(4): ["x"] -Bindings mismatch: -after transform: ScopeId(6): ["T", "item", "strings"] -rebuilt : ScopeId(6): ["item", "strings"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(6): [ScopeId(7), ScopeId(8)] rebuilt : ScopeId(6): [ScopeId(7)] Symbol reference IDs mismatch for "C": @@ -40985,9 +35528,9 @@ Missing ReferenceId: "M" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0)] rebuilt : ScopeId(0): [SymbolId(0)] -Bindings mismatch: -after transform: ScopeId(1): ["C", "I", "_M"] -rebuilt : ScopeId(1): ["C", "_M"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(2), SymbolId(3)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -40999,10 +35542,7 @@ after transform: SymbolId(2): [] rebuilt : SymbolId(2): [ReferenceId(1)] tasks/coverage/typescript/tests/cases/conformance/declarationEmit/leaveOptionalParameterAsWritten.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -41023,26 +35563,17 @@ after transform: ["HTMLElement"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/declarationEmit/libReferenceNoLib.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Array", "Boolean", "Function", "IArguments", "Number", "Object", "RegExp", "String"] -rebuilt : ScopeId(0): [] -Scope children 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)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/declarationEmit/libReferenceNoLibBundle.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Array", "Boolean", "Function", "IArguments", "Number", "Object", "RegExp", "String"] -rebuilt : ScopeId(0): [] -Scope children 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)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/declarationEmit/typePredicates/declarationEmitIdentifierPredicatesWithPrivateName01.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I", "f"] -rebuilt : ScopeId(0): ["f"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -41052,10 +35583,7 @@ after transform: SymbolId(1): [ReferenceId(0), ReferenceId(1)] rebuilt : SymbolId(1): [ReferenceId(0)] tasks/coverage/typescript/tests/cases/conformance/declarationEmit/typePredicates/declarationEmitThisPredicates02.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo", "obj"] -rebuilt : ScopeId(0): ["obj"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -41065,10 +35593,7 @@ after transform: SymbolId(1): [ReferenceId(0), ReferenceId(1)] rebuilt : SymbolId(1): [ReferenceId(0)] tasks/coverage/typescript/tests/cases/conformance/declarationEmit/typePredicates/declarationEmitThisPredicatesWithPrivateName02.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo", "obj"] -rebuilt : ScopeId(0): ["obj"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -41078,16 +35603,13 @@ after transform: ScopeId(0): ["FSWatcher", "f"] rebuilt : ScopeId(0): ["f"] tasks/coverage/typescript/tests/cases/conformance/declarationEmit/typeofImportTypeOnlyExport.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["C", "class_"] -rebuilt : ScopeId(2): ["class_"] -Symbol reference IDs mismatch for "ClassMapDirective": +semantic error: Symbol reference IDs mismatch for "ClassMapDirective": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(4)] rebuilt : SymbolId(0): [ReferenceId(2)] 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"] +after transform: ScopeId(0): ["Infinity", "NaN"] 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)] @@ -41164,10 +35686,7 @@ after transform: ["Function", "dec"] rebuilt : ["dec"] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch for "IFoo": @@ -42314,10 +36833,7 @@ after transform: [] rebuilt : ["Color"] tasks/coverage/typescript/tests/cases/conformance/es2017/useObjectValuesAndEntries1.ts -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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Bindings mismatch: @@ -42377,10 +36893,7 @@ after transform: ["Date", "Intl", "Readonly"] rebuilt : ["Date", "Intl"] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Symbol reference IDs mismatch for "ns": @@ -42451,7 +36964,7 @@ rebuilt : ["a", "b", "c", "d", "e", "f", "g", "h", "i"] tasks/coverage/typescript/tests/cases/conformance/es2021/logicalAssignment/logicalAssignment2.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "_a$foo", "_a$foo$bar", "_b$foo", "_b$foo$bar", "_c$baz", "_c$foo", "_c$foo$bar", "_c$foo$bar$baz", "_c$foo$baz", "a", "b", "c", "result"] +after transform: ScopeId(0): ["_a$foo", "_a$foo$bar", "_b$foo", "_b$foo$bar", "_c$baz", "_c$foo", "_c$foo$bar", "_c$foo$bar$baz", "_c$foo$baz", "a", "b", "c", "result"] rebuilt : ScopeId(0): ["_a$foo", "_a$foo$bar", "_b$foo", "_b$foo$bar", "_c$baz", "_c$foo", "_c$foo$bar", "_c$foo$bar$baz", "_c$foo$baz"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] @@ -42525,7 +37038,7 @@ rebuilt : ["a", "b", "c", "result"] tasks/coverage/typescript/tests/cases/conformance/es2021/logicalAssignment/logicalAssignment3.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "_c$baz", "a", "b", "c", "result"] +after transform: ScopeId(0): ["_c$baz", "a", "b", "c", "result"] rebuilt : ScopeId(0): ["_c$baz"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] @@ -42583,7 +37096,7 @@ rebuilt : ["x"] tasks/coverage/typescript/tests/cases/conformance/es2022/arbitraryModuleNamespaceIdentifiers/arbitraryModuleNamespaceIdentifiers_module.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["importStarTestA", "importTest", "otherType", "reimportTest", "someType", "someValue", "typeA", "typeB", "typeC", "valueX", "valueY", "valueZ"] +after transform: ScopeId(0): ["importStarTestA", "importTest", "reimportTest", "someValue", "typeA", "typeB", "typeC", "valueX", "valueY", "valueZ"] rebuilt : ScopeId(0): ["importStarTestA", "importTest", "reimportTest", "someValue", "valueX", "valueY", "valueZ"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -42603,10 +37116,7 @@ after transform: [ReferenceId(0), ReferenceId(1), ReferenceId(2)] rebuilt : [ReferenceId(0)] tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolDeclarationEmit5.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -42614,10 +37124,7 @@ after transform: ["Symbol"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolDeclarationEmit6.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -42630,10 +37137,7 @@ after transform: ["Symbol"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty11.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C", "I", "c", "i"] -rebuilt : ScopeId(0): ["C", "c", "i"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch for "C": @@ -42644,10 +37148,7 @@ after transform: ["Symbol"] rebuilt : [] 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: +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)] Symbol reference IDs mismatch for "C": @@ -42658,10 +37159,7 @@ after transform: [ReferenceId(0), ReferenceId(1)] rebuilt : [ReferenceId(0)] 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: +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)] Symbol reference IDs mismatch for "C": @@ -42672,10 +37170,7 @@ after transform: [ReferenceId(0), ReferenceId(1)] rebuilt : [ReferenceId(0)] 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: +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)] Symbol reference IDs mismatch for "C": @@ -42686,10 +37181,7 @@ after transform: ["Symbol", "bar", "foo"] rebuilt : ["bar", "foo"] 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: +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)] Symbol reference IDs mismatch for "C": @@ -42700,10 +37192,7 @@ after transform: [ReferenceId(0), ReferenceId(1)] rebuilt : [ReferenceId(0)] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Unresolved reference IDs mismatch for "Symbol": @@ -42711,10 +37200,7 @@ after transform: [ReferenceId(0), ReferenceId(1), ReferenceId(3), ReferenceId(5) rebuilt : [ReferenceId(0), ReferenceId(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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1)] Unresolved reference IDs mismatch for "Symbol": @@ -42722,10 +37208,7 @@ after transform: [ReferenceId(0), ReferenceId(9)] rebuilt : [ReferenceId(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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Unresolved reference IDs mismatch for "Symbol": @@ -42738,10 +37221,7 @@ after transform: SymbolId(1): [ReferenceId(2)] rebuilt : SymbolId(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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -42749,10 +37229,7 @@ after transform: ["Symbol"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -42801,9 +37278,9 @@ Missing ReferenceId: "M" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0)] rebuilt : ScopeId(0): [SymbolId(0)] -Bindings mismatch: -after transform: ScopeId(1): ["C", "Symbol", "_M"] -rebuilt : ScopeId(1): ["C", "_M"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(2), SymbolId(3)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -42863,16 +37340,13 @@ after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty58.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["SymbolConstructor", "obj"] -rebuilt : ScopeId(0): ["obj"] -Scope children mismatch: +semantic error: 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"] +after transform: ScopeId(0): ["mySymbol"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] @@ -42882,27 +37356,15 @@ after transform: ["Symbol"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty61.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["InteropObservable", "MyObservable", "from", "observable"] -rebuilt : ScopeId(0): ["MyObservable", "from", "observable"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(7), ScopeId(9)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(5)] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(9): ["T", "obs"] -rebuilt : ScopeId(5): ["obs"] Unresolved reference IDs mismatch for "Symbol": after transform: [ReferenceId(0), ReferenceId(1), ReferenceId(6), ReferenceId(11)] rebuilt : [ReferenceId(0), ReferenceId(5)] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -42910,26 +37372,17 @@ after transform: ["Symbol"] rebuilt : [] 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: +semantic error: 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: +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/es6/Symbols/symbolType18.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo", "x"] -rebuilt : ScopeId(0): ["x"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -42961,26 +37414,15 @@ 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: +semantic error: 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: +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)] 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: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] - tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/superCallBeforeThisAccessing1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "D", "Factory"] @@ -42992,32 +37434,6 @@ Unresolved references mismatch: after transform: [] rebuilt : ["Factory"] -tasks/coverage/typescript/tests/cases/conformance/es6/classExpressions/typeArgumentInferenceWithClassExpression1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "x"] -rebuilt : ScopeId(1): ["x"] - -tasks/coverage/typescript/tests/cases/conformance/es6/classExpressions/typeArgumentInferenceWithClassExpression3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "x"] -rebuilt : ScopeId(1): ["x"] - -tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames33_ES5.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] - -tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames33_ES6.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] - tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNames37_ES5.ts semantic error: Symbol reference IDs mismatch for "Foo2": after transform: SymbolId(1): [ReferenceId(0), ReferenceId(2)] @@ -43101,114 +37517,72 @@ after transform: SymbolId(0): SymbolFlags(RegularEnum) rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType1_ES5.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I", "o"] -rebuilt : ScopeId(0): ["o"] -Scope children mismatch: +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/es6/computedProperties/computedPropertyNamesContextualType1_ES6.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I", "o"] -rebuilt : ScopeId(0): ["o"] -Scope children mismatch: +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/es6/computedProperties/computedPropertyNamesContextualType2_ES5.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I", "o"] -rebuilt : ScopeId(0): ["o"] -Scope children mismatch: +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/es6/computedProperties/computedPropertyNamesContextualType2_ES6.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I", "o"] -rebuilt : ScopeId(0): ["o"] -Scope children mismatch: +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/es6/computedProperties/computedPropertyNamesContextualType3_ES5.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I", "o"] -rebuilt : ScopeId(0): ["o"] -Scope children mismatch: +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/es6/computedProperties/computedPropertyNamesContextualType3_ES6.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I", "o"] -rebuilt : ScopeId(0): ["o"] -Scope children mismatch: +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/es6/computedProperties/computedPropertyNamesContextualType4_ES5.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I", "o"] -rebuilt : ScopeId(0): ["o"] -Scope children mismatch: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +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/computedProperties/computedPropertyNamesContextualType6_ES6.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +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/computedProperties/computedPropertyNamesContextualType7_ES5.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I", "J"] -rebuilt : ScopeId(0): [] -Scope children 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)] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -43304,18 +37678,12 @@ after transform: [] rebuilt : ["yadda"] tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringObjectBindingPatternAndAssignment1ES5.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: +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/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: +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)] @@ -43353,18 +37721,12 @@ after transform: ["Partial", "Record"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringParameterDeclaration7ES5.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["ISomething", "baz", "foo", "one", "two"] -rebuilt : ScopeId(0): ["baz", "foo", "one", "two"] -Scope children 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), 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: +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), ScopeId(4)] @@ -43406,7 +37768,7 @@ rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of58.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["X", "Y", "arr"] +after transform: ScopeId(0): ["arr"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] @@ -43418,11 +37780,6 @@ Unresolved references mismatch: after transform: [] rebuilt : ["arr"] -tasks/coverage/typescript/tests/cases/conformance/es6/memberFunctionDeclarations/MemberFunctionDeclaration7_es6.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] - tasks/coverage/typescript/tests/cases/conformance/es6/moduleExportsAmd/decoratedDefaultExportsGetExportedAmd.ts semantic error: Unresolved references mismatch: after transform: ["ClassDecorator"] @@ -43509,10 +37866,7 @@ after transform: [] rebuilt : ["require"] tasks/coverage/typescript/tests/cases/conformance/es6/modules/exportsAndImports5.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -43566,21 +37920,8 @@ semantic error: Unresolved references mismatch: after transform: ["Iterable"] rebuilt : [] -tasks/coverage/typescript/tests/cases/conformance/es6/spread/iteratorSpreadInCall11.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "s"] -rebuilt : ScopeId(1): ["s"] - -tasks/coverage/typescript/tests/cases/conformance/es6/spread/iteratorSpreadInCall12.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] - tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsWithManyCallAndMemberExpressions.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I", "f", "x"] -rebuilt : ScopeId(0): ["f", "x"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -43588,10 +37929,7 @@ after transform: ["TemplateStringsArray"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -43615,10 +37953,7 @@ after transform: ["TemplateStringsArray", "undefined"] rebuilt : ["undefined"] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -43626,10 +37961,7 @@ after transform: ["TemplateStringsArray"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -43643,7 +37975,7 @@ rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplatesWithTypeArguments1.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Stuff", "T", "_objectSpread", "a", "b", "c", "obj"] +after transform: ScopeId(0): ["_objectSpread", "a", "b", "c", "obj"] rebuilt : ScopeId(0): ["_objectSpread", "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)] @@ -45007,10 +39339,7 @@ after transform: ["module"] rebuilt : ["dec", "module"] tasks/coverage/typescript/tests/cases/conformance/esDecorators/esDecorators-contextualTypes.2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(4): ["Args", "Return", "This", "bound", "source"] -rebuilt : ScopeId(4): ["bound", "source"] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["ClassMethodDecoratorContext", "console"] rebuilt : ["console"] @@ -45019,7 +39348,7 @@ semantic error: Expected a semicolon or an implicit semicolon after a statement, tasks/coverage/typescript/tests/cases/conformance/esDecorators/esDecorators-decoratorExpression.2.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T", "g", "h", "x"] +after transform: ScopeId(0): ["g", "h", "x"] rebuilt : ScopeId(0): [] Reference symbol mismatch for "x": after transform: SymbolId(0) "x" @@ -45129,7 +39458,7 @@ rebuilt : ["g", "h", "x"] tasks/coverage/typescript/tests/cases/conformance/esDecorators/esDecorators-decoratorExpression.3.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T", "g"] +after transform: ScopeId(0): ["g"] rebuilt : ScopeId(0): [] Reference symbol mismatch for "g": after transform: SymbolId(0) "g" @@ -45211,10 +39540,7 @@ after transform: [ReferenceId(0), ReferenceId(4)] rebuilt : [ReferenceId(21)] tasks/coverage/typescript/tests/cases/conformance/expressions/arrayLiterals/arrayLiterals2ES5.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", "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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: @@ -45222,10 +39548,7 @@ after transform: ["Array", "Number", "String", "undefined"] rebuilt : ["undefined"] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: @@ -45263,15 +39586,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/assignmentOperator 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"] tasks/coverage/typescript/tests/cases/conformance/expressions/assignmentOperator/assignmentTypeNarrowing.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["AOrArrA", "a", "arr", "x"] -rebuilt : ScopeId(0): ["a", "arr", "x"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: @@ -45282,13 +39599,7 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/ad 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/conformance/expressions/binaryOperators/additionOperator/additionOperatorWithConstrainedTypeParameter.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["K", "T", "k", "n", "v"] -rebuilt : ScopeId(1): ["k", "n", "v"] -Bindings mismatch: -after transform: ScopeId(2): ["K", "T", "k", "n", "vs"] -rebuilt : ScopeId(2): ["k", "n", "vs"] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["Record"] rebuilt : [] @@ -45376,10 +39687,7 @@ after transform: SymbolId(3): [ReferenceId(1), ReferenceId(233)] rebuilt : SymbolId(2): [ReferenceId(11)] tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithIdenticalObjects.ts -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: +semantic error: 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)] Symbol reference IDs mismatch for "A1": @@ -45401,11 +39709,6 @@ Unresolved references mismatch: after transform: ["Object"] rebuilt : [] -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)] @@ -45429,10 +39732,7 @@ after transform: SymbolId(2): [ReferenceId(17)] rebuilt : SymbolId(2): [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -45443,9 +39743,6 @@ rebuilt : ScopeId(1): ["E"] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(0x0) rebuilt : ScopeId(1): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(2): ["T", "foo_r1", "foo_r2", "foo_r3", "foo_r4", "foo_r5", "foo_r6", "foo_r7", "foo_r8", "t"] -rebuilt : ScopeId(2): ["foo_r1", "foo_r2", "foo_r3", "foo_r4", "foo_r5", "foo_r6", "foo_r7", "foo_r8", "t"] Symbol flags mismatch for "E": after transform: SymbolId(1): SymbolFlags(RegularEnum) rebuilt : SymbolId(1): SymbolFlags(FunctionScopedVariable) @@ -45460,9 +39757,6 @@ rebuilt : ScopeId(1): ["E"] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(0x0) rebuilt : ScopeId(1): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(2): ["T", "foo_r1", "foo_r2", "foo_r3", "foo_r4", "foo_r5", "foo_r6", "foo_r7", "foo_r8", "t"] -rebuilt : ScopeId(2): ["foo_r1", "foo_r2", "foo_r3", "foo_r4", "foo_r5", "foo_r6", "foo_r7", "foo_r8", "t"] Symbol flags mismatch for "E": after transform: SymbolId(1): SymbolFlags(RegularEnum) rebuilt : SymbolId(1): SymbolFlags(FunctionScopedVariable) @@ -45540,10 +39834,7 @@ after transform: SymbolId(1): [ReferenceId(16)] rebuilt : SymbolId(1): [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] @@ -45589,14 +39880,9 @@ Unresolved references mismatch: after transform: ["Function", "Object"] rebuilt : [] -tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/instanceofOperator/instanceofOperatorWithLHSIsTypeParameter.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "r", "t", "x"] -rebuilt : ScopeId(1): ["r", "t", "x"] - tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/instanceofOperator/instanceofOperatorWithRHSHasSymbolHasInstance.ts 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"] +after transform: ScopeId(0): ["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)] @@ -46074,37 +40360,13 @@ after transform: [ReferenceId(237), ReferenceId(239)] rebuilt : [ReferenceId(175)] tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/instanceofOperator/instanceofOperatorWithRHSIsSubtypeOfFunction.ts -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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Function", "undefined"] rebuilt : ["undefined"] -tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/logicalAndOperator/logicalAndOperatorWithTypeParameters.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "U", "V", "a", "r1", "r10", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9", "t", "u", "v"] -rebuilt : ScopeId(1): ["a", "r1", "r10", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9", "t", "u", "v"] - -tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/logicalOrOperator/logicalOrOperatorWithTypeParameters.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "U", "r1", "r2", "r3", "r4", "t", "u"] -rebuilt : ScopeId(1): ["r1", "r2", "r3", "r4", "t", "u"] -Bindings mismatch: -after transform: ScopeId(2): ["T", "U", "V", "r1", "r3", "r4", "r5", "r6", "t", "u", "v"] -rebuilt : ScopeId(2): ["r1", "r3", "r4", "r5", "r6", "t", "u", "v"] -Bindings mismatch: -after transform: ScopeId(3): ["T", "U", "r1", "r2", "r3", "r4", "t", "u"] -rebuilt : ScopeId(3): ["r1", "r2", "r3", "r4", "t", "u"] - -tasks/coverage/typescript/tests/cases/conformance/expressions/commaOperator/commaOperatorOtherValidOperation.ts -semantic error: Bindings mismatch: -after transform: ScopeId(4): ["T1", "T2", "resultIsT1", "x", "y"] -rebuilt : ScopeId(4): ["resultIsT1", "x", "y"] - tasks/coverage/typescript/tests/cases/conformance/expressions/commaOperator/commaOperatorWithSecondOperandAnyType.ts semantic error: Unresolved references mismatch: after transform: ["Object", "undefined"] @@ -46158,12 +40420,6 @@ rebuilt : ScopeId(1): ["E"] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(0x0) rebuilt : ScopeId(1): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(15): ["T", "U"] -rebuilt : ScopeId(15): [] Symbol flags mismatch for "E": after transform: SymbolId(0): SymbolFlags(RegularEnum) rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) @@ -46194,54 +40450,25 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/p 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"] Unresolved references mismatch: after transform: ["TemplateStringsArray", "undefined"] rebuilt : ["undefined"] -tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/superCallParameterContextualTyping1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T1", "T2"] -rebuilt : ScopeId(1): [] - tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/superCallParameterContextualTyping3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C", "CBase", "ContextualType"] -rebuilt : ScopeId(0): ["C", "CBase"] -Scope children mismatch: +semantic error: 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): [] tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/taggedTemplateContextualTyping1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["FuncType", "tempTag1"] -rebuilt : ScopeId(0): ["tempTag1"] -Scope children 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)] 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"] -Bindings mismatch: -after transform: ScopeId(9): ["T", "y"] -rebuilt : ScopeId(6): ["y"] -Bindings mismatch: -after transform: ScopeId(10): ["T", "x"] -rebuilt : ScopeId(7): ["x"] Unresolved references mismatch: after transform: ["TemplateStringsArray", "undefined", "x"] rebuilt : ["undefined"] tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/taggedTemplateContextualTyping2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["FuncType1", "FuncType2", "tempTag2"] -rebuilt : ScopeId(0): ["tempTag2"] -Scope children 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)] Unresolved references mismatch: @@ -46250,7 +40477,7 @@ rebuilt : ["undefined"] tasks/coverage/typescript/tests/cases/conformance/expressions/elementAccess/stringEnumInElementAccess01.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["E", "Item", "e", "item", "snb"] +after transform: ScopeId(0): ["E", "e", "item", "snb"] rebuilt : ScopeId(0): ["E", "snb"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -46278,10 +40505,7 @@ after transform: [] rebuilt : ["e", "item"] tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/callWithSpread.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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(7)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5)] Unresolved references mismatch: @@ -46289,10 +40513,7 @@ after transform: ["Function"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(7)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5)] Unresolved references mismatch: @@ -46300,10 +40521,7 @@ after transform: ["Function"] rebuilt : [] 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: +semantic error: 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)] Symbol reference IDs mismatch for "B": @@ -46311,10 +40529,7 @@ after transform: SymbolId(7): [ReferenceId(0), ReferenceId(1), ReferenceId(45), rebuilt : SymbolId(6): [ReferenceId(36), ReferenceId(37), ReferenceId(39)] 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: +semantic error: 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)] Symbol reference IDs mismatch for "B": @@ -46322,10 +40537,7 @@ after transform: SymbolId(7): [ReferenceId(0), ReferenceId(1), ReferenceId(45), rebuilt : SymbolId(6): [ReferenceId(36), ReferenceId(37), ReferenceId(39)] 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: +semantic error: 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)] Symbol reference IDs mismatch for "B": @@ -46333,10 +40545,7 @@ after transform: SymbolId(7): [ReferenceId(0), ReferenceId(1), ReferenceId(45), rebuilt : SymbolId(6): [ReferenceId(36), ReferenceId(37), ReferenceId(39)] 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"] -Unresolved reference IDs mismatch for "Date": +semantic error: Unresolved reference IDs mismatch for "Date": after transform: [ReferenceId(0), ReferenceId(10), ReferenceId(11), ReferenceId(12), ReferenceId(13)] rebuilt : [ReferenceId(4), ReferenceId(5), ReferenceId(6)] @@ -46362,7 +40571,7 @@ rebuilt : ScopeId(7): ScopeFlags(Function) tasks/coverage/typescript/tests/cases/conformance/expressions/functions/voidParamAssignmentCompatibility.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Obj", "gg", "o"] +after transform: ScopeId(0): ["gg", "o"] rebuilt : ScopeId(0): ["gg"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -46375,21 +40584,15 @@ after transform: ["g"] rebuilt : ["g", "o"] tasks/coverage/typescript/tests/cases/conformance/expressions/newOperator/newOperatorConformance.ts -semantic error: Scope children mismatch: +semantic error: Bindings mismatch: +after transform: ScopeId(0): ["C0", "C1", "T", "a", "anyCtor", "anyCtor1", "c1", "d", "fnVoid", "n", "nested", "newFn1", "newFn2", "t"] +rebuilt : ScopeId(0): ["C0", "C1", "T", "a", "anyCtor", "anyCtor1", "c1", "d", "fnVoid", "n", "nested", "nestedCtor", "newFn1", "newFn2", "t"] +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): [] @@ -47069,7 +41272,7 @@ rebuilt : ["o1", "o2", "o3"] tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/callChain/callChain.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T", "_o", "_o3$b", "_o3$b10", "_o3$b11", "_o3$b12", "_o3$b2", "_o3$b3", "_o3$b4", "_o3$b5", "_o3$b6", "_o3$b7", "_o3$b8", "_o3$b9", "o1", "o2", "o3", "o4", "o5", "v"] +after transform: ScopeId(0): ["_o", "_o3$b", "_o3$b10", "_o3$b11", "_o3$b12", "_o3$b2", "_o3$b3", "_o3$b4", "_o3$b5", "_o3$b6", "_o3$b7", "_o3$b8", "_o3$b9", "o1", "o2", "o3", "o4", "o5", "v"] rebuilt : ScopeId(0): ["_o", "_o3$b", "_o3$b10", "_o3$b11", "_o3$b12", "_o3$b2", "_o3$b3", "_o3$b4", "_o3$b5", "_o3$b6", "_o3$b7", "_o3$b8", "_o3$b9", "v"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] @@ -47290,7 +41493,7 @@ rebuilt : ["incr", "o1", "o2", "o3", "o4", "o5"] tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/callChain/callChainInference.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Y", "value"] +after transform: ScopeId(0): ["value"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] @@ -47443,7 +41646,7 @@ rebuilt : ["o1", "o2", "o3"] tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/elementAccessChain/elementAccessChain.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T", "_o", "_o3$b", "_o3$b2", "_o4$b", "_o4$b2", "_o5$b", "_o5$b2", "_o5$b3", "_o5$b4", "o1", "o2", "o3", "o4", "o5", "o6"] +after transform: ScopeId(0): ["_o", "_o3$b", "_o3$b2", "_o4$b", "_o4$b2", "_o5$b", "_o5$b2", "_o5$b3", "_o5$b4", "o1", "o2", "o3", "o4", "o5", "o6"] rebuilt : ScopeId(0): ["_o", "_o3$b", "_o3$b2", "_o4$b", "_o4$b2", "_o5$b", "_o5$b2", "_o5$b3", "_o5$b4"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] @@ -47696,7 +41899,7 @@ rebuilt : ["o1", "o2", "o3"] tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/propertyAccessChain/propertyAccessChain.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T", "_o", "_o3$b", "_o4$b", "_o5$b", "o1", "o2", "o3", "o4", "o5", "o6"] +after transform: ScopeId(0): ["_o", "_o3$b", "_o4$b", "_o5$b", "o1", "o2", "o3", "o4", "o5", "o6"] rebuilt : ScopeId(0): ["_o", "_o3$b", "_o4$b", "_o5$b"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] @@ -47816,10 +42019,7 @@ after transform: SymbolId(1): [ReferenceId(1), ReferenceId(11)] rebuilt : SymbolId(2): [ReferenceId(3)] tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardFunction.ts -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: +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(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)] Symbol reference IDs mismatch for "A": @@ -47847,10 +42047,7 @@ after transform: SymbolId(2): [ReferenceId(2), ReferenceId(3)] rebuilt : SymbolId(2): [] tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardFunctionOfFormThis.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["ArrowElite", "ArrowGuard", "ArrowMedic", "Crate", "FollowerGuard", "GuardInterface", "LeadGuard", "MimicFollower", "MimicGuard", "MimicGuardInterface", "MimicLeader", "RoyalGuard", "Sundries", "Supplies", "a", "b", "crate", "guard", "holder2", "mimic"] -rebuilt : ScopeId(0): ["ArrowElite", "ArrowGuard", "ArrowMedic", "FollowerGuard", "LeadGuard", "MimicFollower", "MimicGuard", "MimicLeader", "RoyalGuard", "a", "b", "crate", "guard", "holder2", "mimic"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(34), ScopeId(36), ScopeId(38), ScopeId(39)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(28), ScopeId(30), ScopeId(32)] Symbol reference IDs mismatch for "RoyalGuard": @@ -47876,10 +42073,7 @@ after transform: SymbolId(18): [ReferenceId(49), ReferenceId(50)] rebuilt : SymbolId(13): [ReferenceId(35)] 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: +semantic error: 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)] Unresolved references mismatch: @@ -47887,10 +42081,7 @@ after transform: ["Object", "isX", "isY", "isZ", "log"] rebuilt : ["isX", "isY", "isZ", "log"] 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: +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)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] Scope flags mismatch: @@ -47946,10 +42137,7 @@ after transform: SymbolId(3): [ReferenceId(46), ReferenceId(63)] rebuilt : SymbolId(3): [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [] @@ -47965,10 +42153,7 @@ after transform: SymbolId(2): [ReferenceId(3), ReferenceId(23), ReferenceId(37)] rebuilt : SymbolId(2): [] 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: +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)] @@ -47978,16 +42163,7 @@ after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2), R rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormTypeOfFunction.ts -semantic error: Bindings mismatch: -after transform: ScopeId(7): ["T", "x"] -rebuilt : ScopeId(7): ["x"] -Bindings mismatch: -after transform: ScopeId(22): ["K", "T", "keys", "obj"] -rebuilt : ScopeId(22): ["keys", "obj"] -Bindings mismatch: -after transform: ScopeId(25): ["S", "reducer", "rootReducer"] -rebuilt : ScopeId(25): ["reducer", "rootReducer"] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["Record"] rebuilt : [] @@ -48007,10 +42183,7 @@ after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2), R rebuilt : SymbolId(0): [] 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: +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(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)] Symbol reference IDs mismatch for "A": @@ -48110,10 +42283,7 @@ after transform: SymbolId(2): [ReferenceId(4)] rebuilt : SymbolId(2): [] tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typePredicateASI.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -48123,18 +42293,12 @@ after transform: ["const"] rebuilt : [] 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: +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/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: +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)] Unresolved references mismatch: @@ -48142,10 +42306,7 @@ after transform: ["Function"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Unresolved references mismatch: @@ -48153,10 +42314,7 @@ after transform: ["Record"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [] Symbol reference IDs mismatch for "x": @@ -48164,10 +42322,7 @@ after transform: SymbolId(3): [ReferenceId(2), ReferenceId(4), ReferenceId(6), R rebuilt : SymbolId(0): [ReferenceId(1), ReferenceId(3), ReferenceId(5), ReferenceId(6)] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [] Symbol reference IDs mismatch for "x": @@ -48245,7 +42400,7 @@ rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/typescript/tests/cases/conformance/externalModules/amdImportNotAsPrimaryExpression.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C1", "E1", "I1", "M1"] +after transform: ScopeId(0): ["C1", "E1", "M1"] rebuilt : ScopeId(0): ["C1", "E1"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5)] @@ -48290,7 +42445,7 @@ rebuilt : ["require"] tasks/coverage/typescript/tests/cases/conformance/externalModules/commonJSImportNotAsPrimaryExpression.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C1", "E1", "I1", "M1"] +after transform: ScopeId(0): ["C1", "E1", "M1"] rebuilt : ScopeId(0): ["C1", "E1"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5)] @@ -48607,23 +42762,66 @@ after transform: ["module"] rebuilt : ["module", "require"] tasks/coverage/typescript/tests/cases/conformance/externalModules/exportAssignTypes.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "a"] -rebuilt : ScopeId(1): ["a"] +semantic error: Missing SymbolId: "iString" +Missing ReferenceId: "require" +Missing SymbolId: "iNumber" +Missing ReferenceId: "require" +Missing SymbolId: "iBoolean" +Missing ReferenceId: "require" +Missing SymbolId: "iArray" +Missing ReferenceId: "require" +Missing SymbolId: "iObject" +Missing ReferenceId: "require" +Missing SymbolId: "iAny" +Missing ReferenceId: "require" +Missing SymbolId: "iGeneric" +Missing ReferenceId: "require" +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8), SymbolId(9), SymbolId(10), SymbolId(11), SymbolId(12), SymbolId(13)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8), SymbolId(9), SymbolId(10), SymbolId(11), SymbolId(12), SymbolId(13)] +Reference symbol mismatch for "iString": +after transform: SymbolId(0) "iString" +rebuilt : SymbolId(0) "iString" +Reference symbol mismatch for "iNumber": +after transform: SymbolId(2) "iNumber" +rebuilt : SymbolId(2) "iNumber" +Reference symbol mismatch for "iBoolean": +after transform: SymbolId(4) "iBoolean" +rebuilt : SymbolId(4) "iBoolean" +Reference symbol mismatch for "iArray": +after transform: SymbolId(6) "iArray" +rebuilt : SymbolId(6) "iArray" +Reference symbol mismatch for "iObject": +after transform: SymbolId(8) "iObject" +rebuilt : SymbolId(8) "iObject" +Reference symbol mismatch for "iAny": +after transform: SymbolId(10) "iAny" +rebuilt : SymbolId(10) "iAny" +Reference symbol mismatch for "iGeneric": +after transform: SymbolId(12) "iGeneric" +rebuilt : SymbolId(12) "iGeneric" +Unresolved references mismatch: +after transform: ["Array", "Object"] +rebuilt : ["require"] tasks/coverage/typescript/tests/cases/conformance/externalModules/exportAssignmentCircularModules.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/conformance/externalModules/exportAssignmentGenericType.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] +semantic error: Missing SymbolId: "foo" +Missing ReferenceId: "require" +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2)] +Reference symbol mismatch for "foo": +after transform: SymbolId(0) "foo" +rebuilt : SymbolId(0) "foo" +Unresolved references mismatch: +after transform: [] +rebuilt : ["require"] tasks/coverage/typescript/tests/cases/conformance/externalModules/exportAssignmentMergedInterface.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] Reference symbol mismatch for "Foo": @@ -48664,18 +42862,12 @@ after transform: ReferenceId(0): ReferenceFlags(Read | Type) rebuilt : ReferenceId(1): ReferenceFlags(Read) tasks/coverage/typescript/tests/cases/conformance/externalModules/exportNonVisibleType.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I1", "x"] -rebuilt : ScopeId(0): ["x"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/externalModules/exportTypeMergedWithExportStarAsNamespace.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["MyType", "Something", "myValue"] -rebuilt : ScopeId(0): ["Something", "myValue"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Symbol reference IDs mismatch for "Something": @@ -48835,10 +43027,7 @@ after transform: [] rebuilt : ["require"] tasks/coverage/typescript/tests/cases/conformance/externalModules/typeAndNamespaceExportMerge.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Drink"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -48864,10 +43053,7 @@ after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/exportDeclaration_moduleSpecifier-isolatedModules.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -48877,10 +43063,7 @@ after transform: ["A"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -48900,18 +43083,12 @@ after transform: ScopeId(0): ["from"] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/mergedWithLocalValue.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -48933,18 +43110,12 @@ after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/preserveValueImports.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["D", "b", "c"] -rebuilt : ScopeId(0): ["b", "c"] -Scope children mismatch: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -48954,15 +43125,15 @@ after transform: ScopeId(0): ["A", "AConstructor"] rebuilt : ScopeId(0): ["AConstructor"] tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnlyMerge1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: Bindings mismatch: +after transform: ScopeId(0): [] +rebuilt : ScopeId(0): ["A", "B"] +Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol flags mismatch for "A": @@ -49042,10 +43213,7 @@ after transform: SymbolId(0): SymbolFlags(RegularEnum) rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/typescript/tests/cases/conformance/externalModules/verbatimModuleSyntaxRestrictionsESM.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Typey"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -49071,10 +43239,7 @@ after transform: ["require"] rebuilt : ["a", "require"] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch for "fn": @@ -49090,10 +43255,7 @@ after transform: ["IterableIterator"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: @@ -49112,7 +43274,7 @@ Missing ReferenceId: "_StepResult" Missing ReferenceId: "StepResult" Missing ReferenceId: "StepResult" Bindings mismatch: -after transform: ScopeId(0): ["Directive", "PartialStepState", "QuickInputStep", "QuickPickItem", "QuickPickStep", "StepGenerator", "StepItemType", "StepResult", "StepResultGenerator", "StepSelection", "StepState", "_wrapAsyncGenerator", "canPickStepContinue", "createPickStep", "showStep"] +after transform: ScopeId(0): ["Directive", "_wrapAsyncGenerator", "canPickStepContinue", "createPickStep", "showStep"] rebuilt : ScopeId(0): ["Directive", "StepResult", "_wrapAsyncGenerator", "canPickStepContinue", "createPickStep", "showStep"] 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), ScopeId(12), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25)] @@ -49129,24 +43291,12 @@ rebuilt : ScopeId(4): [SymbolId(5), SymbolId(6)] Scope flags mismatch: after transform: ScopeId(6): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(4): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(7): ["T", "value"] -rebuilt : ScopeId(5): ["value"] Binding symbols mismatch: after transform: ScopeId(15): [SymbolId(27), SymbolId(54)] rebuilt : ScopeId(6): [SymbolId(9), SymbolId(10)] Scope flags mismatch: after transform: ScopeId(15): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(6): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(23): ["T", "_selection", "_state", "_step"] -rebuilt : ScopeId(7): ["_selection", "_state", "_step"] -Bindings mismatch: -after transform: ScopeId(24): ["T", "step"] -rebuilt : ScopeId(8): ["step"] -Bindings mismatch: -after transform: ScopeId(25): ["Context", "State", "_context", "selection", "state", "step"] -rebuilt : ScopeId(9): ["_context", "selection", "state", "step"] Symbol flags mismatch for "Directive": after transform: SymbolId(10): SymbolFlags(RegularEnum | NameSpaceModule | ValueModule) rebuilt : SymbolId(3): SymbolFlags(FunctionScopedVariable) @@ -49221,15 +43371,9 @@ after transform: ScopeId(0): ["a"] rebuilt : ScopeId(0): [] 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: +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)] rebuilt : ScopeId(0): [ScopeId(1)] -Bindings mismatch: -after transform: ScopeId(4): ["T"] -rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/genericAndNonGenericInterfaceWithTheSameName2.ts semantic error: Bindings mismatch: @@ -49244,15 +43388,15 @@ semantic error: Missing SymbolId: "M" Missing SymbolId: "_M" Missing ReferenceId: "M" Missing ReferenceId: "M" -Bindings mismatch: -after transform: ScopeId(0): ["A", "B", "M", "a", "b", "r1", "r2", "r3", "r4", "r5", "r6"] -rebuilt : ScopeId(0): ["M", "a", "b", "r1", "r2", "r3", "r4", "r5", "r6"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(9), SymbolId(10), SymbolId(11), SymbolId(12), SymbolId(13)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8)] 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)] -Bindings mismatch: -after transform: ScopeId(7): ["A", "B", "_M", "a", "b", "r1", "r2", "r3", "r4", "r5", "r6"] -rebuilt : ScopeId(1): ["_M", "a", "b", "r1", "r2", "r3", "r4", "r5", "r6"] +Binding symbols mismatch: +after transform: ScopeId(7): [SymbolId(15), SymbolId(16), SymbolId(17), SymbolId(18), SymbolId(23), SymbolId(24), SymbolId(25), SymbolId(26), SymbolId(27)] +rebuilt : ScopeId(1): [SymbolId(9), SymbolId(10), SymbolId(11), SymbolId(12), SymbolId(13), SymbolId(14), SymbolId(15), SymbolId(16), SymbolId(17)] Scope flags mismatch: after transform: ScopeId(7): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -49298,18 +43442,18 @@ Missing ReferenceId: "M2" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0)] rebuilt : ScopeId(0): [SymbolId(0)] -Bindings mismatch: -after transform: ScopeId(1): ["A", "_M", "a", "r1", "r2"] -rebuilt : ScopeId(1): ["_M", "a", "r1", "r2"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(27)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) Scope children mismatch: after transform: ScopeId(1): [ScopeId(2)] rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(3): ["A", "_M2", "a", "r1", "r2", "r3"] -rebuilt : ScopeId(2): ["_M2", "a", "r1", "r2", "r3"] +Binding symbols mismatch: +after transform: ScopeId(3): [SymbolId(6), SymbolId(7), SymbolId(8), SymbolId(9), SymbolId(28)] +rebuilt : ScopeId(2): [SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8), SymbolId(9)] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(2): ScopeFlags(Function) @@ -49322,9 +43466,9 @@ rebuilt : ScopeId(3): [SymbolId(10), SymbolId(11)] Scope flags mismatch: after transform: ScopeId(6): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(3): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(7): ["A", "_M4", "a", "r1", "r2"] -rebuilt : ScopeId(4): ["_M4", "a", "r1", "r2"] +Binding symbols mismatch: +after transform: ScopeId(7): [SymbolId(12), SymbolId(13), SymbolId(14), SymbolId(30)] +rebuilt : ScopeId(4): [SymbolId(12), SymbolId(13), SymbolId(14), SymbolId(15)] Scope flags mismatch: after transform: ScopeId(7): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(4): ScopeFlags(Function) @@ -49337,9 +43481,9 @@ rebuilt : ScopeId(5): [SymbolId(16), SymbolId(17)] Scope flags mismatch: after transform: ScopeId(9): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(5): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(10): ["A", "_M6", "a", "r1", "r2", "r3"] -rebuilt : ScopeId(6): ["_M6", "a", "r1", "r2", "r3"] +Binding symbols mismatch: +after transform: ScopeId(10): [SymbolId(17), SymbolId(18), SymbolId(19), SymbolId(20), SymbolId(32)] +rebuilt : ScopeId(6): [SymbolId(18), SymbolId(19), SymbolId(20), SymbolId(21), SymbolId(22)] Scope flags mismatch: after transform: ScopeId(10): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(6): ScopeFlags(Function) @@ -49352,9 +43496,9 @@ rebuilt : ScopeId(7): [SymbolId(23), SymbolId(24)] Scope flags mismatch: after transform: ScopeId(12): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(7): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(13): ["A", "_M8", "a", "r1", "r2", "r3"] -rebuilt : ScopeId(8): ["_M8", "a", "r1", "r2", "r3"] +Binding symbols mismatch: +after transform: ScopeId(13): [SymbolId(23), SymbolId(24), SymbolId(25), SymbolId(26), SymbolId(34)] +rebuilt : ScopeId(8): [SymbolId(25), SymbolId(26), SymbolId(27), SymbolId(28), SymbolId(29)] Scope flags mismatch: after transform: ScopeId(13): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(8): ScopeFlags(Function) @@ -49367,15 +43511,15 @@ semantic error: Missing SymbolId: "M" Missing SymbolId: "_M" Missing ReferenceId: "M" Missing ReferenceId: "M" -Bindings mismatch: -after transform: ScopeId(0): ["A", "B", "M", "a", "b", "r1", "r2", "r3", "r4"] -rebuilt : ScopeId(0): ["M", "a", "b", "r1", "r2", "r3", "r4"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(7), SymbolId(8), SymbolId(9), SymbolId(10)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5), SymbolId(6)] 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): ["A", "B", "_M", "a", "b", "r1", "r2", "r3", "r4"] -rebuilt : ScopeId(1): ["_M", "a", "b", "r1", "r2", "r3", "r4"] +Binding symbols mismatch: +after transform: ScopeId(5): [SymbolId(12), SymbolId(13), SymbolId(14), SymbolId(18), SymbolId(19), SymbolId(20), SymbolId(21)] +rebuilt : ScopeId(1): [SymbolId(7), SymbolId(8), SymbolId(9), SymbolId(10), SymbolId(11), SymbolId(12), SymbolId(13)] Scope flags mismatch: after transform: ScopeId(5): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -49412,18 +43556,18 @@ Missing ReferenceId: "M2" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0)] rebuilt : ScopeId(0): [SymbolId(0)] -Bindings mismatch: -after transform: ScopeId(1): ["A", "_M", "a", "r1", "r2"] -rebuilt : ScopeId(1): ["_M", "a", "r1", "r2"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(19)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) Scope children mismatch: after transform: ScopeId(1): [ScopeId(2)] rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(3): ["A", "_M2", "a", "r1", "r2"] -rebuilt : ScopeId(2): ["_M2", "a", "r1", "r2"] +Binding symbols mismatch: +after transform: ScopeId(3): [SymbolId(6), SymbolId(7), SymbolId(8), SymbolId(20)] +rebuilt : ScopeId(2): [SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8)] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(2): ScopeFlags(Function) @@ -49436,9 +43580,9 @@ rebuilt : ScopeId(3): [SymbolId(9), SymbolId(10)] Scope flags mismatch: after transform: ScopeId(5): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(3): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(6): ["A", "_M4", "a", "r1", "r2"] -rebuilt : ScopeId(4): ["_M4", "a", "r1", "r2"] +Binding symbols mismatch: +after transform: ScopeId(6): [SymbolId(11), SymbolId(12), SymbolId(13), SymbolId(22)] +rebuilt : ScopeId(4): [SymbolId(11), SymbolId(12), SymbolId(13), SymbolId(14)] Scope flags mismatch: after transform: ScopeId(6): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(4): ScopeFlags(Function) @@ -49451,9 +43595,9 @@ rebuilt : ScopeId(5): [SymbolId(15), SymbolId(16)] Scope flags mismatch: after transform: ScopeId(8): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(5): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(9): ["A", "_M6", "a", "r1", "r2"] -rebuilt : ScopeId(6): ["_M6", "a", "r1", "r2"] +Binding symbols mismatch: +after transform: ScopeId(9): [SymbolId(16), SymbolId(17), SymbolId(18), SymbolId(24)] +rebuilt : ScopeId(6): [SymbolId(17), SymbolId(18), SymbolId(19), SymbolId(20)] Scope flags mismatch: after transform: ScopeId(9): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(6): ScopeFlags(Function) @@ -49463,17 +43607,14 @@ rebuilt : ScopeId(6): [] tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/mergedInterfacesWithConflictingPropertyNames2.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "M", "M2", "M3"] +after transform: ScopeId(0): ["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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] @@ -49482,27 +43623,21 @@ semantic error: Missing SymbolId: "M" Missing SymbolId: "_M" Missing ReferenceId: "M" Missing ReferenceId: "M" -Bindings mismatch: -after transform: ScopeId(0): ["A", "C", "C2", "D", "M", "a", "r"] -rebuilt : ScopeId(0): ["C", "C2", "D", "M", "a", "r"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(3), SymbolId(4), SymbolId(5), SymbolId(6)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5)] 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(6): ["A", "C", "C2", "D", "_M"] -rebuilt : ScopeId(4): ["C", "C2", "D", "_M"] +Binding symbols mismatch: +after transform: ScopeId(6): [SymbolId(7), SymbolId(9), SymbolId(14), SymbolId(15)] +rebuilt : ScopeId(4): [SymbolId(6), SymbolId(7), SymbolId(8), SymbolId(9)] Scope flags mismatch: after transform: ScopeId(6): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(4): ScopeFlags(Function) Scope children mismatch: after transform: ScopeId(6): [ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] rebuilt : ScopeId(4): [ScopeId(5), ScopeId(6), ScopeId(7)] -Bindings mismatch: -after transform: ScopeId(7): ["T"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(8): ["T"] -rebuilt : ScopeId(6): [] Symbol reference IDs mismatch for "C": after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] @@ -49521,33 +43656,21 @@ semantic error: Missing SymbolId: "M" Missing SymbolId: "_M" Missing ReferenceId: "M" Missing ReferenceId: "M" -Bindings mismatch: -after transform: ScopeId(0): ["A", "C", "C2", "C3", "C4", "D", "M", "a", "r"] -rebuilt : ScopeId(0): ["C", "C2", "C3", "C4", "D", "M", "a", "r"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5), SymbolId(6), SymbolId(7)] 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(8): ["A", "C", "C2", "C3", "C4", "D", "_M"] -rebuilt : ScopeId(6): ["C", "C2", "C3", "C4", "D", "_M"] +Binding symbols mismatch: +after transform: ScopeId(8): [SymbolId(9), SymbolId(11), SymbolId(13), SymbolId(15), SymbolId(20), SymbolId(21)] +rebuilt : ScopeId(6): [SymbolId(8), SymbolId(9), SymbolId(10), SymbolId(11), SymbolId(12), SymbolId(13)] Scope flags mismatch: after transform: ScopeId(8): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(6): ScopeFlags(Function) Scope children mismatch: after transform: ScopeId(8): [ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15)] rebuilt : ScopeId(6): [ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] -Bindings mismatch: -after transform: ScopeId(9): ["T"] -rebuilt : ScopeId(7): [] -Bindings mismatch: -after transform: ScopeId(10): ["T"] -rebuilt : ScopeId(8): [] -Bindings mismatch: -after transform: ScopeId(11): ["T"] -rebuilt : ScopeId(9): [] -Bindings mismatch: -after transform: ScopeId(12): ["T"] -rebuilt : ScopeId(10): [] Symbol reference IDs mismatch for "C": after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] @@ -49574,24 +43697,9 @@ after transform: SymbolId(15): [ReferenceId(17)] rebuilt : SymbolId(12): [] tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/mergedInterfacesWithMultipleBases3.ts -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: +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)] -Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(4): ["T"] -rebuilt : ScopeId(4): [] Symbol reference IDs mismatch for "C": after transform: SymbolId(0): [ReferenceId(4), ReferenceId(7)] rebuilt : SymbolId(0): [] @@ -49606,10 +43714,7 @@ after transform: ["Date"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/twoMergedInterfacesWithDifferingOverloads.ts -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: +semantic error: 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): [] Unresolved references mismatch: @@ -49621,15 +43726,15 @@ semantic error: Missing SymbolId: "G" Missing SymbolId: "_G" Missing ReferenceId: "G" Missing ReferenceId: "G" -Bindings mismatch: -after transform: ScopeId(0): ["A", "G", "a", "r", "r2", "r3"] -rebuilt : ScopeId(0): ["G", "a", "r", "r2", "r3"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4)] 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", "_G", "a", "r", "r2", "r3", "r4"] -rebuilt : ScopeId(1): ["_G", "a", "r", "r2", "r3", "r4"] +Binding symbols mismatch: +after transform: ScopeId(3): [SymbolId(10), SymbolId(11), SymbolId(12), SymbolId(13), SymbolId(14), SymbolId(15)] +rebuilt : ScopeId(1): [SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8), SymbolId(9), SymbolId(10)] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -49653,16 +43758,13 @@ after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/derivedInterfaceDoesNotHideBaseSignatures.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Base", "Derived"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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"] +after transform: ScopeId(0): ["C1", "C2", "C20", "C21", "C22", "C23", "C3", "C4", "C5", "C6", "C7", "EX", "NX"] 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)] @@ -49672,58 +43774,37 @@ after transform: ["CX", "Constructor", "NX", "Partial", "Readonly", "fx"] rebuilt : ["Constructor"] 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -49734,10 +43815,7 @@ tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclaratio 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/conformance/interfaces/interfaceDeclarations/interfaceWithSpecializedCallAndConstructSignatures.ts -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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -49745,10 +43823,7 @@ after transform: ["Object"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch for "Foo": @@ -50126,18 +44201,15 @@ rebuilt : ScopeId(0): [SymbolId(0)] Binding symbols mismatch: after transform: ScopeId(1): [SymbolId(1), SymbolId(7)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] -Bindings mismatch: -after transform: ScopeId(2): ["Point", "Utils", "_A"] -rebuilt : ScopeId(2): ["Utils", "_A"] +Binding symbols mismatch: +after transform: ScopeId(2): [SymbolId(3), SymbolId(8)] +rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] Scope children mismatch: after transform: ScopeId(2): [ScopeId(3), ScopeId(4)] rebuilt : ScopeId(2): [ScopeId(3)] Binding symbols mismatch: after transform: ScopeId(4): [SymbolId(4), SymbolId(9)] rebuilt : ScopeId(3): [SymbolId(5), SymbolId(6)] -Bindings mismatch: -after transform: ScopeId(5): ["T", "p"] -rebuilt : ScopeId(4): ["p"] Symbol flags mismatch for "mirror": after transform: SymbolId(4): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(6): SymbolFlags(FunctionScopedVariable) @@ -50161,18 +44233,15 @@ Missing ReferenceId: "A" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0)] rebuilt : ScopeId(0): [SymbolId(0)] -Bindings mismatch: -after transform: ScopeId(1): ["Point", "Utils", "_A"] -rebuilt : ScopeId(1): ["Utils", "_A"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(2), SymbolId(6)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope children mismatch: after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] rebuilt : ScopeId(1): [ScopeId(2)] Binding symbols mismatch: after transform: ScopeId(3): [SymbolId(3), SymbolId(7)] rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] -Bindings mismatch: -after transform: ScopeId(4): ["T", "p"] -rebuilt : ScopeId(3): ["p"] Symbol flags mismatch for "mirror": after transform: SymbolId(3): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(4): SymbolFlags(FunctionScopedVariable) @@ -50200,9 +44269,9 @@ Missing ReferenceId: "A" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0)] rebuilt : ScopeId(0): [SymbolId(0)] -Bindings mismatch: -after transform: ScopeId(1): ["Point", "Point2d", "_A"] -rebuilt : ScopeId(1): ["Point2d", "_A"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(2), SymbolId(6)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -50396,18 +44465,18 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Binding symbols mismatch: -after transform: ScopeId(5): [SymbolId(7), SymbolId(13)] -rebuilt : ScopeId(5): [SymbolId(8), SymbolId(9)] +Bindings mismatch: +after transform: ScopeId(5): ["_clodule"] +rebuilt : ScopeId(5): ["Point", "_clodule"] Scope flags mismatch: after transform: ScopeId(5): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(5): ScopeFlags(Function) Scope children mismatch: after transform: ScopeId(5): [ScopeId(6)] rebuilt : ScopeId(5): [] -Binding symbols mismatch: -after transform: ScopeId(8): [SymbolId(10), SymbolId(14)] -rebuilt : ScopeId(7): [SymbolId(12), SymbolId(13)] +Bindings mismatch: +after transform: ScopeId(8): ["_fundule"] +rebuilt : ScopeId(7): ["Point", "_fundule"] Scope flags mismatch: after transform: ScopeId(8): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(7): ScopeFlags(Function) @@ -50512,10 +44581,7 @@ after transform: ["mod1", "mod2", "pack1", "pack2"] rebuilt : ["mod2", "pack2"] tasks/coverage/typescript/tests/cases/conformance/jsdoc/declarations/jsDeclarationsClassImplementsGenericsSerialization.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Encoder"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -50523,138 +44589,87 @@ after transform: ["Uint8Array"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag16.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo", "I"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag18.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag19.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag20.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag5.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocLinkTag1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocLinkTag3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocTwoLineTypedef.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["LoadCallback"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -50665,56 +44680,38 @@ rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/seeTag1.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo", "NS", "a", "b", "c"] +after transform: ScopeId(0): ["NS", "a", "b", "c"] rebuilt : ScopeId(0): ["a", "b", "c"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/tsNoCheckForTypescript.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Aleph", "Bet", "a"] -rebuilt : ScopeId(0): ["Bet", "a"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/jsdoc/tsNoCheckForTypescriptComments1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Aleph", "Bet", "a"] -rebuilt : ScopeId(0): ["Bet", "a"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/jsdoc/tsNoCheckForTypescriptComments2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Aleph", "Bet", "a"] -rebuilt : ScopeId(0): ["Bet", "a"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/jsdoc/typeParameterExtendsUnionConstraintDistributed.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B", "f", "f2"] -rebuilt : ScopeId(0): ["f", "f2"] -Scope children 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", "a"] -rebuilt : ScopeId(1): ["a"] -Bindings mismatch: -after transform: ScopeId(4): ["T", "U", "ab"] -rebuilt : ScopeId(2): ["ab"] tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxChildrenProperty1.tsx semantic error: Missing SymbolId: "React" Missing ReferenceId: "require" -Bindings mismatch: -after transform: ScopeId(0): ["Comp", "Prop", "React", "_jsxFileName", "_reactJsxRuntime", "k", "k1", "k2"] -rebuilt : ScopeId(0): ["Comp", "React", "_jsxFileName", "_reactJsxRuntime", "k", "k1", "k2"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(2), SymbolId(4), SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(5), SymbolId(6), SymbolId(7)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -50744,9 +44741,9 @@ rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxChildrenProperty12.tsx semantic error: Missing SymbolId: "React" Missing ReferenceId: "require" -Bindings mismatch: -after transform: ScopeId(0): ["Button", "ButtonProp", "InnerButton", "InnerButtonProp", "React", "_jsxFileName", "_objectSpread", "_reactJsxRuntime"] -rebuilt : ScopeId(0): ["Button", "InnerButton", "React", "_jsxFileName", "_objectSpread", "_reactJsxRuntime"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(2), SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(6)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6), ScopeId(7)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(5)] @@ -50766,9 +44763,9 @@ rebuilt : [ReferenceId(0), ReferenceId(1), ReferenceId(2)] tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxChildrenProperty16.tsx semantic error: Missing SymbolId: "React" Missing ReferenceId: "require" -Bindings mismatch: -after transform: ScopeId(0): ["Props", "React", "Test", "_Fragment", "_jsx", "_jsxFileName", "_jsxs"] -rebuilt : ScopeId(0): ["React", "Test", "_Fragment", "_jsx", "_jsxFileName", "_jsxs"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(3), SymbolId(8), SymbolId(9), SymbolId(10), SymbolId(11)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -50779,9 +44776,9 @@ rebuilt : ["Foo", "require"] tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxChildrenProperty3.tsx semantic error: Missing SymbolId: "React" Missing ReferenceId: "require" -Bindings mismatch: -after transform: ScopeId(0): ["FetchUser", "IFetchUserProps", "IUser", "React", "UserName0", "UserName1", "_jsxFileName", "_reactJsxRuntime"] -rebuilt : ScopeId(0): ["FetchUser", "React", "UserName0", "UserName1", "_jsxFileName", "_reactJsxRuntime"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(3), SymbolId(4), SymbolId(6), SymbolId(8), SymbolId(9)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(6)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] @@ -50798,9 +44795,9 @@ rebuilt : [ReferenceId(0), ReferenceId(1)] tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxChildrenProperty6.tsx semantic error: Missing SymbolId: "React" Missing ReferenceId: "require" -Bindings mismatch: -after transform: ScopeId(0): ["AnotherButton", "Button", "Comp", "Prop", "React", "_jsxFileName", "_reactJsxRuntime", "k1", "k2", "k3", "k4"] -rebuilt : ScopeId(0): ["AnotherButton", "Button", "Comp", "React", "_jsxFileName", "_reactJsxRuntime", "k1", "k2", "k3", "k4"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(2), SymbolId(3), SymbolId(5), SymbolId(7), SymbolId(8), SymbolId(9), SymbolId(10), SymbolId(11), SymbolId(12)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(6), SymbolId(8), SymbolId(9), SymbolId(10), SymbolId(11)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] @@ -50817,9 +44814,9 @@ rebuilt : [ReferenceId(0), ReferenceId(1)] tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxChildrenProperty8.tsx semantic error: Missing SymbolId: "React" Missing ReferenceId: "require" -Bindings mismatch: -after transform: ScopeId(0): ["AnotherButton", "Button", "Comp", "Prop", "React", "_jsxFileName", "_reactJsxRuntime", "k1", "k2", "k3", "k4"] -rebuilt : ScopeId(0): ["AnotherButton", "Button", "Comp", "React", "_jsxFileName", "_reactJsxRuntime", "k1", "k2", "k3", "k4"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(2), SymbolId(3), SymbolId(5), SymbolId(7), SymbolId(8), SymbolId(9), SymbolId(10), SymbolId(11), SymbolId(12)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(6), SymbolId(8), SymbolId(9), SymbolId(10), SymbolId(11)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] @@ -50850,32 +44847,20 @@ 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): [] Unresolved references mismatch: after transform: ["Component", "Readonly", "require"] rebuilt : ["Component", "require"] tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxSubtleSkipContextSensitiveBug.tsx -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["AsyncLoader", "AsyncLoaderProps", "ErrorResult", "React", "_asyncToGenerator", "_jsxFileName", "_load", "load", "loader"] -rebuilt : ScopeId(0): ["AsyncLoader", "React", "_asyncToGenerator", "_jsxFileName", "_load", "load", "loader"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(7), ScopeId(8)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6)] -Bindings mismatch: -after transform: ScopeId(3): ["TResult"] -rebuilt : ScopeId(1): [] Unresolved references mismatch: after transform: ["Exclude", "Promise", "arguments", "true"] rebuilt : ["arguments"] tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxUnionSFXContextualTypeInferredCorrectly.tsx -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["ComponentWithUnion", "HereIsTheError", "PM", "PS", "React", "_jsxFileName"] -rebuilt : ScopeId(0): ["ComponentWithUnion", "HereIsTheError", "React", "_jsxFileName"] -Scope children mismatch: +semantic error: 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)] Unresolved references mismatch: @@ -51024,9 +45009,9 @@ rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxAttributeResolution16.tsx semantic error: Missing SymbolId: "React" Missing ReferenceId: "require" -Bindings mismatch: -after transform: ScopeId(0): ["Address", "AddressComp", "AmericanAddress", "CanadianAddress", "Properties", "React", "_jsx", "_jsxFileName", "a"] -rebuilt : ScopeId(0): ["AddressComp", "React", "_jsx", "_jsxFileName", "a"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -51065,9 +45050,9 @@ rebuilt : [ReferenceId(0), ReferenceId(1)] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxDefaultAttributesResolution1.tsx semantic error: Missing SymbolId: "React" Missing ReferenceId: "require" -Bindings mismatch: -after transform: ScopeId(0): ["Poisoned", "Prop", "React", "_jsxFileName", "_reactJsxRuntime", "p"] -rebuilt : ScopeId(0): ["Poisoned", "React", "_jsxFileName", "_reactJsxRuntime", "p"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -51081,9 +45066,9 @@ rebuilt : [ReferenceId(0), ReferenceId(1)] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxDefaultAttributesResolution2.tsx semantic error: Missing SymbolId: "React" Missing ReferenceId: "require" -Bindings mismatch: -after transform: ScopeId(0): ["Poisoned", "Prop", "React", "_jsxFileName", "_reactJsxRuntime", "p"] -rebuilt : ScopeId(0): ["Poisoned", "React", "_jsxFileName", "_reactJsxRuntime", "p"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -51141,7 +45126,7 @@ rebuilt : SymbolId(4) "Dotted" tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution13.tsx semantic error: Bindings mismatch: -after transform: ScopeId(0): ["JSX", "Obj1", "_jsxFileName", "_reactJsxRuntime", "obj1"] +after transform: ScopeId(0): ["JSX", "_jsxFileName", "_reactJsxRuntime", "obj1"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime", "obj1"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] @@ -51149,7 +45134,7 @@ 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"] +after transform: ScopeId(0): ["JSX", "_jsxFileName", "_reactJsxRuntime", "obj1"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime", "obj1"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] @@ -51361,15 +45346,6 @@ Missing ReferenceId: "require" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(5), SymbolId(9), SymbolId(14), SymbolId(15), SymbolId(16)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(7), SymbolId(10)] -Bindings mismatch: -after transform: ScopeId(1): ["Component", "T"] -rebuilt : ScopeId(1): ["Component"] -Bindings mismatch: -after transform: ScopeId(3): ["Component", "T"] -rebuilt : ScopeId(3): ["Component"] -Bindings mismatch: -after transform: ScopeId(5): ["Component", "T", "U"] -rebuilt : ScopeId(5): ["Component"] Unresolved reference IDs mismatch for "require": after transform: [ReferenceId(31), ReferenceId(32)] rebuilt : [ReferenceId(0), ReferenceId(1), ReferenceId(2)] @@ -51380,9 +45356,6 @@ Missing ReferenceId: "require" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(5), SymbolId(6), SymbolId(7)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4)] -Bindings mismatch: -after transform: ScopeId(1): ["Component", "T"] -rebuilt : ScopeId(1): ["Component"] Unresolved reference IDs mismatch for "require": after transform: [ReferenceId(11), ReferenceId(12)] rebuilt : [ReferenceId(0), ReferenceId(1), ReferenceId(2)] @@ -51393,12 +45366,6 @@ Missing ReferenceId: "require" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(3), SymbolId(5), SymbolId(6), SymbolId(7)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5)] -Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(3): ["U"] -rebuilt : ScopeId(3): [] Reference symbol mismatch for "React": after transform: SymbolId(0) "React" rebuilt : SymbolId(3) "React" @@ -51415,12 +45382,6 @@ Missing ReferenceId: "require" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(3), SymbolId(5), SymbolId(6), SymbolId(7)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5)] -Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(3): ["U"] -rebuilt : ScopeId(3): [] Reference symbol mismatch for "React": after transform: SymbolId(0) "React" rebuilt : SymbolId(3) "React" @@ -51437,12 +45398,6 @@ Missing ReferenceId: "require" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(3), SymbolId(5), SymbolId(6), SymbolId(7)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5)] -Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(3): ["U"] -rebuilt : ScopeId(3): [] Reference symbol mismatch for "React": after transform: SymbolId(0) "React" rebuilt : SymbolId(3) "React" @@ -51459,12 +45414,6 @@ Missing ReferenceId: "require" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(3), SymbolId(5), SymbolId(6), SymbolId(7)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5)] -Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(3): ["U"] -rebuilt : ScopeId(3): [] Reference symbol mismatch for "React": after transform: SymbolId(0) "React" rebuilt : SymbolId(3) "React" @@ -51484,12 +45433,6 @@ rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3) 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): ["U", "props"] -rebuilt : ScopeId(1): ["props"] -Bindings mismatch: -after transform: ScopeId(3): ["U", "props"] -rebuilt : ScopeId(2): ["props"] Unresolved references mismatch: after transform: ["Component", "JSX", "require"] rebuilt : ["Component", "require"] @@ -51506,12 +45449,6 @@ rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3) 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): ["U", "props"] -rebuilt : ScopeId(1): ["props"] -Bindings mismatch: -after transform: ScopeId(3): ["U", "props"] -rebuilt : ScopeId(2): ["props"] Unresolved references mismatch: after transform: ["Component", "JSX", "require"] rebuilt : ["Component", "require"] @@ -51525,9 +45462,6 @@ Missing ReferenceId: "require" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(4), SymbolId(5), SymbolId(6)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4)] -Bindings mismatch: -after transform: ScopeId(1): ["Ctor", "P"] -rebuilt : ScopeId(1): ["Ctor"] Reference symbol mismatch for "React": after transform: SymbolId(0) "React" rebuilt : SymbolId(3) "React" @@ -51595,9 +45529,9 @@ rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactComponentWithDefaultTypeParameter1.tsx semantic error: Missing SymbolId: "React" Missing ReferenceId: "require" -Bindings mismatch: -after transform: ScopeId(0): ["Prop", "React", "_jsxFileName", "_reactJsxRuntime", "x"] -rebuilt : ScopeId(0): ["React", "_jsxFileName", "_reactJsxRuntime", "x"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(3), SymbolId(4), SymbolId(5)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] @@ -51608,9 +45542,9 @@ rebuilt : [ReferenceId(0), ReferenceId(1)] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactComponentWithDefaultTypeParameter2.tsx semantic error: Missing SymbolId: "React" Missing ReferenceId: "require" -Bindings mismatch: -after transform: ScopeId(0): ["Prop", "React", "_jsxFileName", "_reactJsxRuntime", "x", "x1"] -rebuilt : ScopeId(0): ["React", "_jsxFileName", "_reactJsxRuntime", "x", "x1"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(3), SymbolId(4), SymbolId(5), SymbolId(6)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] @@ -51938,9 +45872,9 @@ rebuilt : [ReferenceId(0), ReferenceId(1), ReferenceId(2)] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxSpreadAttributesResolution11.tsx semantic error: Missing SymbolId: "React" Missing ReferenceId: "require" -Bindings mismatch: -after transform: ScopeId(0): ["OverWriteAttr", "Prop", "React", "_jsxFileName", "_objectSpread", "_reactJsxRuntime", "anyobj", "obj", "obj1", "obj3", "x", "x1", "x2", "x3", "x4", "x5"] -rebuilt : ScopeId(0): ["OverWriteAttr", "React", "_jsxFileName", "_objectSpread", "_reactJsxRuntime", "anyobj", "obj", "obj1", "obj3", "x", "x1", "x2", "x3", "x4", "x5"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8), SymbolId(9), SymbolId(10), SymbolId(11), SymbolId(12), SymbolId(13), SymbolId(14), SymbolId(15)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8), SymbolId(9), SymbolId(10), SymbolId(11), SymbolId(12), SymbolId(13), SymbolId(14)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -51957,9 +45891,9 @@ rebuilt : [ReferenceId(0), ReferenceId(1), ReferenceId(2)] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxSpreadAttributesResolution13.tsx semantic error: Missing SymbolId: "React" Missing ReferenceId: "require" -Bindings mismatch: -after transform: ScopeId(0): ["AnotherComponentProps", "ChildComponent", "Component", "ComponentProps", "React", "_jsx", "_jsxFileName", "_objectSpread"] -rebuilt : ScopeId(0): ["ChildComponent", "Component", "React", "_jsx", "_jsxFileName", "_objectSpread"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(2), SymbolId(6), SymbolId(8), SymbolId(9), SymbolId(10)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(7)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(6)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] @@ -51970,9 +45904,9 @@ rebuilt : ["require"] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxSpreadAttributesResolution15.tsx semantic error: Missing SymbolId: "React" Missing ReferenceId: "require" -Bindings mismatch: -after transform: ScopeId(0): ["AnotherComponent", "AnotherComponentProps", "Component", "ComponentProps", "React", "_jsx", "_jsxFileName", "_objectSpread"] -rebuilt : ScopeId(0): ["AnotherComponent", "Component", "React", "_jsx", "_jsxFileName", "_objectSpread"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(2), SymbolId(5), SymbolId(7), SymbolId(8), SymbolId(9)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(6)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -51983,9 +45917,9 @@ rebuilt : ["require"] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxSpreadAttributesResolution3.tsx semantic error: Missing SymbolId: "React" Missing ReferenceId: "require" -Bindings mismatch: -after transform: ScopeId(0): ["Poisoned", "PoisonedProp", "React", "_jsxFileName", "_objectSpread", "_reactJsxRuntime", "obj", "p", "y"] -rebuilt : ScopeId(0): ["Poisoned", "React", "_jsxFileName", "_objectSpread", "_reactJsxRuntime", "obj", "p", "y"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5), SymbolId(6), SymbolId(7)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -51999,9 +45933,9 @@ rebuilt : [ReferenceId(0), ReferenceId(1), ReferenceId(2)] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxSpreadAttributesResolution7.tsx semantic error: Missing SymbolId: "React" Missing ReferenceId: "require" -Bindings mismatch: -after transform: ScopeId(0): ["React", "TextComponent", "TextProps", "_jsxFileName", "_objectSpread", "_reactJsxRuntime", "textPropsFalse", "textPropsTrue", "y1", "y2"] -rebuilt : ScopeId(0): ["React", "TextComponent", "_jsxFileName", "_objectSpread", "_reactJsxRuntime", "textPropsFalse", "textPropsTrue", "y1", "y2"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8), SymbolId(9)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] @@ -52018,9 +45952,9 @@ rebuilt : [ReferenceId(0), ReferenceId(1), ReferenceId(2)] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxSpreadAttributesResolution8.tsx semantic error: Missing SymbolId: "React" Missing ReferenceId: "require" -Bindings mismatch: -after transform: ScopeId(0): ["OverWriteAttr", "Prop", "React", "_jsxFileName", "_objectSpread", "_reactJsxRuntime", "obj", "obj1", "obj3", "x", "x1"] -rebuilt : ScopeId(0): ["OverWriteAttr", "React", "_jsxFileName", "_objectSpread", "_reactJsxRuntime", "obj", "obj1", "obj3", "x", "x1"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8), SymbolId(9), SymbolId(10)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8), SymbolId(9)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -52034,9 +45968,9 @@ rebuilt : [ReferenceId(0), ReferenceId(1), ReferenceId(2)] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxSpreadAttributesResolution9.tsx semantic error: Missing SymbolId: "React" Missing ReferenceId: "require" -Bindings mismatch: -after transform: ScopeId(0): ["Opt", "OptionProp", "React", "_jsxFileName", "_objectSpread", "_reactJsxRuntime", "obj", "obj1", "p", "y", "y1", "y2", "y3"] -rebuilt : ScopeId(0): ["Opt", "React", "_jsxFileName", "_objectSpread", "_reactJsxRuntime", "obj", "obj1", "p", "y", "y1", "y2", "y3"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8), SymbolId(9), SymbolId(10), SymbolId(11), SymbolId(12)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8), SymbolId(9), SymbolId(10), SymbolId(11)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -52071,10 +46005,7 @@ after transform: [ReferenceId(51), ReferenceId(52)] rebuilt : [ReferenceId(0), ReferenceId(1), ReferenceId(2)] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxStatelessFunctionComponentOverload3.tsx -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Context", "_jsxFileName", "_objectSpread", "_reactJsxRuntime", "obj2", "three1", "three2", "three3", "two1", "two2", "two3", "two4", "two5"] -rebuilt : ScopeId(0): ["_jsxFileName", "_objectSpread", "_reactJsxRuntime", "obj2", "three1", "three2", "three3", "two1", "two2", "two3", "two4", "two5"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -52084,9 +46015,9 @@ rebuilt : ["ThreeThing", "ZeroThingOrTwoThing", "require"] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxStatelessFunctionComponentOverload6.tsx semantic error: Missing SymbolId: "React" Missing ReferenceId: "require" -Bindings mismatch: -after transform: ScopeId(0): ["ButtonProps", "ClickableProps", "HyphenProps", "LinkProps", "MainButton", "React", "_jsx", "_jsxFileName", "_objectSpread", "b0", "b1", "b10", "b11", "b12", "b2", "b3", "b4", "b5", "b6", "b7", "b8", "b9", "obj", "obj1", "obj2"] -rebuilt : ScopeId(0): ["MainButton", "React", "_jsx", "_jsxFileName", "_objectSpread", "b0", "b1", "b10", "b11", "b12", "b2", "b3", "b4", "b5", "b6", "b7", "b8", "b9", "obj", "obj1", "obj2"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(11), SymbolId(14), SymbolId(15), SymbolId(17), SymbolId(18), SymbolId(19), SymbolId(20), SymbolId(21), SymbolId(22), SymbolId(23), SymbolId(24), SymbolId(25), SymbolId(26), SymbolId(28), SymbolId(29), SymbolId(30), SymbolId(31)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(10), SymbolId(11), SymbolId(13), SymbolId(14), SymbolId(15), SymbolId(16), SymbolId(17), SymbolId(18), SymbolId(19), SymbolId(20), SymbolId(21), SymbolId(22), SymbolId(24)] 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(12), ScopeId(13), ScopeId(14)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] @@ -52097,15 +46028,12 @@ rebuilt : ["console", "require"] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxStatelessFunctionComponentWithDefaultTypeParameter1.tsx semantic error: Missing SymbolId: "React" Missing ReferenceId: "require" -Bindings mismatch: -after transform: ScopeId(0): ["MyComponent", "MyComponentProp", "React", "_jsxFileName", "_reactJsxRuntime", "i", "i1"] -rebuilt : ScopeId(0): ["MyComponent", "React", "_jsxFileName", "_reactJsxRuntime", "i", "i1"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(2), SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(5), SymbolId(6)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] -Bindings mismatch: -after transform: ScopeId(2): ["T", "attr"] -rebuilt : ScopeId(1): ["attr"] Unresolved reference IDs mismatch for "require": after transform: [ReferenceId(10)] rebuilt : [ReferenceId(0), ReferenceId(1)] @@ -52123,15 +46051,12 @@ rebuilt : [ReferenceId(0), ReferenceId(1)] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxStatelessFunctionComponentsWithTypeArguments1.tsx semantic error: Missing SymbolId: "React" Missing ReferenceId: "require" -Bindings mismatch: -after transform: ScopeId(0): ["Baz", "InferParamProp", "React", "_jsxFileName", "_react", "_reactJsxRuntime", "createLink", "createLink1", "i"] -rebuilt : ScopeId(0): ["Baz", "React", "_jsxFileName", "_react", "_reactJsxRuntime", "createLink", "createLink1", "i"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(4), SymbolId(13), SymbolId(16), SymbolId(23), SymbolId(25), SymbolId(26), SymbolId(27)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(9), SymbolId(12), SymbolId(15)] 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)] -Bindings mismatch: -after transform: ScopeId(2): ["T", "U", "a0", "a1", "key1", "value"] -rebuilt : ScopeId(1): ["a0", "a1", "key1", "value"] Unresolved references mismatch: after transform: ["Array", "ComponentWithTwoAttributes", "InferParamComponent", "JSX", "Link", "require"] rebuilt : ["ComponentWithTwoAttributes", "InferParamComponent", "Link", "require"] @@ -52148,9 +46073,6 @@ rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3) 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(4): ["T", "U", "a0", "a1", "a2", "a3", "a4", "a5", "a6", "arg1", "arg2"] -rebuilt : ScopeId(1): ["a0", "a1", "a2", "a3", "a4", "a5", "a6", "arg1", "arg2"] Unresolved references mismatch: after transform: ["JSX", "Link", "OverloadComponent", "require"] rebuilt : ["Link", "OverloadComponent", "require"] @@ -52167,12 +46089,6 @@ rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3) 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(2): ["T", "a1", "a2", "arg"] -rebuilt : ScopeId(1): ["a1", "a2", "arg"] -Bindings mismatch: -after transform: ScopeId(5): ["T", "a1", "a2", "a3", "a4", "arg"] -rebuilt : ScopeId(2): ["a1", "a2", "a3", "a4", "arg"] Unresolved references mismatch: after transform: ["Component", "ComponentSpecific", "ComponentSpecific1", "JSX", "require"] rebuilt : ["Component", "ComponentSpecific", "ComponentSpecific1", "require"] @@ -52183,15 +46099,12 @@ rebuilt : [ReferenceId(0), ReferenceId(1), ReferenceId(2)] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxTypeArgumentsJsxPreserveOutput.tsx semantic error: Missing SymbolId: "React" Missing ReferenceId: "require" -Bindings mismatch: -after transform: ScopeId(0): ["Foo", "InterfaceProps", "React", "TypeProps", "_jsxFileName", "_reactJsxRuntime"] -rebuilt : ScopeId(0): ["Foo", "React", "_jsxFileName", "_reactJsxRuntime"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(3), SymbolId(5), SymbolId(6)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3)] 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"] -rebuilt : ScopeId(1): [] Unresolved reference IDs mismatch for "require": after transform: [ReferenceId(76)] rebuilt : [ReferenceId(0), ReferenceId(1)] @@ -52227,9 +46140,9 @@ rebuilt : ["require"] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxUnionTypeComponent1.tsx semantic error: Missing SymbolId: "React" Missing ReferenceId: "require" -Bindings mismatch: -after transform: ScopeId(0): ["ComponentProps", "MyButtonComponent", "MyComponent", "React", "_jsxFileName"] -rebuilt : ScopeId(0): ["MyButtonComponent", "MyComponent", "React", "_jsxFileName"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(0), SymbolId(2), SymbolId(4), SymbolId(5)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(4)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] @@ -52304,10 +46217,7 @@ after transform: [] rebuilt : ["require"] tasks/coverage/typescript/tests/cases/conformance/moduleResolution/resolutionModeImportType1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Default", "Import", "ImportRelative", "Require", "RequireRelative"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -52316,7 +46226,7 @@ rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/moduleResolution/resolutionModeTypeOnlyImport1.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Default", "Import", "ImportRelative", "Require", "RequireRelative", "_Default", "_Import", "_ImportRelative", "_Require", "_RequireRelative"] +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)] @@ -52374,10 +46284,7 @@ after transform: [] rebuilt : ["require"] tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesImportAttributesTypeModeDeclarationEmit.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["LocalInterface", "a", "b"] -rebuilt : ScopeId(0): ["a", "b"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -52385,10 +46292,7 @@ after transform: ["ImportInterface", "RequireInterface"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesImportTypeModeDeclarationEmit1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["LocalInterface", "a", "b"] -rebuilt : ScopeId(0): ["a", "b"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -52396,10 +46300,7 @@ after transform: ["ImportInterface", "RequireInterface"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesTripleSlashReferenceModeDeclarationEmit1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["LocalInterface"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -52407,10 +46308,7 @@ after transform: ["RequireInterface"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesTripleSlashReferenceModeDeclarationEmit2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["LocalInterface"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -52418,10 +46316,7 @@ after transform: ["ImportInterface"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesTripleSlashReferenceModeDeclarationEmit3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["LocalInterface"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -52429,10 +46324,7 @@ after transform: ["RequireInterface"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesTripleSlashReferenceModeDeclarationEmit4.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["LocalInterface"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -52440,10 +46332,7 @@ after transform: ["ImportInterface"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/node/nodeModulesTripleSlashReferenceModeDeclarationEmit5.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["LocalInterface"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -52645,11 +46534,6 @@ Symbol flags mismatch for "Bar": after transform: SymbolId(0): SymbolFlags(RegularEnum) rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) -tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/AccessibilityAfterStatic/parserAccessibilityAfterStatic14.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] - tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/IncompleteMemberVariables/parserErrorRecovery_IncompleteMemberVariable1.ts semantic error: Missing SymbolId: "Shapes" Missing SymbolId: "_Shapes" @@ -52657,9 +46541,9 @@ Missing ReferenceId: "_Shapes" Missing ReferenceId: "Point" Missing ReferenceId: "Shapes" Missing ReferenceId: "Shapes" -Bindings mismatch: -after transform: ScopeId(0): ["IPoint", "Shapes", "dist", "p"] -rebuilt : ScopeId(0): ["Shapes", "dist", "p"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(1), SymbolId(5), SymbolId(6)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(5), SymbolId(6)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -52677,10 +46561,7 @@ after transform: SymbolId(1) "Shapes" rebuilt : SymbolId(0) "Shapes" tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserModifierOnPropertySignature2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -52697,138 +46578,78 @@ 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: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] - -tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserGenericClass2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["K", "V"] -rebuilt : ScopeId(1): [] - -tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserGenericConstraint1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] - tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/InterfaceDeclarations/parserInterfaceDeclaration5.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -52904,120 +46725,73 @@ 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: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] - tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -53041,18 +46815,12 @@ after transform: [] rebuilt : ["a"] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Symbols/parserES5SymbolIndexer1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -53074,18 +46842,12 @@ after transform: [] rebuilt : ["A", "B", "C"] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserOptionalTypeMembers1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["PropertyDescriptor2"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -53093,18 +46855,12 @@ after transform: ["HTMLCanvasElement", "HTMLDivElement", "HTMLElement", "HTMLSpa rebuilt : [] 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -53112,10 +46868,7 @@ after transform: ["Symbol"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -53152,10 +46905,7 @@ after transform: ["Symbol"] rebuilt : [] 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: +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(20), ScopeId(22)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -53239,10 +46989,7 @@ tasks/coverage/typescript/tests/cases/conformance/salsa/privateIdentifierExpando semantic error: Private identifier '#bar' is not allowed outside class bodies tasks/coverage/typescript/tests/cases/conformance/salsa/propertyAssignmentUseParentType1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["N", "ignoreJsdoc", "inlined", "interfaced"] -rebuilt : ScopeId(0): ["ignoreJsdoc", "inlined", "interfaced"] -Scope children 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)] @@ -53252,10 +46999,7 @@ 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -53279,15 +47023,12 @@ Missing ReferenceId: "_M" Missing ReferenceId: "F2" Missing ReferenceId: "M" Missing ReferenceId: "M" -Bindings mismatch: -after transform: ScopeId(0): ["C", "D", "F", "I", "M", "aClass", "aClassInModule", "aDate", "aFunction", "aFunctionInModule", "aGenericClass", "aLambda", "aModule", "aNumber", "aSecondAny", "aString", "aVoid", "anAny", "anInterface", "anObject", "anObjectLiteral", "anOtherFunction", "anOtherObjectLiteral"] -rebuilt : ScopeId(0): ["C", "D", "F", "M", "aClass", "aClassInModule", "aDate", "aFunction", "aFunctionInModule", "aGenericClass", "aLambda", "aModule", "aNumber", "aSecondAny", "aString", "aVoid", "anAny", "anInterface", "anObject", "anObjectLiteral", "anOtherFunction", "anOtherObjectLiteral"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(1), SymbolId(2), SymbolId(4), SymbolId(6), SymbolId(10), SymbolId(11), SymbolId(12), SymbolId(13), SymbolId(14), SymbolId(15), SymbolId(16), SymbolId(17), SymbolId(18), SymbolId(19), SymbolId(20), SymbolId(21), SymbolId(22), SymbolId(23), SymbolId(24), SymbolId(26), SymbolId(27), SymbolId(28)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(4), SymbolId(9), SymbolId(10), SymbolId(11), SymbolId(12), SymbolId(13), SymbolId(14), SymbolId(15), SymbolId(16), SymbolId(17), SymbolId(18), SymbolId(19), SymbolId(20), SymbolId(21), SymbolId(22), SymbolId(23), SymbolId(25), SymbolId(26), SymbolId(27)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(8), ScopeId(9)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(7), ScopeId(8)] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(2): [] Binding symbols mismatch: after transform: ScopeId(5): [SymbolId(7), SymbolId(8), SymbolId(30)] rebuilt : ScopeId(4): [SymbolId(5), SymbolId(6), SymbolId(7)] @@ -53334,15 +47075,12 @@ Missing ReferenceId: "_M" Missing ReferenceId: "F2" Missing ReferenceId: "M" Missing ReferenceId: "M" -Bindings mismatch: -after transform: ScopeId(0): ["C", "D", "F", "I", "M", "aClass", "aClassInModule", "aDate", "aFunction", "aFunctionInModule", "aGenericClass", "aLambda", "aModule", "aNumber", "aString", "anAny", "anObject", "anObjectLiteral", "anOtherAny", "anUndefined", "x"] -rebuilt : ScopeId(0): ["C", "D", "F", "M", "aClass", "aClassInModule", "aDate", "aFunction", "aFunctionInModule", "aGenericClass", "aLambda", "aModule", "aNumber", "aString", "anAny", "anObject", "anObjectLiteral", "anOtherAny", "anUndefined", "x"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(1), SymbolId(2), SymbolId(4), SymbolId(6), SymbolId(10), SymbolId(11), SymbolId(12), SymbolId(13), SymbolId(14), SymbolId(15), SymbolId(16), SymbolId(17), SymbolId(18), SymbolId(19), SymbolId(20), SymbolId(21), SymbolId(23), SymbolId(24), SymbolId(25), SymbolId(26)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(4), SymbolId(9), SymbolId(10), SymbolId(11), SymbolId(12), SymbolId(13), SymbolId(14), SymbolId(15), SymbolId(16), SymbolId(17), SymbolId(18), SymbolId(19), SymbolId(20), SymbolId(22), SymbolId(23), SymbolId(24), SymbolId(25)] 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)] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(2): [] Binding symbols mismatch: after transform: ScopeId(5): [SymbolId(7), SymbolId(8), SymbolId(27)] rebuilt : ScopeId(4): [SymbolId(5), SymbolId(6), SymbolId(7)] @@ -53392,10 +47130,7 @@ after transform: ScopeId(37): [SymbolId(27), SymbolId(44)] rebuilt : ScopeId(43): [SymbolId(32), SymbolId(33)] tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/usingDeclarations/usingDeclarationsDeclarationEmit.2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["R1", "R2", "_asyncToGenerator", "r1", "r2"] -rebuilt : ScopeId(0): ["_asyncToGenerator", "r1", "r2"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Symbol reference IDs mismatch for "r1": @@ -53695,10 +47430,7 @@ after transform: [] rebuilt : ["dec"] tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/validMultipleVariableDeclarations.ts -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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(6)] Symbol reference IDs mismatch for "p": @@ -53748,15 +47480,12 @@ Missing ReferenceId: "_M" Missing ReferenceId: "F2" Missing ReferenceId: "M" Missing ReferenceId: "M" -Bindings mismatch: -after transform: ScopeId(0): ["C", "D", "F", "I", "M", "aClass", "aClassInModule", "aDate", "aFunction", "aFunctionInModule", "aGenericClass", "aLambda", "aModule", "aNumber", "aSecondAny", "aString", "aVoid", "anAny", "anInterface", "anObject", "anObjectLiteral", "anOtherFunction", "anOtherObjectLiteral"] -rebuilt : ScopeId(0): ["C", "D", "F", "M", "aClass", "aClassInModule", "aDate", "aFunction", "aFunctionInModule", "aGenericClass", "aLambda", "aModule", "aNumber", "aSecondAny", "aString", "aVoid", "anAny", "anInterface", "anObject", "anObjectLiteral", "anOtherFunction", "anOtherObjectLiteral"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(1), SymbolId(2), SymbolId(4), SymbolId(6), SymbolId(10), SymbolId(11), SymbolId(12), SymbolId(13), SymbolId(14), SymbolId(15), SymbolId(16), SymbolId(17), SymbolId(18), SymbolId(19), SymbolId(20), SymbolId(21), SymbolId(22), SymbolId(23), SymbolId(24), SymbolId(26), SymbolId(27), SymbolId(28)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(4), SymbolId(9), SymbolId(10), SymbolId(11), SymbolId(12), SymbolId(13), SymbolId(14), SymbolId(15), SymbolId(16), SymbolId(17), SymbolId(18), SymbolId(19), SymbolId(20), SymbolId(21), SymbolId(22), SymbolId(23), SymbolId(25), SymbolId(26), SymbolId(27)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), 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(39), ScopeId(41), ScopeId(43)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), 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(38), ScopeId(40), ScopeId(42)] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(2): [] Binding symbols mismatch: after transform: ScopeId(5): [SymbolId(7), SymbolId(8), SymbolId(30)] rebuilt : ScopeId(4): [SymbolId(5), SymbolId(6), SymbolId(7)] @@ -53795,10 +47524,7 @@ after transform: [ReferenceId(10), ReferenceId(11)] rebuilt : [ReferenceId(8)] tasks/coverage/typescript/tests/cases/conformance/statements/forStatements/forStatementsMultipleValidDecl.ts -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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(10), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(25), ScopeId(28), ScopeId(31), ScopeId(33), ScopeId(35), ScopeId(37), ScopeId(39), ScopeId(41), ScopeId(43), ScopeId(45), ScopeId(47), ScopeId(49)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(10), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(27), ScopeId(30), ScopeId(32), ScopeId(34), ScopeId(36), ScopeId(38), ScopeId(40), ScopeId(42), ScopeId(44), ScopeId(46), ScopeId(48)] Symbol reference IDs mismatch for "p": @@ -53853,10 +47579,7 @@ after transform: [] rebuilt : ["a"] tasks/coverage/typescript/tests/cases/conformance/statements/returnStatements/returnStatements.ts -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: +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(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)] Symbol reference IDs mismatch for "C": @@ -53866,14 +47589,6 @@ Unresolved reference IDs mismatch for "Date": after transform: [ReferenceId(1), ReferenceId(2)] rebuilt : [ReferenceId(1)] -tasks/coverage/typescript/tests/cases/conformance/statements/throwStatements/throwInEnclosingStatements.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["T", "x"] -rebuilt : ScopeId(2): ["x"] -Bindings mismatch: -after transform: ScopeId(11): ["T"] -rebuilt : ScopeId(11): [] - tasks/coverage/typescript/tests/cases/conformance/statements/throwStatements/throwStatements.ts semantic error: Missing SymbolId: "M" Missing SymbolId: "_M" @@ -53883,24 +47598,18 @@ Missing ReferenceId: "_M" Missing ReferenceId: "F2" Missing ReferenceId: "M" Missing ReferenceId: "M" -Bindings mismatch: -after transform: ScopeId(0): ["C", "D", "F", "I", "M", "aClass", "aClassInModule", "aDate", "aFunction", "aFunctionInModule", "aGenericClass", "aLambda", "aModule", "aNumber", "aString", "anAny", "anObject", "anObjectLiteral", "anOtherAny", "anUndefined", "x"] -rebuilt : ScopeId(0): ["C", "D", "F", "M", "aClass", "aClassInModule", "aDate", "aFunction", "aFunctionInModule", "aGenericClass", "aLambda", "aModule", "aNumber", "aString", "anAny", "anObject", "anObjectLiteral", "anOtherAny", "anUndefined", "x"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(1), SymbolId(2), SymbolId(4), SymbolId(6), SymbolId(10), SymbolId(11), SymbolId(12), SymbolId(13), SymbolId(14), SymbolId(15), SymbolId(16), SymbolId(17), SymbolId(18), SymbolId(19), SymbolId(20), SymbolId(21), SymbolId(23), SymbolId(24), SymbolId(25), SymbolId(26)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(4), SymbolId(9), SymbolId(10), SymbolId(11), SymbolId(12), SymbolId(13), SymbolId(14), SymbolId(15), SymbolId(16), SymbolId(17), SymbolId(18), SymbolId(19), SymbolId(20), SymbolId(22), SymbolId(23), SymbolId(24), SymbolId(25)] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(8), ScopeId(9), ScopeId(10)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(7), ScopeId(8), ScopeId(9)] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(2): [] Binding symbols mismatch: after transform: ScopeId(5): [SymbolId(7), SymbolId(8), SymbolId(29)] rebuilt : ScopeId(4): [SymbolId(5), SymbolId(6), SymbolId(7)] Scope flags mismatch: after transform: ScopeId(5): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(4): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(10): ["T", "x"] -rebuilt : ScopeId(9): ["x"] Symbol reference IDs mismatch for "D": after transform: SymbolId(2): [ReferenceId(2), ReferenceId(4), ReferenceId(5), ReferenceId(21), ReferenceId(42)] rebuilt : SymbolId(1): [ReferenceId(20), ReferenceId(40)] @@ -53924,10 +47633,7 @@ after transform: SymbolId(6) "M" rebuilt : SymbolId(4) "M" tasks/coverage/typescript/tests/cases/conformance/types/any/assignEveryTypeToAny.ts -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: +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)] Bindings mismatch: @@ -53936,12 +47642,6 @@ rebuilt : ScopeId(1): ["E"] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(0x0) rebuilt : ScopeId(1): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(5): ["T", "x"] -rebuilt : ScopeId(4): ["x"] -Bindings mismatch: -after transform: ScopeId(6): ["T", "a"] -rebuilt : ScopeId(5): ["a"] Symbol flags mismatch for "E": after transform: SymbolId(7): SymbolFlags(RegularEnum) rebuilt : SymbolId(7): SymbolFlags(FunctionScopedVariable) @@ -53961,25 +47661,16 @@ after transform: ["AsyncIterable", "AsyncIterableIterator", "AsyncIterator", "Pr rebuilt : ["Promise", "arguments", "require"] tasks/coverage/typescript/tests/cases/conformance/types/conditional/inferTypes2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["AlsoWeird", "BadNested", "Weird", "a", "b", "bar", "bar2"] -rebuilt : ScopeId(0): ["a", "b", "bar", "bar2"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(9), ScopeId(10), ScopeId(12)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] -Bindings mismatch: -after transform: ScopeId(3): ["T", "obj"] -rebuilt : ScopeId(1): ["obj"] -Bindings mismatch: -after transform: ScopeId(9): ["T", "obj"] -rebuilt : ScopeId(2): ["obj"] Unresolved references mismatch: after transform: ["P", "foo", "foo2"] rebuilt : ["foo", "foo2"] tasks/coverage/typescript/tests/cases/conformance/types/conditional/inferTypesWithExtends1.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["ExpectNumber", "IfEquals", "T", "X1", "X10", "X10_T1_T1", "X10_Y1", "X11", "X12", "X13", "X14", "X15", "X16", "X17", "X18", "X19", "X19_T1", "X19_T2", "X19_T3", "X1_T1", "X1_T2", "X1_T3", "X2", "X20", "X20_T1", "X21", "X21_T1", "X21_T2", "X21_T3", "X21_T4", "X21_T5", "X2_T1", "X2_T2", "X2_T3", "X3", "X3_T1", "X3_T2", "X3_T3", "X4", "X4_T1", "X4_T2", "X4_T3", "X5", "X5_T1", "X5_T2", "X5_T3", "X6", "X6_T1", "X6_T2", "X6_T3", "X7", "X7_T1", "X7_T2", "X7_T3", "X7_T4", "X8", "X8_T1", "X8_T2", "X8_T3", "X8_T4", "X9", "X9_T1", "X9_T2", "X9_T3", "X9_T4", "f1", "f2", "x1", "x2"] +after transform: ScopeId(0): ["f1", "f2", "x1", "x2"] rebuilt : ScopeId(0): ["f1", "f2"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), 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(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(61), ScopeId(63), ScopeId(64), ScopeId(67), ScopeId(69), ScopeId(71), ScopeId(73), ScopeId(77), ScopeId(80), ScopeId(84), ScopeId(87), ScopeId(89), ScopeId(90), ScopeId(91), ScopeId(92), ScopeId(95), ScopeId(96), ScopeId(98), ScopeId(99), ScopeId(100), ScopeId(101), ScopeId(102), ScopeId(103), ScopeId(107), ScopeId(108), ScopeId(109), ScopeId(110), ScopeId(111)] @@ -53995,23 +47686,14 @@ after transform: ["Promise"] rebuilt : ["x1", "x2"] tasks/coverage/typescript/tests/cases/conformance/types/conditional/inferTypesWithExtendsDependingOnTypeVariables.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Bar", "Res1"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] rebuilt : ScopeId(0): [] 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: +semantic error: 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): [] @@ -54023,10 +47705,7 @@ after transform: ["const", "true"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/asyncFunctions/contextuallyTypeAsyncFunctionAwaitOperand.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Obj", "_asyncToGenerator", "_fn", "fn1"] -rebuilt : ScopeId(0): ["_asyncToGenerator", "_fn", "fn1"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Unresolved reference IDs mismatch for "Promise": @@ -54035,7 +47714,7 @@ rebuilt : [ReferenceId(5)] 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", "_asyncToGenerator", "_copyExtensions", "_fn", "_fn2", "_fn3", "_fn4", "copyExtensions", "fn1", "fn2", "fn3", "fn4", "test"] +after transform: ScopeId(0): ["_asyncToGenerator", "_copyExtensions", "_fn", "_fn2", "_fn3", "_fn4", "copyExtensions", "fn1", "fn2", "fn3", "fn4", "test"] rebuilt : ScopeId(0): ["_asyncToGenerator", "_copyExtensions", "_fn", "_fn2", "_fn3", "_fn4", "copyExtensions", "fn1", "fn2", "fn3", "fn4"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(36), ScopeId(37)] @@ -54051,18 +47730,12 @@ after transform: [ReferenceId(0), ReferenceId(2), ReferenceId(4), ReferenceId(6) rebuilt : [ReferenceId(10), ReferenceId(24), ReferenceId(30), ReferenceId(40)] tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/methodDeclarations/contextuallyTypedBindingInitializer.ts -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: +semantic error: 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: +semantic error: 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)] @@ -54138,18 +47811,12 @@ after transform: ["Bar", "Baz"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/import/importTypeAmdBundleRewrite.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/import/importTypeGenericTypes.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Point"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Reference symbol mismatch for "Point": @@ -54163,10 +47830,7 @@ after transform: ["module"] rebuilt : ["Point", "module"] tasks/coverage/typescript/tests/cases/conformance/types/import/importTypeLocal.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Point"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Reference symbol mismatch for "Point": @@ -54181,7 +47845,7 @@ rebuilt : ["Point", "module"] tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionMemberOfUnionNarrowsCorrectly.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Ex", "U", "x"] +after transform: ScopeId(0): ["x"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -54195,7 +47859,7 @@ rebuilt : ["x"] tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionOfUnionNarrowing.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["AorB", "X", "q"] +after transform: ScopeId(0): ["q"] rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] @@ -54228,18 +47892,12 @@ after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2), R rebuilt : SymbolId(0): [ReferenceId(13)] tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionThisTypes.ts -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: +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), 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [] Symbol reference IDs mismatch for "ab": @@ -54274,7 +47932,7 @@ rebuilt : ["a", "b", "f", "f2", "obj"] tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionTypeInference3.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "Nominal", "a", "b", "c1", "c2"] +after transform: ScopeId(0): ["a", "b", "c1", "c2"] rebuilt : ScopeId(0): ["c1", "c2"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] @@ -54290,71 +47948,41 @@ after transform: ["Array", "ReadonlyArray", "Set", "Symbol", "from"] rebuilt : ["Array", "a", "b", "from"] tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionTypeMembers.ts -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: +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)] 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: +semantic error: 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: +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(15)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] -Bindings mismatch: -after transform: ScopeId(7): ["F1", "F2", "d1", "d2"] -rebuilt : ScopeId(1): ["d1", "d2"] -Bindings mismatch: -after transform: ScopeId(8): ["T", "_value"] -rebuilt : ScopeId(2): ["_value"] Unresolved references mismatch: after transform: ["Object", "Promise", "mock", "true"] rebuilt : ["Object", "mock"] tasks/coverage/typescript/tests/cases/conformance/types/intersection/operatorsAndIntersectionTypes.ts -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: +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/types/keyof/keyofAndForIn.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["K", "T", "b", "k", "k1", "obj"] -rebuilt : ScopeId(1): ["b", "k", "k1", "obj"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(5)] rebuilt : ScopeId(1): [ScopeId(2), ScopeId(4)] -Bindings mismatch: -after transform: ScopeId(7): ["T", "b", "k", "k1", "obj"] -rebuilt : ScopeId(6): ["b", "k", "k1", "obj"] Scope children mismatch: after transform: ScopeId(7): [ScopeId(8), ScopeId(9), ScopeId(11)] rebuilt : ScopeId(6): [ScopeId(7), ScopeId(9)] -Bindings mismatch: -after transform: ScopeId(13): ["K", "T", "b", "k", "k1", "obj"] -rebuilt : ScopeId(11): ["b", "k", "k1", "obj"] Scope children mismatch: after transform: ScopeId(13): [ScopeId(14), ScopeId(15), ScopeId(17)] rebuilt : ScopeId(11): [ScopeId(12), ScopeId(14)] tasks/coverage/typescript/tests/cases/conformance/types/keyof/keyofIntersection.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B", "Example1", "Example3", "Example4", "Example5", "Result1", "Result2", "Result3", "Result4", "Result5", "T01", "T02", "T03", "T04", "T05", "T06", "T07"] -rebuilt : ScopeId(0): [] -Scope children 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)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -54362,10 +47990,7 @@ after transform: ["Record"] rebuilt : [] 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: +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(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)] Unresolved references mismatch: @@ -54373,10 +47998,7 @@ after transform: ["Error", "g", "true"] rebuilt : ["Error", "g"] 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: +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(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)] Unresolved references mismatch: @@ -54384,10 +48006,7 @@ after transform: ["Error", "g", "true"] rebuilt : ["Error", "g"] 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: +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(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: @@ -54404,10 +48023,7 @@ after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2), R rebuilt : SymbolId(0): [ReferenceId(7), ReferenceId(52), ReferenceId(54), ReferenceId(63), ReferenceId(64), ReferenceId(66), ReferenceId(67), ReferenceId(74), ReferenceId(78), ReferenceId(80), ReferenceId(83), ReferenceId(85)] tasks/coverage/typescript/tests/cases/conformance/types/literal/enumLiteralTypes2.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: +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(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: @@ -54425,30 +48041,12 @@ rebuilt : SymbolId(0): [ReferenceId(7), ReferenceId(52), ReferenceId(54), tasks/coverage/typescript/tests/cases/conformance/types/literal/literalTypeWidening.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["E", "FAILURE", "LangCode", "Obj", "Result", "Set", "TestEvent", "_excluded", "_objectSpread", "_objectWithoutProperties", "a", "arr", "b", "doWork", "f1", "f2", "f3", "f4", "f5", "f6", "increment", "isFailure", "isSuccess", "keys", "langCodeSet", "langCodes", "onMouseOver", "result", "test", "x"] +after transform: ScopeId(0): ["E", "Set", "_excluded", "_objectSpread", "_objectWithoutProperties", "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", "_excluded", "_objectSpread", "_objectWithoutProperties", "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): [] -Bindings mismatch: -after transform: ScopeId(12): ["T", "result"] -rebuilt : ScopeId(8): ["result"] -Bindings mismatch: -after transform: ScopeId(13): ["T", "result"] -rebuilt : ScopeId(9): ["result"] -Bindings mismatch: -after transform: ScopeId(18): ["K", "keys", "result"] -rebuilt : ScopeId(13): ["keys", "result"] -Bindings mismatch: -after transform: ScopeId(20): ["K", "V", "obj"] -rebuilt : ScopeId(15): ["obj"] -Bindings mismatch: -after transform: ScopeId(24): ["T", "a", "obj", "rest"] -rebuilt : ScopeId(17): ["a", "obj", "rest"] -Bindings mismatch: after transform: ScopeId(26): ["A", "B", "E"] rebuilt : ScopeId(18): ["E"] Scope flags mismatch: @@ -54480,10 +48078,7 @@ after transform: ["NonNullable", "Object", "Record", "f", "nonWidening", "true", rebuilt : ["Object", "f", "nonWidening", "widening"] 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: +semantic error: 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)] Unresolved references mismatch: @@ -54491,10 +48086,7 @@ after transform: ["true", "undefined"] rebuilt : ["undefined"] 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: +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(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: @@ -54503,12 +48095,6 @@ rebuilt : ScopeId(1): ["E"] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(0x0) rebuilt : ScopeId(1): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(35): ["T", "x"] -rebuilt : ScopeId(27): ["x"] -Bindings mismatch: -after transform: ScopeId(36): ["T", "a", "result", "x"] -rebuilt : ScopeId(28): ["a", "result", "x"] Symbol flags mismatch for "E": after transform: SymbolId(0): SymbolFlags(RegularEnum) rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) @@ -54521,7 +48107,7 @@ rebuilt : ["g1", "g2", "g3", "g4", "g5", "g6", "g7", "g8", "undefined"] tasks/coverage/typescript/tests/cases/conformance/types/literal/literalTypesAndDestructuring.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo", "_x$a", "_x$a2", "_x$a3", "a1", "a2", "a3", "a4", "b1", "b2", "b3", "b4", "bar", "x"] +after transform: ScopeId(0): ["_x$a", "_x$a2", "_x$a3", "a1", "a2", "a3", "a4", "b1", "b2", "b3", "b4", "bar", "x"] rebuilt : ScopeId(0): ["_x$a", "_x$a2", "_x$a3", "a1", "a2", "a3", "a4", "b1", "b2", "b3", "b4", "bar"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] @@ -54555,26 +48141,17 @@ after transform: ["const"] rebuilt : ["x"] tasks/coverage/typescript/tests/cases/conformance/types/literal/numericLiteralTypes1.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: +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(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: +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(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/numericStringLiteralTypes.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Container", "T0", "T1", "T10", "T11", "T2", "T20", "T21", "T3", "T4", "UnwrapContainers", "container1", "container2", "f1", "f2"] -rebuilt : ScopeId(0): ["container1", "container2", "f1", "f2"] -Scope children 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(13), ScopeId(14), ScopeId(16), ScopeId(17), ScopeId(18)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Unresolved references mismatch: @@ -54582,10 +48159,7 @@ after transform: ["Capitalize", "createContainer", "f"] rebuilt : ["createContainer", "f"] 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: +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(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: @@ -54602,10 +48176,7 @@ after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2), R rebuilt : SymbolId(0): [ReferenceId(4), ReferenceId(31), ReferenceId(33), ReferenceId(42), ReferenceId(43), ReferenceId(45), ReferenceId(46), ReferenceId(53), ReferenceId(57), ReferenceId(59), ReferenceId(62), ReferenceId(64)] tasks/coverage/typescript/tests/cases/conformance/types/literal/stringEnumLiteralTypes2.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: +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(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: @@ -54627,10 +48198,7 @@ after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2), R rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2)] tasks/coverage/typescript/tests/cases/conformance/types/literal/stringMappingDeferralInConditionalTypes.ts -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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(12)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -54639,14 +48207,11 @@ rebuilt : [] 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"] +after transform: ScopeId(0): ["_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"] Reference symbol mismatch for "_virtualOn": after transform: SymbolId(18) "_virtualOn" rebuilt : @@ -54655,21 +48220,12 @@ after transform: ["Capitalize", "Lowercase"] rebuilt : ["_virtualOn"] tasks/coverage/typescript/tests/cases/conformance/types/literal/templateLiteralTypes6.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Keyof", "Registry", "f2"] -rebuilt : ScopeId(0): ["f2"] -Scope children mismatch: +semantic error: 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"] tasks/coverage/typescript/tests/cases/conformance/types/literal/templateLiteralTypes8.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["E", "Stringify", "z1", "z2"] -rebuilt : ScopeId(0): ["E", "z1", "z2"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: @@ -54686,10 +48242,7 @@ after transform: SymbolId(0): [ReferenceId(1), ReferenceId(3), ReferenceId(7)] rebuilt : SymbolId(0): [ReferenceId(3)] tasks/coverage/typescript/tests/cases/conformance/types/localTypes/localTypes1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["A", "C", "E", "I", "a"] -rebuilt : ScopeId(1): ["C", "E", "a"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] Bindings mismatch: @@ -54699,7 +48252,7 @@ Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(0x0) rebuilt : ScopeId(2): ScopeFlags(Function) Bindings mismatch: -after transform: ScopeId(7): ["A", "C", "E", "I", "a"] +after transform: ScopeId(7): ["C", "E", "a"] rebuilt : ScopeId(5): ["C", "a"] Scope children mismatch: after transform: ScopeId(7): [ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] @@ -54719,15 +48272,9 @@ rebuilt : ScopeId(10): ["E"] Scope flags mismatch: after transform: ScopeId(14): ScopeFlags(0x0) 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)] @@ -54837,112 +48384,32 @@ Unresolved references mismatch: after transform: [] rebuilt : ["E"] -tasks/coverage/typescript/tests/cases/conformance/types/localTypes/localTypes3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(3): ["X", "Y"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(6): ["C", "X", "x"] -rebuilt : ScopeId(6): ["C", "x"] -Bindings mismatch: -after transform: ScopeId(7): ["Y"] -rebuilt : ScopeId(7): [] -Bindings mismatch: -after transform: ScopeId(10): ["C", "X", "Y", "x", "y"] -rebuilt : ScopeId(10): ["C", "x", "y"] - tasks/coverage/typescript/tests/cases/conformance/types/localTypes/localTypes5.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["A", "X", "x"] -rebuilt : ScopeId(1): ["X", "x"] -Bindings mismatch: -after transform: ScopeId(3): ["B", "C"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(4): ["D", "Y"] -rebuilt : ScopeId(4): ["Y"] -Bindings mismatch: -after transform: ScopeId(5): ["E"] -rebuilt : ScopeId(5): [] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["Date"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/mapped/isomorphicMappedTypeInference.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Box", "Boxified", "Foo", "Func", "Spec", "assignBoxified", "box", "boxify", "f1", "f10", "f2", "f3", "f4", "f5", "f6", "foo", "g1", "g2", "getProps", "makeDictionary", "makeRecord", "myAny", "o", "o1", "o2", "unbox", "unboxify", "x0", "x1", "x2", "x3", "x4"] -rebuilt : ScopeId(0): ["assignBoxified", "box", "boxify", "f1", "f10", "f2", "f3", "f4", "f5", "f6", "foo", "g1", "g2", "getProps", "makeDictionary", "makeRecord", "myAny", "o", "o1", "o2", "unbox", "unboxify", "x0", "x1", "x2", "x3", "x4"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(9), ScopeId(12), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(26), ScopeId(28), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), 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(6), ScopeId(9), 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)] -Bindings mismatch: -after transform: ScopeId(4): ["T", "x"] -rebuilt : ScopeId(1): ["x"] -Bindings mismatch: -after transform: ScopeId(5): ["T", "x"] -rebuilt : ScopeId(2): ["x"] -Bindings mismatch: -after transform: ScopeId(6): ["T", "obj", "result"] -rebuilt : ScopeId(3): ["obj", "result"] -Bindings mismatch: -after transform: ScopeId(9): ["T", "obj", "result"] -rebuilt : ScopeId(6): ["obj", "result"] -Bindings mismatch: -after transform: ScopeId(12): ["T", "obj", "values"] -rebuilt : ScopeId(9): ["obj", "values"] -Bindings mismatch: -after transform: ScopeId(19): ["K", "T", "obj"] -rebuilt : ScopeId(16): ["obj"] Scope children mismatch: after transform: ScopeId(19): [ScopeId(20)] rebuilt : ScopeId(16): [] -Bindings mismatch: -after transform: ScopeId(22): ["T", "obj"] -rebuilt : ScopeId(18): ["obj"] -Bindings mismatch: -after transform: ScopeId(39): ["T", "object", "partial"] -rebuilt : ScopeId(24): ["object", "partial"] -Bindings mismatch: -after transform: ScopeId(45): ["K", "T", "list", "obj"] -rebuilt : ScopeId(25): ["list", "obj"] Unresolved references mismatch: after transform: ["Partial", "Pick", "applySpec", "clone", "f20", "f21", "f22", "f23", "f24", "validate", "validateAndClone"] rebuilt : ["applySpec", "clone", "f20", "f21", "f22", "f23", "f24", "validate", "validateAndClone"] tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypeConstraints.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["TargetProps", "_excluded", "_objectWithoutProperties", "f0", "f1", "f2", "f3", "f4", "modifier"] -rebuilt : ScopeId(0): ["_excluded", "_objectWithoutProperties", "f0", "f1", "f2", "f3", "f4", "modifier"] -Scope children 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), ScopeId(4), ScopeId(5), ScopeId(6)] -Bindings mismatch: -after transform: ScopeId(1): ["T", "obj"] -rebuilt : ScopeId(1): ["obj"] -Bindings mismatch: -after transform: ScopeId(2): ["T", "obj"] -rebuilt : ScopeId(2): ["obj"] -Bindings mismatch: -after transform: ScopeId(3): ["T", "U", "obj"] -rebuilt : ScopeId(3): ["obj"] -Bindings mismatch: -after transform: ScopeId(4): ["T", "U", "obj"] -rebuilt : ScopeId(4): ["obj"] -Bindings mismatch: -after transform: ScopeId(5): ["T", "obj"] -rebuilt : ScopeId(5): ["obj"] -Bindings mismatch: -after transform: ScopeId(7): ["T", "bar", "rest", "targetProps"] -rebuilt : ScopeId(6): ["bar", "rest", "targetProps"] Unresolved references mismatch: after transform: ["Exclude", "Extract", "Pick", "Record", "require"] rebuilt : ["require"] tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypeIndexSignatureModifiers.ts -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: +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(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): [] Unresolved references mismatch: @@ -54950,10 +48417,7 @@ after transform: ["Pick"] rebuilt : [] 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: +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(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: @@ -54964,10 +48428,7 @@ after transform: ["Partial", "Pick", "Readonly"] rebuilt : [] 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: +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)] Bindings mismatch: @@ -54999,10 +48460,7 @@ after transform: ["Extract"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypes1.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Item", "T00", "T01", "T02", "T03", "T10", "T11", "T12", "T13", "T20", "T21", "T30", "T31", "T32", "T33", "T34", "T35", "T36", "T37", "T38", "T40", "T43", "T44", "T47", "x1", "x2", "x3", "x4"] -rebuilt : ScopeId(0): ["x1", "x2", "x3", "x4"] -Scope children mismatch: +semantic error: 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(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), ScopeId(54)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -55010,15 +48468,9 @@ after transform: ["Array", "Date", "Number", "f1", "f2", "f3", "f4"] rebuilt : ["f1", "f2", "f3", "f4"] tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypes2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["DeepReadonly", "PartialShape", "Point", "Proxify", "Proxy", "ReadonlyShape", "Shape", "f0", "f1", "f2", "f3", "f4", "f5", "f6", "verifyLibTypes"] -rebuilt : ScopeId(0): ["f0", "f1", "f2", "f3", "f4", "f5", "f6", "verifyLibTypes"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(6), 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(28), ScopeId(29)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(9)] -Bindings mismatch: -after transform: ScopeId(1): ["K", "T", "U", "x1", "x2", "x3", "x4"] -rebuilt : ScopeId(1): ["x1", "x2", "x3", "x4"] Scope children mismatch: after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(1): [] @@ -55027,46 +48479,28 @@ after transform: ["Partial", "Pick", "Readonly", "Record", "assign", "freeze", " rebuilt : ["assign", "freeze", "mapObject", "pick", "proxify"] tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypes3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Bacon", "Box", "Boxified", "BoxifiedBacon", "f1", "f2", "f3"] -rebuilt : ScopeId(0): ["Box", "f1", "f2", "f3"] -Scope children mismatch: +semantic error: 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)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] -Bindings mismatch: -after transform: ScopeId(1): ["P"] -rebuilt : ScopeId(1): [] Symbol reference IDs mismatch for "Box": after transform: SymbolId(0): [ReferenceId(2), ReferenceId(11), ReferenceId(12)] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypes4.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B", "Box", "Boxified", "BoxifiedWithSentinel", "C", "Clone", "DeepReadonly", "DeepReadonlyFoo", "Foo", "M", "T00", "T01", "T02", "T03", "T04", "T05", "T10", "T11", "T12", "Z", "boxify", "f1", "x1", "z1"] -rebuilt : ScopeId(0): ["boxify", "f1", "x1", "z1"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), 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(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(30)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(5)] -Bindings mismatch: -after transform: ScopeId(4): ["T", "obj"] -rebuilt : ScopeId(1): ["obj"] Unresolved references mismatch: after transform: ["Partial", "Readonly"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypesArraysTuples.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "Awaitified", "B", "Box", "Boxified", "Constrained", "ElementType", "F", "Mapped", "R1", "R2", "ReadWrite", "T00", "T01", "T02", "T1", "T10", "T11", "T12", "T13", "T14", "T15", "T2", "T20", "T21", "T22", "T23", "T24", "T25", "T30", "T31", "T40", "T50", "T51", "T52", "T53", "T54", "Unconstrained", "__Awaited", "acceptMappedArray", "f1", "f2", "x10", "x11", "x12", "x20", "x21", "x22", "y10", "y11", "y12", "y20", "y21", "y22"] +after transform: ScopeId(0): ["acceptMappedArray", "f1", "f2", "x10", "x11", "x12", "x20", "x21", "x22", "y10", "y11", "y12", "y20", "y21", "y22"] rebuilt : ScopeId(0): ["acceptMappedArray", "f1", "f2", "y10", "y11", "y12", "y20", "y21", "y22"] 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(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(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(35), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(42), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] -Bindings mismatch: -after transform: ScopeId(39): ["T", "a", "x", "y"] -rebuilt : ScopeId(2): ["a", "x", "y"] -Bindings mismatch: -after transform: ScopeId(49): ["T", "arr"] -rebuilt : ScopeId(3): ["arr"] Reference symbol mismatch for "x10": after transform: SymbolId(35) "x10" rebuilt : @@ -55090,10 +48524,7 @@ after transform: ["Array", "Partial", "Promise", "PromiseLike", "Readonly", "Rea rebuilt : ["acceptArray", "all", "mapArray", "nonpartial", "unboxify", "x10", "x11", "x12", "x20", "x21", "x22"] tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypesGenericTuples.ts -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: +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), 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): [] Unresolved references mismatch: @@ -55106,18 +48537,12 @@ 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Symbol reference IDs mismatch for "C": @@ -55125,10 +48550,7 @@ after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch for "C": @@ -55136,18 +48558,12 @@ after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(6)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -55155,18 +48571,12 @@ after transform: ["Object"] rebuilt : [] 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6), ScopeId(7), ScopeId(8)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -55174,18 +48584,12 @@ after transform: ["Object"] rebuilt : [] 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: +semantic error: 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch for "C": @@ -55193,10 +48597,7 @@ after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch for "C": @@ -55204,18 +48605,12 @@ after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] 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: +semantic error: 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: +semantic error: 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: @@ -55232,10 +48627,7 @@ after transform: SymbolId(2): [ReferenceId(3), ReferenceId(8), ReferenceId(12), rebuilt : SymbolId(2): [] 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: +semantic error: 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: @@ -55252,10 +48644,7 @@ after transform: SymbolId(2): [ReferenceId(5), ReferenceId(9), ReferenceId(20)] rebuilt : SymbolId(2): [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(5)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch for "C": @@ -55266,10 +48655,7 @@ after transform: ["Object"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(5)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch for "C": @@ -55279,24 +48665,13 @@ Unresolved references mismatch: after transform: ["Object"] rebuilt : [] -tasks/coverage/typescript/tests/cases/conformance/types/namedTypes/classWithOptionalParameter.ts -semantic error: Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] - tasks/coverage/typescript/tests/cases/conformance/types/namedTypes/genericInstantiationEquivalentToObjectLiteral.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Pair", "x", "y"] -rebuilt : ScopeId(0): ["x", "y"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/namedTypes/optionalMethods.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Bar", "Base", "Derived", "Foo", "test1", "test2"] -rebuilt : ScopeId(0): ["Bar", "Base", "Derived", "test1", "test2"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(10), ScopeId(11), ScopeId(13)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6), ScopeId(7), ScopeId(8)] Scope children mismatch: @@ -55310,29 +48685,18 @@ after transform: SymbolId(6): [ReferenceId(10)] rebuilt : SymbolId(5): [] 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: +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)] -tasks/coverage/typescript/tests/cases/conformance/types/never/neverType.ts -semantic error: Bindings mismatch: -after transform: ScopeId(13): ["T", "x"] -rebuilt : ScopeId(13): ["x"] - 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: +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)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/nonPrimitive/nonPrimitiveAndEmptyObject.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["BarProps", "FooProps", "foo", "fooProps"] +after transform: ScopeId(0): ["foo", "fooProps"] rebuilt : ScopeId(0): ["fooProps"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -55345,10 +48709,7 @@ after transform: [] rebuilt : ["foo"] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -55359,10 +48720,7 @@ 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/types/objectTypeLiteral/callSignatures/callSignaturesThatDifferOnlyByReturnType.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I", "I2", "I3", "T", "a", "a2"] -rebuilt : ScopeId(0): ["a", "a2"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -55370,18 +48728,12 @@ after transform: ["Object"] rebuilt : [] 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: +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/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: +semantic error: 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)] Symbol reference IDs mismatch for "C": @@ -55389,10 +48741,7 @@ after transform: SymbolId(8): [ReferenceId(6)] rebuilt : SymbolId(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: +semantic error: 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: @@ -55403,59 +48752,35 @@ after transform: SymbolId(9): [ReferenceId(4)] rebuilt : SymbolId(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: +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/identicalCallSignatures2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Base", "I", "I2"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +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/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: +semantic error: 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"] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/specializedSignatureIsSubtypeOfNonSpecializedSignature.ts -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: +semantic error: 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)] @@ -55469,127 +48794,30 @@ 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: +semantic error: 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: +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): ["T", "U", "x", "y"] -rebuilt : ScopeId(1): ["x", "y"] -Bindings mismatch: -after transform: ScopeId(2): ["T", "U"] -rebuilt : ScopeId(2): [] Symbol reference IDs mismatch for "C": after transform: SymbolId(5): [ReferenceId(7), ReferenceId(11)] rebuilt : SymbolId(3): [ReferenceId(3)] -tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/typeParameterUsedAsTypeParameterConstraint.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "U", "x", "y"] -rebuilt : ScopeId(1): ["x", "y"] -Bindings mismatch: -after transform: ScopeId(2): ["T", "U", "x", "y"] -rebuilt : ScopeId(2): ["x", "y"] -Bindings mismatch: -after transform: ScopeId(3): ["T", "U", "x", "y"] -rebuilt : ScopeId(3): ["x", "y"] -Bindings mismatch: -after transform: ScopeId(4): ["T", "U", "x", "y"] -rebuilt : ScopeId(4): ["x", "y"] -Bindings mismatch: -after transform: ScopeId(5): ["T", "U", "x", "y"] -rebuilt : ScopeId(5): ["x", "y"] -Bindings mismatch: -after transform: ScopeId(6): ["T", "U", "x", "y"] -rebuilt : ScopeId(6): ["x", "y"] - -tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/typeParameterUsedAsTypeParameterConstraint2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "U", "bar", "x", "y"] -rebuilt : ScopeId(1): ["bar", "x", "y"] -Bindings mismatch: -after transform: ScopeId(2): ["V", "W", "baz"] -rebuilt : ScopeId(2): ["baz"] -Bindings mismatch: -after transform: ScopeId(3): ["X", "Y", "a", "b"] -rebuilt : ScopeId(3): ["a", "b"] -Bindings mismatch: -after transform: ScopeId(4): ["T", "U", "bar", "x", "y"] -rebuilt : ScopeId(4): ["bar", "x", "y"] -Bindings mismatch: -after transform: ScopeId(5): ["V", "W", "baz"] -rebuilt : ScopeId(5): ["baz"] -Bindings mismatch: -after transform: ScopeId(6): ["X", "Y", "a", "b"] -rebuilt : ScopeId(6): ["a", "b"] -Bindings mismatch: -after transform: ScopeId(7): ["T", "U", "bar", "x", "y"] -rebuilt : ScopeId(7): ["bar", "x", "y"] -Bindings mismatch: -after transform: ScopeId(8): ["V", "W", "g"] -rebuilt : ScopeId(8): ["g"] -Bindings mismatch: -after transform: ScopeId(9): ["X", "Y", "a", "b"] -rebuilt : ScopeId(9): ["a", "b"] -Bindings mismatch: -after transform: ScopeId(10): ["T", "U", "bar", "x", "y"] -rebuilt : ScopeId(10): ["bar", "x", "y"] -Bindings mismatch: -after transform: ScopeId(11): ["V", "W", "g"] -rebuilt : ScopeId(11): ["g"] -Bindings mismatch: -after transform: ScopeId(12): ["X", "Y", "a", "b", "baz"] -rebuilt : ScopeId(12): ["a", "b", "baz"] -Bindings mismatch: -after transform: ScopeId(13): ["T", "U", "bar", "x", "y"] -rebuilt : ScopeId(13): ["bar", "x", "y"] -Bindings mismatch: -after transform: ScopeId(14): ["V", "W", "g"] -rebuilt : ScopeId(14): ["g"] -Bindings mismatch: -after transform: ScopeId(15): ["X", "Y", "a", "b"] -rebuilt : ScopeId(15): ["a", "b"] -Bindings mismatch: -after transform: ScopeId(16): ["T", "U", "bar", "x", "y"] -rebuilt : ScopeId(16): ["bar", "x", "y"] -Bindings mismatch: -after transform: ScopeId(17): ["V", "W", "g"] -rebuilt : ScopeId(17): ["g"] -Bindings mismatch: -after transform: ScopeId(18): ["X", "Y", "a", "b"] -rebuilt : ScopeId(18): ["a", "b"] - tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/typeParameterUsedAsTypeParameterConstraint3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I", "I2"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: 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)] @@ -55601,18 +48829,12 @@ after transform: SymbolId(7): [ReferenceId(4), ReferenceId(10), ReferenceId(13), rebuilt : SymbolId(3): [ReferenceId(1)] 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: +semantic error: 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)] @@ -55624,15 +48846,9 @@ after transform: SymbolId(7): [ReferenceId(4), ReferenceId(10), ReferenceId(13), rebuilt : SymbolId(3): [ReferenceId(1)] 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: +semantic error: 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): [] Symbol reference IDs mismatch for "C": after transform: SymbolId(0): [ReferenceId(1), ReferenceId(6), ReferenceId(11), ReferenceId(13), ReferenceId(18)] rebuilt : SymbolId(0): [] @@ -55641,10 +48857,7 @@ after transform: SymbolId(2): [ReferenceId(2), ReferenceId(4), ReferenceId(8), R rebuilt : SymbolId(2): [] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/indexSignatures/numericIndexingResults.ts -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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch for "C": @@ -55652,10 +48865,7 @@ after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch for "C": @@ -55663,34 +48873,22 @@ after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] 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: +semantic error: 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: +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/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: +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/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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: @@ -55707,10 +48905,7 @@ after transform: SymbolId(11): SymbolFlags(RegularEnum) rebuilt : SymbolId(10): SymbolFlags(FunctionScopedVariable) tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/propertySignatures/stringNamedPropertyAccess.ts -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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch for "C": @@ -55718,10 +48913,7 @@ after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2)] rebuilt : SymbolId(0): [ReferenceId(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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -55731,10 +48923,7 @@ after transform: ["Boolean", "Object"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -55756,10 +48945,7 @@ after transform: ["Object"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/primitives/string/extendStringInterface.ts -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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -55777,15 +48963,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/primitives/undefined/inv 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/conformance/types/primitives/undefined/validUndefinedAssignments.ts -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: +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(4): ["T", "a"] -rebuilt : ScopeId(2): ["a"] Symbol reference IDs mismatch for "C": after transform: SymbolId(6): [ReferenceId(9)] rebuilt : SymbolId(6): [] @@ -55799,24 +48979,9 @@ after transform: [ReferenceId(0), ReferenceId(2)] rebuilt : [ReferenceId(1)] tasks/coverage/typescript/tests/cases/conformance/types/rest/genericObjectRest.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Item", "_excluded", "_excluded2", "_excluded3", "_excluded4", "_extends", "_objectDestructuringEmpty", "_objectWithoutProperties", "_toPropertyKey", "a", "f1", "f2", "f3", "f4", "sa", "sb"] -rebuilt : ScopeId(0): ["_excluded", "_excluded2", "_excluded3", "_excluded4", "_extends", "_objectDestructuringEmpty", "_objectWithoutProperties", "_toPropertyKey", "a", "f1", "f2", "f3", "f4", "sa", "sb"] -Scope children 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), 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"] -Bindings mismatch: -after transform: ScopeId(2): ["T", "a1", "b1", "obj", "r1"] -rebuilt : ScopeId(2): ["a1", "b1", "obj", "r1"] -Bindings mismatch: -after transform: ScopeId(3): ["K1", "K2", "T", "a1", "a2", "k1", "k2", "obj", "r1"] -rebuilt : ScopeId(3): ["a1", "a2", "k1", "k2", "obj", "r1"] -Bindings mismatch: -after transform: ScopeId(5): ["K1", "K2", "a1", "a2", "k1", "k2", "obj", "r1"] -rebuilt : ScopeId(4): ["a1", "a2", "k1", "k2", "obj", "r1"] Symbol reference IDs mismatch for "sa": after transform: SymbolId(16): [ReferenceId(10), ReferenceId(13), ReferenceId(51)] rebuilt : SymbolId(23): [ReferenceId(32), ReferenceId(37)] @@ -55826,7 +48991,7 @@ rebuilt : SymbolId(24): [ReferenceId(33), ReferenceId(38)] tasks/coverage/typescript/tests/cases/conformance/types/rest/genericRestParameters2.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["P1", "T", "T01", "T02", "T03", "T04", "T05", "T06", "T10", "T11", "T12", "f00", "f01", "f02", "f03", "f04", "f10", "f11", "f12", "f13", "f20", "ns", "sn", "t1", "t2", "t3", "t4"] +after transform: ScopeId(0): ["f00", "f01", "f02", "f03", "f04", "f10", "f11", "f12", "f13", "f20", "ns", "sn", "t1", "t2", "t3", "t4"] 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(9), ScopeId(10), ScopeId(11)] @@ -56120,21 +49285,13 @@ after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), Sc 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", "_objectWithoutProperties", "foo", "obj", "rest"] -rebuilt : ScopeId(0): ["_objectWithoutProperties", "foo", "obj", "rest"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Readonly", "require"] rebuilt : ["require"] -tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeLiterals/arrayOfFunctionTypes3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C", "T", "a", "a2", "b", "b2", "c", "c2", "r2", "r3", "r4", "r5", "r5b", "r6", "r7", "x", "y", "z", "z2"] -rebuilt : ScopeId(0): ["C", "a", "a2", "b", "b2", "c", "c2", "r2", "r3", "r4", "r5", "r5b", "r6", "r7", "x", "y", "z", "z2"] - tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeLiterals/arrayTypeOfTypeOf.ts semantic error: Symbol reference IDs mismatch for "x": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(4)] @@ -56144,20 +49301,9 @@ after transform: ["Array"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeLiterals/functionLiteral.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T", "x", "y", "y2", "z"] -rebuilt : ScopeId(0): ["x", "y", "y2", "z"] -Scope children 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(2): ["T", "x"] -rebuilt : ScopeId(2): ["x"] - -tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeLiterals/functionLiteralForOverloads.ts -semantic error: Bindings mismatch: -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: Scope children mismatch: @@ -56166,9 +49312,6 @@ 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)] @@ -56188,15 +49331,9 @@ after transform: ["Array"] rebuilt : [] 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: +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), 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): [] Symbol reference IDs mismatch for "C": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1)] rebuilt : SymbolId(0): [] @@ -56211,10 +49348,7 @@ after transform: SymbolId(18): [ReferenceId(6)] rebuilt : SymbolId(12): [] tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeQueries/typeQueryWithReservedWords.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Controller", "IScope"] -rebuilt : ScopeId(0): ["Controller"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(5)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch for "Controller": @@ -56256,18 +49390,9 @@ after transform: ["this"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/spread/objectSpread.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C", "Header", "_objectSpread", "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", "_objectSpread", "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: +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(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"] -Bindings mismatch: -after transform: ScopeId(14): ["T", "U", "obj", "t", "u", "v", "w", "x01", "x02", "x03", "x04", "x05", "x06", "x07", "x09", "x10", "x11", "x12", "x13", "x14", "x15", "x16", "x17", "x18"] -rebuilt : ScopeId(12): ["obj", "t", "u", "v", "w", "x01", "x02", "x03", "x04", "x05", "x06", "x07", "x09", "x10", "x11", "x12", "x13", "x14", "x15", "x16", "x17", "x18"] Symbol reference IDs mismatch for "C": after transform: SymbolId(32): [ReferenceId(36), ReferenceId(37)] rebuilt : SymbolId(32): [ReferenceId(67)] @@ -56278,10 +49403,7 @@ after transform: ["Record", "require"] rebuilt : ["require"] tasks/coverage/typescript/tests/cases/conformance/types/spread/objectSpreadRepeatedNullCheckPerf.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Props", "_objectSpread", "parseWithSpread"] -rebuilt : ScopeId(0): ["_objectSpread", "parseWithSpread"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: @@ -56290,7 +49412,7 @@ rebuilt : ["require", "undefined"] tasks/coverage/typescript/tests/cases/conformance/types/spread/spreadContextualTypedBindingPattern.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Person", "_objectSpread", "age", "alice", "bob", "naam"] +after transform: ScopeId(0): ["_objectSpread", "age", "alice", "bob", "naam"] rebuilt : ScopeId(0): ["_objectSpread", "age", "naam"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] @@ -56306,10 +49428,7 @@ after transform: ["require"] rebuilt : ["alice", "bob", "require"] tasks/coverage/typescript/tests/cases/conformance/types/spread/spreadExcessProperty.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "_objectSpread", "a1", "extra1"] -rebuilt : ScopeId(0): ["_objectSpread", "a1", "extra1"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -56359,34 +49478,22 @@ after transform: ["require"] rebuilt : ["a", "b", "require"] tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralCheckedInIf01.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["S", "T", "f"] -rebuilt : ScopeId(0): ["f"] -Scope children mismatch: +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/stringLiteral/stringLiteralCheckedInIf02.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["S", "T", "f", "isS"] -rebuilt : ScopeId(0): ["f", "isS"] -Scope children 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)] 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: +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/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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] @@ -56396,55 +49503,27 @@ after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesAndTuples01.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["RexOrRaptor", "a", "brave", "dinosaur", "hello", "im", "newish", "rawr", "world"] -rebuilt : ScopeId(0): ["a", "brave", "dinosaur", "hello", "im", "newish", "rawr", "world"] -Scope children mismatch: +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/stringLiteral/stringLiteralTypesAsTags01.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B", "Entity", "Kind", "hasKind", "x"] -rebuilt : ScopeId(0): ["hasKind", "x"] -Scope children 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)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesAsTags02.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B", "Entity", "Kind", "hasKind", "x"] -rebuilt : ScopeId(0): ["hasKind", "x"] -Scope children 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)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesAsTags03.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B", "Entity", "Kind", "hasKind", "x"] -rebuilt : ScopeId(0): ["hasKind", "x"] -Scope children 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)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] -tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesAsTypeParameterConstraint01.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "f"] -rebuilt : ScopeId(1): ["f"] -Bindings mismatch: -after transform: ScopeId(2): ["T", "f"] -rebuilt : ScopeId(2): ["f"] - -tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesAsTypeParameterConstraint02.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "f"] -rebuilt : ScopeId(1): ["f"] - tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesInUnionTypes01.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T", "x", "y"] -rebuilt : ScopeId(0): ["x", "y"] -Scope children 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)] Symbol reference IDs mismatch for "x": @@ -56455,10 +49534,7 @@ after transform: SymbolId(2): [ReferenceId(7), ReferenceId(9), ReferenceId(11), rebuilt : SymbolId(1): [ReferenceId(6), ReferenceId(8), ReferenceId(12), ReferenceId(13)] tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesInUnionTypes02.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T", "x", "y"] -rebuilt : ScopeId(0): ["x", "y"] -Scope children 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)] Symbol reference IDs mismatch for "x": @@ -56469,10 +49545,7 @@ after transform: SymbolId(2): [ReferenceId(7), ReferenceId(9), ReferenceId(11), rebuilt : SymbolId(1): [ReferenceId(6), ReferenceId(8), ReferenceId(12), ReferenceId(13)] tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesInUnionTypes03.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T", "x", "y"] -rebuilt : ScopeId(0): ["x", "y"] -Scope children 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)] Symbol reference IDs mismatch for "x": @@ -56483,10 +49556,7 @@ after transform: SymbolId(2): [ReferenceId(6), ReferenceId(8), ReferenceId(10), rebuilt : SymbolId(1): [ReferenceId(5), ReferenceId(7), ReferenceId(11), ReferenceId(12)] tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesInUnionTypes04.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T", "x", "y"] -rebuilt : ScopeId(0): ["x", "y"] -Scope children 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), ScopeId(8)] @@ -56514,9 +49584,9 @@ Missing SymbolId: "Consts2" Missing SymbolId: "_Consts2" Missing ReferenceId: "Consts2" Missing ReferenceId: "Consts2" -Bindings mismatch: -after transform: ScopeId(0): ["Consts1", "Consts2", "PrimitiveName", "boolean", "booleanOrNumber", "getFalsyPrimitive", "number", "string", "stringOrBoolean", "stringOrBooleanOrNumber", "stringOrNumber"] -rebuilt : ScopeId(0): ["Consts1", "Consts2", "boolean", "booleanOrNumber", "getFalsyPrimitive", "number", "string", "stringOrBoolean", "stringOrBooleanOrNumber", "stringOrNumber"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(8), SymbolId(10), SymbolId(14), SymbolId(15), SymbolId(16), SymbolId(17), SymbolId(18), SymbolId(19), SymbolId(20), SymbolId(21)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(2), SymbolId(7), SymbolId(8), SymbolId(9), SymbolId(10), SymbolId(11), SymbolId(12), SymbolId(13), SymbolId(14)] 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(13), ScopeId(14)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(6)] @@ -56562,10 +49632,7 @@ after transform: ScopeId(13): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(6): ScopeFlags(Function) tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesOverloads03.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Base", "HelloOrWorld", "JustHello", "JustWorld", "f", "fResult1", "fResult2", "fResult3", "g", "gResult1", "gResult2", "gResult3", "hello", "helloOrWorld", "world"] -rebuilt : ScopeId(0): ["f", "fResult1", "fResult2", "fResult3", "g", "gResult1", "gResult2", "gResult3", "hello", "helloOrWorld", "world"] -Scope children 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)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -56575,18 +49642,12 @@ after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypesTypePredicates01.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Kind", "kindIs", "x"] -rebuilt : ScopeId(0): ["kindIs", "x"] -Scope children 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)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] @@ -56596,51 +49657,27 @@ after transform: SymbolId(2): [ReferenceId(2)] rebuilt : SymbolId(2): [] 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: +semantic error: 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: +semantic error: 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: -after transform: ScopeId(3): ["T", "g", "x"] -rebuilt : ScopeId(3): ["g", "x"] -Bindings mismatch: -after transform: ScopeId(4): ["U", "x"] -rebuilt : ScopeId(4): ["x"] -Bindings mismatch: -after transform: ScopeId(5): ["T"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(7): ["U", "x"] -rebuilt : ScopeId(7): ["x"] -Symbol reference IDs mismatch for "A": +semantic error: Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(8)] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInBasePropertyAndDerivedContainerOfBase01.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Bar", "BoxOfFoo", "Foo"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInClasses.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C1", "C2", "C3", "C5", "Foo"] -rebuilt : ScopeId(0): ["C1", "C2", "C3", "C5"] -Scope children mismatch: +semantic error: 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)] Unresolved references mismatch: @@ -56653,15 +49690,9 @@ 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: +semantic error: 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): [] @@ -56670,10 +49701,7 @@ after transform: ["callsCallback", "isCorrect", "this"] rebuilt : ["callsCallback", "isCorrect"] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -56681,16 +49709,13 @@ after transform: ["Date"] rebuilt : [] 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: +semantic error: 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/thisTypeInObjectLiterals2.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Accessors", "Computed", "D", "Dictionary", "M", "ObjectDescriptor", "ObjectDescriptor2", "P", "Point", "PropDesc", "PropDescMap", "Vue", "VueOptions", "obj1", "p1", "p10", "p11", "p12", "p2", "p3", "p4", "vue", "x1", "x2"] +after transform: ScopeId(0): ["Vue", "obj1", "p1", "p10", "p11", "p12", "p2", "p3", "p4", "vue", "x1", "x2"] rebuilt : ScopeId(0): ["obj1", "p1", "p10", "p11", "p12", "p2", "p3", "p4", "vue", "x1", "x2"] 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(17), ScopeId(19), ScopeId(20), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(31), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(41), ScopeId(42), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50)] @@ -56703,18 +49728,12 @@ after transform: ["Record", "ThisType", "defineProp", "defineProps", "f1", "f2", rebuilt : ["Vue", "defineProp", "defineProps", "f1", "f2", "makeObject", "makeObject2"] tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInTaggedTemplateCall.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["T", "strings"] -rebuilt : ScopeId(2): ["strings"] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["TemplateStringsArray"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInTuples.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Array", "a", "b", "c", "t"] -rebuilt : ScopeId(0): ["a", "b", "c", "t"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -56723,21 +49742,13 @@ 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: -after transform: ScopeId(1): ["A", "R", "T", "fn", "obj"] -rebuilt : ScopeId(1): ["fn", "obj"] - tasks/coverage/typescript/tests/cases/conformance/types/tuple/named/namedTupleMembers.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Func", "Iter", "RecursiveTupleA", "RecursiveTupleB", "RecusiveRest", "RecusiveRest2", "Segment", "SegmentAnnotated", "WithOptAndRest", "a", "argumentsOfG", "argumentsOfGAsFirstArgument", "b", "c", "d", "func", "q", "r", "readSegment", "useState", "val", "x", "y"] +after transform: ScopeId(0): ["a", "argumentsOfG", "argumentsOfGAsFirstArgument", "b", "c", "d", "func", "q", "r", "readSegment", "useState", "val", "x", "y"] rebuilt : ScopeId(0): ["argumentsOfG", "argumentsOfGAsFirstArgument", "func", "readSegment", "useState", "val"] 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)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] -Bindings mismatch: -after transform: ScopeId(5): ["T", "initial"] -rebuilt : ScopeId(1): ["initial"] Symbol reference IDs mismatch for "readSegment": after transform: SymbolId(14): [ReferenceId(33)] rebuilt : SymbolId(3): [] @@ -56843,7 +49854,7 @@ rebuilt : ["a", "b", "c", "d", "f", "g", "getArgsForInjection", "q", "r", tasks/coverage/typescript/tests/cases/conformance/types/tuple/named/partiallyNamedTuples.ts 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"] +after transform: ScopeId(0): ["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)] @@ -56856,10 +49867,7 @@ after transform: ["test"] rebuilt : ["input", "test"] tasks/coverage/typescript/tests/cases/conformance/types/tuple/named/partiallyNamedTuples2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["GetKeys", "GetResult", "MultiKeyMap", "id1", "matches", "x"] -rebuilt : ScopeId(0): ["id1", "matches", "x"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -56879,7 +49887,7 @@ rebuilt : ["tuple"] tasks/coverage/typescript/tests/cases/conformance/types/tuple/readonlyArraysAndTuples2.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "T10", "T11", "T12", "T13", "T20", "T21", "someDec"] +after transform: ScopeId(0): ["A", "someDec"] 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)] @@ -56898,12 +49906,6 @@ tasks/coverage/typescript/tests/cases/conformance/types/tuple/typeInferenceWithT semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6), ScopeId(7)] 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: @@ -56979,10 +49981,7 @@ after transform: ["Iterable", "IterableIterator", "Map", "Set", "Symbol"] rebuilt : ["Symbol", "array", "map", "set"] tasks/coverage/typescript/tests/cases/conformance/types/typeAliases/circularTypeAliasForUnionWithClass.ts -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: +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)] Symbol reference IDs mismatch for "I0": @@ -56996,18 +49995,12 @@ after transform: SymbolId(8): [ReferenceId(7)] rebuilt : SymbolId(5): [] 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: +semantic error: 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: +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)] Symbol reference IDs mismatch for "StringTreeCollection": @@ -57015,30 +50008,18 @@ after transform: SymbolId(2): [ReferenceId(0), ReferenceId(7)] rebuilt : SymbolId(1): [ReferenceId(4)] 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: +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(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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: @@ -57046,10 +50027,7 @@ after transform: ["Array"] rebuilt : [] 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: +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(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: @@ -57066,53 +50044,17 @@ after transform: SymbolId(38): SymbolFlags(RegularEnum) rebuilt : SymbolId(15): SymbolFlags(FunctionScopedVariable) tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/recurringTypeParamForContainerOfBase01.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Bar", "BoxOfFoo", "Foo"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/callGenericFunctionWithZeroTypeArguments.ts -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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(2): ["T", "x"] -rebuilt : ScopeId(2): ["x"] -Bindings mismatch: -after transform: ScopeId(4): ["T", "x"] -rebuilt : ScopeId(4): ["x"] -Bindings mismatch: -after transform: ScopeId(7): ["T"] -rebuilt : ScopeId(5): [] tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/constraintSatisfactionWithAny.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "x"] -rebuilt : ScopeId(1): ["x"] -Bindings mismatch: -after transform: ScopeId(2): ["T", "x"] -rebuilt : ScopeId(2): ["x"] -Bindings mismatch: -after transform: ScopeId(3): ["T", "x"] -rebuilt : ScopeId(3): ["x"] -Bindings mismatch: -after transform: ScopeId(4): ["T"] -rebuilt : ScopeId(4): [] -Bindings mismatch: -after transform: ScopeId(6): ["T"] -rebuilt : ScopeId(6): [] -Bindings mismatch: -after transform: ScopeId(8): ["T"] -rebuilt : ScopeId(8): [] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["String"] rebuilt : [] @@ -57122,56 +50064,17 @@ 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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] -Bindings mismatch: -after transform: ScopeId(5): ["T", "x"] -rebuilt : ScopeId(4): ["x"] -Bindings mismatch: -after transform: ScopeId(6): ["T"] -rebuilt : ScopeId(5): [] Unresolved references mismatch: after transform: ["Object"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/functionConstraintSatisfaction.ts -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: +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)] 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"] -Bindings mismatch: -after transform: ScopeId(10): ["T"] -rebuilt : ScopeId(7): [] -Bindings mismatch: -after transform: ScopeId(12): ["U", "x"] -rebuilt : ScopeId(8): ["x"] -Bindings mismatch: -after transform: ScopeId(13): ["U", "x"] -rebuilt : ScopeId(9): ["x"] -Bindings mismatch: -after transform: ScopeId(14): ["U", "x"] -rebuilt : ScopeId(10): ["x"] -Bindings mismatch: -after transform: ScopeId(15): ["U", "V", "x", "y"] -rebuilt : ScopeId(11): ["x", "y"] -Bindings mismatch: -after transform: ScopeId(17): ["T", "U", "x", "y"] -rebuilt : ScopeId(12): ["x", "y"] Unresolved references mismatch: after transform: ["Date", "Function"] rebuilt : ["Function"] @@ -57180,175 +50083,60 @@ after transform: [ReferenceId(0), ReferenceId(6), ReferenceId(58)] rebuilt : [ReferenceId(2)] tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/functionConstraintSatisfaction3.ts -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: +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)] -Bindings mismatch: -after transform: ScopeId(1): ["T", "x"] -rebuilt : ScopeId(1): ["x"] -Bindings mismatch: -after transform: ScopeId(10): ["T"] -rebuilt : ScopeId(7): [] -Bindings mismatch: -after transform: ScopeId(12): ["U", "x"] -rebuilt : ScopeId(8): ["x"] -Bindings mismatch: -after transform: ScopeId(13): ["U", "x"] -rebuilt : ScopeId(9): ["x"] - -tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/instantiateGenericClassWithZeroTypeArguments.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(2): ["T", "U"] -rebuilt : ScopeId(2): [] tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/typeParameterAsTypeParameterConstraint.ts -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: +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", "U", "x", "y"] -rebuilt : ScopeId(1): ["x", "y"] -Bindings mismatch: -after transform: ScopeId(4): ["T", "U", "x", "y"] -rebuilt : ScopeId(2): ["x", "y"] tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/typeParameterAsTypeParameterConstraintTransitively.ts -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: +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)] 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"] -Bindings mismatch: -after transform: ScopeId(8): ["T", "U", "V", "x", "y", "z"] -rebuilt : ScopeId(5): ["x", "y", "z"] tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/typeParameterAsTypeParameterConstraintTransitively2.ts -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: +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)] 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"] -Bindings mismatch: -after transform: ScopeId(8): ["T", "U", "V", "x", "y", "z"] -rebuilt : ScopeId(5): ["x", "y", "z"] tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/wrappedAndRecursiveConstraints.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C", "Foo", "c", "r", "y"] -rebuilt : ScopeId(0): ["C", "c", "r", "y"] -Scope children mismatch: +semantic error: 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): [] -Bindings mismatch: -after transform: ScopeId(3): ["U", "x"] -rebuilt : ScopeId(3): ["x"] Unresolved references mismatch: after transform: ["Date"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/wrappedAndRecursiveConstraints2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Symbol reference IDs mismatch for "C": +semantic error: Symbol reference IDs mismatch for "C": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(3), ReferenceId(4), ReferenceId(5)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2)] -tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/wrappedAndRecursiveConstraints3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(3): ["U", "bar", "x"] -rebuilt : ScopeId(3): ["bar", "x"] -Bindings mismatch: -after transform: ScopeId(4): ["V", "x"] -rebuilt : ScopeId(4): ["x"] - tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/innerTypeParameterShadowingOuterOne.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "g", "x"] -rebuilt : ScopeId(1): ["g", "x"] -Bindings mismatch: -after transform: ScopeId(2): ["T", "x"] -rebuilt : ScopeId(2): ["x"] -Bindings mismatch: -after transform: ScopeId(3): ["T", "U", "g", "x"] -rebuilt : ScopeId(3): ["g", "x"] -Bindings mismatch: -after transform: ScopeId(4): ["T", "U", "x"] -rebuilt : ScopeId(4): ["x"] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["Date", "Number"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/innerTypeParameterShadowingOuterOne2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(2): ["T", "x"] -rebuilt : ScopeId(2): ["x"] -Bindings mismatch: -after transform: ScopeId(4): ["T", "U"] -rebuilt : ScopeId(4): [] -Bindings mismatch: -after transform: ScopeId(5): ["T", "U", "x"] -rebuilt : ScopeId(5): ["x"] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["Date", "Number"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/propertyAccessOnTypeParameterWithConstraints.ts -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: +semantic error: 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): [] -Bindings mismatch: -after transform: ScopeId(4): ["T", "a", "x"] -rebuilt : ScopeId(3): ["a", "x"] Unresolved reference IDs mismatch for "Date": after transform: [ReferenceId(0), ReferenceId(6), ReferenceId(7), ReferenceId(10), ReferenceId(13), ReferenceId(16), ReferenceId(18), ReferenceId(24)] rebuilt : [ReferenceId(12)] tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/propertyAccessOnTypeParameterWithConstraints2.ts -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: +semantic error: 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): [] -Bindings mismatch: -after transform: ScopeId(9): ["T", "U", "a", "x", "y"] -rebuilt : ScopeId(8): ["a", "x", "y"] Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2), ReferenceId(13), ReferenceId(16), ReferenceId(18), ReferenceId(19), ReferenceId(23), ReferenceId(26), ReferenceId(27), ReferenceId(29), ReferenceId(30), ReferenceId(33), ReferenceId(34), ReferenceId(39), ReferenceId(40), ReferenceId(49), ReferenceId(50)] rebuilt : SymbolId(0): [ReferenceId(0)] @@ -57357,18 +50145,9 @@ after transform: SymbolId(1): [ReferenceId(12), ReferenceId(15), ReferenceId(17) rebuilt : SymbolId(1): [ReferenceId(9), ReferenceId(14)] tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/propertyAccessOnTypeParameterWithConstraints3.ts -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: +semantic error: 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): [] -Bindings mismatch: -after transform: ScopeId(9): ["T", "U", "a", "x"] -rebuilt : ScopeId(8): ["a", "x"] Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(12), ReferenceId(15), ReferenceId(18), ReferenceId(22), ReferenceId(26), ReferenceId(30), ReferenceId(39)] rebuilt : SymbolId(0): [ReferenceId(0)] @@ -57377,18 +50156,9 @@ after transform: SymbolId(1): [ReferenceId(13), ReferenceId(16), ReferenceId(17) rebuilt : SymbolId(1): [ReferenceId(9), ReferenceId(15), ReferenceId(17), ReferenceId(22)] tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/propertyAccessOnTypeParameterWithoutConstraints.ts -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: +semantic error: 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): [] -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: @@ -57396,123 +50166,24 @@ after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), Sc 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: +semantic error: 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: +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), 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): [] -Bindings mismatch: -after transform: ScopeId(2): ["T", "U"] -rebuilt : ScopeId(2): [] -Bindings mismatch: -after transform: ScopeId(3): ["T", "U"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(4): ["T", "U"] -rebuilt : ScopeId(4): [] -Bindings mismatch: -after transform: ScopeId(5): ["T", "U", "V"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(6): ["T", "U", "V"] -rebuilt : ScopeId(6): [] -Bindings mismatch: -after transform: ScopeId(13): ["T", "U"] -rebuilt : ScopeId(7): [] -Bindings mismatch: -after transform: ScopeId(14): ["T", "U"] -rebuilt : ScopeId(8): [] -Bindings mismatch: -after transform: ScopeId(15): ["T", "U"] -rebuilt : ScopeId(9): [] -Bindings mismatch: -after transform: ScopeId(16): ["T", "U"] -rebuilt : ScopeId(10): [] -Bindings mismatch: -after transform: ScopeId(17): ["T", "U", "V"] -rebuilt : ScopeId(11): [] -Bindings mismatch: -after transform: ScopeId(18): ["T", "U", "V"] -rebuilt : ScopeId(12): [] -Bindings mismatch: -after transform: ScopeId(19): ["T", "U"] -rebuilt : ScopeId(13): [] -Bindings mismatch: -after transform: ScopeId(20): ["T", "U"] -rebuilt : ScopeId(14): [] -Bindings mismatch: -after transform: ScopeId(21): ["T", "U"] -rebuilt : ScopeId(15): [] -Bindings mismatch: -after transform: ScopeId(22): ["T", "U"] -rebuilt : ScopeId(16): [] -Bindings mismatch: -after transform: ScopeId(23): ["T", "U", "V"] -rebuilt : ScopeId(17): [] -Bindings mismatch: -after transform: ScopeId(24): ["T", "U", "V"] -rebuilt : ScopeId(18): [] Unresolved references mismatch: after transform: ["Date"] rebuilt : [] -tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/typeParametersAvailableInNestedScope.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(2): ["U", "a", "y"] -rebuilt : ScopeId(2): ["a", "y"] -Bindings mismatch: -after transform: ScopeId(4): ["U", "a", "y"] -rebuilt : ScopeId(4): ["a", "y"] - -tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/typeParametersAvailableInNestedScope2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "U", "bar", "x", "y"] -rebuilt : ScopeId(1): ["bar", "x", "y"] -Bindings mismatch: -after transform: ScopeId(2): ["V", "baz", "z"] -rebuilt : ScopeId(2): ["baz", "z"] -Bindings mismatch: -after transform: ScopeId(3): ["W", "a", "c", "d", "e"] -rebuilt : ScopeId(3): ["a", "c", "d", "e"] - -tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/typeParametersAvailableInNestedScope3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "a", "b", "c", "v"] -rebuilt : ScopeId(1): ["a", "b", "c", "v"] -Bindings mismatch: -after transform: ScopeId(2): ["T", "a"] -rebuilt : ScopeId(2): ["a"] -Bindings mismatch: -after transform: ScopeId(4): ["T", "a", "b", "v"] -rebuilt : ScopeId(4): ["a", "b", "v"] -Bindings mismatch: -after transform: ScopeId(5): ["T", "a"] -rebuilt : ScopeId(5): ["a"] - tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/anyAssignabilityInInheritance.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 tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/anyAssignableToEveryType.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: +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: @@ -57521,9 +50192,6 @@ rebuilt : ScopeId(2): ["E"] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(0x0) rebuilt : ScopeId(2): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(4): ["T", "U", "V", "x", "y", "z"] -rebuilt : ScopeId(3): ["x", "y", "z"] Symbol reference IDs mismatch for "C": after transform: SymbolId(1): [ReferenceId(0)] rebuilt : SymbolId(1): [] @@ -57541,16 +50209,8 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assign 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 -tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithGenericCallSignatures.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["S", "T", "f", "g"] -rebuilt : ScopeId(0): ["f", "g"] - tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithGenericCallSignatures3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I", "S", "T", "U", "g", "h"] -rebuilt : ScopeId(0): ["g", "h"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -57566,18 +50226,18 @@ Missing ReferenceId: "ObjectTypes" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(13)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(12)] -Bindings mismatch: -after transform: ScopeId(1): ["S", "S2", "T", "T2", "_SimpleTypes", "a", "a2", "b", "b2", "s", "s2", "t", "t2"] -rebuilt : ScopeId(1): ["S", "T", "_SimpleTypes", "a", "a2", "b", "b2", "s", "s2", "t", "t2"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(7), SymbolId(8), SymbolId(9), SymbolId(10), SymbolId(11), SymbolId(12), SymbolId(26)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8), SymbolId(9), SymbolId(10), SymbolId(11)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) 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(6): ["S", "S2", "T", "T2", "_ObjectTypes", "a", "a2", "b", "b2", "s", "s2", "t", "t2"] -rebuilt : ScopeId(4): ["S", "T", "_ObjectTypes", "a", "a2", "b", "b2", "s", "s2", "t", "t2"] +Binding symbols mismatch: +after transform: ScopeId(6): [SymbolId(14), SymbolId(15), SymbolId(16), SymbolId(17), SymbolId(20), SymbolId(21), SymbolId(22), SymbolId(23), SymbolId(24), SymbolId(25), SymbolId(27)] +rebuilt : ScopeId(4): [SymbolId(13), SymbolId(14), SymbolId(15), SymbolId(16), SymbolId(17), SymbolId(18), SymbolId(19), SymbolId(20), SymbolId(21), SymbolId(22), SymbolId(23)] Scope flags mismatch: after transform: ScopeId(6): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(4): ScopeFlags(Function) @@ -57604,10 +50264,7 @@ after transform: SymbolId(23): [ReferenceId(51), ReferenceId(69), ReferenceId(73 rebuilt : SymbolId(21): [ReferenceId(57), ReferenceId(61), ReferenceId(62), ReferenceId(75)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembers2.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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Symbol reference IDs mismatch for "S": @@ -57618,10 +50275,7 @@ after transform: SymbolId(1): [ReferenceId(1)] rebuilt : SymbolId(1): [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Symbol reference IDs mismatch for "S": @@ -57632,10 +50286,7 @@ after transform: SymbolId(1): [ReferenceId(3)] rebuilt : SymbolId(1): [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Symbol reference IDs mismatch for "S": @@ -57646,10 +50297,7 @@ after transform: SymbolId(1): [ReferenceId(1)] rebuilt : SymbolId(1): [] 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: +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)] Symbol reference IDs mismatch for "Base": @@ -57666,10 +50314,7 @@ after transform: ["Array", "Date", "Object"] rebuilt : [] 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: +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)] Symbol reference IDs mismatch for "Base": @@ -57683,10 +50328,7 @@ after transform: SymbolId(2): [ReferenceId(41)] rebuilt : SymbolId(2): [] 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: +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)] Symbol reference IDs mismatch for "Base": @@ -57703,10 +50345,7 @@ after transform: ["Array", "Object"] rebuilt : [] 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: +semantic error: 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)] Symbol reference IDs mismatch for "Base": @@ -57723,10 +50362,7 @@ after transform: ["Array", "Date", "Object"] rebuilt : [] 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: +semantic error: 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)] Symbol reference IDs mismatch for "Base": @@ -57740,10 +50376,7 @@ after transform: SymbolId(2): [ReferenceId(54)] rebuilt : SymbolId(2): [] 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: +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)] Symbol reference IDs mismatch for "Base": @@ -57760,10 +50393,7 @@ after transform: ["Array", "Object"] rebuilt : [] 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: +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: @@ -57772,9 +50402,6 @@ rebuilt : ScopeId(2): ["E"] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(0x0) rebuilt : ScopeId(2): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(4): ["T", "U", "V", "x", "y", "z"] -rebuilt : ScopeId(3): ["x", "y", "z"] Symbol reference IDs mismatch for "C": after transform: SymbolId(1): [ReferenceId(0)] rebuilt : SymbolId(1): [] @@ -57790,7 +50417,7 @@ rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/intersectionIncludingPropFromGlobalAugmentation.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Test1", "Test2", "_objectSpread", "hasOwn", "source", "target", "toString"] +after transform: ScopeId(0): ["_objectSpread", "hasOwn", "source", "target", "toString"] rebuilt : ScopeId(0): ["_objectSpread", "hasOwn", "target", "toString"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -57803,10 +50430,7 @@ after transform: [] rebuilt : ["source"] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/nullAssignableToEveryType.ts -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: +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: @@ -57815,9 +50439,6 @@ rebuilt : ScopeId(2): ["E"] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(0x0) rebuilt : ScopeId(2): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(4): ["T", "U", "V", "x", "y", "z"] -rebuilt : ScopeId(3): ["x", "y", "z"] Symbol reference IDs mismatch for "C": after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] @@ -57846,10 +50467,7 @@ after transform: SymbolId(0): [ReferenceId(0), ReferenceId(8)] rebuilt : SymbolId(0): [ReferenceId(3)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/undefinedAssignableToEveryType.ts -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: +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: @@ -57858,9 +50476,6 @@ rebuilt : ScopeId(2): ["E"] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(0x0) rebuilt : ScopeId(2): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(4): ["T", "U", "V", "x", "y", "z"] -rebuilt : ScopeId(3): ["x", "y", "z"] Symbol reference IDs mismatch for "C": after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] @@ -57880,10 +50495,7 @@ after transform: ["Object"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/bestCommonType/bestCommonTypeOfConditionalExpressions.ts -semantic error: Bindings mismatch: -after transform: ScopeId(10): ["T", "U", "t", "u"] -rebuilt : ScopeId(10): ["t", "u"] -Symbol reference IDs mismatch for "Base": +semantic error: Symbol reference IDs mismatch for "Base": after transform: SymbolId(2): [ReferenceId(0), ReferenceId(1), ReferenceId(2), ReferenceId(13)] rebuilt : SymbolId(2): [ReferenceId(0), ReferenceId(1)] Symbol reference IDs mismatch for "Derived": @@ -57897,16 +50509,7 @@ after transform: ["Object"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/bestCommonType/bestCommonTypeOfConditionalExpressions2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(4): ["T", "U", "t", "u"] -rebuilt : ScopeId(4): ["t", "u"] -Bindings mismatch: -after transform: ScopeId(5): ["T", "U", "t", "u"] -rebuilt : ScopeId(5): ["t", "u"] -Bindings mismatch: -after transform: ScopeId(6): ["T", "U", "V", "t", "u"] -rebuilt : ScopeId(6): ["t", "u"] -Symbol reference IDs mismatch for "Base": +semantic error: Symbol reference IDs mismatch for "Base": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(1)] Symbol reference IDs mismatch for "Derived": @@ -57916,19 +50519,8 @@ Symbol reference IDs mismatch for "Derived2": after transform: SymbolId(2): [ReferenceId(4)] rebuilt : SymbolId(2): [] -tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/bestCommonType/functionWithMultipleReturnStatements.ts -semantic error: Bindings mismatch: -after transform: ScopeId(18): ["T", "U", "x", "y"] -rebuilt : ScopeId(18): ["x", "y"] -Bindings mismatch: -after transform: ScopeId(21): ["T", "U", "V", "x", "y"] -rebuilt : ScopeId(21): ["x", "y"] - tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/bestCommonType/functionWithMultipleReturnStatements2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(14): ["T", "x"] -rebuilt : ScopeId(14): ["x"] -Unresolved reference IDs mismatch for "Object": +semantic error: Unresolved reference IDs mismatch for "Object": after transform: [ReferenceId(1), ReferenceId(8), ReferenceId(9)] rebuilt : [ReferenceId(1)] @@ -57955,18 +50547,6 @@ rebuilt : ScopeId(29): [SymbolId(32), SymbolId(33), SymbolId(34), SymbolI Scope flags mismatch: after transform: ScopeId(29): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(29): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(32): ["T", "U", "a", "b", "c", "d", "e", "f", "t", "u"] -rebuilt : ScopeId(32): ["a", "b", "c", "d", "e", "f", "t", "u"] -Bindings mismatch: -after transform: ScopeId(38): ["T", "U", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "t", "u"] -rebuilt : ScopeId(38): ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "t", "u"] -Bindings mismatch: -after transform: ScopeId(44): ["T", "U", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "t", "u"] -rebuilt : ScopeId(44): ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "t", "u"] -Bindings mismatch: -after transform: ScopeId(50): ["T", "U", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "t", "u"] -rebuilt : ScopeId(50): ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "t", "u"] Symbol reference IDs mismatch for "Base": after transform: SymbolId(14): [ReferenceId(1), ReferenceId(2), ReferenceId(3), ReferenceId(27), ReferenceId(32), ReferenceId(47), ReferenceId(91), ReferenceId(92), ReferenceId(113)] rebuilt : SymbolId(14): [ReferenceId(1), ReferenceId(2)] @@ -57984,10 +50564,7 @@ after transform: SymbolId(16): [ReferenceId(5)] rebuilt : SymbolId(16): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/comparable/equalityWithUnionTypes01.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["I1", "I2", "x", "y", "z"] -rebuilt : ScopeId(0): ["x", "y", "z"] -Scope children mismatch: +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)] @@ -58006,24 +50583,18 @@ after transform: [] rebuilt : ["x", "y"] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/comparable/optionalProperties01.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo", "foo1", "foo2"] -rebuilt : ScopeId(0): ["foo1", "foo2"] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/comparable/optionalProperties02.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Foo"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/comparable/weakTypesAndLiterals01.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["LiteralsOrWeakTypes", "WeakTypes", "aOrB", "f", "g", "h", "i"] +after transform: ScopeId(0): ["aOrB", "f", "g", "h", "i"] rebuilt : ScopeId(0): ["f", "g", "h", "i"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(8), ScopeId(11), ScopeId(14)] @@ -58039,16 +50610,7 @@ after transform: ["true"] rebuilt : ["aOrB"] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/instanceOf/narrowingConstrainedTypeVariable.ts -semantic error: Bindings mismatch: -after transform: ScopeId(2): ["T", "v"] -rebuilt : ScopeId(2): ["v"] -Bindings mismatch: -after transform: ScopeId(6): ["T", "U", "v"] -rebuilt : ScopeId(6): ["v"] -Bindings mismatch: -after transform: ScopeId(10): ["T", "v"] -rebuilt : ScopeId(10): ["v"] -Symbol reference IDs mismatch for "C": +semantic error: Symbol reference IDs mismatch for "C": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(3), ReferenceId(7), ReferenceId(12)] rebuilt : SymbolId(0): [ReferenceId(1), ReferenceId(5)] Symbol reference IDs mismatch for "D": @@ -58059,16 +50621,7 @@ after transform: SymbolId(13): [ReferenceId(17), ReferenceId(20)] rebuilt : SymbolId(10): [ReferenceId(9)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/recursiveTypes/arrayLiteralsWithRecursiveGenerics.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(2): ["U"] -rebuilt : ScopeId(2): [] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] -Symbol reference IDs mismatch for "List": +semantic error: Symbol reference IDs mismatch for "List": after transform: SymbolId(0): [ReferenceId(1), ReferenceId(2), ReferenceId(4), ReferenceId(11), ReferenceId(12)] rebuilt : SymbolId(0): [ReferenceId(0)] Symbol reference IDs mismatch for "DerivedList": @@ -58079,51 +50632,27 @@ after transform: SymbolId(4): [ReferenceId(8), ReferenceId(9), ReferenceId(13)] rebuilt : SymbolId(2): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/recursiveTypes/infiniteExpansionThroughInstantiation2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["AA", "BB"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +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", "g"] -rebuilt : ScopeId(1): ["g"] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/recursiveTypes/nominalSubtypeCheckOfTypeParameter.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["BinaryTuple", "List", "Sequence"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: 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: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] -Bindings mismatch: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] -Symbol reference IDs mismatch for "G": +semantic error: Symbol reference IDs mismatch for "G": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(3), ReferenceId(6), ReferenceId(7)] rebuilt : SymbolId(0): [] Symbol reference IDs mismatch for "D": @@ -58134,33 +50663,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/recurs 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: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] -Bindings mismatch: -after transform: ScopeId(5): ["T", "x"] -rebuilt : ScopeId(3): ["x"] -Bindings mismatch: -after transform: ScopeId(8): ["T", "x"] -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"] -Bindings mismatch: -after transform: ScopeId(13): ["V", "x"] -rebuilt : ScopeId(7): ["x"] -Bindings mismatch: -after transform: ScopeId(17): ["V", "x"] -rebuilt : ScopeId(8): ["x"] Symbol reference IDs mismatch for "List": after transform: SymbolId(0): [ReferenceId(1), ReferenceId(2), ReferenceId(8), ReferenceId(10), ReferenceId(12), ReferenceId(14), ReferenceId(18), ReferenceId(24), ReferenceId(27), ReferenceId(31)] rebuilt : SymbolId(0): [] @@ -58173,30 +50678,15 @@ 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 tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/stringLiteralTypeIsSubtypeOfString.ts -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: +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(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"] -Bindings mismatch: -after transform: ScopeId(61): ["T", "x"] -rebuilt : ScopeId(34): ["x"] -Bindings mismatch: after transform: ScopeId(62): ["A", "E"] rebuilt : ScopeId(35): ["E"] Scope flags mismatch: after transform: ScopeId(62): ScopeFlags(0x0) rebuilt : ScopeId(35): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(68): ["T", "U", "x"] -rebuilt : ScopeId(37): ["x"] -Bindings mismatch: -after transform: ScopeId(71): ["T", "U", "x"] -rebuilt : ScopeId(38): ["x"] Symbol reference IDs mismatch for "C": after transform: SymbolId(36): [ReferenceId(5)] rebuilt : SymbolId(18): [] @@ -58218,11 +50708,6 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtyp 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 -tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypesOfTypeParameterWithConstraints3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "U", "V", "r", "r2", "r3", "t", "u", "v"] -rebuilt : ScopeId(1): ["r", "r2", "r3", "t", "u", "v"] - tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithCallSignatures.ts semantic error: Missing SymbolId: "CallSignature" Missing SymbolId: "_CallSignature" @@ -58240,71 +50725,11 @@ rebuilt : ScopeId(1): ScopeFlags(Function) 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)] -Bindings mismatch: -after transform: ScopeId(5): ["T", "x"] -rebuilt : ScopeId(3): ["x"] -Bindings mismatch: -after transform: ScopeId(9): ["T", "x"] -rebuilt : ScopeId(5): ["x"] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithCallSignatures2.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), 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: -after transform: ScopeId(43): ["T", "x"] -rebuilt : ScopeId(7): ["x"] -Bindings mismatch: -after transform: ScopeId(45): ["T", "x"] -rebuilt : ScopeId(9): ["x"] -Bindings mismatch: -after transform: ScopeId(47): ["T", "U", "x", "y"] -rebuilt : ScopeId(11): ["x", "y"] -Bindings mismatch: -after transform: ScopeId(49): ["T", "U", "x"] -rebuilt : ScopeId(13): ["x"] -Bindings mismatch: -after transform: ScopeId(51): ["T", "U", "x"] -rebuilt : ScopeId(15): ["x"] -Bindings mismatch: -after transform: ScopeId(53): ["T", "U", "x"] -rebuilt : ScopeId(17): ["x"] -Bindings mismatch: -after transform: ScopeId(57): ["T", "U", "x", "y"] -rebuilt : ScopeId(21): ["x", "y"] -Bindings mismatch: -after transform: ScopeId(61): ["T", "U", "x", "y"] -rebuilt : ScopeId(25): ["x", "y"] -Bindings mismatch: -after transform: ScopeId(65): ["T", "x"] -rebuilt : ScopeId(29): ["x"] -Bindings mismatch: -after transform: ScopeId(67): ["T", "x", "y"] -rebuilt : ScopeId(31): ["x", "y"] -Bindings mismatch: -after transform: ScopeId(69): ["T", "x", "y"] -rebuilt : ScopeId(33): ["x", "y"] -Bindings mismatch: -after transform: ScopeId(71): ["T", "x", "y"] -rebuilt : ScopeId(35): ["x", "y"] -Bindings mismatch: -after transform: ScopeId(73): ["T", "x"] -rebuilt : ScopeId(37): ["x"] -Bindings mismatch: -after transform: ScopeId(75): ["T", "x"] -rebuilt : ScopeId(39): ["x"] -Bindings mismatch: -after transform: ScopeId(76): ["T", "x"] -rebuilt : ScopeId(40): ["x"] -Bindings mismatch: -after transform: ScopeId(77): ["T", "x"] -rebuilt : ScopeId(41): ["x"] -Bindings mismatch: -after transform: ScopeId(78): ["T", "x"] -rebuilt : ScopeId(42): ["x"] Symbol reference IDs mismatch for "Base": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2), ReferenceId(8), ReferenceId(10), ReferenceId(12), ReferenceId(14), ReferenceId(17), ReferenceId(19), ReferenceId(21), ReferenceId(24), ReferenceId(26), ReferenceId(28), ReferenceId(34), ReferenceId(37), ReferenceId(44), ReferenceId(55), ReferenceId(103), ReferenceId(108), ReferenceId(110), ReferenceId(117), ReferenceId(123), ReferenceId(125), ReferenceId(133), ReferenceId(141), ReferenceId(143), ReferenceId(145), ReferenceId(153), ReferenceId(160), ReferenceId(162), ReferenceId(164), ReferenceId(183), ReferenceId(187), ReferenceId(195), ReferenceId(197), ReferenceId(202), ReferenceId(216), ReferenceId(220), ReferenceId(245)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(2)] @@ -58339,42 +50764,6 @@ rebuilt : ScopeId(1): ScopeFlags(Function) 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), 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(35), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47)] rebuilt : 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(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)] -Bindings mismatch: -after transform: ScopeId(24): ["T", "U", "x"] -rebuilt : ScopeId(6): ["x"] -Bindings mismatch: -after transform: ScopeId(26): ["T", "U", "x"] -rebuilt : ScopeId(8): ["x"] -Bindings mismatch: -after transform: ScopeId(27): ["T", "U", "x"] -rebuilt : ScopeId(9): ["x"] -Bindings mismatch: -after transform: ScopeId(29): ["T", "U", "V", "x"] -rebuilt : ScopeId(11): ["x"] -Bindings mismatch: -after transform: ScopeId(33): ["T", "U", "x", "y"] -rebuilt : ScopeId(15): ["x", "y"] -Bindings mismatch: -after transform: ScopeId(37): ["T", "x"] -rebuilt : ScopeId(19): ["x"] -Bindings mismatch: -after transform: ScopeId(39): ["T", "x", "y"] -rebuilt : ScopeId(21): ["x", "y"] -Bindings mismatch: -after transform: ScopeId(42): ["T", "x", "y"] -rebuilt : ScopeId(24): ["x", "y"] -Bindings mismatch: -after transform: ScopeId(43): ["T", "x"] -rebuilt : ScopeId(25): ["x"] -Bindings mismatch: -after transform: ScopeId(45): ["T", "x"] -rebuilt : ScopeId(27): ["x"] -Bindings mismatch: -after transform: ScopeId(46): ["T", "x"] -rebuilt : ScopeId(28): ["x"] -Bindings mismatch: -after transform: ScopeId(47): ["T", "x"] -rebuilt : ScopeId(29): ["x"] Binding symbols mismatch: after transform: ScopeId(48): [SymbolId(117), SymbolId(120), SymbolId(124), SymbolId(127), SymbolId(129)] rebuilt : ScopeId(30): [SymbolId(78), SymbolId(79), SymbolId(81), SymbolId(82), SymbolId(84)] @@ -58384,12 +50773,6 @@ rebuilt : ScopeId(30): ScopeFlags(Function) Scope children mismatch: after transform: ScopeId(48): [ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54)] rebuilt : ScopeId(30): [ScopeId(31), ScopeId(32)] -Bindings mismatch: -after transform: ScopeId(51): ["T", "x"] -rebuilt : ScopeId(31): ["x"] -Bindings mismatch: -after transform: ScopeId(54): ["T", "x"] -rebuilt : ScopeId(32): ["x"] Symbol reference IDs mismatch for "Base": after transform: SymbolId(1): [ReferenceId(0), ReferenceId(2), ReferenceId(4), ReferenceId(6), ReferenceId(9), ReferenceId(11), ReferenceId(13), ReferenceId(16), ReferenceId(17), ReferenceId(19), ReferenceId(22), ReferenceId(33), ReferenceId(39), ReferenceId(50), ReferenceId(57), ReferenceId(59), ReferenceId(67), ReferenceId(74), ReferenceId(76), ReferenceId(78), ReferenceId(89), ReferenceId(90), ReferenceId(101), ReferenceId(109), ReferenceId(117), ReferenceId(119), ReferenceId(136)] rebuilt : SymbolId(2): [ReferenceId(0), ReferenceId(2)] @@ -58407,66 +50790,6 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtyp 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: -after transform: ScopeId(28): ["T", "x"] -rebuilt : ScopeId(6): ["x"] -Bindings mismatch: -after transform: ScopeId(29): ["T", "x"] -rebuilt : ScopeId(7): ["x"] -Bindings mismatch: -after transform: ScopeId(30): ["T", "x"] -rebuilt : ScopeId(8): ["x"] -Bindings mismatch: -after transform: ScopeId(31): ["T", "x"] -rebuilt : ScopeId(9): ["x"] -Bindings mismatch: -after transform: ScopeId(32): ["T", "x"] -rebuilt : ScopeId(10): ["x"] -Bindings mismatch: -after transform: ScopeId(33): ["T", "U", "x", "y"] -rebuilt : ScopeId(11): ["x", "y"] -Bindings mismatch: -after transform: ScopeId(34): ["T", "U", "x", "y"] -rebuilt : ScopeId(12): ["x", "y"] -Bindings mismatch: -after transform: ScopeId(35): ["T", "U", "x"] -rebuilt : ScopeId(13): ["x"] -Bindings mismatch: -after transform: ScopeId(36): ["T", "U", "x"] -rebuilt : ScopeId(14): ["x"] -Bindings mismatch: -after transform: ScopeId(37): ["T", "U", "x"] -rebuilt : ScopeId(15): ["x"] -Bindings mismatch: -after transform: ScopeId(38): ["T", "x"] -rebuilt : ScopeId(16): ["x"] -Bindings mismatch: -after transform: ScopeId(39): ["T", "U", "x", "y"] -rebuilt : ScopeId(17): ["x", "y"] -Bindings mismatch: -after transform: ScopeId(40): ["T", "x", "y"] -rebuilt : ScopeId(18): ["x", "y"] -Bindings mismatch: -after transform: ScopeId(41): ["U", "V", "x"] -rebuilt : ScopeId(19): ["x"] -Bindings mismatch: -after transform: ScopeId(42): ["T", "x"] -rebuilt : ScopeId(20): ["x"] -Bindings mismatch: -after transform: ScopeId(43): ["T", "x"] -rebuilt : ScopeId(21): ["x"] -Bindings mismatch: -after transform: ScopeId(44): ["T", "x"] -rebuilt : ScopeId(22): ["x"] -Bindings mismatch: -after transform: ScopeId(45): ["T", "x"] -rebuilt : ScopeId(23): ["x"] -Bindings mismatch: -after transform: ScopeId(46): ["T", "x"] -rebuilt : ScopeId(24): ["x"] Symbol reference IDs mismatch for "Base": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2), ReferenceId(12), ReferenceId(19), ReferenceId(23), ReferenceId(31), ReferenceId(38), ReferenceId(44), ReferenceId(96), ReferenceId(101), ReferenceId(114), ReferenceId(118), ReferenceId(137), ReferenceId(141)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(2)] @@ -58485,9 +50808,9 @@ Missing ReferenceId: "ConstructSignature" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0)] rebuilt : ScopeId(0): [SymbolId(0)] -Bindings mismatch: -after transform: ScopeId(1): ["T", "_ConstructSignature", "r", "r2", "r3", "r3arg1", "r4", "r4arg1", "rarg1", "rarg2"] -rebuilt : ScopeId(1): ["_ConstructSignature", "r", "r2", "r3", "r3arg1", "r4", "r4arg1", "rarg1", "rarg2"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(3), SymbolId(4), SymbolId(5), SymbolId(7), SymbolId(10), SymbolId(11), SymbolId(12), SymbolId(13), SymbolId(14)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8), SymbolId(9)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -58496,10 +50819,7 @@ after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithConstructSignatures2.ts -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: +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(36), ScopeId(37), ScopeId(40), ScopeId(41), ScopeId(44), ScopeId(45), ScopeId(52)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Symbol reference IDs mismatch for "Base": @@ -58527,18 +50847,18 @@ Missing ReferenceId: "WithGenericSignaturesInBaseType" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(73)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(49)] -Bindings mismatch: -after transform: ScopeId(1): ["Base", "Derived", "Derived2", "OtherDerived", "T", "U", "V", "_Errors", "r1", "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", "r7arg3", "r7b", "r7c", "r7d", "r7e", "r8", "r8arg", "r9", "r9arg"] -rebuilt : ScopeId(1): ["Base", "Derived", "Derived2", "OtherDerived", "_Errors", "r1", "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", "r7arg3", "r7b", "r7c", "r7d", "r7e", "r8", "r8arg", "r9", "r9arg"] +Binding symbols mismatch: +after transform: ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(27), SymbolId(30), SymbolId(31), SymbolId(32), SymbolId(33), SymbolId(34), SymbolId(36), SymbolId(37), SymbolId(38), SymbolId(39), SymbolId(40), SymbolId(41), SymbolId(42), SymbolId(43), SymbolId(44), SymbolId(45), SymbolId(46), SymbolId(47), SymbolId(48), SymbolId(49), SymbolId(50), SymbolId(51), SymbolId(52), SymbolId(53), SymbolId(54), SymbolId(55), SymbolId(56), SymbolId(57), SymbolId(58), SymbolId(59), SymbolId(60), SymbolId(61), SymbolId(62), SymbolId(63), SymbolId(64), SymbolId(65), SymbolId(66), SymbolId(67), SymbolId(68), SymbolId(69), SymbolId(70), SymbolId(71), SymbolId(72), SymbolId(85)] +rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4), SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(8), SymbolId(9), SymbolId(10), SymbolId(11), SymbolId(12), SymbolId(13), SymbolId(14), SymbolId(15), SymbolId(16), SymbolId(17), SymbolId(18), SymbolId(19), SymbolId(20), SymbolId(21), SymbolId(22), SymbolId(23), SymbolId(24), SymbolId(25), SymbolId(26), SymbolId(27), SymbolId(28), SymbolId(29), SymbolId(30), SymbolId(31), SymbolId(32), SymbolId(33), SymbolId(34), SymbolId(35), SymbolId(36), SymbolId(37), SymbolId(38), SymbolId(39), SymbolId(40), SymbolId(41), SymbolId(42), SymbolId(43), SymbolId(44), SymbolId(45), SymbolId(46), SymbolId(47), SymbolId(48)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) 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), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(27), ScopeId(28), ScopeId(35)] rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] -Bindings mismatch: -after transform: ScopeId(36): ["T", "_WithGenericSignaturesInBaseType", "r2", "r2arg2", "r3", "r3arg2"] -rebuilt : ScopeId(6): ["_WithGenericSignaturesInBaseType", "r2", "r2arg2", "r3", "r3arg2"] +Binding symbols mismatch: +after transform: ScopeId(36): [SymbolId(77), SymbolId(79), SymbolId(83), SymbolId(84), SymbolId(86)] +rebuilt : ScopeId(6): [SymbolId(50), SymbolId(51), SymbolId(52), SymbolId(53), SymbolId(54)] Scope flags mismatch: after transform: ScopeId(36): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(6): ScopeFlags(Function) @@ -58559,10 +50879,7 @@ after transform: ["Array", "foo10", "foo11", "foo12", "foo15", "foo16", "foo17", rebuilt : ["foo10", "foo11", "foo12", "foo15", "foo16", "foo17", "foo2", "foo3", "foo7", "foo8"] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithConstructSignatures4.ts -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: +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(26), ScopeId(27), ScopeId(34)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Symbol reference IDs mismatch for "Base": @@ -58576,10 +50893,7 @@ after transform: SymbolId(2): [ReferenceId(41)] rebuilt : SymbolId(2): [] 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: +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)] Symbol reference IDs mismatch for "Base": @@ -58608,15 +50922,15 @@ semantic error: Missing SymbolId: "TwoLevels" Missing SymbolId: "_TwoLevels" Missing ReferenceId: "TwoLevels" Missing ReferenceId: "TwoLevels" -Bindings mismatch: -after transform: ScopeId(0): ["Base", "Derived", "Derived2", "S", "S2", "S3", "T", "T2", "T3", "TwoLevels", "a", "b", "r"] -rebuilt : ScopeId(0): ["TwoLevels", "a", "b", "r"] +Binding symbols mismatch: +after transform: ScopeId(0): [SymbolId(9), SymbolId(10), SymbolId(11), SymbolId(12)] +rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3)] 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(10): ["S", "S2", "S3", "T", "T2", "T3", "_TwoLevels", "a", "b", "r"] -rebuilt : ScopeId(1): ["_TwoLevels", "a", "b", "r"] +Binding symbols mismatch: +after transform: ScopeId(10): [SymbolId(19), SymbolId(20), SymbolId(21), SymbolId(22)] +rebuilt : ScopeId(1): [SymbolId(4), SymbolId(5), SymbolId(6), SymbolId(7)] Scope flags mismatch: after transform: ScopeId(10): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) @@ -58625,40 +50939,23 @@ after transform: ScopeId(10): [ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14 rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembersOptionality3.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: +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)] 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: +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)] rebuilt : ScopeId(0): [] -tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithOptionalProperties.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "a", "b"] -rebuilt : ScopeId(1): ["a", "b"] - tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/undefinedIsSubtypeOfEverything.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 tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentity.ts -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: +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(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): [] Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(1), ReferenceId(2), ReferenceId(13), ReferenceId(15), ReferenceId(17), ReferenceId(19)] rebuilt : SymbolId(0): [] @@ -58676,16 +50973,10 @@ after transform: SymbolId(6): [ReferenceId(11), ReferenceId(12), ReferenceId(28) rebuilt : SymbolId(4): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentity2.ts -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: +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)] 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): [] -Bindings mismatch: after transform: ScopeId(5): ["A", "E"] rebuilt : ScopeId(4): ["E"] Scope flags mismatch: @@ -58714,15 +51005,9 @@ after transform: ["Date", "RegExp"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithCallSignatures.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: +semantic error: 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): [] Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(4), ReferenceId(5), ReferenceId(16), ReferenceId(18), ReferenceId(20), ReferenceId(22)] rebuilt : SymbolId(0): [] @@ -58740,15 +51025,9 @@ after transform: SymbolId(11): [ReferenceId(14), ReferenceId(15), ReferenceId(31 rebuilt : SymbolId(7): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithCallSignatures2.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: +semantic error: 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): [] Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(6), ReferenceId(7), ReferenceId(18), ReferenceId(20), ReferenceId(22), ReferenceId(24)] rebuilt : SymbolId(0): [] @@ -58769,15 +51048,9 @@ after transform: ["Date", "RegExp"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithCallSignaturesDifferingParamCounts.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: +semantic error: 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): [] Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(5), ReferenceId(6), ReferenceId(17), ReferenceId(19), ReferenceId(21), ReferenceId(23)] rebuilt : SymbolId(0): [] @@ -58795,10 +51068,7 @@ after transform: SymbolId(13): [ReferenceId(15), ReferenceId(16), ReferenceId(32 rebuilt : SymbolId(9): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithCallSignaturesDifferingParamCounts2.ts -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: +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)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] Symbol reference IDs mismatch for "a": @@ -58806,10 +51076,7 @@ after transform: SymbolId(3): [ReferenceId(4), ReferenceId(5), ReferenceId(11), rebuilt : SymbolId(0): [] 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: +semantic error: 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: @@ -58818,9 +51085,6 @@ 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)] @@ -58841,23 +51105,14 @@ after transform: SymbolId(18): [ReferenceId(14), ReferenceId(15), ReferenceId(31 rebuilt : SymbolId(7): [] 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: +semantic error: 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: +semantic error: 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): [] Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(3), ReferenceId(4), ReferenceId(13), ReferenceId(15), ReferenceId(17), ReferenceId(19)] rebuilt : SymbolId(0): [] @@ -58872,15 +51127,9 @@ after transform: SymbolId(10): [ReferenceId(11), ReferenceId(12), ReferenceId(20 rebuilt : SymbolId(6): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithConstructSignatures2.ts -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: +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), 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): [] Symbol reference IDs mismatch for "B": after transform: SymbolId(0): [ReferenceId(5), ReferenceId(6), ReferenceId(15), ReferenceId(17), ReferenceId(19), ReferenceId(21)] rebuilt : SymbolId(0): [] @@ -58898,15 +51147,9 @@ after transform: ["Date", "RegExp"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithConstructSignaturesDifferingParamCounts.ts -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: +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), 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): [] Symbol reference IDs mismatch for "B": after transform: SymbolId(0): [ReferenceId(4), ReferenceId(5), ReferenceId(14), ReferenceId(16), ReferenceId(18), ReferenceId(20)] rebuilt : SymbolId(0): [] @@ -58921,24 +51164,9 @@ after transform: SymbolId(11): [ReferenceId(12), ReferenceId(13), ReferenceId(21 rebuilt : SymbolId(7): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignatures.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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(5): ["T"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(12): ["T", "x"] -rebuilt : ScopeId(7): ["x"] Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(14), ReferenceId(15), ReferenceId(26), ReferenceId(28), ReferenceId(30), ReferenceId(32)] rebuilt : SymbolId(0): [] @@ -58956,24 +51184,9 @@ after transform: SymbolId(15): [ReferenceId(24), ReferenceId(25), ReferenceId(41 rebuilt : SymbolId(7): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignatures2.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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(3): ["T", "U"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(5): ["T", "U"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(12): ["T", "U", "x", "y"] -rebuilt : ScopeId(7): ["x", "y"] Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(21), ReferenceId(22), ReferenceId(33), ReferenceId(35), ReferenceId(37), ReferenceId(39)] rebuilt : SymbolId(0): [] @@ -58991,24 +51204,9 @@ after transform: SymbolId(24): [ReferenceId(31), ReferenceId(32), ReferenceId(48 rebuilt : SymbolId(10): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingByConstraints.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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(5): ["T"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(12): ["T", "x"] -rebuilt : ScopeId(7): ["x"] Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(14), ReferenceId(15), ReferenceId(32), ReferenceId(35), ReferenceId(38), ReferenceId(41)] rebuilt : SymbolId(0): [] @@ -59029,27 +51227,9 @@ after transform: ["Array", "Boolean", "Date", "Number", "RegExp", "String"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingByConstraints2.ts -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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(3): ["T", "U"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(5): ["T", "U"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(7): ["T", "U"] -rebuilt : ScopeId(7): [] -Bindings mismatch: -after transform: ScopeId(14): ["T", "U", "x", "y"] -rebuilt : ScopeId(9): ["x", "y"] Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(32), ReferenceId(33), ReferenceId(56), ReferenceId(60), ReferenceId(75), ReferenceId(79)] rebuilt : SymbolId(0): [] @@ -59073,27 +51253,9 @@ after transform: ["Array", "Boolean", "Date", "Number", "RegExp", "String"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingByConstraints3.ts -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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(9): ["T", "U"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(11): ["T", "U"] -rebuilt : ScopeId(7): [] -Bindings mismatch: -after transform: ScopeId(13): ["T", "U"] -rebuilt : ScopeId(9): [] -Bindings mismatch: -after transform: ScopeId(20): ["T", "U", "x", "y"] -rebuilt : ScopeId(11): ["x", "y"] Symbol reference IDs mismatch for "One": after transform: SymbolId(0): [ReferenceId(5), ReferenceId(29)] rebuilt : SymbolId(0): [] @@ -59120,24 +51282,9 @@ after transform: SymbolId(39): [ReferenceId(58), ReferenceId(59), ReferenceId(10 rebuilt : SymbolId(15): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingByReturnType.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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(5): ["T"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(12): ["T", "x"] -rebuilt : ScopeId(7): ["x"] Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(10), ReferenceId(11), ReferenceId(22), ReferenceId(24), ReferenceId(26), ReferenceId(28)] rebuilt : SymbolId(0): [] @@ -59158,24 +51305,9 @@ after transform: ["Date", "RegExp"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingByReturnType2.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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(5): ["T"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(12): ["T", "x"] -rebuilt : ScopeId(7): ["x"] Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(17), ReferenceId(18), ReferenceId(35), ReferenceId(38), ReferenceId(41), ReferenceId(44)] rebuilt : SymbolId(0): [] @@ -59196,24 +51328,9 @@ after transform: ["Date", "RegExp"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingTypeParameterCounts.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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(3): ["U", "V"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(5): ["V", "W", "X"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(12): ["A", "B", "C", "D", "E", "F", "x"] -rebuilt : ScopeId(7): ["x"] Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(14), ReferenceId(15), ReferenceId(26), ReferenceId(28), ReferenceId(30), ReferenceId(33)] rebuilt : SymbolId(0): [] @@ -59234,10 +51351,7 @@ after transform: ["Date", "RegExp"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingTypeParameterCounts2.ts -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: +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)] Symbol reference IDs mismatch for "a": @@ -59248,24 +51362,9 @@ after transform: ["Date"] rebuilt : [] 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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(3): ["U"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(5): ["V"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(12): ["A", "x"] -rebuilt : ScopeId(7): ["x"] Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(14), ReferenceId(15), ReferenceId(26), ReferenceId(28), ReferenceId(30), ReferenceId(32)] rebuilt : SymbolId(0): [] @@ -59283,24 +51382,9 @@ after transform: SymbolId(15): [ReferenceId(24), ReferenceId(25), ReferenceId(41 rebuilt : SymbolId(7): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesOptionalParams.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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(5): ["T"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(12): ["T", "x", "y"] -rebuilt : ScopeId(7): ["x", "y"] Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(21), ReferenceId(22), ReferenceId(33), ReferenceId(35), ReferenceId(37), ReferenceId(39)] rebuilt : SymbolId(0): [] @@ -59318,24 +51402,9 @@ after transform: SymbolId(18): [ReferenceId(31), ReferenceId(32), ReferenceId(48 rebuilt : SymbolId(10): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesOptionalParams2.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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(3): ["T", "U"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(5): ["T", "U"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(12): ["T", "U", "x", "y"] -rebuilt : ScopeId(7): ["x", "y"] Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(21), ReferenceId(22), ReferenceId(33), ReferenceId(35), ReferenceId(37), ReferenceId(39)] rebuilt : SymbolId(0): [] @@ -59353,24 +51422,9 @@ after transform: SymbolId(24): [ReferenceId(31), ReferenceId(32), ReferenceId(48 rebuilt : SymbolId(10): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesOptionalParams3.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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(3): ["T", "U"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(5): ["T", "U"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(12): ["T", "U", "x", "y"] -rebuilt : ScopeId(7): ["x", "y"] Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(21), ReferenceId(22), ReferenceId(33), ReferenceId(35), ReferenceId(37), ReferenceId(39)] rebuilt : SymbolId(0): [] @@ -59388,21 +51442,9 @@ after transform: SymbolId(24): [ReferenceId(31), ReferenceId(32), ReferenceId(48 rebuilt : SymbolId(10): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesDifferingByConstraints.ts -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: +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), 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): [] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(10): ["T", "x"] -rebuilt : ScopeId(5): ["x"] Symbol reference IDs mismatch for "B": after transform: SymbolId(0): [ReferenceId(12), ReferenceId(14), ReferenceId(28), ReferenceId(32), ReferenceId(36), ReferenceId(39)] rebuilt : SymbolId(0): [] @@ -59420,24 +51462,9 @@ after transform: ["Array", "Boolean", "Number", "RegExp", "String"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesDifferingByConstraints2.ts -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: +semantic error: 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): [] -Bindings mismatch: -after transform: ScopeId(3): ["T", "U"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(5): ["T", "U"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(12): ["T", "U", "x", "y"] -rebuilt : ScopeId(7): ["x", "y"] Symbol reference IDs mismatch for "B": after transform: SymbolId(0): [ReferenceId(28), ReferenceId(31), ReferenceId(61), ReferenceId(67), ReferenceId(73), ReferenceId(77)] rebuilt : SymbolId(0): [] @@ -59458,24 +51485,9 @@ after transform: ["Array", "Boolean", "Number", "RegExp", "String"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesDifferingByConstraints3.ts -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: +semantic error: 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): [] -Bindings mismatch: -after transform: ScopeId(9): ["T", "U"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(11): ["T", "U"] -rebuilt : ScopeId(7): [] -Bindings mismatch: -after transform: ScopeId(18): ["T", "U", "x", "y"] -rebuilt : ScopeId(9): ["x", "y"] Symbol reference IDs mismatch for "One": after transform: SymbolId(0): [ReferenceId(25)] rebuilt : SymbolId(0): [] @@ -59499,21 +51511,9 @@ after transform: SymbolId(34): [ReferenceId(52), ReferenceId(53), ReferenceId(85 rebuilt : SymbolId(12): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesDifferingByReturnType.ts -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: +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), 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): [] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(10): ["T", "x"] -rebuilt : ScopeId(5): ["x"] Symbol reference IDs mismatch for "B": after transform: SymbolId(0): [ReferenceId(10), ReferenceId(11), ReferenceId(22), ReferenceId(24), ReferenceId(26), ReferenceId(28)] rebuilt : SymbolId(0): [] @@ -59531,21 +51531,9 @@ after transform: ["Date", "RegExp"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesDifferingByReturnType2.ts -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: +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), 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): [] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(10): ["T", "x"] -rebuilt : ScopeId(5): ["x"] Symbol reference IDs mismatch for "B": after transform: SymbolId(0): [ReferenceId(15), ReferenceId(17), ReferenceId(31), ReferenceId(35), ReferenceId(39), ReferenceId(42)] rebuilt : SymbolId(0): [] @@ -59563,21 +51551,9 @@ after transform: ["Date", "RegExp"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesDifferingTypeParameterCounts.ts -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: +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), 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): [] -Bindings mismatch: -after transform: ScopeId(3): ["V", "W", "X"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(10): ["A", "B", "C", "D", "E", "F", "x"] -rebuilt : ScopeId(5): ["x"] Symbol reference IDs mismatch for "B": after transform: SymbolId(0): [ReferenceId(3), ReferenceId(18), ReferenceId(19), ReferenceId(28), ReferenceId(31), ReferenceId(33), ReferenceId(34), ReferenceId(36), ReferenceId(39), ReferenceId(42)] rebuilt : SymbolId(0): [] @@ -59595,21 +51571,9 @@ after transform: ["Date", "RegExp"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesDifferingTypeParameterNames.ts -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: +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), 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): [] -Bindings mismatch: -after transform: ScopeId(3): ["V"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(10): ["A", "x"] -rebuilt : ScopeId(5): ["x"] Symbol reference IDs mismatch for "B": after transform: SymbolId(0): [ReferenceId(3), ReferenceId(9), ReferenceId(15), ReferenceId(16), ReferenceId(25), ReferenceId(27), ReferenceId(29), ReferenceId(31)] rebuilt : SymbolId(0): [] @@ -59624,21 +51588,9 @@ after transform: SymbolId(12): [ReferenceId(23), ReferenceId(24), ReferenceId(32 rebuilt : SymbolId(5): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesOptionalParams.ts -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: +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), 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): [] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(10): ["T", "x", "y"] -rebuilt : ScopeId(5): ["x", "y"] Symbol reference IDs mismatch for "B": after transform: SymbolId(0): [ReferenceId(6), ReferenceId(14), ReferenceId(22), ReferenceId(23), ReferenceId(32), ReferenceId(34), ReferenceId(36), ReferenceId(38)] rebuilt : SymbolId(0): [] @@ -59653,21 +51605,9 @@ after transform: SymbolId(14): [ReferenceId(30), ReferenceId(31), ReferenceId(39 rebuilt : SymbolId(7): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesOptionalParams2.ts -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: +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), 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): [] -Bindings mismatch: -after transform: ScopeId(3): ["T", "U"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(10): ["T", "U", "x", "y"] -rebuilt : ScopeId(5): ["x", "y"] Symbol reference IDs mismatch for "B": after transform: SymbolId(0): [ReferenceId(6), ReferenceId(16), ReferenceId(26), ReferenceId(27), ReferenceId(36), ReferenceId(38), ReferenceId(40), ReferenceId(42)] rebuilt : SymbolId(0): [] @@ -59682,21 +51622,9 @@ after transform: SymbolId(19): [ReferenceId(34), ReferenceId(35), ReferenceId(43 rebuilt : SymbolId(7): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesOptionalParams3.ts -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: +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), 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): [] -Bindings mismatch: -after transform: ScopeId(3): ["T", "U"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(10): ["T", "U", "x", "y"] -rebuilt : ScopeId(5): ["x", "y"] Symbol reference IDs mismatch for "B": after transform: SymbolId(0): [ReferenceId(6), ReferenceId(16), ReferenceId(26), ReferenceId(27), ReferenceId(36), ReferenceId(38), ReferenceId(40), ReferenceId(42)] rebuilt : SymbolId(0): [] @@ -59711,15 +51639,9 @@ after transform: SymbolId(19): [ReferenceId(34), ReferenceId(35), ReferenceId(43 rebuilt : SymbolId(7): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithNumericIndexers1.ts -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: +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(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): [] Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(1), ReferenceId(3), ReferenceId(4), ReferenceId(15), ReferenceId(17), ReferenceId(19), ReferenceId(21), ReferenceId(23), ReferenceId(25)] rebuilt : SymbolId(0): [ReferenceId(0)] @@ -59743,15 +51665,9 @@ after transform: SymbolId(8): [ReferenceId(13), ReferenceId(14), ReferenceId(34) rebuilt : SymbolId(6): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithNumericIndexers2.ts -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: +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(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): [] Symbol reference IDs mismatch for "Base": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(7), ReferenceId(39)] rebuilt : SymbolId(0): [ReferenceId(0)] @@ -59781,15 +51697,9 @@ after transform: SymbolId(10): [ReferenceId(20), ReferenceId(21), ReferenceId(43 rebuilt : SymbolId(8): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithNumericIndexers3.ts -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: +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(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): [] Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(1), ReferenceId(3), ReferenceId(4), ReferenceId(15), ReferenceId(17), ReferenceId(19), ReferenceId(21), ReferenceId(23), ReferenceId(25)] rebuilt : SymbolId(0): [ReferenceId(0)] @@ -59813,15 +51723,9 @@ after transform: SymbolId(8): [ReferenceId(13), ReferenceId(14), ReferenceId(34) rebuilt : SymbolId(6): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithOptionality.ts -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: +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)] 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): [] Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(5), ReferenceId(7)] rebuilt : SymbolId(0): [] @@ -59839,15 +51743,9 @@ after transform: SymbolId(6): [ReferenceId(18)] rebuilt : SymbolId(4): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithPrivates.ts -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: +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(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): [] Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(1), ReferenceId(3), ReferenceId(4), ReferenceId(15), ReferenceId(17), ReferenceId(19), ReferenceId(21), ReferenceId(23), ReferenceId(25)] rebuilt : SymbolId(0): [ReferenceId(0)] @@ -59874,12 +51772,6 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn 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: -after transform: ScopeId(2): ["T"] -rebuilt : ScopeId(2): [] Symbol reference IDs mismatch for "C": after transform: SymbolId(0): [ReferenceId(1), ReferenceId(3), ReferenceId(4), ReferenceId(7), ReferenceId(9), ReferenceId(12), ReferenceId(15), ReferenceId(16)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(2)] @@ -59888,15 +51780,9 @@ after transform: SymbolId(2): [ReferenceId(5), ReferenceId(6), ReferenceId(8), R rebuilt : SymbolId(1): [ReferenceId(4)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithPublics.ts -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: +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(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): [] Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(1), ReferenceId(2), ReferenceId(13), ReferenceId(15), ReferenceId(17), ReferenceId(19)] rebuilt : SymbolId(0): [] @@ -59914,15 +51800,9 @@ after transform: SymbolId(6): [ReferenceId(11), ReferenceId(12), ReferenceId(28) rebuilt : SymbolId(4): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithStringIndexers.ts -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: +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(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): [] Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(1), ReferenceId(3), ReferenceId(4), ReferenceId(15), ReferenceId(17), ReferenceId(19), ReferenceId(21), ReferenceId(23), ReferenceId(25)] rebuilt : SymbolId(0): [ReferenceId(0)] @@ -59946,15 +51826,9 @@ after transform: SymbolId(8): [ReferenceId(13), ReferenceId(14), ReferenceId(34) rebuilt : SymbolId(6): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithStringIndexers2.ts -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: +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(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): [] Symbol reference IDs mismatch for "Base": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(7), ReferenceId(39)] rebuilt : SymbolId(0): [ReferenceId(0)] @@ -60001,58 +51875,25 @@ after transform: SymbolId(21): [ReferenceId(0), ReferenceId(1), ReferenceId(5)] rebuilt : SymbolId(10): [ReferenceId(3)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/typeParametersAreIdenticalToThemselves.ts -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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(6): ["T", "U", "x"] -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"] -Bindings mismatch: -after transform: ScopeId(23): ["T", "x"] -rebuilt : ScopeId(9): ["x"] -Bindings mismatch: -after transform: ScopeId(26): ["T", "x"] -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"] -Bindings mismatch: -after transform: ScopeId(36): ["T", "x"] -rebuilt : ScopeId(14): ["x"] Unresolved references mismatch: after transform: ["Date"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/bivariantInferences.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Array", "a", "b", "x"] +after transform: ScopeId(0): ["a", "b", "x"] rebuilt : ScopeId(0): ["x"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] @@ -60068,99 +51909,24 @@ after transform: ["ReadonlyArray"] rebuilt : ["a", "b"] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/discriminatedUnionInference.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Bar", "Foo", "FooA", "FooBar", "InferA", "Item", "x1", "x2"] -rebuilt : ScopeId(0): ["x1", "x2"] -Scope children mismatch: +semantic error: 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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(2): ["T", "U", "t", "u"] -rebuilt : ScopeId(2): ["t", "u"] -Bindings mismatch: -after transform: ScopeId(3): ["T", "U", "u", "x"] -rebuilt : ScopeId(3): ["u", "x"] -Bindings mismatch: -after transform: ScopeId(4): ["T", "U"] -rebuilt : ScopeId(4): [] -Bindings mismatch: -after transform: ScopeId(8): ["T", "t", "u"] -rebuilt : ScopeId(8): ["t", "u"] -Bindings mismatch: -after transform: ScopeId(9): ["U", "t", "u"] -rebuilt : ScopeId(9): ["t", "u"] -Bindings mismatch: -after transform: ScopeId(10): ["T", "U", "t", "u"] -rebuilt : ScopeId(10): ["t", "u"] -Bindings mismatch: -after transform: ScopeId(11): ["T", "U", "x"] -rebuilt : ScopeId(11): ["x"] -Bindings mismatch: -after transform: ScopeId(12): ["T", "U", "u", "x"] -rebuilt : ScopeId(12): ["u", "x"] -Bindings mismatch: -after transform: ScopeId(13): ["T", "U", "x"] -rebuilt : ScopeId(13): ["x"] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithArrayLiteralArgs.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "t"] -rebuilt : ScopeId(1): ["t"] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["Object"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithConstraintsTypeArgumentInference.ts -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: +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(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"] -Bindings mismatch: -after transform: ScopeId(5): ["T", "U", "t", "u"] -rebuilt : ScopeId(5): ["t", "u"] -Bindings mismatch: -after transform: ScopeId(6): ["T", "U", "u", "x"] -rebuilt : ScopeId(6): ["u", "x"] -Bindings mismatch: -after transform: ScopeId(7): ["T", "U", "x"] -rebuilt : ScopeId(7): ["x"] -Bindings mismatch: -after transform: ScopeId(8): ["T", "U"] -rebuilt : ScopeId(8): [] -Bindings mismatch: -after transform: ScopeId(12): ["T", "t", "u"] -rebuilt : ScopeId(12): ["t", "u"] -Bindings mismatch: -after transform: ScopeId(13): ["U", "t", "u"] -rebuilt : ScopeId(13): ["t", "u"] -Bindings mismatch: -after transform: ScopeId(14): ["T", "U", "t", "u"] -rebuilt : ScopeId(14): ["t", "u"] -Bindings mismatch: -after transform: ScopeId(15): ["T", "U", "x"] -rebuilt : ScopeId(15): ["x"] -Bindings mismatch: -after transform: ScopeId(16): ["T", "U", "u", "x"] -rebuilt : ScopeId(16): ["u", "x"] -Bindings mismatch: -after transform: ScopeId(17): ["T", "U", "x"] -rebuilt : ScopeId(17): ["x"] Symbol reference IDs mismatch for "Base": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2), ReferenceId(5), ReferenceId(12), ReferenceId(17), ReferenceId(22), ReferenceId(29), ReferenceId(56), ReferenceId(61), ReferenceId(90), ReferenceId(116), ReferenceId(120), ReferenceId(124)] rebuilt : SymbolId(0): [ReferenceId(0)] @@ -60171,21 +51937,10 @@ Symbol reference IDs mismatch for "Derived2": after transform: SymbolId(2): [ReferenceId(4), ReferenceId(43), ReferenceId(48), ReferenceId(53), ReferenceId(104), ReferenceId(109), ReferenceId(114)] rebuilt : SymbolId(2): [] -tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithFunctionTypedArguments3.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["T", "a", "b", "foo4", "r", "r2"] -rebuilt : ScopeId(0): ["a", "b", "foo4", "r", "r2"] -Bindings mismatch: -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: 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"] Symbol reference IDs mismatch for "C": after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] @@ -60194,22 +51949,7 @@ after transform: SymbolId(1): [ReferenceId(1)] rebuilt : SymbolId(1): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithGenericSignatureArguments.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "a", "b", "r"] -rebuilt : ScopeId(1): ["a", "b", "r"] -Bindings mismatch: -after transform: ScopeId(14): ["T", "r6", "r6b", "x"] -rebuilt : ScopeId(14): ["r6", "r6b", "x"] -Bindings mismatch: -after transform: ScopeId(19): ["T", "r7", "r7b", "r8", "x"] -rebuilt : ScopeId(19): ["r7", "r7b", "r8", "x"] -Bindings mismatch: -after transform: ScopeId(24): ["T", "a", "b", "r"] -rebuilt : ScopeId(24): ["a", "b", "r"] -Bindings mismatch: -after transform: ScopeId(25): ["T", "r8", "x"] -rebuilt : ScopeId(25): ["r8", "x"] -Symbol reference IDs mismatch for "a": +semantic error: Symbol reference IDs mismatch for "a": after transform: SymbolId(17): [ReferenceId(14), ReferenceId(15), ReferenceId(21), ReferenceId(22)] rebuilt : SymbolId(16): [ReferenceId(6), ReferenceId(10)] Symbol reference IDs mismatch for "b": @@ -60220,26 +51960,14 @@ after transform: ["Date", "Object", "RegExp"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithNonSymmetricSubtypes.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "r", "x", "y"] -rebuilt : ScopeId(1): ["r", "x", "y"] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["Object"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithObjectTypeArgs2.ts -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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(5): ["T", "U", "a"] -rebuilt : ScopeId(5): ["a"] Symbol reference IDs mismatch for "Base": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2), ReferenceId(3), ReferenceId(12), ReferenceId(14), ReferenceId(15), ReferenceId(26)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(8)] @@ -60248,16 +51976,7 @@ after transform: SymbolId(1): [ReferenceId(9), ReferenceId(21), ReferenceId(27)] rebuilt : SymbolId(1): [ReferenceId(5), ReferenceId(12)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndConstraints.ts -semantic error: Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] -Bindings mismatch: -after transform: ScopeId(4): ["T", "t", "t2", "x"] -rebuilt : ScopeId(4): ["t", "t2", "x"] -Bindings mismatch: -after transform: ScopeId(5): ["T", "t", "t2", "x"] -rebuilt : ScopeId(5): ["t", "t2", "x"] -Symbol reference IDs mismatch for "C": +semantic error: Symbol reference IDs mismatch for "C": after transform: SymbolId(0): [ReferenceId(8), ReferenceId(17)] rebuilt : SymbolId(0): [] Symbol reference IDs mismatch for "D": @@ -60268,21 +51987,9 @@ after transform: SymbolId(2): [ReferenceId(1), ReferenceId(3), ReferenceId(7), R rebuilt : SymbolId(2): [ReferenceId(1), ReferenceId(2)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndConstraints2.ts -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: +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), ScopeId(8)] -Bindings mismatch: -after transform: ScopeId(3): ["T", "r", "x"] -rebuilt : ScopeId(3): ["r", "x"] -Bindings mismatch: -after transform: ScopeId(5): ["T", "r", "x"] -rebuilt : ScopeId(4): ["r", "x"] -Bindings mismatch: -after transform: ScopeId(6): ["T", "x", "y"] -rebuilt : ScopeId(5): ["x", "y"] Symbol reference IDs mismatch for "Base": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(7), ReferenceId(13), ReferenceId(22), ReferenceId(28)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(3), ReferenceId(13)] @@ -60291,61 +51998,22 @@ after transform: SymbolId(1): [ReferenceId(8), ReferenceId(10), ReferenceId(11), rebuilt : SymbolId(1): [ReferenceId(4), ReferenceId(6), ReferenceId(7), ReferenceId(16)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndIndexers.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "x"] -rebuilt : ScopeId(1): ["x"] -Bindings mismatch: -after transform: ScopeId(2): ["T", "arg", "b", "d", "e", "r2"] -rebuilt : ScopeId(2): ["arg", "b", "d", "e", "r2"] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["Date", "Object"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndIndexersErrors.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "x"] -rebuilt : ScopeId(1): ["x"] -Bindings mismatch: -after transform: ScopeId(2): ["T", "arg", "b", "r2"] -rebuilt : ScopeId(2): ["arg", "b", "r2"] -Bindings mismatch: -after transform: ScopeId(3): ["T", "U", "arg", "b", "d", "e", "r2", "u"] -rebuilt : ScopeId(3): ["arg", "b", "d", "e", "r2", "u"] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["Date", "Object"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndNumericIndexer.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "x"] -rebuilt : ScopeId(1): ["x"] -Bindings mismatch: -after transform: ScopeId(2): ["T", "arg", "b", "r2"] -rebuilt : ScopeId(2): ["arg", "b", "r2"] -Bindings mismatch: -after transform: ScopeId(3): ["T", "arg", "b", "d", "r2"] -rebuilt : ScopeId(3): ["arg", "b", "d", "r2"] -Bindings mismatch: -after transform: ScopeId(4): ["T", "U", "arg", "b", "d", "r2"] -rebuilt : ScopeId(4): ["arg", "b", "d", "r2"] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["Date"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndStringIndexer.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "x"] -rebuilt : ScopeId(1): ["x"] -Bindings mismatch: -after transform: ScopeId(2): ["T", "arg", "b", "r2"] -rebuilt : ScopeId(2): ["arg", "b", "r2"] -Bindings mismatch: -after transform: ScopeId(3): ["T", "arg", "b", "d", "r2"] -rebuilt : ScopeId(3): ["arg", "b", "d", "r2"] -Bindings mismatch: -after transform: ScopeId(4): ["T", "U", "arg", "b", "d", "r2"] -rebuilt : ScopeId(4): ["arg", "b", "d", "r2"] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["Date"] rebuilt : [] @@ -60370,30 +52038,21 @@ rebuilt : ScopeId(1): ScopeFlags(Function) Scope children mismatch: after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(1): [ScopeId(2)] -Bindings mismatch: -after transform: ScopeId(6): ["T", "_GenericParameter", "a", "b", "c", "c2", "foo5", "foo6", "foo7", "r13", "r14", "r15", "r5", "r7", "r8", "r9"] -rebuilt : ScopeId(3): ["_GenericParameter", "a", "b", "c", "c2", "foo5", "foo6", "foo7", "r13", "r14", "r15", "r5", "r7", "r8", "r9"] +Binding symbols mismatch: +after transform: ScopeId(6): [SymbolId(9), SymbolId(12), SymbolId(13), SymbolId(14), SymbolId(17), SymbolId(18), SymbolId(21), SymbolId(22), SymbolId(23), SymbolId(27), SymbolId(28), SymbolId(31), SymbolId(34), SymbolId(35), SymbolId(37)] +rebuilt : ScopeId(3): [SymbolId(9), SymbolId(10), SymbolId(12), SymbolId(13), SymbolId(14), SymbolId(15), SymbolId(16), SymbolId(18), SymbolId(19), SymbolId(20), SymbolId(23), SymbolId(24), SymbolId(25), SymbolId(26), SymbolId(27)] Scope flags mismatch: after transform: ScopeId(6): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(3): ScopeFlags(Function) Scope children mismatch: after transform: ScopeId(6): [ScopeId(7), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(17), ScopeId(20), ScopeId(21), ScopeId(22)] rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5), ScopeId(6)] -Bindings mismatch: -after transform: ScopeId(7): ["T", "cb"] -rebuilt : ScopeId(4): ["cb"] Scope children mismatch: after transform: ScopeId(7): [ScopeId(8), ScopeId(9)] rebuilt : ScopeId(4): [] -Bindings mismatch: -after transform: ScopeId(14): ["T", "cb"] -rebuilt : ScopeId(5): ["cb"] Scope children mismatch: after transform: ScopeId(14): [ScopeId(15), ScopeId(16)] rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(17): ["T", "cb", "x"] -rebuilt : ScopeId(6): ["cb", "x"] Scope children mismatch: after transform: ScopeId(17): [ScopeId(18), ScopeId(19)] rebuilt : ScopeId(6): [] @@ -60419,33 +52078,12 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(5) Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(3): ["T", "x"] -rebuilt : ScopeId(3): ["x"] -Bindings mismatch: -after transform: ScopeId(5): ["T", "_GenericParameter", "a", "foo5", "foo6", "foo7", "r11", "r12", "r13", "r14", "r5", "r7", "r8", "r9"] -rebuilt : ScopeId(5): ["_GenericParameter", "a", "foo5", "foo6", "foo7", "r11", "r12", "r13", "r14", "r5", "r7", "r8", "r9"] +Binding symbols mismatch: +after transform: ScopeId(5): [SymbolId(11), SymbolId(14), SymbolId(16), SymbolId(18), SymbolId(19), SymbolId(22), SymbolId(24), SymbolId(27), SymbolId(31), SymbolId(35), SymbolId(37), SymbolId(40), SymbolId(42)] +rebuilt : ScopeId(5): [SymbolId(11), SymbolId(12), SymbolId(14), SymbolId(16), SymbolId(17), SymbolId(18), SymbolId(20), SymbolId(22), SymbolId(24), SymbolId(27), SymbolId(30), SymbolId(32), SymbolId(34)] Scope flags mismatch: after transform: ScopeId(5): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(5): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(6): ["T", "cb"] -rebuilt : ScopeId(6): ["cb"] -Bindings mismatch: -after transform: ScopeId(8): ["T", "cb"] -rebuilt : ScopeId(8): ["cb"] -Bindings mismatch: -after transform: ScopeId(10): ["T", "x"] -rebuilt : ScopeId(10): ["x"] -Bindings mismatch: -after transform: ScopeId(11): ["T", "x", "y"] -rebuilt : ScopeId(11): ["x", "y"] -Bindings mismatch: -after transform: ScopeId(12): ["T", "cb", "x"] -rebuilt : ScopeId(12): ["cb", "x"] -Bindings mismatch: -after transform: ScopeId(14): ["T", "x"] -rebuilt : ScopeId(14): ["x"] Symbol reference IDs mismatch for "a": after transform: SymbolId(1): [ReferenceId(0), ReferenceId(3)] rebuilt : SymbolId(2): [ReferenceId(2)] @@ -60462,30 +52100,15 @@ Missing ReferenceId: "Interface" Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(4), SymbolId(23)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(19)] -Bindings mismatch: -after transform: ScopeId(3): ["T"] -rebuilt : ScopeId(3): [] Binding symbols mismatch: after transform: ScopeId(4): [SymbolId(5), SymbolId(11), SymbolId(12), SymbolId(13), SymbolId(14), SymbolId(15), SymbolId(16), SymbolId(22), SymbolId(36)] rebuilt : ScopeId(4): [SymbolId(4), SymbolId(5), SymbolId(9), SymbolId(10), SymbolId(11), SymbolId(12), SymbolId(13), SymbolId(14), SymbolId(18)] Scope flags mismatch: after transform: ScopeId(4): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(4): ScopeFlags(Function) -Bindings mismatch: -after transform: ScopeId(5): ["T"] -rebuilt : ScopeId(5): [] -Bindings mismatch: -after transform: ScopeId(6): ["T", "t", "t2", "x"] -rebuilt : ScopeId(6): ["t", "t2", "x"] -Bindings mismatch: -after transform: ScopeId(7): ["T"] -rebuilt : ScopeId(7): [] -Bindings mismatch: -after transform: ScopeId(8): ["T", "t", "t2", "x"] -rebuilt : ScopeId(8): ["t", "t2", "x"] -Bindings mismatch: -after transform: ScopeId(9): ["G", "G2", "_Interface", "c1", "d1", "g", "g2", "r", "r2"] -rebuilt : ScopeId(9): ["_Interface", "c1", "d1", "g", "g2", "r", "r2"] +Binding symbols mismatch: +after transform: ScopeId(9): [SymbolId(27), SymbolId(28), SymbolId(29), SymbolId(30), SymbolId(31), SymbolId(35), SymbolId(37)] +rebuilt : ScopeId(9): [SymbolId(20), SymbolId(21), SymbolId(22), SymbolId(23), SymbolId(24), SymbolId(25), SymbolId(26)] Scope flags mismatch: after transform: ScopeId(9): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(9): ScopeFlags(Function) @@ -60510,17 +52133,11 @@ rebuilt : SymbolId(14): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericContextualTypes1.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["A", "B", "Box", "T", "arrayFilter", "arrayMap", "f00", "f01", "f02", "f03", "f10", "f11", "f12", "f13", "f20", "f21", "f22", "f23", "f30", "f31", "f40", "fn"] +after transform: ScopeId(0): ["arrayFilter", "arrayMap", "f00", "f01", "f02", "f03", "f10", "f11", "f12", "f13", "f20", "f21", "f22", "f23", "f30", "f31", "f40"] rebuilt : ScopeId(0): ["arrayFilter", "arrayMap", "f00", "f01", "f02", "f03", "f10", "f11", "f12", "f13", "f20", "f21", "f22", "f23", "f30", "f31", "f40", "fn"] 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), 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(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16)] -Bindings mismatch: -after transform: ScopeId(18): ["T", "U", "f"] -rebuilt : ScopeId(7): ["f"] -Bindings mismatch: -after transform: ScopeId(20): ["T", "f"] -rebuilt : ScopeId(9): ["f"] Symbol flags mismatch for "fn": after transform: SymbolId(70): SymbolFlags(BlockScopedVariable | ConstVariable | TypeAlias) rebuilt : SymbolId(32): SymbolFlags(BlockScopedVariable | ConstVariable) @@ -60535,24 +52152,18 @@ after transform: SymbolId(70): [Span { start: 1621, end: 1627 }] rebuilt : SymbolId(32): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericContextualTypes2.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["AssignAction", "Config", "LowInfer", "Meta", "PartialAssigner", "PropertyAssigner"] -rebuilt : ScopeId(0): [] -Scope children mismatch: +semantic error: 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: +semantic error: 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/genericFunctionParameters.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["R", "S", "s", "x", "x1", "x2", "x3"] +after transform: ScopeId(0): ["s", "x", "x1", "x2", "x3"] rebuilt : ScopeId(0): ["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)] @@ -60565,40 +52176,22 @@ after transform: ["Array", "f1", "f2", "f3"] rebuilt : ["f1", "f2", "f3", "s"] 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: +semantic error: 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"] -Bindings mismatch: -after transform: ScopeId(17): ["T", "props"] -rebuilt : ScopeId(7): ["props"] Unresolved references mismatch: after transform: ["Partial", "Record", "require"] rebuilt : ["require"] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/keyofInferenceIntersectsResults.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["X", "a", "b", "c"] -rebuilt : ScopeId(0): ["a", "b", "c"] -Scope children mismatch: +semantic error: 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: +semantic error: 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"] Unresolved references mismatch: after transform: ["Col", "ConflictTarget", "Error", "Table", "Write"] rebuilt : ["ConflictTarget", "Error"] @@ -60607,44 +52200,17 @@ after transform: [ReferenceId(22), ReferenceId(24), ReferenceId(33), ReferenceId rebuilt : [ReferenceId(3)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/noInferRedeclaration.ts -semantic error: Bindings mismatch: -after transform: ScopeId(1): ["T", "x", "y"] -rebuilt : ScopeId(1): ["x", "y"] -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["NoInfer"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/unionAndIntersectionInference1.ts 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"] +after transform: ScopeId(0): ["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"] -Bindings mismatch: -after transform: ScopeId(5): ["a", "value"] -rebuilt : ScopeId(4): ["value"] -Bindings mismatch: -after transform: ScopeId(6): ["a", "value"] -rebuilt : ScopeId(5): ["value"] -Bindings mismatch: -after transform: ScopeId(7): ["a", "value"] -rebuilt : ScopeId(6): ["value"] -Bindings mismatch: -after transform: ScopeId(10): ["a", "value"] -rebuilt : ScopeId(9): ["value"] -Bindings mismatch: -after transform: ScopeId(14): ["U", "x"] -rebuilt : ScopeId(12): ["x"] -Bindings mismatch: -after transform: ScopeId(25): ["T"] -rebuilt : ScopeId(16): [] -Bindings mismatch: -after transform: ScopeId(26): ["T", "U", "a", "b"] -rebuilt : ScopeId(17): ["a", "b"] Reference symbol mismatch for "mbp": after transform: SymbolId(35) "mbp" rebuilt : @@ -60665,14 +52231,11 @@ 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", "_asyncToGenerator", "a", "ab", "b", "f1", "f2", "g", "g1", "g2", "sa", "sx", "x1", "x2", "y1", "y2", "z"] +after transform: ScopeId(0): ["MyComponent", "_asyncToGenerator", "a", "ab", "b", "f1", "f2", "g", "g1", "g2", "sa", "sx", "x1", "x2", "y1", "y2", "z"] rebuilt : ScopeId(0): ["_asyncToGenerator", "g", "x1", "x2", "y1", "y2", "z"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), 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), ScopeId(25)] rebuilt : ScopeId(0): [ScopeId(1)] -Bindings mismatch: -after transform: ScopeId(3): ["R", "S", "U", "com"] -rebuilt : ScopeId(2): ["com"] Reference symbol mismatch for "f1": after transform: SymbolId(16) "f1" rebuilt : @@ -60731,26 +52294,17 @@ 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: +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)] 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: +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)] 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: +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), 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)] Unresolved references mismatch: @@ -60758,10 +52312,7 @@ after transform: ["Array"] rebuilt : [] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: @@ -60769,10 +52320,7 @@ after transform: ["true", "undefined"] rebuilt : ["undefined"] 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: +semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [] Unresolved references mismatch: @@ -60804,7 +52352,7 @@ rebuilt : SymbolId(15): [] tasks/coverage/typescript/tests/cases/conformance/types/union/unionTypeCallSignatures7.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["Callable", "f", "result"] +after transform: ScopeId(0): ["f", "result"] rebuilt : ScopeId(0): ["result"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] @@ -60822,16 +52370,13 @@ after transform: ["Date"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/types/union/unionTypeReduction.ts -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: +semantic error: 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", "_asyncFuncReturnConstCall", "_asyncFuncReturnLetCall", "_asyncFuncReturnVarCall", "_asyncGenFuncYieldConstCall", "_asyncGenFuncYieldLetCall", "_asyncGenFuncYieldVarCall", "_asyncToGenerator", "_wrapAsyncGenerator", "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"] +after transform: ScopeId(0): ["C", "C0", "C1", "N", "_asyncFuncReturnConstCall", "_asyncFuncReturnLetCall", "_asyncFuncReturnVarCall", "_asyncGenFuncYieldConstCall", "_asyncGenFuncYieldLetCall", "_asyncGenFuncYieldVarCall", "_asyncToGenerator", "_wrapAsyncGenerator", "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", "_asyncFuncReturnConstCall", "_asyncFuncReturnLetCall", "_asyncFuncReturnVarCall", "_asyncGenFuncYieldConstCall", "_asyncGenFuncYieldLetCall", "_asyncGenFuncYieldVarCall", "_asyncToGenerator", "_wrapAsyncGenerator", "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(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(33), ScopeId(34), ScopeId(40), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(50), 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(68), ScopeId(69)] @@ -61013,7 +52558,7 @@ rebuilt : [ReferenceId(98)] tasks/coverage/typescript/tests/cases/conformance/types/uniqueSymbol/uniqueSymbolsDeclarations.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["C", "C0", "C1", "Context", "I", "L", "N", "_asyncFuncReturnConstCall", "_asyncFuncReturnLetCall", "_asyncFuncReturnVarCall", "_asyncGenFuncYieldConstCall", "_asyncGenFuncYieldLetCall", "_asyncGenFuncYieldVarCall", "_asyncToGenerator", "_wrapAsyncGenerator", "arrayOfConstCall", "asyncFuncReturnConstCall", "asyncFuncReturnLetCall", "asyncFuncReturnVarCall", "asyncGenFuncYieldConstCall", "asyncGenFuncYieldLetCall", "asyncGenFuncYieldVarCall", "c", "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", "funcReturnConstCall", "funcReturnConstCallWithTypeQuery", "funcReturnLetCall", "funcReturnVarCall", "genFuncYieldConstCall", "genFuncYieldConstCallWithTypeQuery", "genFuncYieldLetCall", "genFuncYieldVarCall", "i", "l", "letCall", "letInitToConstCall", "letInitToConstDeclAmbient", "letInitToLetCall", "letInitToVarCall", "o", "o2", "o4", "promiseForConstCall", "s", "varCall", "varInitToConstCall", "varInitToConstDeclAmbient", "varInitToLetCall", "varInitToVarCall"] +after transform: ScopeId(0): ["C", "C0", "C1", "N", "_asyncFuncReturnConstCall", "_asyncFuncReturnLetCall", "_asyncFuncReturnVarCall", "_asyncGenFuncYieldConstCall", "_asyncGenFuncYieldLetCall", "_asyncGenFuncYieldVarCall", "_asyncToGenerator", "_wrapAsyncGenerator", "arrayOfConstCall", "asyncFuncReturnConstCall", "asyncFuncReturnLetCall", "asyncFuncReturnVarCall", "asyncGenFuncYieldConstCall", "asyncGenFuncYieldLetCall", "asyncGenFuncYieldVarCall", "c", "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", "funcReturnConstCall", "funcReturnConstCallWithTypeQuery", "funcReturnLetCall", "funcReturnVarCall", "genFuncYieldConstCall", "genFuncYieldConstCallWithTypeQuery", "genFuncYieldLetCall", "genFuncYieldVarCall", "i", "l", "letCall", "letInitToConstCall", "letInitToConstDeclAmbient", "letInitToLetCall", "letInitToVarCall", "o", "o2", "o4", "promiseForConstCall", "s", "varCall", "varInitToConstCall", "varInitToConstDeclAmbient", "varInitToLetCall", "varInitToVarCall"] rebuilt : ScopeId(0): ["C", "C0", "C1", "_asyncFuncReturnConstCall", "_asyncFuncReturnLetCall", "_asyncFuncReturnVarCall", "_asyncGenFuncYieldConstCall", "_asyncGenFuncYieldLetCall", "_asyncGenFuncYieldVarCall", "_asyncToGenerator", "_wrapAsyncGenerator", "arrayOfConstCall", "asyncFuncReturnConstCall", "asyncFuncReturnLetCall", "asyncFuncReturnVarCall", "asyncGenFuncYieldConstCall", "asyncGenFuncYieldLetCall", "asyncGenFuncYieldVarCall", "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", "funcReturnConstCall", "funcReturnConstCallWithTypeQuery", "funcReturnLetCall", "funcReturnVarCall", "genFuncYieldConstCall", "genFuncYieldConstCallWithTypeQuery", "genFuncYieldLetCall", "genFuncYieldVarCall", "letCall", "letInitToConstCall", "letInitToConstDeclAmbient", "letInitToLetCall", "letInitToVarCall", "o2", "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(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(33), ScopeId(34), ScopeId(40), 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(61), ScopeId(62)] @@ -61192,7 +52737,7 @@ rebuilt : [ReferenceId(98)] tasks/coverage/typescript/tests/cases/conformance/types/uniqueSymbol/uniqueSymbolsDeclarationsErrors.ts semantic error: Bindings mismatch: -after transform: ScopeId(0): ["ClassWithPrivateNamedAccessors", "ClassWithPrivateNamedMethods", "ClassWithPrivateNamedProperties", "I", "InterfaceWithPrivateNamedMethods", "InterfaceWithPrivateNamedProperties", "TypeLiteralWithPrivateNamedMethods", "TypeLiteralWithPrivateNamedProperties", "classExpression", "funcInferredReturnType", "obj", "s"] +after transform: ScopeId(0): ["ClassWithPrivateNamedAccessors", "ClassWithPrivateNamedMethods", "ClassWithPrivateNamedProperties", "classExpression", "funcInferredReturnType", "obj", "s"] rebuilt : ScopeId(0): ["ClassWithPrivateNamedAccessors", "ClassWithPrivateNamedMethods", "ClassWithPrivateNamedProperties", "classExpression", "funcInferredReturnType", "obj"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(12), ScopeId(13), ScopeId(15), ScopeId(16), ScopeId(19)] diff --git a/tasks/transform_conformance/snapshots/babel.snap.md b/tasks/transform_conformance/snapshots/babel.snap.md index 921cd86d5b7c3..35e84c82d74b6 100644 --- a/tasks/transform_conformance/snapshots/babel.snap.md +++ b/tasks/transform_conformance/snapshots/babel.snap.md @@ -1,6 +1,6 @@ commit: 54a8389f -Passed: 602/927 +Passed: 604/927 # All Passed: * babel-plugin-transform-class-static-block @@ -1111,7 +1111,7 @@ x Output mismatch x Output mismatch -# babel-preset-typescript (10/17) +# babel-preset-typescript (11/17) * jsx-compat/ts-invalid/input.ts x Expected `>` but found `/` @@ -1130,11 +1130,6 @@ Unresolved references mismatch: after transform: ["T", "x"] rebuilt : ["x"] -* node-extensions/type-param-arrow-in-ts/input.ts -Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] - * opts/optimizeConstEnums/input.ts x Output mismatch @@ -1145,7 +1140,7 @@ x Output mismatch x Output mismatch -# babel-plugin-transform-typescript (46/156) +# babel-plugin-transform-typescript (47/156) * cast/as-expression/input.ts Unresolved references mismatch: after transform: ["T", "x"] @@ -1181,9 +1176,6 @@ rebuilt : ["x"] * class/head/input.ts -Bindings mismatch: -after transform: ScopeId(1): ["T"] -rebuilt : ScopeId(1): [] Unresolved references mismatch: after transform: ["D", "I"] rebuilt : ["D"] @@ -1208,7 +1200,7 @@ rebuilt : ScopeId(0): [] * declarations/erased/input.ts Bindings mismatch: -after transform: ScopeId(0): ["E", "I", "M", "N", "T", "m", "x"] +after transform: ScopeId(0): ["E", "M", "N", "m", "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), ScopeId(8)] @@ -1509,9 +1501,6 @@ after transform: ScopeId(0): [SymbolId(0), SymbolId(1)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1)] * exports/export-type/input.ts -Bindings mismatch: -after transform: ScopeId(0): ["A"] -rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] @@ -1530,9 +1519,6 @@ rebuilt : ScopeId(0): ["C"] x Output mismatch * exports/issue-9916-1/input.ts -Bindings mismatch: -after transform: ScopeId(0): ["PromiseRejectCb", "PromiseResolveCb", "a"] -rebuilt : ScopeId(0): ["a"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] @@ -1541,9 +1527,6 @@ after transform: ["PromiseLike"] rebuilt : [] * exports/issue-9916-2/input.ts -Bindings mismatch: -after transform: ScopeId(0): ["PromiseRejectCb", "PromiseResolveCb"] -rebuilt : ScopeId(0): [] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] @@ -1552,9 +1535,6 @@ after transform: ["PromiseLike"] rebuilt : [] * exports/issue-9916-3/input.ts -Bindings mismatch: -after transform: ScopeId(0): ["PromiseRejectCb", "PromiseResolveCb", "a"] -rebuilt : ScopeId(0): ["a"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] @@ -1577,11 +1557,6 @@ Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] -* function/parameters/input.ts -Bindings mismatch: -after transform: ScopeId(1): ["T", "x", "y"] -rebuilt : ScopeId(1): ["x", "y"] - * imports/elide-preact/input.ts Bindings mismatch: after transform: ScopeId(0): ["FooBar", "Fragment", "h", "x"] @@ -1626,7 +1601,7 @@ rebuilt : ScopeId(0): ["A", "B"] * imports/elision-locations/input.ts Bindings mismatch: -after transform: ScopeId(0): ["A", "B", "C", "Class", "D", "E", "F", "G", "H", "Iface", "x", "y"] +after transform: ScopeId(0): ["A", "B", "C", "Class", "D", "E", "F", "G", "H", "x", "y"] rebuilt : ScopeId(0): ["A", "Class", "x", "y"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] @@ -1750,9 +1725,6 @@ rebuilt : ScopeId(0): [] x Output mismatch * lvalues/TSTypeParameterInstantiation/input.ts -Bindings mismatch: -after transform: ScopeId(1): ["M"] -rebuilt : ScopeId(1): [] Symbol reference IDs mismatch for "AbstractClass": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(3)] rebuilt : SymbolId(0): [ReferenceId(0)] diff --git a/tasks/transform_conformance/snapshots/oxc.snap.md b/tasks/transform_conformance/snapshots/oxc.snap.md index 97b97de79a4d4..3e6f26612a974 100644 --- a/tasks/transform_conformance/snapshots/oxc.snap.md +++ b/tasks/transform_conformance/snapshots/oxc.snap.md @@ -131,7 +131,7 @@ Missing ReferenceId: "_Name" Missing ReferenceId: "Name" Missing ReferenceId: "Name" Bindings mismatch: -after transform: ScopeId(0): ["Baq", "Bar", "Baz", "Foo", "Func", "Im", "Name", "Ok", "T"] +after transform: ScopeId(0): ["Bar", "Foo", "Func", "Im", "Name", "Ok"] rebuilt : ScopeId(0): ["Bar", "Foo", "Func", "Im", "Name", "Ok", "T"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] @@ -159,14 +159,14 @@ after transform: SymbolId(7) "Name" rebuilt : SymbolId(5) "Name" * exports/type-and-non-type/input.ts -Bindings mismatch: -after transform: ScopeId(0): ["ToastProps", "ToastViewport"] -rebuilt : ScopeId(0): ["ToastViewport"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] * redeclarations/input.ts +Bindings mismatch: +after transform: ScopeId(0): ["A"] +rebuilt : ScopeId(0): ["A", "B", "T"] Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): []