diff --git a/crates/oxc/src/compiler.rs b/crates/oxc/src/compiler.rs index 37a8cdbb34fb4..ab0b20eeb05a3 100644 --- a/crates/oxc/src/compiler.rs +++ b/crates/oxc/src/compiler.rs @@ -74,6 +74,10 @@ pub trait CompilerInterface { true } + fn semantic_child_scope_ids(&self) -> bool { + false + } + fn after_parse(&mut self, _parser_return: &mut ParserReturn) -> ControlFlow<()> { ControlFlow::Continue(()) } @@ -186,6 +190,7 @@ pub trait CompilerInterface { ) -> SemanticBuilderReturn<'a> { SemanticBuilder::new(source_text, source_type) .with_check_syntax_error(self.check_semantic_error()) + .with_scope_tree_child_ids(self.semantic_child_scope_ids()) .build_module_record(source_path, program) .build(program) } diff --git a/crates/oxc_semantic/src/post_transform_checker.rs b/crates/oxc_semantic/src/post_transform_checker.rs index d2620724ae97f..a568548699c6b 100644 --- a/crates/oxc_semantic/src/post_transform_checker.rs +++ b/crates/oxc_semantic/src/post_transform_checker.rs @@ -130,6 +130,7 @@ pub fn check_semantic_after_transform( let allocator = Allocator::default(); let program = program.clone_in(&allocator); let (symbols_rebuilt, scopes_rebuilt) = SemanticBuilder::new("", program.source_type) + .with_scope_tree_child_ids(scopes_after_transform.has_child_ids()) .build(&program) .semantic .into_symbol_table_and_scope_tree(); @@ -366,6 +367,16 @@ impl<'s> PostTransformChecker<'s> { self.errors.push_mismatch("Scope parent mismatch", scope_ids, parent_ids); } + // Check children match + if self.scoping_after_transform.scopes.has_child_ids() { + let child_ids = self.get_pair(scope_ids, |scoping, scope_id| { + scoping.scopes.get_child_ids(scope_id).to_vec() + }); + if self.remap_scope_ids_sets(&child_ids).is_mismatch() { + self.errors.push_mismatch("Scope children mismatch", scope_ids, child_ids); + } + } + // NB: Skip checking node IDs match - transformer does not set `AstNodeId`s } } @@ -504,6 +515,28 @@ impl<'s> PostTransformChecker<'s> { Pair::new(self.scope_ids_map.get(scope_ids.after_transform), Some(scope_ids.rebuilt)) } + /// Remap pair of arrays of `ScopeId`s. + /// Map `after_transform` IDs to `rebuilt` IDs. + /// Sort both sets. + fn remap_scope_ids_sets>>( + &self, + scope_ids: &Pair, + ) -> Pair>> { + let mut after_transform = scope_ids + .after_transform + .as_ref() + .iter() + .map(|&scope_id| self.scope_ids_map.get(scope_id)) + .collect::>(); + let mut rebuilt = + scope_ids.rebuilt.as_ref().iter().copied().map(Option::Some).collect::>(); + + after_transform.sort_unstable(); + rebuilt.sort_unstable(); + + Pair::new(after_transform, rebuilt) + } + /// Remap pair of arrays of `SymbolId`s. /// Map `after_transform` IDs to `rebuilt` IDs. /// Sort both sets. diff --git a/tasks/coverage/semantic_babel.snap b/tasks/coverage/semantic_babel.snap index b9fc5e9e0938f..c66274bcd8065 100644 --- a/tasks/coverage/semantic_babel.snap +++ b/tasks/coverage/semantic_babel.snap @@ -2,7 +2,12 @@ commit: 3bcfee23 semantic_babel Summary: AST Parsed : 2101/2101 (100.00%) -Positive Passed: 1769/2101 (84.20%) +Positive Passed: 1736/2101 (82.63%) +tasks/coverage/babel/packages/babel-parser/test/fixtures/annex-b/enabled/3.3-function-in-if-body/input.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + tasks/coverage/babel/packages/babel-parser/test/fixtures/comments/interpreter-directive/interpreter-directive-import/input.js semantic error: Bindings mismatch: after transform: ScopeId(0): ["spawn"] @@ -17,6 +22,11 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/core/opts/allowNewTarge semantic error: Unexpected new.target expression Unexpected new.target expression +tasks/coverage/babel/packages/babel-parser/test/fixtures/core/scope/dupl-bind-catch-hang-func/input.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + tasks/coverage/babel/packages/babel-parser/test/fixtures/core/uncategorised/230/input.js semantic error: Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0)] @@ -133,6 +143,11 @@ semantic error: Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0)] rebuilt : ScopeId(0): [SymbolId(0)] +tasks/coverage/babel/packages/babel-parser/test/fixtures/esprima/statement-if/migrated_0003/input.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/arrow-function/arrow-function-with-newline/input.ts semantic error: Unresolved references mismatch: after transform: ["t"] @@ -207,7 +222,10 @@ after transform: ["asserts"] rebuilt : [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/assert-predicate/asserts-as-identifier/input.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] +Unresolved references mismatch: after transform: ["asserts"] rebuilt : [] @@ -216,6 +234,16 @@ semantic error: Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1)] rebuilt : SymbolId(0): [] +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/assert-predicate/asserts-var/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/assert-predicate/declare-asserts-var-with-predicate/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/assert-predicate/function-declaration/input.ts semantic error: Unresolved references mismatch: after transform: ["asserts"] @@ -278,11 +306,32 @@ semantic error: Unresolved references mismatch: after transform: ["A", "Error"] rebuilt : [] +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/abstract/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +Scope children mismatch: +after transform: ScopeId(6): [ScopeId(7)] +rebuilt : ScopeId(5): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/async-named-properties/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/async-optional-method/input.js -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [] +Unresolved references mismatch: after transform: ["B", "Promise"] rebuilt : ["B"] +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/constructor/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/constructor-with-modifier-names/input.ts semantic error: Multiple constructor implementations are not allowed. @@ -345,13 +394,41 @@ semantic error: Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/get-generic/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/get-generic-babel-7/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/implements/input.ts semantic error: Unresolved references mismatch: after transform: ["T", "X"] rebuilt : [] +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/members-with-modifier-names/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/members-with-modifier-names-babel-7/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/members-with-reserved-names/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/method-computed/input.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [] +Unresolved references mismatch: after transform: ["Symbol"] rebuilt : [] @@ -417,6 +494,26 @@ Bindings mismatch: after transform: ScopeId(8): ["T"] rebuilt : ScopeId(8): [] +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/method-no-body/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/method-with-newline-without-body/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/modifiers-accessors/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/modifiers-methods-async/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/modifiers-override/input.ts semantic error: Identifier `show` has already been declared Identifier `size` has already been declared @@ -424,6 +521,11 @@ Identifier `size` has already been declared tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/parameter-properties/input.ts semantic error: A required parameter cannot follow an optional parameter. +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/private-method-overload/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/properties/input.ts semantic error: Identifier `x` has already been declared Identifier `x` has already been declared @@ -431,10 +533,18 @@ Identifier `x` has already been declared Identifier `x` has already been declared Identifier `x` has already been declared +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/class/static/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(1): [] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/const/initializer-ambient-context/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["N"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/declare/const/input.ts semantic error: Bindings mismatch: @@ -452,15 +562,26 @@ Cannot assign to 'arguments' in strict mode Cannot assign to 'eval' in strict mode Cannot assign to 'arguments' in strict mode +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/declare/function-rest-trailing-comma/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/declare/interface/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/declare/interface-new-line/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/declare/let/input.ts semantic error: Bindings mismatch: @@ -471,11 +592,17 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/declare/patt semantic error: Bindings mismatch: after transform: ScopeId(0): ["B"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/declare/pattern-parameters-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["B"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/declare/var/input.ts semantic error: Bindings mismatch: @@ -522,16 +649,25 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/enum/declare semantic error: Bindings mismatch: after transform: ScopeId(0): ["E"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/enum/declare-const/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/enum/declare-new-line/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/enum/export/input.ts semantic error: Scope flags mismatch: @@ -553,6 +689,9 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/enum/export- semantic error: Bindings mismatch: after transform: ScopeId(0): ["E"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/enum/members/input.ts semantic error: Bindings mismatch: @@ -613,11 +752,17 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/estree-compa semantic error: Bindings mismatch: after transform: ScopeId(0): ["hot-new-module"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/export/declare/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "M", "N", "T", "_bar", "bar", "foo", "x"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/export/equals/input.ts semantic error: `export = ;` is only supported when compiling modules to CommonJS. @@ -631,16 +776,25 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/export/expor semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/export/export-type-declaration/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "b"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/export/export-value-declaration/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "D", "E", "a", "b"] rebuilt : ScopeId(0): ["C", "D", "a", "b"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode) rebuilt : ScopeId(3): ScopeFlags(StrictMode | Function) @@ -700,9 +854,29 @@ Unresolved references mismatch: after transform: ["Generator"] rebuilt : [] +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/function/declare/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/function/declare-babel-7/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/function/declare-pattern-parameters/input.ts semantic error: A required parameter cannot follow an optional parameter. +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/function/export-default/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/function/overloads/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/import/equals/input.ts semantic error: Missing SymbolId: A Binding symbols mismatch: @@ -779,6 +953,9 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/import/not-t semantic error: Bindings mismatch: after transform: ScopeId(0): ["m"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/import/type-asi/input.ts semantic error: Bindings mismatch: @@ -794,31 +971,49 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/ca semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/call-signature-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/construct-signature/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/construct-signature-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/export/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/extends/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["X", "Z"] rebuilt : [] @@ -827,66 +1022,105 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/fu semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/function-like-node-2/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/function-like-node-3/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/function-like-node-4/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/function-like-node-5/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/generic/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/generic-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/get-set/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/get-set-ambiguous/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/get-set-ambiguous-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/get-set-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/get-set-methods/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/get-set-methods-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/get-set-properties/input.ts semantic error: Expected `(` but found `:` @@ -895,11 +1129,17 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/in semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/method-computed/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Symbol"] rebuilt : [] @@ -908,6 +1148,9 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/me semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Symbol"] rebuilt : [] @@ -916,56 +1159,89 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/me semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/method-generic-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/method-optional/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/method-optional-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/method-plain/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/method-plain-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/modifiers/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/pattern-parameters/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/pattern-parameters-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/properties/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/property-computed/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Symbol"] rebuilt : [] @@ -974,21 +1250,33 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/pr semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/reserved-method-name/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/reserved-method-name-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/interface/separators/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Comma", "Newline", "Semi"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/module-namespace/body/input.ts semantic error: Missing SymbolId: N @@ -1006,41 +1294,65 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/module-names semantic error: Bindings mismatch: after transform: ScopeId(0): ["N"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/module-namespace/body-nested/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/module-namespace/body-nested-declare/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/module-namespace/declare-shorthand/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["m"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/module-namespace/global-in-module/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["m"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/module-namespace/head/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["M", "N", "m"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/module-namespace/head-declare/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["M", "N", "global", "m"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/module-namespace/head-export/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["X"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/regression/async-arrow-generic-9560/input.ts semantic error: Bindings mismatch: @@ -1062,11 +1374,17 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/regression/d semantic error: Bindings mismatch: after transform: ScopeId(0): ["AnotherType", "MyType"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/regression/destructuring-in-function-type-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AnotherType", "MyType"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/regression/elision-arrow-destructuring-13636/input.ts semantic error: Unresolved references mismatch: @@ -1077,6 +1395,9 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/regression/i semantic error: Bindings mismatch: after transform: ScopeId(0): ["E", "I", "T"] rebuilt : ScopeId(0): ["E"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) @@ -1088,16 +1409,25 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/regression/i semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/regression/issue-7742-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/regression/keyword-qualified-type/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["this"] rebuilt : [] @@ -1106,6 +1436,9 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/regression/k semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["var"] rebuilt : [] @@ -1120,6 +1453,9 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/regression/n semantic error: Bindings mismatch: after transform: ScopeId(0): ["Equals"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["A", "B", "C", "D", "E", "F", "G"] rebuilt : [] @@ -1128,10 +1464,23 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/regression/n semantic error: Bindings mismatch: after transform: ScopeId(0): ["Equals"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["A", "B", "C", "D", "E", "F", "G"] rebuilt : [] +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/callable-class/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/callable-class-ambient/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/enum-block-scoped/input.ts semantic error: Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(StrictMode) @@ -1141,12 +1490,18 @@ after transform: SymbolId(0): SymbolFlags(RegularEnum) rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/export-declare-function-after/input.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] +Unresolved references mismatch: after transform: ["foo"] rebuilt : [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/export-declare-function-before/input.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] +Unresolved references mismatch: after transform: ["foo"] rebuilt : [] @@ -1170,6 +1525,9 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/export semantic error: Bindings mismatch: after transform: ScopeId(0): ["m2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(6)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["X", "Y"] rebuilt : [] @@ -1178,21 +1536,33 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/export semantic error: Bindings mismatch: after transform: ScopeId(0): ["~popsicle/dist/common"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/export-interface-after/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/export-interface-before/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/export-namespace/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["N"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["N"] rebuilt : [] @@ -1201,22 +1571,44 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/export semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/export-type-before/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/function-type-before-declaration/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/function-type-before-declaration-optional-pattern/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/module-declaration-var/input.js semantic error: Bindings mismatch: after transform: ScopeId(0): ["bar"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/module-declaration-var-2/input.js semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-class-interface/input.ts -semantic error: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(Class | Interface) rebuilt : SymbolId(0): SymbolFlags(Class) Symbol redeclarations mismatch: @@ -1224,7 +1616,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: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | TypeAlias) rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable) Symbol redeclarations mismatch: @@ -1260,7 +1655,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: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | Function | Interface) rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Function) Symbol redeclarations mismatch: @@ -1268,7 +1666,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: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | Function | TypeAlias) rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Function) Symbol redeclarations mismatch: @@ -1279,12 +1680,18 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redecl semantic error: Bindings mismatch: after transform: ScopeId(0): ["Something"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-import-equals-var/input.ts semantic error: Missing SymbolId: a Bindings mismatch: after transform: ScopeId(0): ["M", "a"] rebuilt : ScopeId(0): ["a"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Symbol flags mismatch: after transform: SymbolId(1): SymbolFlags(FunctionScopedVariable | Import) rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) @@ -1372,6 +1779,9 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redecl semantic error: Bindings mismatch: after transform: ScopeId(0): ["Global", "a"] rebuilt : ScopeId(0): ["a"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-import-type-var/input.ts semantic error: Symbol flags mismatch: @@ -1453,11 +1863,17 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redecl semantic error: Bindings mismatch: after transform: ScopeId(0): ["T", "test", "test/submodule"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-in-different-module-and-top-level/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSONSchema7", "T", "foo", "fooBar", "test/submodule", "test/submodule2"] rebuilt : ScopeId(0): ["foo", "fooBar"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] Symbol reference IDs mismatch: after transform: SymbolId(1): [ReferenceId(1), ReferenceId(4)] rebuilt : SymbolId(0): [ReferenceId(0)] @@ -1466,9 +1882,15 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redecl semantic error: Bindings mismatch: after transform: ScopeId(0): ["test/sub1"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-interface-class/input.ts -semantic error: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(Class | Interface) rebuilt : SymbolId(0): SymbolFlags(Class) Symbol span mismatch: @@ -1479,7 +1901,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: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | Function | Interface) rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Function) Symbol span mismatch: @@ -1493,9 +1918,15 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redecl semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/redeclaration-interface-let/input.ts -semantic error: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | Interface) rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) Symbol span mismatch: @@ -1506,7 +1937,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: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(FunctionScopedVariable | Interface) rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) Symbol span mismatch: @@ -1517,7 +1951,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: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | Interface) rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) Symbol redeclarations mismatch: @@ -1525,7 +1962,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: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | TypeAlias) rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) Symbol redeclarations mismatch: @@ -1533,7 +1973,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: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | Function | TypeAlias) rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Function) Symbol span mismatch: @@ -1544,7 +1987,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: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | TypeAlias) rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) Symbol span mismatch: @@ -1555,7 +2001,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: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(FunctionScopedVariable | TypeAlias) rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) Symbol span mismatch: @@ -1566,7 +2015,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: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(FunctionScopedVariable | Interface) rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) Symbol redeclarations mismatch: @@ -1574,7 +2026,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: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(FunctionScopedVariable | TypeAlias) rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) Symbol redeclarations mismatch: @@ -1606,6 +2061,9 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/tsx/type-arg semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["C", "T", "f"] rebuilt : ["C", "f"] @@ -1624,26 +2082,41 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-alias/d semantic error: Bindings mismatch: after transform: ScopeId(0): ["T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-alias/export/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-alias/generic/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-alias/generic-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-alias/generic-complex-tokens-true/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Array"] rebuilt : [] @@ -1652,6 +2125,9 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-alias/g semantic error: Bindings mismatch: after transform: ScopeId(0): ["T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Array"] rebuilt : [] @@ -1660,6 +2136,9 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-alias/p semantic error: Bindings mismatch: after transform: ScopeId(0): ["T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-arguments/call/input.ts semantic error: Unresolved references mismatch: @@ -1675,6 +2154,9 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-argumen semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "C1", "C2", "C3", "C4", "I", "bar", "x10", "x11", "x12", "x13", "x14", "x5", "x6", "yy"] rebuilt : ScopeId(0): ["C", "C1", "C2", "C3", "C4", "bar", "x10", "x11", "x12", "x13", "x14", "x5", "x6", "yy"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] Unresolved references mismatch: after transform: ["f", "true"] rebuilt : ["f"] @@ -1826,15 +2308,26 @@ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "b"] rebuilt : ScopeId(0): [] +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/conditional/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/conditional-infer/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Element"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/conditional-infer-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Element"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/const-type-parameters/input.ts semantic error: Identifier `method` has already been declared @@ -1883,6 +2376,9 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/infer- semantic error: Bindings mismatch: after transform: ScopeId(0): ["X3", "X4", "X5", "X6", "X7", "X8", "X9"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["MustBeNumber"] rebuilt : [] @@ -1891,16 +2387,25 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/infer- semantic error: Bindings mismatch: after transform: ScopeId(0): ["X"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/infer-with-constraints-and-conditional-types-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["X"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/infer-with-constraints-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["X3", "X4", "X5", "X6", "X7", "X8", "X9"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["MustBeNumber"] rebuilt : [] @@ -1909,14 +2414,23 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/intrin semantic error: Bindings mismatch: after transform: ScopeId(0): ["foo", "intrinsic"] rebuilt : ScopeId(0): ["foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(2): ["Foo", "X", "a", "x"] rebuilt : ScopeId(1): ["a", "x"] +Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/intrinsic-keyword/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["intrinsic"] rebuilt : [] @@ -1925,6 +2439,9 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/intrin semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["intrinsic"] rebuilt : [] @@ -1949,10 +2466,18 @@ semantic error: Bindings mismatch: after transform: ScopeId(0): ["bar", "x"] rebuilt : ScopeId(0): ["x"] +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/mapped/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/mapped-as/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["MappedTypeWithNewKeys", "PickByValueType", "RemoveKindField"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Exclude", "NewKeyType"] rebuilt : [] @@ -1961,10 +2486,18 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/mapped semantic error: Bindings mismatch: after transform: ScopeId(0): ["MappedTypeWithNewKeys", "PickByValueType", "RemoveKindField"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Exclude", "NewKeyType"] rebuilt : [] +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/mapped-babel-7/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/object-shorthand/input.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["T", "value"] @@ -1979,21 +2512,33 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/parent semantic error: Bindings mismatch: after transform: ScopeId(0): ["T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/parenthesized-object/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/pattern-parameters/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/pattern-parameters-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/reference/input.ts semantic error: Unresolved references mismatch: @@ -2014,21 +2559,33 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/tuple- semantic error: Bindings mismatch: after transform: ScopeId(0): ["FuncWithDescription"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/tuple-keyword-labeled-babel-7/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["FuncWithDescriptionBabel7"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/tuple-labeled/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/tuple-labeled-after-unlabeled/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["A", "B"] rebuilt : [] @@ -2037,6 +2594,9 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/tuple- semantic error: Bindings mismatch: after transform: ScopeId(0): ["T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["A", "B"] rebuilt : [] @@ -2045,6 +2605,9 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/tuple- semantic error: Bindings mismatch: after transform: ScopeId(0): ["T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["A", "B"] rebuilt : [] @@ -2053,10 +2616,23 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/tuple- semantic error: Bindings mismatch: after transform: ScopeId(0): ["T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["A", "B"] rebuilt : [] +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/type-literal-get-set/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] + +tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/type-literal-get-set-babel-7/input.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] + tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/type-operator/input.ts semantic error: Unresolved references mismatch: after transform: ["T"] @@ -2071,6 +2647,9 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/typeof semantic error: Bindings mismatch: after transform: ScopeId(0): ["Example"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["a"] rebuilt : [] @@ -2079,6 +2658,9 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/typeof semantic error: Bindings mismatch: after transform: ScopeId(0): ["Example"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["a"] rebuilt : [] @@ -2092,19 +2674,31 @@ tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/types- semantic error: Bindings mismatch: after transform: ScopeId(0): ["abstract", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types/union-intersection/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["F", "J", "K", "M", "N", "O", "intersection", "precedence1", "precedence2", "union"] rebuilt : ScopeId(0): ["intersection", "precedence1", "precedence2", "union"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types-arrow-function/object-pattern-with-template/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["F"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/types-arrow-function-babel-7/object-pattern-with-template/input.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["F"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] diff --git a/tasks/coverage/semantic_misc.snap b/tasks/coverage/semantic_misc.snap index 628e8f63b983b..a2fa049342765 100644 --- a/tasks/coverage/semantic_misc.snap +++ b/tasks/coverage/semantic_misc.snap @@ -15,16 +15,25 @@ tasks/coverage/misc/pass/oxc-2087.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Helpers"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/misc/pass/oxc-2394.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/misc/pass/oxc-2592.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/misc/pass/oxc-3443.tsx semantic error: Bindings mismatch: @@ -158,6 +167,9 @@ tasks/coverage/misc/pass/oxc-5177.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bang", "Foo"] rebuilt : ScopeId(0): ["Bang"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/misc/pass/swc-7187.ts semantic error: Bindings mismatch: diff --git a/tasks/coverage/semantic_test262.snap b/tasks/coverage/semantic_test262.snap index c3183350756eb..df86c288430db 100644 --- a/tasks/coverage/semantic_test262.snap +++ b/tasks/coverage/semantic_test262.snap @@ -2,9 +2,12 @@ commit: d62fa93c semantic_test262 Summary: AST Parsed : 43765/43765 (100.00%) -Positive Passed: 43735/43765 (99.93%) +Positive Passed: 43563/43765 (99.54%) tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-block-scoping.js -semantic error: Symbol reference IDs mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] +Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(9)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(9)] Symbol reference IDs mismatch: @@ -14,8 +17,101 @@ Unresolved reference IDs mismatch for "f": after transform: [ReferenceId(1), ReferenceId(2), ReferenceId(4), ReferenceId(6), ReferenceId(7)] rebuilt : [ReferenceId(1), ReferenceId(2), ReferenceId(4), ReferenceId(6), ReferenceId(7)] +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-existing-block-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-existing-block-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-existing-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-existing-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-existing-var-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-existing-var-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-no-skip-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(4): [ScopeId(5), ScopeId(6)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-skip-dft-param.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-skip-early-err-block.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-skip-early-err-for-in.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(4): [ScopeId(5), ScopeId(6)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-skip-early-err-for-of.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(4): [ScopeId(5), ScopeId(6)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-skip-early-err-for.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(4): [ScopeId(5), ScopeId(6)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-skip-early-err-switch.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-skip-early-err-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(5): [ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(5): [ScopeId(6), ScopeId(7)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-skip-early-err.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-skip-param.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-a-func-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-block-scoping.js -semantic error: Symbol reference IDs mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] +Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(9)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(9)] Symbol reference IDs mismatch: @@ -25,8 +121,101 @@ Unresolved reference IDs mismatch for "f": after transform: [ReferenceId(1), ReferenceId(2), ReferenceId(4), ReferenceId(6), ReferenceId(7)] rebuilt : [ReferenceId(1), ReferenceId(2), ReferenceId(4), ReferenceId(6), ReferenceId(7)] +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-existing-block-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-existing-block-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-existing-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-existing-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-existing-var-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-existing-var-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-no-skip-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(4): [ScopeId(5), ScopeId(6)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-skip-dft-param.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-skip-early-err-block.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-skip-early-err-for-in.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(4): [ScopeId(5), ScopeId(6)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-skip-early-err-for-of.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(4): [ScopeId(5), ScopeId(6)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-skip-early-err-for.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(4): [ScopeId(5), ScopeId(6)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-skip-early-err-switch.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-skip-early-err-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(5): [ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(5): [ScopeId(6), ScopeId(7)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-skip-early-err.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-skip-param.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-decl-b-func-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-block-scoping.js -semantic error: Symbol reference IDs mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] +Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(9)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(9)] Symbol reference IDs mismatch: @@ -36,8 +225,101 @@ Unresolved reference IDs mismatch for "f": after transform: [ReferenceId(1), ReferenceId(2), ReferenceId(4), ReferenceId(6), ReferenceId(7)] rebuilt : [ReferenceId(1), ReferenceId(2), ReferenceId(4), ReferenceId(6), ReferenceId(7)] +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-existing-block-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-existing-block-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-existing-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-existing-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-existing-var-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-existing-var-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-no-skip-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-skip-dft-param.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-skip-early-err-block.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-skip-early-err-for-in.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-skip-early-err-for-of.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-skip-early-err-for.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-skip-early-err-switch.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-skip-early-err-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(5): [ScopeId(6)] +rebuilt : ScopeId(5): [ScopeId(6)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-skip-early-err.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-skip-param.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-else-stmt-func-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-block-scoping.js -semantic error: Symbol reference IDs mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] +Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(9)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(9)] Symbol reference IDs mismatch: @@ -47,8 +329,101 @@ Unresolved reference IDs mismatch for "f": after transform: [ReferenceId(1), ReferenceId(2), ReferenceId(4), ReferenceId(6), ReferenceId(7)] rebuilt : [ReferenceId(1), ReferenceId(2), ReferenceId(4), ReferenceId(6), ReferenceId(7)] +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-existing-block-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-existing-block-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-existing-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-existing-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-existing-var-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-existing-var-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-no-skip-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-skip-dft-param.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-skip-early-err-block.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-skip-early-err-for-in.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-skip-early-err-for-of.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-skip-early-err-for.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-skip-early-err-switch.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-skip-early-err-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(5): [ScopeId(6)] +rebuilt : ScopeId(5): [ScopeId(6)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-skip-early-err.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-skip-param.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-decl-no-else-func-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-block-scoping.js -semantic error: Symbol reference IDs mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] +Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(9)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(9)] Symbol reference IDs mismatch: @@ -58,8 +433,101 @@ Unresolved reference IDs mismatch for "f": after transform: [ReferenceId(1), ReferenceId(2), ReferenceId(4), ReferenceId(6), ReferenceId(7)] rebuilt : [ReferenceId(1), ReferenceId(2), ReferenceId(4), ReferenceId(6), ReferenceId(7)] +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-existing-block-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-existing-block-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-existing-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-existing-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-existing-var-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-existing-var-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-no-skip-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-skip-dft-param.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-skip-early-err-block.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-skip-early-err-for-in.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-skip-early-err-for-of.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-skip-early-err-for.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-skip-early-err-switch.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-skip-early-err-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(5): [ScopeId(6)] +rebuilt : ScopeId(5): [ScopeId(6)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-skip-early-err.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-skip-param.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/function-code/if-stmt-else-decl-func-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [ScopeId(2)] + tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-block-scoping.js -semantic error: Symbol reference IDs mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] +Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(7)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(7)] Symbol reference IDs mismatch: @@ -69,8 +537,91 @@ Unresolved reference IDs mismatch for "f": after transform: [ReferenceId(1), ReferenceId(2), ReferenceId(4), ReferenceId(5), ReferenceId(11)] rebuilt : [ReferenceId(1), ReferenceId(2), ReferenceId(4), ReferenceId(5), ReferenceId(11)] +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-existing-block-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-existing-block-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-existing-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-existing-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-existing-var-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-existing-var-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-no-skip-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-skip-early-err-block.js +semantic error: Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(2): [ScopeId(3), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-skip-early-err-for-in.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-skip-early-err-for-of.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-skip-early-err-for.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-skip-early-err-switch.js +semantic error: Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(2): [ScopeId(3), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-skip-early-err-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(4): [ScopeId(5), ScopeId(6)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-skip-early-err.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-a-global-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-block-scoping.js -semantic error: Symbol reference IDs mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] +Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(7)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(7)] Symbol reference IDs mismatch: @@ -80,8 +631,91 @@ Unresolved reference IDs mismatch for "f": after transform: [ReferenceId(1), ReferenceId(2), ReferenceId(4), ReferenceId(5), ReferenceId(11)] rebuilt : [ReferenceId(1), ReferenceId(2), ReferenceId(4), ReferenceId(5), ReferenceId(11)] +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-existing-block-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-existing-block-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-existing-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-existing-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-existing-var-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-existing-var-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-no-skip-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-skip-early-err-block.js +semantic error: Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(2): [ScopeId(3), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-skip-early-err-for-in.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-skip-early-err-for-of.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-skip-early-err-for.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-skip-early-err-switch.js +semantic error: Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(2): [ScopeId(3), ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-skip-early-err-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(4): [ScopeId(5), ScopeId(6)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-skip-early-err.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-decl-b-global-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-block-scoping.js -semantic error: Symbol reference IDs mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] +Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(7)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(7)] Symbol reference IDs mismatch: @@ -91,8 +725,91 @@ Unresolved reference IDs mismatch for "f": after transform: [ReferenceId(1), ReferenceId(2), ReferenceId(4), ReferenceId(5), ReferenceId(11)] rebuilt : [ReferenceId(1), ReferenceId(2), ReferenceId(4), ReferenceId(5), ReferenceId(11)] +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-existing-block-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-existing-block-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-existing-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-existing-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-existing-var-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-existing-var-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-no-skip-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-skip-early-err-block.js +semantic error: Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3)] +rebuilt : ScopeId(2): [ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-skip-early-err-for-in.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-skip-early-err-for-of.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-skip-early-err-for.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-skip-early-err-switch.js +semantic error: Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3)] +rebuilt : ScopeId(2): [ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-skip-early-err-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-skip-early-err.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-else-stmt-global-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-block-scoping.js -semantic error: Symbol reference IDs mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] +Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(7)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(7)] Symbol reference IDs mismatch: @@ -102,8 +819,91 @@ Unresolved reference IDs mismatch for "f": after transform: [ReferenceId(1), ReferenceId(2), ReferenceId(4), ReferenceId(5), ReferenceId(11)] rebuilt : [ReferenceId(1), ReferenceId(2), ReferenceId(4), ReferenceId(5), ReferenceId(11)] +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-existing-block-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-existing-block-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-existing-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-existing-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-existing-var-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-existing-var-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-no-skip-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-skip-early-err-block.js +semantic error: Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3)] +rebuilt : ScopeId(2): [ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-skip-early-err-for-in.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-skip-early-err-for-of.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-skip-early-err-for.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-skip-early-err-switch.js +semantic error: Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3)] +rebuilt : ScopeId(2): [ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-skip-early-err-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-skip-early-err.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/test262/test/annexB/language/global-code/if-decl-no-else-global-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-block-scoping.js -semantic error: Symbol reference IDs mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] +Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(7)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(7)] Symbol reference IDs mismatch: @@ -113,6 +913,86 @@ Unresolved reference IDs mismatch for "f": after transform: [ReferenceId(1), ReferenceId(2), ReferenceId(4), ReferenceId(5), ReferenceId(11)] rebuilt : [ReferenceId(1), ReferenceId(2), ReferenceId(4), ReferenceId(5), ReferenceId(11)] +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-existing-block-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-existing-block-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-existing-fn-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-existing-fn-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-existing-var-no-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-existing-var-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-init.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-no-skip-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-skip-early-err-block.js +semantic error: Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3)] +rebuilt : ScopeId(2): [ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-skip-early-err-for-in.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-skip-early-err-for-of.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-skip-early-err-for.js +semantic error: Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-skip-early-err-switch.js +semantic error: Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3)] +rebuilt : ScopeId(2): [ScopeId(3)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-skip-early-err-try.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [ScopeId(5)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-skip-early-err.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/test262/test/annexB/language/global-code/if-stmt-else-decl-global-update.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/test262/test/language/module-code/eval-rqstd-once.js semantic error: Bindings mismatch: after transform: ScopeId(0): ["dflt1", "dflt2", "dflt3", "global", "ns1", "ns3"] @@ -213,3 +1093,13 @@ semantic error: Bindings mismatch: after transform: ScopeId(0): ["resolved"] rebuilt : ScopeId(0): [] +tasks/coverage/test262/test/language/statements/if/S12.5_A10_T1.js +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] + +tasks/coverage/test262/test/language/statements/if/S12.5_A5.js +semantic error: Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(4): [ScopeId(5), ScopeId(6), ScopeId(7)] + diff --git a/tasks/coverage/semantic_typescript.snap b/tasks/coverage/semantic_typescript.snap index 29d9ff2122fce..0ab255452c061 100644 --- a/tasks/coverage/semantic_typescript.snap +++ b/tasks/coverage/semantic_typescript.snap @@ -2,7 +2,7 @@ commit: a709f989 semantic_typescript Summary: AST Parsed : 6479/6479 (100.00%) -Positive Passed: 3459/6479 (53.39%) +Positive Passed: 3256/6479 (50.25%) tasks/coverage/typescript/tests/cases/compiler/2dArrays.ts semantic error: Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(1)] @@ -41,6 +41,9 @@ tasks/coverage/typescript/tests/cases/compiler/APISample_jsdoc.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Annotations", "console", "getAllTags", "getAnnotations", "getReturnTypeFromJSDoc", "getSomeOtherTags", "parseCommentsIntoDefinition", "parseSpecificTags", "ts"] rebuilt : ScopeId(0): ["getAllTags", "getAnnotations", "getReturnTypeFromJSDoc", "getSomeOtherTags", "parseCommentsIntoDefinition", "parseSpecificTags", "ts"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(8), ScopeId(9), ScopeId(14), ScopeId(20), ScopeId(23), ScopeId(24)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(8), ScopeId(13), ScopeId(19), ScopeId(22), ScopeId(23)] Symbol reference IDs mismatch: after transform: SymbolId(1): [ReferenceId(0), ReferenceId(20), ReferenceId(22), ReferenceId(26), ReferenceId(34), ReferenceId(46), ReferenceId(48), ReferenceId(49), ReferenceId(51), ReferenceId(53), ReferenceId(55), ReferenceId(56), ReferenceId(58), ReferenceId(60), ReferenceId(65), ReferenceId(67), ReferenceId(68), ReferenceId(70), ReferenceId(74), ReferenceId(76), ReferenceId(77), ReferenceId(78), ReferenceId(80), ReferenceId(81), ReferenceId(83), ReferenceId(86), ReferenceId(89), ReferenceId(91), ReferenceId(97)] rebuilt : SymbolId(0): [ReferenceId(38), ReferenceId(39), ReferenceId(42), ReferenceId(44), ReferenceId(47), ReferenceId(53), ReferenceId(54), ReferenceId(56), ReferenceId(60), ReferenceId(62), ReferenceId(65), ReferenceId(68), ReferenceId(71), ReferenceId(73), ReferenceId(79)] @@ -87,6 +90,9 @@ tasks/coverage/typescript/tests/cases/compiler/APISample_watcher.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["console", "currentDirectoryFiles", "fs", "path", "process", "ts", "watch"] rebuilt : ScopeId(0): ["currentDirectoryFiles", "ts", "watch"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(28)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(23)] Symbol reference IDs mismatch: after transform: SymbolId(4): [ReferenceId(2), ReferenceId(3), ReferenceId(7), ReferenceId(16), ReferenceId(21), ReferenceId(27), ReferenceId(29), ReferenceId(60), ReferenceId(79)] rebuilt : SymbolId(0): [ReferenceId(11), ReferenceId(16), ReferenceId(22), ReferenceId(24), ReferenceId(55), ReferenceId(74)] @@ -142,17 +148,29 @@ tasks/coverage/typescript/tests/cases/compiler/abstractInterfaceIdentifierName.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["abstract"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/abstractPropertyBasics.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C"] rebuilt : ScopeId(0): ["B", "C"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] +Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/compiler/acceptableAlias1.ts semantic error: Missing SymbolId: r Bindings mismatch: after transform: ScopeId(0): ["M", "r"] rebuilt : ScopeId(0): ["r"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["M", "N"] rebuilt : ["M"] @@ -171,16 +189,25 @@ tasks/coverage/typescript/tests/cases/compiler/addMoreCallSignaturesToBaseSignat semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo", "a", "kitty"] rebuilt : ScopeId(0): ["a", "kitty"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/addMoreCallSignaturesToBaseSignature2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo", "a", "kitty"] rebuilt : ScopeId(0): ["a", "kitty"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/aliasOfGenericFunctionWithRestBehavedSameAsUnaliased.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ExtendedMapper", "ExtendedMapper1", "ExtendedMapper2", "a", "a1", "a2", "a3", "b", "b1", "b2", "b3", "check", "check1", "check2", "check3", "test", "test1", "test2", "test3"] rebuilt : ScopeId(0): ["check", "check1", "check2", "check3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(16), ScopeId(17), ScopeId(18)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/aliasUsageInAccessorsOfClass.ts semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. @@ -233,6 +260,9 @@ Missing ReferenceId: D Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(2)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(3)] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] Binding symbols mismatch: after transform: ScopeId(4): [SymbolId(1), SymbolId(3)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] @@ -247,84 +277,148 @@ tasks/coverage/typescript/tests/cases/compiler/ambientClassMergesOverloadsWithIn semantic error: Bindings mismatch: after transform: ScopeId(0): ["C"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/ambientClassOverloadForFunction.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/ambientEnumElementInitializer1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/ambientEnumElementInitializer2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/ambientEnumElementInitializer3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/ambientEnumElementInitializer4.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/ambientEnumElementInitializer5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/ambientEnumElementInitializer6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["M"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/ambientExternalModuleReopen.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["fs"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/ambientExternalModuleWithInternalImportDeclaration.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["M"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/ambientExternalModuleWithoutInternalImportDeclaration.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["M"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/ambientFundule.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["f"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/ambientModuleExports.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "Foo2", "c", "c2"] rebuilt : ScopeId(0): ["c", "c2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/ambientModuleWithClassDeclarationWithExtends.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/ambientModuleWithTemplateLiterals.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/ambientModules.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/ambientNameRestrictions.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/ambiguousCallsWhereReturnTypesAgree.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] +Scope children mismatch: +after transform: ScopeId(8): [ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14)] +rebuilt : ScopeId(4): [ScopeId(5), ScopeId(6)] tasks/coverage/typescript/tests/cases/compiler/ambiguousOverloadResolution.ts -semantic error: Symbol reference IDs 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: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(4)] rebuilt : SymbolId(0): [ReferenceId(0)] Symbol reference IDs mismatch: @@ -397,16 +491,25 @@ tasks/coverage/typescript/tests/cases/compiler/anyIsAssignableToObject.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["P", "Q"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/anyIsAssignableToVoid.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["P", "Q"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/argumentsAsPropertyName.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyType", "myFunction"] rebuilt : ScopeId(0): ["myFunction"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["Array", "use"] rebuilt : ["use"] @@ -427,6 +530,9 @@ rebuilt : ScopeId(1): ["Bug", "_Test"] 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(7)] +rebuilt : ScopeId(1): [ScopeId(2)] Symbol flags mismatch: after transform: SymbolId(5): SymbolFlags(Export | Class) rebuilt : SymbolId(2): SymbolFlags(Class) @@ -438,6 +544,9 @@ tasks/coverage/typescript/tests/cases/compiler/arrayAugment.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Array", "x", "y"] rebuilt : ScopeId(0): ["x", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/arrayBestCommonTypes.ts semantic error: Missing SymbolId: EmptyTypes @@ -457,12 +566,24 @@ rebuilt : ScopeId(1): ["_EmptyTypes", "base", "base2", "derived", "f"] 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)] +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"] Scope flags mismatch: after transform: ScopeId(12): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(8): ScopeFlags(Function) +Scope children mismatch: +after transform: ScopeId(12): [ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17)] +rebuilt : ScopeId(8): [ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] +Scope children mismatch: +after transform: ScopeId(17): [ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22)] +rebuilt : ScopeId(12): [ScopeId(13), ScopeId(14)] Symbol reference IDs mismatch: after transform: SymbolId(2): [ReferenceId(2), ReferenceId(9), ReferenceId(11), ReferenceId(12), ReferenceId(14), ReferenceId(15), ReferenceId(17), ReferenceId(23)] rebuilt : SymbolId(2): [ReferenceId(0), ReferenceId(8), ReferenceId(10), ReferenceId(12), ReferenceId(17)] @@ -479,6 +600,9 @@ tasks/coverage/typescript/tests/cases/compiler/arrayConcat3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Fn", "doStuff"] rebuilt : ScopeId(0): ["doStuff"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(2): ["T", "T1", "a", "b"] rebuilt : ScopeId(1): ["a", "b"] @@ -490,6 +614,9 @@ tasks/coverage/typescript/tests/cases/compiler/arrayDestructuringInSwitch1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["BooleanLogicExpression", "Expression", "evaluate"] rebuilt : ScopeId(0): ["evaluate"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/arrayFind.ts semantic error: Unresolved references mismatch: @@ -515,6 +642,9 @@ tasks/coverage/typescript/tests/cases/compiler/arrayLiteralContextualType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Elephant", "Giraffe", "IAnimal", "arr", "bar", "foo"] rebuilt : ScopeId(0): ["Elephant", "Giraffe", "arr", "bar", "foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/compiler/arrayOfExportedClass.ts semantic error: `export = ;` is only supported when compiling modules to CommonJS. @@ -540,6 +670,9 @@ tasks/coverage/typescript/tests/cases/compiler/arrayTypeInSignatureOfInterfaceAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["Data", "WinJS"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["WinJS"] rebuilt : [] @@ -548,6 +681,9 @@ tasks/coverage/typescript/tests/cases/compiler/arrayconcat.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IOptions", "parser"] rebuilt : ScopeId(0): ["parser"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/arrowFunctionInExpressionStatement2.ts semantic error: Missing SymbolId: M @@ -617,6 +753,16 @@ semantic error: Unresolved references mismatch: after transform: ["Error"] rebuilt : [] +tasks/coverage/typescript/tests/cases/compiler/asiAmbientFunctionDeclaration.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/assertionFunctionWildcardImport1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/assertionFunctionWildcardImport2.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["T", "obj"] @@ -629,6 +775,9 @@ tasks/coverage/typescript/tests/cases/compiler/assertionFunctionsCanNarrowByDisc semantic error: Bindings mismatch: after transform: ScopeId(0): ["Animal", "Cat", "Dog", "animal", "animalOrUndef"] rebuilt : ScopeId(0): ["animal", "animalOrUndef"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["assertEqual", "const", "true"] rebuilt : ["assertEqual"] @@ -647,12 +796,20 @@ rebuilt : ScopeId(1): ["_M", "x"] 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): [] tasks/coverage/typescript/tests/cases/compiler/assignToObjectTypeWithPrototypeProperty.ts semantic error: Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2), ReferenceId(3)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(1)] +tasks/coverage/typescript/tests/cases/compiler/assignToPrototype1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/assignmentCompatForEnums.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["One", "TokenType", "Two"] @@ -668,7 +825,10 @@ after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2), ReferenceId(9)] rebuilt : SymbolId(0): [ReferenceId(5)] tasks/coverage/typescript/tests/cases/compiler/assignmentCompatOnNew.ts -semantic error: Symbol reference IDs mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3)] +rebuilt : ScopeId(2): [] +Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2)] rebuilt : SymbolId(0): [ReferenceId(1)] @@ -761,6 +921,9 @@ tasks/coverage/typescript/tests/cases/compiler/asyncFunctionContextuallyTypedRet semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyCallback", "increment", "increment2"] rebuilt : ScopeId(0): ["increment", "increment2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11)] Unresolved references mismatch: after transform: ["Promise", "PromiseLike", "f", "g", "h"] rebuilt : ["Promise", "f", "g", "h"] @@ -777,6 +940,9 @@ tasks/coverage/typescript/tests/cases/compiler/asyncFunctionReturnType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Obj", "fAsync", "fAsyncExplicit", "fGenericIndexedTypeForAnyProp", "fGenericIndexedTypeForExplicitPromiseOfAnyProp", "fGenericIndexedTypeForExplicitPromiseOfKProp", "fGenericIndexedTypeForExplicitPromiseOfStringProp", "fGenericIndexedTypeForKProp", "fGenericIndexedTypeForPromiseOfAnyProp", "fGenericIndexedTypeForPromiseOfKProp", "fGenericIndexedTypeForPromiseOfStringProp", "fGenericIndexedTypeForStringProp", "fIndexedTypeForAnyProp", "fIndexedTypeForExplicitPromiseOfAnyProp", "fIndexedTypeForExplicitPromiseOfStringProp", "fIndexedTypeForPromiseOfAnyProp", "fIndexedTypeForPromiseOfStringProp", "fIndexedTypeForStringProp"] rebuilt : ScopeId(0): ["fAsync", "fAsyncExplicit", "fGenericIndexedTypeForAnyProp", "fGenericIndexedTypeForExplicitPromiseOfAnyProp", "fGenericIndexedTypeForExplicitPromiseOfKProp", "fGenericIndexedTypeForExplicitPromiseOfStringProp", "fGenericIndexedTypeForKProp", "fGenericIndexedTypeForPromiseOfAnyProp", "fGenericIndexedTypeForPromiseOfKProp", "fGenericIndexedTypeForPromiseOfStringProp", "fGenericIndexedTypeForStringProp", "fIndexedTypeForAnyProp", "fIndexedTypeForExplicitPromiseOfAnyProp", "fIndexedTypeForExplicitPromiseOfStringProp", "fIndexedTypeForPromiseOfAnyProp", "fIndexedTypeForPromiseOfStringProp", "fIndexedTypeForStringProp"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17)] Bindings mismatch: after transform: ScopeId(10): ["TObj", "obj"] rebuilt : ScopeId(9): ["obj"] @@ -812,6 +978,9 @@ tasks/coverage/typescript/tests/cases/compiler/asyncFunctionsAndStrictNullChecks semantic error: Bindings mismatch: after transform: ScopeId(0): ["Windows", "sample", "sample2"] rebuilt : ScopeId(0): ["sample", "sample2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Unresolved references mismatch: after transform: ["Promise", "Windows", "resolve1", "resolve2"] rebuilt : ["resolve1", "resolve2"] @@ -820,6 +989,9 @@ tasks/coverage/typescript/tests/cases/compiler/asyncYieldStarContextualType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Author", "Book", "BookWithAuthor", "Result", "T", "U", "V", "authorPromise", "f", "g", "mapper"] rebuilt : ScopeId(0): ["f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(19): Some("authorPromise") rebuilt : ReferenceId(0): None @@ -846,6 +1018,9 @@ tasks/coverage/typescript/tests/cases/compiler/augmentArray.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Array"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/augmentExportEquals3.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -869,6 +1044,9 @@ tasks/coverage/typescript/tests/cases/compiler/augmentExportEquals5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["e", "express"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/augmentExportEquals6.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -883,12 +1061,18 @@ tasks/coverage/typescript/tests/cases/compiler/augmentedTypeBracketNamedProperty semantic error: Bindings mismatch: after transform: ScopeId(0): ["Function", "Object", "f", "o", "r1", "r2", "r3", "r4"] rebuilt : ScopeId(0): ["f", "o", "r1", "r2", "r3", "r4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/augmentedTypesClass3.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript tasks/coverage/typescript/tests/cases/compiler/augmentedTypesExternalModule1.ts -semantic error: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] +Symbol flags mismatch: after transform: SymbolId(1): SymbolFlags(Class | NameSpaceModule) rebuilt : SymbolId(1): SymbolFlags(Class) Symbol redeclarations mismatch: @@ -928,6 +1112,9 @@ tasks/coverage/typescript/tests/cases/compiler/avoidCycleWithVoidExpressionRetur semantic error: Bindings mismatch: after transform: ScopeId(0): ["Howl", "HowlErrorCallback", "HowlOptions", "instance"] rebuilt : ScopeId(0): ["Howl", "instance"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] tasks/coverage/typescript/tests/cases/compiler/avoidNarrowingUsingConstVariableFromBindingElementWithLiteralInitializer.ts semantic error: Bindings mismatch: @@ -947,6 +1134,9 @@ tasks/coverage/typescript/tests/cases/compiler/awaitUnionPromise.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AsyncEnumeratorDone", "IAsyncEnumerator", "main"] rebuilt : ScopeId(0): ["AsyncEnumeratorDone", "main"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(2), ReferenceId(6)] rebuilt : SymbolId(0): [] @@ -966,6 +1156,9 @@ tasks/coverage/typescript/tests/cases/compiler/awaitedTypeJQuery.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Promise3", "PromiseBase", "T", "Thenable"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Awaited", "Element", "Error", "PromiseLike"] rebuilt : [] @@ -974,10 +1167,18 @@ tasks/coverage/typescript/tests/cases/compiler/badInferenceLowerPriorityThanGood semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "goofus", "result"] rebuilt : ScopeId(0): ["goofus", "result"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6)] Bindings mismatch: after transform: ScopeId(5): ["ARGS", "f"] rebuilt : ScopeId(3): ["f"] +tasks/coverage/typescript/tests/cases/compiler/badThisBinding.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/bangInModuleName.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["http"] @@ -987,6 +1188,9 @@ tasks/coverage/typescript/tests/cases/compiler/baseIndexSignatureResolution.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "Derived", "Foo", "FooOf", "x", "y"] rebuilt : ScopeId(0): ["Base", "Derived", "x", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(3)] rebuilt : SymbolId(0): [ReferenceId(0)] @@ -998,6 +1202,9 @@ tasks/coverage/typescript/tests/cases/compiler/baseTypeAfterDerivedType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "Base2", "Derived", "Derived2"] rebuilt : ScopeId(0): ["Derived2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/baseTypeOrderChecking.ts semantic error: Bindings mismatch: @@ -1040,14 +1247,23 @@ tasks/coverage/typescript/tests/cases/compiler/bestCommonTypeReturnStatement.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IPromise", "b", "d", "f"] rebuilt : ScopeId(0): ["b", "d", "f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/bestCommonTypeWithOptionalProperties.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["X", "Y", "Z", "b1", "b2", "b3", "b4", "b5", "b6", "x", "y", "z"] rebuilt : ScopeId(0): ["b1", "b2", "b3", "b4", "b5", "b6", "x", "y", "z"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/bindingPatternContextualTypeDoesNotCauseWidening.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] +Unresolved references mismatch: after transform: ["Pick", "pick"] rebuilt : ["pick"] @@ -1080,6 +1296,11 @@ Unresolved references mismatch: after transform: [] rebuilt : ["console"] +tasks/coverage/typescript/tests/cases/compiler/blockScopedBindingsReassignedInLoop1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/blockScopedClassDeclarationAcrossFiles.ts semantic error: Unresolved references mismatch: after transform: ["C"] @@ -1112,6 +1333,9 @@ tasks/coverage/typescript/tests/cases/compiler/booleanFilterAnyArray.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Ari", "Bullean", "BulleanConstructor", "anys", "foo", "foor", "foos", "realanys", "xs", "ys"] rebuilt : ScopeId(0): ["foo", "foor", "foos", "xs", "ys"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference symbol mismatch: after transform: ReferenceId(16): Some("anys") rebuilt : ReferenceId(0): None @@ -1129,6 +1353,9 @@ tasks/coverage/typescript/tests/cases/compiler/cachedContextualTypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IMenuWorkbenchToolBarOptions", "MenuWorkbenchToolBar"] rebuilt : ScopeId(0): ["MenuWorkbenchToolBar"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Unresolved references mismatch: after transform: ["ConstructorParameters", "InstanceType", "createInstance"] rebuilt : ["createInstance"] @@ -1162,11 +1389,17 @@ tasks/coverage/typescript/tests/cases/compiler/callExpressionWithTypeParameterCo semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "i", "y"] rebuilt : ScopeId(0): ["i", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/callOfConditionalTypeWithConcreteBranches.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AddFirstParameterToFunctions", "ExtractParameters", "Q", "Q2", "X", "fn", "fn2"] rebuilt : ScopeId(0): ["fn", "fn2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(9), ScopeId(11), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(18)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(7), ScopeId(8)] Bindings mismatch: after transform: ScopeId(3): ["T", "arg"] rebuilt : ScopeId(1): ["arg"] @@ -1181,17 +1414,29 @@ tasks/coverage/typescript/tests/cases/compiler/callbacksDontShareTypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Collection", "Combinators", "_", "c2", "r1a", "r1b", "r5a", "r5b", "rf1"] rebuilt : ScopeId(0): ["_", "c2", "r1a", "r1b", "r5a", "r5b", "rf1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/callsOnComplexSignatures.tsx semantic error: Bindings mismatch: after transform: ScopeId(1): ["Temp1", "Temp2", "stringType1", "stringType2", "test"] rebuilt : ScopeId(1): ["test"] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(8)] +rebuilt : ScopeId(1): [ScopeId(2)] Bindings mismatch: after transform: ScopeId(9): ["Messages", "messages", "test1"] rebuilt : ScopeId(3): ["messages", "test1"] +Scope children mismatch: +after transform: ScopeId(9): [ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5), ScopeId(6)] Bindings mismatch: after transform: ScopeId(20): ["C", "P1", "P2", "a"] rebuilt : ScopeId(13): ["C", "a"] +Scope children mismatch: +after transform: ScopeId(20): [ScopeId(21), ScopeId(22)] +rebuilt : ScopeId(13): [] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(28), ReferenceId(32), ReferenceId(33), ReferenceId(36), ReferenceId(38), ReferenceId(42), ReferenceId(44), ReferenceId(46)] rebuilt : SymbolId(1): [ReferenceId(24), ReferenceId(28), ReferenceId(31)] @@ -1203,6 +1448,9 @@ tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["iobj", "sobj"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6), ScopeId(10), ScopeId(14), ScopeId(17), ScopeId(20), ScopeId(24), ScopeId(28), ScopeId(31), ScopeId(34), ScopeId(38), ScopeId(41), ScopeId(44), ScopeId(47), ScopeId(53), ScopeId(57), ScopeId(61), ScopeId(65), ScopeId(68), ScopeId(71), ScopeId(75), ScopeId(79), ScopeId(82), ScopeId(85), ScopeId(89), ScopeId(92)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(9), ScopeId(13), ScopeId(16), ScopeId(19), ScopeId(23), ScopeId(27), ScopeId(30), ScopeId(33), ScopeId(37), ScopeId(40), ScopeId(43), ScopeId(46), ScopeId(52), ScopeId(56), ScopeId(60), ScopeId(64), ScopeId(67), ScopeId(70), ScopeId(74), ScopeId(78), ScopeId(81), ScopeId(84), ScopeId(88), ScopeId(91)] Reference symbol mismatch: after transform: ReferenceId(90): Some("sobj") rebuilt : ReferenceId(90): None @@ -1219,6 +1467,26 @@ Unresolved references mismatch: after transform: ["use"] rebuilt : ["iobj", "sobj", "use"] +tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop3.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(7), ScopeId(12), ScopeId(17), ScopeId(21), ScopeId(25), ScopeId(30), ScopeId(35), ScopeId(39), ScopeId(43), ScopeId(48), ScopeId(53), ScopeId(58), ScopeId(63), ScopeId(67), ScopeId(71), ScopeId(76), ScopeId(81), ScopeId(85), ScopeId(89)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(6), ScopeId(11), ScopeId(16), ScopeId(20), ScopeId(24), ScopeId(29), ScopeId(34), ScopeId(38), ScopeId(42), ScopeId(47), ScopeId(52), ScopeId(57), ScopeId(62), ScopeId(66), ScopeId(70), ScopeId(75), ScopeId(80), ScopeId(84), ScopeId(88)] + +tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop3_ES6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(7), ScopeId(12), ScopeId(17), ScopeId(21), ScopeId(25), ScopeId(30), ScopeId(35), ScopeId(39), ScopeId(43), ScopeId(48), ScopeId(53), ScopeId(58), ScopeId(63), ScopeId(67), ScopeId(71), ScopeId(76), ScopeId(81), ScopeId(85), ScopeId(89)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(6), ScopeId(11), ScopeId(16), ScopeId(20), ScopeId(24), ScopeId(29), ScopeId(34), ScopeId(38), ScopeId(42), ScopeId(47), ScopeId(52), ScopeId(57), ScopeId(62), ScopeId(66), ScopeId(70), ScopeId(75), ScopeId(80), ScopeId(84), ScopeId(88)] + +tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop9.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(16), ScopeId(17), ScopeId(33), ScopeId(45), ScopeId(51)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(16), ScopeId(32), ScopeId(44), ScopeId(50)] + +tasks/coverage/typescript/tests/cases/compiler/capturedLetConstInLoop9_ES6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(16), ScopeId(17), ScopeId(33), ScopeId(45), ScopeId(51)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(16), ScopeId(32), ScopeId(44), ScopeId(50)] + tasks/coverage/typescript/tests/cases/compiler/castExpressionParentheses.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "a"] @@ -1270,9 +1538,15 @@ tasks/coverage/typescript/tests/cases/compiler/castNewObjectBug.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "xx"] rebuilt : ScopeId(0): ["xx"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/castTest.ts -semantic error: Unresolved reference IDs mismatch for "Point": +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] +Unresolved reference IDs mismatch for "Point": after transform: [ReferenceId(3), ReferenceId(4), ReferenceId(5), ReferenceId(6), ReferenceId(10)] rebuilt : [ReferenceId(3)] @@ -1305,16 +1579,25 @@ tasks/coverage/typescript/tests/cases/compiler/chainedSpecializationToObjectType semantic error: Bindings mismatch: after transform: ScopeId(0): ["Sequence", "s", "s2", "s3"] rebuilt : ScopeId(0): ["s", "s2", "s3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/checkInfiniteExpansionTermination.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo", "IObservable", "ISubject", "values", "values2"] rebuilt : ScopeId(0): ["values", "values2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/checkInfiniteExpansionTermination2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IObservable", "ISubject", "fn"] rebuilt : ScopeId(0): ["fn"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(5): ["T", "values"] rebuilt : ScopeId(1): ["values"] @@ -1323,6 +1606,9 @@ tasks/coverage/typescript/tests/cases/compiler/checkInterfaceBases.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["SecondEvent", "Third"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["JQueryEventObjectTest"] rebuilt : [] @@ -1337,7 +1623,10 @@ after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1)] rebuilt : SymbolId(0): [ReferenceId(0)] tasks/coverage/typescript/tests/cases/compiler/checkSwitchStatementIfCaseTypeIsString.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Unresolved references mismatch: after transform: ["Array", "use"] rebuilt : ["use"] @@ -1345,11 +1634,17 @@ tasks/coverage/typescript/tests/cases/compiler/circularConstrainedMappedTypeNoCr semantic error: Bindings mismatch: after transform: ScopeId(0): ["Loop"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/circularConstructorWithReturn.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Client", "applyModelsAndClientExtensions", "getPrismaClient"] rebuilt : ScopeId(0): ["applyModelsAndClientExtensions", "getPrismaClient"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] Symbol reference IDs mismatch: after transform: SymbolId(2): [ReferenceId(1)] rebuilt : SymbolId(0): [] @@ -1361,14 +1656,23 @@ tasks/coverage/typescript/tests/cases/compiler/circularContextualMappedType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Func", "Mapped"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/circularGetAccessor.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] +Unresolved references mismatch: after transform: ["this"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/circularMappedTypeConstraint.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] +Unresolved references mismatch: after transform: ["Capitalize", "foo2"] rebuilt : ["foo2"] @@ -1404,6 +1708,9 @@ tasks/coverage/typescript/tests/cases/compiler/circularlySimplifyingConditionalT semantic error: Bindings mismatch: after transform: ScopeId(0): ["ComponentClass", "Connect", "InferableComponentEnhancerWithProps", "Omit", "Shared", "connect", "myStoreConnect"] rebuilt : ScopeId(0): ["myStoreConnect"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(42): Some("connect") rebuilt : ReferenceId(0): None @@ -1434,6 +1741,9 @@ tasks/coverage/typescript/tests/cases/compiler/classExpressionWithResolutionOfNa semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(3): [ReferenceId(0)] rebuilt : SymbolId(1): [] @@ -1442,6 +1752,9 @@ tasks/coverage/typescript/tests/cases/compiler/classExpressionWithStaticProperti semantic error: Bindings mismatch: after transform: ScopeId(0): ["arr", "console"] rebuilt : ScopeId(0): ["arr"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(5)] Reference symbol mismatch: after transform: ReferenceId(6): Some("console") rebuilt : ReferenceId(6): None @@ -1453,6 +1766,9 @@ tasks/coverage/typescript/tests/cases/compiler/classExpressionWithStaticProperti semantic error: Bindings mismatch: after transform: ScopeId(0): ["arr", "console"] rebuilt : ScopeId(0): ["arr"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(5)] Reference symbol mismatch: after transform: ReferenceId(6): Some("console") rebuilt : ReferenceId(6): None @@ -1464,14 +1780,23 @@ tasks/coverage/typescript/tests/cases/compiler/classExpressions.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/classExtendingAbstractClassWithMemberCalledTheSameAsItsOwnTypeParam.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["BaseObservable", "ConvenientObservable", "IObservable", "IObserver", "IReader"] rebuilt : ScopeId(0): ["BaseObservable", "ConvenientObservable"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Bindings mismatch: after transform: ScopeId(7): ["T", "TChange"] rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(7): [ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(1): [ScopeId(2)] Bindings mismatch: after transform: ScopeId(10): ["T", "TChange"] rebuilt : ScopeId(3): [] @@ -1517,12 +1842,18 @@ tasks/coverage/typescript/tests/cases/compiler/classFunctionMerging.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "a", "b"] rebuilt : ScopeId(0): ["a", "b"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [] Unresolved reference IDs mismatch for "Foo": after transform: [ReferenceId(0), ReferenceId(1), ReferenceId(2)] rebuilt : [ReferenceId(0), ReferenceId(1)] tasks/coverage/typescript/tests/cases/compiler/classFunctionMerging2.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] +Unresolved references mismatch: after transform: ["A", "B", "console"] rebuilt : ["B", "console"] Unresolved reference IDs mismatch for "B": @@ -1533,6 +1864,9 @@ tasks/coverage/typescript/tests/cases/compiler/classImplementingInterfaceIndexer semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "I"] rebuilt : ScopeId(0): ["A"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/classImplementsClass1.ts semantic error: Symbol reference IDs mismatch: @@ -1558,6 +1892,9 @@ Missing ReferenceId: M2 Bindings mismatch: after transform: ScopeId(0): ["M1", "M2"] rebuilt : ScopeId(0): ["M2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(4): ["C", "T", "_M2"] rebuilt : ScopeId(1): ["C", "_M2"] @@ -1572,6 +1909,9 @@ tasks/coverage/typescript/tests/cases/compiler/classImplementsMethodWIthTupleArg semantic error: Bindings mismatch: after transform: ScopeId(0): ["Settable"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Record"] rebuilt : [] @@ -1585,6 +1925,9 @@ tasks/coverage/typescript/tests/cases/compiler/classMemberInitializerWithLamdaSc semantic error: Bindings mismatch: after transform: ScopeId(0): ["Greeter", "console"] rebuilt : ScopeId(0): ["Greeter"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(0): Some("console") rebuilt : ReferenceId(0): None @@ -1606,7 +1949,10 @@ after transform: SymbolId(2): [ReferenceId(0), ReferenceId(3), ReferenceId(4)] rebuilt : SymbolId(2): [ReferenceId(0)] tasks/coverage/typescript/tests/cases/compiler/classVarianceResolveCircularity1.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] +Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] Symbol reference IDs mismatch: @@ -1614,7 +1960,10 @@ after transform: SymbolId(0): [ReferenceId(2), ReferenceId(3)] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/classVarianceResolveCircularity2.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] +Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] Bindings mismatch: @@ -1638,12 +1987,18 @@ 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)] +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)] 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(7): ["T"] rebuilt : ScopeId(4): [] @@ -1702,6 +2057,9 @@ rebuilt : ScopeId(3): ["Baz", "_Foo"] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(3): ScopeFlags(Function) +Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(6)] +rebuilt : ScopeId(3): [ScopeId(4)] Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(Class | NameSpaceModule | ValueModule) rebuilt : SymbolId(0): SymbolFlags(Class) @@ -1754,12 +2112,18 @@ 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"] Scope flags mismatch: after transform: ScopeId(4): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) +Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(1): [ScopeId(2)] Symbol flags mismatch: after transform: SymbolId(3): SymbolFlags(FunctionScopedVariable | Export) rebuilt : SymbolId(1): SymbolFlags(FunctionScopedVariable) @@ -1779,6 +2143,9 @@ Missing ReferenceId: _Moclodule2 Missing ReferenceId: Manager Missing ReferenceId: Moclodule Missing ReferenceId: Moclodule +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Binding symbols mismatch: after transform: ScopeId(5): [SymbolId(2), SymbolId(4)] rebuilt : ScopeId(2): [SymbolId(1), SymbolId(2)] @@ -1811,6 +2178,9 @@ tasks/coverage/typescript/tests/cases/compiler/coAndContraVariantInferences2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "Block", "C", "CaseClause", "ClassExpression1", "ClassLike1", "ClassStatement1", "Declaration", "Expression", "FunctionDeclaration", "HasLocals", "Identifier", "Node", "Node1", "NodeArray", "Statement1", "SyntaxKind", "SyntaxKind1", "TypeNode", "bar", "f1", "f2", "f3", "foo", "maybeClassStatement", "statement", "types", "x"] rebuilt : ScopeId(0): ["SyntaxKind", "SyntaxKind1", "bar", "f1", "f2", "f3", "foo", "maybeClassStatement", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] Bindings mismatch: after transform: ScopeId(14): ["Block", "CaseClause", "FunctionDeclaration", "FunctionExpression", "Identifier", "SyntaxKind"] rebuilt : ScopeId(6): ["SyntaxKind"] @@ -1849,6 +2219,9 @@ tasks/coverage/typescript/tests/cases/compiler/coAndContraVariantInferences3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AssertClause", "BindableOverloadBuilder", "BoundOverloadBuilder", "DISALLOW_DECORATORS", "Declaration", "Decorator", "DeprecationOptions", "Expression", "FinishableOverloadBuilder", "ImportClause", "ImportDeclaration", "Modifier", "Node", "OverloadBinder", "OverloadBinders", "OverloadBuilder", "OverloadDefinitions", "OverloadDeprecations", "OverloadFunction", "OverloadKeys", "OverloadParameters", "Statement", "SyntaxKind", "UnionToIntersection", "foo", "modifiers", "updateImportDeclaration"] rebuilt : ScopeId(0): ["SyntaxKind", "foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] Bindings mismatch: after transform: ScopeId(27): ["AssertClause", "Decorator", "ImportClause", "ImportDeclaration", "Modifier", "SyntaxKind"] rebuilt : ScopeId(1): ["SyntaxKind"] @@ -1884,6 +2257,9 @@ tasks/coverage/typescript/tests/cases/compiler/coAndContraVariantInferences4.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Decorator", "Modifier", "Node", "SyntaxKind", "foo", "modifiers"] rebuilt : ScopeId(0): ["SyntaxKind", "foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["Decorator", "Modifier", "SyntaxKind"] rebuilt : ScopeId(1): ["SyntaxKind"] @@ -1910,6 +2286,9 @@ tasks/coverage/typescript/tests/cases/compiler/coAndContraVariantInferences5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["SelectOptions", "SelectProps", "Thing", "f"] rebuilt : ScopeId(0): ["f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["Array", "select"] rebuilt : ["select"] @@ -1918,6 +2297,9 @@ 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: +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/coAndContraVariantInferences8.ts semantic error: Bindings mismatch: @@ -1943,6 +2325,9 @@ tasks/coverage/typescript/tests/cases/compiler/collectionPatternNoError.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["DataProvider", "Message", "MessageList", "MsgConstructor", "f", "fetchMsg"] rebuilt : ScopeId(0): ["DataProvider", "Message", "f", "fetchMsg"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(7)] Bindings mismatch: after transform: ScopeId(7): ["V", "protoCtor"] rebuilt : ScopeId(3): ["protoCtor"] @@ -1959,10 +2344,18 @@ Unresolved references mismatch: after transform: ["Array"] rebuilt : [] +tasks/coverage/typescript/tests/cases/compiler/collisionArgumentsInType.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/collisionArgumentsInterfaceMembers.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["i1", "i12", "i1NoError", "i2", "i21", "i2NoError", "i3"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(10)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/collisionCodeGenEnumWithEnumMemberConflict.ts semantic error: Bindings mismatch: @@ -2082,6 +2475,9 @@ rebuilt : ScopeId(1): ["_m", "m2"] 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)] Symbol flags mismatch: after transform: SymbolId(2): SymbolFlags(Export | Class) rebuilt : SymbolId(2): SymbolFlags(Class) @@ -2160,11 +2556,17 @@ tasks/coverage/typescript/tests/cases/compiler/collisionExportsRequireAndAmbient semantic error: Bindings mismatch: after transform: ScopeId(0): ["m1", "m2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/collisionExportsRequireAndAmbientEnum.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["exports", "m1", "m2", "require"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/collisionExportsRequireAndAmbientFunction.ts semantic error: Missing SymbolId: m2 @@ -2174,12 +2576,18 @@ Missing ReferenceId: m2 Bindings mismatch: after transform: ScopeId(0): ["m1", "m2"] rebuilt : ScopeId(0): ["m2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Binding symbols mismatch: after transform: ScopeId(6): [SymbolId(2), SymbolId(3)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(6): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) +Scope children mismatch: +after transform: ScopeId(6): [ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/compiler/collisionExportsRequireAndAmbientFunctionInGlobalFile.ts semantic error: Missing SymbolId: m4 @@ -2189,12 +2597,18 @@ Missing ReferenceId: m4 Bindings mismatch: after transform: ScopeId(0): ["m3", "m4"] rebuilt : ScopeId(0): ["m4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Binding symbols mismatch: after transform: ScopeId(6): [SymbolId(2), SymbolId(3)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(6): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) +Scope children mismatch: +after transform: ScopeId(6): [ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/compiler/collisionExportsRequireAndAmbientModule.ts semantic error: Missing SymbolId: m2 @@ -2204,9 +2618,15 @@ Missing ReferenceId: m2 Bindings mismatch: after transform: ScopeId(0): ["exports", "foo", "foo2", "m1", "m2", "require"] rebuilt : ScopeId(0): ["foo", "foo2", "m2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(8), ScopeId(9), ScopeId(16)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(16): ["_m", "a", "exports", "require"] rebuilt : ScopeId(3): ["_m", "a"] +Scope children mismatch: +after transform: ScopeId(16): [ScopeId(17), ScopeId(20)] +rebuilt : ScopeId(3): [] Unresolved references mismatch: after transform: ["exports", "require"] rebuilt : [] @@ -2219,6 +2639,9 @@ Missing ReferenceId: m2 Bindings mismatch: after transform: ScopeId(0): ["exports", "m1", "m2", "require"] rebuilt : ScopeId(0): ["m2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(2): ["_m", "a", "exports", "require"] rebuilt : ScopeId(1): ["_m", "a"] @@ -2337,19 +2760,62 @@ tasks/coverage/typescript/tests/cases/compiler/collisionExportsRequireAndUninsta semantic error: Bindings mismatch: after transform: ScopeId(0): ["exports", "foo", "foo2", "require"] rebuilt : ScopeId(0): ["foo", "foo2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Unresolved references mismatch: after transform: ["exports", "require"] rebuilt : [] +tasks/coverage/typescript/tests/cases/compiler/collisionRestParameterClassConstructor.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(21), ScopeId(25), ScopeId(28)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15)] +Scope children mismatch: +after transform: ScopeId(17): [ScopeId(18), ScopeId(19), ScopeId(20)] +rebuilt : ScopeId(13): [ScopeId(14)] +Scope children mismatch: +after transform: ScopeId(21): [ScopeId(22), ScopeId(23), ScopeId(24)] +rebuilt : ScopeId(15): [ScopeId(16)] + +tasks/coverage/typescript/tests/cases/compiler/collisionRestParameterClassMethod.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(10), ScopeId(17)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(6)] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] + +tasks/coverage/typescript/tests/cases/compiler/collisionRestParameterFunction.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] + +tasks/coverage/typescript/tests/cases/compiler/collisionRestParameterFunctionExpressions.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] + +tasks/coverage/typescript/tests/cases/compiler/collisionRestParameterInType.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/collisionRestParameterInterfaceMembers.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["i1", "i1NoError", "i2", "i2NoError", "i3"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/collisionRestParameterUnderscoreIUsage.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "_i", "console"] rebuilt : ScopeId(0): ["Foo", "_i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(0): Some("console") rebuilt : ReferenceId(0): None @@ -2357,14 +2823,38 @@ Unresolved references mismatch: after transform: [] rebuilt : ["console"] +tasks/coverage/typescript/tests/cases/compiler/collisionSuperAndNameResolution.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + tasks/coverage/typescript/tests/cases/compiler/collisionSuperAndParameter.ts -semantic error: Symbol reference IDs mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(9), ScopeId(19), ScopeId(23)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(9), ScopeId(19)] +Scope children mismatch: +after transform: ScopeId(23): [ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29)] +rebuilt : ScopeId(19): [ScopeId(20), ScopeId(21)] +Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(1)] +tasks/coverage/typescript/tests/cases/compiler/collisionSuperAndPropertyNameAsConstuctorParameter.ts +semantic error: Scope children mismatch: +after transform: ScopeId(6): [ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(6): [ScopeId(7)] +Scope children mismatch: +after transform: ScopeId(10): [ScopeId(11), ScopeId(12), ScopeId(13)] +rebuilt : ScopeId(8): [ScopeId(9)] + tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndAliasInGlobal.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript +tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndAmbientClassInGlobal.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndAmbientVarInGlobal.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["_this", "f"] @@ -2387,6 +2877,16 @@ Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(RegularEnum) rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) +tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndLocalVarInFunction.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndLocalVarInLambda.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] + tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndModuleInGlobal.ts semantic error: Missing SymbolId: _this Missing SymbolId: _this2 @@ -2402,10 +2902,21 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) +tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndNameResolution.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndParameter.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "Foo1", "Foo3", "console", "f1", "f3"] rebuilt : ScopeId(0): ["Foo", "Foo1", "Foo3", "f1", "f3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(17), ScopeId(21), ScopeId(22), ScopeId(24), ScopeId(27), ScopeId(28), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(44), ScopeId(49), ScopeId(50)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(17), ScopeId(21), ScopeId(23), ScopeId(30)] +Scope children mismatch: +after transform: ScopeId(28): [ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(34), ScopeId(35), ScopeId(36)] +rebuilt : ScopeId(23): [ScopeId(24), ScopeId(27)] Reference symbol mismatch: after transform: ReferenceId(1): Some("console") rebuilt : ReferenceId(1): None @@ -2416,6 +2927,14 @@ Unresolved references mismatch: after transform: [] rebuilt : ["console"] +tasks/coverage/typescript/tests/cases/compiler/collisionThisExpressionAndPropertyNameAsConstuctorParameter.ts +semantic error: Scope children mismatch: +after transform: ScopeId(9): [ScopeId(10), ScopeId(11), ScopeId(12)] +rebuilt : ScopeId(9): [ScopeId(10)] +Scope children mismatch: +after transform: ScopeId(15): [ScopeId(16), ScopeId(17), ScopeId(18)] +rebuilt : ScopeId(13): [ScopeId(14)] + tasks/coverage/typescript/tests/cases/compiler/commentEmitAtEndOfFile1.ts semantic error: Missing SymbolId: foo Missing SymbolId: _foo @@ -2424,6 +2943,9 @@ Missing ReferenceId: foo Bindings mismatch: after transform: ScopeId(0): ["empty", "f", "foo"] rebuilt : ScopeId(0): ["f", "foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Binding symbols mismatch: after transform: ScopeId(1): [SymbolId(2), SymbolId(4)] rebuilt : ScopeId(1): [SymbolId(2), SymbolId(3)] @@ -2480,20 +3002,31 @@ Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(3): ScopeFlags(Function) +tasks/coverage/typescript/tests/cases/compiler/commentLeadingCloseBrace.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/commentOnAmbientClass1.ts -semantic error: Unresolved references mismatch: -after transform: ["C"] -rebuilt : [] +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/commentOnAmbientEnum.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "D"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/commentOnAmbientModule.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "D"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/commentOnAmbientVariable1.ts semantic error: Bindings mismatch: @@ -2512,14 +3045,22 @@ after transform: [] rebuilt : ["x"] tasks/coverage/typescript/tests/cases/compiler/commentOnAmbientfunction.ts -semantic error: Unresolved references mismatch: -after transform: ["bar", "foo"] -rebuilt : [] +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/commentOnDecoratedClassDeclaration.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/commentOnElidedModule1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ElidedModule", "ElidedModule2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/commentOnExportEnumDeclaration.ts semantic error: Bindings mismatch: @@ -2536,16 +3077,30 @@ tasks/coverage/typescript/tests/cases/compiler/commentOnInterface1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "I2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/commentOnParenthesizedExpressionOpenParen1.ts semantic error: Reference flags mismatch: after transform: ReferenceId(0): ReferenceFlags(Read | Write) rebuilt : ReferenceId(0): ReferenceFlags(Write) +tasks/coverage/typescript/tests/cases/compiler/commentOnSignature1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] +Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(2): [ScopeId(3), ScopeId(4)] + tasks/coverage/typescript/tests/cases/compiler/commentsOnJSXExpressionsArePreserved.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["Component", "JSX", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["Component", "_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/commonJsImportClassExpression.ts semantic error: `export = ;` is only supported when compiling modules to CommonJS. @@ -2566,6 +3121,9 @@ tasks/coverage/typescript/tests/cases/compiler/comparableRelationBidirectional.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["Automation", "AutomationMode", "ExtensionData", "ThemePreset", "UserSettings", "getMockData"] rebuilt : ScopeId(0): ["AutomationMode", "getMockData"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["AutomationMode", "LOCATION", "NONE", "SYSTEM", "TIME"] rebuilt : ScopeId(1): ["AutomationMode"] @@ -2583,6 +3141,9 @@ tasks/coverage/typescript/tests/cases/compiler/comparisonOfPartialDeepAndIndexed semantic error: Bindings mismatch: after transform: ScopeId(0): ["Collection", "Many", "PartialDeep", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/complexNarrowingWithAny.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -2591,6 +3152,9 @@ tasks/coverage/typescript/tests/cases/compiler/complicatedIndexesOfIntersections semantic error: Bindings mismatch: after transform: ScopeId(0): ["FormikConfig"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["Exclude", "Extract", "Func", "Partial", "Pick", "Readonly"] rebuilt : ["Func"] @@ -2694,11 +3258,17 @@ tasks/coverage/typescript/tests/cases/compiler/computedTypesKeyofNoIndexSignatur semantic error: Bindings mismatch: after transform: ScopeId(0): ["Compute", "Equals", "EqualsTest", "Filter", "FooBar", "FooBarKey", "IndexObject", "OmitIndex", "WithIndex", "WithIndexKey", "WithoutIndex", "WithoutIndexKey"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/conditionalEqualityTestingNullability.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Equals", "Foo", "ShouldBe0", "a", "b"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Date"] rebuilt : [] @@ -2707,11 +3277,22 @@ tasks/coverage/typescript/tests/cases/compiler/conditionalTypeAnyUnion.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["R", "Spec", "WithSpec"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/conditionalTypeBasedContextualTypeReturnTypeWidening.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7)] tasks/coverage/typescript/tests/cases/compiler/conditionalTypeClassMembers.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["DS"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(6)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["MyRecord", "MySet"] rebuilt : [] @@ -2720,20 +3301,35 @@ tasks/coverage/typescript/tests/cases/compiler/conditionalTypeContextualTypeSimp semantic error: Bindings mismatch: after transform: ScopeId(0): ["Props", "bad", "good1", "good2"] rebuilt : ScopeId(0): ["bad", "good1", "good2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] Bindings mismatch: after transform: ScopeId(2): ["P", "attrs"] rebuilt : ScopeId(1): ["attrs"] +Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3)] +rebuilt : ScopeId(1): [] Bindings mismatch: after transform: ScopeId(6): ["P", "attrs"] rebuilt : ScopeId(2): ["attrs"] +Scope children mismatch: +after transform: ScopeId(6): [ScopeId(7)] +rebuilt : ScopeId(2): [] Bindings mismatch: after transform: ScopeId(9): ["P", "attrs"] rebuilt : ScopeId(3): ["attrs"] +Scope children mismatch: +after transform: ScopeId(9): [ScopeId(10)] +rebuilt : ScopeId(3): [] tasks/coverage/typescript/tests/cases/compiler/conditionalTypeDiscriminatingLargeUnionRegularTypeFetchingSpeedReasonable.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["BigUnion", "ChildrenOf", "DiscriminateUnion", "WithName", "makeThing"] rebuilt : ScopeId(0): ["makeThing"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(6): ["T", "children", "name"] rebuilt : ScopeId(1): ["children", "name"] @@ -2745,11 +3341,17 @@ tasks/coverage/typescript/tests/cases/compiler/conditionalTypeGenericInSignature semantic error: Bindings mismatch: after transform: ScopeId(0): ["H_inline1", "Result"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/conditionalTypeRelaxingConstraintAssignability.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["DeepPartial", "ElChildren", "Elem", "I", "Relax", "g"] rebuilt : ScopeId(0): ["Elem", "g"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(13), ScopeId(14)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Bindings mismatch: after transform: ScopeId(7): ["C"] rebuilt : ScopeId(1): [] @@ -2761,12 +3363,18 @@ tasks/coverage/typescript/tests/cases/compiler/conditionalTypeSimplification.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AbstractSchema", "AnySchema", "AnySchemaType", "SchemaType"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Exclude"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/conditionalTypeSubclassExtendsTypeParam.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [] +Unresolved references mismatch: after transform: ["Field"] rebuilt : [] @@ -2774,6 +3382,9 @@ tasks/coverage/typescript/tests/cases/compiler/conditionalTypesSimplifyWhenTrivi semantic error: Bindings mismatch: after transform: ScopeId(0): ["ExcludeWithDefault", "ExtractWithDefault", "TemplatedConditional", "fn1", "fn10", "fn11", "fn12", "fn2", "fn3", "fn4", "fn5", "fn6", "fn7", "fn8", "fn9", "x", "z", "zee"] rebuilt : ScopeId(0): ["fn1", "fn10", "fn11", "fn12", "fn2", "fn3", "fn4", "fn5", "fn6", "fn7", "fn8", "fn9", "zee"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] Bindings mismatch: after transform: ScopeId(1): ["Params", "params"] rebuilt : ScopeId(1): ["params"] @@ -2818,7 +3429,13 @@ after transform: ["Exclude", "Extract", "Pick"] rebuilt : ["z"] tasks/coverage/typescript/tests/cases/compiler/conditionallyDuplicateOverloadsCausedByOverloadResolution.ts -semantic error: Symbol reference IDs mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] +Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(1): [ScopeId(2)] +Symbol reference IDs mismatch: after transform: SymbolId(3): [ReferenceId(1)] rebuilt : SymbolId(1): [] Symbol reference IDs mismatch: @@ -2840,6 +3457,9 @@ tasks/coverage/typescript/tests/cases/compiler/constDeclarations-ambient.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["M", "c1", "c2", "c3", "c4", "c5"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/constEnumExternalModule.ts semantic error: `export = ;` is only supported when compiling modules to CommonJS. @@ -3425,6 +4045,9 @@ tasks/coverage/typescript/tests/cases/compiler/constIndexedAccess.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["indexAccess", "n", "n1", "n2", "n3", "numbers", "numbersNotConst", "s", "s1", "s2", "s3", "test"] rebuilt : ScopeId(0): ["n", "n1", "n2", "n3", "numbers", "numbersNotConst", "s", "s1", "s2", "s3", "test"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["numbers", "one", "zero"] rebuilt : ScopeId(1): ["numbers"] @@ -3445,7 +4068,10 @@ after transform: SymbolId(11): SymbolFlags(RegularEnum) rebuilt : SymbolId(9): SymbolFlags(FunctionScopedVariable) tasks/coverage/typescript/tests/cases/compiler/constantOverloadFunction.ts -semantic error: Symbol reference IDs 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)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9)] +Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2), ReferenceId(6), ReferenceId(7)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2)] Symbol reference IDs mismatch: @@ -3459,7 +4085,10 @@ after transform: SymbolId(3): [ReferenceId(5)] rebuilt : SymbolId(3): [] tasks/coverage/typescript/tests/cases/compiler/constantOverloadFunctionNoSubtypeError.ts -semantic error: Symbol reference IDs 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)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9)] +Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2), ReferenceId(6), ReferenceId(7)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2)] Symbol reference IDs mismatch: @@ -3490,6 +4119,9 @@ tasks/coverage/typescript/tests/cases/compiler/constraintOfRecursivelyMappedType semantic error: Bindings mismatch: after transform: ScopeId(0): ["IImmutableMap", "IImmutableMap2", "ImmutableModel", "ImmutableModel2", "ImmutableTypes", "ImmutableTypes2", "Map", "isImmutableType"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(8), ScopeId(9), ScopeId(11), ScopeId(13)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/constraintPropagationThroughReturnTypes.ts semantic error: Bindings mismatch: @@ -3503,6 +4135,9 @@ tasks/coverage/typescript/tests/cases/compiler/constraintReferencingTypeParamete semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1", "I2", "I3", "I4", "IComparable", "f", "foo"] rebuilt : ScopeId(0): ["f", "foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(2): ["I", "T"] rebuilt : ScopeId(1): [] @@ -3514,6 +4149,9 @@ tasks/coverage/typescript/tests/cases/compiler/constraintsThatReferenceOtherCont semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo", "Object", "x"] rebuilt : ScopeId(0): ["Bar", "Foo", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(2): ["T", "U"] rebuilt : ScopeId(1): [] @@ -3547,6 +4185,9 @@ rebuilt : ScopeId(1): ["F", "MyClass", "_Test"] 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(5)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(4)] Symbol flags mismatch: after transform: SymbolId(3): SymbolFlags(Export | Class) rebuilt : SymbolId(2): SymbolFlags(Class) @@ -3573,11 +4214,30 @@ tasks/coverage/typescript/tests/cases/compiler/constructorArgs.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Options", "Sub", "Super"] rebuilt : ScopeId(0): ["Sub", "Super"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] + +tasks/coverage/typescript/tests/cases/compiler/constructorOverloads2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] +Scope children mismatch: +after transform: ScopeId(6): [ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(4): [ScopeId(5), ScopeId(6)] tasks/coverage/typescript/tests/cases/compiler/constructorOverloads5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IArguments", "M"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/constructorOverloads9.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/constructorReturningAPrimitive.ts semantic error: Bindings mismatch: @@ -3593,6 +4253,9 @@ tasks/coverage/typescript/tests/cases/compiler/contextSensitiveReturnTypeInferen semantic error: Bindings mismatch: after transform: ScopeId(0): ["DEPS", "IData"] rebuilt : ScopeId(0): ["DEPS"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9)] Symbol reference IDs mismatch: after transform: SymbolId(4): [ReferenceId(6), ReferenceId(8), ReferenceId(11), ReferenceId(15), ReferenceId(19), ReferenceId(22)] rebuilt : SymbolId(0): [ReferenceId(3), ReferenceId(7), ReferenceId(11), ReferenceId(15), ReferenceId(18)] @@ -3601,6 +4264,9 @@ tasks/coverage/typescript/tests/cases/compiler/contextualComputedNonBindableProp semantic error: Bindings mismatch: after transform: ScopeId(0): ["Mapped", "Original", "propSelector", "unexpectedlyFailingExample"] rebuilt : ScopeId(0): ["propSelector", "unexpectedlyFailingExample"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] Symbol flags mismatch: after transform: SymbolId(11): SymbolFlags(FunctionScopedVariable | TypeParameter) rebuilt : SymbolId(2): SymbolFlags(FunctionScopedVariable) @@ -3618,23 +4284,41 @@ tasks/coverage/typescript/tests/cases/compiler/contextualExpressionTypecheckingD semantic error: Bindings mismatch: after transform: ScopeId(0): ["IValidationError", "Operation"] rebuilt : ScopeId(0): ["Operation"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/contextualOuterTypeParameters.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T", "fn1", "fn2", "obj"] rebuilt : ScopeId(0): ["fn1", "fn2", "obj"] +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): [] Symbol reference IDs mismatch: after transform: SymbolId(2): [ReferenceId(2), ReferenceId(4)] rebuilt : SymbolId(0): [] @@ -3662,6 +4346,11 @@ Unresolved references mismatch: after transform: [] rebuilt : ["y"] +tasks/coverage/typescript/tests/cases/compiler/contextualPropertyOfGenericMappedType.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/contextualReturnTypeOfIIFE.ts semantic error: Unresolved reference IDs mismatch for "Promise": after transform: [ReferenceId(0), ReferenceId(1), ReferenceId(2)] @@ -3671,14 +4360,23 @@ tasks/coverage/typescript/tests/cases/compiler/contextualReturnTypeOfIIFE2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["app"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/contextualReturnTypeOfIIFE3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["app"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/contextualSigInstantiationRestParams.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] +Unresolved references mismatch: after transform: ["contextual", "toInstantiate"] rebuilt : ["toInstantiate"] @@ -3686,12 +4384,18 @@ tasks/coverage/typescript/tests/cases/compiler/contextualSignatureConditionalTyp semantic error: Bindings mismatch: after transform: ScopeId(0): ["ActionFunction", "TypegenDisabled", "TypegenEnabled"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["createMachine", "true"] rebuilt : ["createMachine"] tasks/coverage/typescript/tests/cases/compiler/contextualSignatureInstantiation1.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] +Bindings mismatch: after transform: ScopeId(2): ["K", "x", "y"] rebuilt : ScopeId(1): ["x", "y"] Bindings mismatch: @@ -3720,6 +4424,11 @@ Bindings mismatch: after transform: ScopeId(3): ["T", "x"] rebuilt : ScopeId(3): ["x"] +tasks/coverage/typescript/tests/cases/compiler/contextualSignatureInstantiation4.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/contextualSignatureInstantiationWithTypeParameterConstrainedToOuterTypeParameter.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["V", "W", "f", "h", "x"] @@ -3735,21 +4444,33 @@ tasks/coverage/typescript/tests/cases/compiler/contextualSignatureInstatiationCo semantic error: Bindings mismatch: after transform: ScopeId(0): ["Animal", "Giraffe", "T", "TallThing", "f2", "g2", "h2"] rebuilt : ScopeId(0): ["f2", "g2", "h2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/contextualSignature_objectLiteralMethodMayReturnNever.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "o"] rebuilt : ScopeId(0): ["o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/contextualTypeArrayReturnType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IBookStyle", "NamedTransform", "Transform3D", "style"] rebuilt : ScopeId(0): ["style"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/contextualTypeBasedOnIntersectionWithAnyInTheMix1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Attrs", "BaseProps", "ComponentProps", "ComponentType", "Flex", "StyledFunction", "StyledInterface", "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)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(29): Some("styled") rebuilt : ReferenceId(0): None @@ -3764,16 +4485,25 @@ tasks/coverage/typescript/tests/cases/compiler/contextualTypeBasedOnIntersection semantic error: Bindings mismatch: after transform: ScopeId(0): ["Component", "IntrinsicElements", "MDXComponents", "MDXProps", "NestedMDXComponents"] rebuilt : ScopeId(0): [] +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: +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"] 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)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(36): Some("app") rebuilt : ReferenceId(0): None @@ -3788,6 +4518,9 @@ tasks/coverage/typescript/tests/cases/compiler/contextualTypeCaching.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "CustomEvents", "Event", "Optimization", "P", "T", "WebpackPluginFunction", "WebpackPluginInstance", "applyOptimizationDefaults"] rebuilt : ScopeId(0): ["applyOptimizationDefaults"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Reference symbol mismatch: after transform: ReferenceId(20): Some("A") rebuilt : ReferenceId(1): None @@ -3796,7 +4529,10 @@ after transform: ["MyCompiler", "emit"] rebuilt : ["A", "emit"] tasks/coverage/typescript/tests/cases/compiler/contextualTypeIterableUnions.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] +Unresolved references mismatch: after transform: ["DMap", "Iterable", "true"] rebuilt : ["DMap"] @@ -3804,11 +4540,17 @@ tasks/coverage/typescript/tests/cases/compiler/contextualTypeObjectSpreadExpress semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "i"] rebuilt : ScopeId(0): ["i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/contextualTypeOfIndexedAccessParameter.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Keys", "OptionsForKey", "g"] rebuilt : ScopeId(0): ["g"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(5): ["K", "x", "y"] rebuilt : ScopeId(2): ["x", "y"] @@ -3817,6 +4559,9 @@ tasks/coverage/typescript/tests/cases/compiler/contextualTypeOnYield1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["FuncOrGeneratorFunc", "f"] rebuilt : ScopeId(0): ["f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["Generator", "console"] rebuilt : ["console"] @@ -3825,6 +4570,9 @@ tasks/coverage/typescript/tests/cases/compiler/contextualTypeOnYield2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["OrGen", "g"] rebuilt : ScopeId(0): ["g"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["Generator", "console"] rebuilt : ["console"] @@ -3833,6 +4581,9 @@ tasks/coverage/typescript/tests/cases/compiler/contextualTypeSelfReferencing.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["def", "narrow", "parse", "result"] rebuilt : ScopeId(0): ["result"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(11): Some("parse") rebuilt : ReferenceId(0): None @@ -3844,11 +4595,17 @@ tasks/coverage/typescript/tests/cases/compiler/contextualTypeShouldBeLiteral.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["LikeA", "LikeB", "TestGeneric", "TestObject", "TestString", "X", "X2", "X3", "Y", "Y2", "Y3", "foo", "foo2", "test", "xy", "xyz"] rebuilt : ScopeId(0): ["foo", "foo2", "test", "xy", "xyz"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] tasks/coverage/typescript/tests/cases/compiler/contextualTypesNegatedTypeLikeConstraintInGenericMappedType1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["DEFAULT_TABS_TAG", "ElementType", "IntrinsicElements", "Props", "TabGroup", "TabGroupProps", "_internal_ComponentTabGroup"] 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)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(2): [ReferenceId(11), ReferenceId(17)] rebuilt : SymbolId(0): [] @@ -3863,6 +4620,9 @@ tasks/coverage/typescript/tests/cases/compiler/contextualTypesNegatedTypeLikeCon semantic error: Bindings mismatch: after transform: ScopeId(0): ["DEFAULT_TABS_TAG", "ElementType", "IntrinsicElements", "MappedOmit", "Props", "TabGroup", "TabGroupProps", "_internal_ComponentTabGroup"] 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)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(6): [ReferenceId(17), ReferenceId(23)] rebuilt : SymbolId(0): [] @@ -3888,6 +4648,14 @@ tasks/coverage/typescript/tests/cases/compiler/contextualTypingFunctionReturning semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/typescript/tests/cases/compiler/contextualTypingFunctionReturningFunction2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/contextualTypingOfConditionalExpression.ts semantic error: Symbol reference IDs mismatch: @@ -3898,11 +4666,17 @@ tasks/coverage/typescript/tests/cases/compiler/contextualTypingOfLambdaWithMulti semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "foo"] rebuilt : ScopeId(0): ["foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/contextualTypingOfOptionalMembers.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["ActionsArray", "ActionsObject", "ActionsObjectOr", "Bar", "JSX", "Options", "Options2", "_jsxFileName", "_reactJsxRuntime", "a", "y"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime", "a", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(20), ScopeId(21), ScopeId(22)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] Unresolved references mismatch: after transform: ["App4", "JSX", "app", "app2", "app3", "foo", "require", "undefined"] rebuilt : ["App4", "app", "app2", "app3", "foo", "require", "undefined"] @@ -3911,6 +4685,9 @@ tasks/coverage/typescript/tests/cases/compiler/contextualTypingOfTooShortOverloa semantic error: Bindings mismatch: after transform: ScopeId(0): ["ErrorRequestHandler", "IRouterHandler", "IRouterMatcher", "MyApp", "NextFunction", "Overload", "PathParams", "Request", "RequestHandler", "RequestHandlerParams", "Response", "app", "use"] rebuilt : ScopeId(0): ["app", "use"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Unresolved references mismatch: after transform: ["RegExp"] rebuilt : [] @@ -3919,6 +4696,9 @@ tasks/coverage/typescript/tests/cases/compiler/contextualTypingReturnStatementWi semantic error: Bindings mismatch: after transform: ScopeId(0): ["PropOfRaw", "getSpecsFromRaw"] rebuilt : ScopeId(0): ["getSpecsFromRaw"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/contextualTypingTwoInstancesOfSameTypeParameter.ts semantic error: Bindings mismatch: @@ -3939,6 +4719,9 @@ tasks/coverage/typescript/tests/cases/compiler/contextuallyTypeAsyncFunctionRetu semantic error: Bindings mismatch: after transform: ScopeId(0): ["LoadCallback", "cb1", "cb2", "cb3", "fn1"] rebuilt : ScopeId(0): ["cb1", "cb2", "cb3", "fn1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(11), ScopeId(12)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8)] Unresolved references mismatch: after transform: ["Promise", "Record", "StateMachine", "createMachine", "load"] rebuilt : ["Promise", "createMachine", "load"] @@ -3950,6 +4733,9 @@ tasks/coverage/typescript/tests/cases/compiler/contextuallyTypeGeneratorReturnTy semantic error: Bindings mismatch: after transform: ScopeId(0): ["Action", "Action2", "test1", "test2"] rebuilt : ScopeId(0): ["test1", "test2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Unresolved references mismatch: after transform: ["AsyncGenerator", "Generator", "Promise"] rebuilt : ["Promise"] @@ -3958,6 +4744,9 @@ tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedByDiscriminableU semantic error: Bindings mismatch: after transform: ScopeId(0): ["ADT", "invoke", "kind"] rebuilt : ScopeId(0): ["invoke", "kind"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5)] tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedGenericAssignment.ts semantic error: Bindings mismatch: @@ -3968,6 +4757,9 @@ tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedJsxAttribute.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Elements", "Props", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedJsxAttribute2.tsx semantic error: Bindings mismatch: @@ -3976,9 +4768,15 @@ rebuilt : ScopeId(0): ["React", "UnwrappedLink", "UnwrappedLink2", "_jsxF 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): [] Unresolved references mismatch: after transform: ["Omit"] rebuilt : [] @@ -3987,6 +4785,9 @@ tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedJsxChildren.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["DropdownMenu", "React", "_jsxFileName"] rebuilt : ScopeId(0): ["React", "_jsxFileName"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(6), ReferenceId(14), ReferenceId(17), ReferenceId(18), ReferenceId(20), ReferenceId(23), ReferenceId(24)] rebuilt : SymbolId(1): [ReferenceId(0), ReferenceId(3), ReferenceId(5), ReferenceId(8), ReferenceId(10), ReferenceId(12)] @@ -4003,10 +4804,18 @@ Unresolved reference IDs mismatch for "DropdownMenu": after transform: [ReferenceId(7)] rebuilt : [ReferenceId(1), ReferenceId(9)] +tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedOptionalProperty.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedParametersWithInitializers2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["num", "test2", "test3"] rebuilt : ScopeId(0): ["test2", "test3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Reference symbol mismatch: after transform: ReferenceId(5): Some("num") rebuilt : ReferenceId(1): None @@ -4018,9 +4827,15 @@ tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedParametersWithIn semantic error: Bindings mismatch: after transform: ScopeId(0): ["CanvasDirection", "GraphActions"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/contextuallyTypedParametersWithInitializers4.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Unresolved references mismatch: after transform: ["Record", "test"] rebuilt : ["test"] @@ -4033,6 +4848,9 @@ tasks/coverage/typescript/tests/cases/compiler/contravariantInferenceAndTypeGuar semantic error: Bindings mismatch: after transform: ScopeId(0): ["FilterFn", "IteratorFn", "ListItem", "Test", "filter1", "list2", "x"] rebuilt : ScopeId(0): ["filter1", "list2", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved reference IDs mismatch for "List": after transform: [ReferenceId(5), ReferenceId(11), ReferenceId(15), ReferenceId(21), ReferenceId(30), ReferenceId(36), ReferenceId(42), ReferenceId(46), ReferenceId(48), ReferenceId(56)] rebuilt : [ReferenceId(0)] @@ -4041,14 +4859,25 @@ tasks/coverage/typescript/tests/cases/compiler/contravariantOnlyInferenceFromAnn semantic error: Bindings mismatch: after transform: ScopeId(0): ["Funcs", "result"] rebuilt : ScopeId(0): ["result"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["Record", "foo"] rebuilt : ["foo"] +tasks/coverage/typescript/tests/cases/compiler/contravariantOnlyInferenceWithAnnotatedOptionalParameter.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + tasks/coverage/typescript/tests/cases/compiler/contravariantTypeAliasInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Func1", "Func2", "f1", "f2", "g1", "g2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(9): Some("f1") rebuilt : ReferenceId(1): None @@ -4072,10 +4901,18 @@ after transform: ["bar", "foo"] rebuilt : ["bar", "f1", "f2", "foo", "g1", "g2"] tasks/coverage/typescript/tests/cases/compiler/controlFlowAnalysisOnBareThisKeyword.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] +Unresolved references mismatch: after transform: ["isBig", "true"] rebuilt : ["isBig"] +tasks/coverage/typescript/tests/cases/compiler/controlFlowArrays.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(8), ScopeId(11), ScopeId(14), ScopeId(17), ScopeId(18), ScopeId(21), ScopeId(25), ScopeId(27), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(7), ScopeId(10), ScopeId(13), ScopeId(16), ScopeId(17), ScopeId(20), ScopeId(24), ScopeId(26), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(33), ScopeId(34), ScopeId(35)] + tasks/coverage/typescript/tests/cases/compiler/controlFlowBreakContinueWithLabel.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["A", "B", "User"] @@ -4095,15 +4932,26 @@ semantic error: Bindings mismatch: after transform: ScopeId(1): ["T", "value"] rebuilt : ScopeId(1): ["value"] +tasks/coverage/typescript/tests/cases/compiler/controlFlowCommaExpressionAssertionWithinTernary.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/controlFlowDestructuringLoop.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["NumVal", "StrVal", "Val", "foo", "isNumVal"] rebuilt : ScopeId(0): ["foo", "isNumVal"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/controlFlowFavorAssertedTypeThroughTypePredicate.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["obj1", "obj2", "obj3", "obj4"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Reference symbol mismatch: after transform: ReferenceId(2): Some("obj1") rebuilt : ReferenceId(1): None @@ -4160,6 +5008,9 @@ tasks/coverage/typescript/tests/cases/compiler/controlFlowForCatchAndFinally.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Browser", "Foo", "Page", "test"] rebuilt : ScopeId(0): ["Foo", "test"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(13), ScopeId(15)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(6)] Unresolved references mismatch: after transform: ["Aborter", "Promise", "test1", "test2", "undefined"] rebuilt : ["Aborter", "test1", "test2", "undefined"] @@ -4182,6 +5033,9 @@ tasks/coverage/typescript/tests/cases/compiler/controlFlowInstanceof.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "X", "Y", "ctor", "f1", "f2", "f3", "f4", "foo", "goo", "x"] rebuilt : ScopeId(0): ["A", "B", "C", "Y", "f1", "f2", "f3", "f4", "foo", "goo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(8), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(26)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(8), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(22), ScopeId(23), ScopeId(25)] Symbol reference IDs mismatch: after transform: SymbolId(8): [ReferenceId(36), ReferenceId(37), ReferenceId(38)] rebuilt : SymbolId(8): [ReferenceId(28), ReferenceId(29)] @@ -4205,9 +5059,15 @@ tasks/coverage/typescript/tests/cases/compiler/controlFlowInstanceofWithSymbolHa semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "PromiseConstructor", "SetConstructor", "X", "Y", "f1", "f2", "f3", "f4", "foo", "goo"] rebuilt : ScopeId(0): ["A", "B", "C", "Y", "f1", "f2", "f3", "f4", "foo", "goo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(12), ScopeId(15), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(28), ScopeId(29), ScopeId(30)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(8), ScopeId(11), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(23), ScopeId(24)] Bindings mismatch: after transform: ScopeId(16): ["T", "value"] rebuilt : ScopeId(12): ["value"] +Scope children mismatch: +after transform: ScopeId(16): [ScopeId(17)] +rebuilt : ScopeId(12): [] Symbol reference IDs mismatch: after transform: SymbolId(10): [ReferenceId(47), ReferenceId(48), ReferenceId(49)] rebuilt : SymbolId(8): [ReferenceId(32), ReferenceId(33)] @@ -4280,6 +5140,9 @@ tasks/coverage/typescript/tests/cases/compiler/correctOrderOfPromiseMethod.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "countEverything", "expected"] rebuilt : ScopeId(0): ["countEverything", "expected"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved reference IDs mismatch for "Promise": after transform: [ReferenceId(0), ReferenceId(1), ReferenceId(3), ReferenceId(5), ReferenceId(16), ReferenceId(17)] rebuilt : [ReferenceId(0), ReferenceId(9)] @@ -4302,6 +5165,9 @@ rebuilt : ScopeId(1): ["XX", "_M", "a", "b", "f"] 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(5), ScopeId(6)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(4)] Symbol flags mismatch: after transform: SymbolId(2): SymbolFlags(Export | Class) rebuilt : SymbolId(2): SymbolFlags(Class) @@ -4319,11 +5185,17 @@ tasks/coverage/typescript/tests/cases/compiler/crashInGetTextOfComputedPropertyN semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "AB", "B", "ObjWithItems", "itemId", "itemOk1", "itemOk2", "itemWithTSError", "items", "objWithItems"] rebuilt : ScopeId(0): ["itemId", "itemOk1", "itemOk2", "itemWithTSError", "items", "objWithItems"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/crashInResolveInterface.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Q", "q1", "x"] rebuilt : ScopeId(0): ["q1", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/crashInresolveReturnStatement.ts semantic error: Bindings mismatch: @@ -4334,6 +5206,9 @@ tasks/coverage/typescript/tests/cases/compiler/curiousNestedConditionalEvaluatio semantic error: Bindings mismatch: after transform: ScopeId(0): ["Hmm"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["true"] rebuilt : [] @@ -4420,27 +5295,42 @@ tasks/coverage/typescript/tests/cases/compiler/declarationEmitToDeclarationDirWi semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/declarationEmitWithComposite.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/declarationMerging1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/declarationMerging2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["./a"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/declareDottedExtend.ts semantic error: Missing SymbolId: ab Bindings mismatch: after transform: ScopeId(0): ["A", "D", "E", "ab"] rebuilt : ScopeId(0): ["D", "E", "ab"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference symbol mismatch: after transform: ReferenceId(1): Some("ab") rebuilt : ReferenceId(1): Some("ab") @@ -4449,6 +5339,9 @@ tasks/coverage/typescript/tests/cases/compiler/declareExternalModuleWithExportAs semantic error: Bindings mismatch: after transform: ScopeId(0): ["express"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Function", "RegExp", "express"] rebuilt : [] @@ -4457,21 +5350,39 @@ tasks/coverage/typescript/tests/cases/compiler/declareModifierOnTypeAlias.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Baz", "Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/declaredExternalModule.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["connect"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/declaredExternalModuleWithExportAssignment.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["connect"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataConditionalType.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] +Bindings mismatch: after transform: ScopeId(2): ["T"] rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3)] +rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(2): [] Unresolved references mismatch: after transform: ["PropertyDecorator", "d", "true"] rebuilt : ["d"] @@ -4504,6 +5415,9 @@ tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataOnInferredType.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "console", "decorator"] rebuilt : ScopeId(0): ["A", "B", "decorator"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] Reference symbol mismatch: after transform: ReferenceId(0): Some("console") rebuilt : ReferenceId(0): None @@ -4548,6 +5462,9 @@ tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataWithConstructorT semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "console", "decorator"] rebuilt : ScopeId(0): ["A", "B", "decorator"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] Symbol reference IDs mismatch: after transform: SymbolId(1): [ReferenceId(3), ReferenceId(4)] rebuilt : SymbolId(0): [ReferenceId(2)] @@ -4595,6 +5512,9 @@ tasks/coverage/typescript/tests/cases/compiler/decoratorReferences.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "T"] rebuilt : ScopeId(0): ["C"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(4): ["T"] rebuilt : ScopeId(2): [] @@ -4603,6 +5523,9 @@ tasks/coverage/typescript/tests/cases/compiler/decoratorWithUnderscoreMethod.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "console", "dec"] rebuilt : ScopeId(0): ["A", "dec"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Reference symbol mismatch: after transform: ReferenceId(2): Some("console") rebuilt : ReferenceId(0): None @@ -4614,12 +5537,18 @@ tasks/coverage/typescript/tests/cases/compiler/deeplyNestedTemplateLiteralInters semantic error: Bindings mismatch: after transform: ScopeId(0): ["Props", "R", "S", "T", "X", "_S", "a1", "a2", "b"] rebuilt : ScopeId(0): ["a1", "a2", "b"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Partial", "true"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/defaultNamedExportWithType1.ts -semantic error: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export | TypeAlias) rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export) Symbol span mismatch: @@ -4630,7 +5559,10 @@ after transform: SymbolId(0): [Span { start: 32, end: 35 }] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/defaultNamedExportWithType2.ts -semantic error: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export | TypeAlias) rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export) Symbol span mismatch: @@ -4641,7 +5573,10 @@ after transform: SymbolId(0): [Span { start: 25, end: 28 }] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/defaultNamedExportWithType3.ts -semantic error: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export | Interface) rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export) Symbol span mismatch: @@ -4652,7 +5587,10 @@ after transform: SymbolId(0): [Span { start: 30, end: 33 }] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/defaultNamedExportWithType4.ts -semantic error: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export | Interface) rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export) Symbol span mismatch: @@ -4666,6 +5604,9 @@ tasks/coverage/typescript/tests/cases/compiler/deferredConditionalTypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "And", "AndBit", "Bit", "Equals", "Extends", "FilterByStringValue", "FilteredRes1", "FilteredValuesMatchNever", "IsLiteral", "IsNumberLiteral", "Not", "Or", "T0", "T1", "T2", "T3", "T4", "T5", "T6", "TestBit", "TestBitRes", "Values"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(29), ScopeId(31), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(39), ScopeId(42)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["true"] rebuilt : [] @@ -4674,6 +5615,9 @@ tasks/coverage/typescript/tests/cases/compiler/deferredConditionalTypes2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Add", "AddTest0", "AddTest1", "AddWithoutParentheses", "IsEqual", "NegativeInfinity", "PositiveInfinity"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(7), ScopeId(10), ScopeId(13), ScopeId(14)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["true"] rebuilt : [] @@ -4682,19 +5626,31 @@ tasks/coverage/typescript/tests/cases/compiler/deferredTypeReferenceWithinArrayW semantic error: Bindings mismatch: after transform: ScopeId(0): ["TypeStructure"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/definiteAssignmentOfDestructuredVariable.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "Options"] rebuilt : ScopeId(0): ["C"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(2): ["T"] rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/deleteExpressionMustBeOptional.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AA", "BB", "Foo", "a", "b", "f"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(3): Some("f") rebuilt : ReferenceId(0): None @@ -4745,6 +5701,9 @@ tasks/coverage/typescript/tests/cases/compiler/deleteExpressionMustBeOptional_ex semantic error: Bindings mismatch: after transform: ScopeId(0): ["AA", "BB", "Foo", "a", "b", "f", "g"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(5): Some("f") rebuilt : ReferenceId(0): None @@ -4831,6 +5790,9 @@ tasks/coverage/typescript/tests/cases/compiler/destructureOfVariableSameAsShorth semantic error: Bindings mismatch: after transform: ScopeId(0): ["AxiosResponse", "main"] rebuilt : ScopeId(0): ["main"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["Promise", "get"] rebuilt : ["get"] @@ -4839,21 +5801,33 @@ tasks/coverage/typescript/tests/cases/compiler/destructuredMaappedTypeIsNotImpli semantic error: Bindings mismatch: after transform: ScopeId(1): ["T", "bar", "key", "lorem", "obj"] rebuilt : ScopeId(1): ["bar", "key", "lorem", "obj"] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/compiler/destructuringInitializerContextualTypeFromContext.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Child", "Parent", "Props", "SFC"] rebuilt : ScopeId(0): ["Child", "Parent"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/destructuringTypeGuardFlow.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["aFoo", "bBar", "bar", "foo"] rebuilt : ScopeId(0): ["aFoo", "bBar"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/destructuringWithConstraint.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Props", "foo"] rebuilt : ScopeId(0): ["foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(2): ["P", "foo", "props"] rebuilt : ScopeId(1): ["foo", "props"] @@ -4876,16 +5850,25 @@ tasks/coverage/typescript/tests/cases/compiler/discriminableUnionWithIntersected semantic error: Bindings mismatch: after transform: ScopeId(0): ["X", "Y", "x", "y"] rebuilt : ScopeId(0): ["x", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/discriminantElementAccessCheck.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IfWithString", "IfWithTemplate", "SwitchWithString", "SwitchWithTemplate", "TypeA", "TypeB", "U", "assertNever"] rebuilt : ScopeId(0): ["IfWithString", "IfWithTemplate", "SwitchWithString", "SwitchWithTemplate", "assertNever"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(8), ScopeId(10), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(7), ScopeId(10)] tasks/coverage/typescript/tests/cases/compiler/discriminantNarrowingCouldBeCircular.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["SomeRecord", "getImplicitAriaRole", "kPresentationInheritanceParents", "myObj2", "o"] rebuilt : ScopeId(0): ["getImplicitAriaRole", "o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(7)] Reference symbol mismatch: after transform: ReferenceId(17): Some("kPresentationInheritanceParents") rebuilt : ReferenceId(10): None @@ -4903,6 +5886,9 @@ tasks/coverage/typescript/tests/cases/compiler/discriminantPropertyCheck.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "Additive", "AdditiveObj", "AllTests", "B", "BarEnum", "Base", "DoesNotWork", "Instance", "Item", "Item1", "Item2", "MapOfAllTests", "Multiplicative", "MultiplicativeObj", "NumType", "Obj", "StrType", "TestA", "TestB", "Type", "TypeA", "TypeB", "TypeBar1", "TypeBar2", "Types", "U", "UnionOfBar", "WorksProperly", "doTestingStuff", "f", "foo", "foo1", "foo2", "foo3", "foo4", "foo5", "foo6", "func2", "func3", "goo1", "goo2", "onlyPlus", "u"] rebuilt : ScopeId(0): ["BarEnum", "DoesNotWork", "Types", "WorksProperly", "doTestingStuff", "f", "foo", "foo1", "foo2", "foo3", "foo4", "foo5", "foo6", "func2", "func3", "goo1", "goo2", "onlyPlus", "u"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(57), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(18), ScopeId(23), ScopeId(24), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(32), ScopeId(34), ScopeId(37)] Bindings mismatch: after transform: ScopeId(21): ["Num", "Str", "Types"] rebuilt : ScopeId(17): ["Types"] @@ -4935,6 +5921,9 @@ tasks/coverage/typescript/tests/cases/compiler/discriminantPropertyInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["DiscriminatorFalse", "DiscriminatorTrue", "Props"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Unresolved references mismatch: after transform: ["f", "parseInt", "true", "undefined"] rebuilt : ["f", "parseInt", "undefined"] @@ -4943,11 +5932,17 @@ tasks/coverage/typescript/tests/cases/compiler/discriminantUsingEvaluatableTempl semantic error: Bindings mismatch: after transform: ScopeId(0): ["N", "S"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/discriminantsAndNullOrUndefined.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "c", "never", "useA", "useB"] rebuilt : ScopeId(0): ["never", "useA", "useB"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Reference symbol mismatch: after transform: ReferenceId(6): Some("c") rebuilt : ReferenceId(1): None @@ -4971,6 +5966,9 @@ tasks/coverage/typescript/tests/cases/compiler/discriminantsAndPrimitives.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Disjunction", "EnumTypeNode", "Foo", "NodeA", "NodeBase", "Pattern", "f1", "f2", "f3", "f4", "n"] rebuilt : ScopeId(0): ["EnumTypeNode", "f1", "f2", "f3", "f4", "n"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(9), ScopeId(12), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(10), ScopeId(13), ScopeId(14), ScopeId(15)] Bindings mismatch: after transform: ScopeId(15): ["Disjunction", "EnumTypeNode", "Pattern"] rebuilt : ScopeId(13): ["EnumTypeNode"] @@ -4988,16 +5986,25 @@ tasks/coverage/typescript/tests/cases/compiler/discriminantsAndTypePredicates.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "foo1", "foo2", "isA", "isB"] rebuilt : ScopeId(0): ["foo1", "foo2", "isA", "isB"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6)] tasks/coverage/typescript/tests/cases/compiler/discriminateObjectTypesOnly.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Thing", "Thing2", "Thing3", "h", "k", "l", "q"] rebuilt : ScopeId(0): ["h", "k", "l", "q"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/discriminateWithDivergentAccessors1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["WeirdoBox", "WeirdoBox2", "weirdoBox", "weirdoBox2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(6), ScopeId(7), ScopeId(14)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference symbol mismatch: after transform: ReferenceId(5): Some("weirdoBox") rebuilt : ReferenceId(0): None @@ -5018,6 +6025,9 @@ tasks/coverage/typescript/tests/cases/compiler/discriminateWithOptionalProperty1 semantic error: Bindings mismatch: after transform: ScopeId(0): ["Box", "box"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(3): Some("box") rebuilt : ReferenceId(0): None @@ -5032,6 +6042,9 @@ tasks/coverage/typescript/tests/cases/compiler/discriminateWithOptionalProperty2 semantic error: Bindings mismatch: after transform: ScopeId(0): ["PromiseOrValue", "doubles", "items", "iterable", "mapAsyncIterable"] rebuilt : ScopeId(0): ["doubles", "items", "iterable", "mapAsyncIterable"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(18), ScopeId(19), ScopeId(20)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(17), ScopeId(18), ScopeId(19)] Bindings mismatch: after transform: ScopeId(2): ["R", "T", "U", "callback", "iterable", "iterator", "mapResult"] rebuilt : ScopeId(1): ["callback", "iterable", "iterator", "mapResult"] @@ -5046,6 +6059,9 @@ tasks/coverage/typescript/tests/cases/compiler/discriminateWithOptionalProperty3 semantic error: Bindings mismatch: after transform: ScopeId(0): ["CoercedVariableValues", "ExecutionArgs", "ExecutionContext", "Maybe", "buildExecutionContext"] rebuilt : ScopeId(0): ["buildExecutionContext"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["Error", "GraphQLError", "ReadonlyArray", "getVariableValues"] rebuilt : ["getVariableValues"] @@ -5054,6 +6070,9 @@ tasks/coverage/typescript/tests/cases/compiler/discriminatedUnionWithIndexSignat semantic error: Bindings mismatch: after transform: ScopeId(0): ["MapOrSingleton", "UnionAltA", "UnionAltB", "ValueUnion", "withAsConst", "withoutAsConst"] rebuilt : ScopeId(0): ["withAsConst", "withoutAsConst"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["const"] rebuilt : [] @@ -5062,6 +6081,9 @@ tasks/coverage/typescript/tests/cases/compiler/discriminatingUnionWithUnionPrope semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "A2", "B", "B2", "X", "Y", "opts", "testMethod"] rebuilt : ScopeId(0): ["testMethod"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(2): Some("opts") rebuilt : ReferenceId(0): None @@ -5076,6 +6098,9 @@ tasks/coverage/typescript/tests/cases/compiler/distributiveConditionalTypeNeverI semantic error: Bindings mismatch: after transform: ScopeId(0): ["Conflicted", "Ex1", "Ex2", "Ex3", "IsNumber"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["true"] rebuilt : [] @@ -5084,14 +6109,23 @@ tasks/coverage/typescript/tests/cases/compiler/divergentAccessors1.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["IHasGetSet", "ihgs", "r_ihgs_foo"] rebuilt : ScopeId(1): ["ihgs", "r_ihgs_foo"] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [] Bindings mismatch: after transform: ScopeId(5): ["T_HasGetSet", "r_t_hgs_foo", "t_hgs"] rebuilt : ScopeId(2): ["r_t_hgs_foo", "t_hgs"] +Scope children mismatch: +after transform: ScopeId(5): [ScopeId(6)] +rebuilt : ScopeId(2): [] tasks/coverage/typescript/tests/cases/compiler/divergentAccessorsTypes1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Test1", "Test2", "Test3"] rebuilt : ScopeId(0): ["Test1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(6), ScopeId(11), ScopeId(16), ScopeId(17), ScopeId(18)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(6), ScopeId(7), ScopeId(8)] tasks/coverage/typescript/tests/cases/compiler/divergentAccessorsTypes3.ts semantic error: Bindings mismatch: @@ -5146,6 +6180,9 @@ tasks/coverage/typescript/tests/cases/compiler/divideAndConquerIntersections.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Combine", "EventHub", "Filter", "FilterFunction", "FilterQuery", "FilteredEvent", "L1Fragment", "Middleware", "PerformQuery", "QQ", "RunQuery", "Update", "matchFilter"] rebuilt : ScopeId(0): ["EventHub", "matchFilter"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(16), ScopeId(17)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Bindings mismatch: after transform: ScopeId(4): ["Q", "U", "filter"] rebuilt : ScopeId(1): ["filter"] @@ -5166,11 +6203,17 @@ tasks/coverage/typescript/tests/cases/compiler/doNotEmitPinnedCommentOnNotEmitte semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "OData", "x"] rebuilt : ScopeId(0): ["C", "x"] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/doNotEmitPinnedCommentOnNotEmittedNodets.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "OData"] rebuilt : ScopeId(0): ["C"] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/doNotEmitTripleSlashCommentsOnNotEmittedNode.ts semantic error: Bindings mismatch: @@ -5181,6 +6224,9 @@ tasks/coverage/typescript/tests/cases/compiler/doNotInferUnrelatedTypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["LiteralType", "alt", "foo"] rebuilt : ScopeId(0): ["foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(7): Some("alt") rebuilt : ReferenceId(1): None @@ -5192,6 +6238,9 @@ tasks/coverage/typescript/tests/cases/compiler/doNotWidenAtObjectLiteralProperty semantic error: Bindings mismatch: after transform: ScopeId(0): ["IIntervalTreeNode", "ITestEventInterval", "test"] rebuilt : ScopeId(0): ["test"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/dottedModuleName2.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -5252,6 +6301,9 @@ tasks/coverage/typescript/tests/cases/compiler/dottedSymbolResolution1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "JQuery", "JQueryStatic", "_setBarAndText", "each"] rebuilt : ScopeId(0): ["Base", "_setBarAndText", "each"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] Symbol reference IDs mismatch: after transform: SymbolId(2): [ReferenceId(5)] rebuilt : SymbolId(0): [] @@ -5260,6 +6312,9 @@ tasks/coverage/typescript/tests/cases/compiler/doubleMixinConditionalTypeBaseCla semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "Constructor", "FooConstructor", "Mixin1", "Mixin2"] rebuilt : ScopeId(0): ["C", "Mixin1", "Mixin2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] Bindings mismatch: after transform: ScopeId(2): ["Base", "C"] rebuilt : ScopeId(1): ["Base"] @@ -5334,6 +6389,9 @@ tasks/coverage/typescript/tests/cases/compiler/doubleUnderscoreMappedTypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Keys", "Properties", "Property2Type", "k", "ok", "partial"] rebuilt : ScopeId(0): ["k", "ok", "partial"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Partial"] rebuilt : [] @@ -5342,6 +6400,9 @@ tasks/coverage/typescript/tests/cases/compiler/doubleUnderscoreReactNamespace.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["__foot", "_jsxFileName", "global", "thing"] rebuilt : ScopeId(0): ["_jsxFileName", "thing"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(0): Some("__foot") rebuilt : ReferenceId(1): None @@ -5354,6 +6415,21 @@ semantic error: Namespaces exporting non-const are not supported by Babel. Chang Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript +tasks/coverage/typescript/tests/cases/compiler/downlevelLetConst14.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] + +tasks/coverage/typescript/tests/cases/compiler/downlevelLetConst15.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] + +tasks/coverage/typescript/tests/cases/compiler/downlevelLetConst17.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(20), ScopeId(22)] +rebuilt : 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(19), ScopeId(21)] + tasks/coverage/typescript/tests/cases/compiler/dtsEmitTripleSlashAvoidUnnecessaryResolutionMode.ts semantic error: Unresolved references mismatch: after transform: ["NodeJS", "Promise"] @@ -5438,16 +6514,30 @@ tasks/coverage/typescript/tests/cases/compiler/duplicateConstructSignature.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/duplicateConstructSignature2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/duplicateConstructorOverloadSignature.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/duplicateConstructorOverloadSignature2.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/duplicateIdentifierShouldNotShortCircuitBaseTypeBinding.ts semantic error: Missing SymbolId: Shapes @@ -5459,6 +6549,9 @@ Missing ReferenceId: Shapes Bindings mismatch: after transform: ScopeId(0): ["IPoint", "Shapes"] rebuilt : ScopeId(0): ["Shapes"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Binding symbols mismatch: after transform: ScopeId(2): [SymbolId(2), SymbolId(3)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] @@ -5473,6 +6566,9 @@ tasks/coverage/typescript/tests/cases/compiler/duplicateOverloadInTypeAugmentati semantic error: Bindings mismatch: after transform: ScopeId(0): ["Array", "a", "r5"] rebuilt : ScopeId(0): ["a", "r5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/duplicatePackage_packageIdIncludesSubModule.ts semantic error: Bindings mismatch: @@ -5494,6 +6590,9 @@ semantic error: Missing SymbolId: a Bindings mismatch: after transform: ScopeId(0): ["M", "a"] rebuilt : ScopeId(0): ["a"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(FunctionScopedVariable | Import) rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) @@ -5615,6 +6714,9 @@ tasks/coverage/typescript/tests/cases/compiler/emitTopOfFileTripleSlashCommentOn semantic error: Bindings mismatch: after transform: ScopeId(0): ["F", "OData"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/emptyAnonymousObjectNarrowing.ts semantic error: Bindings mismatch: @@ -5734,11 +6836,17 @@ tasks/coverage/typescript/tests/cases/compiler/emptyIndexer.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1", "I2", "n", "x"] rebuilt : ScopeId(0): ["n", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/emptyOptionalBindingPatternInDeclarationSignature.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1", "T1", "T2", "val1", "val2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(8), ScopeId(10), ScopeId(11), ScopeId(13)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/enumAssignmentCompat4.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -5781,11 +6889,17 @@ tasks/coverage/typescript/tests/cases/compiler/enumInitializersWithExponents.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/enumLiteralUnionNotWidened.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "D", "List", "asList", "fn1", "fn2"] rebuilt : ScopeId(0): ["A", "B", "List", "asList", "fn1", "fn2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] Bindings mismatch: after transform: ScopeId(1): ["A", "one", "two"] rebuilt : ScopeId(1): ["A"] @@ -5994,7 +7108,10 @@ after transform: SymbolId(0): SymbolFlags(RegularEnum) rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) tasks/coverage/typescript/tests/cases/compiler/enumsWithMultipleDeclarations3.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Bindings mismatch: after transform: ScopeId(2): ["A", "E"] rebuilt : ScopeId(1): ["E"] Scope flags mismatch: @@ -6014,6 +7131,9 @@ tasks/coverage/typescript/tests/cases/compiler/errorConstructorSubtypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ErrorConstructor", "x"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(3): Some("x") rebuilt : ReferenceId(0): None @@ -7811,6 +8931,12 @@ tasks/coverage/typescript/tests/cases/compiler/es6ClassTest2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["BaseClassWithConstructor", "BasicMonster", "ChildClassWithoutConstructor", "GetSetMonster", "IFoo", "ImplementsInterface", "OverloadedMonster", "PrototypeMonster", "SplatMonster", "Statics", "SuperChild", "SuperParent", "Visibility", "ccwc", "foo", "m1", "m2", "m3", "m4", "m5", "m6", "stat", "x", "y"] rebuilt : ScopeId(0): ["BaseClassWithConstructor", "BasicMonster", "ChildClassWithoutConstructor", "GetSetMonster", "ImplementsInterface", "OverloadedMonster", "PrototypeMonster", "SplatMonster", "Statics", "SuperChild", "SuperParent", "Visibility", "ccwc", "foo", "m1", "m2", "m3", "m4", "m5", "m6", "stat", "x", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(10), ScopeId(16), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(25), ScopeId(29), ScopeId(31), ScopeId(32), ScopeId(34), ScopeId(38), ScopeId(40)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(10), ScopeId(13), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(22), ScopeId(26), ScopeId(28), ScopeId(30), ScopeId(34), ScopeId(36)] +Scope children mismatch: +after transform: ScopeId(10): [ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15)] +rebuilt : ScopeId(10): [ScopeId(11), ScopeId(12)] tasks/coverage/typescript/tests/cases/compiler/es6ClassTest3.ts semantic error: Missing SymbolId: M @@ -7828,7 +8954,10 @@ after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) tasks/coverage/typescript/tests/cases/compiler/es6ClassTest4.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] +Unresolved references mismatch: after transform: ["Point"] rebuilt : [] @@ -7836,11 +8965,17 @@ tasks/coverage/typescript/tests/cases/compiler/es6ClassTest5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C1T5", "C2T5", "bigClass"] rebuilt : ScopeId(0): ["C1T5", "bigClass"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/es6ClassTest7.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "M"] rebuilt : ScopeId(0): ["Bar"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/es6ClassTest8.ts semantic error: Symbol reference IDs mismatch: @@ -8339,6 +9474,9 @@ tasks/coverage/typescript/tests/cases/compiler/eventEmitterPatternWithRecordOfFu semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "Args", "B", "EventMap"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Function", "Record"] rebuilt : [] @@ -8352,6 +9490,9 @@ tasks/coverage/typescript/tests/cases/compiler/excessPropertyCheckWithNestedArra semantic error: Bindings mismatch: after transform: ScopeId(0): ["BugRepro", "ValueAndKeyFields", "ValueOnlyFields", "repro"] rebuilt : ScopeId(0): ["repro"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Array"] rebuilt : [] @@ -8360,6 +9501,9 @@ tasks/coverage/typescript/tests/cases/compiler/excessPropertyCheckingIntersectio semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "createDefaultExample"] rebuilt : ScopeId(0): ["createDefaultExample"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(3): ["K", "x"] rebuilt : ScopeId(1): ["x"] @@ -8376,6 +9520,9 @@ tasks/coverage/typescript/tests/cases/compiler/expandoFunctionContextualTypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyComponent", "MyComponentProps", "StatelessComponent"] rebuilt : ScopeId(0): ["MyComponent"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["Partial"] rebuilt : [] @@ -8384,6 +9531,9 @@ tasks/coverage/typescript/tests/cases/compiler/expandoFunctionExpressionsWithDyn semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo", "bar", "foo", "mySymbol", "t"] rebuilt : ScopeId(0): ["bar", "foo", "mySymbol", "t"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(1), ReferenceId(5)] rebuilt : SymbolId(0): [ReferenceId(2)] @@ -8399,6 +9549,9 @@ tasks/coverage/typescript/tests/cases/compiler/exportAssignValueAndType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["http", "server", "x"] rebuilt : ScopeId(0): ["server", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] Symbol flags mismatch: after transform: SymbolId(2): SymbolFlags(FunctionScopedVariable | Interface) rebuilt : SymbolId(1): SymbolFlags(FunctionScopedVariable) @@ -8461,6 +9614,9 @@ tasks/coverage/typescript/tests/cases/compiler/exportAssignmentWithPrivacyError. semantic error: Bindings mismatch: after transform: ScopeId(0): ["connectexport", "connectmodule", "server"] rebuilt : ScopeId(0): ["server"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] Symbol reference IDs mismatch: after transform: SymbolId(2): [ReferenceId(5)] rebuilt : SymbolId(0): [] @@ -8502,6 +9658,9 @@ tasks/coverage/typescript/tests/cases/compiler/exportDeclarationsInAmbientNamesp semantic error: Bindings mismatch: after transform: ScopeId(0): ["Q"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["Function", "Q", "_try"] rebuilt : ["Q"] @@ -8515,26 +9674,41 @@ tasks/coverage/typescript/tests/cases/compiler/exportDefaultForNonInstantiatedMo semantic error: Bindings mismatch: after transform: ScopeId(0): ["m"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportDefaultImportedType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportDefaultInterface.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "a"] rebuilt : ScopeId(0): ["a"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportDefaultInterfaceAndFunctionOverloads.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "foo"] rebuilt : ScopeId(0): ["foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/exportDefaultInterfaceAndValue.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "x"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/exportDefaultProperty.ts semantic error: Missing SymbolId: A @@ -8575,7 +9749,10 @@ after transform: ReferenceId(0): Some("A") rebuilt : ReferenceId(9): Some("A") tasks/coverage/typescript/tests/cases/compiler/exportDefaultProperty2.ts -semantic error: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(Class | NameSpaceModule) rebuilt : SymbolId(0): SymbolFlags(Class) Symbol redeclarations mismatch: @@ -8586,13 +9763,19 @@ tasks/coverage/typescript/tests/cases/compiler/exportDefaultVariable.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["io", "module"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportEqualCallable.ts semantic error: `export = ;` is only supported when compiling modules to CommonJS. Please consider using `export default ;`, or add @babel/plugin-transform-modules-commonjs to your Babel config. tasks/coverage/typescript/tests/cases/compiler/exportEqualNamespaces.ts -semantic error: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(FunctionScopedVariable | Interface | NameSpaceModule | Ambient) rebuilt : SymbolId(1): SymbolFlags(FunctionScopedVariable) Symbol span mismatch: @@ -8624,6 +9807,9 @@ tasks/coverage/typescript/tests/cases/compiler/exportEqualsOfModule.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["popsicle", "popsicle-proxy-agent", "~popsicle/dist/common", "~popsicle/dist/request"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["proxy"] rebuilt : [] @@ -8647,6 +9833,9 @@ tasks/coverage/typescript/tests/cases/compiler/exportImportNonInstantiatedModule semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["A", "B"] rebuilt : [] @@ -8658,7 +9847,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: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(FunctionScopedVariable | Export | TypeAlias) rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable | Export) Symbol span mismatch: @@ -8672,6 +9864,9 @@ tasks/coverage/typescript/tests/cases/compiler/exportSpecifierAndExportedMemberD semantic error: Bindings mismatch: after transform: ScopeId(0): ["m2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(6)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["X", "Y"] rebuilt : [] @@ -8680,61 +9875,97 @@ tasks/coverage/typescript/tests/cases/compiler/exportStarForValues.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportStarForValues10.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportStarForValues2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportStarForValues3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportStarForValues4.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportStarForValues5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportStarForValues6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportStarForValues7.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportStarForValues8.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportStarForValues9.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportStarForValuesInSystem.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportTwoInterfacesWithSameName.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportVisibility.ts semantic error: Symbol reference IDs mismatch: @@ -8745,6 +9976,9 @@ tasks/coverage/typescript/tests/cases/compiler/exportedInterfaceInaccessibleInCa semantic error: Bindings mismatch: after transform: ScopeId(0): ["ProgressCallback"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["TPromise"] rebuilt : [] @@ -8758,11 +9992,17 @@ tasks/coverage/typescript/tests/cases/compiler/exportsInAmbientModules1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["M"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/exportsInAmbientModules2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["M"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/extBaseClass1.ts semantic error: Missing SymbolId: M @@ -8845,6 +10085,9 @@ tasks/coverage/typescript/tests/cases/compiler/extendConstructSignatureInInterfa semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "CStatic", "E", "e"] rebuilt : ScopeId(0): ["CStatic", "E", "e"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(2): [ReferenceId(3), ReferenceId(4)] rebuilt : SymbolId(1): [ReferenceId(1)] @@ -8853,15 +10096,26 @@ tasks/coverage/typescript/tests/cases/compiler/extendedInterfaceGenericType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Alpha", "Beta", "alpha", "betaOfNumber"] rebuilt : ScopeId(0): ["alpha", "betaOfNumber"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/extendingClassFromAliasAndUsageInIndexer.ts semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. Please consider using `import lib from '...';` alongside Typescript's --allowSyntheticDefaultImports option, or add @babel/plugin-transform-modules-commonjs to your Babel config. +tasks/coverage/typescript/tests/cases/compiler/externFunc.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/externModuleClobber.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["EM", "ec", "x"] rebuilt : ScopeId(0): ["ec", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved reference IDs mismatch for "EM": after transform: [ReferenceId(0), ReferenceId(1), ReferenceId(2), ReferenceId(3)] rebuilt : [ReferenceId(0)] @@ -8885,6 +10139,9 @@ tasks/coverage/typescript/tests/cases/compiler/externalModuleReferenceDoubleUnde semantic error: Bindings mismatch: after transform: ScopeId(0): ["__timezonecomplete/basics", "timezonecomplete"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/externalModuleReferenceOfImportDeclarationWithExportModifier.ts semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. @@ -8904,6 +10161,19 @@ tasks/coverage/typescript/tests/cases/compiler/externalModuleWithoutCompilerFlag semantic error: Bindings mismatch: after transform: ScopeId(0): ["M"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/fallFromLastCase1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] + +tasks/coverage/typescript/tests/cases/compiler/fallbackToBindingPatternForTypeInference.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] tasks/coverage/typescript/tests/cases/compiler/fatArrowSelf.ts semantic error: Missing SymbolId: Events @@ -8925,6 +10195,9 @@ rebuilt : ScopeId(1): ["EventEmitter", "_Events"] 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)] Binding symbols mismatch: after transform: ScopeId(5): [SymbolId(6), SymbolId(10)] rebuilt : ScopeId(4): [SymbolId(6), SymbolId(7)] @@ -8955,6 +10228,16 @@ Unresolved references mismatch: after transform: [] rebuilt : ["b"] +tasks/coverage/typescript/tests/cases/compiler/fatarrowfunctions.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(22), ScopeId(23)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(22)] + +tasks/coverage/typescript/tests/cases/compiler/fatarrowfunctionsInFunctions.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/fillInMissingTypeArgsOnConstructCalls.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["T"] @@ -8967,16 +10250,35 @@ tasks/coverage/typescript/tests/cases/compiler/fixCrashAliasLookupForDefauledImp semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/fixingTypeParametersRepeatedly1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/compiler/fixingTypeParametersRepeatedly3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "Derived", "derived", "result", "result2"] rebuilt : ScopeId(0): ["derived", "result", "result2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/typescript/tests/cases/compiler/flowAfterFinally1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/flowControlTypeGuardThenSwitch.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "Base", "Both", "Kind", "foo", "isBoth"] rebuilt : ScopeId(0): ["Kind", "foo", "isBoth"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(1): ["A", "B", "Kind"] rebuilt : ScopeId(1): ["Kind"] @@ -9047,6 +10349,9 @@ tasks/coverage/typescript/tests/cases/compiler/forOfStringConstituents.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "AB", "B", "C", "CD", "D", "x", "y"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(8): Some("y") rebuilt : ReferenceId(0): None @@ -9090,6 +10395,9 @@ tasks/coverage/typescript/tests/cases/compiler/forwardRefInTypeDeclaration.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Cls2", "Foo2", "Foo3", "Foo6", "foo4", "obj1", "obj2", "s", "s1", "s2", "s3", "s4", "s5"] rebuilt : ScopeId(0): ["Cls2", "obj2", "s1", "s2", "s3", "s4", "s5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(1): [ReferenceId(0)] rebuilt : SymbolId(0): [] @@ -9115,6 +10423,16 @@ Unresolved references mismatch: after transform: ["Cls1", "const"] rebuilt : [] +tasks/coverage/typescript/tests/cases/compiler/freshLiteralInference.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/freshLiteralTypesInIntersections.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/functionAssignabilityWithArrayLike01.ts semantic error: Unresolved references mismatch: after transform: ["ArrayLike"] @@ -9153,9 +10471,15 @@ tasks/coverage/typescript/tests/cases/compiler/functionDeclarationWithResolution semantic error: Bindings mismatch: after transform: ScopeId(0): ["arguments", "f"] rebuilt : ScopeId(0): ["f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/functionDeclarationWithResolutionOfTypeOfSameName01.ts -semantic error: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(FunctionScopedVariable | Interface) rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) Symbol span mismatch: @@ -9177,16 +10501,25 @@ tasks/coverage/typescript/tests/cases/compiler/functionExpressionWithResolutionO semantic error: Bindings mismatch: after transform: ScopeId(0): ["arguments", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/functionExpressionWithResolutionOfTypeOfSameName01.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["f", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/functionExpressionWithResolutionOfTypeOfSameName02.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/functionInIfStatementInModule.ts semantic error: Missing SymbolId: Midori @@ -9272,31 +10605,181 @@ Symbol reference IDs mismatch: after transform: SymbolId(6): [] rebuilt : SymbolId(10): [ReferenceId(10)] +tasks/coverage/typescript/tests/cases/compiler/functionOverloads10.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads12.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads13.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads14.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads15.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads16.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads21.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads22.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads23.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads24.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads25.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads26.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads28.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads30.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads31.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads32.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads33.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads35.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads36.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads38.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads39.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads42.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads43.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/functionOverloads44.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Animal", "Cat", "Dog", "foo1", "foo2", "x1", "x2", "y1", "y2"] rebuilt : ScopeId(0): ["foo1", "foo2", "x1", "x2", "y1", "y2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/functionOverloads45.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Animal", "Cat", "Dog", "foo1", "foo2", "x1", "x2", "y1", "y2"] rebuilt : ScopeId(0): ["foo1", "foo2", "x1", "x2", "y1", "y2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads7.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads8.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/functionOverloads9.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/functionOverloadsOnGenericArity1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/functionOverloadsOnGenericArity2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Date"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/functionOverloadsRecursiveGenericReturnType.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +Bindings mismatch: after transform: ScopeId(1): ["V"] rebuilt : ScopeId(1): [] Bindings mismatch: @@ -9316,6 +10799,9 @@ tasks/coverage/typescript/tests/cases/compiler/functionReturnTypeQuery.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/functionTypeArgumentArrayAssignment.ts semantic error: Missing SymbolId: test @@ -9331,6 +10817,9 @@ rebuilt : ScopeId(1): ["_test", "map"] 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"] @@ -9339,6 +10828,9 @@ tasks/coverage/typescript/tests/cases/compiler/functionsWithImplicitReturnTypeAs semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyUnknown", "f1", "f2", "f3", "f4", "f5", "f6", "f7", "f8"] rebuilt : ScopeId(0): ["f1", "f2", "f3", "f4", "f5", "f6", "f7", "f8"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] Unresolved references mismatch: after transform: ["Math", "Record"] rebuilt : ["Math"] @@ -9347,6 +10839,9 @@ tasks/coverage/typescript/tests/cases/compiler/funduleExportedClassIsUsedBeforeD semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] Unresolved reference IDs mismatch for "B": after transform: [ReferenceId(0), ReferenceId(1), ReferenceId(2)] rebuilt : [ReferenceId(0)] @@ -9358,6 +10853,9 @@ tasks/coverage/typescript/tests/cases/compiler/funduleUsedAcrossFileBoundary.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Q"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/generativeRecursionWithTypeOf.ts semantic error: Missing SymbolId: M @@ -9395,6 +10893,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericAndNonGenericOverload1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["c2", "callable2"] rebuilt : ScopeId(0): ["c2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/genericBaseClassLiteralProperty.ts semantic error: Bindings mismatch: @@ -9413,6 +10914,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericCallInferenceConditionalTy semantic error: Bindings mismatch: after transform: ScopeId(0): ["FirstParameter", "T", "X", "f", "g", "h"] rebuilt : ScopeId(0): ["h"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] Symbol reference IDs mismatch: after transform: SymbolId(3): [ReferenceId(8)] rebuilt : SymbolId(0): [] @@ -9430,6 +10934,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericCallInferenceConditionalTy semantic error: Bindings mismatch: after transform: ScopeId(0): ["ComponentProps", "FirstParameter", "RetrievedProps", "T", "WrappedComponent", "X", "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"] @@ -9488,6 +10995,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericCallWithinOwnBodyCastTypeP semantic error: Bindings mismatch: after transform: ScopeId(0): ["Thenable", "toThenable", "toThenableInferred"] rebuilt : ScopeId(0): ["toThenable", "toThenableInferred"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] Bindings mismatch: after transform: ScopeId(3): ["Input", "Result", "fn"] rebuilt : ScopeId(1): ["fn"] @@ -9520,6 +11030,9 @@ rebuilt : ScopeId(1): ["A", "B", "C1", "D", "_M"] 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): [] @@ -9608,6 +11121,9 @@ Missing ReferenceId: PortalFx Bindings mismatch: after transform: ScopeId(0): ["Contract", "KnockoutObservable", "KnockoutObservableArray", "KnockoutObservableArrayStatic", "KnockoutObservableBase", "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)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(8), ScopeId(14)] Binding symbols mismatch: after transform: ScopeId(24): [SymbolId(11), SymbolId(28)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] @@ -9750,6 +11266,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericClassesInModule2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C"] rebuilt : ScopeId(0): ["A", "B"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] Bindings mismatch: after transform: ScopeId(1): ["T1"] rebuilt : ScopeId(1): [] @@ -9770,6 +11289,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericConstraint3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/genericConstraintOnExtendedBuiltinTypes.ts semantic error: Missing SymbolId: EndGate @@ -9798,6 +11320,9 @@ Missing ReferenceId: EndGate Bindings mismatch: after transform: ScopeId(0): ["EndGate", "Number"] rebuilt : ScopeId(0): ["EndGate"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(5)] Binding symbols mismatch: after transform: ScopeId(5): [SymbolId(3), SymbolId(10)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] @@ -9868,6 +11393,9 @@ Missing ReferenceId: EndGate Bindings mismatch: after transform: ScopeId(0): ["EndGate", "Number"] rebuilt : ScopeId(0): ["EndGate"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(5)] Binding symbols mismatch: after transform: ScopeId(5): [SymbolId(3), SymbolId(11)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] @@ -9915,6 +11443,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericConstructSignatureInInterf semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "r", "v"] rebuilt : ScopeId(0): ["r", "v"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/genericFunctionHasFreshTypeArgs.ts semantic error: Bindings mismatch: @@ -9925,6 +11456,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericFunctionInference2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["HandleCreatorsFactory", "MyState", "Props", "Reducer", "enhancer4", "foo", "myReducer1", "myReducer2"] rebuilt : ScopeId(0): ["enhancer4", "myReducer1", "myReducer2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(14): Some("foo") rebuilt : ReferenceId(2): None @@ -9936,7 +11470,10 @@ after transform: ["combineReducers", "withH"] rebuilt : ["combineReducers", "foo", "withH"] tasks/coverage/typescript/tests/cases/compiler/genericFunctionSpecializations1.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] +Bindings mismatch: after transform: ScopeId(2): ["T", "test"] rebuilt : ScopeId(1): ["test"] Bindings mismatch: @@ -9950,6 +11487,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericFunctions3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Query", "from"] rebuilt : ScopeId(0): ["from"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(4): ["T", "arg"] rebuilt : ScopeId(1): ["arg"] @@ -9958,6 +11498,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericFunctionsAndConditionalInf semantic error: Bindings mismatch: after transform: ScopeId(0): ["Boxified", "LR", "Ops", "Result", "Target", "Targets", "foo", "left", "leftOk", "leftOrphaned", "ok", "orphaned", "qq", "right", "rightOk", "rightOrphaned"] rebuilt : ScopeId(0): ["foo", "left", "leftOk", "leftOrphaned", "ok", "orphaned", "qq", "right", "rightOk", "rightOrphaned"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(10), ScopeId(13), ScopeId(14)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(4): ["U", "V", "obj"] rebuilt : ScopeId(1): ["obj"] @@ -9980,6 +11523,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericFunctionsWithOptionalParam semantic error: Bindings mismatch: after transform: ScopeId(0): ["Utils", "utils"] rebuilt : ScopeId(0): ["utils"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Array"] rebuilt : [] @@ -9988,6 +11534,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericFunctionsWithOptionalParam semantic error: Bindings mismatch: after transform: ScopeId(0): ["Collection", "Utils", "c", "f1", "f2", "r3", "r4", "r5", "utils"] rebuilt : ScopeId(0): ["Collection", "c", "f1", "f2", "r3", "r4", "r5", "utils"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] @@ -9999,6 +11548,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericIndexedAccessMethodInterse semantic error: Bindings mismatch: after transform: ScopeId(0): ["ExtendedService", "Service", "createService"] rebuilt : ScopeId(0): ["createService"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(5): ["ServiceCtr", "T"] rebuilt : ScopeId(1): ["ServiceCtr"] @@ -10007,16 +11559,25 @@ tasks/coverage/typescript/tests/cases/compiler/genericInference2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["age_v", "ko", "name_v", "o", "rr_v", "x_v", "yy_v", "zz_v"] rebuilt : ScopeId(0): ["age_v", "name_v", "o", "rr_v", "x_v", "yy_v", "zz_v"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/genericInferenceDefaultTypeParameter.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Type"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/genericInferenceDefaultTypeParameterJsxReact.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["ButtonBaseProps", "Component", "ComponentPropsWithRef", "ElementType", "React", "ReactNode", "_jsxFileName", "v1"] rebuilt : ScopeId(0): ["Component", "React", "_jsxFileName", "v1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(2): ["T", "props"] rebuilt : ScopeId(1): ["props"] @@ -10025,6 +11586,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericInheritedDefaultConstructo semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "Constructor", "c"] rebuilt : ScopeId(0): ["A", "B", "c"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(3): ["U"] rebuilt : ScopeId(1): [] @@ -10039,6 +11603,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericInstanceOf.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "F"] rebuilt : ScopeId(0): ["C"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(2): ["T"] rebuilt : ScopeId(1): [] @@ -10047,6 +11614,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericInterfaceFunctionTypeParam semantic error: Bindings mismatch: after transform: ScopeId(0): ["IFoo", "foo"] rebuilt : ScopeId(0): ["foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(2): ["A", "fn"] rebuilt : ScopeId(1): ["fn"] @@ -10055,6 +11625,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericInterfaceImplementation.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IOption", "None"] rebuilt : ScopeId(0): ["None"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(4): ["T"] rebuilt : ScopeId(1): [] @@ -10066,6 +11639,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericInterfaceTypeCall.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "bar", "foo", "test"] rebuilt : ScopeId(0): ["foo", "test"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/genericIsNeverEmptyObject.ts semantic error: Bindings mismatch: @@ -10076,6 +11652,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericMethodOverspecialization.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["Document", "HTMLElement", "document", "elements", "names", "widths", "xxx"] rebuilt : ScopeId(0): ["elements", "names", "widths", "xxx"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Reference symbol mismatch: after transform: ReferenceId(3): Some("document") rebuilt : ReferenceId(1): None @@ -10087,6 +11666,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericNumberIndex.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["X"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/genericObjectCreationWithoutTypeArgs.ts semantic error: Bindings mismatch: @@ -10105,6 +11687,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericObjectSpreadResultInSwitch semantic error: Bindings mismatch: after transform: ScopeId(0): ["Params", "getType", "params"] rebuilt : ScopeId(0): ["getType"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(2): ["P", "foo", "params", "rest"] rebuilt : ScopeId(1): ["foo", "params", "rest"] @@ -10237,6 +11822,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericOverloadSignatures.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "C2", "D", "I2", "I3", "b", "f"] rebuilt : ScopeId(0): ["C2", "b", "f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(8), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(11): ["T"] rebuilt : ScopeId(2): [] @@ -10261,6 +11849,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericPrototypeProperty2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["BaseEvent", "BaseEventWrapper", "EventTarget", "MyEvent", "MyEventWrapper"] rebuilt : ScopeId(0): ["BaseEvent", "BaseEventWrapper", "MyEvent", "MyEventWrapper"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(2): [] @@ -10302,6 +11893,9 @@ rebuilt : ScopeId(1): ["PullSymbol", "PullSymbolVisibility", "PullTypeSym 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(10)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(7)] Bindings mismatch: after transform: ScopeId(5): ["Private", "Public", "PullSymbolVisibility"] rebuilt : ScopeId(2): ["PullSymbolVisibility"] @@ -10356,16 +11950,25 @@ tasks/coverage/typescript/tests/cases/compiler/genericSignatureInheritance.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "I2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/genericSignatureInheritance2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "I2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/genericSpecializationToTypeLiteral1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IDictionary", "IEnumerable"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(17)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/genericStaticAnyTypeFunction.ts semantic error: Bindings mismatch: @@ -10379,6 +11982,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericTemplateOverloadResolution semantic error: Bindings mismatch: after transform: ScopeId(0): ["IFooFn", "fooFn"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(8): Some("fooFn") rebuilt : ReferenceId(1): None @@ -10390,9 +11996,15 @@ tasks/coverage/typescript/tests/cases/compiler/genericTupleWithSimplifiableEleme semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "SS1", "SS2", "y", "z"] rebuilt : ScopeId(0): ["I", "y", "z"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(5): ["SS"] rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(6): [ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(2): [] tasks/coverage/typescript/tests/cases/compiler/genericTypeAssertions3.ts semantic error: Bindings mismatch: @@ -10426,6 +12038,9 @@ tasks/coverage/typescript/tests/cases/compiler/genericTypeWithCallableMembers.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "Constructable"] rebuilt : ScopeId(0): ["C"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(1): [] @@ -10437,31 +12052,49 @@ rebuilt : ScopeId(1): ["f"] Bindings mismatch: after transform: ScopeId(2): ["T", "f"] rebuilt : ScopeId(2): ["f"] +Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3)] +rebuilt : ScopeId(2): [] tasks/coverage/typescript/tests/cases/compiler/genericTypeWithMultipleBases1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1", "I2", "I3", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/genericTypeWithMultipleBases2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1", "I2", "I3", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/genericTypeWithMultipleBases3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IA", "IB", "IC", "c", "x", "y"] rebuilt : ScopeId(0): ["c", "x", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/genericWithCallSignatureReturningSpecialization.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/genericWithCallSignatures1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Callable", "CallableExtention"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/genericWithIndexerOfTypeParameterType1.ts semantic error: Bindings mismatch: @@ -10526,6 +12159,9 @@ Missing ReferenceId: MyModule Bindings mismatch: after transform: ScopeId(0): ["MyModule", "_"] rebuilt : ScopeId(0): ["MyModule"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1)] Binding symbols mismatch: after transform: ScopeId(8): [SymbolId(14), SymbolId(16)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] @@ -10546,6 +12182,9 @@ tasks/coverage/typescript/tests/cases/compiler/getParameterNameAtPosition.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Mock", "Tester"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["Function", "cases", "fn"] rebuilt : ["cases", "fn"] @@ -10554,6 +12193,9 @@ tasks/coverage/typescript/tests/cases/compiler/getterErrorMessageNotDuplicated.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo", "Thing"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/getterSetterNonAccessor.ts semantic error: Unresolved references mismatch: @@ -10564,6 +12206,9 @@ tasks/coverage/typescript/tests/cases/compiler/getterSetterSubtypeAssignment.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "NumberOrObject", "NumberOrString", "NumberOrUndefined", "numberOrObject", "numberOrString", "numberOrUndefined"] rebuilt : ScopeId(0): ["NumberOrObject", "NumberOrString", "NumberOrUndefined", "numberOrObject", "numberOrString", "numberOrUndefined"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(8), ScopeId(16), ScopeId(17)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(8), ScopeId(16)] tasks/coverage/typescript/tests/cases/compiler/global.ts semantic error: Missing SymbolId: M @@ -10595,31 +12240,49 @@ tasks/coverage/typescript/tests/cases/compiler/globalFunctionAugmentationOverloa semantic error: Bindings mismatch: after transform: ScopeId(0): ["global"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/globalIsContextualKeyword.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "b", "foo", "global", "obj"] rebuilt : ScopeId(0): ["a", "b", "foo", "obj"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] tasks/coverage/typescript/tests/cases/compiler/hidingCallSignatures.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "D", "E", "F", "d", "e", "f"] rebuilt : ScopeId(0): ["d", "e", "f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/hidingConstructSignatures.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "D", "E", "F", "d", "e", "f"] rebuilt : ScopeId(0): ["d", "e", "f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/hidingIndexSignatures.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "a", "b"] rebuilt : ScopeId(0): ["a", "b"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/higherOrderMappedIndexLookupInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IdMapped", "T", "U", "f", "f1", "f2", "f3", "g", "h"] rebuilt : ScopeId(0): ["f1", "f2", "f3", "h"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(1): ["T", "U", "a", "b"] rebuilt : ScopeId(1): ["a", "b"] @@ -10629,6 +12292,9 @@ rebuilt : ScopeId(2): ["a", "b"] Bindings mismatch: after transform: ScopeId(3): ["T", "U", "a", "b"] rebuilt : ScopeId(3): ["a", "b"] +Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(3): [] Reference symbol mismatch: after transform: ReferenceId(35): Some("f") rebuilt : ReferenceId(12): None @@ -10648,6 +12314,9 @@ tasks/coverage/typescript/tests/cases/compiler/homomorphicMappedTypeNesting.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Box", "Identity", "Test", "UnboxArray"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(8)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Array"] rebuilt : [] @@ -10656,6 +12325,9 @@ tasks/coverage/typescript/tests/cases/compiler/homomorphicMappedTypeWithNonHomom semantic error: Bindings mismatch: after transform: ScopeId(0): ["HandleOptions", "result"] rebuilt : ScopeId(0): ["result"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["PropertyKey", "Record", "func1"] rebuilt : ["func1"] @@ -10664,17 +12336,29 @@ tasks/coverage/typescript/tests/cases/compiler/icomparable.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IComparable", "StringComparable", "sc", "x"] rebuilt : ScopeId(0): ["sc", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/identicalGenericConditionalsWithInferRelated.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Constructor", "MappedResult", "X", "Y", "f"] rebuilt : ScopeId(0): ["Y", "f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(6), ScopeId(7), ScopeId(11), ScopeId(14)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["Cond1", "Cond2", "X", "arg", "x", "y"] rebuilt : ScopeId(1): ["arg", "x", "y"] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(1): [] Bindings mismatch: after transform: ScopeId(15): ["C", "ctor"] rebuilt : ScopeId(3): ["ctor"] +Scope children mismatch: +after transform: ScopeId(15): [ScopeId(16)] +rebuilt : ScopeId(3): [] Unresolved references mismatch: after transform: ["Boolean", "Error", "Number", "String"] rebuilt : ["Error"] @@ -10683,6 +12367,9 @@ tasks/coverage/typescript/tests/cases/compiler/identicalTypesNoDifferByCheckOrde semantic error: Bindings mismatch: after transform: ScopeId(0): ["FunctionComponent1", "FunctionComponent2", "SomeProps", "SomePropsClone", "SomePropsCloneX", "SomePropsX", "Validator", "WeakValidationMap", "comp2", "comp3", "needsComponentOfSomeProps2", "needsComponentOfSomeProps3"] rebuilt : ScopeId(0): ["comp2", "comp3", "needsComponentOfSomeProps2", "needsComponentOfSomeProps3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Unresolved references mismatch: after transform: ["Omit", "Pick", "Required"] rebuilt : [] @@ -10691,6 +12378,9 @@ tasks/coverage/typescript/tests/cases/compiler/identityAndDivergentNormalizedTyp semantic error: Bindings mismatch: after transform: ScopeId(0): ["ApiPost", "PostBody", "PostPath", "fx1", "post", "tmp"] rebuilt : ScopeId(0): ["fx1", "post", "tmp"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(4): ["PATH", "body", "options", "path"] rebuilt : ScopeId(1): ["body", "options", "path"] @@ -10708,21 +12398,33 @@ tasks/coverage/typescript/tests/cases/compiler/illegalGenericWrapping1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Sequence"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/implementInterfaceAnyMemberWithVoid.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bug", "I"] rebuilt : ScopeId(0): ["Bug"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/implementsInClassExpression.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "cls"] rebuilt : ScopeId(0): ["cls"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/implicitAnyGenericTypeInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Comparer", "c", "r"] rebuilt : ScopeId(0): ["c", "r"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/implicitAnyGenerics.ts semantic error: Bindings mismatch: @@ -10745,6 +12447,9 @@ tasks/coverage/typescript/tests/cases/compiler/implicitIndexSignatures.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["StringMap", "empty1", "empty2", "f1", "f2", "f3", "f4", "f5", "map", "names1", "names2"] rebuilt : ScopeId(0): ["empty1", "empty2", "f1", "f2", "f3", "f4", "f5", "map", "names1", "names2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] Bindings mismatch: after transform: ScopeId(9): ["A", "B", "E1"] rebuilt : ScopeId(6): ["E1"] @@ -10804,6 +12509,9 @@ tasks/coverage/typescript/tests/cases/compiler/importDeclWithExportModifierInAmb semantic error: Bindings mismatch: after transform: ScopeId(0): ["m"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["x"] rebuilt : [] @@ -10820,7 +12528,10 @@ after transform: SymbolId(0): SymbolFlags(Export | RegularEnum) rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) tasks/coverage/typescript/tests/cases/compiler/importElisionExportNonExportAndDefault.ts -semantic error: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export | ArrowFunction | Interface) rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export | ArrowFunction) Symbol span mismatch: @@ -10865,6 +12576,9 @@ tasks/coverage/typescript/tests/cases/compiler/importHelpersInAmbientContext.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["N"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/importHelpersInIsolatedModules.ts semantic error: Bindings mismatch: @@ -10975,6 +12689,9 @@ tasks/coverage/typescript/tests/cases/compiler/import_unneeded-require-when-refe semantic error: Bindings mismatch: after transform: ScopeId(0): ["ITest"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/import_var-referencing-an-imported-module-alias.ts semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. @@ -10984,6 +12701,9 @@ tasks/coverage/typescript/tests/cases/compiler/importedAliasedConditionalTypeIns semantic error: Bindings mismatch: after transform: ScopeId(0): ["Actual", "Expected", "Handler", "lambdaTester"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/importedAliasesInTypePositions.ts semantic error: Missing SymbolId: elaborate @@ -11037,6 +12757,9 @@ semantic error: Missing SymbolId: foo Bindings mismatch: after transform: ScopeId(0): ["foo", "m1"] rebuilt : ScopeId(0): ["foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(Class | Import) rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable | Class) @@ -11048,21 +12771,33 @@ tasks/coverage/typescript/tests/cases/compiler/importsInAmbientModules1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["M"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/importsInAmbientModules2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["M"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/importsInAmbientModules3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["M"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/inKeywordAndIntersection.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "ClassOne", "InstanceOne", "InstanceTwo", "f10", "instance"] rebuilt : ScopeId(0): ["A", "B", "ClassOne", "f10", "instance"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] @@ -11074,7 +12809,10 @@ after transform: ["Object", "true"] rebuilt : ["Object"] tasks/coverage/typescript/tests/cases/compiler/inKeywordNarrowingWithNoUncheckedIndexedAccess.ts -semantic error: Unresolved references 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), ScopeId(2), ScopeId(4), ScopeId(7)] +Unresolved references mismatch: after transform: ["Record", "invariant"] rebuilt : ["invariant"] @@ -11082,6 +12820,9 @@ tasks/coverage/typescript/tests/cases/compiler/inKeywordTypeguard.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "AOrB", "AWithMethod", "AWithOptionalProp", "B", "BWithMethod", "BWithOptionalProp", "C", "ClassWithUnionProp", "D", "NegativeClassTest", "UnreachableCodeDetection", "checkIsTouchDevice", "error", "f", "f1", "f10", "f11", "f12", "f13", "f14", "f15", "f16", "f2", "f3", "f4", "f5", "f6", "f7", "f8", "f9", "foo", "isHTMLTable", "narrowsToNever", "negativeClassesTest", "negativeIntersectionTest", "negativeMultipleClassesTest", "negativePropTest", "negativeTestClassesWithMemberMissingInBothClasses", "negativeTestClassesWithMembers", "positiveClassesTest", "positiveIntersectionTest", "positiveTestClassesWithOptionalProperties", "sym", "test1", "test2", "test3", "x"] rebuilt : ScopeId(0): ["A", "AWithMethod", "AWithOptionalProp", "B", "BWithMethod", "BWithOptionalProp", "C", "ClassWithUnionProp", "D", "NegativeClassTest", "UnreachableCodeDetection", "checkIsTouchDevice", "f", "f1", "f10", "f11", "f12", "f13", "f14", "f15", "f16", "f2", "f3", "f4", "f5", "f6", "f7", "f8", "f9", "foo", "isHTMLTable", "narrowsToNever", "negativeClassesTest", "negativeIntersectionTest", "negativeMultipleClassesTest", "negativePropTest", "negativeTestClassesWithMemberMissingInBothClasses", "negativeTestClassesWithMembers", "positiveClassesTest", "positiveIntersectionTest", "positiveTestClassesWithOptionalProperties", "sym", "test1", "test2", "test3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(21), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(29), ScopeId(30), ScopeId(33), ScopeId(37), ScopeId(41), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(56), ScopeId(59), ScopeId(64), ScopeId(67), ScopeId(72), ScopeId(75), ScopeId(79), ScopeId(83), ScopeId(88), ScopeId(90), ScopeId(92), ScopeId(95), ScopeId(98), ScopeId(101), ScopeId(104), ScopeId(107), ScopeId(110), ScopeId(111), ScopeId(113), ScopeId(114), ScopeId(115), ScopeId(116), ScopeId(119), ScopeId(122)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(21), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(29), ScopeId(30), ScopeId(33), ScopeId(37), ScopeId(41), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(50), ScopeId(54), ScopeId(57), ScopeId(62), ScopeId(65), ScopeId(70), ScopeId(73), ScopeId(77), ScopeId(81), ScopeId(86), ScopeId(88), ScopeId(90), ScopeId(93), ScopeId(96), ScopeId(99), ScopeId(102), ScopeId(105), ScopeId(108), ScopeId(109), ScopeId(111), ScopeId(112), ScopeId(113), ScopeId(114), ScopeId(117), ScopeId(120)] Bindings mismatch: after transform: ScopeId(67): ["T", "x"] rebuilt : ScopeId(65): ["x"] @@ -11173,6 +12914,9 @@ tasks/coverage/typescript/tests/cases/compiler/incrementOnNullAssertion.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Dictionary", "foo", "x"] rebuilt : ScopeId(0): ["foo", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/indexIntoEnum.ts semantic error: Missing SymbolId: M @@ -11207,6 +12951,9 @@ tasks/coverage/typescript/tests/cases/compiler/indexTypeNoSubstitutionTemplateLi semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "Test"] rebuilt : ScopeId(0): ["Foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1)] rebuilt : SymbolId(0): [ReferenceId(0)] @@ -11215,6 +12962,9 @@ tasks/coverage/typescript/tests/cases/compiler/indexedAccessAndNullableNarrowing semantic error: Bindings mismatch: after transform: ScopeId(0): ["AnyObject", "State", "Store", "f1", "f2", "f3", "syncStoreProp"] rebuilt : ScopeId(0): ["f1", "f2", "f3", "syncStoreProp"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Bindings mismatch: after transform: ScopeId(1): ["K", "T", "x"] rebuilt : ScopeId(1): ["x"] @@ -11232,7 +12982,10 @@ after transform: ["Partial", "PropertyKey", "Record", "hasOwnProperty", "undefin rebuilt : ["hasOwnProperty", "undefined"] tasks/coverage/typescript/tests/cases/compiler/indexedAccessCanBeHighOrder.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] +Bindings mismatch: after transform: ScopeId(3): ["A", "B", "a", "b", "item"] rebuilt : ScopeId(1): ["a", "b", "item"] @@ -11240,6 +12993,9 @@ tasks/coverage/typescript/tests/cases/compiler/indexedAccessKeyofNestedSimplifie semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "AWrapped", "AnyFunction", "B", "BWrapped", "Params", "Wrapper"] rebuilt : ScopeId(0): ["A", "B"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference flags mismatch: after transform: ReferenceId(12): ReferenceFlags(Type) rebuilt : ReferenceId(0): ReferenceFlags(Read) @@ -11251,6 +13007,9 @@ tasks/coverage/typescript/tests/cases/compiler/indexedAccessNormalization.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyMap", "f1", "f2"] rebuilt : ScopeId(0): ["f1", "f2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(4): ["M", "elemofM", "k", "mymap"] rebuilt : ScopeId(1): ["elemofM", "k", "mymap"] @@ -11262,6 +13021,9 @@ tasks/coverage/typescript/tests/cases/compiler/indexedAccessRetainsIndexSignatur semantic error: Bindings mismatch: after transform: ScopeId(0): ["Diff", "O", "Omit", "Omit1", "Omit2", "o"] rebuilt : ScopeId(0): ["o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Pick"] rebuilt : [] @@ -11270,11 +13032,17 @@ tasks/coverage/typescript/tests/cases/compiler/indexedAccessToThisTypeOnIntersec semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/indexedAccessTypeConstraints.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Data", "Foo", "IData", "Parent", "foo"] rebuilt : ScopeId(0): ["Bar", "Foo", "Parent", "foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(8), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(6), ScopeId(8)] Bindings mismatch: after transform: ScopeId(3): ["M"] rebuilt : ScopeId(1): [] @@ -11292,11 +13060,17 @@ tasks/coverage/typescript/tests/cases/compiler/indexer.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["JQuery", "JQueryElement", "jq"] rebuilt : ScopeId(0): ["jq"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/indexer2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IDirectChildrenMap", "IHeapObjectProperty", "directChildrenMap"] rebuilt : ScopeId(0): ["directChildrenMap"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/indexer3.ts semantic error: Unresolved references mismatch: @@ -11315,6 +13089,9 @@ tasks/coverage/typescript/tests/cases/compiler/indexerReturningTypeParameter1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "a2", "c", "f", "r", "r2"] rebuilt : ScopeId(0): ["a", "a2", "c", "r", "r2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(4): ["T"] rebuilt : ScopeId(2): [] @@ -11326,6 +13103,9 @@ tasks/coverage/typescript/tests/cases/compiler/indexingTypesWithNever.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["EmptyObj", "Example", "ExpectType", "Match", "O0", "O0Names", "O0Props", "O1", "O1Names", "O1Props", "O2", "O2Names", "O2Props", "O3", "O3Names", "O3Props", "OptionalPropNames", "OptionalProps", "P0", "P0Names", "P0Props", "P1", "P1Names", "P1Props", "P2", "P2Names", "P2Props", "P3", "P3Names", "P3Props", "RequiredPropNames", "RequiredProps", "Res1", "Res2", "Res3", "Result1", "Result2", "TestObj", "key", "o0NameTest", "o0Test", "o1NameTest", "o1Test", "o2NameTest", "o2Test", "o3NameTest", "o3Test", "obj", "p0NameTest", "p0Test", "p1NameTest", "p1Test", "p2NameTest", "p2Test", "p3NameTest", "p3Test", "result3", "result4", "result5", "result6"] rebuilt : ScopeId(0): ["result3", "result4", "result5", "result6"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(12), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(22), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(21): Some("obj") rebuilt : ReferenceId(3): None @@ -11345,14 +13125,23 @@ tasks/coverage/typescript/tests/cases/compiler/indirectTypeParameterReferences.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "combined", "flowtypes", "literal", "n"] rebuilt : ScopeId(0): ["combined", "flowtypes", "literal", "n"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5)] Bindings mismatch: after transform: ScopeId(2): ["A", "Combined", "b", "combined", "literal"] rebuilt : ScopeId(1): ["b", "combined", "literal"] +Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/inferConditionalConstraintMappedMember.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["KeysWithoutStringIndex", "RemoveIdxSgn", "test"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Pick", "U"] rebuilt : [] @@ -11361,6 +13150,9 @@ tasks/coverage/typescript/tests/cases/compiler/inferFromGenericFunctionReturnTyp semantic error: Bindings mismatch: after transform: ScopeId(0): ["Mapper", "SetOf", "a1", "a2", "a3", "a4", "a5", "a6", "compose", "f1", "f2", "f3", "f4", "filter", "map", "t1", "t2", "testSet"] rebuilt : ScopeId(0): ["SetOf", "a1", "a2", "a3", "a4", "a5", "a6", "compose", "f1", "f2", "f3", "f4", "filter", "map", "t1", "t2", "testSet"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(24), ScopeId(25), ScopeId(28), ScopeId(31), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(19), ScopeId(22), ScopeId(25), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34)] Bindings mismatch: after transform: ScopeId(19): ["A"] rebuilt : ScopeId(14): [] @@ -11384,6 +13176,9 @@ tasks/coverage/typescript/tests/cases/compiler/inferObjectTypeFromStringLiteralT semantic error: Bindings mismatch: after transform: ScopeId(0): ["two", "x", "y"] rebuilt : ScopeId(0): ["x", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(6): Some("two") rebuilt : ReferenceId(1): None @@ -11402,27 +13197,51 @@ Symbol reference IDs mismatch: after transform: SymbolId(2): [ReferenceId(0), ReferenceId(1)] rebuilt : SymbolId(2): [ReferenceId(0)] +tasks/coverage/typescript/tests/cases/compiler/inferPropertyWithContextSensitiveReturnStatement.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/inferRestArgumentsMappedTuple.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyMappedTupleNew", "MyMappedTupleOld", "MyMappedType", "TupleMapperNew", "TupleMapperOld", "myPrimitiveTupleNew", "myPrimitiveTupleOld"] rebuilt : ScopeId(0): ["myPrimitiveTupleNew", "myPrimitiveTupleOld"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/inferSecondaryParameter.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Ib", "b"] rebuilt : ScopeId(0): ["b"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Unresolved references mismatch: after transform: ["Function"] rebuilt : [] +tasks/coverage/typescript/tests/cases/compiler/inferStringLiteralUnionForBindingElement.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] + tasks/coverage/typescript/tests/cases/compiler/inferTInParentheses.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["F1", "IsNumber", "T1", "T2", "T3", "T4", "T5", "T6", "T7", "T8", "T9"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["true"] rebuilt : [] +tasks/coverage/typescript/tests/cases/compiler/inferTupleFromBindingPattern.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/inferTypeArgumentsInSignatureWithRestParameters.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["T", "args", "array"] @@ -11438,6 +13257,9 @@ tasks/coverage/typescript/tests/cases/compiler/inferTypeConstraintInstantiationC semantic error: Bindings mismatch: after transform: ScopeId(0): ["AMappedType", "Cell", "F1", "F2", "HasM", "InferIOItemToJSType", "Items", "MyObject", "Simplify", "X1", "X2", "ZodObject", "ZodRawShape", "ZodType", "addQuestionMarks", "optionalKeys", "requiredKeys"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(9), ScopeId(12), ScopeId(14), ScopeId(17), ScopeId(18), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(26), ScopeId(29), ScopeId(30), ScopeId(31)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Exclude"] rebuilt : [] @@ -11446,6 +13268,9 @@ tasks/coverage/typescript/tests/cases/compiler/inferTypeParameterConstraints.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["BaseClass", "Constrain", "Constructor", "E0", "E1", "Foo", "IsSub", "Klass", "SubGuard", "T0", "U", "inferTest", "m"] rebuilt : ScopeId(0): ["BaseClass", "Klass"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(10), ScopeId(11), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(17)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Bindings mismatch: after transform: ScopeId(11): ["V"] rebuilt : ScopeId(1): [] @@ -11469,11 +13294,17 @@ tasks/coverage/typescript/tests/cases/compiler/inferTypesWithFixedTupleExtendsAt semantic error: Bindings mismatch: after transform: ScopeId(0): ["SubTup2FixedLength", "SubTup2FixedLengthTest", "SubTup2RestAndTrailingVariadic2", "SubTup2RestAndTrailingVariadic2Test", "SubTup2TrailingVariadic", "SubTup2TrailingVariadicTest", "SubTup2TrailingVariadicTest2", "SubTup2TrailingVariadicWithTrailingFixedElements", "SubTup2TrailingVariadicWithTrailingFixedElementsTest", "SubTup2TrailingVariadicWithTrailingFixedElementsTest2", "SubTup2Variadic", "SubTup2VariadicAndRest", "SubTup2VariadicAndRestTest", "SubTup2VariadicTest", "SubTup2VariadicTest2", "SubTup2VariadicWithLeadingFixedElements", "SubTup2VariadicWithLeadingFixedElementsTest", "SubTup2VariadicWithLeadingFixedElementsTest2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(10), ScopeId(11), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(17), ScopeId(18), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(24), ScopeId(25)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/inferenceAndHKTs.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "Apply", "B", "F", "T", "TTypeLambda", "TypeClass", "TypeLambda", "a", "map", "typeClass", "x1", "x2"] rebuilt : ScopeId(0): ["x1", "x2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(25): Some("map") rebuilt : ReferenceId(0): None @@ -11497,6 +13328,9 @@ tasks/coverage/typescript/tests/cases/compiler/inferenceAndSelfReferentialConstr semantic error: Bindings mismatch: after transform: ScopeId(0): ["Test", "res1", "res2", "res3", "test"] rebuilt : ScopeId(0): ["res1", "res2", "res3", "test"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Bindings mismatch: after transform: ScopeId(4): ["T", "arg"] rebuilt : ScopeId(1): ["arg"] @@ -11508,6 +13342,9 @@ tasks/coverage/typescript/tests/cases/compiler/inferenceDoesNotAddUndefinedOrNul semantic error: Bindings mismatch: after transform: ScopeId(0): ["Node", "NodeArray", "flatMapChildren", "flatMapChildren2"] rebuilt : ScopeId(0): ["flatMapChildren", "flatMapChildren2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] Bindings mismatch: after transform: ScopeId(6): ["T", "cb", "node", "result"] rebuilt : ScopeId(1): ["cb", "node", "result"] @@ -11522,6 +13359,9 @@ tasks/coverage/typescript/tests/cases/compiler/inferenceDoesntCompareAgainstUnin semantic error: Bindings mismatch: after transform: ScopeId(0): ["ClassA", "ConcreteClass", "SettingsInterface", "ValueInterface", "thisGetsTheFalseError", "thisIsOk"] rebuilt : ScopeId(0): ["ClassA", "ConcreteClass", "thisGetsTheFalseError", "thisIsOk"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6)] Bindings mismatch: after transform: ScopeId(1): ["TEntityClass"] rebuilt : ScopeId(1): [] @@ -11533,9 +13373,15 @@ tasks/coverage/typescript/tests/cases/compiler/inferenceErasedSignatures.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["BaseType", "CType", "GetT1", "InheritedType", "MType", "RType", "SomeAbstractClass", "SomeClass", "SomeClassC", "SomeClassM", "SomeClassR", "StructuralVersion", "T1", "T2"] rebuilt : ScopeId(0): ["SomeAbstractClass", "SomeClass"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(21), ScopeId(23), ScopeId(28), ScopeId(30), ScopeId(31)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(3): ["C", "M", "R"] rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(1): [] Symbol reference IDs mismatch: after transform: SymbolId(3): [ReferenceId(8), ReferenceId(12), ReferenceId(15), ReferenceId(18)] rebuilt : SymbolId(0): [ReferenceId(1)] @@ -11550,11 +13396,17 @@ tasks/coverage/typescript/tests/cases/compiler/inferenceExactOptionalProperties1 semantic error: Bindings mismatch: after transform: ScopeId(0): ["Test1"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/inferenceFromParameterlessLambda.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Make", "Take", "foo"] rebuilt : ScopeId(0): ["foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(1): ["T", "i", "o"] rebuilt : ScopeId(1): ["i", "o"] @@ -11571,6 +13423,9 @@ tasks/coverage/typescript/tests/cases/compiler/inferenceOfNullableObjectTypesWit semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "D", "equal", "v"] rebuilt : ScopeId(0): ["equal", "v"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(1): ["T", "a", "b"] rebuilt : ScopeId(1): ["a", "b"] @@ -11579,6 +13434,9 @@ tasks/coverage/typescript/tests/cases/compiler/inferenceOptionalPropertiesToInde semantic error: Bindings mismatch: after transform: ScopeId(0): ["a1", "a2", "a3", "a4", "obj", "param2", "query", "x1", "x2", "x3", "x4"] rebuilt : ScopeId(0): ["a1", "a2", "a3", "a4", "obj", "param2", "query"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(3): Some("x1") rebuilt : ReferenceId(1): None @@ -11599,6 +13457,9 @@ tasks/coverage/typescript/tests/cases/compiler/inferenceOuterResultNotIncorrectl semantic error: Bindings mismatch: after transform: ScopeId(0): ["Assign", "Base", "Foo", "Supervisor", "Test", "Zip"] rebuilt : ScopeId(0): ["Base", "Foo", "Test", "Zip"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(6), ScopeId(9), ScopeId(10), ScopeId(12)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(9)] Bindings mismatch: after transform: ScopeId(1): ["A", "B"] rebuilt : ScopeId(1): [] @@ -11631,6 +13492,9 @@ tasks/coverage/typescript/tests/cases/compiler/inferenceUnionOfObjectsMappedCont semantic error: Bindings mismatch: after transform: ScopeId(0): ["Entity", "RowRenderer", "RowRendererMeta", "test"] rebuilt : ScopeId(0): ["test"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["Date"] rebuilt : [] @@ -11639,11 +13503,17 @@ tasks/coverage/typescript/tests/cases/compiler/inferentialTypingObjectLiteralMet semantic error: Bindings mismatch: after transform: ScopeId(0): ["Int"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/inferentialTypingObjectLiteralMethod2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Int"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/inferentialTypingUsingApparentType1.ts semantic error: Bindings mismatch: @@ -11654,24 +13524,43 @@ tasks/coverage/typescript/tests/cases/compiler/inferentialTypingUsingApparentTyp semantic error: Bindings mismatch: after transform: ScopeId(1): ["T", "x"] rebuilt : ScopeId(1): ["x"] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/compiler/inferentialTypingUsingApparentType3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["CharField", "Field", "NumberField", "ObjectField", "person"] rebuilt : ScopeId(0): ["CharField", "NumberField", "ObjectField", "person"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] Bindings mismatch: after transform: ScopeId(7): ["A", "T"] rebuilt : ScopeId(5): [] +tasks/coverage/typescript/tests/cases/compiler/inferentialTypingWithFunctionType.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/inferentialTypingWithFunctionType2.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["A", "a"] rebuilt : ScopeId(1): ["a"] +tasks/coverage/typescript/tests/cases/compiler/inferentialTypingWithFunctionTypeNested.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/inferentialTypingWithFunctionTypeSyntacticScenarios.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IdentityConstructor", "dottedIdentity", "ic", "s", "t"] rebuilt : ScopeId(0): ["dottedIdentity", "ic", "s", "t"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] 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)] @@ -11681,6 +13570,11 @@ 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", "_"] @@ -11732,21 +13626,33 @@ tasks/coverage/typescript/tests/cases/compiler/infiniteExpandingTypeThroughInher semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/infinitelyExpandingBaseTypes1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/infinitelyExpandingBaseTypes2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "a", "b"] rebuilt : ScopeId(0): ["a", "b"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/infinitelyExpandingOverloads.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["KnockoutObservableBase2", "KnockoutSubscription2", "Validatable2", "ValidationPlacement2", "Validator2", "ViewModel", "Widget"] rebuilt : ScopeId(0): ["Validator2", "ViewModel", "Widget"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(7): ["TValue"] rebuilt : ScopeId(1): [] @@ -11756,6 +13662,9 @@ 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)] Symbol reference IDs mismatch: after transform: SymbolId(8): [ReferenceId(8)] rebuilt : SymbolId(0): [] @@ -11770,31 +13679,49 @@ tasks/coverage/typescript/tests/cases/compiler/infinitelyExpandingTypeAssignabil semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "x", "y"] rebuilt : ScopeId(0): ["x", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/infinitelyExpandingTypes2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo", "f", "v"] rebuilt : ScopeId(0): ["f", "v"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/infinitelyExpandingTypes3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["List", "OwnerList", "OwnerList2", "o1", "o2"] rebuilt : ScopeId(0): ["o1", "o2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/infinitelyExpandingTypes4.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Grouping", "Query", "QueryEnumerator", "q1", "q2", "q3"] rebuilt : ScopeId(0): ["q1", "q2", "q3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/infinitelyExpandingTypes5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Enumerator", "Query", "from"] rebuilt : ScopeId(0): ["from"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/infinitelyExpandingTypesNonGenericBase.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "Base", "Functionality", "Options", "OptionsBase", "o"] rebuilt : ScopeId(0): ["A", "Base", "Functionality", "o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Bindings mismatch: after transform: ScopeId(1): ["V"] rebuilt : ScopeId(1): [] @@ -11812,11 +13739,17 @@ tasks/coverage/typescript/tests/cases/compiler/infinitelyGenerativeInheritance1. semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyStack", "Stack"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/inheritSameNamePrivatePropertiesFromSameOrigin.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "C2"] rebuilt : ScopeId(0): ["B", "C", "C2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Symbol reference IDs mismatch: after transform: SymbolId(1): [ReferenceId(2)] rebuilt : SymbolId(1): [] @@ -11931,11 +13864,17 @@ tasks/coverage/typescript/tests/cases/compiler/inheritedConstructorPropertyConte semantic error: Bindings mismatch: after transform: ScopeId(0): ["Assignment", "State"] rebuilt : ScopeId(0): ["Assignment"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/inheritedFunctionAssignmentCompatibility.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IResultCallback", "fn"] rebuilt : ScopeId(0): ["fn"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Unresolved references mismatch: after transform: ["Function"] rebuilt : [] @@ -11944,6 +13883,9 @@ tasks/coverage/typescript/tests/cases/compiler/inheritedGenericCallSignature.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1", "I2", "Object", "x", "y"] rebuilt : ScopeId(0): ["x", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Date", "undefined"] rebuilt : ["undefined"] @@ -11952,24 +13894,39 @@ tasks/coverage/typescript/tests/cases/compiler/inheritedMembersAndIndexSignature semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/inheritedOverloadedSpecializedSignatures.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "C1", "C2", "b", "c", "x1", "x2", "x3", "x4", "x5", "x6", "x7", "x8", "x9"] rebuilt : ScopeId(0): ["b", "c", "x1", "x2", "x3", "x4", "x5", "x6", "x7", "x8", "x9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/initializersInAmbientEnums.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/inlineConditionalHasSimilarAssignability.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyExtract", "foo"] rebuilt : ScopeId(0): ["foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(3): ["CustomType", "T", "a", "b", "c", "d", "e"] rebuilt : ScopeId(1): ["a", "b", "c", "d", "e"] +Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(1): [] Unresolved references mismatch: after transform: ["Extract"] rebuilt : [] @@ -11978,9 +13935,15 @@ tasks/coverage/typescript/tests/cases/compiler/inlinedAliasAssignableToConstrain semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "Name", "RelationFields", "ShouldA"] rebuilt : ScopeId(0): ["A"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(6): ["A1", "A2", "N", "RF"] rebuilt : ScopeId(2): [] +Scope children mismatch: +after transform: ScopeId(6): [ScopeId(7)] +rebuilt : ScopeId(2): [] Symbol reference IDs mismatch: after transform: SymbolId(5): [ReferenceId(0), ReferenceId(1), ReferenceId(2), ReferenceId(8), ReferenceId(11), ReferenceId(12), ReferenceId(13), ReferenceId(18), ReferenceId(21), ReferenceId(24)] rebuilt : SymbolId(0): [] @@ -12034,6 +13997,9 @@ Missing ReferenceId: M Bindings mismatch: after transform: ScopeId(0): ["Array", "M"] rebuilt : ScopeId(0): ["M"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Binding symbols mismatch: after transform: ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(5)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3)] @@ -12072,6 +14038,9 @@ rebuilt : ScopeId(1): ["B", "_A"] 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)] Binding symbols mismatch: after transform: ScopeId(3): [SymbolId(4), SymbolId(6)] rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] @@ -12108,10 +14077,18 @@ Symbol reference IDs mismatch: after transform: SymbolId(3): [] rebuilt : SymbolId(4): [ReferenceId(3)] +tasks/coverage/typescript/tests/cases/compiler/innerOverloads.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] + tasks/coverage/typescript/tests/cases/compiler/innerTypeArgumentInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Generate", "Generator"] rebuilt : ScopeId(0): ["Generate"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(2): ["U", "func"] rebuilt : ScopeId(1): ["func"] @@ -12125,6 +14102,9 @@ tasks/coverage/typescript/tests/cases/compiler/instanceOfAssignability.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ABC", "Alpha", "Animal", "Base", "Beta", "Derived1", "Derived2", "Gamma", "Giraffe", "Mammal", "fn1", "fn2", "fn3", "fn4", "fn5", "fn6", "fn7", "fn8"] rebuilt : ScopeId(0): ["ABC", "Animal", "Derived1", "Derived2", "Giraffe", "Mammal", "fn1", "fn2", "fn3", "fn4", "fn5", "fn6", "fn7", "fn8"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(21)] Symbol reference IDs mismatch: after transform: SymbolId(1): [ReferenceId(11), ReferenceId(14), ReferenceId(21), ReferenceId(23)] rebuilt : SymbolId(0): [ReferenceId(6), ReferenceId(12)] @@ -12149,11 +14129,17 @@ tasks/coverage/typescript/tests/cases/compiler/instanceSubtypeCheck1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/instanceofTypeAliasToGenericClass.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Table", "fn", "fn2", "o"] rebuilt : ScopeId(0): ["fn", "fn2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(3): ["T", "o"] rebuilt : ScopeId(1): ["o"] @@ -12174,6 +14160,9 @@ tasks/coverage/typescript/tests/cases/compiler/instantiateConstraintsToTypeArgum semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/instantiateContextualTypes.ts semantic error: Missing SymbolId: N1 @@ -12183,6 +14172,9 @@ 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"] 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"] @@ -12192,6 +14184,9 @@ rebuilt : ScopeId(8): ["InferFunctionTypes", "_N"] Scope flags mismatch: after transform: ScopeId(25): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(8): ScopeFlags(Function) +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)] Reference symbol mismatch: after transform: ReferenceId(6): Some("handlers") rebuilt : ReferenceId(1): None @@ -12215,16 +14210,22 @@ tasks/coverage/typescript/tests/cases/compiler/instantiateContextuallyTypedGener semantic error: Bindings mismatch: after transform: ScopeId(0): ["$", "JQuery", "lines"] rebuilt : ScopeId(0): ["$", "lines"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/instantiateCrossFileMerge.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["P"] +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/instantiatedBaseTypeConstraints.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo"] rebuilt : ScopeId(0): ["Bar"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(3): [ReferenceId(5)] rebuilt : SymbolId(0): [] @@ -12233,11 +14234,17 @@ tasks/coverage/typescript/tests/cases/compiler/instantiatedBaseTypeConstraints2. semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/instantiatedReturnTypeContravariance.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "c", "d"] rebuilt : ScopeId(0): ["c", "d"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/interMixingModulesInterfaces0.ts semantic error: Missing SymbolId: A @@ -12261,6 +14268,9 @@ 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(4)] +rebuilt : ScopeId(1): [ScopeId(2)] Binding symbols mismatch: after transform: ScopeId(2): [SymbolId(2), SymbolId(5)] rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] @@ -12302,6 +14312,9 @@ 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)] Binding symbols mismatch: after transform: ScopeId(3): [SymbolId(2), SymbolId(5)] rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] @@ -12341,6 +14354,9 @@ 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)] Binding symbols mismatch: after transform: ScopeId(3): [SymbolId(2), SymbolId(5)] rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] @@ -12377,6 +14393,9 @@ 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(4)] +rebuilt : ScopeId(1): [ScopeId(2)] Binding symbols mismatch: after transform: ScopeId(2): [SymbolId(2), SymbolId(5)] rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] @@ -12415,6 +14434,9 @@ 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(4)] +rebuilt : ScopeId(1): [ScopeId(2)] Binding symbols mismatch: after transform: ScopeId(2): [SymbolId(2), SymbolId(5)] rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] @@ -12453,6 +14475,9 @@ 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)] Binding symbols mismatch: after transform: ScopeId(3): [SymbolId(2), SymbolId(5)] rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] @@ -12473,9 +14498,15 @@ tasks/coverage/typescript/tests/cases/compiler/interface0.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Generic", "y"] rebuilt : ScopeId(0): ["y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/interfaceClassMerging.ts -semantic error: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(Class | Interface) rebuilt : SymbolId(0): SymbolFlags(Class) Symbol span mismatch: @@ -12486,7 +14517,10 @@ after transform: SymbolId(0): [Span { start: 149, end: 152 }] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/interfaceClassMerging2.ts -semantic error: Symbol flags 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)] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(Class | Interface) rebuilt : SymbolId(0): SymbolFlags(Class) Symbol span mismatch: @@ -12509,11 +14543,17 @@ tasks/coverage/typescript/tests/cases/compiler/interfaceContextualType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bug", "IMap", "IOptions"] rebuilt : ScopeId(0): ["Bug"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/interfaceDeclaration2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1", "I2", "I3", "I4"] rebuilt : ScopeId(0): ["I2", "I3", "I4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Symbol flags mismatch: after transform: SymbolId(1): SymbolFlags(Class | Interface) rebuilt : SymbolId(0): SymbolFlags(Class) @@ -12546,11 +14586,17 @@ tasks/coverage/typescript/tests/cases/compiler/interfaceDeclaration5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C1", "I1"] rebuilt : ScopeId(0): ["C1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/interfaceExtendsClass1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Button", "Control", "Image", "Location", "SelectableControl", "TextBox"] rebuilt : ScopeId(0): ["Button", "Control", "Image", "Location", "TextBox"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6), ScopeId(7)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2), ReferenceId(3)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2)] @@ -12568,6 +14614,9 @@ tasks/coverage/typescript/tests/cases/compiler/interfaceImplementation5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C1", "C2", "C3", "C4", "C5", "C6", "I1"] rebuilt : ScopeId(0): ["C1", "C2", "C3", "C4", "C5", "C6"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6), ScopeId(9), ScopeId(11), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(8), ScopeId(10), ScopeId(12)] tasks/coverage/typescript/tests/cases/compiler/interfaceInReopenedModule.ts semantic error: Missing SymbolId: m @@ -12579,12 +14628,18 @@ Missing ReferenceId: 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(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(2): ["_m2", "f", "n"] rebuilt : ScopeId(1): ["_m2", "n"] Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) +Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] Symbol flags mismatch: after transform: SymbolId(2): SymbolFlags(Export | Class) rebuilt : SymbolId(2): SymbolFlags(Class) @@ -12596,11 +14651,17 @@ tasks/coverage/typescript/tests/cases/compiler/interfaceInheritance2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I6", "I7", "v1"] rebuilt : ScopeId(0): ["v1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/interfaceMergedUnconstrainedNoErrorIrrespectiveOfOrder.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ns"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["ReturnType"] rebuilt : [] @@ -12609,16 +14670,25 @@ tasks/coverage/typescript/tests/cases/compiler/interfacePropertiesWithSameName1. semantic error: Bindings mismatch: after transform: ScopeId(0): ["Mover", "MoverShaker", "Shaker"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/interfaceSubtyping.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Camera", "iface"] rebuilt : ScopeId(0): ["Camera"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/interfaceWithCommaSeparators.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "v"] rebuilt : ScopeId(0): ["v"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/internalImportInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -12627,6 +14697,9 @@ tasks/coverage/typescript/tests/cases/compiler/internalImportUnInstantiatedModul semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B"] rebuilt : ScopeId(0): ["A"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(Class | NameSpaceModule) rebuilt : SymbolId(0): SymbolFlags(Class) @@ -12645,6 +14718,9 @@ Missing ReferenceId: B Bindings mismatch: after transform: ScopeId(0): ["A", "B"] rebuilt : ScopeId(0): ["B"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(3): ["A", "Y", "_B"] rebuilt : ScopeId(1): ["A", "_B"] @@ -12659,11 +14735,17 @@ tasks/coverage/typescript/tests/cases/compiler/intersectionApparentTypeCaching.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["T0", "T1", "TX"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/intersectionConstraintReduction.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AnyKey", "KeyIfSignatureOfObject", "MustBeKey", "Reduced1", "Reduced2", "ReturnTypeKeyof", "Test1", "Test2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(9), ScopeId(12), ScopeId(16)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Extract"] rebuilt : [] @@ -12672,6 +14754,9 @@ tasks/coverage/typescript/tests/cases/compiler/intersectionOfMixinConstructorTyp semantic error: Bindings mismatch: after transform: ScopeId(0): ["x"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(0): Some("x") rebuilt : ReferenceId(0): None @@ -12683,6 +14768,9 @@ tasks/coverage/typescript/tests/cases/compiler/intersectionOfTypeVariableHasAppa semantic error: Bindings mismatch: after transform: ScopeId(0): ["Component", "Props"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["Readonly", "f"] rebuilt : ["f"] @@ -12691,11 +14779,17 @@ tasks/coverage/typescript/tests/cases/compiler/intersectionReductionGenericStrin semantic error: Bindings mismatch: after transform: ScopeId(0): ["_1", "_2", "keyContaining1", "keyContaining2", "obj"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(6), ScopeId(9)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/intersectionSatisfiesConstraint.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["FirstInterface", "SecondInterface", "myFirstFunction", "mySecondFunction"] rebuilt : ScopeId(0): ["myFirstFunction", "mySecondFunction"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(3): ["T", "newParam", "param1"] rebuilt : ScopeId(1): ["newParam", "param1"] @@ -12722,12 +14816,18 @@ 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"] +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"] Scope flags mismatch: after transform: ScopeId(26): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(3): ScopeFlags(Function) +Scope children mismatch: +after transform: ScopeId(26): [ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5), ScopeId(6)] Bindings mismatch: after transform: ScopeId(27): ["A", "a1", "a2", "a3", "a75", "a76", "a77"] rebuilt : ScopeId(4): ["A"] @@ -12772,19 +14872,31 @@ tasks/coverage/typescript/tests/cases/compiler/intersectionTypeWithLeadingOperat semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/intersectionType_useDefineForClassFields.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Baz", "Foo", "bar"] rebuilt : ScopeId(0): ["Baz", "bar"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(3): ["T", "_p"] rebuilt : ScopeId(1): ["_p"] +Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/compiler/intersectionWithConstructSignaturePrototypeResult.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["PersonPrototype", "PersonType"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["EmberObject", "Readonly"] rebuilt : [] @@ -12793,6 +14905,9 @@ tasks/coverage/typescript/tests/cases/compiler/intersectionsAndOptionalPropertie 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"] 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)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(4): Some("ab_primitive") rebuilt : ReferenceId(0): None @@ -12825,6 +14940,9 @@ tasks/coverage/typescript/tests/cases/compiler/intersectionsAndOptionalPropertie 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"] 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)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(4): Some("ab_primitive") rebuilt : ReferenceId(0): None @@ -12857,11 +14975,17 @@ tasks/coverage/typescript/tests/cases/compiler/invalidThisEmitInContextualObject semantic error: Bindings mismatch: after transform: ScopeId(0): ["IDef", "TestController"] rebuilt : ScopeId(0): ["TestController"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/ipromise2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Windows", "p", "p2", "x"] rebuilt : ScopeId(0): ["p", "p2", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["Windows"] rebuilt : [] @@ -12870,11 +14994,17 @@ tasks/coverage/typescript/tests/cases/compiler/ipromise3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IPromise3", "p1", "p2"] rebuilt : ScopeId(0): ["p1", "p2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/ipromise4.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Windows", "p"] rebuilt : ScopeId(0): ["p"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Unresolved references mismatch: after transform: ["Windows"] rebuilt : [] @@ -12883,6 +15013,9 @@ tasks/coverage/typescript/tests/cases/compiler/isolatedModulesConstEnum.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["EventName"] rebuilt : [] @@ -12891,6 +15024,9 @@ tasks/coverage/typescript/tests/cases/compiler/isolatedModulesDontElideReExportS semantic error: Bindings mismatch: after transform: ScopeId(0): ["T"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/isolatedModulesImportConstEnum.ts semantic error: Bindings mismatch: @@ -12925,6 +15061,31 @@ Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(ConstEnum) rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) +tasks/coverage/typescript/tests/cases/compiler/isolatedModulesPlainFile-AMD.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/isolatedModulesPlainFile-CommonJS.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/isolatedModulesPlainFile-ES6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/isolatedModulesPlainFile-System.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/isolatedModulesPlainFile-UMD.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/isolatedModulesReExportAlias.ts semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. Please consider using `import lib from '...';` alongside Typescript's --allowSyntheticDefaultImports option, or add @babel/plugin-transform-modules-commonjs to your Babel config. @@ -12935,11 +15096,17 @@ tasks/coverage/typescript/tests/cases/compiler/isolatedModulesShadowGlobalTypeNo semantic error: Bindings mismatch: after transform: ScopeId(0): ["Date", "Event"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/isolatedModulesSketchyAliasLocalMerge.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["FC"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/isolatedModules_resolveJsonModule.ts semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. @@ -12954,6 +15121,9 @@ tasks/coverage/typescript/tests/cases/compiler/iterableTReturnTNext.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyMap", "Next", "doubles", "map", "r1", "r2", "r3", "set", "source"] rebuilt : ScopeId(0): ["MyMap", "doubles", "r1", "r2", "r3", "source"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference symbol mismatch: after transform: ReferenceId(2): Some("map") rebuilt : ReferenceId(0): None @@ -12974,6 +15144,9 @@ tasks/coverage/typescript/tests/cases/compiler/jqueryInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["DoNothingAlias", "MyPromise", "p1", "p2"] rebuilt : ScopeId(0): ["p2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(14): Some("p1") rebuilt : ReferenceId(1): None @@ -13008,11 +15181,17 @@ tasks/coverage/typescript/tests/cases/compiler/jsonFileImportChecksCallCorrectly semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "data", "fn"] rebuilt : ScopeId(0): ["data", "fn"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/jsxCallbackWithDestructuring.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["Component", "MyComponent", "RouteProps", "_jsxFileName", "_reactJsxRuntime", "global"] rebuilt : ScopeId(0): ["MyComponent", "_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(14), ScopeId(15), ScopeId(16)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(15): ["T"] rebuilt : ScopeId(1): [] @@ -13024,6 +15203,9 @@ tasks/coverage/typescript/tests/cases/compiler/jsxChildrenSingleChildConfusableW semantic error: Bindings mismatch: after transform: ScopeId(0): ["App", "Props", "React", "Tab", "TabLayout", "_jsxFileName"] rebuilt : ScopeId(0): ["App", "React", "TabLayout", "_jsxFileName"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(3), ReferenceId(7), ReferenceId(9), ReferenceId(11), ReferenceId(13)] rebuilt : SymbolId(1): [ReferenceId(0), ReferenceId(2), ReferenceId(3), ReferenceId(6), ReferenceId(8)] @@ -13035,6 +15217,9 @@ tasks/coverage/typescript/tests/cases/compiler/jsxComplexSignatureHasApplicabili semantic error: Bindings mismatch: after transform: ScopeId(0): ["ArrowRendererHandler", "ArrowRendererProps", "AutocompleteResult", "ClearRendererHandler", "ExtractValueType", "FilterOptionHandler", "FilterOptionsHandler", "FocusOptionHandler", "HandlerRendererResult", "InputRendererHandler", "IsOptionUniqueHandler", "IsValidNewOptionHandler", "LoadOptionsAsyncHandler", "LoadOptionsHandler", "LoadOptionsLegacyHandler", "MenuRendererHandler", "MenuRendererProps", "NewOptionCreatorHandler", "Omit", "OnBlurHandler", "OnChangeHandler", "OnChangeMultipleHandler", "OnChangeSingleHandler", "OnCloseHandler", "OnFocusHandler", "OnInputChangeHandler", "OnInputKeyDownHandler", "OnMenuScrollToBottomHandler", "OnNewOptionClickHandler", "OnOpenHandler", "OnValueClickHandler", "Option", "OptionComponentProps", "OptionComponentType", "OptionRendererHandler", "OptionValues", "Options", "Overwrite", "PromptTextCreatorHandler", "Props", "React", "ReactSelectProps", "ReactSingleSelectProps", "SelectValueHandler", "ShouldKeyDownEventCreateNewOptionHandler", "ValueComponentProps", "ValueComponentType", "ValueRendererHandler", "_jsxFileName", "createReactSingleSelect"] rebuilt : ScopeId(0): ["React", "_jsxFileName", "createReactSingleSelect"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(10), ScopeId(12), ScopeId(13), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(6): ["WrappedComponent", "WrappedProps"] rebuilt : ScopeId(1): ["WrappedComponent"] @@ -13052,6 +15237,9 @@ tasks/coverage/typescript/tests/cases/compiler/jsxContainsOnlyTriviaWhiteSpacesN semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "NoticeList", "Props", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["NoticeList", "_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(3): [ReferenceId(1), ReferenceId(2), ReferenceId(3), ReferenceId(4)] rebuilt : SymbolId(2): [ReferenceId(2), ReferenceId(5)] @@ -13060,6 +15248,9 @@ tasks/coverage/typescript/tests/cases/compiler/jsxElementClassTooManyParams.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["ElemClass", "JSX", "_jsxFileName", "_reactJsxRuntime", "elem"] rebuilt : ScopeId(0): ["ElemClass", "_jsxFileName", "_reactJsxRuntime", "elem"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(9): ["T"] rebuilt : ScopeId(1): [] @@ -13071,6 +15262,9 @@ tasks/coverage/typescript/tests/cases/compiler/jsxElementsAsIdentifierNames.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "JSX", "React", "_jsxFileName"] rebuilt : ScopeId(0): ["A", "B", "_jsxFileName"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference symbol mismatch: after transform: ReferenceId(1): Some("React") rebuilt : ReferenceId(0): None @@ -13098,6 +15292,9 @@ Missing ReferenceId: Element Bindings mismatch: after transform: ScopeId(0): ["Element", "JSX", "createElement", "toCamelCase"] rebuilt : ScopeId(0): ["Element", "createElement", "toCamelCase"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(7), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] Binding symbols mismatch: after transform: ScopeId(7): [SymbolId(3), SymbolId(5), SymbolId(10)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(4)] @@ -13124,6 +15321,9 @@ tasks/coverage/typescript/tests/cases/compiler/jsxEmptyExpressionNotCountedAsChi semantic error: Bindings mismatch: after transform: ScopeId(0): ["Props", "React", "Wrapper", "_jsxFileName", "_reactJsxRuntime", "element"] rebuilt : ScopeId(0): ["Wrapper", "_jsxFileName", "_reactJsxRuntime", "element"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(2): [ReferenceId(3), ReferenceId(4)] rebuilt : SymbolId(2): [ReferenceId(5)] @@ -13150,6 +15350,9 @@ Missing ReferenceId: Element Bindings mismatch: after transform: ScopeId(0): ["Element", "JSX", "createElement", "toCamelCase"] rebuilt : ScopeId(0): ["Element", "createElement", "toCamelCase"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(7), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] Binding symbols mismatch: after transform: ScopeId(7): [SymbolId(3), SymbolId(5), SymbolId(10)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(4)] @@ -13176,6 +15379,9 @@ tasks/coverage/typescript/tests/cases/compiler/jsxFactoryIdentifierAsParameter.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["AppComponent", "JSX", "_jsxFileName"] rebuilt : ScopeId(0): ["AppComponent", "_jsxFileName"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/jsxFactoryQualifiedName.ts semantic error: Missing SymbolId: Element @@ -13189,6 +15395,9 @@ Missing ReferenceId: Element Bindings mismatch: after transform: ScopeId(0): ["Element", "JSX", "createElement", "toCamelCase"] rebuilt : ScopeId(0): ["Element", "createElement", "toCamelCase"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(7), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] Binding symbols mismatch: after transform: ScopeId(7): [SymbolId(3), SymbolId(5), SymbolId(10)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(4)] @@ -13215,11 +15424,17 @@ tasks/coverage/typescript/tests/cases/compiler/jsxFragmentFactoryNoUnusedLocals. semantic error: Bindings mismatch: after transform: ScopeId(0): ["Counter", "CounterProps", "Fragment", "_jsxFileName", "createElement"] rebuilt : ScopeId(0): ["Counter", "_jsxFileName"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/jsxGenericComponentWithSpreadingResultOfGenericFunction.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["_jsxFileName", "_reactJsxRuntime", "otherProps"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(13): Some("otherProps") rebuilt : ReferenceId(4): None @@ -13231,6 +15446,9 @@ tasks/coverage/typescript/tests/cases/compiler/jsxHasLiteralType.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyComponent", "Props", "React", "_jsxFileName", "m"] rebuilt : ScopeId(0): ["MyComponent", "React", "_jsxFileName", "m"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(2): ["P"] rebuilt : ScopeId(1): [] @@ -13239,6 +15457,9 @@ tasks/coverage/typescript/tests/cases/compiler/jsxInExtendsClause.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "React", "_jsxFileName"] rebuilt : ScopeId(0): ["Foo", "_jsxFileName"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(9): Some("React") rebuilt : ReferenceId(2): None @@ -13265,6 +15486,9 @@ tasks/coverage/typescript/tests/cases/compiler/jsxIntrinsicElementsExtendsRecord semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Record", "require"] rebuilt : ["require"] @@ -13278,6 +15502,9 @@ tasks/coverage/typescript/tests/cases/compiler/jsxLibraryManagedAttributesUnused semantic error: Bindings mismatch: after transform: ScopeId(0): ["Comp", "React", "_jsxFileName", "jsx"] rebuilt : ScopeId(0): ["React", "_jsxFileName"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(6)] rebuilt : SymbolId(1): [ReferenceId(0)] @@ -13289,7 +15516,10 @@ after transform: [] rebuilt : ["Comp"] tasks/coverage/typescript/tests/cases/compiler/jsxLocalNamespaceIndexSignatureNoCrash.tsx -semantic error: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(Export | Class | NameSpaceModule) rebuilt : SymbolId(1): SymbolFlags(Export | Class) Symbol redeclarations mismatch: @@ -13320,6 +15550,9 @@ tasks/coverage/typescript/tests/cases/compiler/jsxNamespaceReexports.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "createElement"] rebuilt : ScopeId(0): ["createElement"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["JSX", "Record"] rebuilt : [] @@ -13328,6 +15561,9 @@ tasks/coverage/typescript/tests/cases/compiler/jsxNamespacedNameNotComparedToNon semantic error: Bindings mismatch: after transform: ScopeId(0): ["_jsxFileName", "_reactJsxRuntime", "react", "tag"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime", "tag"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Function", "require"] rebuilt : ["require"] @@ -13347,11 +15583,17 @@ tasks/coverage/typescript/tests/cases/compiler/jsxPropsAsIdentifierNames.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/jsxSpreadFirstUnionNoErrors.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["Info", "InfoProps", "React", "_jsxFileName", "a", "b", "c", "infoProps"] rebuilt : ScopeId(0): ["Info", "React", "_jsxFileName", "a", "b", "c"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(7): Some("infoProps") rebuilt : ReferenceId(14): None @@ -13363,12 +15605,21 @@ tasks/coverage/typescript/tests/cases/compiler/keyRemappingKeyofResult.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Okay", "Oops", "Orig", "Remapped", "f", "g", "sym", "x"] rebuilt : ScopeId(0): ["f", "g", "sym"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(7), ScopeId(14)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(7): ["Okay", "Oops", "Orig", "Remapped", "T", "a", "x"] rebuilt : ScopeId(1): ["a", "x"] +Scope children mismatch: +after transform: ScopeId(7): [ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(13)] +rebuilt : ScopeId(1): [] Bindings mismatch: after transform: ScopeId(14): ["DistributiveNonIndex", "NonIndex", "Okay", "Oops", "Orig", "Remapped", "T", "a", "x"] rebuilt : ScopeId(2): ["a", "x"] +Scope children mismatch: +after transform: ScopeId(14): [ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23)] +rebuilt : ScopeId(2): [] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(1), ReferenceId(12), ReferenceId(14), ReferenceId(20), ReferenceId(29), ReferenceId(31), ReferenceId(37), ReferenceId(53)] rebuilt : SymbolId(0): [ReferenceId(2), ReferenceId(6), ReferenceId(9), ReferenceId(13), ReferenceId(16)] @@ -13386,6 +15637,9 @@ tasks/coverage/typescript/tests/cases/compiler/keyofGenericExtendingClassDoubleL semantic error: Bindings mismatch: after transform: ScopeId(0): ["AutoModel", "Model", "ModelAttributes", "PersonModel"] rebuilt : ScopeId(0): ["AutoModel", "Model", "PersonModel"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(1): ["Attributes"] rebuilt : ScopeId(1): [] @@ -13402,10 +15656,18 @@ Unresolved references mismatch: after transform: ["Date", "Omit"] rebuilt : [] +tasks/coverage/typescript/tests/cases/compiler/keyofModuleObjectHasCorrectKeys.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/keyofObjectWithGlobalSymbolIncluded.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Q", "obj"] rebuilt : ScopeId(0): ["obj"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(2)] rebuilt : SymbolId(0): [] @@ -13434,6 +15696,9 @@ tasks/coverage/typescript/tests/cases/compiler/lambdaParameterWithTupleArgsHasCo semantic error: Bindings mismatch: after transform: ScopeId(0): ["GenericClass", "GenericFunction", "MyTuple", "MyTupleItem", "consumeClass", "createClass"] rebuilt : ScopeId(0): ["GenericClass", "consumeClass", "createClass"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] Bindings mismatch: after transform: ScopeId(4): ["T"] rebuilt : ScopeId(1): [] @@ -13448,10 +15713,18 @@ tasks/coverage/typescript/tests/cases/compiler/largeTupleTypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ExpandSmallerTuples", "GrowExp", "GrowExpRev", "Shift", "Tuple", "UnshiftTuple"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(10), ScopeId(12), ScopeId(16)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Array", "ArrayValidator", "Exclude"] rebuilt : [] +tasks/coverage/typescript/tests/cases/compiler/letConstMatchingParameterNames.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/letKeepNamesOfTopLevelItems.ts semantic error: Missing SymbolId: A Missing SymbolId: _A @@ -13471,6 +15744,9 @@ tasks/coverage/typescript/tests/cases/compiler/libdtsFix.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["HTMLElement"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/library_RegExpExecArraySlice.ts semantic error: Unresolved references mismatch: @@ -13589,6 +15865,16 @@ tasks/coverage/typescript/tests/cases/compiler/localAliasExportAssignment.ts semantic error: `export = ;` is only supported when compiling modules to CommonJS. Please consider using `export default ;`, or add @babel/plugin-transform-modules-commonjs to your Babel config. +tasks/coverage/typescript/tests/cases/compiler/localClassesInLoop.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/localClassesInLoop_ES6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/localImportNameVsGlobalName.ts semantic error: Missing SymbolId: Keyboard Missing SymbolId: _Keyboard @@ -13652,6 +15938,9 @@ tasks/coverage/typescript/tests/cases/compiler/localTypeParameterInferencePriori semantic error: Bindings mismatch: after transform: ScopeId(0): ["ColumnSelectView1", "ColumnSelectView2", "ColumnSelectViewImp", "S", "Schema", "Table", "UnrollOnHover"] rebuilt : ScopeId(0): ["ColumnSelectView1", "ColumnSelectView2", "ColumnSelectViewImp", "Table"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Bindings mismatch: after transform: ScopeId(5): ["S"] rebuilt : ScopeId(1): [] @@ -13672,6 +15961,9 @@ tasks/coverage/typescript/tests/cases/compiler/m7Bugs.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C1", "C2", "ISomething", "s", "x", "y1", "y2", "y3"] rebuilt : ScopeId(0): ["C1", "C2", "s", "x", "y1", "y2", "y3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Symbol reference IDs mismatch: after transform: SymbolId(5): [ReferenceId(5), ReferenceId(6), ReferenceId(8), ReferenceId(10), ReferenceId(11), ReferenceId(12)] rebuilt : SymbolId(2): [ReferenceId(0)] @@ -13690,6 +15982,9 @@ tasks/coverage/typescript/tests/cases/compiler/mapGroupBy.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Employee", "basic", "byNonKey", "byRole", "chars", "employees"] rebuilt : ScopeId(0): ["basic", "byNonKey", "byRole", "chars", "employees"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Unresolved reference IDs mismatch for "Set": after transform: [ReferenceId(4), ReferenceId(6)] rebuilt : [ReferenceId(4)] @@ -13698,11 +15993,17 @@ tasks/coverage/typescript/tests/cases/compiler/mappedArrayTupleIntersections.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Box", "Boxify", "Hmm", "MustBeArray", "T1", "T2", "T3", "T4", "T5", "X"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(13)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/mappedToToIndexSignatureInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E", "K", "V", "a", "fn", "x"] rebuilt : ScopeId(0): ["E", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(3): ["A", "B", "E"] rebuilt : ScopeId(1): ["E"] @@ -13729,6 +16030,9 @@ tasks/coverage/typescript/tests/cases/compiler/mappedTypeAndIndexSignatureRelati semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Bar2", "Bar3", "Foo", "Identity", "Merge2", "Merge3", "Same", "T1", "T2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(13), ScopeId(15)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["PropertyKey", "Record"] rebuilt : [] @@ -13737,19 +16041,31 @@ tasks/coverage/typescript/tests/cases/compiler/mappedTypeCircularReferenceInAcce semantic error: Bindings mismatch: after transform: ScopeId(0): ["FilteredKeys", "SerializablePartial", "User"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(9)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/mappedTypeContextualTypesApplied.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["TakeString"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] tasks/coverage/typescript/tests/cases/compiler/mappedTypeInferenceAliasSubstitution.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Field", "f", "g", "r1", "r2", "v"] rebuilt : ScopeId(0): ["f", "g", "r1", "r2", "v"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(3): ["A", "B", "R", "x"] rebuilt : ScopeId(1): ["x"] +Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(1): [] Bindings mismatch: after transform: ScopeId(5): ["A", "B", "R", "x"] rebuilt : ScopeId(2): ["x"] @@ -13758,6 +16074,9 @@ tasks/coverage/typescript/tests/cases/compiler/mappedTypeInferenceCircularity.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Block", "HTML", "h"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(4): Some("h") rebuilt : ReferenceId(0): None @@ -13769,7 +16088,10 @@ after transform: [] rebuilt : ["h"] tasks/coverage/typescript/tests/cases/compiler/mappedTypeInferenceToMappedType.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [] +Unresolved references mismatch: after transform: ["Base"] rebuilt : [] @@ -13777,21 +16099,33 @@ tasks/coverage/typescript/tests/cases/compiler/mappedTypeMultiInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Style", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/mappedTypeNestedGenericInstantiation.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Chainable", "square", "v"] rebuilt : ScopeId(0): ["square", "v"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/mappedTypeOverArrayWithBareAnyRestCanBeUsedAsRestParam1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Replace", "ReplaceParams1"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/mappedTypeParameterConstraint.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyMap", "foo"] rebuilt : ScopeId(0): ["foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(3): ["U", "arg"] rebuilt : ScopeId(1): ["arg"] @@ -13800,6 +16134,9 @@ tasks/coverage/typescript/tests/cases/compiler/mappedTypePartialConstraints.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyClass", "MyInterface", "MySubClass", "fn"] rebuilt : ScopeId(0): ["MyClass", "MySubClass", "fn"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] Bindings mismatch: after transform: ScopeId(2): ["T"] rebuilt : ScopeId(1): [] @@ -13814,6 +16151,9 @@ tasks/coverage/typescript/tests/cases/compiler/mappedTypePartialNonHomomorphicBa semantic error: Bindings mismatch: after transform: ScopeId(0): ["Errors", "Model"] rebuilt : ScopeId(0): ["Model"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(3): ["D"] rebuilt : ScopeId(1): [] @@ -13822,14 +16162,23 @@ tasks/coverage/typescript/tests/cases/compiler/mappedTypeRecursiveInference2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["MorphTuple", "nestedTuple", "objectLiteral", "shallow", "validateDefinition", "validateMorph"] rebuilt : ScopeId(0): ["nestedTuple", "objectLiteral", "shallow"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/mappedTypeTupleConstraintAssignability.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AnyObject", "AnyTuple", "EnumValues", "Flags", "ISchema", "Maybe", "Values", "Writeable", "create"] rebuilt : ScopeId(0): ["create"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(16)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(16): ["T", "schemas"] rebuilt : ScopeId(1): ["schemas"] +Scope children mismatch: +after transform: ScopeId(16): [ScopeId(17)] +rebuilt : ScopeId(1): [] Unresolved references mismatch: after transform: ["Readonly", "TupleSchema", "ZodEnum"] rebuilt : ["TupleSchema"] @@ -13838,6 +16187,9 @@ tasks/coverage/typescript/tests/cases/compiler/mappedTypeWithNameClauseAppliedTo semantic error: Bindings mismatch: after transform: ScopeId(0): ["Mappy", "NotArray", "x"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(7): Some("x") rebuilt : ReferenceId(1): None @@ -13884,11 +16236,17 @@ tasks/coverage/typescript/tests/cases/compiler/mergedDeclarations5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B"] rebuilt : ScopeId(0): ["B"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/mergedDeclarations6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["./a", "A", "B"] rebuilt : ScopeId(0): ["A", "B"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/mergedEnumDeclarationCodeGen.ts semantic error: Bindings mismatch: @@ -13934,6 +16292,9 @@ tasks/coverage/typescript/tests/cases/compiler/mergedInterfaceFromMultipleFiles1 semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/mergedModuleDeclarationCodeGen.ts semantic error: Missing SymbolId: X @@ -14309,6 +16670,9 @@ tasks/coverage/typescript/tests/cases/compiler/metadataOfEventAlias.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Event"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/metadataOfStringLiteral.ts semantic error: Unresolved references mismatch: @@ -14414,17 +16778,26 @@ tasks/coverage/typescript/tests/cases/compiler/missingTypeArguments3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["linq"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/mixedExports.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "M", "M1"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(8)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/mixedTypeEnumComparison.ts semantic error: Missing ReferenceId: E2 Bindings mismatch: after transform: ScopeId(0): ["E", "E2", "someNumber", "someString", "unionOfEnum"] rebuilt : ScopeId(0): ["E", "E2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] Bindings mismatch: after transform: ScopeId(1): ["E", "N1", "N2", "S1", "S2"] rebuilt : ScopeId(1): ["E"] @@ -14487,6 +16860,9 @@ tasks/coverage/typescript/tests/cases/compiler/mixinIntersectionIsValidbaseType. semantic error: Bindings mismatch: after transform: ScopeId(0): ["AMixin", "Constructor", "Initable", "Serializable"] rebuilt : ScopeId(0): ["AMixin", "Serializable"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] Bindings mismatch: after transform: ScopeId(4): ["K", "LocalMixin", "ResultClass", "SuperClass"] rebuilt : ScopeId(1): ["LocalMixin", "ResultClass", "SuperClass"] @@ -14498,6 +16874,9 @@ tasks/coverage/typescript/tests/cases/compiler/mixinOverMappedTypeNoCrash.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ClassInterface", "Constructor", "InstanceInterface", "cloneClass"] rebuilt : ScopeId(0): ["cloneClass"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(6): ["AnotherOriginalClass", "OriginalClass", "T"] rebuilt : ScopeId(1): ["AnotherOriginalClass", "OriginalClass"] @@ -14509,6 +16888,9 @@ tasks/coverage/typescript/tests/cases/compiler/mixingApparentTypeOverrides.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "Constructor", "Tagged"] rebuilt : ScopeId(0): ["A", "B", "C", "Tagged"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(7), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(6), ScopeId(8)] Bindings mismatch: after transform: ScopeId(2): ["Base", "T"] rebuilt : ScopeId(1): ["Base"] @@ -14525,6 +16907,9 @@ tasks/coverage/typescript/tests/cases/compiler/modFunctionCrash.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Q"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/modularizeLibrary_NoErrorDuplicateLibOptions1.ts semantic error: Bindings mismatch: @@ -14604,6 +16989,9 @@ rebuilt : ScopeId(1): ["Mode", "_modes2"] 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(4): ["Bug", "_editor", "i", "modes"] rebuilt : ScopeId(3): ["Bug", "_editor", "i"] @@ -14628,6 +17016,9 @@ rebuilt : ScopeId(14): ["A1C1", "_A"] Scope flags mismatch: after transform: ScopeId(15): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(14): ScopeFlags(Function) +Scope children mismatch: +after transform: ScopeId(15): [ScopeId(16), ScopeId(17)] +rebuilt : ScopeId(14): [ScopeId(15)] Bindings mismatch: after transform: ScopeId(18): ["A1Alias1", "_B", "c", "i"] rebuilt : ScopeId(16): ["_B", "c", "i"] @@ -14663,6 +17054,9 @@ tasks/coverage/typescript/tests/cases/compiler/moduleAndInterfaceSharingName.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["X", "z", "z2"] rebuilt : ScopeId(0): ["z", "z2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["X"] rebuilt : [] @@ -14671,6 +17065,9 @@ tasks/coverage/typescript/tests/cases/compiler/moduleAndInterfaceSharingName3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["X", "z", "z2"] rebuilt : ScopeId(0): ["z", "z2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["X"] rebuilt : [] @@ -14679,6 +17076,9 @@ tasks/coverage/typescript/tests/cases/compiler/moduleAndInterfaceSharingName4.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["D3"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["D3"] rebuilt : [] @@ -14687,36 +17087,57 @@ tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationDoesInterfaceMe semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationDoesNamespaceEnumMergeOfReexport.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Root"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationDoesNamespaceMergeOfReexport.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Root"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationDuringSyntheticDefaultCheck.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["_moment", "moment", "moment-timezone"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationExtendAmbientModule1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Observable", "observable"] rebuilt : ScopeId(0): ["Observable"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationExtendFileModule1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["./observable", "Observable"] rebuilt : ScopeId(0): ["Observable"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationExtendFileModule2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["./observable", "Observable"] rebuilt : ScopeId(0): ["Observable"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationImportsAndExports4.ts semantic error: Missing SymbolId: I @@ -14724,6 +17145,9 @@ Missing SymbolId: C Bindings mismatch: after transform: ScopeId(0): ["./f1", "A", "B", "C", "I", "N"] rebuilt : ScopeId(0): ["A", "C", "I"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationInAmbientModule2.ts semantic error: Bindings mismatch: @@ -14745,11 +17169,17 @@ semantic error: Missing initializer in destructuring declaration Bindings mismatch: after transform: ScopeId(0): ["./observable", "Observable"] rebuilt : ScopeId(0): ["Observable"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationOfAlias.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/moduleCodeGenTest3.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -14784,6 +17214,9 @@ tasks/coverage/typescript/tests/cases/compiler/moduleImportedForTypeArgumentPosi semantic error: Bindings mismatch: after transform: ScopeId(0): ["M2C"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/moduleLocalImportNotIncorrectlyRedirected.ts semantic error: Bindings mismatch: @@ -14847,6 +17280,9 @@ rebuilt : ScopeId(5): ["PositionedElement", "PositionedToken", "_TypeScri Scope flags mismatch: after transform: ScopeId(5): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(5): ScopeFlags(Function) +Scope children mismatch: +after transform: ScopeId(5): [ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(10)] +rebuilt : ScopeId(5): [ScopeId(6), ScopeId(8)] Binding symbols mismatch: after transform: ScopeId(12): [SymbolId(11), SymbolId(27)] rebuilt : ScopeId(10): [SymbolId(12), SymbolId(13)] @@ -14975,7 +17411,10 @@ after transform: ScopeId(0): ["data1", "data2"] rebuilt : ScopeId(0): ["data2"] tasks/coverage/typescript/tests/cases/compiler/moduleRedifinitionErrors.ts -semantic error: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(Class | NameSpaceModule) rebuilt : SymbolId(0): SymbolFlags(Class) Symbol redeclarations mismatch: @@ -15003,6 +17442,9 @@ rebuilt : ScopeId(1): ["C1", "_M"] 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)] Binding symbols mismatch: after transform: ScopeId(4): [SymbolId(3), SymbolId(5)] rebuilt : ScopeId(3): [SymbolId(3), SymbolId(4)] @@ -15052,6 +17494,9 @@ rebuilt : ScopeId(3): ["C2", "_M2"] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(3): ScopeFlags(Function) +Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(3): [ScopeId(4)] Symbol flags mismatch: after transform: SymbolId(1): SymbolFlags(Export | Class) rebuilt : SymbolId(2): SymbolFlags(Class) @@ -15475,6 +17920,9 @@ rebuilt : ScopeId(5): ["_M2", "bar"] Scope flags mismatch: after transform: ScopeId(5): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(5): ScopeFlags(Function) +Scope children mismatch: +after transform: ScopeId(5): [ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(5): [ScopeId(6)] Symbol flags mismatch: after transform: SymbolId(2): SymbolFlags(FunctionScopedVariable | Export) rebuilt : SymbolId(4): SymbolFlags(FunctionScopedVariable) @@ -15593,11 +18041,17 @@ tasks/coverage/typescript/tests/cases/compiler/module_augmentUninstantiatedModul semantic error: Bindings mismatch: after transform: ScopeId(0): ["bar", "foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/module_augmentUninstantiatedModule2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ng"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["ng"] rebuilt : [] @@ -15606,11 +18060,17 @@ tasks/coverage/typescript/tests/cases/compiler/multiCallOverloads.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ICallback", "f1", "f2", "load"] rebuilt : ScopeId(0): ["f1", "f2", "load"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] tasks/coverage/typescript/tests/cases/compiler/multiExtendsSplitInterfaces2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "I", "a", "b", "i", "i1", "i2"] rebuilt : ScopeId(0): ["a", "b", "i", "i1", "i2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/multiModuleClodule1.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -15622,6 +18082,9 @@ tasks/coverage/typescript/tests/cases/compiler/multiSignatureTypeInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AllParams", "AllReturns", "Expected", "InferTwoOverloads", "JustOneSignature", "JustTheOtherSignature", "Overloads", "Params1", "Params2", "Params3", "Returns1", "Returns2", "Returns3", "ok1", "ok2", "ok3", "ok4", "ok5", "ok6"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Function", "f1", "f2", "f3"] rebuilt : [] @@ -15630,6 +18093,9 @@ tasks/coverage/typescript/tests/cases/compiler/multipleInferenceContexts.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ComponentOptionsProperties", "ConstructorOptions", "Data", "Instance", "Moon", "r2"] rebuilt : ScopeId(0): ["r2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(12): Some("Moon") rebuilt : ReferenceId(0): None @@ -15641,11 +18107,17 @@ tasks/coverage/typescript/tests/cases/compiler/mutrec.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "I1", "I2", "I3", "I4", "I5", "b", "f", "g", "i2", "i3", "i4"] rebuilt : ScopeId(0): ["b", "f", "g", "i2", "i3", "i4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/mutuallyRecursiveGenericBaseTypes1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "b"] rebuilt : ScopeId(0): ["b"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/mutuallyRecursiveGenericBaseTypes2.ts semantic error: Bindings mismatch: @@ -15720,6 +18192,9 @@ tasks/coverage/typescript/tests/cases/compiler/namespaces1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["X", "x", "x2"] rebuilt : ScopeId(0): ["x", "x2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["X"] rebuilt : [] @@ -15769,6 +18244,9 @@ tasks/coverage/typescript/tests/cases/compiler/namespacesWithTypeAliasOnlyExport semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "Q", "Q2", "Q3", "Q4", "try1", "try2", "try3", "try4"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Q", "Q2", "Q3", "Q4"] rebuilt : [] @@ -15777,6 +18255,9 @@ tasks/coverage/typescript/tests/cases/compiler/narrowByBooleanComparison.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "ACTOR_TYPE", "Actor", "B", "C", "Entity", "MyUnion", "WebError", "isA", "isActor", "isFunction", "test1", "test2", "test3", "test4", "test5", "test6", "test7"] rebuilt : ScopeId(0): ["ACTOR_TYPE", "WebError", "isA", "isActor", "isFunction", "test1", "test2", "test3", "test4", "test5", "test6", "test7"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(20), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(31), ScopeId(34), ScopeId(35)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(16), ScopeId(21), ScopeId(22), ScopeId(25), ScopeId(28), ScopeId(29)] Symbol reference IDs mismatch: after transform: SymbolId(16): [ReferenceId(46), ReferenceId(50)] rebuilt : SymbolId(11): [ReferenceId(40)] @@ -15788,6 +18269,9 @@ tasks/coverage/typescript/tests/cases/compiler/narrowByClauseExpressionInSwitchT semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "AorB", "B", "SomeType", "isA", "isB", "processInput", "test1", "test2", "x"] rebuilt : ScopeId(0): ["isA", "isB", "processInput", "test1", "test2", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8)] Unresolved reference IDs mismatch for "RegExp": after transform: [ReferenceId(25), ReferenceId(30)] rebuilt : [ReferenceId(19)] @@ -15857,16 +18341,25 @@ tasks/coverage/typescript/tests/cases/compiler/narrowByClauseExpressionInSwitchT semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "All", "B", "C", "D", "E", "fn1ifelse", "fn1switch", "fn2ifelse", "fn2switch", "fn3switch"] rebuilt : ScopeId(0): ["fn1ifelse", "fn1switch", "fn2ifelse", "fn2switch", "fn3switch"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(10), ScopeId(15), ScopeId(18), ScopeId(23)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(9), ScopeId(12), ScopeId(17)] tasks/coverage/typescript/tests/cases/compiler/narrowByClauseExpressionInSwitchTrue9.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "IProps"] rebuilt : ScopeId(0): ["Foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/narrowByInstanceof.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "AA", "B", "BB", "C", "Car", "Person", "PersonMixin", "bar", "cls", "foo", "test"] rebuilt : ScopeId(0): ["Car", "Person", "PersonMixin", "bar", "cls", "foo", "test"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(21), ScopeId(23)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(15), ScopeId(17)] Symbol reference IDs mismatch: after transform: SymbolId(16): [ReferenceId(28), ReferenceId(33), ReferenceId(39)] rebuilt : SymbolId(11): [ReferenceId(19)] @@ -15878,11 +18371,17 @@ tasks/coverage/typescript/tests/cases/compiler/narrowByParenthesizedSwitchExpres semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Base", "Foo", "getV", "v"] rebuilt : ScopeId(0): ["getV", "v"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/narrowBySwitchDiscriminantUndefinedCase1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "assertUnreachable", "func", "func2"] rebuilt : ScopeId(0): ["assertUnreachable", "func", "func2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] Unresolved references mismatch: after transform: ["Error", "Math", "const", "undefined"] rebuilt : ["Error", "Math", "undefined"] @@ -15891,6 +18390,9 @@ tasks/coverage/typescript/tests/cases/compiler/narrowTypeByInstanceof.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["FileMatch", "FileMatchOrMatch", "Match", "elementA", "elementB"] rebuilt : ScopeId(0): ["FileMatch", "Match", "elementA", "elementB"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(3), ReferenceId(13), ReferenceId(15)] rebuilt : SymbolId(0): [ReferenceId(9), ReferenceId(11)] @@ -15910,6 +18412,9 @@ tasks/coverage/typescript/tests/cases/compiler/narrowingAssignmentReadonlyRespec semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiCaseFixture", "TestCase", "dataFunc", "subDataFunc", "testFunc"] rebuilt : ScopeId(0): ["dataFunc", "subDataFunc", "testFunc"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(4): ["T", "subFunc"] rebuilt : ScopeId(2): ["subFunc"] @@ -15921,6 +18426,9 @@ tasks/coverage/typescript/tests/cases/compiler/narrowingByDiscriminantInLoop.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "ConstantMemberType", "IDLMemberTypes", "IDLTypeDescription", "InterfaceType", "OperationMemberType", "f1", "f2", "foo", "insertInterface", "insertInterface2"] rebuilt : ScopeId(0): ["f1", "f2", "foo", "insertInterface", "insertInterface2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(11), ScopeId(15), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(24)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(6), ScopeId(10), ScopeId(13), ScopeId(17)] Unresolved references mismatch: after transform: ["true"] rebuilt : [] @@ -15929,6 +18437,9 @@ tasks/coverage/typescript/tests/cases/compiler/narrowingByTypeofInSwitch.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Basic", "L", "R", "a1", "assertAll", "assertBoolean", "assertBooleanOrObject", "assertFunction", "assertNever", "assertNumber", "assertObject", "assertObjectOrNull", "assertString", "assertStringOrNumber", "assertSymbol", "assertUndefined", "exhaustiveChecks", "exhaustiveChecksGenerics", "fallThroughTest", "fallThroughTestWithTempalte", "keyofNarrowing", "keyofNarrowingWithTemplate", "multipleGeneric", "multipleGenericExhaustive", "multipleGenericFuse", "multipleGenericFuseWithBoth", "narrowingNarrows", "narrowingNarrows2", "switchOrdering", "switchOrderingWithDefault", "testAny", "testExtendsExplicitDefault", "testExtendsImplicitDefault", "testExtendsUnion", "testUnion", "testUnionExplicitDefault", "testUnionImplicitDefault", "testUnionWithTempalte", "unknownNarrowing"] rebuilt : ScopeId(0): ["a1", "assertAll", "assertBoolean", "assertBooleanOrObject", "assertFunction", "assertNever", "assertNumber", "assertObject", "assertObjectOrNull", "assertString", "assertStringOrNumber", "assertSymbol", "assertUndefined", "exhaustiveChecks", "exhaustiveChecksGenerics", "fallThroughTest", "fallThroughTestWithTempalte", "keyofNarrowing", "keyofNarrowingWithTemplate", "multipleGeneric", "multipleGenericExhaustive", "multipleGenericFuse", "multipleGenericFuseWithBoth", "narrowingNarrows", "narrowingNarrows2", "switchOrdering", "switchOrderingWithDefault", "testAny", "testExtendsExplicitDefault", "testExtendsImplicitDefault", "testExtendsUnion", "testUnion", "testUnionExplicitDefault", "testUnionImplicitDefault", "testUnionWithTempalte", "unknownNarrowing"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(21), ScopeId(23), ScopeId(25), ScopeId(27), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(33), ScopeId(35), ScopeId(37), ScopeId(39), ScopeId(41), ScopeId(43), ScopeId(46), ScopeId(48), ScopeId(50), ScopeId(54), ScopeId(56), ScopeId(58), ScopeId(60), ScopeId(62), ScopeId(66)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(28), ScopeId(30), ScopeId(32), ScopeId(34), ScopeId(36), ScopeId(38), ScopeId(40), ScopeId(43), ScopeId(45), ScopeId(47), ScopeId(50), ScopeId(52), ScopeId(54), ScopeId(56), ScopeId(58), ScopeId(61)] Bindings mismatch: after transform: ScopeId(16): ["T", "x"] rebuilt : ScopeId(15): ["x"] @@ -15953,9 +18464,15 @@ rebuilt : ScopeId(36): ["xy"] Bindings mismatch: after transform: ScopeId(50): ["S", "assertKeyofS", "k"] rebuilt : ScopeId(47): ["assertKeyofS", "k"] +Scope children mismatch: +after transform: ScopeId(50): [ScopeId(51), ScopeId(52), ScopeId(53)] +rebuilt : ScopeId(47): [ScopeId(48), ScopeId(49)] Bindings mismatch: after transform: ScopeId(62): ["S", "assertKeyofS", "k"] rebuilt : ScopeId(58): ["assertKeyofS", "k"] +Scope children mismatch: +after transform: ScopeId(62): [ScopeId(63), ScopeId(64), ScopeId(65)] +rebuilt : ScopeId(58): [ScopeId(59), ScopeId(60)] Bindings mismatch: after transform: ScopeId(66): ["X", "Y", "xy"] rebuilt : ScopeId(61): ["xy"] @@ -15967,6 +18484,9 @@ tasks/coverage/typescript/tests/cases/compiler/narrowingConstrainedTypeParameter semantic error: Bindings mismatch: after transform: ScopeId(0): ["Pet", "isPet", "speak"] rebuilt : ScopeId(0): ["isPet", "speak"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(3): ["TPet", "pet", "voice"] rebuilt : ScopeId(2): ["pet", "voice"] @@ -15975,6 +18495,9 @@ tasks/coverage/typescript/tests/cases/compiler/narrowingDestructuring.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["X", "Z", "farr", "func", "func2", "func3"] rebuilt : ScopeId(0): ["farr", "func", "func2", "func3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(6), ScopeId(9), ScopeId(12)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(10)] Bindings mismatch: after transform: ScopeId(2): ["T", "value"] rebuilt : ScopeId(1): ["value"] @@ -15992,11 +18515,17 @@ tasks/coverage/typescript/tests/cases/compiler/narrowingIntersection.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Disjoint", "FooAndBaz", "TrivialIntersection", "test1", "test2", "want0"] rebuilt : ScopeId(0): ["test1", "test2", "want0"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/compiler/narrowingNoInfer1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["TaggedA", "TaggedB", "TaggedUnion", "m", "map", "something"] rebuilt : ScopeId(0): ["m", "map", "something"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(4): ["A", "B", "f", "items"] rebuilt : ScopeId(1): ["f", "items"] @@ -16013,6 +18542,9 @@ tasks/coverage/typescript/tests/cases/compiler/narrowingRestGenericCall.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Slugs", "call", "obj"] rebuilt : ScopeId(0): ["call"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(2): ["T", "cb", "obj"] rebuilt : ScopeId(1): ["cb", "obj"] @@ -16027,11 +18559,17 @@ tasks/coverage/typescript/tests/cases/compiler/narrowingTypeofDiscriminant.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["WrappedStringOr", "booleanBad", "booleanFixed", "f1", "f2", "numberOk"] rebuilt : ScopeId(0): ["booleanBad", "booleanFixed", "f1", "f2", "numberOk"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(8), ScopeId(10), ScopeId(12)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(9), ScopeId(11)] tasks/coverage/typescript/tests/cases/compiler/narrowingTypeofFunction.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["F", "Meta", "f1", "f2", "f3"] rebuilt : ScopeId(0): ["f1", "f2", "f3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7)] Bindings mismatch: after transform: ScopeId(6): ["T", "x"] rebuilt : ScopeId(4): ["x"] @@ -16040,6 +18578,9 @@ tasks/coverage/typescript/tests/cases/compiler/narrowingTypeofObject.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["F", "f1", "test"] rebuilt : ScopeId(0): ["f1", "test"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/narrowingTypeofUndefined1.ts semantic error: Bindings mismatch: @@ -16068,7 +18609,10 @@ after transform: [] rebuilt : ["a"] tasks/coverage/typescript/tests/cases/compiler/narrowingTypeofUndefined2.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Bindings mismatch: after transform: ScopeId(2): ["T", "arg"] rebuilt : ScopeId(1): ["arg"] Unresolved references mismatch: @@ -16079,11 +18623,17 @@ tasks/coverage/typescript/tests/cases/compiler/narrowingUnionWithBang.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["BorkedType", "FixedType", "WorkingType", "borked", "fixed", "working"] rebuilt : ScopeId(0): ["borked", "fixed", "working"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] tasks/coverage/typescript/tests/cases/compiler/nearbyIdenticalGenericLambdasAssignable.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T", "TA", "TB", "TC", "TL", "fA", "fB", "fC"] rebuilt : ScopeId(0): ["fB", "fC"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] @@ -16116,9 +18666,15 @@ tasks/coverage/typescript/tests/cases/compiler/nestedGenericConditionalTypeWithG semantic error: Bindings mismatch: after transform: ScopeId(0): ["Name"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/nestedGenericSpreadInference.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] +Bindings mismatch: after transform: ScopeId(3): ["T", "x"] rebuilt : ScopeId(1): ["x"] @@ -16126,11 +18682,17 @@ tasks/coverage/typescript/tests/cases/compiler/nestedGenerics.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "f"] rebuilt : ScopeId(0): ["f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/nestedHomomorphicMappedTypesWithArrayConstraint1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["MatchArguments", "SinonSpyCallApi"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Partial"] rebuilt : [] @@ -16139,6 +18701,9 @@ tasks/coverage/typescript/tests/cases/compiler/nestedInfinitelyExpandedRecursive semantic error: Bindings mismatch: after transform: ScopeId(0): ["F", "G", "f", "g"] rebuilt : ScopeId(0): ["f", "g"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/nestedLoopWithOnlyInnerLetCaptured.ts semantic error: Bindings mismatch: @@ -16213,9 +18778,15 @@ tasks/coverage/typescript/tests/cases/compiler/nestedThisContainer.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "foo"] rebuilt : ScopeId(0): ["foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/nestedTypeVariableInfersLiteral.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] +Unresolved references mismatch: after transform: ["Record", "direct", "hasZField", "nested", "nestedUnion"] rebuilt : ["direct", "hasZField", "nested", "nestedUnion"] @@ -16223,6 +18794,9 @@ tasks/coverage/typescript/tests/cases/compiler/neverAsDiscriminantType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo1", "Foo2", "GatewayEvents", "GatewayOpcode", "GatewayParams", "GatewayPayload", "GatewayPayloadStructure", "adaptSession", "assertMessage", "f1", "f2"] rebuilt : ScopeId(0): ["GatewayOpcode", "adaptSession", "assertMessage", "f1", "f2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7)] Bindings mismatch: after transform: ScopeId(14): ["DISPATCH", "GatewayOpcode", "HEARTBEAT", "HEARTBEAT_ACK", "HELLO", "IDENTIFY", "INVALID_SESSION", "PRESENCE_UPDATE", "RECONNECT", "REQUEST_GUILD_MEMBERS", "RESUME", "VOICE_STATE_UPDATE"] rebuilt : ScopeId(5): ["GatewayOpcode"] @@ -16258,11 +18832,17 @@ tasks/coverage/typescript/tests/cases/compiler/newExpressionWithTypeParameterCon semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "i", "y"] rebuilt : ScopeId(0): ["i", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/newLineInTypeofInstantiation.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Example"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["a"] rebuilt : [] @@ -16274,6 +18854,9 @@ tasks/coverage/typescript/tests/cases/compiler/noAsConstNameLookup.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "Cleaner", "FeatureRunner", "Store"] rebuilt : ScopeId(0): ["C", "FeatureRunner"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(5)] Bindings mismatch: after transform: ScopeId(3): ["W"] rebuilt : ScopeId(1): [] @@ -16293,7 +18876,10 @@ after transform: ScopeId(0): ["C"] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/noCircularDefinitionOnExportOfPrivateInMergedNamespace.ts -semantic error: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Symbol flags mismatch: after transform: SymbolId(1): SymbolFlags(Class | NameSpaceModule | Ambient) rebuilt : SymbolId(1): SymbolFlags(Class) Symbol reference IDs mismatch: @@ -16306,10 +18892,28 @@ Unresolved references mismatch: after transform: ["cat"] rebuilt : [] +tasks/coverage/typescript/tests/cases/compiler/noCollisionThisExpressionAndLocalVarInFunction.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/noCollisionThisExpressionAndLocalVarInLambda.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] + +tasks/coverage/typescript/tests/cases/compiler/noCollisionThisExpressionInFunctionAndVarInGlobal.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/noCrashOnThisTypeUsage.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IListenable", "ObservableValue", "notifyListeners"] rebuilt : ScopeId(0): ["ObservableValue", "notifyListeners"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(3): ["T", "change", "listenable"] rebuilt : ScopeId(1): ["change", "listenable"] @@ -16324,6 +18928,9 @@ tasks/coverage/typescript/tests/cases/compiler/noCrashUMDMergedWithGlobalValue.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["SomeInterface", "value"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/noEmitHelpers2.ts semantic error: Bindings mismatch: @@ -16347,15 +18954,26 @@ Bindings mismatch: after transform: ScopeId(2): ["T", "f", "x"] rebuilt : ScopeId(2): ["f", "x"] +tasks/coverage/typescript/tests/cases/compiler/noImplicitReturnsWithProtectedBlocks1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/noIterationTypeErrorsInCFA.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["F", "doRemove"] rebuilt : ScopeId(0): ["doRemove"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/noSubtypeReduction.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["F", "IA", "IAB"] rebuilt : ScopeId(0): ["F"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/noUncheckedIndexAccess.ts semantic error: Bindings mismatch: @@ -16393,6 +19011,9 @@ tasks/coverage/typescript/tests/cases/compiler/noUsedBeforeDefinedErrorInTypeCon semantic error: Bindings mismatch: after transform: ScopeId(0): ["IThing", "bar", "baz", "foo", "qwe"] rebuilt : ScopeId(0): ["bar", "baz", "foo", "qwe"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Symbol reference IDs mismatch: after transform: SymbolId(2): [ReferenceId(2)] rebuilt : SymbolId(0): [] @@ -16439,11 +19060,17 @@ tasks/coverage/typescript/tests/cases/compiler/nonConflictingRecursiveBaseTypeMe semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/nonContextuallyTypedLogicalOr.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Contextual", "Ellement", "c", "e"] rebuilt : ScopeId(0): ["c", "e"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/nonGenericClassExtendingGenericClassWithAny.ts semantic error: Bindings mismatch: @@ -16454,6 +19081,9 @@ tasks/coverage/typescript/tests/cases/compiler/nonInferrableTypePropagation1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Box", "Op", "Thing", "result1", "result2", "thing"] rebuilt : ScopeId(0): ["result1", "result2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] Reference symbol mismatch: after transform: ReferenceId(34): Some("thing") rebuilt : ReferenceId(1): None @@ -16468,6 +19098,9 @@ tasks/coverage/typescript/tests/cases/compiler/nonInferrableTypePropagation2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "Either", "Left", "Predicate", "Refinement", "Right", "es", "filter", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(42): Some("es") rebuilt : ReferenceId(1): None @@ -16482,14 +19115,23 @@ tasks/coverage/typescript/tests/cases/compiler/nonInferrableTypePropagation3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Callback", "make", "usersOverAge"] rebuilt : ScopeId(0): ["make", "usersOverAge"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/nonNullMappedType.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["A", "p0", "p1", "v"] rebuilt : ScopeId(1): ["p0", "p1", "v"] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/compiler/nonNullParameterExtendingStringAssignableToString.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Bindings mismatch: after transform: ScopeId(2): ["T", "U", "one", "three", "two"] rebuilt : ScopeId(1): ["one", "three", "two"] @@ -16497,6 +19139,9 @@ tasks/coverage/typescript/tests/cases/compiler/nonNullReferenceMatching.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Component", "ComponentProps", "ElementRef", "ThumbProps"] rebuilt : ScopeId(0): ["Component"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["HTMLElement"] rebuilt : [] @@ -16505,6 +19150,9 @@ tasks/coverage/typescript/tests/cases/compiler/nonNullableAndObjectIntersections semantic error: Bindings mismatch: after transform: ScopeId(0): ["NonNullableNew", "NonNullableOld", "T0", "T1", "T2", "T3", "T4", "T6", "TestNew", "TestOld"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["NonNullable"] rebuilt : [] @@ -16513,12 +19161,18 @@ tasks/coverage/typescript/tests/cases/compiler/nonNullableReduction.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Transform1", "Transform2", "f1", "f2", "test"] rebuilt : ScopeId(0): ["f1", "f2", "test"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(5): ["T", "f1", "f2"] rebuilt : ScopeId(1): ["f1", "f2"] Bindings mismatch: after transform: ScopeId(6): ["T", "x", "z"] rebuilt : ScopeId(2): ["x", "z"] +Scope children mismatch: +after transform: ScopeId(6): [ScopeId(7)] +rebuilt : ScopeId(2): [] Bindings mismatch: after transform: ScopeId(8): ["T", "U", "x", "z"] rebuilt : ScopeId(3): ["x", "z"] @@ -16527,12 +19181,18 @@ tasks/coverage/typescript/tests/cases/compiler/nonNullableReductionNonStrict.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Transform1", "Transform2", "f1", "f2", "test"] rebuilt : ScopeId(0): ["f1", "f2", "test"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(5): ["T", "f1", "f2"] rebuilt : ScopeId(1): ["f1", "f2"] Bindings mismatch: after transform: ScopeId(6): ["T", "x", "z"] rebuilt : ScopeId(2): ["x", "z"] +Scope children mismatch: +after transform: ScopeId(6): [ScopeId(7)] +rebuilt : ScopeId(2): [] Bindings mismatch: after transform: ScopeId(8): ["T", "U", "x", "z"] rebuilt : ScopeId(3): ["x", "z"] @@ -16541,6 +19201,9 @@ tasks/coverage/typescript/tests/cases/compiler/nonNullableWithNullableGenericInd semantic error: Bindings mismatch: after transform: ScopeId(0): ["Ordering", "Query", "QueryHandler", "StateNodesConfig", "StateSchema"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["NonNullable", "StateNode"] rebuilt : [] @@ -16549,11 +19212,17 @@ tasks/coverage/typescript/tests/cases/compiler/nondistributiveConditionalTypeInf semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "E", "R", "Sync", "_A", "_E", "_R"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/nongenericConditionalNotPartiallyComputed.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Array"] rebuilt : [] @@ -16562,6 +19231,9 @@ tasks/coverage/typescript/tests/cases/compiler/nongenericPartialInstantiationsRe semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "ObjectContaining", "cafoo", "cfoo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(7): Some("cfoo") rebuilt : ReferenceId(0): None @@ -16587,6 +19259,9 @@ tasks/coverage/typescript/tests/cases/compiler/nounusedTypeParameterConstraint.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["IEventSourcedEntity"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/numberAssignableToEnumInsideUnion.ts semantic error: Bindings mismatch: @@ -16619,10 +19294,18 @@ tasks/coverage/typescript/tests/cases/compiler/objectAssignLikeNonUnionResult.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Explode", "ExtractRawComponent", "Interface", "data1", "defaultValue", "e1", "t1"] rebuilt : ScopeId(0): ["data1", "defaultValue"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(8)] +rebuilt : ScopeId(0): [] Symbol reference IDs mismatch: after transform: SymbolId(6): [ReferenceId(13), ReferenceId(17)] rebuilt : SymbolId(1): [] +tasks/coverage/typescript/tests/cases/compiler/objectBindingPatternContextuallyTypesArgument.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + tasks/coverage/typescript/tests/cases/compiler/objectCreate.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "e", "n", "o", "t", "u", "union"] @@ -16655,11 +19338,17 @@ tasks/coverage/typescript/tests/cases/compiler/objectIndexer.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Callback", "Emitter", "IMap"] rebuilt : ScopeId(0): ["Emitter"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/objectInstantiationFromUnionSpread.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Fail", "Item", "Success", "f1", "f2"] rebuilt : ScopeId(0): ["f1", "f2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] Bindings mismatch: after transform: ScopeId(7): ["T", "a"] rebuilt : ScopeId(4): ["a"] @@ -16676,11 +19365,17 @@ tasks/coverage/typescript/tests/cases/compiler/objectLiteralArraySpecialization. semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyArrayWrapper", "thing"] rebuilt : ScopeId(0): ["thing"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/objectLiteralEnumPropertyNames.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Nums", "Strs", "TestNums", "TestStrs", "a", "an", "b", "bn", "m", "n", "um", "un", "ux", "uz", "x", "y", "z"] rebuilt : ScopeId(0): ["Nums", "Strs", "a", "an", "b", "bn", "m", "n", "um", "un", "ux", "uz", "x", "y", "z"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["A", "B", "Strs"] rebuilt : ScopeId(1): ["Strs"] @@ -16707,16 +19402,25 @@ tasks/coverage/typescript/tests/cases/compiler/objectLiteralIndexerNoImplicitAny semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/objectLiteralIndexers.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "a", "b", "c", "o1"] rebuilt : ScopeId(0): ["a", "b", "c", "o1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/objectMembersOnTypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AAA", "I", "c", "i", "x"] rebuilt : ScopeId(0): ["AAA", "c", "i", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(1): [ReferenceId(4)] rebuilt : SymbolId(0): [] @@ -16725,6 +19429,9 @@ tasks/coverage/typescript/tests/cases/compiler/objectRestBindingContextualInfere semantic error: Bindings mismatch: after transform: ScopeId(0): ["ImageHolder", "SetupImageRefs", "SetupImages", "TestInterface", "prepare", "rest", "test"] rebuilt : ScopeId(0): ["prepare", "rest"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(14): Some("test") rebuilt : ReferenceId(1): None @@ -16736,6 +19443,9 @@ tasks/coverage/typescript/tests/cases/compiler/observableInferenceCanBeMade.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ObservableInput", "ObservedValueOf", "Subscribable", "asObservable"] rebuilt : ScopeId(0): ["asObservable"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["Observable", "from", "of"] rebuilt : ["from", "of"] @@ -16744,11 +19454,17 @@ tasks/coverage/typescript/tests/cases/compiler/optionalAccessorsInInterface1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyPropertyDescriptor", "MyPropertyDescriptor2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/optionalChainWithInstantiationExpression2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "a", "b"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(2): Some("a") rebuilt : ReferenceId(0): None @@ -16768,6 +19484,9 @@ tasks/coverage/typescript/tests/cases/compiler/optionalParameterRetainsNull.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "a"] rebuilt : ScopeId(0): ["a"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(2): ["K", "a", "b"] rebuilt : ScopeId(1): ["a", "b"] @@ -16776,12 +19495,18 @@ tasks/coverage/typescript/tests/cases/compiler/optionalTupleElementsAndUndefined semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "Test", "UnNullify", "v"] rebuilt : ScopeId(0): ["v"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["NonNullable", "true"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/overload2.ts -semantic error: Scope flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(0x0) rebuilt : ScopeId(1): ScopeFlags(Function) Scope flags mismatch: @@ -16807,21 +19532,38 @@ tasks/coverage/typescript/tests/cases/compiler/overloadBindingAcrossDeclarationB semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "Opt1", "Opt2", "Opt3", "Opt4", "a", "a1"] rebuilt : ScopeId(0): ["a", "a1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(10)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/overloadBindingAcrossDeclarationBoundaries2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "Opt1", "Opt2", "Opt3", "Opt4"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/overloadCallTest.ts +semantic error: Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(2): [ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/overloadCrash.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1", "I2", "I3", "i3"] rebuilt : ScopeId(0): ["i3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/overloadEquivalenceWithStatics.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] Bindings mismatch: after transform: ScopeId(4): ["S", "v"] rebuilt : ScopeId(2): ["v"] @@ -16830,7 +19572,10 @@ after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2), ReferenceId(5), R rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/overloadGenericFunctionWithRestArgs.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +Bindings mismatch: after transform: ScopeId(1): ["V"] rebuilt : ScopeId(1): [] Bindings mismatch: @@ -16850,6 +19595,12 @@ tasks/coverage/typescript/tests/cases/compiler/overloadOnConstConstraintChecks1. semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "D", "Derived1", "Derived2", "Derived3", "MyDoc"] rebuilt : ScopeId(0): ["Base", "D", "Derived1", "Derived2", "Derived3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(14)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9)] +Scope children mismatch: +after transform: ScopeId(14): [ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19)] +rebuilt : ScopeId(9): [ScopeId(10)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2), ReferenceId(3), ReferenceId(8), ReferenceId(12)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2)] @@ -16864,7 +19615,10 @@ after transform: SymbolId(3): [ReferenceId(6), ReferenceId(11)] rebuilt : SymbolId(3): [] tasks/coverage/typescript/tests/cases/compiler/overloadOnConstConstraintChecks2.ts -semantic error: Symbol reference IDs mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5)] +Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(4), ReferenceId(5)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(1)] Symbol reference IDs mismatch: @@ -16875,7 +19629,10 @@ after transform: SymbolId(2): [ReferenceId(3)] rebuilt : SymbolId(2): [] tasks/coverage/typescript/tests/cases/compiler/overloadOnConstConstraintChecks3.ts -semantic error: Symbol reference IDs mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5)] +Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(4), ReferenceId(5)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(1)] Symbol reference IDs mismatch: @@ -16886,7 +19643,10 @@ after transform: SymbolId(2): [ReferenceId(3)] rebuilt : SymbolId(2): [] tasks/coverage/typescript/tests/cases/compiler/overloadOnConstConstraintChecks4.ts -semantic error: Symbol reference IDs 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), ScopeId(3), ScopeId(4), ScopeId(6)] +Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(6)] rebuilt : SymbolId(0): [ReferenceId(0)] Symbol reference IDs mismatch: @@ -16899,41 +19659,85 @@ Symbol reference IDs mismatch: after transform: SymbolId(3): [ReferenceId(4)] rebuilt : SymbolId(3): [] +tasks/coverage/typescript/tests/cases/compiler/overloadOnConstDuplicateOverloads1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + tasks/coverage/typescript/tests/cases/compiler/overloadOnConstInBaseWithBadImplementationInDerived.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I"] rebuilt : ScopeId(0): ["C"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/overloadOnConstInCallback1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/overloadOnConstInObjectLiteralImplementingAnInterface.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "i2"] rebuilt : ScopeId(0): ["i2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/overloadOnConstInheritance1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "Deriver"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/overloadOnConstInheritance3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "Deriver"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/overloadOnConstInheritance4.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I"] rebuilt : ScopeId(0): ["C"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] +Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/typescript/tests/cases/compiler/overloadOnConstNoNonSpecializedSignature.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/typescript/tests/cases/compiler/overloadOnConstNoStringImplementation.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/compiler/overloadOnGenericArity.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Test"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Date"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/overloadOnGenericClassAndNonGenericClass.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +Bindings mismatch: after transform: ScopeId(4): ["T"] rebuilt : ScopeId(4): [] Symbol reference IDs mismatch: @@ -16978,6 +19782,9 @@ rebuilt : ScopeId(1): ["_Bugs", "bug3"] 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)] tasks/coverage/typescript/tests/cases/compiler/overloadResolutionWithAny.ts semantic error: Unresolved references mismatch: @@ -16988,22 +19795,39 @@ tasks/coverage/typescript/tests/cases/compiler/overloadRet.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/overloadReturnTypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Accessor", "IFace", "attr"] rebuilt : ScopeId(0): ["Accessor", "attr"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(4), ReferenceId(5), ReferenceId(6)] rebuilt : SymbolId(0): [ReferenceId(2)] +tasks/coverage/typescript/tests/cases/compiler/overloadWithCallbacksWithDifferingOptionalityOnArgs.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] + tasks/coverage/typescript/tests/cases/compiler/overloadedConstructorFixesInferencesAppropriately.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AsyncLoader", "AsyncLoaderProps", "Box", "ErrorResult", "load"] rebuilt : ScopeId(0): ["AsyncLoader", "load"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] Bindings mismatch: after transform: ScopeId(4): ["TResult"] rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(1): [ScopeId(2)] Unresolved references mismatch: after transform: ["Exclude", "true"] rebuilt : [] @@ -17012,6 +19836,9 @@ tasks/coverage/typescript/tests/cases/compiler/overloadedStaticMethodSpecializat semantic error: Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] Bindings mismatch: after transform: ScopeId(4): ["S", "v"] rebuilt : ScopeId(2): ["v"] @@ -17019,8 +19846,21 @@ Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2), ReferenceId(5), ReferenceId(7)] rebuilt : SymbolId(0): [] +tasks/coverage/typescript/tests/cases/compiler/overloadingOnConstantsInImplementation.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/compiler/overloadsAndTypeArgumentArity.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/overloadsWithConstraints.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] +Unresolved references mismatch: after transform: ["Number", "String", "f"] rebuilt : ["f"] @@ -17028,6 +19868,9 @@ tasks/coverage/typescript/tests/cases/compiler/overrideBaseIntersectionMethod.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Constructor", "Foo", "Point", "WithLocation"] rebuilt : ScopeId(0): ["Foo", "Point", "WithLocation"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7)] Bindings mismatch: after transform: ScopeId(2): ["Base", "T"] rebuilt : ScopeId(1): ["Base"] @@ -17039,6 +19882,9 @@ tasks/coverage/typescript/tests/cases/compiler/parameterReferenceInInitializer1. semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "Y", "fn"] rebuilt : ScopeId(0): ["C", "fn"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["a", "set", "y"] rebuilt : ScopeId(1): ["set", "y"] @@ -17076,6 +19922,9 @@ tasks/coverage/typescript/tests/cases/compiler/parseGenericArrowRatherThanLeftSh semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "T", "a", "b", "foo"] rebuilt : ScopeId(0): ["b", "foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(2): ["T", "_x"] rebuilt : ScopeId(1): ["_x"] @@ -17098,11 +19947,17 @@ tasks/coverage/typescript/tests/cases/compiler/parseShortform.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/partialOfLargeAPIIsAbleToBeWorkedWith.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyAPI", "PartialNull", "keys", "obj", "obj2"] rebuilt : ScopeId(0): ["obj", "obj2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] Reference symbol mismatch: after transform: ReferenceId(3): Some("keys") rebuilt : ReferenceId(0): None @@ -17117,12 +19972,18 @@ tasks/coverage/typescript/tests/cases/compiler/partialTypeNarrowedToByTypeGuard. semantic error: Bindings mismatch: after transform: ScopeId(0): ["Obj", "PartialUser", "User", "getUserName", "isUser"] rebuilt : ScopeId(0): ["getUserName", "isUser"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Unresolved references mismatch: after transform: ["Partial"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/partiallyAmbientClodule.ts -semantic error: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(Class | NameSpaceModule | Ambient) rebuilt : SymbolId(0): SymbolFlags(Class) Symbol span mismatch: @@ -17133,7 +19994,10 @@ after transform: SymbolId(0): [Span { start: 59, end: 62 }] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/partiallyAmbientFundule.ts -semantic error: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(FunctionScopedVariable | NameSpaceModule | Ambient) rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) Symbol span mismatch: @@ -17147,6 +20011,9 @@ tasks/coverage/typescript/tests/cases/compiler/partiallyDiscriminantedUnions.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A1", "A2", "AB", "B", "Circle", "Shape", "Shapes", "Square", "ab", "fail", "isShape"] rebuilt : ScopeId(0): ["Circle", "Square", "ab", "fail", "isShape"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] Symbol reference IDs mismatch: after transform: SymbolId(5): [ReferenceId(9)] rebuilt : SymbolId(1): [] @@ -17157,6 +20024,56 @@ Unresolved reference IDs mismatch for "Array": after transform: [ReferenceId(11), ReferenceId(15)] rebuilt : [ReferenceId(3)] +tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution3_classic.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution3_node.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution4_classic.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution4_node.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution5_classic.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution5_node.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution6_classic.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution6_node.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution7_classic.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution7_node.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/pathMappingBasedModuleResolution8_classic.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["x"] @@ -17231,6 +20148,9 @@ tasks/coverage/typescript/tests/cases/compiler/performanceComparisonOfStructural semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "InterfaceA", "InterfaceB", "ThenArg"] rebuilt : ScopeId(0): ["A", "B"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(18), ScopeId(31), ScopeId(45)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(15)] Bindings mismatch: after transform: ScopeId(31): ["T"] rebuilt : ScopeId(1): [] @@ -17284,6 +20204,9 @@ 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: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Pick"] rebuilt : [] @@ -17303,6 +20226,9 @@ tasks/coverage/typescript/tests/cases/compiler/prespecializedGenericMembers1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Cat", "CatBag", "IKitty", "cat", "catBag", "catThing"] rebuilt : ScopeId(0): ["Cat", "CatBag", "cat", "catBag", "catThing"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Bindings mismatch: after transform: ScopeId(2): ["CatType"] rebuilt : ScopeId(1): [] @@ -17314,6 +20240,9 @@ tasks/coverage/typescript/tests/cases/compiler/primitiveTypeAsmoduleName.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["string"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/privacyClass.ts semantic error: Missing SymbolId: m1 @@ -17355,18 +20284,27 @@ 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"] +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"] 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(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"] Scope flags mismatch: after transform: ScopeId(19): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(17): ScopeFlags(Function) +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)] Symbol flags mismatch: after transform: SymbolId(3): SymbolFlags(Export | Class) rebuilt : SymbolId(2): SymbolFlags(Class) @@ -17486,6 +20424,15 @@ 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(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(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)] +Scope children mismatch: +after transform: 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)] +rebuilt : 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)] +Scope children mismatch: +after transform: ScopeId(58): [ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66)] +rebuilt : ScopeId(54): [ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61)] Symbol flags mismatch: after transform: SymbolId(1): SymbolFlags(Export | Class) rebuilt : SymbolId(2): SymbolFlags(Class) @@ -17644,12 +20591,18 @@ 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"] +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"] 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(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)] Symbol flags mismatch: after transform: SymbolId(3): SymbolFlags(Export | Class) rebuilt : SymbolId(2): SymbolFlags(Class) @@ -17751,12 +20704,30 @@ 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(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(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)] +Scope children mismatch: +after transform: 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)] +rebuilt : 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)] Binding symbols mismatch: after transform: ScopeId(57): [SymbolId(44), SymbolId(45), SymbolId(46), SymbolId(54), SymbolId(62), SymbolId(64), SymbolId(66), SymbolId(68), SymbolId(70), SymbolId(72), SymbolId(74), SymbolId(76), SymbolId(78), SymbolId(79), SymbolId(80), SymbolId(81), SymbolId(82), SymbolId(83), SymbolId(84), SymbolId(85), SymbolId(129)] rebuilt : ScopeId(53): [SymbolId(41), SymbolId(42), SymbolId(43), SymbolId(44), SymbolId(50), SymbolId(56), SymbolId(58), SymbolId(60), SymbolId(62), SymbolId(64), SymbolId(66), SymbolId(68), SymbolId(70), SymbolId(72), SymbolId(73), SymbolId(74), SymbolId(75), SymbolId(76), SymbolId(77), SymbolId(78), SymbolId(79)] Scope flags mismatch: after transform: ScopeId(57): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(53): ScopeFlags(Function) +Scope children mismatch: +after transform: 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)] +rebuilt : 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)] +Scope children mismatch: +after transform: 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)] +rebuilt : 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)] +Scope children mismatch: +after transform: ScopeId(116): [ScopeId(117), ScopeId(118), ScopeId(119), ScopeId(120), ScopeId(121), ScopeId(122), ScopeId(123), ScopeId(124), ScopeId(125), ScopeId(126), ScopeId(127), ScopeId(128), ScopeId(129), ScopeId(130), ScopeId(131)] +rebuilt : ScopeId(108): [ScopeId(109), ScopeId(110), ScopeId(111), ScopeId(112), ScopeId(113), ScopeId(114), ScopeId(115), ScopeId(116), ScopeId(117), ScopeId(118), ScopeId(119), ScopeId(120), ScopeId(121)] +Scope children mismatch: +after transform: ScopeId(132): [ScopeId(133), ScopeId(134), ScopeId(135), ScopeId(136), ScopeId(137), ScopeId(138), ScopeId(139), ScopeId(140), ScopeId(141), ScopeId(142), ScopeId(143), ScopeId(144), ScopeId(145), ScopeId(146), ScopeId(147)] +rebuilt : ScopeId(122): [ScopeId(123), ScopeId(124), ScopeId(125), ScopeId(126), ScopeId(127), ScopeId(128), ScopeId(129), ScopeId(130), ScopeId(131), ScopeId(132), ScopeId(133), ScopeId(134), ScopeId(135)] Symbol flags mismatch: after transform: SymbolId(1): SymbolFlags(Export | Class) rebuilt : SymbolId(2): SymbolFlags(Class) @@ -17937,12 +20908,18 @@ Missing ReferenceId: m1 Bindings mismatch: after transform: ScopeId(0): ["C5_public", "C7_public", "glo_C3_public", "glo_i_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"] 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(14)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(4)] Symbol flags mismatch: after transform: SymbolId(1): SymbolFlags(Export | Class) rebuilt : SymbolId(2): SymbolFlags(Class) @@ -17980,18 +20957,27 @@ 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"] 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"] 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(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"] Scope flags mismatch: after transform: ScopeId(23): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(5): ScopeFlags(Function) +Scope children mismatch: +after transform: ScopeId(23): [ScopeId(24), ScopeId(26), ScopeId(27), ScopeId(36)] +rebuilt : ScopeId(5): [ScopeId(6), ScopeId(8)] Symbol flags mismatch: after transform: SymbolId(1): SymbolFlags(Export | Class) rebuilt : SymbolId(2): SymbolFlags(Class) @@ -18021,6 +21007,9 @@ tasks/coverage/typescript/tests/cases/compiler/privacyTypeParameterOfFunction.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["privateClass", "privateClassWithWithPrivateTypeParameters", "privateClassWithWithPublicTypeParameters", "privateClassWithWithPublicTypeParametersWithoutExtends", "privateFunctionWithPrivateTypeParameters", "privateFunctionWithPublicTypeParameters", "privateFunctionWithPublicTypeParametersWithoutExtends", "privateInterfaceWithPrivateTypeParameters", "privateInterfaceWithPublicTypeParameters", "privateInterfaceWithPublicTypeParametersWithoutExtends", "publicClass", "publicClassWithWithPrivateTypeParameters", "publicClassWithWithPublicTypeParameters", "publicClassWithWithPublicTypeParametersWithoutExtends", "publicFunctionWithPrivateTypeParameters", "publicFunctionWithPublicTypeParameters", "publicFunctionWithPublicTypeParametersWithoutExtends", "publicInterfaceWithPrivateTypeParameters", "publicInterfaceWithPublicTypeParameters", "publicInterfaceWithPublicTypeParametersWithoutExtends"] rebuilt : ScopeId(0): ["privateClass", "privateClassWithWithPrivateTypeParameters", "privateClassWithWithPublicTypeParameters", "privateClassWithWithPublicTypeParametersWithoutExtends", "privateFunctionWithPrivateTypeParameters", "privateFunctionWithPublicTypeParameters", "privateFunctionWithPublicTypeParametersWithoutExtends", "publicClass", "publicClassWithWithPrivateTypeParameters", "publicClassWithWithPublicTypeParameters", "publicClassWithWithPublicTypeParametersWithoutExtends", "publicFunctionWithPrivateTypeParameters", "publicFunctionWithPublicTypeParameters", "publicFunctionWithPublicTypeParametersWithoutExtends"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(9), ScopeId(12), ScopeId(15), ScopeId(20), ScopeId(25), ScopeId(30), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(42), ScopeId(45), ScopeId(50), ScopeId(55), ScopeId(56)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(8), ScopeId(13), ScopeId(18), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(32), ScopeId(37), ScopeId(38)] Bindings mismatch: after transform: ScopeId(16): ["T"] rebuilt : ScopeId(4): [] @@ -18148,6 +21137,9 @@ tasks/coverage/typescript/tests/cases/compiler/privacyTypeParametersOfInterface. semantic error: Bindings mismatch: after transform: ScopeId(0): ["privateClass", "privateClassT", "privateInterfaceWithPrivateTypeParameters", "privateInterfaceWithPublicTypeParameters", "privateInterfaceWithPublicTypeParametersWithoutExtends", "publicClass", "publicClassT", "publicInterfaceWithPrivateTypeParameters", "publicInterfaceWithPublicTypeParameters", "publicInterfaceWithPublicTypeParametersWithoutExtends"] rebuilt : ScopeId(0): ["privateClass", "privateClassT", "publicClass", "publicClassT"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(12), ScopeId(19), ScopeId(26), ScopeId(33), ScopeId(36)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(3): [] @@ -18211,6 +21203,9 @@ tasks/coverage/typescript/tests/cases/compiler/privatePropertyInUnion.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ISyncableObject", "SyncableObject", "SyncableRef", "Type", "__ValueDescriptorType"] rebuilt : ScopeId(0): ["SyncableObject"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(1): [ReferenceId(1)] rebuilt : SymbolId(0): [] @@ -18219,6 +21214,9 @@ tasks/coverage/typescript/tests/cases/compiler/privatePropertyUsingObjectType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["FilterManager", "IFilterProvider"] rebuilt : ScopeId(0): ["FilterManager"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/promiseChaining.ts semantic error: Bindings mismatch: @@ -18240,6 +21238,9 @@ tasks/coverage/typescript/tests/cases/compiler/promiseTest.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Promise", "p", "p2", "x"] rebuilt : ScopeId(0): ["p", "p2", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/promiseType.ts semantic error: Bindings mismatch: @@ -18715,6 +21716,9 @@ tasks/coverage/typescript/tests/cases/compiler/promiseTypeInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["$$x", "IPromise"] rebuilt : ScopeId(0): ["$$x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["CPromise", "convert", "load"] rebuilt : ["convert", "load"] @@ -19201,6 +22205,9 @@ tasks/coverage/typescript/tests/cases/compiler/promiseVoidErrorCallback.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T1", "T2", "T3", "f1", "f2", "x3"] rebuilt : ScopeId(0): ["f1", "f2", "x3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Unresolved references mismatch: after transform: ["Error", "Promise"] rebuilt : ["Promise"] @@ -19212,16 +22219,25 @@ tasks/coverage/typescript/tests/cases/compiler/promiseWithResolvers.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T", "promise", "reject", "resolve"] rebuilt : ScopeId(0): ["promise", "reject", "resolve"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/promises.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Promise"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/propTypeValidatorInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ExtractPropsMatch", "ExtractedProps", "ExtractedPropsWithoutAnnotation", "PropTypes", "PropTypesMap", "Props", "arrayOfTypes", "innerProps", "propTypes", "propTypesWithoutAnnotation", "x"] rebuilt : ScopeId(0): ["PropTypes", "arrayOfTypes", "innerProps", "propTypes", "propTypesWithoutAnnotation", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2), ReferenceId(3), ReferenceId(4), ReferenceId(5), ReferenceId(6), ReferenceId(7), ReferenceId(8), ReferenceId(9), ReferenceId(11), ReferenceId(12), ReferenceId(13), ReferenceId(14), ReferenceId(16), ReferenceId(18), ReferenceId(19), ReferenceId(20), ReferenceId(21), ReferenceId(23), ReferenceId(25), ReferenceId(27)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2), ReferenceId(3), ReferenceId(4), ReferenceId(5), ReferenceId(6), ReferenceId(7), ReferenceId(8), ReferenceId(9), ReferenceId(10), ReferenceId(11), ReferenceId(13), ReferenceId(15), ReferenceId(16), ReferenceId(17), ReferenceId(18), ReferenceId(20)] @@ -19235,10 +22251,18 @@ Unresolved references mismatch: after transform: ["true"] rebuilt : [] +tasks/coverage/typescript/tests/cases/compiler/propagateNonInferrableType.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/propagationOfPromiseInitialization.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IPromise", "foo"] rebuilt : ScopeId(0): ["foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/propertyAccessOnObjectLiteral.ts semantic error: Symbol reference IDs mismatch: @@ -19257,6 +22281,9 @@ tasks/coverage/typescript/tests/cases/compiler/prototypeOnConstructorFunctions.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1", "i"] rebuilt : ScopeId(0): ["i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/qualifiedName_ImportDeclarations-entity-names-referencing-a-var.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -19265,6 +22292,9 @@ tasks/coverage/typescript/tests/cases/compiler/ramdaToolsNoInfinite.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Curry", "R", "Tools"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(29), ScopeId(31)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["NonNullable", "Parameters", "R", "Record", "ReturnType", "Tools", "true"] rebuilt : [] @@ -19273,10 +22303,23 @@ tasks/coverage/typescript/tests/cases/compiler/ramdaToolsNoInfinite2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Any/Cast", "Any/Compute", "Any/Extends", "Any/Implements", "Any/Key", "Any/Kind", "Any/Type", "Any/_Internal", "Any/x", "Boolean/Boolean", "Boolean/Not", "Function/Curry", "Function/Function", "Function/Parameters", "Function/Return", "Iteration/Format", "Iteration/Iteration", "Iteration/IterationOf", "Iteration/Key", "Iteration/Next", "Iteration/Pos", "Iteration/Prev", "Iteration/_Internal", "List/Append", "List/Concat", "List/Drop", "List/Keys", "List/Length", "List/List", "List/NonNullable", "List/ObjectOf", "List/Prepend", "List/Reverse", "List/Tail", "List/_Internal", "Number/Number", "Number/NumberOf", "Number/_Internal", "Object/At", "Object/Keys", "Object/ListOf", "Object/Merge", "Object/NonNullable", "Object/Omit", "Object/Overwrite", "Object/Pick", "Object/_Internal", "Union/Exclude", "Union/Has", "Union/Keys", "Union/NonNullable", "Union/Union"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(9), ScopeId(13), ScopeId(19), ScopeId(21), ScopeId(25), ScopeId(31), ScopeId(35), ScopeId(37), ScopeId(39), ScopeId(41), ScopeId(44), ScopeId(48), ScopeId(51), ScopeId(53), ScopeId(56), ScopeId(62), ScopeId(64), ScopeId(71), ScopeId(73), ScopeId(81), ScopeId(88), ScopeId(92), ScopeId(98), ScopeId(100), ScopeId(103), ScopeId(106), ScopeId(108), ScopeId(111), ScopeId(113), ScopeId(115), ScopeId(120), ScopeId(127), ScopeId(132), ScopeId(141), ScopeId(143), ScopeId(145), ScopeId(148), ScopeId(151), ScopeId(154), ScopeId(156), ScopeId(162), ScopeId(167), ScopeId(171), ScopeId(173), ScopeId(175), ScopeId(177), ScopeId(180), ScopeId(182), ScopeId(184), ScopeId(186), ScopeId(190)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Exclude", "Function", "ReadonlyArray", "Required"] rebuilt : [] +tasks/coverage/typescript/tests/cases/compiler/reExportUndefined2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/compiler/reachabilityCheckWithEmptyDefault.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/reactHOCSpreadprops.tsx semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. Please consider using `import lib from '...';` alongside Typescript's --allowSyntheticDefaultImports option, or add @babel/plugin-transform-modules-commonjs to your Babel config. @@ -19402,12 +22445,18 @@ Missing ReferenceId: Foo Bindings mismatch: after transform: ScopeId(0): ["A", "Foo"] rebuilt : ScopeId(0): ["Foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(2): ["A", "B", "_Foo"] rebuilt : ScopeId(1): ["A", "_Foo"] Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) +Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3)] +rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/compiler/rectype.ts semantic error: Missing SymbolId: M @@ -19425,6 +22474,9 @@ rebuilt : ScopeId(1): ["_M", "f", "i"] 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)] Symbol flags mismatch: after transform: SymbolId(2): SymbolFlags(FunctionScopedVariable | Export) rebuilt : SymbolId(2): SymbolFlags(FunctionScopedVariable) @@ -19436,6 +22488,9 @@ tasks/coverage/typescript/tests/cases/compiler/recursiveArrayNotCircular.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Action", "ActionType", "ReducerAction", "assertNever", "reducer"] rebuilt : ScopeId(0): ["ActionType", "assertNever", "reducer"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(3): ["ActionType", "Bar", "Batch", "Baz", "Foo"] rebuilt : ScopeId(1): ["ActionType"] @@ -19455,7 +22510,10 @@ after transform: SymbolId(2): [ReferenceId(0), ReferenceId(2)] rebuilt : SymbolId(2): [ReferenceId(1)] tasks/coverage/typescript/tests/cases/compiler/recursiveBaseConstructorCreation2.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] +Unresolved references mismatch: after transform: ["abc", "base", "xyz"] rebuilt : ["xyz"] Unresolved reference IDs mismatch for "xyz": @@ -19514,16 +22572,25 @@ tasks/coverage/typescript/tests/cases/compiler/recursiveConditionalCrash1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C1", "C2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/recursiveConditionalCrash2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["CanBeExpanded", "Expand__", "UseQueryOptions"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/recursiveConditionalCrash3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AllKeys", "Base", "CanBeExpanded", "Expand", "ExpandResult", "Expand_", "Expand__", "Join", "KeysCanBeExpanded", "KeysCanBeExpanded_", "PrefixWith", "Role", "SplitAC", "SplitWithAllPossibleCombinations", "UseQueryOptions", "UseQueryOptions2", "UseQueryOptions3", "UseQueryOptions4", "User", "X", "t", "y1", "y2"] rebuilt : ScopeId(0): ["t", "y1", "y2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(10), ScopeId(12), ScopeId(16), ScopeId(24), ScopeId(25), ScopeId(33), ScopeId(36), ScopeId(37), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(44), ScopeId(46)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Array"] rebuilt : [] @@ -19532,6 +22599,9 @@ tasks/coverage/typescript/tests/cases/compiler/recursiveConditionalEvaluationNon semantic error: Bindings mismatch: after transform: ScopeId(0): ["Test", "a", "b", "x", "y"] rebuilt : ScopeId(0): ["b", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(5): Some("x") rebuilt : ReferenceId(0): None @@ -19546,6 +22616,9 @@ tasks/coverage/typescript/tests/cases/compiler/recursiveConditionalTypes2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ClassSpec", "Converted", "DefaultsDeep", "MaybeMergePrivateSpecs", "MaybeMergePrivateSuperSpec", "MergePrivateSpecs", "MergePrivateSuperSpec", "SimplifyPrivateSpec", "UnionToIntersection", "_Array", "z"] rebuilt : ScopeId(0): ["z"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(12), ScopeId(13), ScopeId(16), ScopeId(20), ScopeId(22)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["NonNullable", "Record"] rebuilt : [] @@ -19554,6 +22627,9 @@ tasks/coverage/typescript/tests/cases/compiler/recursiveExcessPropertyChecks.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ITreeItem", "NodeWithId", "getMaxId", "nodes"] rebuilt : ScopeId(0): ["getMaxId", "nodes"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/recursiveExportAssignmentAndFindAliasedType7.ts semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. @@ -19581,6 +22657,9 @@ tasks/coverage/typescript/tests/cases/compiler/recursiveGenericMethodCall.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Generate", "Generator"] rebuilt : ScopeId(0): ["Generate"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(2): ["T", "func"] rebuilt : ScopeId(1): ["func"] @@ -19594,11 +22673,17 @@ tasks/coverage/typescript/tests/cases/compiler/recursiveGenericTypeHierarchy.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/recursiveGenericUnionType1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Test1", "Test2", "s1", "s2", "x"] rebuilt : ScopeId(0): ["s1", "s2", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Test1", "Test2"] rebuilt : [] @@ -19607,6 +22692,9 @@ tasks/coverage/typescript/tests/cases/compiler/recursiveGenericUnionType2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Test1", "Test2", "s1", "s2", "x"] rebuilt : ScopeId(0): ["s1", "s2", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Test1", "Test2"] rebuilt : [] @@ -19615,6 +22703,9 @@ tasks/coverage/typescript/tests/cases/compiler/recursiveIdenticalAssignment.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "a", "b"] rebuilt : ScopeId(0): ["a", "b"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/recursiveIdenticalOverloadResolution.ts semantic error: Missing SymbolId: M @@ -19630,11 +22721,17 @@ rebuilt : ScopeId(1): ["_M", "f", "i"] 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)] tasks/coverage/typescript/tests/cases/compiler/recursiveInheritance2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "a", "b", "c", "x", "y", "z"] rebuilt : ScopeId(0): ["x", "y", "z"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(2): Some("a") rebuilt : ReferenceId(0): None @@ -19687,6 +22784,9 @@ tasks/coverage/typescript/tests/cases/compiler/recursiveResolveDeclaredMembers.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["D", "F"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["E"] rebuilt : [] @@ -19695,6 +22795,9 @@ tasks/coverage/typescript/tests/cases/compiler/recursiveReverseMappedType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Recur", "a", "join"] rebuilt : ScopeId(0): ["a", "join"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(4): ["T", "l"] rebuilt : ScopeId(1): ["l"] @@ -19706,6 +22809,9 @@ tasks/coverage/typescript/tests/cases/compiler/recursiveSpecializationOfExtended semantic error: Bindings mismatch: after transform: ScopeId(0): ["HTMLSelectElement"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/recursiveSpecializationOfSignatures.ts semantic error: Bindings mismatch: @@ -19719,16 +22825,25 @@ tasks/coverage/typescript/tests/cases/compiler/recursiveTupleTypes1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Tree1", "Tree2", "tree1", "tree2"] rebuilt : ScopeId(0): ["tree1", "tree2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/recursiveTupleTypes2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Tree1", "Tree2", "tree1", "tree2"] rebuilt : ScopeId(0): ["tree1", "tree2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/recursiveTypeAliasWithSpreadConditionalReturnNotCircular.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Option", "UnzipOption", "UnzipOptionArray1", "UnzipOptionArray2", "UnzipOptionArray3", "opt1", "opt2", "opt3", "zipped1", "zipped2", "zipped3"] rebuilt : ScopeId(0): ["zipped1", "zipped2", "zipped3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(7), ScopeId(10), ScopeId(12)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(43): Some("opt1") rebuilt : ReferenceId(0): None @@ -19764,16 +22879,25 @@ tasks/coverage/typescript/tests/cases/compiler/recursiveTypeComparison.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Observable", "Property", "p", "stuck"] rebuilt : ScopeId(0): ["p", "stuck"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/recursiveTypeIdentity.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/recursiveTypeParameterReferenceError1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C2", "Foo", "Foo2", "X", "f", "f2", "r", "r2"] rebuilt : ScopeId(0): ["C2", "X", "f", "f2", "r", "r2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] @@ -19791,16 +22915,25 @@ tasks/coverage/typescript/tests/cases/compiler/recursiveTypeParameterReferenceEr semantic error: Bindings mismatch: after transform: ScopeId(0): ["List", "List2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/recursiveTypes1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Customer", "Entity", "Person"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/recursiveUnionTypeInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "bar"] rebuilt : ScopeId(0): ["bar"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(2): ["T", "x"] rebuilt : ScopeId(1): ["x"] @@ -19859,6 +22992,9 @@ rebuilt : ScopeId(4): ["ItemValue", "ViewModel", "_ItemList"] 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): [] @@ -19878,10 +23014,18 @@ Symbol reference IDs mismatch: after transform: SymbolId(9): [ReferenceId(0)] rebuilt : SymbolId(10): [ReferenceId(4)] +tasks/coverage/typescript/tests/cases/compiler/redeclarationOfVarWithGenericType.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/reducibleIndexedAccessTypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AnyOneof", "AnyOneofKind", "GetPayload", "MappedPayload2", "Payload", "PayloadA", "PayloadB", "PayloadC", "PayloadStructure", "Type", "payloads2"] rebuilt : ScopeId(0): ["Type", "payloads2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(12), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["A", "B", "C", "Type"] rebuilt : ScopeId(1): ["Type"] @@ -19900,7 +23044,10 @@ semantic error: `export = ;` is only supported when compiling modules to Please consider using `export default ;`, or add @babel/plugin-transform-modules-commonjs to your Babel config. tasks/coverage/typescript/tests/cases/compiler/reexportNameAliasedAndHoisted.ts -semantic error: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export | TypeAlias) rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export) Symbol span mismatch: @@ -19919,6 +23066,9 @@ tasks/coverage/typescript/tests/cases/compiler/relatedViaDiscriminatedTypeNoErro semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "DiscriminatedUnion", "Model"] rebuilt : ScopeId(0): ["A", "B", "Model"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] Bindings mismatch: after transform: ScopeId(4): ["T"] rebuilt : ScopeId(3): [] @@ -19933,6 +23083,9 @@ tasks/coverage/typescript/tests/cases/compiler/relatedViaDiscriminatedTypeNoErro semantic error: Bindings mismatch: after transform: ScopeId(0): ["AObjOrBObj", "AOrBObj", "Generic", "T", "x", "y"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(6): Some("x") rebuilt : ReferenceId(0): None @@ -19953,6 +23106,9 @@ tasks/coverage/typescript/tests/cases/compiler/reorderProperties.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "D", "c", "d"] rebuilt : ScopeId(0): ["c", "d"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/requireEmitSemicolon.ts semantic error: Missing SymbolId: Models @@ -20076,6 +23232,9 @@ tasks/coverage/typescript/tests/cases/compiler/reservedNameOnModuleImport.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["test"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["mstring"] rebuilt : [] @@ -20086,7 +23245,10 @@ after transform: ScopeId(0): ["a", "b"] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/resolveInterfaceNameWithSameLetDeclarationName1.ts -semantic error: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | Interface) rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) Symbol span mismatch: @@ -20100,7 +23262,10 @@ after transform: SymbolId(0): [Span { start: 22, end: 30 }] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/resolveInterfaceNameWithSameLetDeclarationName2.ts -semantic error: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] +Symbol flags mismatch: after transform: SymbolId(1): SymbolFlags(BlockScopedVariable | Interface) rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) Symbol span mismatch: @@ -20126,7 +23291,10 @@ after transform: SymbolId(0): [Span { start: 60, end: 74 }] rebuilt : SymbolId(1): [] tasks/coverage/typescript/tests/cases/compiler/resolveModuleNameWithSameLetDeclarationName1.ts -semantic error: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | NameSpaceModule | Ambient) rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) Symbol span mismatch: @@ -20143,9 +23311,15 @@ tasks/coverage/typescript/tests/cases/compiler/resolveModuleNameWithSameLetDecla semantic error: Bindings mismatch: after transform: ScopeId(0): ["punycode"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/resolveNameWithNamspace.ts -semantic error: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(FunctionScopedVariable | NameSpaceModule) rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) Symbol span mismatch: @@ -20156,7 +23330,10 @@ after transform: SymbolId(0): [Span { start: 91, end: 99 }] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/resolveTypeAliasWithSameLetDeclarationName1.ts -semantic error: Symbol reference IDs mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] Symbol flags mismatch: @@ -20176,6 +23353,9 @@ tasks/coverage/typescript/tests/cases/compiler/restParamUsingMappedTypeOverUnion semantic error: Bindings mismatch: after transform: ScopeId(0): ["HomomorphicMappedType"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/restParameterAssignmentCompatibility.ts semantic error: Symbol reference IDs mismatch: @@ -20192,6 +23372,9 @@ tasks/coverage/typescript/tests/cases/compiler/restParameterTypeInstantiation.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["TestGeneric", "removeF", "result"] rebuilt : ScopeId(0): ["removeF", "result"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(2): ["TX", "f", "rest"] rebuilt : ScopeId(1): ["f", "rest"] @@ -20200,6 +23383,9 @@ tasks/coverage/typescript/tests/cases/compiler/restTypeRetainsMappyness.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "test"] rebuilt : ScopeId(0): ["test"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(3): ["T", "arr", "fn"] rebuilt : ScopeId(1): ["arr", "fn"] @@ -20230,6 +23416,9 @@ tasks/coverage/typescript/tests/cases/compiler/returnTypeInferenceNotTooBroad.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Opts", "Signs", "Wrapper", "y", "yone", "yun"] rebuilt : ScopeId(0): ["y", "yone", "yun"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/returnTypeParameterWithModules.ts semantic error: Missing SymbolId: M1 @@ -20307,26 +23496,43 @@ tasks/coverage/typescript/tests/cases/compiler/reuseInnerModuleMember.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["M"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/reverseInferenceInContextualInstantiation.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["T", "a", "b"] rebuilt : ScopeId(1): ["a", "b"] +tasks/coverage/typescript/tests/cases/compiler/reverseMappedContravariantInference.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/reverseMappedIntersectionInference1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Errors", "Results", "res"] rebuilt : ScopeId(0): ["res"] +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: +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: +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: after transform: ["Record", "create", "test1", "test2", "test4"] rebuilt : ["create", "test1", "test2", "test4"] @@ -20335,6 +23541,9 @@ tasks/coverage/typescript/tests/cases/compiler/reverseMappedTypeAssignableToInde semantic error: Bindings mismatch: after transform: ScopeId(0): ["InferFromMapped", "Inferred", "LiteralType", "Mapped", "MappedLiteralType", "Test1"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Record", "true"] rebuilt : [] @@ -20343,6 +23552,9 @@ tasks/coverage/typescript/tests/cases/compiler/reverseMappedTypeContextualTypesP semantic error: Bindings mismatch: after transform: ScopeId(0): ["Tuple"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Unresolved references mismatch: after transform: ["EventTarget", "Extract", "HTMLButtonElement", "Parameters", "bindAll"] rebuilt : ["bindAll"] @@ -20351,11 +23563,22 @@ tasks/coverage/typescript/tests/cases/compiler/reverseMappedTypeInferenceSameSou semantic error: Bindings mismatch: after transform: ScopeId(0): ["Action", "ConfigureStoreOptions", "Reducer", "ReducersMapObject", "UnknownAction", "counterReducer1", "store2"] rebuilt : ScopeId(0): ["counterReducer1", "store2"] +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)] + +tasks/coverage/typescript/tests/cases/compiler/reverseMappedTypePrimitiveConstraintProperty.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/reverseMappedTypeRecursiveInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo", "bar", "test"] rebuilt : ScopeId(0): ["bar", "test"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(6): ["V", "value"] rebuilt : ScopeId(1): ["value"] @@ -20364,6 +23587,9 @@ tasks/coverage/typescript/tests/cases/compiler/reverseMappedUnionInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AnyExtractor", "Extractor", "Identifier", "StringLiteral", "identifierExtractor", "myUnion", "stringExtractor"] rebuilt : ScopeId(0): ["identifierExtractor", "myUnion", "stringExtractor"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Unresolved references mismatch: after transform: ["const", "createExtractor", "isIdentifier", "isStringLiteral", "unionType"] rebuilt : ["createExtractor", "isIdentifier", "isStringLiteral", "unionType"] @@ -20372,11 +23598,17 @@ tasks/coverage/typescript/tests/cases/compiler/reversedRecusiveTypeInstantiation semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "a"] rebuilt : ScopeId(0): ["a"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/selfInLambdas.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["MouseEvent", "Window", "X", "o", "window"] rebuilt : ScopeId(0): ["X", "o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] Reference symbol mismatch: after transform: ReferenceId(2): Some("window") rebuilt : ReferenceId(0): None @@ -20384,10 +23616,18 @@ Unresolved references mismatch: after transform: [] rebuilt : ["window"] +tasks/coverage/typescript/tests/cases/compiler/selfReference.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/selfReferencingTypeReferenceInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Box", "InferRecursive", "Recursive", "t1", "t2", "t3"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/separate1-2.ts semantic error: Missing SymbolId: X @@ -20412,10 +23652,18 @@ Symbol reference IDs mismatch: after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] +tasks/coverage/typescript/tests/cases/compiler/shebangBeforeReferences.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/sigantureIsSubTypeIfTheyAreIdentical.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["CacheService", "ICache"] rebuilt : ScopeId(0): ["CacheService"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(4): ["T", "key"] rebuilt : ScopeId(2): ["key"] @@ -20452,6 +23700,9 @@ tasks/coverage/typescript/tests/cases/compiler/simplifyingConditionalWithInterio semantic error: Bindings mismatch: after transform: ScopeId(0): ["ConditionalOrUndefined", "ConditionalType", "JustConditional", "JustGeneric", "f", "genericOrUndefined"] rebuilt : ScopeId(0): ["ConditionalOrUndefined", "JustConditional", "JustGeneric", "f", "genericOrUndefined"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(1): [] @@ -20467,11 +23718,17 @@ rebuilt : ScopeId(4): [] Bindings mismatch: after transform: ScopeId(7): ["A", "One", "T", "x"] rebuilt : ScopeId(5): ["x"] +Scope children mismatch: +after transform: ScopeId(7): [ScopeId(8), ScopeId(10)] +rebuilt : ScopeId(5): [] tasks/coverage/typescript/tests/cases/compiler/singletonLabeledTuple.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Alias", "AliasOptional", "AliasRest", "AliasedRest", "Labeled", "Literal", "LiteralRest", "Normal", "NormalRest"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(11), ScopeId(13), ScopeId(15)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["true"] rebuilt : [] @@ -20534,6 +23791,9 @@ Missing ReferenceId: Shapes Bindings mismatch: after transform: ScopeId(0): ["IPoint", "Shapes", "dist", "p"] rebuilt : ScopeId(0): ["Shapes", "dist", "p"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Binding symbols mismatch: after transform: ScopeId(3): [SymbolId(2), SymbolId(5), SymbolId(6), SymbolId(7), SymbolId(10)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(5), SymbolId(6), SymbolId(7)] @@ -20560,6 +23820,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMap-InterfacePrecedingVaria semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/sourceMap-StringLiteralWithNewLine.ts semantic error: Missing SymbolId: Foo @@ -20569,6 +23832,9 @@ Missing ReferenceId: Foo Bindings mismatch: after transform: ScopeId(0): ["Document", "Foo", "Window", "window"] rebuilt : ScopeId(0): ["Foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Binding symbols mismatch: after transform: ScopeId(3): [SymbolId(4), SymbolId(5), SymbolId(6), SymbolId(7)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4)] @@ -20637,6 +23903,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiSkilledRobot", "Robot", "console", "getMultiRobot", "getRobot", "multiRobotA", "multiRobotB", "robotA"] rebuilt : ScopeId(0): ["getMultiRobot", "getRobot", "multiRobotA", "multiRobotB", "robotA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(28), ScopeId(30), ScopeId(32), ScopeId(34), ScopeId(36), ScopeId(38), ScopeId(40), ScopeId(42), ScopeId(44), ScopeId(46), ScopeId(48), ScopeId(50), ScopeId(52)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(25), ScopeId(27), ScopeId(29), ScopeId(31), ScopeId(33), ScopeId(35), ScopeId(37), ScopeId(39), ScopeId(41), ScopeId(43), ScopeId(45), ScopeId(47), ScopeId(49)] Reference symbol mismatch: after transform: ReferenceId(8): Some("console") rebuilt : ReferenceId(5): None @@ -20717,6 +23986,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiSkilledRobot", "Robot", "console", "getMultiRobot", "getRobot", "i", "multiRobotA", "multiRobotAInfo", "multiRobotB", "nameA", "nameA2", "nameB", "nameMA", "numberA2", "numberA3", "numberB", "primarySkillA", "robotA", "robotAInfo", "secondarySkillA", "skillA2"] rebuilt : ScopeId(0): ["getMultiRobot", "getRobot", "i", "multiRobotA", "multiRobotAInfo", "multiRobotB", "nameA", "nameA2", "nameB", "nameMA", "numberA2", "numberA3", "numberB", "primarySkillA", "robotA", "robotAInfo", "secondarySkillA", "skillA2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(28), ScopeId(30), ScopeId(32), ScopeId(34), ScopeId(36), ScopeId(38), ScopeId(40), ScopeId(42), ScopeId(44), ScopeId(46), ScopeId(48), ScopeId(50), ScopeId(52)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(25), ScopeId(27), ScopeId(29), ScopeId(31), ScopeId(33), ScopeId(35), ScopeId(37), ScopeId(39), ScopeId(41), ScopeId(43), ScopeId(45), ScopeId(47), ScopeId(49)] Reference symbol mismatch: after transform: ReferenceId(10): Some("console") rebuilt : ReferenceId(7): None @@ -20797,6 +24069,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiSkilledRobot", "Robot", "console", "getMultiRobot", "getRobot", "multiRobotA", "multiRobotB", "robotA"] rebuilt : ScopeId(0): ["getMultiRobot", "getRobot", "multiRobotA", "multiRobotB", "robotA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(28), ScopeId(30), ScopeId(32), ScopeId(34), ScopeId(36), ScopeId(38), ScopeId(40), ScopeId(42), ScopeId(44), ScopeId(46)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(25), ScopeId(27), ScopeId(29), ScopeId(31), ScopeId(33), ScopeId(35), ScopeId(37), ScopeId(39), ScopeId(41), ScopeId(43)] Reference symbol mismatch: after transform: ReferenceId(8): Some("console") rebuilt : ReferenceId(5): None @@ -20868,6 +24143,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiSkilledRobot", "Robot", "console", "getMultiRobot", "getRobot", "i", "multiRobotA", "multiRobotAInfo", "multiRobotB", "nameA", "nameA2", "nameB", "nameMA", "numberA2", "numberA3", "numberB", "primarySkillA", "robotA", "robotAInfo", "secondarySkillA", "skillA2"] rebuilt : ScopeId(0): ["getMultiRobot", "getRobot", "i", "multiRobotA", "multiRobotAInfo", "multiRobotB", "nameA", "nameA2", "nameB", "nameMA", "numberA2", "numberA3", "numberB", "primarySkillA", "robotA", "robotAInfo", "secondarySkillA", "skillA2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(28), ScopeId(30), ScopeId(32), ScopeId(34), ScopeId(36), ScopeId(38), ScopeId(40), ScopeId(42), ScopeId(44), ScopeId(46)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(25), ScopeId(27), ScopeId(29), ScopeId(31), ScopeId(33), ScopeId(35), ScopeId(37), ScopeId(39), ScopeId(41), ScopeId(43)] Reference symbol mismatch: after transform: ReferenceId(10): Some("console") rebuilt : ReferenceId(7): None @@ -20939,6 +24217,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiRobot", "Robot", "console", "getMultiRobot", "getRobot", "multiRobot", "robot"] rebuilt : ScopeId(0): ["getMultiRobot", "getRobot", "multiRobot", "robot"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(28)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(25)] Reference symbol mismatch: after transform: ReferenceId(7): Some("console") rebuilt : ReferenceId(5): None @@ -20983,6 +24264,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiRobot", "Robot", "console", "getMultiRobot", "getRobot", "i", "multiRobot", "name", "nameA", "primary", "primaryA", "robot", "secondary", "secondaryA", "skill", "skillA"] rebuilt : ScopeId(0): ["getMultiRobot", "getRobot", "i", "multiRobot", "name", "nameA", "primary", "primaryA", "robot", "secondary", "secondaryA", "skill", "skillA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(28), ScopeId(30), ScopeId(32), ScopeId(34), ScopeId(36), ScopeId(38), ScopeId(40), ScopeId(42), ScopeId(44), ScopeId(46), ScopeId(48), ScopeId(50), ScopeId(52)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(25), ScopeId(27), ScopeId(29), ScopeId(31), ScopeId(33), ScopeId(35), ScopeId(37), ScopeId(39), ScopeId(41), ScopeId(43), ScopeId(45), ScopeId(47), ScopeId(49)] Reference symbol mismatch: after transform: ReferenceId(9): Some("console") rebuilt : ReferenceId(7): None @@ -21063,6 +24347,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiRobot", "Robot", "console", "getMultiRobot", "getRobot", "multiRobot", "robot"] rebuilt : ScopeId(0): ["getMultiRobot", "getRobot", "multiRobot", "robot"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(28)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(25)] Reference symbol mismatch: after transform: ReferenceId(7): Some("console") rebuilt : ReferenceId(5): None @@ -21107,6 +24394,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiRobot", "Robot", "console", "getMultiRobot", "getRobot", "i", "multiRobot", "name", "nameA", "primary", "primaryA", "robot", "secondary", "secondaryA", "skill", "skillA"] rebuilt : ScopeId(0): ["getMultiRobot", "getRobot", "i", "multiRobot", "name", "nameA", "primary", "primaryA", "robot", "secondary", "secondaryA", "skill", "skillA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(28), ScopeId(30), ScopeId(32), ScopeId(34), ScopeId(36), ScopeId(38), ScopeId(40), ScopeId(42), ScopeId(44), ScopeId(46), ScopeId(48), ScopeId(50), ScopeId(52)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(25), ScopeId(27), ScopeId(29), ScopeId(31), ScopeId(33), ScopeId(35), ScopeId(37), ScopeId(39), ScopeId(41), ScopeId(43), ScopeId(45), ScopeId(47), ScopeId(49)] Reference symbol mismatch: after transform: ReferenceId(9): Some("console") rebuilt : ReferenceId(7): None @@ -21187,6 +24477,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiSkilledRobot", "Robot", "console", "getMultiRobots", "getRobots", "multiRobotA", "multiRobotB", "multiRobots", "robotA", "robotB", "robots"] rebuilt : ScopeId(0): ["getMultiRobots", "getRobots", "multiRobotA", "multiRobotB", "multiRobots", "robotA", "robotB", "robots"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(28), ScopeId(30), ScopeId(32), ScopeId(34), ScopeId(36), ScopeId(38), ScopeId(40), ScopeId(42), ScopeId(44), ScopeId(46), ScopeId(48), ScopeId(50), ScopeId(52)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(25), ScopeId(27), ScopeId(29), ScopeId(31), ScopeId(33), ScopeId(35), ScopeId(37), ScopeId(39), ScopeId(41), ScopeId(43), ScopeId(45), ScopeId(47), ScopeId(49)] Reference symbol mismatch: after transform: ReferenceId(11): Some("console") rebuilt : ReferenceId(7): None @@ -21267,6 +24560,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiSkilledRobot", "Robot", "console", "getMultiRobots", "getRobots", "multiRobotA", "multiRobotAInfo", "multiRobotB", "multiRobots", "nameA", "nameA2", "nameB", "nameMA", "numberA2", "numberA3", "numberB", "primarySkillA", "robotA", "robotAInfo", "robotB", "robots", "secondarySkillA", "skillA2"] rebuilt : ScopeId(0): ["getMultiRobots", "getRobots", "multiRobotA", "multiRobotAInfo", "multiRobotB", "multiRobots", "nameA", "nameA2", "nameB", "nameMA", "numberA2", "numberA3", "numberB", "primarySkillA", "robotA", "robotAInfo", "robotB", "robots", "secondarySkillA", "skillA2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(28), ScopeId(30), ScopeId(32), ScopeId(34), ScopeId(36), ScopeId(38), ScopeId(40), ScopeId(42), ScopeId(44), ScopeId(46), ScopeId(48), ScopeId(50), ScopeId(52)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(25), ScopeId(27), ScopeId(29), ScopeId(31), ScopeId(33), ScopeId(35), ScopeId(37), ScopeId(39), ScopeId(41), ScopeId(43), ScopeId(45), ScopeId(47), ScopeId(49)] Reference symbol mismatch: after transform: ReferenceId(12): Some("console") rebuilt : ReferenceId(8): None @@ -21347,6 +24643,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiSkilledRobot", "Robot", "console", "getMultiRobots", "getRobots", "multiRobotA", "multiRobotB", "multiRobots", "robotA", "robotB", "robots"] rebuilt : ScopeId(0): ["getMultiRobots", "getRobots", "multiRobotA", "multiRobotB", "multiRobots", "robotA", "robotB", "robots"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(28), ScopeId(30), ScopeId(32), ScopeId(34), ScopeId(36), ScopeId(38), ScopeId(40), ScopeId(42), ScopeId(44), ScopeId(46)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(25), ScopeId(27), ScopeId(29), ScopeId(31), ScopeId(33), ScopeId(35), ScopeId(37), ScopeId(39), ScopeId(41), ScopeId(43)] Reference symbol mismatch: after transform: ReferenceId(11): Some("console") rebuilt : ReferenceId(7): None @@ -21418,6 +24717,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiSkilledRobot", "Robot", "console", "getMultiRobots", "getRobots", "multiRobotA", "multiRobotAInfo", "multiRobotB", "multiRobots", "nameA", "nameA2", "nameB", "nameMA", "numberA2", "numberA3", "numberB", "primarySkillA", "robotA", "robotAInfo", "robotB", "robots", "secondarySkillA", "skillA2"] rebuilt : ScopeId(0): ["getMultiRobots", "getRobots", "multiRobotA", "multiRobotAInfo", "multiRobotB", "multiRobots", "nameA", "nameA2", "nameB", "nameMA", "numberA2", "numberA3", "numberB", "primarySkillA", "robotA", "robotAInfo", "robotB", "robots", "secondarySkillA", "skillA2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(28), ScopeId(30), ScopeId(32), ScopeId(34), ScopeId(36), ScopeId(38), ScopeId(40), ScopeId(42), ScopeId(44), ScopeId(46)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(25), ScopeId(27), ScopeId(29), ScopeId(31), ScopeId(33), ScopeId(35), ScopeId(37), ScopeId(39), ScopeId(41), ScopeId(43)] Reference symbol mismatch: after transform: ReferenceId(12): Some("console") rebuilt : ReferenceId(8): None @@ -21489,6 +24791,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiRobot", "Robot", "console", "getMultiRobots", "getRobots", "multiRobots", "robots"] rebuilt : ScopeId(0): ["getMultiRobots", "getRobots", "multiRobots", "robots"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(28)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(25)] Reference symbol mismatch: after transform: ReferenceId(5): Some("console") rebuilt : ReferenceId(3): None @@ -21533,6 +24838,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiRobot", "Robot", "console", "getMultiRobots", "getRobots", "i", "multiRobots", "name", "nameA", "primary", "primaryA", "robots", "secondary", "secondaryA", "skill", "skillA"] rebuilt : ScopeId(0): ["getMultiRobots", "getRobots", "i", "multiRobots", "name", "nameA", "primary", "primaryA", "robots", "secondary", "secondaryA", "skill", "skillA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(28), ScopeId(30), ScopeId(32), ScopeId(34), ScopeId(36), ScopeId(38), ScopeId(40), ScopeId(42), ScopeId(44), ScopeId(46), ScopeId(48), ScopeId(50), ScopeId(52)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(25), ScopeId(27), ScopeId(29), ScopeId(31), ScopeId(33), ScopeId(35), ScopeId(37), ScopeId(39), ScopeId(41), ScopeId(43), ScopeId(45), ScopeId(47), ScopeId(49)] Reference symbol mismatch: after transform: ReferenceId(6): Some("console") rebuilt : ReferenceId(4): None @@ -21613,6 +24921,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiRobot", "Robot", "console", "getMultiRobots", "getRobots", "multiRobots", "robots"] rebuilt : ScopeId(0): ["getMultiRobots", "getRobots", "multiRobots", "robots"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(28)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(25)] Reference symbol mismatch: after transform: ReferenceId(5): Some("console") rebuilt : ReferenceId(3): None @@ -21657,6 +24968,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringF semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiRobot", "Robot", "console", "getMultiRobots", "getRobots", "i", "multiRobots", "name", "nameA", "primary", "primaryA", "robots", "secondary", "secondaryA", "skill", "skillA"] rebuilt : ScopeId(0): ["getMultiRobots", "getRobots", "i", "multiRobots", "name", "nameA", "primary", "primaryA", "robots", "secondary", "secondaryA", "skill", "skillA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(28), ScopeId(30), ScopeId(32), ScopeId(34), ScopeId(36), ScopeId(38), ScopeId(40), ScopeId(42), ScopeId(44), ScopeId(46), ScopeId(48), ScopeId(50), ScopeId(52)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(25), ScopeId(27), ScopeId(29), ScopeId(31), ScopeId(33), ScopeId(35), ScopeId(37), ScopeId(39), ScopeId(41), ScopeId(43), ScopeId(45), ScopeId(47), ScopeId(49)] Reference symbol mismatch: after transform: ReferenceId(6): Some("console") rebuilt : ReferenceId(4): None @@ -21737,6 +25051,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringP semantic error: Bindings mismatch: after transform: ScopeId(0): ["Robot", "console", "foo1", "foo2", "foo3", "robotA"] rebuilt : ScopeId(0): ["foo1", "foo2", "foo3", "robotA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Reference symbol mismatch: after transform: ReferenceId(2): Some("console") rebuilt : ReferenceId(0): None @@ -21754,6 +25071,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringP semantic error: Bindings mismatch: after transform: ScopeId(0): ["Robot", "console", "foo1", "foo2", "foo3", "robotA"] rebuilt : ScopeId(0): ["foo1", "foo2", "foo3", "robotA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Reference symbol mismatch: after transform: ReferenceId(3): Some("console") rebuilt : ReferenceId(1): None @@ -21771,6 +25091,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringP semantic error: Bindings mismatch: after transform: ScopeId(0): ["Robot", "console", "foo1", "foo2", "foo3", "hello", "robotA"] rebuilt : ScopeId(0): ["foo1", "foo2", "foo3", "hello", "robotA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Reference symbol mismatch: after transform: ReferenceId(2): Some("console") rebuilt : ReferenceId(0): None @@ -21788,6 +25111,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringP semantic error: Bindings mismatch: after transform: ScopeId(0): ["Robot", "console", "foo1", "foo2", "foo3", "hello", "robotA"] rebuilt : ScopeId(0): ["foo1", "foo2", "foo3", "hello", "robotA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Reference symbol mismatch: after transform: ReferenceId(2): Some("console") rebuilt : ReferenceId(0): None @@ -21805,6 +25131,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringP semantic error: Bindings mismatch: after transform: ScopeId(0): ["Robot", "console", "foo1", "foo2", "foo3", "foo4", "robotA"] rebuilt : ScopeId(0): ["foo1", "foo2", "foo3", "foo4", "robotA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Reference symbol mismatch: after transform: ReferenceId(2): Some("console") rebuilt : ReferenceId(0): None @@ -21825,6 +25154,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringP semantic error: Bindings mismatch: after transform: ScopeId(0): ["Robot", "console", "foo1", "foo2", "foo3", "foo4", "robotA"] rebuilt : ScopeId(0): ["foo1", "foo2", "foo3", "foo4", "robotA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Reference symbol mismatch: after transform: ReferenceId(2): Some("console") rebuilt : ReferenceId(0): None @@ -21845,6 +25177,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringP semantic error: Bindings mismatch: after transform: ScopeId(0): ["Robot", "console", "foo1", "foo2", "foo3", "foo4", "robotA"] rebuilt : ScopeId(0): ["foo1", "foo2", "foo3", "foo4", "robotA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Reference symbol mismatch: after transform: ReferenceId(2): Some("console") rebuilt : ReferenceId(0): None @@ -21865,6 +25200,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringP semantic error: Bindings mismatch: after transform: ScopeId(0): ["Robot", "console", "foo1", "foo2", "foo3", "robotA"] rebuilt : ScopeId(0): ["foo1", "foo2", "foo3", "robotA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Reference symbol mismatch: after transform: ReferenceId(2): Some("console") rebuilt : ReferenceId(0): None @@ -21882,6 +25220,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringV semantic error: Bindings mismatch: after transform: ScopeId(0): ["Robot", "console", "hello", "nameA", "nameB", "nameC", "robotA", "robotB", "skillB", "skillC"] rebuilt : ScopeId(0): ["hello", "nameA", "nameB", "nameC", "robotA", "robotB", "skillB", "skillC"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference symbol mismatch: after transform: ReferenceId(6): Some("console") rebuilt : ReferenceId(4): None @@ -21896,6 +25237,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringV semantic error: Bindings mismatch: after transform: ScopeId(0): ["Robot", "a", "a1", "b", "b1", "c", "c1", "console", "hello", "nameA", "nameB", "nameC", "robotA", "robotB", "skillB", "skillC"] rebuilt : ScopeId(0): ["a", "a1", "b", "b1", "c", "c1", "hello", "nameA", "nameB", "nameC", "robotA", "robotB", "skillB", "skillC"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference symbol mismatch: after transform: ReferenceId(16): Some("console") rebuilt : ReferenceId(14): None @@ -21910,6 +25254,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringV semantic error: Bindings mismatch: after transform: ScopeId(0): ["Robot", "console", "nameA", "nameA2", "nameC", "numberA2", "numberA3", "numberB", "numberC", "numberC2", "robotA", "robotAInfo", "robotB", "skillA2", "skillC"] rebuilt : ScopeId(0): ["nameA", "nameA2", "nameC", "numberA2", "numberA3", "numberB", "numberC", "numberC2", "robotA", "robotAInfo", "robotB", "skillA2", "skillC"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(8): Some("console") rebuilt : ReferenceId(6): None @@ -21921,6 +25268,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringV semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiSkilledRobot", "console", "multiRobotA", "multiRobotAInfo", "multiRobotB", "nameMA", "nameMB", "nameMC", "nameMC2", "primarySkillA", "primarySkillC", "secondarySkillA", "secondarySkillC", "skillA"] rebuilt : ScopeId(0): ["multiRobotA", "multiRobotAInfo", "multiRobotB", "nameMA", "nameMB", "nameMC", "nameMC2", "primarySkillA", "primarySkillC", "secondarySkillA", "secondarySkillC", "skillA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(8): Some("console") rebuilt : ReferenceId(6): None @@ -21932,6 +25282,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringV semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiSkilledRobot", "Robot", "console", "getMultiRobotB", "getRobotB", "multiRobotA", "multiRobotAInfo", "multiRobotB", "multiSkillB", "nameA", "nameB", "nameMB", "numberB", "primarySkillB", "robotA", "robotAInfo", "robotB", "secondarySkillB", "skillB"] rebuilt : ScopeId(0): ["getMultiRobotB", "getRobotB", "multiRobotA", "multiRobotAInfo", "multiRobotB", "multiSkillB", "nameA", "nameB", "nameMB", "numberB", "primarySkillB", "robotA", "robotAInfo", "robotB", "secondarySkillB", "skillB"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Reference symbol mismatch: after transform: ReferenceId(62): Some("console") rebuilt : ReferenceId(57): None @@ -21943,6 +25296,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringV semantic error: Bindings mismatch: after transform: ScopeId(0): ["Robot", "console", "nameA", "nameA2", "nameC", "numberA2", "numberA3", "numberB", "numberC", "numberC2", "robotA", "robotAInfo", "robotB", "skillA2", "skillC"] rebuilt : ScopeId(0): ["nameA", "nameA2", "nameC", "numberA2", "numberA3", "numberB", "numberC", "numberC2", "robotA", "robotAInfo", "robotB", "skillA2", "skillC"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(8): Some("console") rebuilt : ReferenceId(6): None @@ -21954,6 +25310,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringV semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiSkilledRobot", "console", "multiRobotA", "multiRobotB", "nameMA", "nameMB", "nameMC", "nameMC2", "primarySkillA", "primarySkillC", "secondarySkillA", "secondarySkillC", "skillA"] rebuilt : ScopeId(0): ["multiRobotA", "multiRobotB", "nameMA", "nameMB", "nameMC", "nameMC2", "primarySkillA", "primarySkillC", "secondarySkillA", "secondarySkillC", "skillA"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(7): Some("console") rebuilt : ReferenceId(5): None @@ -21965,6 +25324,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringV semantic error: Bindings mismatch: after transform: ScopeId(0): ["MultiSkilledRobot", "Robot", "console", "getMultiRobotB", "getRobotB", "multiRobotA", "multiRobotAInfo", "multiRobotB", "multiSkillB", "nameA", "nameB", "nameMB", "numberB", "primarySkillB", "robotA", "robotAInfo", "robotB", "secondarySkillB", "skillB"] rebuilt : ScopeId(0): ["getMultiRobotB", "getRobotB", "multiRobotA", "multiRobotAInfo", "multiRobotB", "multiSkillB", "nameA", "nameB", "nameMB", "numberB", "primarySkillB", "robotA", "robotAInfo", "robotB", "secondarySkillB", "skillB"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Reference symbol mismatch: after transform: ReferenceId(57): Some("console") rebuilt : ReferenceId(52): None @@ -21976,6 +25338,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringV semantic error: Bindings mismatch: after transform: ScopeId(0): ["Robot", "console", "hello", "nameA", "nameB", "nameC", "robotA", "robotB", "skillB", "skillC"] rebuilt : ScopeId(0): ["hello", "nameA", "nameB", "nameC", "robotA", "robotB", "skillB", "skillC"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference symbol mismatch: after transform: ReferenceId(6): Some("console") rebuilt : ReferenceId(4): None @@ -21990,6 +25355,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringV semantic error: Bindings mismatch: after transform: ScopeId(0): ["Robot", "console", "nameB", "nameC", "primaryA", "primaryB", "robotA", "robotB", "secondaryA", "secondaryB"] rebuilt : ScopeId(0): ["nameB", "nameC", "primaryA", "primaryB", "robotA", "robotB", "secondaryA", "secondaryB"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference symbol mismatch: after transform: ReferenceId(6): Some("console") rebuilt : ReferenceId(4): None @@ -22004,6 +25372,9 @@ tasks/coverage/typescript/tests/cases/compiler/sourceMapValidationDestructuringV semantic error: Bindings mismatch: after transform: ScopeId(0): ["Robot", "console", "nameB", "nameC", "primaryA", "primaryB", "robotA", "robotB", "secondaryA", "secondaryB"] rebuilt : ScopeId(0): ["nameB", "nameC", "primaryA", "primaryB", "robotA", "robotB", "secondaryA", "secondaryB"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference symbol mismatch: after transform: ReferenceId(7): Some("console") rebuilt : ReferenceId(4): None @@ -22106,6 +25477,9 @@ tasks/coverage/typescript/tests/cases/compiler/specedNoStackBlown.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ErrorMsg", "Predicate", "Result", "Spec", "SpecArray", "SpecFunction", "SpecObject", "SpecValue"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(9), ScopeId(11), ScopeId(14)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Array", "Partial", "ReadonlyArray", "spected", "true"] rebuilt : ["spected"] @@ -22114,6 +25488,9 @@ tasks/coverage/typescript/tests/cases/compiler/specializationError.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Promise"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/specializationOfExportedClass.ts semantic error: Missing SymbolId: M @@ -22148,11 +25525,17 @@ tasks/coverage/typescript/tests/cases/compiler/specializationsShouldNotAffectEac semantic error: Bindings mismatch: after transform: ScopeId(0): ["Series", "foo", "keyExtent2", "series"] rebuilt : ScopeId(0): ["foo", "keyExtent2", "series"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/specializeVarArgs1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Observable", "ObservableArray", "a", "observableArray"] rebuilt : ScopeId(0): ["a", "observableArray"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(4): ["T"] rebuilt : ScopeId(1): [] @@ -22161,6 +25544,9 @@ tasks/coverage/typescript/tests/cases/compiler/specializedInheritedConstructors1 semantic error: Bindings mismatch: after transform: ScopeId(0): ["Model", "MyView", "View", "ViewOptions", "aView", "aView2", "m", "myView"] rebuilt : ScopeId(0): ["Model", "MyView", "View", "aView", "aView2", "m", "myView"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] Bindings mismatch: after transform: ScopeId(2): ["TModel"] rebuilt : ScopeId(1): [] @@ -22177,7 +25563,10 @@ after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2)] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/compiler/specializedOverloadWithRestParameters.ts -semantic error: Symbol reference IDs 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)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6)] +Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2), ReferenceId(3), ReferenceId(5), ReferenceId(6)] rebuilt : SymbolId(0): [ReferenceId(0)] Symbol reference IDs mismatch: @@ -22188,16 +25577,25 @@ tasks/coverage/typescript/tests/cases/compiler/specializedSignatureInInterface.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/specializedSignatureOverloadReturnTypeWithIndexers.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "D"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(10)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/spreadBooleanRespectsFreshness.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "FooArray", "FooBase", "foo1", "foo2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(5): Some("foo1") rebuilt : ReferenceId(0): None @@ -22223,6 +25621,9 @@ tasks/coverage/typescript/tests/cases/compiler/spreadIdenticalTypesRemoved.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Animal", "Animal2", "billOwner", "clonePet"] rebuilt : ScopeId(0): ["billOwner", "clonePet"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/spreadIntersectionJsx.tsx semantic error: Symbol reference IDs mismatch: @@ -22236,6 +25637,9 @@ tasks/coverage/typescript/tests/cases/compiler/spreadObjectNoCircular1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Box", "Foo", "b"] rebuilt : ScopeId(0): ["Foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(2): [ReferenceId(0), ReferenceId(3)] rebuilt : SymbolId(0): [] @@ -22368,6 +25772,9 @@ tasks/coverage/typescript/tests/cases/compiler/spreadOfObjectLiteralAssignableTo semantic error: Bindings mismatch: after transform: ScopeId(0): ["RecordOfRecords", "RecordOfRecordsOrEmpty", "foo", "recordOfRecords", "recordsOfRecordsOrEmpty"] rebuilt : ScopeId(0): ["foo", "recordOfRecords", "recordsOfRecordsOrEmpty"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Record", "undefined"] rebuilt : ["undefined"] @@ -22381,9 +25788,15 @@ tasks/coverage/typescript/tests/cases/compiler/spreadTypeRemovesReadonly.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ReadonlyData", "clone", "data"] rebuilt : ScopeId(0): ["clone", "data"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/spreadsAndContextualTupleTypes.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] +Unresolved references mismatch: after transform: ["const", "foo", "fx1", "fx2"] rebuilt : ["foo", "fx1", "fx2"] @@ -22391,6 +25804,9 @@ tasks/coverage/typescript/tests/cases/compiler/spuriousCircularityOnTypeImport.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["SelectorMap"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Record"] rebuilt : [] @@ -22413,6 +25829,9 @@ 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"] +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"] @@ -22502,6 +25921,9 @@ tasks/coverage/typescript/tests/cases/compiler/staticFieldWithInterfaceContext.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "c", "c10", "c11", "c2", "c3", "c4", "c5", "c6", "c7", "c8", "c9", "ex", "f"] rebuilt : ScopeId(0): ["c", "c10", "c11", "c2", "c3", "c4", "c5", "c6", "c7", "c8", "c9", "ex", "f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16)] tasks/coverage/typescript/tests/cases/compiler/staticInitializersAndLegacyClassDecorators.ts semantic error: Bindings mismatch: @@ -22531,6 +25953,9 @@ tasks/coverage/typescript/tests/cases/compiler/staticInterfaceAssignmentCompat.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["Shape", "ShapeFactory", "x"] rebuilt : ScopeId(0): ["Shape", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2), ReferenceId(4)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(1)] @@ -22539,6 +25964,9 @@ tasks/coverage/typescript/tests/cases/compiler/staticPrototypePropertyOnClass.ts semantic error: Bindings mismatch: after transform: ScopeId(2): ["T"] rebuilt : ScopeId(2): [] +Scope children mismatch: +after transform: ScopeId(5): [ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(5): [ScopeId(6)] tasks/coverage/typescript/tests/cases/compiler/strictModeEnumMemberNameReserved.ts semantic error: Bindings mismatch: @@ -22558,6 +25986,9 @@ tasks/coverage/typescript/tests/cases/compiler/strictNullNotNullIndexTypeShouldW semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "Foo", "FooClass", "Test", "Test2"] rebuilt : ScopeId(0): ["FooClass", "Test", "Test2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] Bindings mismatch: after transform: ScopeId(2): ["T"] rebuilt : ScopeId(1): [] @@ -22571,10 +26002,21 @@ Unresolved references mismatch: after transform: ["Readonly"] rebuilt : [] +tasks/coverage/typescript/tests/cases/compiler/strictTypeofUnionNarrowing.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(5): [ScopeId(6)] +rebuilt : ScopeId(4): [] + tasks/coverage/typescript/tests/cases/compiler/stripMembersOptionality.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["someVal", "someVal2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(1): Some("someVal") rebuilt : ReferenceId(0): None @@ -22601,6 +26043,9 @@ rebuilt : ScopeId(1): ["_M", "f"] 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)] Symbol flags mismatch: after transform: SymbolId(2): SymbolFlags(FunctionScopedVariable | Export) rebuilt : SymbolId(2): SymbolFlags(FunctionScopedVariable) @@ -22612,6 +26057,9 @@ tasks/coverage/typescript/tests/cases/compiler/styledComponentsInstantiaionLimit semantic error: Bindings mismatch: after transform: ScopeId(0): ["AnyStyledComponent", "Defaultize", "FORWARD_REF_STATICS", "ForwardRefExoticBase", "IntrinsicElementsKeys", "KNOWN_STATICS", "MEMO_STATICS", "NonReactStatics", "REACT_STATICS", "React", "ReactDefaultizedProps", "StyledComponent", "StyledComponentBase", "StyledComponentInnerAttrs", "StyledComponentInnerComponent", "StyledComponentInnerOtherProps", "StyledComponentProps", "StyledComponentPropsWithAs", "StyledComponentPropsWithRef", "WithChildrenIfReactComponentClass", "WithOptionalTheme"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(9), ScopeId(10), ScopeId(12), ScopeId(16), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(30), ScopeId(32), ScopeId(35), ScopeId(38)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Exclude", "Extract", "JSX", "Omit", "Partial", "Pick", "true"] rebuilt : [] @@ -22620,6 +26068,9 @@ tasks/coverage/typescript/tests/cases/compiler/subclassThisTypeAssignable02.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "ClassComponent", "Component", "Lifecycle", "MyAttrs", "Vnode", "test8"] rebuilt : ScopeId(0): ["C", "test8"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(12): [ReferenceId(31), ReferenceId(33)] rebuilt : SymbolId(0): [ReferenceId(0)] @@ -22628,6 +26079,9 @@ tasks/coverage/typescript/tests/cases/compiler/subclassWithPolymorphicThisIsAssi semantic error: Bindings mismatch: after transform: ScopeId(0): ["CustomDocument", "Document", "Example"] rebuilt : ScopeId(0): ["Example"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(4): ["Z"] rebuilt : ScopeId(1): [] @@ -22639,6 +26093,9 @@ tasks/coverage/typescript/tests/cases/compiler/substituteReturnTypeSatisfiesCons semantic error: Bindings mismatch: after transform: ScopeId(0): ["FFG", "M", "O", "X"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["ReturnType"] rebuilt : [] @@ -22647,16 +26104,25 @@ tasks/coverage/typescript/tests/cases/compiler/substitutionTypeForIndexedAccessT semantic error: Bindings mismatch: after transform: ScopeId(0): ["AddPropToObject"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/substitutionTypeForIndexedAccessType2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo", "Str"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/substitutionTypeForNonGenericIndexedAccessType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Record"] rebuilt : [] @@ -22665,6 +26131,9 @@ tasks/coverage/typescript/tests/cases/compiler/substitutionTypeNoMergeOfAssignab semantic error: Bindings mismatch: after transform: ScopeId(0): ["Entity", "Entry", "Fields", "Nodes", "makeEntityStore", "myTest"] rebuilt : ScopeId(0): ["makeEntityStore", "myTest"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(8): ["T", "config"] rebuilt : ScopeId(1): ["config"] @@ -22676,6 +26145,9 @@ tasks/coverage/typescript/tests/cases/compiler/substitutionTypePassedToExtends.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar1", "Bar2", "Foo1", "Foo2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Set"] rebuilt : [] @@ -22684,6 +26156,9 @@ tasks/coverage/typescript/tests/cases/compiler/substitutionTypesCompareCorrectly semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bug", "BugHelper", "Q", "R", "UnionKeys"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Exclude"] rebuilt : [] @@ -22692,11 +26167,17 @@ tasks/coverage/typescript/tests/cases/compiler/substitutionTypesInIndexedAccessT semantic error: Bindings mismatch: after transform: ScopeId(0): ["Subset", "UserArgs", "boundaryResult", "withoutBoundaryResult"] rebuilt : ScopeId(0): ["boundaryResult", "withoutBoundaryResult"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/subtypeReductionUnionConstraints.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "BarNode", "Document", "FooNode", "Node", "f1", "visitNodes"] rebuilt : ScopeId(0): ["f1", "visitNodes"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Bindings mismatch: after transform: ScopeId(7): ["T", "node", "predicate"] rebuilt : ScopeId(1): ["node", "predicate"] @@ -22763,17 +26244,26 @@ after transform: SymbolId(2): [] rebuilt : SymbolId(3): [ReferenceId(4)] tasks/coverage/typescript/tests/cases/compiler/superCallFromClassThatDerivesFromGenericType1.ts -semantic error: Unresolved reference IDs mismatch for "B": +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] +Unresolved reference IDs mismatch for "B": after transform: [ReferenceId(0), ReferenceId(2), ReferenceId(3)] rebuilt : [ReferenceId(0)] tasks/coverage/typescript/tests/cases/compiler/superCallFromClassThatDerivesFromGenericType2.ts -semantic error: Unresolved reference IDs mismatch for "B": +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] +Unresolved reference IDs mismatch for "B": after transform: [ReferenceId(0), ReferenceId(2)] rebuilt : [ReferenceId(0)] tasks/coverage/typescript/tests/cases/compiler/superHasMethodsFromMergedInterface.ts -semantic error: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(Class | Interface) rebuilt : SymbolId(0): SymbolFlags(Class) Symbol redeclarations mismatch: @@ -22792,7 +26282,10 @@ after transform: SymbolId(2): [ReferenceId(3)] rebuilt : SymbolId(1): [] tasks/coverage/typescript/tests/cases/compiler/superWithGenerics.ts -semantic error: Unresolved reference IDs mismatch for "B": +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] +Unresolved reference IDs mismatch for "B": after transform: [ReferenceId(0), ReferenceId(2), ReferenceId(3)] rebuilt : [ReferenceId(0)] @@ -22805,6 +26298,9 @@ tasks/coverage/typescript/tests/cases/compiler/symbolLinkDeclarationEmitModuleNa semantic error: Bindings mismatch: after transform: ScopeId(0): ["Constructor", "ControllerClass"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/symbolMergeValueAndImportedType.ts semantic error: Symbol flags mismatch: @@ -22828,14 +26324,17 @@ after transform: ScopeId(0): ["a"] rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/systemModule15.ts -semantic error: Bindings mismatch: -after transform: ScopeId(0): ["moduleC", "moduleCStar", "value", "value2"] -rebuilt : ScopeId(0): ["moduleC", "moduleCStar", "value"] +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/systemModule17.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "I"] rebuilt : ScopeId(0): ["A"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/systemModule18.ts semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. @@ -22849,6 +26348,9 @@ Missing ReferenceId: 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(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Binding symbols mismatch: after transform: ScopeId(1): [SymbolId(1), SymbolId(3)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] @@ -22860,6 +26362,9 @@ tasks/coverage/typescript/tests/cases/compiler/systemModuleAmbientDeclarations.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["E", "c", "e", "foo", "promise"] rebuilt : ScopeId(0): ["c", "e", "foo", "promise"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(3): Some("E") rebuilt : ReferenceId(3): None @@ -22877,6 +26382,9 @@ Missing ReferenceId: M Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(1), SymbolId(3), SymbolId(4)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(2), SymbolId(3)] +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): ["TopLevelConstEnum", "X"] rebuilt : ScopeId(1): ["TopLevelConstEnum"] @@ -22918,6 +26426,9 @@ Missing ReferenceId: M Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(1), SymbolId(3), SymbolId(4)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(2), SymbolId(3)] +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): ["TopLevelConstEnum", "X"] rebuilt : ScopeId(1): ["TopLevelConstEnum"] @@ -23114,6 +26625,11 @@ Reference symbol mismatch: after transform: ReferenceId(2): Some("ns") rebuilt : ReferenceId(10): Some("ns") +tasks/coverage/typescript/tests/cases/compiler/taggedTemplateStringWithSymbolExpression01.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/taggedTemplatesInDifferentScopes.ts semantic error: Unresolved references mismatch: after transform: ["TemplateStringsArray"] @@ -23149,11 +26665,17 @@ tasks/coverage/typescript/tests/cases/compiler/templateExpressionAsPossiblyDiscr semantic error: Bindings mismatch: after transform: ScopeId(0): ["BiomeButtonProps", "BiomePlainLinkProps", "ClickableDiscriminatedUnion", "p3"] rebuilt : ScopeId(0): ["p3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/templateExpressionNoInlininingOfConstantBindingWithInitializer.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Params", "example", "example2"] rebuilt : ScopeId(0): ["example", "example2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/templateLiteralConstantEvaluation.ts semantic error: Bindings mismatch: @@ -23167,6 +26689,9 @@ tasks/coverage/typescript/tests/cases/compiler/templateLiteralIntersection.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "E", "MixA", "MixB", "MixC", "MixD", "MixE", "OriginA1", "OriginA2", "OriginB1", "OriginB2", "OriginC", "OriginD", "OriginE", "OriginF", "a"] rebuilt : ScopeId(0): ["a"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16)] +rebuilt : ScopeId(0): [] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(4)] rebuilt : SymbolId(0): [] @@ -23175,6 +26700,9 @@ tasks/coverage/typescript/tests/cases/compiler/templateLiteralIntersection3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Path", "lowercasePath", "options1", "path"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(1): Some("options1") rebuilt : ReferenceId(0): None @@ -23198,6 +26726,9 @@ tasks/coverage/typescript/tests/cases/compiler/templateLiteralIntersection4.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Provider", "StateHook", "StoreUtils", "useAge", "useStore", "useUsername"] rebuilt : ScopeId(0): ["Provider", "useAge", "useStore", "useUsername"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Capitalize", "Omit", "createStore"] rebuilt : ["createStore"] @@ -23232,14 +26763,23 @@ tasks/coverage/typescript/tests/cases/compiler/testTypings.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IComparable"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/thisConditionalOnMethodReturnOfGenericInstance.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(2): [] +Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(3): [] Bindings mismatch: after transform: ScopeId(6): ["T"] rebuilt : ScopeId(4): [] @@ -23307,14 +26847,23 @@ tasks/coverage/typescript/tests/cases/compiler/thisInTupleTypeParameterConstrain semantic error: Bindings mismatch: after transform: ScopeId(0): ["Array", "Boolean", "Function", "IArguments", "Number", "Object", "RegExp", "String", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(13)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/thisInTypeQuery.ts semantic error: Bindings mismatch: after transform: ScopeId(4): ["Key", "params"] rebuilt : ScopeId(4): ["params"] +Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(4): [] Bindings mismatch: after transform: ScopeId(8): ["T0"] rebuilt : ScopeId(7): [] +Scope children mismatch: +after transform: ScopeId(8): [ScopeId(9)] +rebuilt : ScopeId(7): [] Unresolved references mismatch: after transform: ["Error", "this"] rebuilt : ["Error"] @@ -23323,6 +26872,9 @@ tasks/coverage/typescript/tests/cases/compiler/thisIndexOnExistingReadonlyFieldI semantic error: Bindings mismatch: after transform: ScopeId(0): ["AnchorType", "CoachMarkAnchorDecorator", "CoachMarkAnchorProps"] rebuilt : ScopeId(0): ["CoachMarkAnchorDecorator"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(5): ["P", "anchor"] rebuilt : ScopeId(2): ["anchor"] @@ -23357,6 +26909,9 @@ tasks/coverage/typescript/tests/cases/compiler/tooFewArgumentsInGenericFunctionT semantic error: Bindings mismatch: after transform: ScopeId(0): ["Collection", "Combinators", "_", "c2", "r1a", "r1b", "rf1"] rebuilt : ScopeId(0): ["_", "c2", "r1a", "r1b", "rf1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/topLevel.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -23365,16 +26920,27 @@ tasks/coverage/typescript/tests/cases/compiler/topLevelBlockExpando.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Person"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/transformNestedGeneratorsWithTry.ts semantic error: Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2)] rebuilt : SymbolId(0): [ReferenceId(0)] +tasks/coverage/typescript/tests/cases/compiler/transformsElideNullUndefinedType.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(28), ScopeId(30), ScopeId(32), ScopeId(34), ScopeId(35)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(28), ScopeId(30), ScopeId(32)] + tasks/coverage/typescript/tests/cases/compiler/transitiveTypeArgumentInference1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I1", "c", "i"] rebuilt : ScopeId(0): ["C", "c", "i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(1): [] @@ -23383,6 +26949,9 @@ tasks/coverage/typescript/tests/cases/compiler/trivialSubtypeReductionNoStructur semantic error: Bindings mismatch: after transform: ScopeId(0): ["Wizard", "WizardStepProps", "props"] rebuilt : ScopeId(0): ["Wizard"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(1): [ReferenceId(1), ReferenceId(4)] rebuilt : SymbolId(0): [] @@ -23397,6 +26966,9 @@ tasks/coverage/typescript/tests/cases/compiler/truthinessCallExpressionCoercion3 semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "f", "g"] rebuilt : ScopeId(0): ["f", "g"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/tslibReExportHelpers.ts semantic error: Bindings mismatch: @@ -23413,11 +26985,17 @@ tasks/coverage/typescript/tests/cases/compiler/tsxAttributeQuickinfoTypesSameAsO semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "JSX", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["Foo", "_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/tsxAttributesHasInferrableIndex.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["AttributeValue", "Attributes", "Button", "_jsxFileName", "b", "createElement"] rebuilt : ScopeId(0): ["Button", "_jsxFileName", "b", "createElement"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Symbol flags mismatch: after transform: SymbolId(2): SymbolFlags(BlockScopedVariable | Function | NameSpaceModule | ValueModule) rebuilt : SymbolId(1): SymbolFlags(BlockScopedVariable | Function) @@ -23446,6 +27024,9 @@ tasks/coverage/typescript/tests/cases/compiler/tsxDiscriminantPropertyInference. semantic error: Bindings mismatch: after transform: ScopeId(0): ["DiscriminatorFalse", "DiscriminatorTrue", "JSX", "Props", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Unresolved references mismatch: after transform: ["Comp", "JSX", "parseInt", "require", "true", "undefined"] rebuilt : ["Comp", "parseInt", "require", "undefined"] @@ -23465,6 +27046,9 @@ tasks/coverage/typescript/tests/cases/compiler/tsxInferenceShouldNotYieldAnyOnUn semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "Props", "PropsBase", "PropsWithConvert", "ShouldInferFromData", "_jsxFileName", "_reactJsxRuntime", "f1", "f2", "f3"] rebuilt : ScopeId(0): ["ShouldInferFromData", "_jsxFileName", "_reactJsxRuntime", "f1", "f2", "f3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] Bindings mismatch: after transform: ScopeId(6): ["T", "props"] rebuilt : ScopeId(1): ["props"] @@ -23476,6 +27060,9 @@ tasks/coverage/typescript/tests/cases/compiler/tsxReactPropsInferenceSucceedsOnI semantic error: Bindings mismatch: after transform: ScopeId(0): ["ButtonProps", "CustomButton", "CustomButtonProps", "React", "_jsxFileName"] rebuilt : ScopeId(0): ["CustomButton", "React", "_jsxFileName"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(3), ReferenceId(7), ReferenceId(12)] rebuilt : SymbolId(1): [ReferenceId(0)] @@ -23492,16 +27079,25 @@ tasks/coverage/typescript/tests/cases/compiler/tsxStatelessComponentDefaultProps semantic error: Bindings mismatch: after transform: ScopeId(0): ["BackButton", "Props", "React", "_jsxFileName", "a"] rebuilt : ScopeId(0): ["BackButton", "React", "_jsxFileName", "a"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/tsxUnionMemberChecksFilterDataProps.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["React", "ReactElement", "RootHappy", "RootNotHappy", "_jsxFileName"] rebuilt : ScopeId(0): ["React", "RootHappy", "RootNotHappy", "_jsxFileName"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/tsxUnionSpread.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["AnimalComponent", "AnimalInfo", "CatInfo", "DogInfo", "JSX", "_jsxFileName", "_reactJsxRuntime", "component", "component2", "getProps", "props", "props2"] rebuilt : ScopeId(0): ["AnimalComponent", "_jsxFileName", "_reactJsxRuntime", "component", "component2", "getProps", "props", "props2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Unresolved references mismatch: after transform: ["JSX", "require", "undefined"] rebuilt : ["require", "undefined"] @@ -23510,6 +27106,9 @@ tasks/coverage/typescript/tests/cases/compiler/tupleTypeInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["$q", "IPromise", "IQService", "a", "b", "c"] rebuilt : ScopeId(0): ["a", "b", "c"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(6)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(29): Some("$q") rebuilt : ReferenceId(0): None @@ -23545,11 +27144,17 @@ tasks/coverage/typescript/tests/cases/compiler/tupleTypeInference2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "C2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/twiceNestedKeyofIndexInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Set1", "Set2", "State", "newState", "state"] rebuilt : ScopeId(0): ["newState", "state"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Exclude", "Pick", "Required", "set"] rebuilt : ["set"] @@ -23558,17 +27163,29 @@ tasks/coverage/typescript/tests/cases/compiler/typeAliasDeclarationEmit3.ts semantic error: Bindings mismatch: after transform: ScopeId(2): ["foo", "i"] rebuilt : ScopeId(2): ["i"] +Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3), ScopeId(8)] +rebuilt : ScopeId(2): [ScopeId(3)] Bindings mismatch: after transform: ScopeId(4): ["foo"] rebuilt : ScopeId(4): [] +Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(9)] +rebuilt : ScopeId(4): [ScopeId(5)] Bindings mismatch: after transform: ScopeId(6): ["foo"] rebuilt : ScopeId(6): [] +Scope children mismatch: +after transform: ScopeId(6): [ScopeId(7), ScopeId(10)] +rebuilt : ScopeId(6): [ScopeId(7)] tasks/coverage/typescript/tests/cases/compiler/typeAliasDoesntMakeModuleInstantiated.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["m"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Function", "m"] rebuilt : [] @@ -23577,6 +27194,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeAliasExport.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["a"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["undefined"] rebuilt : [] @@ -23585,9 +27205,15 @@ tasks/coverage/typescript/tests/cases/compiler/typeAliasFunctionTypeSharedSymbol semantic error: Bindings mismatch: after transform: ScopeId(0): ["Crashes", "Mixin", "ReturnTypeOf"] rebuilt : ScopeId(0): ["Mixin"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(1): ["Base", "TBase"] rebuilt : ScopeId(1): ["Base"] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2)] Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(FunctionScopedVariable | TypeAlias) rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) @@ -23602,16 +27228,25 @@ tasks/coverage/typescript/tests/cases/compiler/typeAnnotationBestCommonTypeInArr semantic error: Bindings mismatch: after transform: ScopeId(0): ["IMenuItem", "menuData"] rebuilt : ScopeId(0): ["menuData"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/typeArgInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "o", "t1", "t2", "t3", "t4", "x"] rebuilt : ScopeId(0): ["o", "t1", "t2", "t3", "t4", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/typeArgInference2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Item", "z1", "z2", "z3", "z4", "z5", "z6"] rebuilt : ScopeId(0): ["z1", "z2", "z3", "z4", "z5", "z6"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/typeArgInferenceWithNull.ts semantic error: Bindings mismatch: @@ -23647,6 +27282,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeArgumentInferenceOrdering.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "Goo", "I", "foo", "x"] rebuilt : ScopeId(0): ["C", "foo", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(5): ["T", "f"] rebuilt : ScopeId(2): ["f"] @@ -23655,11 +27293,17 @@ tasks/coverage/typescript/tests/cases/compiler/typeArgumentInferenceWithRecursiv semantic error: Bindings mismatch: after transform: ScopeId(0): ["TreeNode", "nodes"] rebuilt : ScopeId(0): ["nodes"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/typeArgumentInferenceWithRecursivelyReferencedTypeAliasToTypeLiteral02.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["TreeNode", "TreeNodeMiddleman", "nodes"] rebuilt : ScopeId(0): ["nodes"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/typeArgumentsInFunctionExpressions.ts semantic error: Bindings mismatch: @@ -23673,6 +27317,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeConstraintsWithConstructSigna semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "Constructable"] rebuilt : ScopeId(0): ["C"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(1): [] @@ -23703,6 +27350,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowByMutableUntypedFi semantic error: Bindings mismatch: after transform: ScopeId(0): ["arrayLikeOrIterable"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(6): Some("arrayLikeOrIterable") rebuilt : ReferenceId(1): None @@ -23717,6 +27367,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowByUntypedField.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["arrayLikeOrIterable"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(6): Some("arrayLikeOrIterable") rebuilt : ReferenceId(1): None @@ -23731,11 +27384,17 @@ tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowsIndexedAccessOfKn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "Circle", "Rectangle", "Shape", "Square", "Subshape", "X", "Y", "Z", "area", "check", "g", "subarea"] rebuilt : ScopeId(0): ["area", "check", "g", "subarea"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(19)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(8)] tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowsIndexedAccessOfKnownProperty11.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E", "m"] rebuilt : ScopeId(0): ["E"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["A", "B", "E"] rebuilt : ScopeId(1): ["E"] @@ -23762,6 +27421,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowsIndexedAccessOfKn semantic error: Bindings mismatch: after transform: ScopeId(0): ["E", "m"] rebuilt : ScopeId(0): ["E"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["A", "B", "E"] rebuilt : ScopeId(1): ["E"] @@ -23793,16 +27455,25 @@ tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowsIndexedAccessOfKn semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "foo", "index"] rebuilt : ScopeId(0): ["foo", "index"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowsIndexedAccessOfKnownProperty5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "a", "aIndex", "b", "bIndex", "c", "cIndex"] rebuilt : ScopeId(0): ["a", "aIndex", "b", "bIndex", "c", "cIndex"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/typeGuardNarrowsIndexedAccessOfKnownProperty6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "a", "aIndex", "b", "bIndex", "c", "cIndex"] rebuilt : ScopeId(0): ["a", "b", "c"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Reference symbol mismatch: after transform: ReferenceId(1): Some("aIndex") rebuilt : ReferenceId(1): None @@ -23880,6 +27551,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeInferenceCacheInvalidation.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Callback"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/typeInferenceFBoundedTypeParams.ts semantic error: Bindings mismatch: @@ -23889,10 +27563,18 @@ Bindings mismatch: after transform: ScopeId(4): ["a", "b", "value", "values"] rebuilt : ScopeId(4): ["value", "values"] +tasks/coverage/typescript/tests/cases/compiler/typeInferenceFixEarly.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/typeInferenceLiteralUnion.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["NumCoercible", "Numeric", "Primitive", "extent", "extentMixed"] rebuilt : ScopeId(0): ["NumCoercible", "extent", "extentMixed"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] Bindings mismatch: after transform: ScopeId(7): ["T", "array"] rebuilt : ScopeId(4): ["array"] @@ -23907,6 +27589,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeInferenceReturnTypeCallback.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["Cons", "IList", "Nil"] rebuilt : ScopeId(0): ["Cons", "Nil"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Bindings mismatch: after transform: ScopeId(3): ["C"] rebuilt : ScopeId(1): [] @@ -23923,10 +27608,18 @@ Bindings mismatch: after transform: ScopeId(8): ["E", "f", "z"] rebuilt : ScopeId(6): ["f", "z"] +tasks/coverage/typescript/tests/cases/compiler/typeInferenceTypePredicate.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/typeInferenceWithExcessProperties.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Named", "parrot"] rebuilt : ScopeId(0): ["parrot"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(2): ["T", "obj"] rebuilt : ScopeId(1): ["obj"] @@ -23937,6 +27630,9 @@ Missing ReferenceId: require Bindings mismatch: after transform: ScopeId(0): ["React", "TProps", "TranslationEntry", "Translations", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["React", "_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["JSX", "T", "require"] rebuilt : ["T", "require"] @@ -23944,15 +27640,26 @@ Unresolved reference IDs mismatch for "require": after transform: [ReferenceId(13)] rebuilt : [ReferenceId(0), ReferenceId(1)] +tasks/coverage/typescript/tests/cases/compiler/typeInferenceWithTypeAnnotation.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/typeLiteralCallback.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "bar", "foo", "test"] rebuilt : ScopeId(0): ["foo", "test"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/typeOfYieldWithUnionInContextualReturnType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AsyncSequenceFactory", "SequenceFactory", "SyncSequenceFactory", "asyncFactory", "looserAsyncFactory", "looserSyncFactory", "syncFactory"] rebuilt : ScopeId(0): ["asyncFactory", "looserAsyncFactory", "looserSyncFactory", "syncFactory"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7)] Unresolved references mismatch: after transform: ["AsyncGenerator", "Generator"] rebuilt : [] @@ -23988,6 +27695,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeParameterCompatibilityAccross semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "I2", "a", "a2", "i", "i2"] rebuilt : ScopeId(0): ["a", "a2", "i", "i2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["T", "y"] rebuilt : ScopeId(1): ["y"] @@ -23996,11 +27706,17 @@ tasks/coverage/typescript/tests/cases/compiler/typeParameterConstrainedToOuterTy semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "a", "b"] rebuilt : ScopeId(0): ["a", "b"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/typeParameterConstraintInstantiation.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Mapper", "a", "m"] rebuilt : ScopeId(0): ["a", "m"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/typeParameterDiamond1.ts semantic error: Bindings mismatch: @@ -24013,6 +27729,11 @@ Bindings mismatch: after transform: ScopeId(3): ["Bottom", "bottom", "middle", "top"] rebuilt : ScopeId(3): ["bottom", "middle", "top"] +tasks/coverage/typescript/tests/cases/compiler/typeParameterDoesntBlockParameterLookup.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/typeParameterEquality.ts semantic error: Bindings mismatch: after transform: ScopeId(2): ["T"] @@ -24050,6 +27771,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeParameterExtendsPrimitive.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "IdMap", "f", "g", "h"] rebuilt : ScopeId(0): ["f", "g", "h"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(1): ["T", "t", "v"] rebuilt : ScopeId(1): ["t", "v"] @@ -24067,11 +27791,17 @@ tasks/coverage/typescript/tests/cases/compiler/typeParameterFixingWithConstraint semantic error: Bindings mismatch: after transform: ScopeId(0): ["IBar", "IFoo", "foo"] rebuilt : ScopeId(0): ["foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/compiler/typeParameterFixingWithContextSensitiveArguments.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "a", "b", "d", "d2", "d3", "f"] rebuilt : ScopeId(0): ["a", "b", "d", "d2", "d3", "f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Bindings mismatch: after transform: ScopeId(1): ["T", "U", "f", "x", "y"] rebuilt : ScopeId(1): ["f", "x", "y"] @@ -24080,6 +27810,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeParameterFixingWithContextSen semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "a", "b", "d", "f"] rebuilt : ScopeId(0): ["a", "b", "d", "f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(1): ["T", "U", "p", "p1", "y", "y1"] rebuilt : ScopeId(1): ["p", "p1", "y", "y1"] @@ -24088,6 +27821,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeParameterFixingWithContextSen semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "a", "b", "d", "f"] rebuilt : ScopeId(0): ["a", "b", "d", "f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(1): ["T", "U", "pf1", "pf2", "t1", "u1"] rebuilt : ScopeId(1): ["pf1", "pf2", "t1", "u1"] @@ -24101,6 +27837,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeParameterLeak.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Box", "BoxFactory", "BoxFactoryFactory", "BoxTypes", "b", "f"] rebuilt : ScopeId(0): ["b"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(11): Some("f") rebuilt : ReferenceId(0): None @@ -24117,6 +27856,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeParameterOrderReversal.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["X", "tFirst", "uFirst", "z"] rebuilt : ScopeId(0): ["tFirst", "uFirst", "z"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(2): ["T", "U", "x"] rebuilt : ScopeId(1): ["x"] @@ -24128,6 +27870,9 @@ tasks/coverage/typescript/tests/cases/compiler/typePartameterConstraintInstantia semantic error: Bindings mismatch: after transform: ScopeId(0): ["Identity", "Settable", "Test1", "Test2", "Test2Base", "test1", "test2"] rebuilt : ScopeId(0): ["Identity", "test1", "test2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(3): ["V"] rebuilt : ScopeId(1): [] @@ -24139,6 +27884,9 @@ tasks/coverage/typescript/tests/cases/compiler/typePredicateAcceptingPartialOfRe semantic error: Bindings mismatch: after transform: ScopeId(0): ["Options", "Test"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Partial"] rebuilt : [] @@ -24147,6 +27895,9 @@ tasks/coverage/typescript/tests/cases/compiler/typePredicateFreshLiteralWidening semantic error: Bindings mismatch: after transform: ScopeId(0): ["Item", "Narrow", "Narrowable", "filteredValues1", "filteredValues2", "isNotNull", "item1", "item2", "item3", "satisfies", "values1", "values2"] rebuilt : ScopeId(0): ["filteredValues1", "filteredValues2", "isNotNull", "item1", "item2", "item3", "satisfies", "values1", "values2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] Bindings mismatch: after transform: ScopeId(5): ["TWide"] rebuilt : ScopeId(1): [] @@ -24164,6 +27915,9 @@ tasks/coverage/typescript/tests/cases/compiler/typePredicateStructuralMatch.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Result", "Results", "getResults1", "getResults2", "isPlainResponse", "isResponseInData"] rebuilt : ScopeId(0): ["getResults1", "getResults2", "isPlainResponse", "isResponseInData"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Bindings mismatch: after transform: ScopeId(3): ["T", "value"] rebuilt : ScopeId(1): ["value"] @@ -24180,6 +27934,9 @@ tasks/coverage/typescript/tests/cases/compiler/typePredicateWithThisParameter.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo", "isFoo1", "isFoo2", "test"] rebuilt : ScopeId(0): ["isFoo1", "isFoo2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Reference symbol mismatch: after transform: ReferenceId(7): Some("test") rebuilt : ReferenceId(3): None @@ -24200,6 +27957,9 @@ tasks/coverage/typescript/tests/cases/compiler/typePredicatesCanNarrowByDiscrimi semantic error: Bindings mismatch: after transform: ScopeId(0): ["fruit", "fruit2", "kind"] rebuilt : ScopeId(0): ["kind"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference symbol mismatch: after transform: ReferenceId(5): Some("fruit") rebuilt : ReferenceId(1): None @@ -24226,9 +27986,15 @@ tasks/coverage/typescript/tests/cases/compiler/typePredicatesInUnion.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "Or", "f"] rebuilt : ScopeId(0): ["f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/typePredicatesInUnion2.ts -semantic error: Unresolved reference IDs mismatch for "isString": +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] +Unresolved reference IDs mismatch for "isString": after transform: [ReferenceId(0), ReferenceId(3)] rebuilt : [ReferenceId(1)] Unresolved reference IDs mismatch for "isNumber": @@ -24239,11 +28005,17 @@ tasks/coverage/typescript/tests/cases/compiler/typePredicatesInUnion_noMatch.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "Or", "f"] rebuilt : ScopeId(0): ["f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/typePredicatesOptionalChaining1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["X", "isNotNull", "title", "x"] rebuilt : ScopeId(0): ["isNotNull", "title", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(2): ["A", "x"] rebuilt : ScopeId(1): ["x"] @@ -24255,11 +28027,17 @@ tasks/coverage/typescript/tests/cases/compiler/typePredicatesOptionalChaining2.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["Person", "getName1", "getName2", "isString"] rebuilt : ScopeId(0): ["getName1", "getName2", "isString"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/compiler/typePredicatesOptionalChaining3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Animal", "Breed", "getBreedSizeWithFunction", "getBreedSizeWithoutFunction"] rebuilt : ScopeId(0): ["getBreedSizeWithFunction", "getBreedSizeWithoutFunction"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] tasks/coverage/typescript/tests/cases/compiler/typeResolution.ts semantic error: Missing SymbolId: TopLevelModule1 @@ -24327,6 +28105,9 @@ rebuilt : ScopeId(1): ["ClassA", "NotExportedModule", "SubModule1", "SubM 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(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)] @@ -24339,18 +28120,27 @@ rebuilt : ScopeId(3): ["ClassA", "ClassB", "NonExportedClassQ", "_SubSubM Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(3): ScopeFlags(Function) +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"] Scope flags mismatch: after transform: ScopeId(16): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(14): ScopeFlags(Function) +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"] Scope flags mismatch: after transform: ScopeId(17): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(15): ScopeFlags(Function) +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)] Binding symbols mismatch: after transform: ScopeId(33): [SymbolId(48), SymbolId(57)] rebuilt : ScopeId(24): [SymbolId(48), SymbolId(49)] @@ -24416,7 +28206,10 @@ after transform: ["SubModule1", "SubSubModule1", "TopLevelModule1", "TopLevelMod rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/typeVal.ts -semantic error: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(FunctionScopedVariable | Interface) rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) Symbol span mismatch: @@ -24433,6 +28226,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeVariableConstraintIntersectio semantic error: Bindings mismatch: after transform: ScopeId(0): ["OptionHandlers", "OptionOne", "OptionTwo", "Options", "T00", "T01", "T02", "T10", "T11", "T12", "T20", "T21", "T22", "T23", "T30", "T31", "T32", "T33", "T40", "T41", "T42", "T43", "T50", "T51", "T52", "T53", "T54", "T55", "T60", "T61", "T62", "T63", "T70", "T71", "T72", "T73", "foo", "handleOption", "optionHandlers"] rebuilt : ScopeId(0): ["foo", "handleOption", "optionHandlers"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(47), ScopeId(48), ScopeId(49)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(7), ScopeId(8), ScopeId(9)] Bindings mismatch: after transform: ScopeId(36): ["K", "x"] rebuilt : ScopeId(1): ["x"] @@ -24444,6 +28240,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeVariableTypeGuards.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "Banana", "BigBanana", "BigMonkey", "Foo", "Item", "Monkey", "f1", "f2", "f3", "f4", "f5", "f6"] rebuilt : ScopeId(0): ["A", "BigMonkey", "Monkey", "f1", "f2", "f3", "f4", "f5", "f6"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(6), ScopeId(7), ScopeId(11), ScopeId(12), ScopeId(15), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(8), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(21)] Bindings mismatch: after transform: ScopeId(3): ["P"] rebuilt : ScopeId(1): [] @@ -24509,6 +28308,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeofImportInstantiationExpressi semantic error: Bindings mismatch: after transform: ScopeId(0): ["Arg", "myFunction"] rebuilt : ScopeId(0): ["myFunction"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(2): ["T", "U", "arg"] rebuilt : ScopeId(1): ["arg"] @@ -24517,7 +28319,10 @@ after transform: ["Record", "true"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/typeofInterface.ts -semantic error: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(FunctionScopedVariable | Interface) rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch: @@ -24534,6 +28339,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeofObjectInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["First", "a", "b", "c", "d", "decorateA", "decorateB", "decorateC", "decorateD", "val"] rebuilt : ScopeId(0): ["a", "b", "c", "d", "decorateA", "decorateB", "decorateC", "decorateD", "val"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(12)] Bindings mismatch: after transform: ScopeId(1): ["O", "fn"] rebuilt : ScopeId(1): ["fn"] @@ -24559,6 +28367,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeofStripsFreshness.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ALL", "ANOTHER", "All", "Another", "Both", "Collection", "CollectionStatic", "result", "result2"] rebuilt : ScopeId(0): ["ALL", "ANOTHER", "result", "result2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [] Symbol reference IDs mismatch: after transform: SymbolId(4): [ReferenceId(4)] rebuilt : SymbolId(0): [] @@ -24584,6 +28395,9 @@ tasks/coverage/typescript/tests/cases/compiler/typeofUsedBeforeBlockScoped.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "T", "W", "o", "o2"] rebuilt : ScopeId(0): ["C", "o", "o2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(1): [ReferenceId(0), ReferenceId(1)] rebuilt : SymbolId(0): [] @@ -24746,6 +28560,9 @@ tasks/coverage/typescript/tests/cases/compiler/undefinedAsDiscriminantWithUnknow semantic error: Bindings mismatch: after transform: ScopeId(0): ["S", "s"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference symbol mismatch: after transform: ReferenceId(1): Some("s") rebuilt : ReferenceId(0): None @@ -24788,6 +28605,9 @@ tasks/coverage/typescript/tests/cases/compiler/underscoreMapFirst.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IData", "ISeries", "MyView", "_"] rebuilt : ScopeId(0): ["MyView"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/unexportedInstanceClassVariables.ts semantic error: Missing SymbolId: M @@ -24817,6 +28637,9 @@ tasks/coverage/typescript/tests/cases/compiler/unionCallMixedTypeParameterPresen semantic error: Bindings mismatch: after transform: ScopeId(0): ["Err", "Ok", "e", "e2"] rebuilt : ScopeId(0): ["e2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(10): Some("e") rebuilt : ReferenceId(0): None @@ -24828,11 +28651,17 @@ tasks/coverage/typescript/tests/cases/compiler/unionExcessPropertyCheckNoApparen semantic error: Bindings mismatch: after transform: ScopeId(0): ["INumberDictionary", "IStringDictionary", "count"] rebuilt : ScopeId(0): ["count"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/unionExcessPropsWithPartialMember.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "a", "ab"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(3): Some("ab") rebuilt : ReferenceId(0): None @@ -24847,11 +28676,17 @@ tasks/coverage/typescript/tests/cases/compiler/unionOfArraysFilterCall.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Buzz", "Fizz"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] tasks/coverage/typescript/tests/cases/compiler/unionOfClassCalls.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "a", "arr", "arr1", "arr2", "tmp"] rebuilt : ScopeId(0): ["arr", "arr1", "arr2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(17), ScopeId(18), ScopeId(19)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] Reference symbol mismatch: after transform: ReferenceId(9): Some("tmp") rebuilt : ReferenceId(0): None @@ -24866,6 +28701,9 @@ tasks/coverage/typescript/tests/cases/compiler/unionOfEnumInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Enum", "Interface", "bar", "foo"] rebuilt : ScopeId(0): ["Enum", "bar", "foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(1): ["A", "B", "C", "Enum"] rebuilt : ScopeId(1): ["Enum"] @@ -24897,6 +28735,12 @@ tasks/coverage/typescript/tests/cases/compiler/unionReductionMutualSubtypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ReturnVal", "k", "run", "val"] rebuilt : ScopeId(0): ["k", "run"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] +Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(2): [] Reference symbol mismatch: after transform: ReferenceId(3): Some("val") rebuilt : ReferenceId(1): None @@ -24905,7 +28749,10 @@ after transform: [] rebuilt : ["val"] tasks/coverage/typescript/tests/cases/compiler/unionReductionWithStringMappingAndIdenticalBaseTypeExistsNoCrash.tsx -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] +Unresolved references mismatch: after transform: ["Capitalize", "upperFirst"] rebuilt : ["upperFirst"] @@ -24913,11 +28760,17 @@ tasks/coverage/typescript/tests/cases/compiler/unionSignaturesWithThisParameter. semantic error: Bindings mismatch: after transform: ScopeId(1): ["T", "ctor", "t"] rebuilt : ScopeId(1): ["ctor", "t"] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/compiler/unionTypeParameterInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "unlift"] rebuilt : ScopeId(0): ["unlift"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(3): ["U", "value"] rebuilt : ScopeId(1): ["value"] @@ -24926,16 +28779,25 @@ tasks/coverage/typescript/tests/cases/compiler/unionTypeWithIndexAndMethodSignat semantic error: Bindings mismatch: after transform: ScopeId(0): ["Options"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/unionTypeWithIndexAndTuple.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "f"] rebuilt : ScopeId(0): ["f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/unionTypeWithIndexedLiteralType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "Idx", "U", "u"] rebuilt : ScopeId(0): ["u"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/unionTypeWithRecursiveSubtypeReduction1.ts semantic error: Symbol reference IDs mismatch: @@ -24955,6 +28817,9 @@ tasks/coverage/typescript/tests/cases/compiler/unionWithIndexSignature.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["NumList", "StrList", "TypedArray", "flatten", "foo", "isTypedArray"] rebuilt : ScopeId(0): ["flatten", "foo", "isTypedArray"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(3): ["T", "arr", "zz"] rebuilt : ScopeId(1): ["arr", "zz"] @@ -24972,6 +28837,9 @@ tasks/coverage/typescript/tests/cases/compiler/uniqueSymbolAssignmentOnGlobalAug semantic error: Bindings mismatch: after transform: ScopeId(0): ["FOO_SYMBOL", "foo", "global"] rebuilt : ScopeId(0): ["FOO_SYMBOL", "foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(3): ["T", "p"] rebuilt : ScopeId(1): ["p"] @@ -24986,6 +28854,9 @@ tasks/coverage/typescript/tests/cases/compiler/unknownLikeUnionObjectFlagsNotPro semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyType", "myUnusedFunction", "myVar"] rebuilt : ScopeId(0): ["myUnusedFunction", "myVar"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/compiler/unknownPropertiesAreAssignableToObjectUnion.ts semantic error: Unresolved references mismatch: @@ -25010,6 +28881,11 @@ tasks/coverage/typescript/tests/cases/compiler/unreachableDeclarations.ts semantic error: A namespace declaration is only allowed at the top level of a namespace or module. A namespace declaration is only allowed at the top level of a namespace or module. +tasks/coverage/typescript/tests/cases/compiler/untypedArgumentInLambdaExpression.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/compiler/unusedClassesinNamespace3.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -25049,6 +28925,9 @@ rebuilt : ScopeId(1): ["_Validation", "c1"] 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)] Symbol flags mismatch: after transform: SymbolId(4): SymbolFlags(Export | Class) rebuilt : SymbolId(2): SymbolFlags(Class) @@ -25063,6 +28942,9 @@ tasks/coverage/typescript/tests/cases/compiler/unusedLocalProperty.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Animal", "console"] rebuilt : ScopeId(0): ["Animal"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(0): Some("console") rebuilt : ReferenceId(1): None @@ -25094,10 +28976,21 @@ Reference symbol mismatch: after transform: ReferenceId(53): Some("N") rebuilt : ReferenceId(53): Some("N") +tasks/coverage/typescript/tests/cases/compiler/unusedLocalsAndParametersOverloadSignatures.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5)] +Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(2): [ScopeId(3), ScopeId(4)] + tasks/coverage/typescript/tests/cases/compiler/unusedLocalsAndParametersTypeAliases.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1", "I3", "handler1", "handler2", "handler3", "handler4", "handler5", "handler6", "x", "y"] rebuilt : ScopeId(0): ["x", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Array"] rebuilt : [] @@ -25106,6 +28999,9 @@ tasks/coverage/typescript/tests/cases/compiler/unusedMethodsInInterface.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/compiler/unusedParameterUsedInTypeOf.ts semantic error: Symbol reference IDs mismatch: @@ -25131,6 +29027,9 @@ tasks/coverage/typescript/tests/cases/compiler/unusedTypeParameters9.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C1", "C2", "C3"] rebuilt : ScopeId(0): ["C1", "C2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] @@ -25154,6 +29053,9 @@ tasks/coverage/typescript/tests/cases/compiler/unusedTypeParametersNotCheckedByN semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "T", "f", "l"] rebuilt : ScopeId(0): ["C", "f", "l"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] @@ -25171,6 +29073,9 @@ tasks/coverage/typescript/tests/cases/compiler/unwitnessedTypeParameterVariance. semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "CalcObj", "CalcValue", "a", "b", "foo"] rebuilt : ScopeId(0): ["foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(3): ["O", "unk", "x"] rebuilt : ScopeId(1): ["unk", "x"] @@ -25395,6 +29300,9 @@ tasks/coverage/typescript/tests/cases/compiler/varArgsOnConstructorTypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "I1", "reg"] rebuilt : ScopeId(0): ["A", "B", "reg"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(4), ReferenceId(5)] rebuilt : SymbolId(0): [ReferenceId(0)] @@ -25403,6 +29311,9 @@ tasks/coverage/typescript/tests/cases/compiler/varianceCallbacksAndIndexedAccess semantic error: Bindings mismatch: after transform: ScopeId(0): ["Action1", "MessageEventLike", "PostMessageObject", "Source", "Target", "WindowLike", "f1"] rebuilt : ScopeId(0): ["f1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(11), ScopeId(12)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["AddEventListenerOptions", "EventListenerOrEventListenerObject", "Window", "WindowEventMap"] rebuilt : [] @@ -25411,6 +29322,9 @@ tasks/coverage/typescript/tests/cases/compiler/varianceCantBeStrictWhileStructur semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo", "a", "a2", "b", "b2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(6): Some("a") rebuilt : ReferenceId(0): None @@ -25467,6 +29381,9 @@ tasks/coverage/typescript/tests/cases/compiler/varianceProblingAndZeroOrderIndex semantic error: Bindings mismatch: after transform: ScopeId(0): ["Any", "Either", "Left", "MyInfo", "MyServer", "NeededInfo", "Right", "Server", "ToA", "ToB", "Type", "TypeOf", "tmp1", "tmp2"] rebuilt : ScopeId(0): ["Left", "MyServer", "Right", "Server", "Type", "tmp1", "tmp2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6), ScopeId(10), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(18), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(9), ScopeId(12), ScopeId(13), ScopeId(14)] Bindings mismatch: after transform: ScopeId(2): ["A", "L"] rebuilt : ScopeId(1): [] @@ -25508,6 +29425,9 @@ tasks/coverage/typescript/tests/cases/compiler/varianceProblingAndZeroOrderIndex semantic error: Bindings mismatch: after transform: ScopeId(0): ["Any", "Either", "Left", "MyInfo", "MyServer", "NeededInfo", "Right", "Server", "ToA", "ToB", "Type", "TypeOf", "tmp1", "tmp2"] rebuilt : ScopeId(0): ["Left", "MyServer", "Right", "Server", "Type", "tmp1", "tmp2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6), ScopeId(10), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(18), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(9), ScopeId(12), ScopeId(13), ScopeId(14)] Bindings mismatch: after transform: ScopeId(2): ["A", "L"] rebuilt : ScopeId(1): [] @@ -25549,6 +29469,9 @@ tasks/coverage/typescript/tests/cases/compiler/varianceRepeatedlyPropegatesWithU semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "I", "P1", "P2", "X", "_i", "i", "p2"] rebuilt : ScopeId(0): ["_i", "i", "p2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Pick", "Record"] rebuilt : [] @@ -25577,10 +29500,18 @@ Please consider using `import lib from '...';` alongside Typescript's --allowSyn `import lib = require(...);` is only supported when compiling modules to CommonJS. Please consider using `import lib from '...';` alongside Typescript's --allowSyntheticDefaultImports option, or add @babel/plugin-transform-modules-commonjs to your Babel config. +tasks/coverage/typescript/tests/cases/compiler/voidConstructor.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/compiler/voidReturnIndexUnionInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Props", "bad", "safeInvoke"] rebuilt : ScopeId(0): ["bad", "safeInvoke"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] Bindings mismatch: after transform: ScopeId(1): ["A1", "R", "arg1", "func"] rebuilt : ScopeId(1): ["arg1", "func"] @@ -25612,6 +29543,9 @@ tasks/coverage/typescript/tests/cases/compiler/vueLikeDataAndPropsInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["DataDef", "Instance", "Options", "PropsDefinition", "ThisTypedOptions", "WatchHandler"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Unresolved references mismatch: after transform: ["Readonly", "Record", "ThisType", "test"] rebuilt : ["test"] @@ -25620,6 +29554,9 @@ tasks/coverage/typescript/tests/cases/compiler/vueLikeDataAndPropsInference2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["DataDef", "Instance", "Options", "PropsDefinition", "ThisTypedOptions", "WatchHandler"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Unresolved references mismatch: after transform: ["Readonly", "Record", "ThisType", "test"] rebuilt : ["test"] @@ -25628,6 +29565,9 @@ tasks/coverage/typescript/tests/cases/compiler/weakTypeAndPrimitiveNarrowing.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["LiteralsAndWeakTypes", "PrimitivesAndWeakTypes", "g", "h"] rebuilt : ScopeId(0): ["g", "h"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] Unresolved references mismatch: after transform: ["true"] rebuilt : [] @@ -25636,15 +29576,24 @@ tasks/coverage/typescript/tests/cases/compiler/wideningWithTopLevelTypeParameter semantic error: Bindings mismatch: after transform: ScopeId(0): ["C1", "C2", "C3", "C4", "FormControl", "FormControl2", "FormControl3", "a", "b", "c", "c0", "c1", "c2", "c3", "c4"] rebuilt : ScopeId(0): ["FormControl", "FormControl2", "FormControl3", "a", "b", "c", "c0", "c1", "c2", "c3", "c4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(17), ScopeId(19)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] Bindings mismatch: after transform: ScopeId(14): ["T"] rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(15): [ScopeId(16)] +rebuilt : ScopeId(2): [] Bindings mismatch: after transform: ScopeId(17): ["T"] rebuilt : ScopeId(3): [] Bindings mismatch: after transform: ScopeId(19): ["T"] rebuilt : ScopeId(5): [] +Scope children mismatch: +after transform: ScopeId(20): [ScopeId(21)] +rebuilt : ScopeId(6): [] tasks/coverage/typescript/tests/cases/compiler/withStatementInternalComments.ts semantic error: 'with' statements are not allowed @@ -25667,11 +29616,17 @@ tasks/coverage/typescript/tests/cases/conformance/Symbols/ES5SymbolProperty1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Symbol", "SymbolConstructor", "obj"] rebuilt : ScopeId(0): ["Symbol", "obj"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/ambient/ambientDeclarations.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E1", "E2", "E3", "M1", "external1", "m", "n", "p", "q", "x"] rebuilt : ScopeId(0): ["p", "q", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(23)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(2): Some("E3") rebuilt : ReferenceId(0): None @@ -25683,16 +29638,25 @@ tasks/coverage/typescript/tests/cases/conformance/ambient/ambientDeclarationsExt semantic error: Bindings mismatch: after transform: ScopeId(0): ["equ", "equ2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/ambient/ambientEnumDeclaration1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/ambient/ambientEnumDeclaration2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E", "E1"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/ambient/ambientExternalModuleMerging.ts semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. @@ -25706,17 +29670,26 @@ Missing ReferenceId: M2 Bindings mismatch: after transform: ScopeId(0): ["M", "M2"] rebuilt : ScopeId(0): ["M2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(6): ["E", "M", "_M2", "x"] rebuilt : ScopeId(1): ["_M2"] Scope flags mismatch: after transform: ScopeId(6): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) +Scope children mismatch: +after transform: ScopeId(6): [ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/conformance/ambient/ambientInsideNonAmbientExternalModule.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["E", "M", "x"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/ambient/ambientShorthand.ts semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. @@ -25738,7 +29711,10 @@ after transform: ["Promise"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/async/es2017/asyncArrowFunction/asyncUnParenthesizedArrowFunction_es2017.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] +Unresolved references mismatch: after transform: ["Promise", "someOtherFunction"] rebuilt : ["someOtherFunction"] @@ -25752,6 +29728,9 @@ Missing ReferenceId: M Bindings mismatch: after transform: ScopeId(0): ["C", "M", "MyPromise", "f0", "f1", "f10", "f11", "f12", "f13", "f14", "f3", "f4", "f5", "f6", "f7", "f8", "f9", "mp", "o", "p"] rebuilt : ScopeId(0): ["C", "M", "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(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(25), ScopeId(27)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(24), ScopeId(26)] Binding symbols mismatch: after transform: ScopeId(25): [SymbolId(20), SymbolId(22)] rebuilt : ScopeId(24): [SymbolId(16), SymbolId(17)] @@ -25798,6 +29777,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitBinaryExpres semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(3): Some("p") rebuilt : ReferenceId(1): None @@ -25812,6 +29794,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitBinaryExpres semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(3): Some("p") rebuilt : ReferenceId(1): None @@ -25826,6 +29811,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitBinaryExpres semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(3): Some("p") rebuilt : ReferenceId(1): None @@ -25840,6 +29828,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitBinaryExpres semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(3): Some("p") rebuilt : ReferenceId(1): None @@ -25854,6 +29845,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitBinaryExpres semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(4): Some("p") rebuilt : ReferenceId(2): None @@ -25865,6 +29859,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitCallExpressi semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(6): Some("a") rebuilt : ReferenceId(2): None @@ -25882,6 +29879,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitCallExpressi semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(6): Some("p") rebuilt : ReferenceId(2): None @@ -25899,6 +29899,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitCallExpressi semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(6): Some("a") rebuilt : ReferenceId(2): None @@ -25916,6 +29919,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitCallExpressi semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(5): Some("pfn") rebuilt : ReferenceId(1): None @@ -25936,6 +29942,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitCallExpressi semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(5): Some("o") rebuilt : ReferenceId(1): None @@ -25956,6 +29965,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitCallExpressi semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(5): Some("o") rebuilt : ReferenceId(1): None @@ -25976,6 +29988,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitCallExpressi semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(5): Some("o") rebuilt : ReferenceId(1): None @@ -25996,6 +30011,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitCallExpressi semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(5): Some("po") rebuilt : ReferenceId(1): None @@ -26016,6 +30034,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitClassExpress semantic error: Bindings mismatch: after transform: ScopeId(0): ["func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(3): Some("p") rebuilt : ReferenceId(0): None @@ -26027,6 +30048,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es2017/awaitInheritedPro semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "a", "f"] rebuilt : ScopeId(0): ["f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(2): Some("a") rebuilt : ReferenceId(0): None @@ -26055,7 +30079,10 @@ after transform: ["Promise"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/async/es5/asyncArrowFunction/asyncUnParenthesizedArrowFunction_es5.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] +Unresolved references mismatch: after transform: ["Promise", "someOtherFunction"] rebuilt : ["someOtherFunction"] @@ -26074,6 +30101,9 @@ Missing ReferenceId: M Bindings mismatch: after transform: ScopeId(0): ["C", "M", "MyPromise", "f0", "f1", "f10", "f11", "f12", "f13", "f14", "f3", "f4", "f5", "f6", "f7", "f8", "f9", "mp", "o", "p"] rebuilt : ScopeId(0): ["C", "M", "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(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(25), ScopeId(27)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(24), ScopeId(26)] Binding symbols mismatch: after transform: ScopeId(25): [SymbolId(20), SymbolId(22)] rebuilt : ScopeId(24): [SymbolId(16), SymbolId(17)] @@ -26154,6 +30184,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitBinaryExpressio semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(3): Some("p") rebuilt : ReferenceId(1): None @@ -26168,6 +30201,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitBinaryExpressio semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(3): Some("p") rebuilt : ReferenceId(1): None @@ -26182,6 +30218,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitBinaryExpressio semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(3): Some("p") rebuilt : ReferenceId(1): None @@ -26196,6 +30235,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitBinaryExpressio semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(3): Some("p") rebuilt : ReferenceId(1): None @@ -26210,6 +30252,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitBinaryExpressio semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(4): Some("p") rebuilt : ReferenceId(2): None @@ -26221,6 +30266,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(6): Some("a") rebuilt : ReferenceId(2): None @@ -26238,6 +30286,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(6): Some("p") rebuilt : ReferenceId(2): None @@ -26255,6 +30306,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(6): Some("a") rebuilt : ReferenceId(2): None @@ -26272,6 +30326,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(5): Some("pfn") rebuilt : ReferenceId(1): None @@ -26292,6 +30349,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(5): Some("o") rebuilt : ReferenceId(1): None @@ -26312,6 +30372,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(5): Some("o") rebuilt : ReferenceId(1): None @@ -26332,6 +30395,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(5): Some("o") rebuilt : ReferenceId(1): None @@ -26352,6 +30418,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(5): Some("po") rebuilt : ReferenceId(1): None @@ -26372,6 +30441,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es5/awaitClassExpression semantic error: Bindings mismatch: after transform: ScopeId(0): ["func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(3): Some("p") rebuilt : ReferenceId(0): None @@ -26421,6 +30493,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es6/asyncAliasReturnType semantic error: Bindings mismatch: after transform: ScopeId(0): ["PromiseAlias", "f"] rebuilt : ScopeId(0): ["f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["Promise"] rebuilt : [] @@ -26431,7 +30506,10 @@ after transform: ["Promise"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/async/es6/asyncArrowFunction/asyncUnParenthesizedArrowFunction_es6.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] +Unresolved references mismatch: after transform: ["Promise", "someOtherFunction"] rebuilt : ["someOtherFunction"] @@ -26445,6 +30523,9 @@ Missing ReferenceId: M Bindings mismatch: after transform: ScopeId(0): ["C", "M", "MyPromise", "f0", "f1", "f10", "f11", "f12", "f13", "f14", "f3", "f4", "f5", "f6", "f7", "f8", "f9", "mp", "o", "p"] rebuilt : ScopeId(0): ["C", "M", "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(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(25), ScopeId(27)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(24), ScopeId(26)] Binding symbols mismatch: after transform: ScopeId(25): [SymbolId(20), SymbolId(22)] rebuilt : ScopeId(24): [SymbolId(16), SymbolId(17)] @@ -26494,6 +30575,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitBinaryExpressio semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(3): Some("p") rebuilt : ReferenceId(1): None @@ -26508,6 +30592,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitBinaryExpressio semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(3): Some("p") rebuilt : ReferenceId(1): None @@ -26522,6 +30609,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitBinaryExpressio semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(3): Some("p") rebuilt : ReferenceId(1): None @@ -26536,6 +30626,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitBinaryExpressio semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(3): Some("p") rebuilt : ReferenceId(1): None @@ -26550,6 +30643,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitBinaryExpressio semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(4): Some("p") rebuilt : ReferenceId(2): None @@ -26561,6 +30657,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(6): Some("a") rebuilt : ReferenceId(2): None @@ -26578,6 +30677,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(6): Some("p") rebuilt : ReferenceId(2): None @@ -26595,6 +30697,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(6): Some("a") rebuilt : ReferenceId(2): None @@ -26612,6 +30717,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(5): Some("pfn") rebuilt : ReferenceId(1): None @@ -26632,6 +30740,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(5): Some("o") rebuilt : ReferenceId(1): None @@ -26652,6 +30763,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(5): Some("o") rebuilt : ReferenceId(1): None @@ -26672,6 +30786,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(5): Some("o") rebuilt : ReferenceId(1): None @@ -26692,6 +30809,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitCallExpression/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "func", "o", "p", "pfn", "po"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(5): Some("po") rebuilt : ReferenceId(1): None @@ -26712,6 +30832,9 @@ tasks/coverage/typescript/tests/cases/conformance/async/es6/awaitClassExpression semantic error: Bindings mismatch: after transform: ScopeId(0): ["func", "p"] rebuilt : ScopeId(0): ["func"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(3): Some("p") rebuilt : ReferenceId(0): None @@ -26769,6 +30892,9 @@ tasks/coverage/typescript/tests/cases/conformance/asyncGenerators/asyncGenerator semantic error: Bindings mismatch: after transform: ScopeId(0): ["Result", "saverGen", "saverGen2", "storeResults"] rebuilt : ScopeId(0): ["saverGen", "saverGen2", "storeResults"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5)] Unresolved references mismatch: after transform: ["AsyncGenerator", "Promise", "console"] rebuilt : ["Promise", "console"] @@ -26784,12 +30910,18 @@ Missing ReferenceId: M 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), 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)] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(2): ScopeFlags(Function) +Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(2): [ScopeId(3)] Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(Class | Interface) rebuilt : SymbolId(0): SymbolFlags(Class) @@ -26861,11 +30993,17 @@ tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/merg semantic error: Bindings mismatch: after transform: ScopeId(0): ["C1", "C2", "C3", "C4"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/classes/classDeclarations/mergedInheritedClassInterface.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["BaseClass", "BaseInterface", "Child", "ChildNoBaseClass", "Grandchild", "child", "grandchild"] rebuilt : ScopeId(0): ["BaseClass", "Child", "ChildNoBaseClass", "Grandchild", "child", "grandchild"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7)] Symbol flags mismatch: after transform: SymbolId(2): SymbolFlags(Class | Interface) rebuilt : SymbolId(1): SymbolFlags(Class) @@ -26939,7 +31077,10 @@ after transform: SymbolId(1): [ReferenceId(2)] rebuilt : SymbolId(1): [] tasks/coverage/typescript/tests/cases/conformance/classes/classStaticBlock/classStaticBlock17.ts -semantic error: Symbol reference IDs mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(7)] +Symbol reference IDs mismatch: after transform: SymbolId(1): [ReferenceId(0), ReferenceId(1), ReferenceId(7), ReferenceId(13)] rebuilt : SymbolId(1): [ReferenceId(10)] @@ -26949,20 +31090,35 @@ after transform: SymbolId(2): [ReferenceId(2)] rebuilt : SymbolId(2): [] tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/constructorParameters/constructorImplementationWithDefaultValues.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2)] +Bindings mismatch: after transform: ScopeId(4): ["T"] rebuilt : ScopeId(3): [] +Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(3): [ScopeId(4)] Bindings mismatch: after transform: ScopeId(7): ["T"] rebuilt : ScopeId(5): [] +Scope children mismatch: +after transform: ScopeId(7): [ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(5): [ScopeId(6)] Unresolved references mismatch: after transform: ["Date"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/constructorParameters/constructorOverloadsWithOptionalParameters.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2)] +Bindings mismatch: after transform: ScopeId(4): ["T"] rebuilt : ScopeId(3): [] +Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(3): [ScopeId(4)] tasks/coverage/typescript/tests/cases/conformance/classes/constructorDeclarations/constructorWithExpressionLessReturn.ts semantic error: Bindings mismatch: @@ -27104,6 +31260,26 @@ Unresolved references mismatch: after transform: ["Object"] rebuilt : [] +tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/thisAndSuperInStaticMembers1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/thisAndSuperInStaticMembers2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/thisAndSuperInStaticMembers3.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/thisAndSuperInStaticMembers4.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/conformance/classes/members/instanceAndStaticMembers/typeOfThisInInstanceMember2.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["T"] @@ -27136,6 +31312,9 @@ tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/p semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "D"] rebuilt : ScopeId(0): ["C"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol flags mismatch: after transform: SymbolId(1): SymbolFlags(Class | Interface) rebuilt : SymbolId(0): SymbolFlags(Class) @@ -27162,11 +31341,17 @@ tasks/coverage/typescript/tests/cases/conformance/classes/members/privateNames/t semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "Foo"] rebuilt : ScopeId(0): ["C"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/classes/mixinClassesAnonymous.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "Constructor", "Derived", "Printable", "Tagged", "Thing1", "Thing2", "Thing3", "Timestamped", "f1", "f2"] rebuilt : ScopeId(0): ["Base", "Derived", "Printable", "Tagged", "Thing1", "Thing2", "Thing3", "Timestamped", "f1", "f2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6), ScopeId(9), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(17)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(8), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(16)] Bindings mismatch: after transform: ScopeId(6): ["T", "superClass"] rebuilt : ScopeId(5): ["superClass"] @@ -27184,6 +31369,9 @@ tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarat semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "C", "I"] rebuilt : ScopeId(0): ["B", "C"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Symbol flags mismatch: after transform: SymbolId(1): SymbolFlags(Class | Interface) rebuilt : SymbolId(0): SymbolFlags(Class) @@ -27201,6 +31389,9 @@ tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarat semantic error: Bindings mismatch: after transform: ScopeId(0): ["AnyCtor", "Base", "MyClass", "Properties", "Types", "mine", "value"] rebuilt : ScopeId(0): ["Base", "MyClass", "mine", "value"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Unresolved references mismatch: after transform: ["classWithProperties", "const"] rebuilt : ["classWithProperties"] @@ -27209,6 +31400,9 @@ tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarat semantic error: Bindings mismatch: after transform: ScopeId(0): ["ApiEnum", "ApiEnumMember", "ApiItem", "ApiItemContainerMixin", "Constructor", "IApiItemConstructor", "PropertiesOf"] rebuilt : ScopeId(0): ["ApiEnum", "ApiEnumMember", "ApiItem", "ApiItemContainerMixin"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(8)] Bindings mismatch: after transform: ScopeId(9): ["MixedClass", "TBaseClass", "baseClass"] rebuilt : ScopeId(4): ["MixedClass", "baseClass"] @@ -27234,6 +31428,11 @@ Unresolved references mismatch: after transform: ["ReadonlyArray"] rebuilt : [] +tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/autoAccessorAllowedModifiers.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/initializationOrdering1.ts semantic error: Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(3)] @@ -27243,6 +31442,9 @@ tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarat semantic error: Bindings mismatch: after transform: ScopeId(2): ["K", "V"] rebuilt : ScopeId(2): [] +Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(3): [] tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/memberAccessorDeclarations/accessorsAreNotContextuallyTyped.ts semantic error: Symbol reference IDs mismatch: @@ -27255,9 +31457,15 @@ after transform: ScopeId(4): ["T"] rebuilt : ScopeId(4): [] tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/memberFunctionDeclarations/memberFunctionsWithPublicOverloads.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +Bindings mismatch: after transform: ScopeId(16): ["T"] rebuilt : ScopeId(6): [] +Scope children mismatch: +after transform: ScopeId(16): [ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30)] +rebuilt : ScopeId(6): [ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/memberFunctionDeclarations/typeOfThisInMemberFunctions.ts semantic error: Bindings mismatch: @@ -27274,6 +31482,9 @@ tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarat semantic error: Bindings mismatch: after transform: ScopeId(0): ["Kasizz", "Mup", "MupConstructor", "Sizz"] rebuilt : ScopeId(0): ["Kasizz", "Sizz"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Reference symbol mismatch: after transform: ReferenceId(8): Some("Mup") rebuilt : ReferenceId(0): None @@ -27412,6 +31623,9 @@ tasks/coverage/typescript/tests/cases/conformance/constEnums/constEnum3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["TestType", "TestTypeStr", "f1", "f2"] rebuilt : ScopeId(0): ["TestType", "f1", "f2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(1): ["TestType", "bar", "foo"] rebuilt : ScopeId(1): ["TestType"] @@ -27439,16 +31653,27 @@ rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) tasks/coverage/typescript/tests/cases/conformance/controlFlow/assertionTypePredicates2.ts semantic error: Cannot use export statement outside a module +tasks/coverage/typescript/tests/cases/conformance/controlFlow/constLocalsInFunctionExpressions.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(8), ScopeId(11), ScopeId(14)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(10), ScopeId(13)] + tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowAssignmentExpression.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["D", "o", "obj", "x"] rebuilt : ScopeId(0): ["o", "obj", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["fn", "true"] rebuilt : ["fn"] tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowAssignmentPatternOrder.ts -semantic error: Unresolved references 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), ScopeId(10), ScopeId(11), ScopeId(12)] +Unresolved references mismatch: after transform: ["const", "f"] rebuilt : ["f"] @@ -27456,17 +31681,29 @@ tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowBinaryO semantic error: Bindings mismatch: after transform: ScopeId(0): ["EventTargetLike", "HTMLCollection", "NodeList", "cond", "sourceObj", "x"] rebuilt : ScopeId(0): ["cond", "sourceObj", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowBindingElement.ts semantic error: Bindings mismatch: after transform: ScopeId(9): ["Window", "bar", "foo", "window"] rebuilt : ScopeId(9): ["bar", "foo", "window"] +Scope children mismatch: +after transform: ScopeId(9): [ScopeId(10), ScopeId(11), ScopeId(12)] +rebuilt : ScopeId(9): [ScopeId(10), ScopeId(11)] Bindings mismatch: after transform: ScopeId(13): ["Window", "bar", "foo", "window"] rebuilt : ScopeId(12): ["bar", "foo", "window"] +Scope children mismatch: +after transform: ScopeId(13): [ScopeId(14), ScopeId(15), ScopeId(16)] +rebuilt : ScopeId(12): [ScopeId(13), ScopeId(14)] Bindings mismatch: after transform: ScopeId(17): ["Window", "bar", "foo", "window"] rebuilt : ScopeId(15): ["bar", "foo", "window"] +Scope children mismatch: +after transform: ScopeId(17): [ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21)] +rebuilt : ScopeId(15): [ScopeId(16), ScopeId(17), ScopeId(18)] Unresolved references mismatch: after transform: ["Error", "console", "const", "undefined"] rebuilt : ["Error", "console", "undefined"] @@ -27475,6 +31712,9 @@ tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowCompute semantic error: Bindings mismatch: after transform: ScopeId(0): ["Thing", "f1", "f2", "f3", "f4"] rebuilt : ScopeId(0): ["f1", "f2", "f3", "f4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(7), ScopeId(8), ScopeId(12)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(7), ScopeId(11)] Bindings mismatch: after transform: ScopeId(12): ["K", "key", "obj"] rebuilt : ScopeId(11): ["key", "obj"] @@ -27517,6 +31757,9 @@ tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowElement semantic error: Bindings mismatch: after transform: ScopeId(0): ["TestTscCompile", "TestTscEdit", "VerifyTscEditDiscrepanciesInput", "testTscCompile", "verifyTscEditDiscrepancies"] rebuilt : ScopeId(0): ["testTscCompile", "verifyTscEditDiscrepancies"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowForInStatement.ts semantic error: Unresolved references mismatch: @@ -27527,6 +31770,9 @@ tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowForInSt semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "c", "keywordA", "keywordB", "stringB"] rebuilt : ScopeId(0): ["keywordA", "keywordB", "stringB"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(6)] rebuilt : SymbolId(0): [ReferenceId(2)] @@ -27570,6 +31816,9 @@ tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowIfState semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "a", "b", "c", "cond", "d", "e", "x"] rebuilt : ScopeId(0): ["a", "b", "c", "cond", "d", "e", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(9), ScopeId(12), ScopeId(15), ScopeId(16)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(9), ScopeId(12), ScopeId(15)] Bindings mismatch: after transform: ScopeId(9): ["T", "data"] rebuilt : ScopeId(9): ["data"] @@ -27587,6 +31836,9 @@ tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowInOpera semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "a", "b", "c", "d", "uniqueID_54790", "uniqueID_54790_2", "uniqueID_54790_3"] rebuilt : ScopeId(0): ["a", "b", "d", "uniqueID_54790", "uniqueID_54790_2", "uniqueID_54790_3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(13), ScopeId(17)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(11), ScopeId(15)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(9), ReferenceId(13)] rebuilt : SymbolId(0): [ReferenceId(5), ReferenceId(9)] @@ -27636,6 +31888,9 @@ tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowInstanc semantic error: Bindings mismatch: after transform: ScopeId(0): ["X", "Y", "global", "x"] rebuilt : ScopeId(0): ["X", "Y", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(6)] Symbol reference IDs mismatch: after transform: SymbolId(2): [ReferenceId(2), ReferenceId(5), ReferenceId(7), ReferenceId(9)] rebuilt : SymbolId(0): [ReferenceId(2), ReferenceId(6), ReferenceId(8)] @@ -27644,11 +31899,17 @@ tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowOptiona semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "N", "U", "X", "f1", "f2", "f3", "f4", "f5", "f6", "f7", "f8", "funcThree", "funcTwo"] rebuilt : ScopeId(0): ["f1", "f2", "f3", "f4", "f5", "f6", "f7", "f8", "funcThree", "funcTwo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(13), ScopeId(16), ScopeId(19), ScopeId(22), ScopeId(25), ScopeId(28), ScopeId(31)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(8), ScopeId(11), ScopeId(14), ScopeId(17), ScopeId(20), ScopeId(23), ScopeId(26)] tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowStringIndex.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "value"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(1): Some("value") rebuilt : ReferenceId(0): None @@ -27665,8 +31926,16 @@ Unresolved references mismatch: after transform: [] rebuilt : ["value"] +tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowSuperPropertyAccess.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [] + tasks/coverage/typescript/tests/cases/conformance/controlFlow/controlFlowTruthiness.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(8), ScopeId(11), ScopeId(14), ScopeId(17), ScopeId(20), ScopeId(23), ScopeId(26)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(10), ScopeId(13), ScopeId(16), ScopeId(19), ScopeId(22), ScopeId(25)] +Bindings mismatch: after transform: ScopeId(23): ["T", "x"] rebuilt : ScopeId(22): ["x"] Bindings mismatch: @@ -27697,6 +31966,9 @@ tasks/coverage/typescript/tests/cases/conformance/controlFlow/dependentDestructu semantic error: Bindings mismatch: after transform: ScopeId(5): ["T", "fn", "promises"] rebuilt : ScopeId(5): ["fn", "promises"] +Scope children mismatch: +after transform: ScopeId(5): [ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(5): [ScopeId(6)] Unresolved references mismatch: after transform: ["Awaited", "Error", "Math", "Promise", "String", "const", "undefined"] rebuilt : ["Error", "Math", "Promise", "String", "undefined"] @@ -27710,7 +31982,10 @@ after transform: ScopeId(1): ["T", "key"] rebuilt : ScopeId(1): ["key"] tasks/coverage/typescript/tests/cases/conformance/controlFlow/typeGuardsNestedAssignments.ts -semantic error: Symbol reference IDs mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(10)] +Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(5), ReferenceId(6), ReferenceId(16)] rebuilt : SymbolId(0): [ReferenceId(11)] Unresolved references mismatch: @@ -27727,6 +32002,9 @@ rebuilt : ScopeId(4): ["x"] Bindings mismatch: after transform: ScopeId(6): ["T", "item", "strings"] rebuilt : ScopeId(6): ["item", "strings"] +Scope children mismatch: +after transform: ScopeId(6): [ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(6): [ScopeId(7)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(2), ReferenceId(5)] rebuilt : SymbolId(0): [ReferenceId(1)] @@ -27735,29 +32013,47 @@ tasks/coverage/typescript/tests/cases/conformance/decorators/1.0lib-noErrors.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Array", "Boolean", "Date", "Error", "EvalError", "Function", "IArguments", "Infinity", "JSON", "Math", "NaN", "Number", "Object", "PropertyDescriptor", "PropertyDescriptorMap", "RangeError", "ReferenceError", "RegExp", "RegExpExecArray", "String", "SyntaxError", "T", "TypeError", "URIError"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(13), ScopeId(14), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(67), ScopeId(68), ScopeId(69), ScopeId(70), ScopeId(71), ScopeId(76), ScopeId(77), ScopeId(96), ScopeId(140), ScopeId(141), ScopeId(142), ScopeId(143), ScopeId(144), ScopeId(145), ScopeId(146), ScopeId(147), ScopeId(170), ScopeId(174), ScopeId(175), ScopeId(176), ScopeId(177), ScopeId(178), ScopeId(179), ScopeId(180), ScopeId(181), ScopeId(182), ScopeId(183), ScopeId(184), ScopeId(185), ScopeId(186), ScopeId(187), ScopeId(188), ScopeId(189), ScopeId(196), ScopeId(222), ScopeId(223), ScopeId(224), ScopeId(225)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/decorators/class/accessor/decoratorOnClassAccessor1.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Unresolved references mismatch: after transform: ["TypedPropertyDescriptor", "dec"] rebuilt : ["dec"] tasks/coverage/typescript/tests/cases/conformance/decorators/class/accessor/decoratorOnClassAccessor2.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Unresolved references mismatch: after transform: ["TypedPropertyDescriptor", "dec"] rebuilt : ["dec"] tasks/coverage/typescript/tests/cases/conformance/decorators/class/accessor/decoratorOnClassAccessor4.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Unresolved references mismatch: after transform: ["TypedPropertyDescriptor", "dec"] rebuilt : ["dec"] tasks/coverage/typescript/tests/cases/conformance/decorators/class/accessor/decoratorOnClassAccessor5.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Unresolved references mismatch: after transform: ["TypedPropertyDescriptor", "dec"] rebuilt : ["dec"] tasks/coverage/typescript/tests/cases/conformance/decorators/class/accessor/decoratorOnClassAccessor8.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(8), ScopeId(11), ScopeId(14), ScopeId(16)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(10), ScopeId(13), ScopeId(15)] +Unresolved references mismatch: after transform: ["TypedPropertyDescriptor", "dec"] rebuilt : ["dec"] @@ -27784,7 +32080,10 @@ after transform: [] rebuilt : ["dec"] tasks/coverage/typescript/tests/cases/conformance/decorators/class/constructor/parameter/decoratorOnClassConstructorParameter1.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Unresolved references mismatch: after transform: ["Function", "dec"] rebuilt : ["dec"] @@ -27792,6 +32091,9 @@ tasks/coverage/typescript/tests/cases/conformance/decorators/class/constructor/p semantic error: Bindings mismatch: after transform: ScopeId(0): ["BulkEditPreviewProvider", "IFoo"] rebuilt : ScopeId(0): ["BulkEditPreviewProvider"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(1): Some("IFoo") rebuilt : ReferenceId(1): None @@ -27821,6 +32123,9 @@ tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratedClas semantic error: Bindings mismatch: after transform: ScopeId(0): ["Something", "Testing123"] rebuilt : ScopeId(0): ["Testing123"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference symbol mismatch: after transform: ReferenceId(0): Some("Something") rebuilt : ReferenceId(0): None @@ -27832,6 +32137,9 @@ tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratedClas semantic error: Bindings mismatch: after transform: ScopeId(0): ["Something", "Testing123"] rebuilt : ScopeId(0): ["Testing123"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference symbol mismatch: after transform: ReferenceId(0): Some("Something") rebuilt : ReferenceId(0): None @@ -27843,6 +32151,9 @@ tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratedClas semantic error: Bindings mismatch: after transform: ScopeId(0): ["Something", "Testing123"] rebuilt : ScopeId(0): ["Testing123"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference symbol mismatch: after transform: ReferenceId(0): Some("Something") rebuilt : ReferenceId(0): None @@ -27854,6 +32165,9 @@ tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratedClas semantic error: Bindings mismatch: after transform: ScopeId(0): ["Something", "Testing123"] rebuilt : ScopeId(0): ["Testing123"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference symbol mismatch: after transform: ReferenceId(0): Some("Something") rebuilt : ReferenceId(0): None @@ -27866,6 +32180,31 @@ semantic error: Bindings mismatch: after transform: ScopeId(0): ["Decorated"] rebuilt : ScopeId(0): [] +tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratorOnClass1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratorOnClass2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratorOnClass3.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratorOnClass4.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratorOnClass5.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/conformance/decorators/class/decoratorOnClass9.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "dec"] @@ -27878,12 +32217,18 @@ after transform: [] rebuilt : ["dec"] tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethod1.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Unresolved references mismatch: after transform: ["TypedPropertyDescriptor", "dec"] rebuilt : ["dec"] tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethod13.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Unresolved references mismatch: after transform: ["TypedPropertyDescriptor", "dec"] rebuilt : ["dec"] @@ -27952,50 +32297,100 @@ after transform: [] rebuilt : ["decorator"] tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethod2.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Unresolved references mismatch: after transform: ["TypedPropertyDescriptor", "dec"] rebuilt : ["dec"] tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethod4.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Unresolved references mismatch: after transform: ["TypedPropertyDescriptor", "dec"] rebuilt : ["dec"] tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethod5.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Unresolved references mismatch: after transform: ["TypedPropertyDescriptor", "dec"] rebuilt : ["dec"] tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethod7.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Unresolved references mismatch: after transform: ["TypedPropertyDescriptor", "dec"] rebuilt : ["dec"] tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/decoratorOnClassMethodOverload2.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Scope children mismatch: +after transform: ScopeId(2): [ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] +Unresolved references mismatch: after transform: ["TypedPropertyDescriptor", "dec"] rebuilt : ["dec"] tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/parameter/decoratorOnClassMethodParameter1.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Unresolved references mismatch: after transform: ["Object", "dec"] rebuilt : ["dec"] tasks/coverage/typescript/tests/cases/conformance/decorators/class/method/parameter/decoratorOnClassMethodParameter2.ts -semantic error: Symbol reference IDs mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Symbol reference IDs mismatch: after transform: SymbolId(3): [ReferenceId(1)] rebuilt : SymbolId(0): [] Unresolved references mismatch: after transform: ["Object", "dec"] rebuilt : ["dec"] +tasks/coverage/typescript/tests/cases/conformance/decorators/class/property/decoratorOnClassProperty1.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/decorators/class/property/decoratorOnClassProperty10.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/decorators/class/property/decoratorOnClassProperty12.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/conformance/decorators/class/property/decoratorOnClassProperty13.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Unresolved references mismatch: after transform: ["PropertyDescriptor", "dec"] rebuilt : ["dec"] +tasks/coverage/typescript/tests/cases/conformance/decorators/class/property/decoratorOnClassProperty2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/conformance/decorators/decoratorInAmbientContext.ts -semantic error: Symbol reference IDs mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Symbol reference IDs mismatch: after transform: SymbolId(2): [ReferenceId(3)] rebuilt : SymbolId(0): [] Unresolved references mismatch: @@ -28220,6 +32615,9 @@ tasks/coverage/typescript/tests/cases/conformance/dynamicImport/importCallExpres semantic error: Bindings mismatch: after transform: ScopeId(0): ["defaultModule", "directory", "j", "loadModule", "moduleFile", "p1", "p11", "p2", "p3", "whatToLoad"] rebuilt : ScopeId(0): ["j", "loadModule", "p1", "p11", "p2", "p3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference symbol mismatch: after transform: ReferenceId(0): Some("directory") rebuilt : ReferenceId(0): None @@ -28601,6 +32999,9 @@ tasks/coverage/typescript/tests/cases/conformance/es2017/useObjectValuesAndEntri semantic error: Bindings mismatch: after transform: ScopeId(0): ["E", "I", "a", "entries", "entries1", "entries2", "entries3", "entries4", "entries5", "entries6", "i", "o", "values", "values1", "values2", "values3", "values4", "values5", "values6", "x"] rebuilt : ScopeId(0): ["E", "a", "entries", "entries1", "entries2", "entries3", "entries4", "entries5", "entries6", "i", "o", "values", "values1", "values2", "values3", "values4", "values5", "values6", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Bindings mismatch: after transform: ScopeId(3): ["A", "B", "E"] rebuilt : ScopeId(3): ["E"] @@ -28632,6 +33033,24 @@ tasks/coverage/typescript/tests/cases/conformance/es2019/importMeta/importMetaNa semantic error: Bindings mismatch: after transform: ScopeId(0): ["global"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/es2020/bigintMissingES2019.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/conformance/es2020/bigintMissingES2020.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/conformance/es2020/bigintMissingESNext.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/es2020/intlNumberFormatES2020.ts semantic error: Unresolved reference IDs mismatch for "Intl": @@ -28647,6 +33066,9 @@ tasks/coverage/typescript/tests/cases/conformance/es2020/modules/exportAsNamespa semantic error: Bindings mismatch: after transform: ScopeId(0): ["Alias", "ns"] rebuilt : ScopeId(0): ["ns"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1)] rebuilt : SymbolId(0): [ReferenceId(0)] @@ -28690,6 +33112,9 @@ tasks/coverage/typescript/tests/cases/conformance/es2021/logicalAssignment/logic semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "a", "b", "c", "result"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(4): Some("a") rebuilt : ReferenceId(0): None @@ -28752,6 +33177,9 @@ tasks/coverage/typescript/tests/cases/conformance/es2021/logicalAssignment/logic semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "a", "b", "c", "result"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(4): Some("a") rebuilt : ReferenceId(0): None @@ -28800,6 +33228,9 @@ tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty11.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "c", "i"] rebuilt : ScopeId(0): ["C", "c", "i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(3), ReferenceId(4)] rebuilt : SymbolId(0): [ReferenceId(1)] @@ -28811,6 +33242,9 @@ tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty13.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "i"] rebuilt : ScopeId(0): ["C", "i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(4), ReferenceId(5), ReferenceId(7)] rebuilt : SymbolId(0): [ReferenceId(2)] @@ -28822,6 +33256,9 @@ tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty14.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "i"] rebuilt : ScopeId(0): ["C", "i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(4), ReferenceId(5), ReferenceId(7)] rebuilt : SymbolId(0): [ReferenceId(2)] @@ -28833,6 +33270,9 @@ tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty15.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "i"] rebuilt : ScopeId(0): ["C", "i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(3), ReferenceId(4), ReferenceId(6)] rebuilt : SymbolId(0): [ReferenceId(1)] @@ -28844,6 +33284,9 @@ tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty16.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "i"] rebuilt : ScopeId(0): ["C", "i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(4), ReferenceId(5), ReferenceId(7)] rebuilt : SymbolId(0): [ReferenceId(2)] @@ -28855,6 +33298,9 @@ tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty20.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "i"] rebuilt : ScopeId(0): ["i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Unresolved reference IDs mismatch for "Symbol": after transform: [ReferenceId(0), ReferenceId(1), ReferenceId(3), ReferenceId(5)] rebuilt : [ReferenceId(0), ReferenceId(2)] @@ -28863,6 +33309,9 @@ tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty22.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved reference IDs mismatch for "Symbol": after transform: [ReferenceId(0), ReferenceId(9)] rebuilt : [ReferenceId(1)] @@ -28871,6 +33320,9 @@ tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty23.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I"] rebuilt : ScopeId(0): ["C"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved reference IDs mismatch for "Symbol": after transform: [ReferenceId(0), ReferenceId(2)] rebuilt : [ReferenceId(0)] @@ -28884,6 +33336,9 @@ tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty37.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Symbol"] rebuilt : [] @@ -28892,17 +33347,26 @@ tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty38.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Symbol"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty40.ts -semantic error: Unresolved reference IDs mismatch for "Symbol": +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] +Unresolved reference IDs mismatch for "Symbol": after transform: [ReferenceId(0), ReferenceId(1), ReferenceId(2), ReferenceId(6), ReferenceId(8)] rebuilt : [ReferenceId(0), ReferenceId(4), ReferenceId(6)] tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty41.ts -semantic error: Unresolved reference IDs mismatch for "Symbol": +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] +Unresolved reference IDs mismatch for "Symbol": after transform: [ReferenceId(0), ReferenceId(1), ReferenceId(2), ReferenceId(6), ReferenceId(8)] rebuilt : [ReferenceId(0), ReferenceId(4), ReferenceId(6)] @@ -28938,6 +33402,9 @@ rebuilt : ScopeId(1): ["C", "_M"] 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)] tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty51.ts semantic error: Missing SymbolId: M @@ -28953,6 +33420,9 @@ rebuilt : ScopeId(1): ["C", "_M"] 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)] tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty55.ts semantic error: Missing SymbolId: M @@ -28991,11 +33461,17 @@ tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty58.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["SymbolConstructor", "obj"] rebuilt : ScopeId(0): ["obj"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty60.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1", "I2", "I3", "I4", "mySymbol"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Symbol"] rebuilt : [] @@ -29004,6 +33480,9 @@ tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolProperty8.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Symbol"] rebuilt : [] @@ -29012,16 +33491,25 @@ tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolType16.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Symbol", "sym"] rebuilt : ScopeId(0): ["sym"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolType17.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolType18.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/es6/Symbols/symbolType19.ts semantic error: Scope flags mismatch: @@ -29034,15 +33522,37 @@ Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(6)] rebuilt : SymbolId(0): [ReferenceId(1)] +tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/emitClassDeclarationOverloadInES6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2)] +Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(3): [ScopeId(4)] + +tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/emitClassDeclarationWithConstructorInES6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] +Scope children mismatch: +after transform: ScopeId(5): [ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(4): [ScopeId(5), ScopeId(6)] + tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/emitClassDeclarationWithExtensionAndTypeArgumentInES6.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(4): [ScopeId(5)] tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/emitClassDeclarationWithTypeArgumentAndOverloadInES6.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] tasks/coverage/typescript/tests/cases/conformance/es6/classDeclaration/emitClassDeclarationWithTypeArgumentInES6.ts semantic error: Bindings mismatch: @@ -29172,87 +33682,183 @@ tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/compute semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "o"] rebuilt : ScopeId(0): ["o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType1_ES6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "o"] rebuilt : ScopeId(0): ["o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType2_ES5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "o"] rebuilt : ScopeId(0): ["o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType2_ES6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "o"] rebuilt : ScopeId(0): ["o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType3_ES5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "o"] rebuilt : ScopeId(0): ["o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType3_ES6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "o"] rebuilt : ScopeId(0): ["o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType4_ES5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "o"] rebuilt : ScopeId(0): ["o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType4_ES6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "o"] rebuilt : ScopeId(0): ["o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType5_ES5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "o"] rebuilt : ScopeId(0): ["o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType5_ES6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "o"] rebuilt : ScopeId(0): ["o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType6_ES5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType6_ES6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType7_ES5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "J"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType7_ES6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "J"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/accessor/decoratorOnClassAccessor1.es6.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Unresolved references mismatch: after transform: ["TypedPropertyDescriptor", "dec"] rebuilt : ["dec"] +tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/decoratorOnClass1.es6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/decoratorOnClass2.es6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/decoratorOnClass3.es6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/decoratorOnClass4.es6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/decoratorOnClass5.es6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/decoratorOnClass6.es6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/decoratorOnClass7.es6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/decoratorOnClass8.es6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/method/decoratorOnClassMethod1.es6.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Unresolved references mismatch: after transform: ["TypedPropertyDescriptor", "dec"] rebuilt : ["dec"] tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/method/parameter/decoratorOnClassMethodParameter1.es6.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] +Unresolved references mismatch: after transform: ["Object", "dec"] rebuilt : ["dec"] +tasks/coverage/typescript/tests/cases/conformance/es6/decorators/class/property/decoratorOnClassProperty1.es6.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/declarationInAmbientContext.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "b", "c", "d"] @@ -29273,11 +33879,17 @@ tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructurin semantic error: Bindings mismatch: after transform: ScopeId(0): ["F", "F1", "a1", "a2", "b1", "b21", "b3", "b4", "b52", "bar", "c0", "c1", "d1", "foo", "foo1"] rebuilt : ScopeId(0): ["a1", "a2", "b1", "b21", "b3", "b4", "b52", "bar", "c0", "c1", "d1", "foo", "foo1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringObjectBindingPatternAndAssignment1ES6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["F", "F1", "a1", "a2", "b1", "b21", "b3", "b4", "b52", "bar", "c0", "c1", "d1", "foo", "foo1"] rebuilt : ScopeId(0): ["a1", "a2", "b1", "b21", "b3", "b4", "b52", "bar", "c0", "c1", "d1", "foo", "foo1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringObjectBindingPatternAndAssignment7.ts semantic error: Bindings mismatch: @@ -29305,11 +33917,17 @@ tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructurin semantic error: Bindings mismatch: after transform: ScopeId(0): ["ISomething", "baz", "foo", "one", "two"] rebuilt : ScopeId(0): ["baz", "foo", "one", "two"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringParameterDeclaration7ES5iterable.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ISomething", "baz", "foo", "one", "two"] rebuilt : ScopeId(0): ["baz", "foo", "one", "two"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/conformance/es6/destructuring/destructuringVoid.ts semantic error: Bindings mismatch: @@ -29351,6 +33969,9 @@ tasks/coverage/typescript/tests/cases/conformance/es6/for-ofStatements/for-of58. semantic error: Bindings mismatch: after transform: ScopeId(0): ["X", "Y", "arr"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(2): Some("arr") rebuilt : ReferenceId(0): None @@ -29386,6 +34007,11 @@ semantic error: Unresolved references mismatch: after transform: ["ClassDecorator"] rebuilt : [] +tasks/coverage/typescript/tests/cases/conformance/es6/modules/defaultExportWithOverloads01.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/conformance/es6/modules/exportsAndImports1-amd.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -29420,6 +34046,9 @@ tasks/coverage/typescript/tests/cases/conformance/es6/modules/exportsAndImports5 semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/es6/modules/exportsAndImportsWithContextualKeywordNames02.ts semantic error: Bindings mismatch: @@ -29485,6 +34114,9 @@ tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateSt semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "f", "x"] rebuilt : ScopeId(0): ["f", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["TemplateStringsArray"] rebuilt : [] @@ -29493,17 +34125,26 @@ tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateSt semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "f", "x"] rebuilt : ScopeId(0): ["f", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["TemplateStringsArray"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsWithOverloadResolution2.ts -semantic error: Unresolved references 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)] +Unresolved references mismatch: after transform: ["TemplateStringsArray", "undefined"] rebuilt : ["undefined"] tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateStringsWithOverloadResolution2_ES6.ts -semantic error: Unresolved references 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)] +Unresolved references mismatch: after transform: ["TemplateStringsArray", "undefined"] rebuilt : ["undefined"] @@ -29511,6 +34152,9 @@ tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateSt semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "f"] rebuilt : ScopeId(0): ["f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["TemplateStringsArray"] rebuilt : [] @@ -29519,6 +34163,9 @@ tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplateSt semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "f"] rebuilt : ScopeId(0): ["f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["TemplateStringsArray"] rebuilt : [] @@ -29532,6 +34179,9 @@ tasks/coverage/typescript/tests/cases/conformance/es6/templates/taggedTemplatesW semantic error: Bindings mismatch: after transform: ScopeId(0): ["Stuff", "T", "a", "b", "c", "obj"] rebuilt : ScopeId(0): ["a", "b", "c"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] Reference symbol mismatch: after transform: ReferenceId(27): Some("obj") rebuilt : ReferenceId(8): None @@ -29543,7 +34193,10 @@ after transform: ["Array", "TemplateStringsArray", "f", "g"] rebuilt : ["f", "g", "obj"] tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorOverloads4.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] +Unresolved references mismatch: after transform: ["Iterable"] rebuilt : [] @@ -29561,6 +34214,9 @@ 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), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] Symbol flags mismatch: after transform: SymbolId(3): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(2): SymbolFlags(FunctionScopedVariable) @@ -29650,12 +34306,18 @@ after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck45.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] +Unresolved references mismatch: after transform: ["Iterator", "foo", "undefined"] rebuilt : ["foo", "undefined"] tasks/coverage/typescript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck46.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] +Unresolved references mismatch: after transform: ["Iterable", "Symbol", "foo", "undefined"] rebuilt : ["Symbol", "foo", "undefined"] @@ -29786,6 +34448,9 @@ tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "dec", "method"] rebuilt : ScopeId(0): ["C", "method"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(0): Some("dec") rebuilt : ReferenceId(0): None @@ -29814,6 +34479,9 @@ tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "dec", "x"] rebuilt : ScopeId(0): ["C", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(0): Some("dec") rebuilt : ReferenceId(0): None @@ -29825,6 +34493,9 @@ tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "dec", "method"] rebuilt : ScopeId(0): ["C", "method"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(0): Some("dec") rebuilt : ReferenceId(0): None @@ -29836,6 +34507,9 @@ tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["C1", "C2", "C3", "dec", "x"] rebuilt : ScopeId(0): ["C1", "C2", "C3", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Reference symbol mismatch: after transform: ReferenceId(0): Some("dec") rebuilt : ReferenceId(0): None @@ -29853,6 +34527,9 @@ tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "dec"] rebuilt : ScopeId(0): ["C"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(0): Some("dec") rebuilt : ReferenceId(0): None @@ -30266,6 +34943,9 @@ tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/c semantic error: Bindings mismatch: after transform: ScopeId(0): ["dec", "method"] rebuilt : ScopeId(0): ["method"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(0): Some("dec") rebuilt : ReferenceId(0): None @@ -30294,6 +34974,9 @@ tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/c semantic error: Bindings mismatch: after transform: ScopeId(0): ["dec", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(0): Some("dec") rebuilt : ReferenceId(0): None @@ -30305,6 +34988,9 @@ tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/c semantic error: Bindings mismatch: after transform: ScopeId(0): ["dec", "method"] rebuilt : ScopeId(0): ["method"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(0): Some("dec") rebuilt : ReferenceId(0): None @@ -30316,6 +35002,9 @@ tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/c semantic error: Bindings mismatch: after transform: ScopeId(0): ["dec", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Reference symbol mismatch: after transform: ReferenceId(0): Some("dec") rebuilt : ReferenceId(0): None @@ -30333,6 +35022,9 @@ tasks/coverage/typescript/tests/cases/conformance/esDecorators/classExpression/c semantic error: Bindings mismatch: after transform: ScopeId(0): ["dec"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(0): Some("dec") rebuilt : ReferenceId(0): None @@ -30865,6 +35557,9 @@ tasks/coverage/typescript/tests/cases/conformance/esDecorators/esDecorators-pres semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "D", "instance"] rebuilt : ScopeId(0): ["C", "D"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(5)] Reference symbol mismatch: after transform: ReferenceId(5): Some("instance") rebuilt : ReferenceId(0): None @@ -30893,7 +35588,10 @@ after transform: [] rebuilt : ["metadata"] tasks/coverage/typescript/tests/cases/conformance/expressions/arrayLiterals/arrayLiteralInference.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] +Bindings mismatch: after transform: ScopeId(1): ["AdvancedList", "AppType", "Composite", "HeaderDetail", "HeaderMultiDetail", "ListOnly", "ModuleSettings", "Relationship", "Report", "Standard"] rebuilt : ScopeId(1): ["AppType"] Scope flags mismatch: @@ -30928,6 +35626,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/arrayLiterals/arra semantic error: Bindings mismatch: after transform: ScopeId(0): ["a0", "a1", "a2", "a3", "a4", "a5", "b0", "b1", "c0", "c1", "c2", "c3", "d0", "d1", "d2", "d3", "d4", "d5", "d6", "d7", "d8", "d9", "myArray", "myArray2", "temp", "temp1", "temp2", "temp3", "temp4"] rebuilt : ScopeId(0): ["a0", "a1", "a2", "a3", "a4", "a5", "b0", "b1", "c0", "c1", "c2", "c3", "d0", "d1", "d2", "d3", "d4", "d5", "d6", "d7", "d8", "d9", "temp", "temp1", "temp2", "temp3", "temp4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["Array", "Number", "String", "undefined"] rebuilt : ["undefined"] @@ -30936,6 +35637,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/arrayLiterals/arra semantic error: Bindings mismatch: after transform: ScopeId(0): ["a0", "a1", "a2", "a3", "a4", "a5", "b0", "b1", "c0", "c1", "c2", "c3", "d0", "d1", "d2", "d3", "d4", "d5", "d6", "d7", "d8", "d9", "myArray", "myArray2", "temp", "temp1", "temp2"] rebuilt : ScopeId(0): ["a0", "a1", "a2", "a3", "a4", "a5", "b0", "b1", "c0", "c1", "c2", "c3", "d0", "d1", "d2", "d3", "d4", "d5", "d6", "d7", "d8", "d9", "temp", "temp1", "temp2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["Array", "Number", "String", "undefined"] rebuilt : ["undefined"] @@ -30957,8 +35661,21 @@ Unresolved references mismatch: after transform: [] rebuilt : ["x"] +tasks/coverage/typescript/tests/cases/conformance/expressions/asOperator/asOperator3.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/conformance/expressions/asOperator/asOperatorASI.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/conformance/expressions/assignmentOperator/assignmentGenericLookupTypeNarrowing.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] +Bindings mismatch: after transform: ScopeId(3): ["K", "element", "key", "x"] rebuilt : ScopeId(1): ["element", "key", "x"] @@ -30966,6 +35683,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/assignmentOperator semantic error: Bindings mismatch: after transform: ScopeId(0): ["AOrArrA", "a", "arr", "x"] rebuilt : ScopeId(0): ["a", "arr", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["RegExp"] rebuilt : [] @@ -31071,6 +35791,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/co semantic error: Bindings mismatch: after transform: ScopeId(0): ["A1", "A2", "A3", "A4", "A5", "A6", "B1", "B2", "B3", "B4", "B5", "B6", "Base", "a1", "a2", "a3", "a4", "a5", "a6", "b1", "b2", "b3", "b4", "b5", "b6", "base1", "base2", "r1a1", "r1a2", "r1a3", "r1a4", "r1a5", "r1a6", "r1a7", "r1b1", "r1b2", "r1b3", "r1b4", "r1b5", "r1b6", "r1b7", "r2a1", "r2a2", "r2a3", "r2a4", "r2a5", "r2a6", "r2a7", "r2b1", "r2b2", "r2b3", "r2b4", "r2b5", "r2b6", "r2b7", "r3a1", "r3a2", "r3a3", "r3a4", "r3a5", "r3a6", "r3a7", "r3b1", "r3b2", "r3b3", "r3b4", "r3b5", "r3b6", "r3b7", "r4a1", "r4a2", "r4a3", "r4a4", "r4a5", "r4a6", "r4a7", "r4b1", "r4b2", "r4b3", "r4b4", "r4b5", "r4b6", "r4b7", "r5a1", "r5a2", "r5a3", "r5a4", "r5a5", "r5a6", "r5a7", "r5b1", "r5b2", "r5b3", "r5b4", "r5b5", "r5b6", "r5b7", "r6a1", "r6a2", "r6a3", "r6a4", "r6a5", "r6a6", "r6a7", "r6b1", "r6b2", "r6b3", "r6b4", "r6b5", "r6b6", "r6b7", "r7a1", "r7a2", "r7a3", "r7a4", "r7a5", "r7a6", "r7a7", "r7b1", "r7b2", "r7b3", "r7b4", "r7b5", "r7b6", "r7b7", "r8a1", "r8a2", "r8a3", "r8a4", "r8a5", "r8a6", "r8a7", "r8b1", "r8b2", "r8b3", "r8b4", "r8b5", "r8b6", "r8b7"] rebuilt : ScopeId(0): ["A1", "A2", "B1", "B2", "Base", "a1", "a2", "a3", "a4", "a5", "a6", "b1", "b2", "b3", "b4", "b5", "b6", "base1", "base2", "r1a1", "r1a2", "r1a3", "r1a4", "r1a5", "r1a6", "r1a7", "r1b1", "r1b2", "r1b3", "r1b4", "r1b5", "r1b6", "r1b7", "r2a1", "r2a2", "r2a3", "r2a4", "r2a5", "r2a6", "r2a7", "r2b1", "r2b2", "r2b3", "r2b4", "r2b5", "r2b6", "r2b7", "r3a1", "r3a2", "r3a3", "r3a4", "r3a5", "r3a6", "r3a7", "r3b1", "r3b2", "r3b3", "r3b4", "r3b5", "r3b6", "r3b7", "r4a1", "r4a2", "r4a3", "r4a4", "r4a5", "r4a6", "r4a7", "r4b1", "r4b2", "r4b3", "r4b4", "r4b5", "r4b6", "r4b7", "r5a1", "r5a2", "r5a3", "r5a4", "r5a5", "r5a6", "r5a7", "r5b1", "r5b2", "r5b3", "r5b4", "r5b5", "r5b6", "r5b7", "r6a1", "r6a2", "r6a3", "r6a4", "r6a5", "r6a6", "r6a7", "r6b1", "r6b2", "r6b3", "r6b4", "r6b5", "r6b6", "r6b7", "r7a1", "r7a2", "r7a3", "r7a4", "r7a5", "r7a6", "r7a7", "r7b1", "r7b2", "r7b3", "r7b4", "r7b5", "r7b6", "r7b7", "r8a1", "r8a2", "r8a3", "r8a4", "r8a5", "r8a6", "r8a7", "r8b1", "r8b2", "r8b3", "r8b4", "r8b5", "r8b6", "r8b7"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(4), ReferenceId(6)] rebuilt : SymbolId(0): [] @@ -31096,7 +35819,10 @@ after transform: ScopeId(1): ["T", "r1", "r2", "r3", "r4", "r5", "r6", "r7", "r8 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: Symbol reference IDs 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)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(16), ReferenceId(18)] rebuilt : SymbolId(0): [ReferenceId(0)] Symbol reference IDs mismatch: @@ -31104,7 +35830,10 @@ after transform: SymbolId(2): [ReferenceId(17)] rebuilt : SymbolId(2): [] tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipObjectsOnInstantiatedConstructorSignature.ts -semantic error: Symbol reference IDs 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)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(16), ReferenceId(18)] rebuilt : SymbolId(0): [ReferenceId(0)] Symbol reference IDs mismatch: @@ -31115,6 +35844,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/co semantic error: Bindings mismatch: after transform: ScopeId(0): ["BrandedNum", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithOneOperandIsAny.ts semantic error: Bindings mismatch: @@ -31168,7 +35900,10 @@ after transform: SymbolId(0): [ReferenceId(0), ReferenceId(5), ReferenceId(8), R rebuilt : SymbolId(0): [ReferenceId(7), ReferenceId(12), ReferenceId(15), ReferenceId(16), ReferenceId(17), ReferenceId(22), ReferenceId(25), ReferenceId(26), ReferenceId(27), ReferenceId(32), ReferenceId(35), ReferenceId(36), ReferenceId(37), ReferenceId(42), ReferenceId(45), ReferenceId(46), ReferenceId(47), ReferenceId(52), ReferenceId(55), ReferenceId(56), ReferenceId(57), ReferenceId(62), ReferenceId(65), ReferenceId(66), ReferenceId(67), ReferenceId(72), ReferenceId(75), ReferenceId(76), ReferenceId(77), ReferenceId(82), ReferenceId(85), ReferenceId(86), ReferenceId(87)] tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeObjectOnCallSignature.ts -semantic error: Symbol reference IDs 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)] +Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(4), ReferenceId(5), ReferenceId(7), ReferenceId(8), ReferenceId(9), ReferenceId(10), ReferenceId(12), ReferenceId(14)] rebuilt : SymbolId(0): [ReferenceId(0)] Symbol reference IDs mismatch: @@ -31176,7 +35911,10 @@ after transform: SymbolId(1): [ReferenceId(2), ReferenceId(3), ReferenceId(6), R rebuilt : SymbolId(1): [] tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeObjectOnConstructorSignature.ts -semantic error: Symbol reference IDs mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] +Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2), ReferenceId(3), ReferenceId(4), ReferenceId(5), ReferenceId(6), ReferenceId(7), ReferenceId(8), ReferenceId(9), ReferenceId(10), ReferenceId(12), ReferenceId(14), ReferenceId(15), ReferenceId(16), ReferenceId(18), ReferenceId(19), ReferenceId(21), ReferenceId(22), ReferenceId(24), ReferenceId(25), ReferenceId(26), ReferenceId(28)] rebuilt : SymbolId(0): [ReferenceId(0)] Symbol reference IDs mismatch: @@ -31192,7 +35930,10 @@ after transform: SymbolId(1): [ReferenceId(2), ReferenceId(4)] rebuilt : SymbolId(1): [] tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeObjectOnInstantiatedCallSignature.ts -semantic error: Symbol reference IDs 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)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] +Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(15), ReferenceId(17)] rebuilt : SymbolId(0): [ReferenceId(0)] Symbol reference IDs mismatch: @@ -31200,7 +35941,10 @@ after transform: SymbolId(1): [ReferenceId(16)] rebuilt : SymbolId(1): [] tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeObjectOnInstantiatedConstructorSignature.ts -semantic error: Symbol reference IDs 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)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] +Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(15), ReferenceId(17)] rebuilt : SymbolId(0): [ReferenceId(0)] Symbol reference IDs mismatch: @@ -31211,6 +35955,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/co semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "J", "a", "b", "ra1", "ra2", "rb1", "rb2", "rc1", "rc2", "rd1", "rd2", "re1", "re2", "rf1", "rf2", "rg1", "rg2", "rh1", "rh2"] rebuilt : ScopeId(0): ["a", "b", "ra1", "ra2", "rb1", "rb2", "rc1", "rc2", "rd1", "rd2", "re1", "re2", "rf1", "rf2", "rg1", "rg2", "rh1", "rh2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeObjectOnProperty.ts semantic error: Symbol reference IDs mismatch: @@ -31233,7 +35980,10 @@ after transform: SymbolId(5): [ReferenceId(9)] rebuilt : SymbolId(5): [] tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/instanceofOperator/instanceofOperatorWithInvalidStaticToString.ts -semantic error: Unresolved reference IDs mismatch for "StaticToString": +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +Unresolved reference IDs mismatch for "StaticToString": after transform: [ReferenceId(0), ReferenceId(2)] rebuilt : [ReferenceId(1)] Unresolved reference IDs mismatch for "StaticToNumber": @@ -31260,6 +36010,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/in semantic error: Bindings mismatch: after transform: ScopeId(0): ["HasInstanceOf", "HasInstanceOf1", "HasInstanceOf2", "Line", "Point", "Point3D", "Point3D2", "Rhs14", "Rhs15", "lhs0", "lhs1", "lhs2", "lhs3", "lhs4", "obj", "rhs0", "rhs1", "rhs14", "rhs15", "rhs2", "rhs3", "rhs4", "rhs5", "rhs6"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(20), ScopeId(22), ScopeId(24), ScopeId(26), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(38), ScopeId(39), ScopeId(41), ScopeId(43)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference symbol mismatch: after transform: ReferenceId(53): Some("lhs0") rebuilt : ReferenceId(0): None @@ -31736,6 +36489,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/binaryOperators/in semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "f1", "f2", "f3", "f4", "r1", "r2", "r3", "r4", "r5", "r6", "x"] rebuilt : ScopeId(0): ["f1", "f2", "f3", "f4", "r1", "r2", "r3", "r4", "r5", "r6", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Function", "undefined"] rebuilt : ["undefined"] @@ -31836,13 +36592,21 @@ Unresolved references mismatch: after transform: ["Number"] rebuilt : [] +tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/functionExpressionContextualTyping3.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/iterableContextualTyping1.ts semantic error: Unresolved references mismatch: after transform: ["Iterable"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/parenthesizedContexualTyping3.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14)] +Bindings mismatch: after transform: ScopeId(3): ["T", "g", "tempStrs", "x"] rebuilt : ScopeId(1): ["g", "tempStrs", "x"] Unresolved references mismatch: @@ -31858,6 +36622,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/s semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "CBase", "ContextualType"] rebuilt : ScopeId(0): ["C", "CBase"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(1): [] @@ -31866,6 +36633,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/t semantic error: Bindings mismatch: after transform: ScopeId(0): ["FuncType", "tempTag1"] rebuilt : ScopeId(0): ["tempTag1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] Bindings mismatch: after transform: ScopeId(4): ["T", "rest"] rebuilt : ScopeId(1): ["rest"] @@ -31883,6 +36653,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/contextualTyping/t semantic error: Bindings mismatch: after transform: ScopeId(0): ["FuncType1", "FuncType2", "tempTag2"] rebuilt : ScopeId(0): ["tempTag2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] Unresolved references mismatch: after transform: ["TemplateStringsArray", "undefined", "x"] rebuilt : ["undefined"] @@ -31891,6 +36664,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/elementAccess/stri semantic error: Bindings mismatch: after transform: ScopeId(0): ["E", "Item", "e", "item", "snb"] rebuilt : ScopeId(0): ["E", "snb"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(1): ["A", "B", "C", "E"] rebuilt : ScopeId(1): ["E"] @@ -31917,6 +36693,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/call semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "D", "X", "a", "foo", "obj", "xa", "z"] rebuilt : ScopeId(0): ["C", "D", "a", "foo", "obj", "xa", "z"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5)] Unresolved references mismatch: after transform: ["Function"] rebuilt : [] @@ -31925,6 +36704,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/call semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "D", "X", "a", "foo", "obj", "xa", "z"] rebuilt : ScopeId(0): ["C", "D", "a", "foo", "obj", "xa", "z"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5)] Unresolved references mismatch: after transform: ["Function"] rebuilt : [] @@ -31933,6 +36715,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/newW semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "D", "a", "b", "c", "d", "e", "f", "f2", "g", "h", "i"] rebuilt : ScopeId(0): ["B", "a", "b", "c", "d", "e", "f", "f2", "g", "h", "i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Symbol reference IDs mismatch: after transform: SymbolId(7): [ReferenceId(0), ReferenceId(1), ReferenceId(45), ReferenceId(46), ReferenceId(48)] rebuilt : SymbolId(6): [ReferenceId(36), ReferenceId(37), ReferenceId(39)] @@ -31941,6 +36726,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/newW semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "D", "a", "b", "c", "d", "e", "f", "f2", "g", "h", "i"] rebuilt : ScopeId(0): ["B", "a", "b", "c", "d", "e", "f", "f2", "g", "h", "i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Symbol reference IDs mismatch: after transform: SymbolId(7): [ReferenceId(0), ReferenceId(1), ReferenceId(45), ReferenceId(46), ReferenceId(48)] rebuilt : SymbolId(6): [ReferenceId(36), ReferenceId(37), ReferenceId(39)] @@ -31949,6 +36737,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/functionCalls/newW semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "D", "a", "b", "c", "d", "e", "f", "f2", "g", "h", "i"] rebuilt : ScopeId(0): ["B", "a", "b", "c", "d", "e", "f", "f2", "g", "h", "i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Symbol reference IDs mismatch: after transform: SymbolId(7): [ReferenceId(0), ReferenceId(1), ReferenceId(45), ReferenceId(46), ReferenceId(48)] rebuilt : SymbolId(6): [ReferenceId(36), ReferenceId(37), ReferenceId(39)] @@ -31961,6 +36752,11 @@ 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)] +tasks/coverage/typescript/tests/cases/conformance/expressions/functions/contextuallyTypedFunctionExpressionsAndReturnAnnotations.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + tasks/coverage/typescript/tests/cases/conformance/expressions/functions/typeOfThisInFunctionExpression.ts semantic error: Missing SymbolId: M Missing SymbolId: _M @@ -31980,6 +36776,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/functions/voidPara semantic error: Bindings mismatch: after transform: ScopeId(0): ["Obj", "gg", "o"] rebuilt : ScopeId(0): ["gg"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(4): Some("o") rebuilt : ReferenceId(2): None @@ -31988,15 +36787,24 @@ after transform: ["g"] rebuilt : ["g", "o"] tasks/coverage/typescript/tests/cases/conformance/expressions/newOperator/newOperatorConformance.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(14)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8)] +Bindings mismatch: after transform: ScopeId(4): ["T"] rebuilt : ScopeId(4): [] Bindings mismatch: after transform: ScopeId(10): ["T", "p", "s"] rebuilt : ScopeId(6): ["p", "s"] +Scope children mismatch: +after transform: ScopeId(10): [ScopeId(11)] +rebuilt : ScopeId(6): [] Bindings mismatch: after transform: ScopeId(12): ["T", "p", "s"] rebuilt : ScopeId(7): ["p", "s"] +Scope children mismatch: +after transform: ScopeId(12): [ScopeId(13)] +rebuilt : ScopeId(7): [] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(3), ReferenceId(4)] rebuilt : SymbolId(0): [ReferenceId(0)] @@ -32016,6 +36824,11 @@ Symbol redeclarations mismatch: after transform: SymbolId(9): [Span { start: 240, end: 262 }] rebuilt : SymbolId(8): [] +tasks/coverage/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/nullishCoalescingOperator10.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/nullishCoalescingOperator2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["a1", "a2", "a3", "a4", "a5", "a6", "a7", "a8", "a9", "aa1", "aa2", "aa3", "aa4", "aa5", "aa6", "aa7", "aa8", "aa9"] @@ -32113,6 +36926,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/nullishCoalescingO semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "b", "n1", "n2", "n3"] rebuilt : ScopeId(0): ["n1", "n2", "n3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(0): Some("a") rebuilt : ReferenceId(0): None @@ -32353,6 +37169,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/c semantic error: Bindings mismatch: after transform: ScopeId(0): ["T", "o1", "o2", "o3", "o4", "o5", "v"] rebuilt : ScopeId(0): ["v"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(0): Some("o1") rebuilt : ReferenceId(0): None @@ -32445,6 +37264,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/c semantic error: Bindings mismatch: after transform: ScopeId(0): ["Y", "value"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(3): Some("value") rebuilt : ReferenceId(0): None @@ -32517,6 +37339,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/e semantic error: Bindings mismatch: after transform: ScopeId(0): ["T", "o1", "o2", "o3", "o4", "o5", "o6"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(0): Some("o1") rebuilt : ReferenceId(0): None @@ -32573,6 +37398,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/o semantic error: Bindings mismatch: after transform: ScopeId(0): ["b1", "b2", "b3", "b4", "b5", "b6", "b7", "b8", "fnu", "ofnu", "osu", "su", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8"] rebuilt : ScopeId(0): ["b1", "b2", "b3", "b4", "b5", "b6", "b7", "b8", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(2): Some("su") rebuilt : ReferenceId(0): None @@ -32622,6 +37450,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/optionalChaining/p semantic error: Bindings mismatch: after transform: ScopeId(0): ["T", "o1", "o2", "o3", "o4", "o5", "o6"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(0): Some("o1") rebuilt : ReferenceId(0): None @@ -32707,6 +37538,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGua semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "D", "I1", "a", "b", "f1", "obj", "subType", "union", "union2", "union3"] rebuilt : ScopeId(0): ["A", "B", "C", "D", "a", "b", "f1", "obj", "subType", "union", "union2", "union3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(10), ScopeId(11)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(5), ReferenceId(14), ReferenceId(19), ReferenceId(25), ReferenceId(27), ReferenceId(29), ReferenceId(31), ReferenceId(34), ReferenceId(39)] rebuilt : SymbolId(0): [ReferenceId(0)] @@ -32718,7 +37552,10 @@ after transform: SymbolId(2): [ReferenceId(3), ReferenceId(4), ReferenceId(10), rebuilt : SymbolId(2): [] tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardFunctionGenerics.ts -semantic error: Symbol reference IDs 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)] +Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(15)] rebuilt : SymbolId(0): [ReferenceId(0)] Symbol reference IDs mismatch: @@ -32732,6 +37569,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGua semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "Beast", "Legged", "Winged", "X", "Y", "Z", "beastFoo", "f1", "hasLegs", "hasWings", "identifyBeast", "isB", "union"] rebuilt : ScopeId(0): ["beastFoo", "f1", "hasLegs", "hasWings", "identifyBeast", "isB", "union"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(32)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(20)] Unresolved references mismatch: after transform: ["Object", "isX", "isY", "isZ", "log"] rebuilt : ["isX", "isY", "isZ", "log"] @@ -32740,6 +37580,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGua semantic error: Bindings mismatch: after transform: ScopeId(0): ["Tag", "Tag2", "value"] rebuilt : ScopeId(0): ["Tag2", "value"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] Scope flags mismatch: after transform: ScopeId(7): ScopeFlags(0x0) rebuilt : ScopeId(3): ScopeFlags(Function) @@ -32750,6 +37593,16 @@ Symbol reference IDs mismatch: after transform: SymbolId(5): [ReferenceId(8), ReferenceId(9), ReferenceId(17)] rebuilt : SymbolId(1): [ReferenceId(7)] +tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardNarrowsToLiteralType.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + +tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardNarrowsToLiteralTypeUnion.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormExpr1AndExpr2.ts semantic error: Symbol reference IDs mismatch: after transform: SymbolId(6): [ReferenceId(0), ReferenceId(1), ReferenceId(2), ReferenceId(23)] @@ -32761,7 +37614,10 @@ after transform: SymbolId(6): [ReferenceId(0), ReferenceId(1), ReferenceId(2), R rebuilt : SymbolId(6): [] tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormFunctionEquality.ts -semantic error: Unresolved references 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: after transform: ["Object", "isString1", "isString2"] rebuilt : ["isString1", "isString2"] @@ -32783,6 +37639,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGua semantic error: Bindings mismatch: after transform: ScopeId(0): ["C1", "C2", "D1", "c1", "c1Orc2", "c2", "c2Ord1", "d1", "num", "r2", "str", "strOrNum"] rebuilt : ScopeId(0): ["c1", "c1Orc2", "c2", "c2Ord1", "d1", "num", "r2", "str", "strOrNum"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormIsType.ts semantic error: Symbol reference IDs mismatch: @@ -32799,6 +37658,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGua semantic error: Bindings mismatch: after transform: ScopeId(0): ["C1", "C2", "D1", "c1", "c1Orc2", "c2", "c2Ord1", "d1", "isC1", "isC2", "isD1", "num", "r2", "str", "strOrNum"] rebuilt : ScopeId(0): ["c1", "c1Orc2", "c2", "c2Ord1", "d1", "isC1", "isC2", "isD1", "num", "r2", "str", "strOrNum"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormTypeOfBoolean.ts semantic error: Symbol reference IDs mismatch: @@ -32824,6 +37686,11 @@ semantic error: Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2), ReferenceId(3)] rebuilt : SymbolId(0): [] +tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormTypeOfPrimitiveSubtype.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] + tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGuardOfFormTypeOfString.ts semantic error: Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2), ReferenceId(3)] @@ -32833,6 +37700,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typeGua semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "AWithOptionalProp", "B", "BWithOptionalProp", "C", "ClassWithUnionProp", "D", "InMemberOfClass", "Indexed", "NestedClassWithProp", "SelfAssert", "anonymousClasses", "f", "inParenthesizedExpression", "inProperty", "innestedProperty", "multipleClasses", "namedClasses", "positiveTestClassesWithOptionalProperties"] rebuilt : ScopeId(0): ["A", "AWithOptionalProp", "B", "BWithOptionalProp", "C", "ClassWithUnionProp", "D", "InMemberOfClass", "NestedClassWithProp", "SelfAssert", "anonymousClasses", "f", "inParenthesizedExpression", "inProperty", "innestedProperty", "multipleClasses", "namedClasses", "positiveTestClassesWithOptionalProperties"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(8), ScopeId(11), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(19), ScopeId(22), ScopeId(23), ScopeId(26), ScopeId(27), ScopeId(30), ScopeId(34), ScopeId(38), ScopeId(39)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(8), ScopeId(11), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(19), ScopeId(22), ScopeId(23), ScopeId(26), ScopeId(27), ScopeId(30), ScopeId(34), ScopeId(38)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(2), ReferenceId(7), ReferenceId(27), ReferenceId(32), ReferenceId(43)] rebuilt : SymbolId(0): [] @@ -32933,6 +37803,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/typePre semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/expressions/typeSatisfaction/typeSatisfaction_asConstArrays.ts semantic error: Unresolved references mismatch: @@ -32943,11 +37816,17 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/typeSatisfaction/t semantic error: Bindings mismatch: after transform: ScopeId(0): ["Predicates", "p"] rebuilt : ScopeId(0): ["p"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/expressions/typeSatisfaction/typeSatisfaction_contextualTyping3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["StringOrNumberFunc", "fn", "obj", "obj2"] rebuilt : ScopeId(0): ["fn", "obj", "obj2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Unresolved references mismatch: after transform: ["Function"] rebuilt : [] @@ -32956,6 +37835,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/typeSatisfaction/t semantic error: Bindings mismatch: after transform: ScopeId(0): ["Movable", "car"] rebuilt : ScopeId(0): ["car"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Unresolved references mismatch: after transform: ["Record"] rebuilt : [] @@ -32964,6 +37846,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/typeSatisfaction/t semantic error: Bindings mismatch: after transform: ScopeId(0): ["Facts", "M", "m", "x", "x2"] rebuilt : ScopeId(0): ["m", "x", "x2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] Symbol reference IDs mismatch: after transform: SymbolId(3): [ReferenceId(2), ReferenceId(4), ReferenceId(6), ReferenceId(7), ReferenceId(8)] rebuilt : SymbolId(0): [ReferenceId(1), ReferenceId(3), ReferenceId(5), ReferenceId(6)] @@ -32972,6 +37857,9 @@ tasks/coverage/typescript/tests/cases/conformance/expressions/typeSatisfaction/t semantic error: Bindings mismatch: after transform: ScopeId(0): ["Facts", "M", "m", "x", "x2"] rebuilt : ScopeId(0): ["m", "x", "x2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] Symbol reference IDs mismatch: after transform: SymbolId(3): [ReferenceId(2), ReferenceId(4), ReferenceId(6), ReferenceId(7), ReferenceId(8)] rebuilt : SymbolId(0): [ReferenceId(1), ReferenceId(3), ReferenceId(5), ReferenceId(6)] @@ -33049,6 +37937,9 @@ tasks/coverage/typescript/tests/cases/conformance/externalModules/amdImportNotAs semantic error: Bindings mismatch: after transform: ScopeId(0): ["C1", "E1", "I1", "M1"] rebuilt : ScopeId(0): ["C1", "E1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(5): ["A", "B", "C", "E1"] rebuilt : ScopeId(2): ["E1"] @@ -33082,6 +37973,9 @@ tasks/coverage/typescript/tests/cases/conformance/externalModules/commonJSImport semantic error: Bindings mismatch: after transform: ScopeId(0): ["C1", "E1", "I1", "M1"] rebuilt : ScopeId(0): ["C1", "E1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(5): ["A", "B", "C", "E1"] rebuilt : ScopeId(2): ["E1"] @@ -33092,6 +37986,16 @@ Symbol flags mismatch: after transform: SymbolId(4): SymbolFlags(Export | RegularEnum) rebuilt : SymbolId(1): SymbolFlags(BlockScopedVariable | Export) +tasks/coverage/typescript/tests/cases/conformance/externalModules/es6/es6modulekindWithES5Target.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] + +tasks/coverage/typescript/tests/cases/conformance/externalModules/es6/es6modulekindWithES5Target11.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/conformance/externalModules/es6/es6modulekindWithES5Target12.ts semantic error: Missing SymbolId: _C Missing ReferenceId: _C @@ -33116,6 +38020,9 @@ Missing ReferenceId: F Bindings mismatch: after transform: ScopeId(0): ["C", "E", "F", "N"] rebuilt : ScopeId(0): ["C", "E", "F"] +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), ScopeId(9)] Binding symbols mismatch: after transform: ScopeId(2): [SymbolId(1), SymbolId(11)] rebuilt : ScopeId(2): [SymbolId(1), SymbolId(2)] @@ -33189,6 +38096,11 @@ Unresolved references mismatch: after transform: [] rebuilt : ["N"] +tasks/coverage/typescript/tests/cases/conformance/externalModules/es6/es6modulekindWithES5Target3.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/conformance/externalModules/es6/es6modulekindWithES5Target5.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["E1", "value1"] @@ -33217,10 +38129,23 @@ Missing ReferenceId: N Bindings mismatch: after transform: ScopeId(0): ["N", "N2"] rebuilt : ScopeId(0): ["N"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Binding symbols mismatch: after transform: ScopeId(1): [SymbolId(1), SymbolId(4)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] +tasks/coverage/typescript/tests/cases/conformance/externalModules/esnext/esnextmodulekindWithES5Target.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] + +tasks/coverage/typescript/tests/cases/conformance/externalModules/esnext/esnextmodulekindWithES5Target11.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/conformance/externalModules/esnext/esnextmodulekindWithES5Target12.ts semantic error: Missing SymbolId: _C Missing ReferenceId: _C @@ -33245,6 +38170,9 @@ Missing ReferenceId: F Bindings mismatch: after transform: ScopeId(0): ["C", "E", "F", "N"] rebuilt : ScopeId(0): ["C", "E", "F"] +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), ScopeId(9)] Binding symbols mismatch: after transform: ScopeId(2): [SymbolId(1), SymbolId(11)] rebuilt : ScopeId(2): [SymbolId(1), SymbolId(2)] @@ -33318,6 +38246,11 @@ Unresolved references mismatch: after transform: [] rebuilt : ["N"] +tasks/coverage/typescript/tests/cases/conformance/externalModules/esnext/esnextmodulekindWithES5Target3.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/conformance/externalModules/esnext/esnextmodulekindWithES5Target5.ts semantic error: Bindings mismatch: after transform: ScopeId(1): ["E1", "value1"] @@ -33346,10 +38279,18 @@ Missing ReferenceId: N Bindings mismatch: after transform: ScopeId(0): ["N", "N2"] rebuilt : ScopeId(0): ["N"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Binding symbols mismatch: after transform: ScopeId(1): [SymbolId(1), SymbolId(4)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] +tasks/coverage/typescript/tests/cases/conformance/externalModules/exportAmbientClassNameWithObject.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/conformance/externalModules/exportAssignDottedName.ts semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. Please consider using `import lib from '...';` alongside Typescript's --allowSyntheticDefaultImports option, or add @babel/plugin-transform-modules-commonjs to your Babel config. @@ -33419,6 +38360,9 @@ tasks/coverage/typescript/tests/cases/conformance/externalModules/exportTypeMerg semantic error: Bindings mismatch: after transform: ScopeId(0): ["MyType", "Something", "myValue"] rebuilt : ScopeId(0): ["Something", "myValue"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2)] rebuilt : SymbolId(0): [ReferenceId(0)] @@ -33427,6 +38371,9 @@ tasks/coverage/typescript/tests/cases/conformance/externalModules/globalAugmenta semantic error: Bindings mismatch: after transform: ScopeId(0): ["global"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/externalModules/importImportOnlyModule.ts semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. @@ -33468,11 +38415,17 @@ tasks/coverage/typescript/tests/cases/conformance/externalModules/topLevelAmbien semantic error: Bindings mismatch: after transform: ScopeId(0): ["foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/externalModules/topLevelAwait.1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "C1", "C2", "C3", "_await", "dec", "x", "y"] rebuilt : ScopeId(0): ["C", "C1", "C2", "C3", "x", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] Reference symbol mismatch: after transform: ReferenceId(11): Some("dec") rebuilt : ReferenceId(11): None @@ -33494,11 +38447,17 @@ tasks/coverage/typescript/tests/cases/conformance/externalModules/typeAndNamespa semantic error: Bindings mismatch: after transform: ScopeId(0): ["Drink"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/ambient.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "ns"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["A"] rebuilt : [] @@ -33520,6 +38479,9 @@ tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/expor semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/exportDeclaration_value.ts semantic error: Symbol flags mismatch: @@ -33533,6 +38495,9 @@ tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/imple semantic error: Bindings mismatch: after transform: ScopeId(0): ["Component"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/importDefaultNamedType.ts semantic error: Bindings mismatch: @@ -33553,11 +38518,17 @@ tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/merge semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/namespaceImportTypeQuery2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/nestedNamespace.ts semantic error: Missing SymbolId: types @@ -33583,11 +38554,17 @@ tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/prese semantic error: Bindings mismatch: after transform: ScopeId(0): ["D", "b", "c"] rebuilt : ScopeId(0): ["b", "c"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/preserveValueImports_errors.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/typeQuery.ts semantic error: Bindings mismatch: @@ -33598,9 +38575,15 @@ tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnlyMerge1 semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/externalModules/typeValueMerge1.ts -semantic error: Symbol flags mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] +Symbol flags mismatch: after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | Export | Function | TypeAlias) rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export | Function) Symbol span mismatch: @@ -33680,11 +38663,27 @@ tasks/coverage/typescript/tests/cases/conformance/externalModules/verbatimModule semantic error: Bindings mismatch: after transform: ScopeId(0): ["Typey"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/conformance/functions/functionOverloadCompatibilityWithVoid02.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/functions/functionOverloadCompatibilityWithVoid03.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/functions/strictBindCallApply2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "Test", "fb", "fn"] rebuilt : ScopeId(0): ["fb", "fn"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(1): [ReferenceId(2), ReferenceId(3)] rebuilt : SymbolId(0): [ReferenceId(0)] @@ -33701,6 +38700,9 @@ tasks/coverage/typescript/tests/cases/conformance/generators/generatorReturnType semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1", "f1"] rebuilt : ScopeId(0): ["f1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["Iterator"] rebuilt : [] @@ -33719,6 +38721,9 @@ Missing ReferenceId: StepResult Bindings mismatch: after transform: ScopeId(0): ["Directive", "PartialStepState", "QuickInputStep", "QuickPickItem", "QuickPickStep", "StepGenerator", "StepItemType", "StepResult", "StepResultGenerator", "StepSelection", "StepState", "canPickStepContinue", "createPickStep", "showStep"] rebuilt : ScopeId(0): ["Directive", "StepResult", "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)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] Bindings mismatch: after transform: ScopeId(5): ["Back", "Cancel", "Directive", "LoadMore", "Noop"] rebuilt : ScopeId(3): ["Directive"] @@ -33791,6 +38796,9 @@ tasks/coverage/typescript/tests/cases/conformance/inferFromBindingPattern.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Person", "SelectProps", "SelectResult", "any", "foo", "isAny", "isStringTuple", "john", "nufinspecial", "person", "personAgain", "whatever", "x", "x1", "x2", "x3"] rebuilt : ScopeId(0): ["any", "foo", "isAny", "isStringTuple", "john", "nufinspecial", "person", "personAgain", "whatever", "x", "x1", "x2", "x3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(4): ["T"] rebuilt : ScopeId(1): [] @@ -33799,6 +38807,9 @@ tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["M", "M2", "N"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/mergeThreeInterfaces.ts semantic error: Missing SymbolId: M @@ -33808,12 +38819,18 @@ 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"] +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"] Scope flags mismatch: after transform: ScopeId(7): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) +Scope children mismatch: +after transform: ScopeId(7): [ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13)] +rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/mergeThreeInterfaces2.ts semantic error: Missing SymbolId: M2 @@ -33859,12 +38876,18 @@ rebuilt : ScopeId(1): ["_M", "a", "r1", "r2"] 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"] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(2): ScopeFlags(Function) +Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(2): [] Binding symbols mismatch: after transform: ScopeId(6): [SymbolId(10), SymbolId(29)] rebuilt : ScopeId(3): [SymbolId(10), SymbolId(11)] @@ -33877,6 +38900,9 @@ rebuilt : ScopeId(4): ["_M4", "a", "r1", "r2"] Scope flags mismatch: after transform: ScopeId(7): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(4): ScopeFlags(Function) +Scope children mismatch: +after transform: ScopeId(7): [ScopeId(8)] +rebuilt : ScopeId(4): [] Binding symbols mismatch: after transform: ScopeId(9): [SymbolId(15), SymbolId(31)] rebuilt : ScopeId(5): [SymbolId(16), SymbolId(17)] @@ -33889,6 +38915,9 @@ rebuilt : ScopeId(6): ["_M6", "a", "r1", "r2", "r3"] Scope flags mismatch: after transform: ScopeId(10): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(6): ScopeFlags(Function) +Scope children mismatch: +after transform: ScopeId(10): [ScopeId(11)] +rebuilt : ScopeId(6): [] Binding symbols mismatch: after transform: ScopeId(12): [SymbolId(21), SymbolId(33)] rebuilt : ScopeId(7): [SymbolId(23), SymbolId(24)] @@ -33901,6 +38930,9 @@ rebuilt : ScopeId(8): ["_M8", "a", "r1", "r2", "r3"] Scope flags mismatch: after transform: ScopeId(13): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(8): ScopeFlags(Function) +Scope children mismatch: +after transform: ScopeId(13): [ScopeId(14)] +rebuilt : ScopeId(8): [] tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/mergeTwoInterfaces.ts semantic error: Missing SymbolId: M @@ -33910,12 +38942,18 @@ 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"] +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"] Scope flags mismatch: after transform: ScopeId(5): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) +Scope children mismatch: +after transform: ScopeId(5): [ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/mergeTwoInterfaces2.ts semantic error: Missing SymbolId: M2 @@ -33952,12 +38990,18 @@ rebuilt : ScopeId(1): ["_M", "a", "r1", "r2"] 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"] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(2): ScopeFlags(Function) +Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4)] +rebuilt : ScopeId(2): [] Binding symbols mismatch: after transform: ScopeId(5): [SymbolId(9), SymbolId(21)] rebuilt : ScopeId(3): [SymbolId(9), SymbolId(10)] @@ -33970,6 +39014,9 @@ rebuilt : ScopeId(4): ["_M4", "a", "r1", "r2"] Scope flags mismatch: after transform: ScopeId(6): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(4): ScopeFlags(Function) +Scope children mismatch: +after transform: ScopeId(6): [ScopeId(7)] +rebuilt : ScopeId(4): [] Binding symbols mismatch: after transform: ScopeId(8): [SymbolId(14), SymbolId(23)] rebuilt : ScopeId(5): [SymbolId(15), SymbolId(16)] @@ -33982,16 +39029,25 @@ rebuilt : ScopeId(6): ["_M6", "a", "r1", "r2"] Scope flags mismatch: after transform: ScopeId(9): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(6): ScopeFlags(Function) +Scope children mismatch: +after transform: ScopeId(9): [ScopeId(10)] +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"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/mergedInterfacesWithIndexers.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "a", "r", "r2", "r3"] rebuilt : ScopeId(0): ["a", "r", "r2", "r3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/mergedInterfacesWithMultipleBases.ts semantic error: Missing SymbolId: M @@ -34001,12 +39057,18 @@ 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"] +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"] 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): [] @@ -34034,12 +39096,18 @@ 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"] +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"] 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): [] @@ -34081,6 +39149,9 @@ tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "C", "C2", "C3", "C4", "D"] rebuilt : ScopeId(0): ["C", "C2", "C3", "C4", "D"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] @@ -34110,6 +39181,9 @@ tasks/coverage/typescript/tests/cases/conformance/interfaces/declarationMerging/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "D", "b", "c", "d", "r", "r2", "r3"] rebuilt : ScopeId(0): ["b", "c", "d", "r", "r2", "r3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(6), ScopeId(9), ScopeId(12), ScopeId(15), ScopeId(17), ScopeId(19)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Date"] rebuilt : [] @@ -34122,12 +39196,18 @@ Missing ReferenceId: G Bindings mismatch: after transform: ScopeId(0): ["A", "G", "a", "r", "r2", "r3"] rebuilt : ScopeId(0): ["G", "a", "r", "r2", "r3"] +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"] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) +Scope children mismatch: +after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(1): [] tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/asiPreventsParsingAsInterface03.ts semantic error: Missing SymbolId: n @@ -34148,11 +39228,17 @@ tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclaratio semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "Derived"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceExtendsObjectIntersection.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C1", "C2", "C20", "C21", "C22", "C23", "C3", "C4", "C5", "C6", "C7", "Constructor", "EX", "I1", "I10", "I11", "I12", "I13", "I2", "I20", "I21", "I22", "I23", "I3", "I4", "I5", "I6", "I7", "Identifiable", "NX", "T1", "T10", "T11", "T12", "T13", "T2", "T3", "T4", "T5", "T6", "T7"] rebuilt : ScopeId(0): ["C1", "C2", "C20", "C21", "C22", "C23", "C3", "C4", "C5", "C6", "C7"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] Unresolved references mismatch: after transform: ["CX", "Constructor", "NX", "Partial", "Readonly", "fx"] rebuilt : ["Constructor"] @@ -34161,36 +39247,57 @@ tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclaratio semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "Derived"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithCallAndConstructSignature.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "f", "r", "r2"] rebuilt : ScopeId(0): ["f", "r", "r2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithCallSignaturesThatHidesBaseSignature.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Derived", "Foo", "d", "r"] rebuilt : ScopeId(0): ["d", "r"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithCallSignaturesThatHidesBaseSignature2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Derived", "Foo", "d", "r"] rebuilt : ScopeId(0): ["d", "r"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithConstructSignaturesThatHidesBaseSignature.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Derived", "Foo", "d", "r"] rebuilt : ScopeId(0): ["d", "r"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithConstructSignaturesThatHidesBaseSignature2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Derived", "Foo", "d", "r"] rebuilt : ScopeId(0): ["d", "r"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithOverloadedCallAndConstructSignatures.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "f", "r1", "r2", "r3", "r4"] rebuilt : ScopeId(0): ["f", "r1", "r2", "r3", "r4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Object"] rebuilt : [] @@ -34202,6 +39309,9 @@ tasks/coverage/typescript/tests/cases/conformance/interfaces/interfaceDeclaratio semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "f", "r", "r2", "r3", "r4"] rebuilt : ScopeId(0): ["f", "r", "r2", "r3", "r4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Object"] rebuilt : [] @@ -34210,6 +39320,9 @@ tasks/coverage/typescript/tests/cases/conformance/interfaces/interfacesExtending semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "I", "f", "i", "r1", "r2", "r3"] rebuilt : ScopeId(0): ["Foo", "f", "i", "r1", "r2", "r3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(1), ReferenceId(6)] rebuilt : SymbolId(0): [] @@ -34550,6 +39663,9 @@ tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMer semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "X", "l", "p"] rebuilt : ScopeId(0): ["l", "p"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(8), ScopeId(13), ScopeId(17)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["A", "X"] rebuilt : [] @@ -34561,6 +39677,9 @@ tasks/coverage/typescript/tests/cases/conformance/internalModules/DeclarationMer semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "X", "l", "p"] rebuilt : ScopeId(0): ["l", "p"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(14), ScopeId(18)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["A", "X"] rebuilt : [] @@ -34597,6 +39716,9 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Bindings mismatch: after transform: ScopeId(2): ["Point", "Utils", "_A"] rebuilt : ScopeId(2): ["Utils", "_A"] +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)] @@ -34629,6 +39751,9 @@ rebuilt : ScopeId(0): [SymbolId(0)] Bindings mismatch: after transform: ScopeId(1): ["Point", "Utils", "_A"] rebuilt : ScopeId(1): ["Utils", "_A"] +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)] @@ -34668,6 +39793,9 @@ rebuilt : ScopeId(1): ["Point2d", "_A"] 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)] +rebuilt : ScopeId(1): [ScopeId(2)] Symbol flags mismatch: after transform: SymbolId(2): SymbolFlags(Export | Class) rebuilt : SymbolId(2): SymbolFlags(Class) @@ -34824,6 +39952,9 @@ tasks/coverage/typescript/tests/cases/conformance/internalModules/exportDeclarat semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/internalModules/exportDeclarations/ExportInterfaceWithInaccessibleTypeInTypeParameterConstraint.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -34885,12 +40016,18 @@ rebuilt : ScopeId(5): [SymbolId(8), SymbolId(9)] 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)] Scope flags mismatch: after transform: ScopeId(8): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(7): ScopeFlags(Function) +Scope children mismatch: +after transform: ScopeId(8): [ScopeId(9)] +rebuilt : ScopeId(7): [] Symbol flags mismatch: after transform: SymbolId(1): SymbolFlags(Export | Class) rebuilt : SymbolId(2): SymbolFlags(Class) @@ -34984,6 +40121,9 @@ semantic error: Missing SymbolId: test1 Bindings mismatch: after transform: ScopeId(0): ["mod1", "mod2", "pack1", "pack2", "test1", "test2"] rebuilt : ScopeId(0): ["test1", "test2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [] Symbol flags mismatch: after transform: SymbolId(9): SymbolFlags(BlockScopedVariable | ConstVariable | Export) rebuilt : SymbolId(1): SymbolFlags(BlockScopedVariable | ConstVariable) @@ -34999,36 +40139,57 @@ tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag7.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag8.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/importTag9.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/inferThis.ts semantic error: Cannot use export statement outside a module @@ -35042,6 +40203,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocLinkTag1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocLinkTag2.ts semantic error: Bindings mismatch: @@ -35052,16 +40216,25 @@ tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocLinkTag3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocLinkTag4.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocLinkTag5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocParseMatchingBackticks.ts semantic error: Cannot use export statement outside a module @@ -35070,6 +40243,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocTwoLineTypedef.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["LoadCallback"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsdoc/jsdocTypeTag.ts semantic error: Unresolved references mismatch: @@ -35083,6 +40259,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsdoc/typeParameterExtendsUnio semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "f", "f2"] rebuilt : ScopeId(0): ["f", "f2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(2): ["T", "a"] rebuilt : ScopeId(1): ["a"] @@ -35096,6 +40275,9 @@ 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"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(2): [ReferenceId(3), ReferenceId(4), ReferenceId(5), ReferenceId(6), ReferenceId(7)] rebuilt : SymbolId(3): [ReferenceId(6), ReferenceId(9), ReferenceId(12)] @@ -35110,6 +40292,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxChildrenProperty10 semantic error: Bindings mismatch: after transform: ScopeId(0): ["Button", "JSX", "_jsxFileName", "_reactJsxRuntime", "k1", "k2", "k3", "k4"] rebuilt : ScopeId(0): ["Button", "_jsxFileName", "_reactJsxRuntime", "k1", "k2", "k3", "k4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Symbol reference IDs mismatch: after transform: SymbolId(4): [ReferenceId(1), ReferenceId(2)] rebuilt : SymbolId(2): [ReferenceId(19)] @@ -35118,6 +40303,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxChildrenProperty11 semantic error: Bindings mismatch: after transform: ScopeId(0): ["Button", "JSX", "_jsxFileName", "_reactJsxRuntime", "k1", "k2", "k3", "k4"] rebuilt : ScopeId(0): ["Button", "_jsxFileName", "_reactJsxRuntime", "k1", "k2", "k3", "k4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Symbol reference IDs mismatch: after transform: SymbolId(4): [ReferenceId(1), ReferenceId(2)] rebuilt : SymbolId(2): [ReferenceId(19)] @@ -35128,6 +40316,9 @@ Missing ReferenceId: require Bindings mismatch: after transform: ScopeId(0): ["Button", "ButtonProp", "InnerButton", "InnerButtonProp", "React", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["Button", "InnerButton", "React", "_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(5)] Symbol reference IDs mismatch: after transform: SymbolId(2): [ReferenceId(0)] rebuilt : SymbolId(3): [] @@ -35150,6 +40341,9 @@ Missing ReferenceId: require Bindings mismatch: after transform: ScopeId(0): ["Props", "React", "Test", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["React", "Test", "_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["Foo", "JSX", "require", "true"] rebuilt : ["Foo", "require"] @@ -35166,6 +40360,9 @@ 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"] +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)] Symbol reference IDs mismatch: after transform: SymbolId(3): [ReferenceId(4), ReferenceId(5), ReferenceId(7), ReferenceId(8)] rebuilt : SymbolId(3): [ReferenceId(4), ReferenceId(10)] @@ -35185,6 +40382,9 @@ 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"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] Symbol reference IDs mismatch: after transform: SymbolId(5): [ReferenceId(5), ReferenceId(6), ReferenceId(9), ReferenceId(10), ReferenceId(13), ReferenceId(14), ReferenceId(17), ReferenceId(18)] rebuilt : SymbolId(6): [ReferenceId(11), ReferenceId(20), ReferenceId(29), ReferenceId(38)] @@ -35204,6 +40404,9 @@ 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"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] Symbol reference IDs mismatch: after transform: SymbolId(5): [ReferenceId(5), ReferenceId(6), ReferenceId(9), ReferenceId(10), ReferenceId(13), ReferenceId(14), ReferenceId(17), ReferenceId(18)] rebuilt : SymbolId(6): [ReferenceId(11), ReferenceId(20), ReferenceId(29), ReferenceId(38)] @@ -35231,6 +40434,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxIntersectionElemen semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "JSX", "_jsxFileName", "_reactJsxRuntime", "x", "y"] rebuilt : ScopeId(0): ["C", "_jsxFileName", "_reactJsxRuntime", "x", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(5): ["T"] rebuilt : ScopeId(1): [] @@ -35242,6 +40448,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxSubtleSkipContextS semantic error: Bindings mismatch: after transform: ScopeId(0): ["AsyncLoader", "AsyncLoaderProps", "ErrorResult", "React", "_jsxFileName", "load", "loader"] rebuilt : ScopeId(0): ["AsyncLoader", "React", "_jsxFileName", "load", "loader"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] Bindings mismatch: after transform: ScopeId(3): ["TResult"] rebuilt : ScopeId(1): [] @@ -35253,6 +40462,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/checkJsxUnionSFXContextual semantic error: Bindings mismatch: after transform: ScopeId(0): ["ComponentWithUnion", "HereIsTheError", "PM", "PS", "React", "_jsxFileName"] rebuilt : ScopeId(0): ["ComponentWithUnion", "HereIsTheError", "React", "_jsxFileName"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] Unresolved references mismatch: after transform: ["console", "true"] rebuilt : ["console"] @@ -35281,6 +40493,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/jsxParsingError4.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "React", "_jsxFileName", "a", "b"] rebuilt : ScopeId(0): ["_jsxFileName", "a", "b"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(1): Some("React") rebuilt : ReferenceId(0): None @@ -35389,6 +40604,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxAttributeResolution.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxAttributeResolution13.tsx semantic error: Symbol reference IDs mismatch: @@ -35401,6 +40619,9 @@ Missing ReferenceId: require Bindings mismatch: after transform: ScopeId(0): ["Address", "AddressComp", "AmericanAddress", "CanadianAddress", "Properties", "React", "_jsxFileName", "_reactJsxRuntime", "a"] rebuilt : ScopeId(0): ["AddressComp", "React", "_jsxFileName", "_reactJsxRuntime", "a"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(4): Some("React") rebuilt : ReferenceId(2): Some("React") @@ -35412,11 +40633,17 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxAttributeResolution8.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "_jsxFileName", "_reactJsxRuntime", "x"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxCorrectlyParseLessThanComparison1.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "React", "ShortDetails", "_jsxFileName"] rebuilt : ScopeId(0): ["ShortDetails", "_jsxFileName"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(5): Some("React") rebuilt : ReferenceId(1): None @@ -35433,6 +40660,9 @@ Missing ReferenceId: require Bindings mismatch: after transform: ScopeId(0): ["Poisoned", "Prop", "React", "_jsxFileName", "_reactJsxRuntime", "p"] rebuilt : ScopeId(0): ["Poisoned", "React", "_jsxFileName", "_reactJsxRuntime", "p"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(0): Some("React") rebuilt : ReferenceId(2): Some("React") @@ -35446,6 +40676,9 @@ Missing ReferenceId: require Bindings mismatch: after transform: ScopeId(0): ["Poisoned", "Prop", "React", "_jsxFileName", "_reactJsxRuntime", "p"] rebuilt : ScopeId(0): ["Poisoned", "React", "_jsxFileName", "_reactJsxRuntime", "p"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(1): Some("React") rebuilt : ReferenceId(2): Some("React") @@ -35465,6 +40698,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxDynamicTagName4.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["CustomTag", "JSX", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["CustomTag", "_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Symbol reference IDs mismatch: after transform: SymbolId(3): [ReferenceId(0), ReferenceId(1)] rebuilt : SymbolId(2): [ReferenceId(2)] @@ -35478,6 +40714,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxDynamicTagName6.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "_jsxFileName", "_reactJsxRuntime", "foo", "t"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime", "foo", "t"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Symbol reference IDs mismatch: after transform: SymbolId(3): [ReferenceId(0), ReferenceId(1)] rebuilt : SymbolId(2): [ReferenceId(2)] @@ -35502,6 +40741,9 @@ Missing ReferenceId: Dotted Bindings mismatch: after transform: ScopeId(0): ["Dotted", "JSX", "Other", "_jsxFileName", "_reactJsxRuntime", "a", "b", "d", "e", "foundFirst"] rebuilt : ScopeId(0): ["Dotted", "Other", "_jsxFileName", "_reactJsxRuntime", "a", "b", "d", "e", "foundFirst"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Binding symbols mismatch: after transform: ScopeId(5): [SymbolId(5), SymbolId(10)] rebuilt : ScopeId(3): [SymbolId(5), SymbolId(6)] @@ -35522,41 +40764,65 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution13.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "Obj1", "_jsxFileName", "_reactJsxRuntime", "obj1"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime", "obj1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution14.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "Obj1", "_jsxFileName", "_reactJsxRuntime", "obj1"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime", "obj1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution17.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "elements1", "elements2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(6)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution19.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "MyClass"] rebuilt : ScopeId(0): ["MyClass"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution2.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxElementResolution5.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxEmit1.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "SomeClass", "_jsxFileName", "_reactJsxRuntime", "openClosed1", "openClosed2", "openClosed3", "openClosed4", "openClosed5", "p", "selfClosed1", "selfClosed2", "selfClosed3", "selfClosed4", "selfClosed5", "selfClosed6", "selfClosed7", "whitespace1", "whitespace2", "whitespace3"] rebuilt : ScopeId(0): ["SomeClass", "_jsxFileName", "_reactJsxRuntime", "openClosed1", "openClosed2", "openClosed3", "openClosed4", "openClosed5", "p", "selfClosed1", "selfClosed2", "selfClosed3", "selfClosed4", "selfClosed5", "selfClosed6", "selfClosed7", "whitespace1", "whitespace2", "whitespace3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxEmit2.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "_jsxFileName", "_reactJsxRuntime", "p1", "p2", "p3", "spreads1", "spreads2", "spreads3", "spreads4", "spreads5"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime", "p1", "p2", "p3", "spreads1", "spreads2", "spreads3", "spreads4", "spreads5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxEmitSpreadAttribute.ts semantic error: Bindings mismatch: @@ -35629,11 +40895,17 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxFragmentPreserveEmit.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "React", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxFragmentReactEmit.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "React", "_jsxFileName"] rebuilt : ScopeId(0): ["_jsxFileName"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(1): Some("React") rebuilt : ReferenceId(0): None @@ -35842,6 +41114,9 @@ Missing ReferenceId: require Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(3), SymbolId(6), SymbolId(9), SymbolId(10)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(5)] +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"] @@ -35861,6 +41136,9 @@ Missing ReferenceId: require Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(3), SymbolId(6), SymbolId(9), SymbolId(10)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(5)] +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"] @@ -35897,6 +41175,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxInArrowFunction.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxNamespacedAttributeName1.tsx semantic error: Namespace tags are not supported by default. React's JSX doesn't support namespace tags. You can set `throwIfNamespace: false` to bypass this warning. @@ -35916,6 +41197,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxOpeningClosingNames.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "JSX", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(2): Some("A") rebuilt : ReferenceId(2): None @@ -35927,11 +41211,17 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxParseTests1.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "_jsxFileName", "_reactJsxRuntime", "x"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxParseTests2.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "_jsxFileName", "_reactJsxRuntime", "x"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxPreserveEmit1.tsx semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -35944,6 +41234,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxPreserveEmit3.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactComponentWithDefaultTypeParameter1.tsx semantic error: Missing SymbolId: React @@ -35951,6 +41244,9 @@ Missing ReferenceId: require Bindings mismatch: after transform: ScopeId(0): ["Prop", "React", "_jsxFileName", "_reactJsxRuntime", "x"] rebuilt : ScopeId(0): ["React", "_jsxFileName", "_reactJsxRuntime", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Unresolved reference IDs mismatch for "require": after transform: [ReferenceId(7)] rebuilt : [ReferenceId(0), ReferenceId(1)] @@ -35961,6 +41257,9 @@ Missing ReferenceId: require Bindings mismatch: after transform: ScopeId(0): ["Prop", "React", "_jsxFileName", "_reactJsxRuntime", "x", "x1"] rebuilt : ScopeId(0): ["React", "_jsxFileName", "_reactJsxRuntime", "x", "x1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Unresolved reference IDs mismatch for "require": after transform: [ReferenceId(10)] rebuilt : [ReferenceId(0), ReferenceId(1)] @@ -35969,6 +41268,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactEmit1.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "React", "SomeClass", "_jsxFileName", "openClosed1", "openClosed2", "openClosed3", "openClosed4", "openClosed5", "p", "selfClosed1", "selfClosed2", "selfClosed3", "selfClosed4", "selfClosed5", "selfClosed6", "selfClosed7", "whitespace1", "whitespace2", "whitespace3"] rebuilt : ScopeId(0): ["SomeClass", "_jsxFileName", "openClosed1", "openClosed2", "openClosed3", "openClosed4", "openClosed5", "p", "selfClosed1", "selfClosed2", "selfClosed3", "selfClosed4", "selfClosed5", "selfClosed6", "selfClosed7", "whitespace1", "whitespace2", "whitespace3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(17): Some("React") rebuilt : ReferenceId(0): None @@ -36040,6 +41342,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactEmit2.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "React", "_jsxFileName", "p1", "p2", "p3", "spreads1", "spreads2", "spreads3", "spreads4", "spreads5"] rebuilt : ScopeId(0): ["_jsxFileName", "p1", "p2", "p3", "spreads1", "spreads2", "spreads3", "spreads4", "spreads5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(15): Some("React") rebuilt : ReferenceId(0): None @@ -36063,6 +41368,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactEmit3.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo", "JSX", "React", "_jsxFileName", "baz"] rebuilt : ScopeId(0): ["_jsxFileName"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(16): Some("React") rebuilt : ReferenceId(0): None @@ -36101,16 +41409,25 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactEmit5.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactEmit6.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactEmitEntities.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "React", "_jsxFileName"] rebuilt : ScopeId(0): ["_jsxFileName"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(1): Some("React") rebuilt : ReferenceId(0): None @@ -36162,6 +41479,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactEmitWhitespace.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "React", "_jsxFileName", "p"] rebuilt : ScopeId(0): ["_jsxFileName", "p"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(4): Some("React") rebuilt : ReferenceId(0): None @@ -36203,6 +41523,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxReactEmitWhitespace2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["JSX", "React", "_jsxFileName"] rebuilt : ScopeId(0): ["_jsxFileName"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(3): Some("React") rebuilt : ReferenceId(0): None @@ -36264,6 +41587,9 @@ Missing ReferenceId: require Bindings mismatch: after transform: ScopeId(0): ["OverWriteAttr", "Prop", "React", "_jsxFileName", "_reactJsxRuntime", "anyobj", "obj", "obj1", "obj3", "x", "x1", "x2", "x3", "x4", "x5"] rebuilt : ScopeId(0): ["OverWriteAttr", "React", "_jsxFileName", "_reactJsxRuntime", "anyobj", "obj", "obj1", "obj3", "x", "x1", "x2", "x3", "x4", "x5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(2): Some("React") rebuilt : ReferenceId(2): Some("React") @@ -36280,6 +41606,9 @@ Missing ReferenceId: require Bindings mismatch: after transform: ScopeId(0): ["AnotherComponentProps", "ChildComponent", "Component", "ComponentProps", "React", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["ChildComponent", "Component", "React", "_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4)] Unresolved reference IDs mismatch for "require": after transform: [ReferenceId(14)] rebuilt : [ReferenceId(0), ReferenceId(1)] @@ -36290,6 +41619,9 @@ Missing ReferenceId: require Bindings mismatch: after transform: ScopeId(0): ["AnotherComponent", "AnotherComponentProps", "Component", "ComponentProps", "React", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["AnotherComponent", "Component", "React", "_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Unresolved reference IDs mismatch for "require": after transform: [ReferenceId(9)] rebuilt : [ReferenceId(0), ReferenceId(1)] @@ -36300,6 +41632,9 @@ Missing ReferenceId: require Bindings mismatch: after transform: ScopeId(0): ["Poisoned", "PoisonedProp", "React", "_jsxFileName", "_reactJsxRuntime", "obj", "p", "y"] rebuilt : ScopeId(0): ["Poisoned", "React", "_jsxFileName", "_reactJsxRuntime", "obj", "p", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(0): Some("React") rebuilt : ReferenceId(2): Some("React") @@ -36313,6 +41648,9 @@ Missing ReferenceId: require Bindings mismatch: after transform: ScopeId(0): ["React", "TextComponent", "TextProps", "_jsxFileName", "_reactJsxRuntime", "textPropsFalse", "textPropsTrue", "y1", "y2"] rebuilt : ScopeId(0): ["React", "TextComponent", "_jsxFileName", "_reactJsxRuntime", "textPropsFalse", "textPropsTrue", "y1", "y2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Reference symbol mismatch: after transform: ReferenceId(1): Some("React") rebuilt : ReferenceId(2): Some("React") @@ -36329,6 +41667,9 @@ Missing ReferenceId: require Bindings mismatch: after transform: ScopeId(0): ["OverWriteAttr", "Prop", "React", "_jsxFileName", "_reactJsxRuntime", "obj", "obj1", "obj3", "x", "x1"] rebuilt : ScopeId(0): ["OverWriteAttr", "React", "_jsxFileName", "_reactJsxRuntime", "obj", "obj1", "obj3", "x", "x1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(0): Some("React") rebuilt : ReferenceId(2): Some("React") @@ -36342,6 +41683,9 @@ Missing ReferenceId: require Bindings mismatch: after transform: ScopeId(0): ["Opt", "OptionProp", "React", "_jsxFileName", "_reactJsxRuntime", "obj", "obj1", "p", "y", "y1", "y2", "y3"] rebuilt : ScopeId(0): ["Opt", "React", "_jsxFileName", "_reactJsxRuntime", "obj", "obj1", "p", "y", "y1", "y2", "y3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Reference symbol mismatch: after transform: ReferenceId(0): Some("React") rebuilt : ReferenceId(2): Some("React") @@ -36362,6 +41706,9 @@ Missing ReferenceId: require 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), SymbolId(13), SymbolId(14), SymbolId(15), SymbolId(16), SymbolId(17)] 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)] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["JSX", "OneThing", "require"] rebuilt : ["OneThing", "require"] @@ -36373,6 +41720,9 @@ tasks/coverage/typescript/tests/cases/conformance/jsx/tsxStatelessFunctionCompon semantic error: Bindings mismatch: after transform: ScopeId(0): ["Context", "_jsxFileName", "_reactJsxRuntime", "obj2", "three1", "three2", "three3", "two1", "two2", "two3", "two4", "two5"] rebuilt : ScopeId(0): ["_jsxFileName", "_reactJsxRuntime", "obj2", "three1", "three2", "three3", "two1", "two2", "two3", "two4", "two5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["JSX", "ThreeThing", "ZeroThingOrTwoThing", "require"] rebuilt : ["ThreeThing", "ZeroThingOrTwoThing", "require"] @@ -36383,6 +41733,9 @@ Missing ReferenceId: require Bindings mismatch: after transform: ScopeId(0): ["ButtonProps", "ClickableProps", "HyphenProps", "LinkProps", "MainButton", "React", "_jsxFileName", "_reactJsxRuntime", "b0", "b1", "b10", "b11", "b12", "b2", "b3", "b4", "b5", "b6", "b7", "b8", "b9", "obj", "obj1", "obj2"] rebuilt : ScopeId(0): ["MainButton", "React", "_jsxFileName", "_reactJsxRuntime", "b0", "b1", "b10", "b11", "b12", "b2", "b3", "b4", "b5", "b6", "b7", "b8", "b9", "obj", "obj1", "obj2"] +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)] Symbol reference IDs mismatch: after transform: SymbolId(11): [ReferenceId(19), ReferenceId(20), ReferenceId(21), ReferenceId(22), ReferenceId(23), ReferenceId(25), ReferenceId(27), ReferenceId(29), ReferenceId(31), ReferenceId(33), ReferenceId(35), ReferenceId(36), ReferenceId(37), ReferenceId(38), ReferenceId(39), ReferenceId(40), ReferenceId(41), ReferenceId(42)] rebuilt : SymbolId(6): [ReferenceId(7), ReferenceId(10), ReferenceId(13), ReferenceId(17), ReferenceId(21), ReferenceId(25), ReferenceId(29), ReferenceId(33), ReferenceId(37), ReferenceId(40), ReferenceId(43), ReferenceId(46), ReferenceId(49)] @@ -36399,6 +41752,9 @@ 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"] +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"] @@ -36422,6 +41778,9 @@ 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"] +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"] @@ -36438,6 +41797,9 @@ Missing ReferenceId: require Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(7), SymbolId(23), SymbolId(29), SymbolId(30)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(13)] +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"] @@ -36454,6 +41816,9 @@ Missing ReferenceId: require Binding symbols mismatch: after transform: ScopeId(0): [SymbolId(0), SymbolId(3), SymbolId(12), SymbolId(19), SymbolId(20)] rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(7)] +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"] @@ -36473,6 +41838,9 @@ Missing ReferenceId: require Bindings mismatch: after transform: ScopeId(0): ["Foo", "InterfaceProps", "React", "TypeProps", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["Foo", "React", "_jsxFileName", "_reactJsxRuntime"] +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): [] @@ -36528,6 +41896,9 @@ tasks/coverage/typescript/tests/cases/conformance/moduleResolution/resolutionMod semantic error: Bindings mismatch: after transform: ScopeId(0): ["Default", "Import", "ImportRelative", "Require", "RequireRelative"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["x"] rebuilt : [] @@ -36577,6 +41948,9 @@ tasks/coverage/typescript/tests/cases/conformance/nonjsExtensions/declarationFil semantic error: Bindings mismatch: after transform: ScopeId(0): ["HTML5Element", "blogPost", "doc"] rebuilt : ScopeId(0): ["HTML5Element", "blogPost"] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [] Reference symbol mismatch: after transform: ReferenceId(1): Some("doc") rebuilt : ReferenceId(0): None @@ -36588,6 +41962,9 @@ tasks/coverage/typescript/tests/cases/conformance/nonjsExtensions/declarationFil semantic error: Bindings mismatch: after transform: ScopeId(0): ["HTML5Element", "blogPost", "doc"] rebuilt : ScopeId(0): ["HTML5Element", "blogPost"] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2)] +rebuilt : ScopeId(1): [] Reference symbol mismatch: after transform: ReferenceId(1): Some("doc") rebuilt : ReferenceId(0): None @@ -36607,8 +41984,29 @@ after transform: [] rebuilt : ["val"] tasks/coverage/typescript/tests/cases/conformance/nonjsExtensions/declarationFilesForNodeNativeModules.ts -semantic error: `import lib = require(...);` is only supported when compiling modules to CommonJS. -Please consider using `import lib from '...';` alongside Typescript's --allowSyntheticDefaultImports option, or add @babel/plugin-transform-modules-commonjs to your Babel config. +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration16.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration17.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration19.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2)] + +tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration20.ts +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(1): [ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/EnumDeclarations/parserEnum1.ts semantic error: Bindings mismatch: @@ -36666,6 +42064,9 @@ tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/EnumDeclara semantic error: Bindings mismatch: after transform: ScopeId(0): ["E"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/EnumDeclarations/parserEnumDeclaration5.ts semantic error: Bindings mismatch: @@ -36726,6 +42127,9 @@ Missing ReferenceId: Shapes Bindings mismatch: after transform: ScopeId(0): ["IPoint", "Shapes", "dist", "p"] rebuilt : ScopeId(0): ["Shapes", "dist", "p"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Binding symbols mismatch: after transform: ScopeId(3): [SymbolId(2), SymbolId(7)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] @@ -36746,11 +42150,22 @@ tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecove semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration5.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration8.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["M"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Generics/parserGenericClass1.ts semantic error: Bindings mismatch: @@ -36771,76 +42186,121 @@ tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/InterfaceDe semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/InterfaceDeclarations/parserInterfaceDeclaration7.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/InterfaceDeclarations/parserInterfaceDeclaration9.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1", "I2", "I3"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature10.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature11.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature12.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature4.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature7.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature8.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/MethodSignatures/parserMethodSignature9.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModule1.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -36851,6 +42311,9 @@ tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDecla semantic error: Bindings mismatch: after transform: ScopeId(0): ["string", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved reference IDs mismatch for "string": after transform: [ReferenceId(0), ReferenceId(1)] rebuilt : [ReferenceId(0)] @@ -36859,36 +42322,57 @@ tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDecla semantic error: Bindings mismatch: after transform: ScopeId(0): ["A"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration4.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["M"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["number"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration7.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["number"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration8.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["a"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration9.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["a"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertyAssignments/parserFunctionPropertyAssignment4.ts semantic error: Bindings mismatch: @@ -36899,71 +42383,118 @@ tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySig semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature10.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature11.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature12.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature4.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature5.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature6.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature7.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature8.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/PropertySignatures/parserPropertySignature9.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Protected/Protected8.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegressionTests/parser643728.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegressionTests/parser645484.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/RegularExpressions/parserRegularExpression6.ts semantic error: Bindings mismatch: @@ -36983,11 +42514,17 @@ tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/Symbols/par semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserExportAsFunctionIdentifier.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "f", "x"] rebuilt : ScopeId(0): ["f", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserNotRegex2.ts semantic error: Bindings mismatch: @@ -37010,11 +42547,17 @@ tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserOptio semantic error: Bindings mismatch: after transform: ScopeId(0): ["PropertyDescriptor2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/parserOverloadOnConstants1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Document"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["HTMLCanvasElement", "HTMLDivElement", "HTMLElement", "HTMLSpanElement"] rebuilt : [] @@ -37023,11 +42566,17 @@ tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Symbols/par semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Symbols/parserSymbolProperty1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Symbol"] rebuilt : [] @@ -37036,22 +42585,34 @@ tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Symbols/par semantic error: Bindings mismatch: after transform: ScopeId(0): ["I"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Symbol"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Symbols/parserSymbolProperty3.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] +Unresolved references mismatch: after transform: ["Symbol"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Symbols/parserSymbolProperty4.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] +Unresolved references mismatch: after transform: ["Symbol"] rebuilt : [] tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript6/Symbols/parserSymbolProperty8.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] +Unresolved references mismatch: after transform: ["Symbol"] rebuilt : [] @@ -37067,6 +42628,9 @@ tasks/coverage/typescript/tests/cases/conformance/salsa/inferingFromAny.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "a", "t"] rebuilt : ScopeId(0): ["a", "t"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(20), ScopeId(22)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Partial"] rebuilt : [] @@ -37082,11 +42646,22 @@ tasks/coverage/typescript/tests/cases/conformance/salsa/propertyAssignmentUsePar semantic error: Bindings mismatch: after transform: ScopeId(0): ["N", "ignoreJsdoc", "inlined", "interfaced"] rebuilt : ScopeId(0): ["ignoreJsdoc", "inlined", "interfaced"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] + +tasks/coverage/typescript/tests/cases/conformance/salsa/sourceFileMergeWithFunction.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/salsa/typeFromPropertyAssignment30.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Combo", "c"] rebuilt : ScopeId(0): ["c"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/salsa/typeFromPropertyAssignmentWithExport.ts semantic error: Cannot use export statement outside a module @@ -37114,6 +42689,9 @@ 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"] +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): [] @@ -37172,6 +42750,9 @@ 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"] +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): [] @@ -37505,6 +43086,9 @@ tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["Point", "a", "declSpace", "fn", "p", "x"] rebuilt : ScopeId(0): ["a", "declSpace", "fn", "p", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5), ScopeId(6)] Symbol reference IDs mismatch: after transform: SymbolId(4): [ReferenceId(6)] rebuilt : SymbolId(3): [] @@ -37532,6 +43116,9 @@ 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"] +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): [] @@ -37582,6 +43169,9 @@ tasks/coverage/typescript/tests/cases/conformance/statements/forStatements/forSt semantic error: Bindings mismatch: after transform: ScopeId(0): ["Point", "a", "declSpace", "fn", "p", "x"] rebuilt : ScopeId(0): ["a", "declSpace", "fn", "p", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(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: after transform: SymbolId(4): [ReferenceId(6)] rebuilt : SymbolId(3): [] @@ -37596,6 +43186,9 @@ tasks/coverage/typescript/tests/cases/conformance/statements/returnStatements/re semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "D", "I", "fn1", "fn10", "fn11", "fn12", "fn13", "fn2", "fn3", "fn4", "fn5", "fn6", "fn7", "fn8"] rebuilt : ScopeId(0): ["C", "D", "fn1", "fn10", "fn11", "fn12", "fn13", "fn2", "fn3", "fn4", "fn5", "fn6", "fn7", "fn8"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15)] Symbol reference IDs mismatch: after transform: SymbolId(9): [ReferenceId(4), ReferenceId(7), ReferenceId(8), ReferenceId(10)] rebuilt : SymbolId(8): [ReferenceId(2), ReferenceId(3)] @@ -37623,6 +43216,9 @@ 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"] +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): [] @@ -37667,6 +43263,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/any/assignEveryTypeToAny semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "E", "I", "a", "b", "c", "d", "e", "e2", "f", "g", "h", "i", "j", "x"] rebuilt : ScopeId(0): ["C", "E", "a", "b", "c", "d", "e", "e2", "f", "g", "h", "i", "j", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] Bindings mismatch: after transform: ScopeId(1): ["A", "E"] rebuilt : ScopeId(1): ["E"] @@ -37690,7 +43289,10 @@ after transform: [ReferenceId(11), ReferenceId(14)] rebuilt : [ReferenceId(11)] tasks/coverage/typescript/tests/cases/conformance/types/asyncGenerators/types.asyncGenerators.es2018.1.ts -semantic error: Unresolved references mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(49): [ScopeId(50)] +rebuilt : ScopeId(49): [] +Unresolved references mismatch: after transform: ["AsyncIterable", "AsyncIterableIterator", "AsyncIterator", "Promise", "PromiseLike"] rebuilt : ["Promise"] @@ -37698,9 +43300,15 @@ tasks/coverage/typescript/tests/cases/conformance/types/conditional/variance.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo", "foo", "x", "y", "z"] rebuilt : ScopeId(0): ["Bar", "foo", "x", "y", "z"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5)] +rebuilt : ScopeId(2): [] Symbol reference IDs mismatch: after transform: SymbolId(6): [ReferenceId(9), ReferenceId(11)] rebuilt : SymbolId(4): [ReferenceId(3)] @@ -37712,6 +43320,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/asyncFun semantic error: Bindings mismatch: after transform: ScopeId(0): ["Obj", "fn1"] rebuilt : ScopeId(0): ["fn1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved reference IDs mismatch for "Promise": after transform: [ReferenceId(0), ReferenceId(4)] rebuilt : [ReferenceId(0)] @@ -37720,6 +43331,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/asyncFun semantic error: Bindings mismatch: after transform: ScopeId(0): ["AsyncFunc", "Done", "Func", "ILocalExtension", "Metadata", "Obj", "ProcessTreeNode", "TestFunction", "copyExtensions", "fn1", "fn2", "fn3", "fn4", "test"] rebuilt : ScopeId(0): ["copyExtensions", "fn1", "fn2", "fn3", "fn4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(12)] Reference symbol mismatch: after transform: ReferenceId(23): Some("test") rebuilt : ReferenceId(4): None @@ -37734,20 +43348,34 @@ tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/methodDe semantic error: Bindings mismatch: after transform: ScopeId(0): ["Nested", "Show", "StringIdentity", "StringUnion", "Tuples", "f", "f2", "f3", "ff", "g", "h", "id"] rebuilt : ScopeId(0): ["f", "f2", "f3", "ff", "g", "h", "id"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(17), ScopeId(18)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/methodDeclarations/contextuallyTypedObjectLiteralMethodDeclaration01.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "Foo", "getFoo1", "getFoo2", "getFoo3"] rebuilt : ScopeId(0): ["getFoo1", "getFoo2", "getFoo3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(9), ScopeId(12)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(7)] tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/partiallyAnnotatedFunction/partiallyAnnotatedFunctionInferenceWithTypeParameter.ts -semantic error: Symbol reference IDs 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)] +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)] +Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(5)] rebuilt : SymbolId(0): [ReferenceId(0)] Symbol reference IDs mismatch: after transform: SymbolId(1): [ReferenceId(11), ReferenceId(14), ReferenceId(18), ReferenceId(20), ReferenceId(22), ReferenceId(25), ReferenceId(27), ReferenceId(29), ReferenceId(31)] rebuilt : SymbolId(1): [] +tasks/coverage/typescript/tests/cases/conformance/types/contextualTypes/partiallyAnnotatedFunction/partiallyAnnotatedFunctionWitoutTypeParameter.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + tasks/coverage/typescript/tests/cases/conformance/types/forAwait/types.forAwait.es2018.1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["asyncIterable", "f1", "f2", "iterable", "iterableOfPromise"] @@ -37796,6 +43424,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectio semantic error: Bindings mismatch: after transform: ScopeId(0): ["Ex", "U", "x"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(5): Some("x") rebuilt : ReferenceId(0): None @@ -37807,6 +43438,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectio semantic error: Bindings mismatch: after transform: ScopeId(0): ["AorB", "X", "q"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Reference symbol mismatch: after transform: ReferenceId(2): Some("q") rebuilt : ReferenceId(0): None @@ -37838,11 +43472,17 @@ tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectio semantic error: Bindings mismatch: after transform: ScopeId(0): ["Component", "Label", "Thing1", "Thing2", "Thing3", "Thing4", "Thing5", "f1", "f2", "test"] rebuilt : ScopeId(0): ["f1", "f2", "test"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(12), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionTypeEquivalence.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "ab", "bc", "y", "z", "z1"] rebuilt : ScopeId(0): ["ab", "bc", "y", "z", "z1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] Symbol reference IDs mismatch: after transform: SymbolId(5): [ReferenceId(17)] rebuilt : SymbolId(2): [] @@ -37854,6 +43494,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectio semantic error: Bindings mismatch: after transform: ScopeId(0): ["a", "b", "obj"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(3): Some("a") rebuilt : ReferenceId(1): None @@ -37874,6 +43517,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectio semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "Nominal", "a", "b", "c1", "c2"] rebuilt : ScopeId(0): ["c1", "c2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(9): Some("a") rebuilt : ReferenceId(1): None @@ -37888,16 +43534,25 @@ tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectio semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "D", "E", "F", "F1", "F2", "G", "X", "Y", "Z", "abc", "de", "defg", "f", "n", "s", "xyz"] rebuilt : ScopeId(0): ["abc", "de", "defg", "f", "n", "s", "xyz"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionTypeOverloading.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["F", "G", "fg", "gf", "x", "y"] rebuilt : ScopeId(0): ["fg", "gf", "x", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/intersection/intersectionsAndEmptyObjects.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "D", "Dictionary", "E", "Foo1", "Foo2", "IMyChoiceList", "IUnknownChoiceList", "choices", "d1", "d2", "d3", "d4", "d5", "d6", "defaultChoices", "defaultChoicesAndEmpty", "intersectDictionaries", "myChoices", "myChoicesAndEmpty", "testDictionary", "unknownChoices", "unknownChoicesAndEmpty", "x01", "x02", "x03", "x04", "x05", "x06", "x07", "x08", "x09", "x10", "x11", "x12", "x13", "x14"] rebuilt : ScopeId(0): ["d1", "d2", "d3", "d4", "d5", "d6", "defaultChoices", "defaultChoicesAndEmpty", "intersectDictionaries", "myChoices", "myChoicesAndEmpty", "testDictionary", "unknownChoices", "unknownChoicesAndEmpty", "x01", "x02", "x03", "x04", "x05", "x06", "x07", "x08", "x09", "x10", "x11", "x12", "x13", "x14"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(15)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(7): ["F1", "F2", "d1", "d2"] rebuilt : ScopeId(1): ["d1", "d2"] @@ -37912,11 +43567,17 @@ tasks/coverage/typescript/tests/cases/conformance/types/intersection/operatorsAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["Guid", "SerialNo", "b1", "b2", "b3", "b4", "createGuid", "createSerialNo", "guid", "map1", "map2", "n1", "n2", "s1", "s2", "s3", "s4", "s5", "serialNo"] rebuilt : ScopeId(0): ["b1", "b2", "b3", "b4", "createGuid", "createSerialNo", "guid", "map1", "map2", "n1", "n2", "s1", "s2", "s3", "s4", "s5", "serialNo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/types/literal/booleanLiteralTypes1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A1", "A2", "Item", "assertNever", "f1", "f10", "f11", "f12", "f13", "f2", "f20", "f21", "f3", "f4", "f5"] rebuilt : ScopeId(0): ["assertNever", "f1", "f10", "f11", "f12", "f13", "f2", "f20", "f21", "f3", "f4", "f5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(19), ScopeId(22), ScopeId(23), ScopeId(25)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(14), ScopeId(17), ScopeId(19)] Unresolved references mismatch: after transform: ["Error", "g", "true"] rebuilt : ["Error", "g"] @@ -37925,6 +43586,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/literal/booleanLiteralTy semantic error: Bindings mismatch: after transform: ScopeId(0): ["A1", "A2", "Item", "assertNever", "f1", "f10", "f11", "f12", "f13", "f2", "f20", "f21", "f3", "f4", "f5"] rebuilt : ScopeId(0): ["assertNever", "f1", "f10", "f11", "f12", "f13", "f2", "f20", "f21", "f3", "f4", "f5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(14), ScopeId(16), ScopeId(19), ScopeId(22), ScopeId(23), ScopeId(25)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(14), ScopeId(17), ScopeId(19)] Unresolved references mismatch: after transform: ["Error", "g", "true"] rebuilt : ["Error", "g"] @@ -37933,6 +43597,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/literal/enumLiteralTypes semantic error: Bindings mismatch: after transform: ScopeId(0): ["Choice", "Item", "NoYes", "UnknownYesNo", "YesNo", "assertNever", "f1", "f10", "f11", "f12", "f13", "f2", "f20", "f21", "f3", "f4", "f5"] rebuilt : ScopeId(0): ["Choice", "assertNever", "f1", "f10", "f11", "f12", "f13", "f2", "f20", "f21", "f3", "f4", "f5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(21), ScopeId(24), ScopeId(25), ScopeId(27)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(15), ScopeId(18), ScopeId(20)] Bindings mismatch: after transform: ScopeId(1): ["Choice", "No", "Unknown", "Yes"] rebuilt : ScopeId(1): ["Choice"] @@ -37950,6 +43617,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/literal/enumLiteralTypes semantic error: Bindings mismatch: after transform: ScopeId(0): ["Choice", "Item", "NoYes", "UnknownYesNo", "YesNo", "assertNever", "f1", "f10", "f11", "f12", "f13", "f2", "f20", "f21", "f3", "f4", "f5"] rebuilt : ScopeId(0): ["Choice", "assertNever", "f1", "f10", "f11", "f12", "f13", "f2", "f20", "f21", "f3", "f4", "f5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(16), ScopeId(18), ScopeId(21), ScopeId(24), ScopeId(25), ScopeId(27)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(15), ScopeId(18), ScopeId(20)] Bindings mismatch: after transform: ScopeId(1): ["Choice", "No", "Unknown", "Yes"] rebuilt : ScopeId(1): ["Choice"] @@ -37967,6 +43637,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/literal/literalTypeWiden semantic error: Bindings mismatch: after transform: ScopeId(0): ["E", "FAILURE", "LangCode", "Obj", "Result", "Set", "TestEvent", "a", "arr", "b", "doWork", "f1", "f2", "f3", "f4", "f5", "f6", "increment", "isFailure", "isSuccess", "keys", "langCodeSet", "langCodes", "onMouseOver", "result", "test", "x"] rebuilt : ScopeId(0): ["E", "FAILURE", "Set", "a", "arr", "b", "doWork", "f1", "f2", "f3", "f4", "f5", "f6", "increment", "isFailure", "isSuccess", "keys", "langCodeSet", "langCodes", "onMouseOver", "result", "test", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18)] Bindings mismatch: after transform: ScopeId(11): ["T"] rebuilt : ScopeId(7): [] @@ -38020,6 +43693,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/literal/literalTypes1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Falsy", "f1", "f2", "f3", "f4", "f5", "one", "oneOrTwo", "two", "zero"] rebuilt : ScopeId(0): ["f1", "f2", "f3", "f4", "f5", "one", "oneOrTwo", "two", "zero"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(9), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(8), ScopeId(10)] Unresolved references mismatch: after transform: ["true", "undefined"] rebuilt : ["undefined"] @@ -38028,6 +43704,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/literal/literalTypes2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bit", "C1", "C2", "E", "a", "aa", "append", "cond", "f1", "f10", "f11", "f12", "f2", "f20", "f3", "f4", "f5", "f6", "makeArray", "x1", "x10", "x11", "x2", "x3", "x4", "x5", "x6", "x7", "x8", "x9"] rebuilt : ScopeId(0): ["C1", "C2", "E", "a", "aa", "append", "cond", "f1", "f10", "f11", "f12", "f2", "f20", "f3", "f4", "f5", "f6", "makeArray", "x1", "x10", "x11", "x2", "x3", "x4", "x5", "x6", "x7", "x8", "x9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(14), ScopeId(17), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(14), ScopeId(17), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28)] Bindings mismatch: after transform: ScopeId(1): ["A", "B", "C", "E"] rebuilt : ScopeId(1): ["E"] @@ -38054,6 +43733,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/literal/literalTypesAndD semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "a1", "a2", "a3", "a4", "b1", "b2", "b3", "b4", "bar", "x"] rebuilt : ScopeId(0): ["a1", "a2", "a3", "a4", "b1", "b2", "b3", "b4", "bar"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(0): Some("x") rebuilt : ReferenceId(0): None @@ -38086,16 +43768,25 @@ tasks/coverage/typescript/tests/cases/conformance/types/literal/numericLiteralTy semantic error: Bindings mismatch: after transform: ScopeId(0): ["A1", "A2", "A3", "A4", "A5", "B1", "B2", "B3", "Item", "Tag", "assertNever", "f1", "f10", "f11", "f12", "f13", "f14", "f15", "f2", "f20", "f21", "f3", "f4", "f5"] rebuilt : ScopeId(0): ["assertNever", "f1", "f10", "f11", "f12", "f13", "f14", "f15", "f2", "f20", "f21", "f3", "f4", "f5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(26), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(34)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(14), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(21)] tasks/coverage/typescript/tests/cases/conformance/types/literal/numericLiteralTypes2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A1", "A2", "A3", "A4", "A5", "B1", "B2", "B3", "Item", "Tag", "assertNever", "f1", "f10", "f11", "f12", "f13", "f14", "f15", "f2", "f20", "f21", "f3", "f4", "f5"] rebuilt : ScopeId(0): ["assertNever", "f1", "f10", "f11", "f12", "f13", "f14", "f15", "f2", "f20", "f21", "f3", "f4", "f5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(26), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(34)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(14), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(21)] tasks/coverage/typescript/tests/cases/conformance/types/literal/stringEnumLiteralTypes1.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Choice", "Item", "NoYes", "UnknownYesNo", "YesNo", "assertNever", "f1", "f10", "f11", "f12", "f13", "f2", "f20", "f21", "f3", "f5"] rebuilt : ScopeId(0): ["Choice", "assertNever", "f1", "f10", "f11", "f12", "f13", "f2", "f20", "f21", "f3", "f5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(20), ScopeId(23), ScopeId(24), ScopeId(26)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(14), ScopeId(17), ScopeId(19)] Bindings mismatch: after transform: ScopeId(1): ["Choice", "No", "Unknown", "Yes"] rebuilt : ScopeId(1): ["Choice"] @@ -38113,6 +43804,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/literal/stringEnumLitera semantic error: Bindings mismatch: after transform: ScopeId(0): ["Choice", "Item", "NoYes", "UnknownYesNo", "YesNo", "assertNever", "f1", "f10", "f11", "f12", "f13", "f2", "f20", "f21", "f3", "f5"] rebuilt : ScopeId(0): ["Choice", "assertNever", "f1", "f10", "f11", "f12", "f13", "f2", "f20", "f21", "f3", "f5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(20), ScopeId(23), ScopeId(24), ScopeId(26)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(14), ScopeId(17), ScopeId(19)] Bindings mismatch: after transform: ScopeId(1): ["Choice", "No", "Unknown", "Yes"] rebuilt : ScopeId(1): ["Choice"] @@ -38135,6 +43829,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/literal/stringMappingDef semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "D", "E", "F", "G", "x1", "x2", "x3", "x4", "x5"] rebuilt : ScopeId(0): ["x1", "x2", "x3", "x4", "x5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(12)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Capitalize", "Lowercase"] rebuilt : [] @@ -38143,6 +43840,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/literal/stringMappingRed semantic error: Bindings mismatch: after transform: ScopeId(0): ["EMap", "EPlusFallback", "Keys", "T00", "T01", "T02", "T10", "T11", "T12", "T20", "T21", "T22", "T30", "T31", "T32", "VirtualEvent", "_virtualOn", "virtualOn"] rebuilt : ScopeId(0): ["virtualOn"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(17), ScopeId(19)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(19): ["T", "eventQrl"] rebuilt : ScopeId(1): ["eventQrl"] @@ -38157,6 +43857,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/literal/templateLiteralT semantic error: Bindings mismatch: after transform: ScopeId(0): ["Keyof", "Registry", "f2"] rebuilt : ScopeId(0): ["f2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(4): ["Event", "Scope", "event", "scope"] rebuilt : ScopeId(1): ["event", "scope"] @@ -38165,6 +43868,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/literal/templateLiteralT semantic error: Bindings mismatch: after transform: ScopeId(0): ["E", "Stringify", "z1", "z2"] rebuilt : ScopeId(0): ["E", "z1", "z2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(1): ["E", "a", "b"] rebuilt : ScopeId(1): ["E"] @@ -38182,6 +43888,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/localTypes/localTypes1.t semantic error: Bindings mismatch: after transform: ScopeId(1): ["A", "C", "E", "I", "a"] rebuilt : ScopeId(1): ["C", "E", "a"] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(2): ["A", "B", "C", "E"] rebuilt : ScopeId(2): ["E"] @@ -38191,6 +43900,9 @@ rebuilt : ScopeId(2): ScopeFlags(Function) Bindings mismatch: after transform: ScopeId(7): ["A", "C", "E", "I", "a"] rebuilt : ScopeId(5): ["C", "a"] +Scope children mismatch: +after transform: ScopeId(7): [ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(5): [ScopeId(6), ScopeId(7)] Bindings mismatch: after transform: ScopeId(8): ["A", "B", "C", "E"] rebuilt : ScopeId(6): ["E"] @@ -38209,9 +43921,15 @@ rebuilt : ScopeId(10): ScopeFlags(Function) Bindings mismatch: after transform: ScopeId(15): ["A", "C", "I", "a"] rebuilt : ScopeId(11): ["C", "a"] +Scope children mismatch: +after transform: ScopeId(15): [ScopeId(16), ScopeId(17), ScopeId(18)] +rebuilt : ScopeId(11): [ScopeId(12)] Bindings mismatch: after transform: ScopeId(19): ["A", "C", "J", "c"] rebuilt : ScopeId(13): ["A", "c"] +Scope children mismatch: +after transform: ScopeId(19): [ScopeId(20), ScopeId(21), ScopeId(22)] +rebuilt : ScopeId(13): [ScopeId(14)] Bindings mismatch: after transform: ScopeId(24): ["C", "E"] rebuilt : ScopeId(16): ["C"] @@ -38353,6 +44071,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypeConstra semantic error: Bindings mismatch: after transform: ScopeId(0): ["TargetProps", "f0", "f1", "f2", "f3", "f4", "modifier"] rebuilt : ScopeId(0): ["f0", "f1", "f2", "f3", "f4", "modifier"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] Bindings mismatch: after transform: ScopeId(1): ["T", "obj"] rebuilt : ScopeId(1): ["obj"] @@ -38379,6 +44100,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypeIndexSi semantic error: Bindings mismatch: after transform: ScopeId(0): ["Identity", "Obj1", "Obj10", "Obj11", "Obj12", "Obj13", "Obj2", "Obj3", "Obj4", "Obj5", "Obj6", "Obj7", "Obj8", "Obj9", "Res1", "Res10", "Res11", "Res12", "Res13", "Res2", "Res3", "Res4", "Res5", "Res6", "Res7", "Res8", "Res9", "StrippingIdentity", "StrippingPick"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(31), ScopeId(32)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Pick"] rebuilt : [] @@ -38387,6 +44111,12 @@ tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypeModifie semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "BP", "BPR", "BR", "Boxified", "Foo", "T", "TP", "TPR", "TR", "b00", "b01", "b02", "b03", "b04", "f1", "f2", "f3", "f4", "v00", "v01", "v02", "v03", "v04"] rebuilt : ScopeId(0): ["b00", "b01", "b02", "b03", "b04", "f1", "f2", "f3", "f4", "v00", "v01", "v02", "v03", "v04"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +Scope children mismatch: +after transform: ScopeId(29): [ScopeId(30)] +rebuilt : ScopeId(4): [] Unresolved references mismatch: after transform: ["Partial", "Pick", "Readonly"] rebuilt : [] @@ -38395,6 +44125,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypeOverlap semantic error: Bindings mismatch: after transform: ScopeId(0): ["AlienAnimalTypes", "AlienCat", "AnimalTypes", "CatMap", "Cats", "TerrestrialAnimalTypes", "TerrestrialCat", "catMap"] rebuilt : ScopeId(0): ["AlienAnimalTypes", "TerrestrialAnimalTypes", "catMap"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["CAT", "DOG", "TerrestrialAnimalTypes"] rebuilt : ScopeId(1): ["TerrestrialAnimalTypes"] @@ -38427,19 +44160,33 @@ tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypesGeneri semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "D", "K", "K0", "K1", "KA", "KB", "KC", "KD", "Keys", "Keys1", "Keys2", "M", "M0", "M1", "R1", "R2", "T1", "T2", "T3", "T4", "V0", "V1"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(25), ScopeId(27), ScopeId(29), ScopeId(31), ScopeId(32)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Readonly"] rebuilt : [] +tasks/coverage/typescript/tests/cases/conformance/types/mapped/mappedTypesGenericTuples2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/conformance/types/members/augmentedTypeBracketAccessIndexSignature.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo", "Function", "Object", "a", "b"] rebuilt : ScopeId(0): ["a", "b"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeHidingMembersOfObject.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "a", "b", "c", "i", "r1", "r2", "r3", "r4"] rebuilt : ScopeId(0): ["C", "a", "b", "c", "i", "r1", "r2", "r3", "r4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] @@ -38448,6 +44195,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeProper semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "a", "c", "i", "r1", "r10", "r11", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9"] rebuilt : ScopeId(0): ["C", "a", "c", "i", "r1", "r10", "r11", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] @@ -38456,11 +44206,17 @@ tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeWithCa semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "b", "i", "r2", "r2b", "r4", "rb4"] rebuilt : ScopeId(0): ["b", "i", "r2", "r2b", "r4", "rb4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeWithCallSignatureHidingMembersOfExtendedFunction.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Function", "I", "i", "r1", "r1b", "r1c", "r1d", "r1e", "r2", "r2b", "r2c", "r2d", "r2e", "x"] rebuilt : ScopeId(0): ["i", "r1", "r1b", "r1c", "r1d", "r1e", "r2", "r2b", "r2c", "r2d", "r2e", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Object"] rebuilt : [] @@ -38469,11 +44225,17 @@ tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeWithCa semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "i", "r1", "r1b", "r1c", "r2", "r2b", "r2c", "x"] rebuilt : ScopeId(0): ["i", "r1", "r1b", "r1c", "r2", "r2b", "r2c", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeWithConstructSignatureHidingMembersOfExtendedFunction.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Function", "I", "i", "r1", "r1b", "r1c", "r1d", "r1e", "r2", "r2b", "r2c", "r2d", "r2e", "x"] rebuilt : ScopeId(0): ["i", "r1", "r1b", "r1c", "r1d", "r1e", "r2", "r2b", "r2c", "r2d", "r2e", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Object"] rebuilt : [] @@ -38482,11 +44244,17 @@ tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeWithCo semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "i", "r1", "r1b", "r1c", "r2", "r2b", "r2c", "x"] rebuilt : ScopeId(0): ["i", "r1", "r1b", "r1c", "r2", "r2b", "r2c", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeWithNumericProperty.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "a", "b", "c", "i", "r1", "r2", "r3", "r4"] rebuilt : ScopeId(0): ["C", "a", "b", "c", "i", "r1", "r2", "r3", "r4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] @@ -38495,6 +44263,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/members/objectTypeWithSt semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "a", "b", "c", "i", "r", "r2", "r3", "r4"] rebuilt : ScopeId(0): ["C", "a", "b", "c", "i", "r", "r2", "r3", "r4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] @@ -38503,11 +44274,20 @@ tasks/coverage/typescript/tests/cases/conformance/types/members/typesWithOptiona semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "a", "b", "c", "d", "i"] rebuilt : ScopeId(0): ["a", "b", "c", "d", "i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/members/typesWithSpecializedCallSignatures.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "C", "Derived1", "Derived2", "I", "a", "c", "i", "r1", "r2", "r3"] rebuilt : ScopeId(0): ["Base", "C", "Derived1", "Derived2", "a", "c", "i", "r1", "r2", "r3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(9), ScopeId(13), ScopeId(14), ScopeId(15)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(4): [ScopeId(5)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(4), ReferenceId(9), ReferenceId(13), ReferenceId(30)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(1)] @@ -38522,6 +44302,12 @@ tasks/coverage/typescript/tests/cases/conformance/types/members/typesWithSpecial semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "C", "Derived1", "Derived2", "I", "a", "c", "i", "r1", "r2", "r3"] rebuilt : ScopeId(0): ["Base", "C", "Derived1", "Derived2", "a", "c", "i", "r1", "r2", "r3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(9), ScopeId(13), ScopeId(14), ScopeId(15)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(4): [ScopeId(5)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(6), ReferenceId(10), ReferenceId(22)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(1)] @@ -38536,6 +44322,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/namedTypes/classWithOnly semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "c", "i"] rebuilt : ScopeId(0): ["C", "c", "i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(4)] rebuilt : SymbolId(0): [] @@ -38547,6 +44336,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/namedTypes/classWithOnly semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "c", "i"] rebuilt : ScopeId(0): ["C", "c", "i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(4)] rebuilt : SymbolId(0): [] @@ -38563,21 +44355,33 @@ tasks/coverage/typescript/tests/cases/conformance/types/namedTypes/genericInstan semantic error: Bindings mismatch: after transform: ScopeId(0): ["Pair", "x", "y"] rebuilt : ScopeId(0): ["x", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/never/neverInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Comparator", "LinkedList", "Node", "a1", "a2", "list", "neverArray"] rebuilt : ScopeId(0): ["a1", "a2", "list", "neverArray"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/types/never/neverUnionIntersection.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T01", "T02", "T03", "T04", "T05", "T06", "T07", "T08", "T09", "T10", "T11", "T12"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/callSignatureWithoutAnnotationsOrBody.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "a", "foo", "i", "r", "r2", "r3", "r4", "r5"] rebuilt : ScopeId(0): ["a", "foo", "i", "r", "r2", "r3", "r4", "r5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/callSignatureWithoutReturnTypeAnnotationInference.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -38589,6 +44393,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSi semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "I2", "I3", "T", "a", "a2"] rebuilt : ScopeId(0): ["a", "a2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Object"] rebuilt : [] @@ -38597,11 +44404,17 @@ tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSi semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "I2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/callSignaturesWithOptionalParameters.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "a", "b", "c", "f", "f2", "foo", "i"] rebuilt : ScopeId(0): ["C", "a", "b", "c", "f", "f2", "foo", "i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8)] Symbol reference IDs mismatch: after transform: SymbolId(8): [ReferenceId(6)] rebuilt : SymbolId(8): [] @@ -38610,6 +44423,12 @@ tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSi semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "a", "c", "foo", "foo2", "i"] rebuilt : ScopeId(0): ["C", "a", "c", "foo", "foo2", "i"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(12), ScopeId(15), ScopeId(16)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +Scope children mismatch: +after transform: ScopeId(6): [ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5)] Symbol reference IDs mismatch: after transform: SymbolId(9): [ReferenceId(4)] rebuilt : SymbolId(5): [] @@ -38618,21 +44437,33 @@ tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSi semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "I2", "T", "a"] rebuilt : ScopeId(0): ["a"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/identicalCallSignatures2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "I", "I2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/identicalCallSignatures3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "I2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/parametersWithNoAnnotationAreAny.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "a", "b", "f", "f2", "f3", "foo"] rebuilt : ScopeId(0): ["C", "a", "b", "f", "f2", "f3", "foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9)] Bindings mismatch: after transform: ScopeId(4): ["T", "x"] rebuilt : ScopeId(4): ["x"] @@ -38641,25 +44472,48 @@ tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSi semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "C2", "C3", "I", "I2", "I3", "T", "a", "a2", "a3", "foo"] rebuilt : ScopeId(0): ["C", "C2", "C3", "a", "a2", "a3", "foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(8), ScopeId(13), ScopeId(18), ScopeId(22), ScopeId(26), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(6)] +Scope children mismatch: +after transform: ScopeId(4): [ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(2): [ScopeId(3)] Bindings mismatch: after transform: ScopeId(8): ["T"] rebuilt : ScopeId(4): [] +Scope children mismatch: +after transform: ScopeId(8): [ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] +rebuilt : ScopeId(4): [ScopeId(5)] Bindings mismatch: after transform: ScopeId(13): ["T"] rebuilt : ScopeId(6): [] +Scope children mismatch: +after transform: ScopeId(13): [ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17)] +rebuilt : ScopeId(6): [ScopeId(7)] Unresolved references mismatch: after transform: ["String"] rebuilt : [] +tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/specializedSignatureWithOptional.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/stringLiteralTypesInImplementationSignatures.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "a", "b", "f", "f2", "foo"] rebuilt : ScopeId(0): ["C", "a", "b", "f", "f2", "foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8)] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSignatures/typeParameterAsTypeArgument.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "foo"] rebuilt : ScopeId(0): ["C", "foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["T", "U", "x", "y"] rebuilt : ScopeId(1): ["x", "y"] @@ -38750,14 +44604,26 @@ tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/callSi semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "I2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/constructSignatures/constructSignaturesWithIdenticalOverloads.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "C2", "I", "I2", "a", "b", "i", "i2", "r1", "r2", "r3", "r4", "r5", "r6"] rebuilt : ScopeId(0): ["C", "C2", "a", "b", "i", "i2", "r1", "r2", "r3", "r4", "r5", "r6"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(9), ScopeId(12), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] Bindings mismatch: after transform: ScopeId(5): ["T"] rebuilt : ScopeId(3): [] +Scope children mismatch: +after transform: ScopeId(5): [ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(3): [ScopeId(4)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(5), ReferenceId(6), ReferenceId(23), ReferenceId(24)] rebuilt : SymbolId(0): [ReferenceId(0)] @@ -38769,9 +44635,18 @@ tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/constr semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "C2", "I", "I2", "a", "b", "i", "i2", "r1", "r2", "r3", "r4", "r5", "r6"] rebuilt : ScopeId(0): ["C", "C2", "a", "b", "i", "i2", "r1", "r2", "r3", "r4", "r5", "r6"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(9), ScopeId(12), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] Bindings mismatch: after transform: ScopeId(5): ["T"] rebuilt : ScopeId(3): [] +Scope children mismatch: +after transform: ScopeId(5): [ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(3): [ScopeId(4)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(5), ReferenceId(6), ReferenceId(23), ReferenceId(24)] rebuilt : SymbolId(0): [ReferenceId(0)] @@ -38783,6 +44658,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/constr semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "C2", "I", "I2", "a", "b"] rebuilt : ScopeId(0): ["C", "C2", "a", "b"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(8), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(3): [] @@ -38797,6 +44675,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/indexS semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "a", "b", "b2", "c", "i", "r1", "r1a", "r1b", "r2", "r2a", "r2b", "r3", "r4", "r5", "r6"] rebuilt : ScopeId(0): ["C", "a", "b", "b2", "c", "i", "r1", "r1a", "r1b", "r2", "r2a", "r2b", "r3", "r4", "r5", "r6"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] @@ -38805,6 +44686,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/indexS semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "a", "b", "c", "i", "r1", "r10", "r11", "r12", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9"] rebuilt : ScopeId(0): ["C", "a", "b", "c", "i", "r1", "r10", "r11", "r12", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] @@ -38813,21 +44697,33 @@ tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/method semantic error: Bindings mismatch: after transform: ScopeId(0): ["T", "b", "b2", "c", "c2"] rebuilt : ScopeId(0): ["b", "b2", "c", "c2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/methodSignatures/methodSignaturesWithOverloads2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["T", "c", "c2"] rebuilt : ScopeId(0): ["c", "c2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/propertySignatures/propertyNameWithoutTypeAnnotation.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "a", "b", "r1", "r2", "r3", "r4"] rebuilt : ScopeId(0): ["C", "a", "b", "r1", "r2", "r3", "r4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/propertySignatures/propertyNamesOfReservedWords.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "E", "I", "a", "c", "i", "r1", "r2", "r3", "r4", "r5", "r6", "r7", "r8"] rebuilt : ScopeId(0): ["C", "E", "a", "c", "i", "r1", "r2", "r3", "r4", "r5", "r6", "r7", "r8"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(3): ["E", "abstract", "as", "boolean", "break", "byte", "case", "catch", "char", "class", "const", "continue", "debugger", "default", "delete", "do", "double", "else", "enum", "export", "extends", "false", "final", "finally", "float", "for", "function", "goto", "if", "implements", "import", "in", "instanceof", "int", "interface", "is", "long", "namespace", "native", "new", "null", "package", "private", "protected", "public", "return", "short", "static", "super", "switch", "synchronized", "this", "throw", "throws", "transient", "true", "try", "typeof", "use", "var", "void", "volatile", "while", "with"] rebuilt : ScopeId(2): ["E"] @@ -38845,6 +44741,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/objectTypeLiteral/proper semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "a", "b", "c", "i", "r1", "r1b", "r2", "r3", "r4"] rebuilt : ScopeId(0): ["C", "a", "b", "c", "i", "r1", "r1b", "r2", "r3", "r4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2)] rebuilt : SymbolId(0): [ReferenceId(1)] @@ -38853,6 +44752,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/primitives/boolean/exten semantic error: Bindings mismatch: after transform: ScopeId(0): ["Boolean", "a", "b", "c", "d", "x"] rebuilt : ScopeId(0): ["a", "b", "c", "d", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/primitives/boolean/validBooleanAssignments.ts semantic error: Unresolved references mismatch: @@ -38863,6 +44765,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/primitives/number/extend semantic error: Bindings mismatch: after transform: ScopeId(0): ["Number", "a", "b", "c", "d", "x"] rebuilt : ScopeId(0): ["a", "b", "c", "d", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/primitives/number/validNumberAssignments.ts semantic error: Bindings mismatch: @@ -38885,12 +44790,20 @@ tasks/coverage/typescript/tests/cases/conformance/types/primitives/string/extend semantic error: Bindings mismatch: after transform: ScopeId(0): ["String", "a", "b", "c", "d", "x"] rebuilt : ScopeId(0): ["a", "b", "c", "d", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/primitives/string/validStringAssignments.ts semantic error: Unresolved references mismatch: after transform: ["Object", "String"] rebuilt : [] +tasks/coverage/typescript/tests/cases/conformance/types/primitives/stringLiteral/stringLiteralType.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/conformance/types/primitives/undefined/invalidUndefinedValues.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -38898,6 +44811,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/primitives/undefined/val semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "a", "b", "c", "d", "e", "f", "g", "h", "i", "x"] rebuilt : ScopeId(0): ["C", "a", "b", "c", "d", "e", "f", "g", "h", "i", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(4): ["T", "a"] rebuilt : ScopeId(2): ["a"] @@ -38917,6 +44833,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/rest/genericObjectRest.t semantic error: Bindings mismatch: after transform: ScopeId(0): ["Item", "a", "f1", "f2", "f3", "f4", "sa", "sb"] rebuilt : ScopeId(0): ["a", "f1", "f2", "f3", "f4", "sa", "sb"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Bindings mismatch: after transform: ScopeId(1): ["T", "a1", "a2", "a3", "a4", "a5", "b2", "obj", "r0", "r1", "r2", "r3", "r4", "r5"] rebuilt : ScopeId(1): ["a1", "a2", "a3", "a4", "a5", "b2", "obj", "r0", "r1", "r2", "r3", "r4", "r5"] @@ -38936,10 +44855,28 @@ Symbol reference IDs mismatch: after transform: SymbolId(17): [ReferenceId(11), ReferenceId(14)] rebuilt : SymbolId(16): [ReferenceId(10)] +tasks/coverage/typescript/tests/cases/conformance/types/rest/objectRest2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] + +tasks/coverage/typescript/tests/cases/conformance/types/rest/objectRestParameter.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(7)] + +tasks/coverage/typescript/tests/cases/conformance/types/rest/objectRestParameterES5.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(7)] + tasks/coverage/typescript/tests/cases/conformance/types/rest/objectRestReadonly.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["ObjType", "foo", "obj", "rest"] rebuilt : ScopeId(0): ["foo", "obj", "rest"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Readonly"] rebuilt : [] @@ -38961,6 +44898,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeLite semantic error: Bindings mismatch: after transform: ScopeId(0): ["T", "x", "y", "y2", "z"] rebuilt : ScopeId(0): ["x", "y", "y2", "z"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(2): ["T", "x"] rebuilt : ScopeId(2): ["x"] @@ -38971,9 +44911,18 @@ after transform: ScopeId(0): ["T", "f", "f2", "f3", "f4"] rebuilt : ScopeId(0): ["f", "f2", "f3", "f4"] tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeLiterals/functionLiteralForOverloads2.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] +Bindings mismatch: after transform: ScopeId(5): ["T"] rebuilt : ScopeId(3): [] +Scope children mismatch: +after transform: ScopeId(5): [ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(3): [ScopeId(4)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2), ReferenceId(3), ReferenceId(4), ReferenceId(5)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(1)] @@ -38993,6 +44942,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeQuer semantic error: Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13)] Bindings mismatch: after transform: ScopeId(18): ["T"] rebuilt : ScopeId(14): [] @@ -39013,12 +44965,18 @@ tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeQuer semantic error: Bindings mismatch: after transform: ScopeId(0): ["Controller", "IScope"] rebuilt : ScopeId(0): ["Controller"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2)] rebuilt : SymbolId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/specifyingTypes/typeQueries/typeofClass2.ts -semantic error: Symbol reference IDs mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1)] rebuilt : SymbolId(0): [ReferenceId(0)] Symbol reference IDs mismatch: @@ -39052,6 +45010,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/spread/objectSpread.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "Header", "a", "addAfter", "addBefore", "anything", "c", "changeTypeAfter", "changeTypeBoth", "combined", "combinedAfter", "combinedNestedChangeType", "conditionalSpreadBoolean", "conditionalSpreadNumber", "conditionalSpreadString", "container", "cplus", "exclusive", "f", "from16326", "genericSpread", "getter", "nested", "o", "o2", "op", "overlap", "overlapConflict", "override", "overwriteId", "propertyNested", "shortCutted", "spreadAny", "spreadC", "spreadFunc", "spreadNonPrimitive", "swap"] rebuilt : ScopeId(0): ["C", "a", "addAfter", "addBefore", "anything", "c", "changeTypeAfter", "changeTypeBoth", "combined", "combinedAfter", "combinedNestedChangeType", "conditionalSpreadBoolean", "conditionalSpreadNumber", "conditionalSpreadString", "container", "cplus", "exclusive", "f", "from16326", "genericSpread", "getter", "nested", "o", "o2", "op", "overlap", "overlapConflict", "override", "overwriteId", "propertyNested", "shortCutted", "spreadAny", "spreadC", "spreadFunc", "spreadNonPrimitive", "swap"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] Bindings mismatch: after transform: ScopeId(13): ["T", "U", "t", "u"] rebuilt : ScopeId(11): ["t", "u"] @@ -39071,6 +45032,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/spread/objectSpreadRepea semantic error: Bindings mismatch: after transform: ScopeId(0): ["Props", "parseWithSpread"] rebuilt : ScopeId(0): ["parseWithSpread"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["Record", "undefined"] rebuilt : ["undefined"] @@ -39079,6 +45043,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/spread/spreadContextualT semantic error: Bindings mismatch: after transform: ScopeId(0): ["Person", "age", "alice", "bob", "naam"] rebuilt : ScopeId(0): ["age", "naam"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(2): Some("bob") rebuilt : ReferenceId(0): None @@ -39093,6 +45060,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/spread/spreadExcessPrope semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "a1", "extra1"] rebuilt : ScopeId(0): ["a1", "extra1"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/spread/spreadNonPrimitive.ts semantic error: Bindings mismatch: @@ -39143,26 +45113,41 @@ tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLite semantic error: Bindings mismatch: after transform: ScopeId(0): ["S", "T", "f"] rebuilt : ScopeId(0): ["f"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralCheckedInIf02.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["S", "T", "f", "isS"] rebuilt : ScopeId(0): ["f", "isS"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralMatchedInSwitch01.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["S", "T", "foo"] rebuilt : ScopeId(0): ["foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/stringLiteral/stringLiteralTypeAssertion01.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["S", "T", "s", "str", "t"] rebuilt : ScopeId(0): ["s", "str", "t"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/thisType/contextualThisType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["X", "Y", "x", "y"] rebuilt : ScopeId(0): ["x", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/thisType/fluentClasses.ts semantic error: Symbol reference IDs mismatch: @@ -39173,11 +45158,17 @@ tasks/coverage/typescript/tests/cases/conformance/types/thisType/fluentInterface semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "c", "z"] rebuilt : ScopeId(0): ["c", "z"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/thisType/inferThisType.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Check", "This", "r1", "r2"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(8)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeAndConstraints.ts semantic error: Bindings mismatch: @@ -39200,17 +45191,31 @@ tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInClass semantic error: Bindings mismatch: after transform: ScopeId(0): ["C1", "C2", "C3", "C5", "Foo"] rebuilt : ScopeId(0): ["C1", "C2", "C3", "C5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5)] Unresolved references mismatch: after transform: ["Date", "undefined"] rebuilt : ["undefined"] +tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInFunctions3.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] + tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInFunctions4.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["CorrectObject", "WrongObject", "problemFunction"] rebuilt : ScopeId(0): ["problemFunction"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(6): ["T", "name"] rebuilt : ScopeId(2): ["name"] +Scope children mismatch: +after transform: ScopeId(6): [ScopeId(7)] +rebuilt : ScopeId(2): [] Unresolved references mismatch: after transform: ["callsCallback", "isCorrect", "this"] rebuilt : ["callsCallback", "isCorrect"] @@ -39219,6 +45224,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInInter semantic error: Bindings mismatch: after transform: ScopeId(0): ["Foo", "I1", "I2", "I3"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Date"] rebuilt : [] @@ -39227,6 +45235,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInObjec semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "i", "impl", "mutuallyRecursive", "o"] rebuilt : ScopeId(0): ["i", "impl", "mutuallyRecursive", "o"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInTaggedTemplateCall.ts semantic error: Bindings mismatch: @@ -39240,6 +45251,14 @@ tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInTuple semantic error: Bindings mismatch: after transform: ScopeId(0): ["Array", "a", "b", "c", "t"] rebuilt : ScopeId(0): ["a", "b", "c", "t"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + +tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeInTypePredicate.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/thisType/thisTypeOptionalCall.ts semantic error: Bindings mismatch: @@ -39250,6 +45269,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/tuple/named/partiallyNam semantic error: Bindings mismatch: after transform: ScopeId(0): ["AddMixedConditional", "AddMixedConditionalBoolean", "AddMixedConditionalLiteral", "AddMixedConditionalNumberPrimitive", "AnonymousToAnonymous", "AnonymousToMixed", "ConditionalTuple", "MixedSpread", "MixedToAnonymous", "MixedToMixed", "NamedAndAnonymous", "NamedAnonymousMixed", "NamedToAnonymous", "NamedToMixed", "ToAnonymousTuple", "ToMixedTuple", "fa1", "fa2", "fb1", "fb2", "fb3", "input", "output"] rebuilt : ScopeId(0): ["fa1", "fa2", "fb1", "fb2", "fb3", "output"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(21), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] Reference symbol mismatch: after transform: ReferenceId(37): Some("input") rebuilt : ReferenceId(1): None @@ -39261,6 +45283,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/tuple/named/partiallyNam semantic error: Bindings mismatch: after transform: ScopeId(0): ["GetKeys", "GetResult", "MultiKeyMap", "id1", "matches", "x"] rebuilt : ScopeId(0): ["id1", "matches", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Iterable"] rebuilt : [] @@ -39277,13 +45302,21 @@ after transform: [] rebuilt : ["tuple"] tasks/coverage/typescript/tests/cases/conformance/types/tuple/typeInferenceWithTupleType.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(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: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/conformance/types/typeAliases/asiPreventsParsingAsTypeAlias02.ts semantic error: Missing SymbolId: container Missing SymbolId: _container @@ -39356,6 +45389,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeAliases/circularType semantic error: Bindings mismatch: after transform: ScopeId(0): ["I0", "I3", "I4", "T0", "T3", "T4", "v0", "v3", "v4"] rebuilt : ScopeId(0): ["I0", "I3", "I4", "v0", "v3", "v4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Symbol reference IDs mismatch: after transform: SymbolId(2): [ReferenceId(1)] rebuilt : SymbolId(1): [] @@ -39370,11 +45406,17 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeAliases/circularType semantic error: Bindings mismatch: after transform: ScopeId(0): ["I0", "I1", "I2", "I3", "I4", "T0", "T1", "T2", "T3", "T4", "v0", "v1", "v2", "v3", "v4"] rebuilt : ScopeId(0): ["v0", "v1", "v2", "v3", "v4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/typeAliases/classDoesNotDependOnBaseTypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["StringTree", "StringTreeCollection", "StringTreeCollectionBase", "x"] rebuilt : ScopeId(0): ["StringTreeCollection", "StringTreeCollectionBase", "x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Symbol reference IDs mismatch: after transform: SymbolId(2): [ReferenceId(0), ReferenceId(7)] rebuilt : SymbolId(1): [ReferenceId(4)] @@ -39383,17 +45425,29 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeAliases/genericTypeA semantic error: Bindings mismatch: after transform: ScopeId(0): ["AB", "Bar", "Foo", "Lazy", "Pair", "Strange", "TaggedPair", "Tree", "a", "b", "f", "g", "ls", "p", "s", "tree", "x", "y", "z"] rebuilt : ScopeId(0): ["a", "b", "f", "g", "ls", "p", "s", "tree", "x", "y", "z"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(12)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(10): ["A", "Foo", "x"] rebuilt : ScopeId(2): ["x"] +Scope children mismatch: +after transform: ScopeId(10): [ScopeId(11)] +rebuilt : ScopeId(2): [] Bindings mismatch: after transform: ScopeId(12): ["B", "Bar", "x"] rebuilt : ScopeId(3): ["x"] +Scope children mismatch: +after transform: ScopeId(12): [ScopeId(13)] +rebuilt : ScopeId(3): [] tasks/coverage/typescript/tests/cases/conformance/types/typeAliases/interfaceDoesNotDependOnBaseTypes.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["StringTree", "StringTreeArray", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["Array"] rebuilt : [] @@ -39402,6 +45456,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeAliases/typeAliases. semantic error: Bindings mismatch: after transform: ScopeId(0): ["C7", "E", "I13", "I6", "Meters", "StringAndBoolean", "T1", "T10", "T11", "T13", "T14", "T2", "T3", "T4", "T5", "T6", "T7", "T8", "T9", "x", "x1", "x10", "x11", "x13_1", "x13_2", "x14", "x2", "x3", "x4", "x5", "x6", "x7", "x8", "x9", "y"] rebuilt : ScopeId(0): ["C7", "E", "x", "x1", "x10", "x11", "x13_1", "x13_2", "x14", "x2", "x3", "x4", "x5", "x6", "x7", "x8", "x9", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(24): ["E", "x"] rebuilt : ScopeId(2): ["E"] @@ -39419,6 +45476,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgum semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "C2", "I", "I2", "T", "f", "f2", "f3", "i", "i2", "r", "r2", "r3", "r4", "r5", "r6", "r7"] rebuilt : ScopeId(0): ["C", "C2", "f", "f2", "f3", "i", "i2", "r", "r2", "r3", "r4", "r5", "r6", "r7"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5)] Bindings mismatch: after transform: ScopeId(1): ["T", "x"] rebuilt : ScopeId(1): ["x"] @@ -39455,10 +45515,18 @@ Unresolved references mismatch: after transform: ["String"] rebuilt : [] +tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/constraintSatisfactionWithAny2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/constraintSatisfactionWithEmptyObject.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "C2", "I", "I2", "a", "foo", "foo2", "i", "i2", "r", "r2"] rebuilt : ScopeId(0): ["C", "C2", "a", "foo", "foo2", "i", "i2", "r", "r2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4), ScopeId(5)] Bindings mismatch: after transform: ScopeId(1): ["T", "x"] rebuilt : ScopeId(1): ["x"] @@ -39479,6 +45547,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgum semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "C2", "F2", "I", "I2", "T", "a", "a2", "b", "b2", "c", "c2", "f2", "foo", "foo2", "i", "i2", "r", "r1", "r10", "r11", "r12", "r13", "r14", "r15", "r16", "r17", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9"] rebuilt : ScopeId(0): ["C", "C2", "a", "a2", "b", "b2", "c", "c2", "f2", "foo", "foo2", "i", "i2", "r", "r1", "r10", "r11", "r12", "r13", "r14", "r15", "r16", "r17", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] Bindings mismatch: after transform: ScopeId(1): ["T", "x"] rebuilt : ScopeId(1): ["x"] @@ -39511,6 +45582,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgum semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "C2", "I", "I2", "T", "a", "a2", "b", "b2", "c", "c2", "foo", "i", "i2", "r1", "r10", "r12", "r15", "r2", "r3", "r4", "r5", "r8", "r9"] rebuilt : ScopeId(0): ["C", "C2", "a", "a2", "b", "b2", "c", "c2", "foo", "i", "i2", "r1", "r10", "r12", "r15", "r2", "r3", "r4", "r5", "r8", "r9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] Bindings mismatch: after transform: ScopeId(1): ["T", "x"] rebuilt : ScopeId(1): ["x"] @@ -39536,6 +45610,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgum semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "a", "b", "foo", "foo2", "r", "r2", "r3"] rebuilt : ScopeId(0): ["a", "b", "foo", "foo2", "r", "r2", "r3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(1): ["T", "U", "x", "y"] rebuilt : ScopeId(1): ["x", "y"] @@ -39547,6 +45624,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgum semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "a", "b", "c", "foo", "foo2"] rebuilt : ScopeId(0): ["a", "b", "c", "foo", "foo2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] Bindings mismatch: after transform: ScopeId(4): ["T", "U", "V", "x", "y", "z"] rebuilt : ScopeId(1): ["x", "y", "z"] @@ -39558,6 +45638,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgum semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "a", "b", "c", "foo", "foo2"] rebuilt : ScopeId(0): ["a", "b", "c", "foo", "foo2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] Bindings mismatch: after transform: ScopeId(4): ["T", "U", "V", "x", "y", "z"] rebuilt : ScopeId(1): ["x", "y", "z"] @@ -39569,6 +45652,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeArgum semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "Foo", "c", "r", "y"] rebuilt : ScopeId(0): ["C", "c", "r", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] @@ -39636,6 +45722,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParam semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "T", "a", "b", "i", "r", "r2", "r2b", "r3", "r3b", "r4"] rebuilt : ScopeId(0): ["C", "a", "b", "i", "r", "r2", "r2b", "r3", "r3b", "r4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] @@ -39650,6 +45739,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParam semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "T", "U", "a", "aB", "b", "i", "r1", "r1b", "r2", "r2b", "r3", "r3b", "r3c", "r3d", "r4"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "aB", "b", "i", "r1", "r1b", "r2", "r2b", "r3", "r3b", "r3c", "r3d", "r4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(8)] Bindings mismatch: after transform: ScopeId(5): ["T", "U"] rebuilt : ScopeId(5): [] @@ -39667,6 +45759,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParam semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "T", "U", "a", "b", "i", "r1a", "r1b", "r2", "r2b", "r3", "r3b", "r3c", "r3d", "r4"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "i", "r1a", "r1b", "r2", "r2b", "r3", "r3b", "r3c", "r3d", "r4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(8)] Bindings mismatch: after transform: ScopeId(5): ["T", "U"] rebuilt : ScopeId(5): [] @@ -39684,6 +45779,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParam semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "T", "a", "b", "i", "r", "r2", "r2b", "r3", "r3b", "r4"] rebuilt : ScopeId(0): ["C", "a", "b", "i", "r", "r2", "r2b", "r3", "r3b", "r4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] @@ -39691,15 +45789,26 @@ Bindings mismatch: after transform: ScopeId(4): ["T", "a", "x"] rebuilt : ScopeId(3): ["a", "x"] +tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/typeParameterConstModifiersReverseMappedTypes.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/typeParameterConstModifiersWithIntersection.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Config", "result"] rebuilt : ScopeId(0): ["result"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/typeParameterUsedAsConstraint.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "C2", "C3", "C4", "C5", "C6", "I", "I2", "I3", "I4", "I5", "I6", "T", "U", "V", "a", "a2", "a3", "a4", "a5", "a6", "e", "e2", "e3", "e4", "e5", "e6", "f", "f2", "f3", "f4", "f5", "f6"] rebuilt : ScopeId(0): ["C", "C2", "C3", "C4", "C5", "C6", "a", "a2", "a3", "a4", "a5", "a6", "e", "e2", "e3", "e4", "e5", "e6", "f", "f2", "f3", "f4", "f5", "f6"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18)] Bindings mismatch: after transform: ScopeId(1): ["T", "U"] rebuilt : ScopeId(1): [] @@ -39788,6 +45897,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assign semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "E", "I", "T", "a", "ac", "ae", "ai", "b", "c", "d", "e", "f", "foo", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q"] rebuilt : ScopeId(0): ["C", "E", "a", "ac", "ae", "ai", "b", "c", "d", "e", "f", "foo", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(3): ["A", "E"] rebuilt : ScopeId(2): ["E"] @@ -39823,6 +45935,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assign semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "S", "T", "U", "g", "h"] rebuilt : ScopeId(0): ["g", "h"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembers.ts semantic error: Missing SymbolId: SimpleTypes @@ -39842,12 +45957,18 @@ rebuilt : ScopeId(1): ["S", "T", "_SimpleTypes", "a", "a2", "b", "b2", "s 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"] 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)] +rebuilt : ScopeId(4): [ScopeId(5), ScopeId(6)] Symbol reference IDs mismatch: after transform: SymbolId(1): [ReferenceId(0)] rebuilt : SymbolId(2): [] @@ -39871,6 +45992,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assign semantic error: Bindings mismatch: after transform: ScopeId(0): ["S", "S2", "T", "T2", "a", "a2", "b", "b2", "s", "s2", "t", "t2"] rebuilt : ScopeId(0): ["S", "T", "a", "a2", "b", "b2", "s", "s2", "t", "t2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] @@ -39882,6 +46006,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assign semantic error: Bindings mismatch: after transform: ScopeId(0): ["S", "S2", "T", "T2", "a", "a2", "b", "b2", "s", "s2", "t", "t2"] rebuilt : ScopeId(0): ["S", "T", "a", "a2", "b", "b2", "s", "s2", "t", "t2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(2)] rebuilt : SymbolId(0): [] @@ -39893,6 +46020,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assign semantic error: Bindings mismatch: after transform: ScopeId(0): ["S", "S2", "T", "T2", "a", "a2", "b", "b2", "s", "s2", "t", "t2"] rebuilt : ScopeId(0): ["S", "T", "a", "a2", "b", "b2", "s", "s2", "t", "t2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] @@ -39904,6 +46034,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assign semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "Base", "Derived", "Derived2", "I", "OtherDerived"] rebuilt : ScopeId(0): ["Base", "Derived", "Derived2", "OtherDerived"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2), ReferenceId(3), ReferenceId(5), ReferenceId(6), ReferenceId(8), ReferenceId(10), ReferenceId(12), ReferenceId(14), ReferenceId(16), ReferenceId(18), ReferenceId(20), ReferenceId(24), ReferenceId(26), ReferenceId(32), ReferenceId(41), ReferenceId(59), ReferenceId(65), ReferenceId(73), ReferenceId(80), ReferenceId(88), ReferenceId(90), ReferenceId(95), ReferenceId(97), ReferenceId(108)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(2)] @@ -39921,6 +46054,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assign semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "Base", "Derived", "Derived2", "I", "OtherDerived"] rebuilt : ScopeId(0): ["Base", "Derived", "Derived2", "OtherDerived"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2), ReferenceId(15), ReferenceId(19), ReferenceId(26), ReferenceId(34), ReferenceId(40), ReferenceId(46), ReferenceId(61), ReferenceId(66)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(2)] @@ -39935,6 +46071,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assign semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "Base", "Derived", "Derived2", "I", "OtherDerived"] rebuilt : ScopeId(0): ["Base", "Derived", "Derived2", "OtherDerived"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2), ReferenceId(3), ReferenceId(5), ReferenceId(6), ReferenceId(8), ReferenceId(10), ReferenceId(12), ReferenceId(14), ReferenceId(16), ReferenceId(18), ReferenceId(20), ReferenceId(24), ReferenceId(26), ReferenceId(32), ReferenceId(56), ReferenceId(62), ReferenceId(70), ReferenceId(77), ReferenceId(85), ReferenceId(87), ReferenceId(92), ReferenceId(94)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(2)] @@ -39952,6 +46091,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assign semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "Base", "Derived", "Derived2", "I", "OtherDerived"] rebuilt : ScopeId(0): ["Base", "Derived", "Derived2", "OtherDerived"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(18)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2), ReferenceId(3), ReferenceId(5), ReferenceId(6), ReferenceId(8), ReferenceId(10), ReferenceId(12), ReferenceId(14), ReferenceId(16), ReferenceId(18), ReferenceId(20), ReferenceId(24), ReferenceId(26), ReferenceId(32), ReferenceId(41), ReferenceId(59), ReferenceId(65), ReferenceId(73), ReferenceId(80), ReferenceId(88), ReferenceId(90), ReferenceId(95), ReferenceId(97), ReferenceId(108)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(2)] @@ -39969,6 +46111,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assign semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "Base", "Derived", "Derived2", "I", "OtherDerived"] rebuilt : ScopeId(0): ["Base", "Derived", "Derived2", "OtherDerived"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(18)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2), ReferenceId(15), ReferenceId(19), ReferenceId(26), ReferenceId(29), ReferenceId(36), ReferenceId(44), ReferenceId(50), ReferenceId(53), ReferenceId(71), ReferenceId(76), ReferenceId(85), ReferenceId(87), ReferenceId(91), ReferenceId(94)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(2)] @@ -39983,6 +46128,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assign semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "Base", "Derived", "Derived2", "I", "OtherDerived"] rebuilt : ScopeId(0): ["Base", "Derived", "Derived2", "OtherDerived"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2), ReferenceId(3), ReferenceId(5), ReferenceId(6), ReferenceId(8), ReferenceId(10), ReferenceId(12), ReferenceId(14), ReferenceId(16), ReferenceId(18), ReferenceId(20), ReferenceId(24), ReferenceId(26), ReferenceId(32), ReferenceId(56), ReferenceId(62), ReferenceId(70), ReferenceId(77), ReferenceId(85), ReferenceId(87), ReferenceId(92), ReferenceId(94)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(2)] @@ -40000,6 +46148,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assign semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "E", "I", "T", "a", "ac", "ae", "ai", "b", "c", "d", "e", "f", "foo", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q"] rebuilt : ScopeId(0): ["C", "E", "a", "ac", "ae", "ai", "b", "c", "d", "e", "f", "foo", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(3): ["A", "E"] rebuilt : ScopeId(2): ["E"] @@ -40026,6 +46177,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assign semantic error: Bindings mismatch: after transform: ScopeId(0): ["Test1", "Test2", "hasOwn", "source", "target", "toString"] rebuilt : ScopeId(0): ["hasOwn", "target", "toString"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(3): Some("source") rebuilt : ReferenceId(0): None @@ -40037,6 +46191,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assign semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "E", "I", "T", "ac", "ae", "ai", "b", "c", "d", "e", "f", "foo", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q"] rebuilt : ScopeId(0): ["C", "E", "ac", "ae", "ai", "b", "c", "d", "e", "f", "foo", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(3): ["A", "E"] rebuilt : ScopeId(2): ["E"] @@ -40077,6 +46234,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/assign semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "E", "I", "T", "ac", "ae", "ai", "b", "c", "d", "e", "f", "foo", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q"] rebuilt : ScopeId(0): ["C", "E", "ac", "ae", "ai", "b", "c", "d", "e", "f", "foo", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Bindings mismatch: after transform: ScopeId(3): ["A", "E"] rebuilt : ScopeId(2): ["E"] @@ -40212,6 +46372,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/compar semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1", "I2", "x", "y", "z"] rebuilt : ScopeId(0): ["x", "y", "z"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/comparable/independentPropertyVariance.ts semantic error: Bindings mismatch: @@ -40271,11 +46434,17 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/recurs semantic error: Bindings mismatch: after transform: ScopeId(0): ["AA", "BB"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/recursiveTypes/infiniteExpansionThroughTypeInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["G", "ff"] rebuilt : ScopeId(0): ["ff"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(2): ["T", "g"] rebuilt : ScopeId(1): ["g"] @@ -40284,11 +46453,17 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/recurs semantic error: Bindings mismatch: after transform: ScopeId(0): ["BinaryTuple", "List", "Sequence"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(6)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/recursiveTypes/nominalSubtypeCheckOfTypeParameter2.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "A2", "A3", "B", "C"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/recursiveTypes/recursiveTypeInGenericConstraint.ts semantic error: Bindings mismatch: @@ -40308,7 +46483,10 @@ after transform: SymbolId(4): [ReferenceId(10)] rebuilt : SymbolId(2): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/recursiveTypes/recursiveTypesUsedAsFunctionParameters.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] Bindings mismatch: @@ -40323,6 +46501,9 @@ rebuilt : ScopeId(4): ["x"] Bindings mismatch: after transform: ScopeId(9): ["T", "U", "foo3", "foo4", "foo5", "list", "myList", "r", "r2"] rebuilt : ScopeId(5): ["foo3", "foo4", "foo5", "list", "myList", "r", "r2"] +Scope children mismatch: +after transform: ScopeId(9): [ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17)] +rebuilt : ScopeId(5): [ScopeId(6), ScopeId(7), ScopeId(8)] Bindings mismatch: after transform: ScopeId(11): ["V", "x"] rebuilt : ScopeId(6): ["x"] @@ -40347,6 +46528,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtyp semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "E", "I", "f1", "f10", "f11", "f12", "f13", "f14", "f15", "f16", "f2", "f3", "f4", "f5", "f6", "f7", "f8", "f9"] rebuilt : ScopeId(0): ["C", "E", "f1", "f10", "f11", "f12", "f13", "f14", "f15", "f16", "f2", "f3", "f4", "f5", "f6", "f7", "f8", "f9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69), ScopeId(70), ScopeId(71)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38)] Bindings mismatch: after transform: ScopeId(58): ["T", "x"] rebuilt : ScopeId(33): ["x"] @@ -40405,6 +46589,9 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(4), SymbolId(6) 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)] +rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] Bindings mismatch: after transform: ScopeId(5): ["T", "x"] rebuilt : ScopeId(3): ["x"] @@ -40413,7 +46600,10 @@ after transform: ScopeId(9): ["T", "x"] rebuilt : ScopeId(5): ["x"] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithCallSignatures2.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(55), ScopeId(57), ScopeId(59), ScopeId(61), ScopeId(63), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69), ScopeId(70), ScopeId(71), ScopeId(72), ScopeId(73), ScopeId(74), ScopeId(75), ScopeId(76), ScopeId(77), ScopeId(78)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(19), ScopeId(21), ScopeId(23), ScopeId(25), ScopeId(27), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42)] +Bindings mismatch: after transform: ScopeId(41): ["T", "x"] rebuilt : ScopeId(5): ["x"] Bindings mismatch: @@ -40498,6 +46688,9 @@ 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), 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"] @@ -40540,6 +46733,9 @@ rebuilt : ScopeId(30): [SymbolId(78), SymbolId(79), SymbolId(81), SymbolI Scope flags mismatch: after transform: ScopeId(48): ScopeFlags(StrictMode | Function) 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"] @@ -40560,7 +46756,10 @@ 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/subtypingWithCallSignatures4.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24)] +Bindings mismatch: after transform: ScopeId(27): ["T", "x"] rebuilt : ScopeId(5): ["x"] Bindings mismatch: @@ -40644,11 +46843,17 @@ rebuilt : ScopeId(1): ["_ConstructSignature", "r", "r2", "r3", "r3arg1", 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): [] 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: +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: 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(56), ReferenceId(106), ReferenceId(108), ReferenceId(110), ReferenceId(121), ReferenceId(123), ReferenceId(125), ReferenceId(139), ReferenceId(141), ReferenceId(143), ReferenceId(145), ReferenceId(158), ReferenceId(160), ReferenceId(162), ReferenceId(164), ReferenceId(186), ReferenceId(187), ReferenceId(195), ReferenceId(200), ReferenceId(202), ReferenceId(214), ReferenceId(220), ReferenceId(246)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(2)] @@ -40680,12 +46885,18 @@ rebuilt : ScopeId(1): ["Base", "Derived", "Derived2", "OtherDerived", "_E 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"] Scope flags mismatch: after transform: ScopeId(36): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(6): ScopeFlags(Function) +Scope children mismatch: +after transform: ScopeId(36): [ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40)] +rebuilt : ScopeId(6): [] Symbol reference IDs mismatch: 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(35), ReferenceId(41), ReferenceId(55), ReferenceId(58), ReferenceId(60), ReferenceId(73), ReferenceId(75), ReferenceId(77), ReferenceId(79), ReferenceId(90), ReferenceId(91), ReferenceId(102), ReferenceId(110), ReferenceId(116), ReferenceId(118), ReferenceId(139)] rebuilt : SymbolId(2): [ReferenceId(0), ReferenceId(2)] @@ -40703,6 +46914,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtyp semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "Derived", "Derived2", "OtherDerived", "T", "U", "V", "r1", "r11", "r11a", "r11arg", "r11arg2", "r11b", "r15", "r15a", "r15arg", "r15arg2", "r15b", "r16", "r16a", "r16arg", "r16arg2", "r16b", "r17", "r17arg", "r18", "r18arg", "r1a", "r1arg", "r1arg2", "r1b", "r2", "r2a", "r2arg", "r2arg2", "r2b", "r3", "r3a", "r3arg", "r3arg2", "r3b", "r4", "r4a", "r4arg", "r4arg2", "r4b", "r5", "r5a", "r5arg", "r5arg2", "r5b", "r6", "r6a", "r6arg", "r6arg2", "r6b"] rebuilt : ScopeId(0): ["Base", "Derived", "Derived2", "OtherDerived", "r1", "r11", "r11a", "r11arg", "r11arg2", "r11b", "r15", "r15a", "r15arg", "r15arg2", "r15b", "r16", "r16a", "r16arg", "r16arg2", "r16b", "r17", "r17arg", "r18", "r18arg", "r1a", "r1arg", "r1arg2", "r1b", "r2", "r2a", "r2arg", "r2arg2", "r2b", "r3", "r3a", "r3arg", "r3arg2", "r3b", "r4", "r4a", "r4arg", "r4arg2", "r4b", "r5", "r5a", "r5arg", "r5arg2", "r5b", "r6", "r6a", "r6arg", "r6arg2", "r6b"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(26), ScopeId(27), ScopeId(34)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2), ReferenceId(15), ReferenceId(19), ReferenceId(26), ReferenceId(34), ReferenceId(40), ReferenceId(46), ReferenceId(99), ReferenceId(104), ReferenceId(114), ReferenceId(118), ReferenceId(140), ReferenceId(144)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(2)] @@ -40717,6 +46931,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtyp semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "Base", "Derived", "Derived2", "I", "OtherDerived"] rebuilt : ScopeId(0): ["Base", "Derived", "Derived2", "OtherDerived"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2), ReferenceId(3), ReferenceId(5), ReferenceId(6), ReferenceId(8), ReferenceId(10), ReferenceId(12), ReferenceId(14), ReferenceId(16), ReferenceId(18), ReferenceId(20), ReferenceId(24), ReferenceId(26), ReferenceId(32), ReferenceId(56), ReferenceId(62), ReferenceId(70), ReferenceId(77), ReferenceId(85), ReferenceId(87), ReferenceId(92), ReferenceId(94)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(2)] @@ -40746,22 +46963,34 @@ 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"] +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"] Scope flags mismatch: after transform: ScopeId(10): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) +Scope children mismatch: +after transform: ScopeId(10): [ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16)] +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: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembersOptionality4.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "Derived", "S", "S2", "S3", "T", "T2", "T3", "a", "b", "r"] rebuilt : ScopeId(0): ["a", "b", "r"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithOptionalProperties.ts semantic error: Bindings mismatch: @@ -40776,6 +47005,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(3): [] @@ -40799,6 +47031,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "E", "I", "a", "b", "foo10", "foo11", "foo12", "foo13", "foo14", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "E", "a", "b", "foo10", "foo11", "foo12", "foo13", "foo14", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(3): [] @@ -40834,6 +47069,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "I2", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Bindings mismatch: after transform: ScopeId(5): ["T"] rebuilt : ScopeId(5): [] @@ -40857,6 +47095,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "I2", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Bindings mismatch: after transform: ScopeId(5): ["T"] rebuilt : ScopeId(5): [] @@ -40883,6 +47124,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "I2", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Bindings mismatch: after transform: ScopeId(5): ["T"] rebuilt : ScopeId(5): [] @@ -40906,6 +47150,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["I", "I2", "a", "foo13", "foo14", "foo14b", "foo15", "foo2", "foo3", "foo4", "foo5"] rebuilt : ScopeId(0): ["a", "foo13", "foo14", "foo14b", "foo15", "foo2", "foo3", "foo4", "foo5"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] Symbol reference IDs mismatch: after transform: SymbolId(3): [ReferenceId(4), ReferenceId(5), ReferenceId(11), ReferenceId(14)] rebuilt : SymbolId(0): [] @@ -40914,9 +47161,21 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "I2", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(9), ScopeId(14), ScopeId(17), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69), ScopeId(70), ScopeId(71), ScopeId(72), ScopeId(73), ScopeId(74), ScopeId(75), ScopeId(76), ScopeId(77), ScopeId(78), ScopeId(79), ScopeId(80)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] +Scope children mismatch: +after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(1): [ScopeId(2)] +Scope children mismatch: +after transform: ScopeId(5): [ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(3): [ScopeId(4)] Bindings mismatch: after transform: ScopeId(9): ["T"] rebuilt : ScopeId(5): [] +Scope children mismatch: +after transform: ScopeId(9): [ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13)] +rebuilt : ScopeId(5): [ScopeId(6)] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(4), ReferenceId(5), ReferenceId(16), ReferenceId(18), ReferenceId(20), ReferenceId(22)] rebuilt : SymbolId(0): [] @@ -40937,11 +47196,17 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "foo"] rebuilt : ScopeId(0): ["foo"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithConstructSignatures.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "I2", "a", "foo1", "foo10", "foo12", "foo12b", "foo13", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "foo1", "foo10", "foo12", "foo12b", "foo13", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22)] Bindings mismatch: after transform: ScopeId(5): ["T"] rebuilt : ScopeId(5): [] @@ -40962,6 +47227,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "C", "I", "I2", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] rebuilt : ScopeId(0): ["B", "C", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(3): [] @@ -40985,6 +47253,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "C", "I", "I2", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] rebuilt : ScopeId(0): ["B", "C", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(3): [] @@ -41005,6 +47276,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "I2", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Bindings mismatch: after transform: ScopeId(2): ["T", "x"] rebuilt : ScopeId(2): ["x"] @@ -41037,6 +47311,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "I2", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Bindings mismatch: after transform: ScopeId(2): ["T", "U", "x", "y"] rebuilt : ScopeId(2): ["x", "y"] @@ -41069,6 +47346,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "I2", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Bindings mismatch: after transform: ScopeId(2): ["T", "x"] rebuilt : ScopeId(2): ["x"] @@ -41104,6 +47384,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "D", "I", "I2", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo6", "foo6c", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "D", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo6", "foo6c", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69), ScopeId(70), ScopeId(71), ScopeId(72), ScopeId(73), ScopeId(74), ScopeId(75), ScopeId(76), ScopeId(77)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30)] Bindings mismatch: after transform: ScopeId(2): ["T", "U", "x", "y"] rebuilt : ScopeId(2): ["x", "y"] @@ -41145,6 +47428,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "D", "Five", "Four", "I", "I2", "One", "Six", "Three", "Two", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo6", "foo6c", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "D", "One", "Two", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo6", "foo6c", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69), ScopeId(70), ScopeId(71), ScopeId(72), ScopeId(73), ScopeId(74), ScopeId(75), ScopeId(76), ScopeId(77), ScopeId(78), ScopeId(79), ScopeId(80), ScopeId(81), ScopeId(82), ScopeId(83)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32)] Bindings mismatch: after transform: ScopeId(8): ["T", "U", "x", "y"] rebuilt : ScopeId(4): ["x", "y"] @@ -41189,6 +47475,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "I2", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Bindings mismatch: after transform: ScopeId(2): ["T", "x"] rebuilt : ScopeId(2): ["x"] @@ -41224,6 +47513,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "I2", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Bindings mismatch: after transform: ScopeId(2): ["T", "x"] rebuilt : ScopeId(2): ["x"] @@ -41259,6 +47551,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "I2", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Bindings mismatch: after transform: ScopeId(2): ["T", "x"] rebuilt : ScopeId(2): ["x"] @@ -41294,6 +47589,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "D", "I", "I2", "Z", "a", "foo1", "foo13", "foo14", "foo14b", "foo15", "foo2", "foo3"] rebuilt : ScopeId(0): ["a", "foo1", "foo13", "foo14", "foo14b", "foo15", "foo2", "foo3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] Symbol reference IDs mismatch: after transform: SymbolId(10): [ReferenceId(10), ReferenceId(11), ReferenceId(14), ReferenceId(18)] rebuilt : SymbolId(0): [] @@ -41305,6 +47603,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "I2", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Bindings mismatch: after transform: ScopeId(2): ["T", "x"] rebuilt : ScopeId(2): ["x"] @@ -41337,6 +47638,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "I2", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Bindings mismatch: after transform: ScopeId(2): ["T", "x", "y"] rebuilt : ScopeId(2): ["x", "y"] @@ -41369,6 +47673,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "I2", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Bindings mismatch: after transform: ScopeId(2): ["T", "U", "x", "y"] rebuilt : ScopeId(2): ["x", "y"] @@ -41401,6 +47708,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "I2", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] Bindings mismatch: after transform: ScopeId(2): ["T", "U", "x", "y"] rebuilt : ScopeId(2): ["x", "y"] @@ -41433,6 +47743,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "C", "I", "I2", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] rebuilt : ScopeId(0): ["B", "C", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18)] Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] @@ -41462,6 +47775,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "C", "D", "I", "I2", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5c", "foo6c", "foo8", "foo9"] rebuilt : ScopeId(0): ["B", "C", "D", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5c", "foo6c", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22)] Bindings mismatch: after transform: ScopeId(1): ["T", "U"] rebuilt : ScopeId(1): [] @@ -41497,6 +47813,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "C", "D", "Five", "Four", "I", "I2", "One", "Six", "Three", "Two", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5c", "foo6c", "foo8", "foo9"] rebuilt : ScopeId(0): ["B", "C", "D", "One", "Two", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5c", "foo6c", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(9), ScopeId(11), ScopeId(13), ScopeId(15), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24)] Bindings mismatch: after transform: ScopeId(7): ["T", "U"] rebuilt : ScopeId(3): [] @@ -41535,6 +47854,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "C", "I", "I2", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo8", "foo9"] rebuilt : ScopeId(0): ["B", "C", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20)] Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] @@ -41564,6 +47886,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "C", "I", "I2", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] rebuilt : ScopeId(0): ["B", "C", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo15", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19)] Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] @@ -41593,6 +47918,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "C", "I", "I2", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] rebuilt : ScopeId(0): ["B", "C", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18)] Bindings mismatch: after transform: ScopeId(1): ["U", "V"] rebuilt : ScopeId(1): [] @@ -41622,6 +47950,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "C", "I", "I2", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] rebuilt : ScopeId(0): ["B", "C", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18)] Bindings mismatch: after transform: ScopeId(1): ["U"] rebuilt : ScopeId(1): [] @@ -41648,6 +47979,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "C", "I", "I2", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] rebuilt : ScopeId(0): ["B", "C", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18)] Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] @@ -41674,6 +48008,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "C", "I", "I2", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] rebuilt : ScopeId(0): ["B", "C", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18)] Bindings mismatch: after transform: ScopeId(1): ["T", "U"] rebuilt : ScopeId(1): [] @@ -41700,6 +48037,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["B", "C", "I", "I2", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] rebuilt : ScopeId(0): ["B", "C", "a", "b", "foo10", "foo11", "foo12", "foo12b", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18)] Bindings mismatch: after transform: ScopeId(1): ["T", "U"] rebuilt : ScopeId(1): [] @@ -41726,6 +48066,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "PA", "PB", "a", "b", "foo1", "foo10", "foo11", "foo11b", "foo11c", "foo12", "foo13", "foo14", "foo15", "foo16", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo5d", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "PA", "PB", "a", "b", "foo1", "foo10", "foo11", "foo11b", "foo11c", "foo12", "foo13", "foo14", "foo15", "foo16", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo5d", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69), ScopeId(70), ScopeId(71), ScopeId(72), ScopeId(73), ScopeId(74), ScopeId(75)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(3): [] @@ -41755,6 +48098,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "Base", "C", "Derived", "I", "PA", "PB", "a", "b", "foo1", "foo10", "foo11", "foo11b", "foo11c", "foo12", "foo13", "foo14", "foo15", "foo16", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo5d", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "Base", "C", "Derived", "PA", "PB", "a", "b", "foo1", "foo10", "foo11", "foo11b", "foo11c", "foo12", "foo13", "foo14", "foo15", "foo16", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo5d", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69), ScopeId(70), ScopeId(71), ScopeId(72), ScopeId(73), ScopeId(74), ScopeId(75), ScopeId(76), ScopeId(77)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30)] Bindings mismatch: after transform: ScopeId(5): ["T"] rebuilt : ScopeId(5): [] @@ -41790,6 +48136,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "PA", "PB", "a", "b", "foo1", "foo10", "foo11", "foo11b", "foo11c", "foo12", "foo13", "foo14", "foo15", "foo16", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo5d", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "PA", "PB", "a", "b", "foo1", "foo10", "foo11", "foo11b", "foo11c", "foo12", "foo13", "foo14", "foo15", "foo16", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo5d", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69), ScopeId(70), ScopeId(71), ScopeId(72), ScopeId(73), ScopeId(74), ScopeId(75)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(3): [] @@ -41819,6 +48168,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "a", "b", "foo10", "foo12", "foo13", "foo14", "foo2", "foo3", "foo6", "foo7", "foo8"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo10", "foo12", "foo13", "foo14", "foo2", "foo3", "foo6", "foo7", "foo8"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(3): [] @@ -41842,6 +48194,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "PA", "PB", "a", "b", "foo1", "foo10", "foo11", "foo11b", "foo11c", "foo12", "foo13", "foo14", "foo15", "foo16", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo5d", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "PA", "PB", "a", "b", "foo1", "foo10", "foo11", "foo11b", "foo11c", "foo12", "foo13", "foo14", "foo15", "foo16", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo5d", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69), ScopeId(70), ScopeId(71), ScopeId(72), ScopeId(73), ScopeId(74), ScopeId(75)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(3): [] @@ -41868,7 +48223,10 @@ after transform: SymbolId(8): [ReferenceId(13), ReferenceId(14), ReferenceId(34) rebuilt : SymbolId(6): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithPrivates2.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +Bindings mismatch: after transform: ScopeId(1): ["T"] rebuilt : ScopeId(1): [] Bindings mismatch: @@ -41885,6 +48243,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "a", "b", "foo1", "foo10", "foo11", "foo12", "foo13", "foo14", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(3): [] @@ -41908,6 +48269,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "I", "PA", "PB", "a", "b", "foo1", "foo10", "foo11", "foo11b", "foo11c", "foo12", "foo13", "foo14", "foo15", "foo16", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo5d", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "C", "PA", "PB", "a", "b", "foo1", "foo10", "foo11", "foo11b", "foo11c", "foo12", "foo13", "foo14", "foo15", "foo16", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo5d", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69), ScopeId(70), ScopeId(71), ScopeId(72), ScopeId(73), ScopeId(74), ScopeId(75)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28)] Bindings mismatch: after transform: ScopeId(3): ["T"] rebuilt : ScopeId(3): [] @@ -41937,6 +48301,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "Base", "C", "Derived", "I", "PA", "PB", "a", "b", "foo1", "foo10", "foo11", "foo11b", "foo11c", "foo12", "foo13", "foo14", "foo15", "foo16", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo5d", "foo6", "foo7", "foo8", "foo9"] rebuilt : ScopeId(0): ["A", "B", "Base", "C", "Derived", "PA", "PB", "a", "b", "foo1", "foo10", "foo11", "foo11b", "foo11c", "foo12", "foo13", "foo14", "foo15", "foo16", "foo1b", "foo1c", "foo2", "foo3", "foo4", "foo5", "foo5b", "foo5c", "foo5d", "foo6", "foo7", "foo8", "foo9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36), ScopeId(37), ScopeId(38), ScopeId(39), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(48), ScopeId(49), ScopeId(50), ScopeId(51), ScopeId(52), ScopeId(53), ScopeId(54), ScopeId(55), ScopeId(56), ScopeId(57), ScopeId(58), ScopeId(59), ScopeId(60), ScopeId(61), ScopeId(62), ScopeId(63), ScopeId(64), ScopeId(65), ScopeId(66), ScopeId(67), ScopeId(68), ScopeId(69), ScopeId(70), ScopeId(71), ScopeId(72), ScopeId(73), ScopeId(74), ScopeId(75), ScopeId(76), ScopeId(77)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30)] Bindings mismatch: after transform: ScopeId(5): ["T"] rebuilt : ScopeId(5): [] @@ -41969,7 +48336,10 @@ after transform: SymbolId(10): [ReferenceId(20), ReferenceId(21), ReferenceId(43 rebuilt : SymbolId(8): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAndMemberIdentity/primtiveTypesAreIdentical.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] +Bindings mismatch: after transform: ScopeId(17): ["A", "E"] rebuilt : ScopeId(6): ["E"] Scope flags mismatch: @@ -41986,6 +48356,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeAn semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "C2", "I", "I2", "foo1", "foo2", "foo3"] rebuilt : ScopeId(0): ["C", "C2", "foo1", "foo2", "foo3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(14), ScopeId(27), ScopeId(37), ScopeId(46)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(6), ScopeId(11)] Bindings mismatch: after transform: ScopeId(3): ["T", "x"] rebuilt : ScopeId(1): ["x"] @@ -41995,9 +48368,15 @@ rebuilt : ScopeId(2): ["x"] Bindings mismatch: after transform: ScopeId(7): ["T", "U", "inner", "inner2", "x", "y"] rebuilt : ScopeId(3): ["inner", "inner2", "x", "y"] +Scope children mismatch: +after transform: ScopeId(7): [ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13)] +rebuilt : ScopeId(3): [ScopeId(4), ScopeId(5)] Bindings mismatch: after transform: ScopeId(14): ["T"] rebuilt : ScopeId(6): [] +Scope children mismatch: +after transform: ScopeId(14): [ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26)] +rebuilt : ScopeId(6): [ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] Bindings mismatch: after transform: ScopeId(20): ["U", "a", "x"] rebuilt : ScopeId(8): ["a", "x"] @@ -42010,6 +48389,9 @@ rebuilt : ScopeId(10): ["x"] Bindings mismatch: after transform: ScopeId(27): ["T"] rebuilt : ScopeId(11): [] +Scope children mismatch: +after transform: ScopeId(27): [ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36)] +rebuilt : ScopeId(11): [ScopeId(12), ScopeId(13), ScopeId(14)] Bindings mismatch: after transform: ScopeId(33): ["U", "a", "x"] rebuilt : ScopeId(13): ["a", "x"] @@ -42024,6 +48406,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeIn semantic error: Bindings mismatch: after transform: ScopeId(0): ["Array", "a", "b", "x"] rebuilt : ScopeId(0): ["x"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(4): Some("a") rebuilt : ReferenceId(0): None @@ -42038,11 +48423,17 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeIn semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bar", "Foo", "FooA", "FooBar", "InferA", "Item", "x1", "x2"] rebuilt : ScopeId(0): ["x1", "x2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(7), ScopeId(8)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallTypeArgumentInference.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "I", "c", "foo", "foo2", "foo2b", "i", "r", "r10", "r11", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9"] rebuilt : ScopeId(0): ["C", "c", "foo", "foo2", "foo2b", "i", "r", "r10", "r11", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(14)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] Bindings mismatch: after transform: ScopeId(1): ["T", "t"] rebuilt : ScopeId(1): ["t"] @@ -42086,6 +48477,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeIn semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "C", "Derived", "Derived2", "I", "b", "c", "d1", "d2", "foo", "foo2", "foo2b", "foo2c", "i", "r", "r10", "r11", "r2", "r3", "r3b", "r4", "r5", "r6", "r7", "r8", "r8b", "r9"] rebuilt : ScopeId(0): ["Base", "C", "Derived", "Derived2", "b", "c", "d1", "d2", "foo", "foo2", "foo2b", "foo2c", "i", "r", "r10", "r11", "r2", "r3", "r3b", "r4", "r5", "r6", "r7", "r8", "r8b", "r9"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(18)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] Bindings mismatch: after transform: ScopeId(4): ["T", "t"] rebuilt : ScopeId(4): ["t"] @@ -42138,7 +48532,10 @@ after transform: ScopeId(1): ["T", "U", "cb", "u"] rebuilt : ScopeId(1): ["cb", "u"] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericCallWithFunctionTypedArguments4.ts -semantic error: Bindings mismatch: +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +Bindings mismatch: after transform: ScopeId(5): ["T", "U", "cb", "u"] rebuilt : ScopeId(3): ["cb", "u"] Symbol reference IDs mismatch: @@ -42186,6 +48583,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeIn semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "Derived", "Derived2", "I", "f", "f2", "i", "r", "r2", "r3", "r4"] rebuilt : ScopeId(0): ["Base", "Derived", "Derived2", "f", "f2", "i", "r", "r2", "r3", "r4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(7)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] Bindings mismatch: after transform: ScopeId(4): ["T", "U", "a"] rebuilt : ScopeId(4): ["a"] @@ -42223,6 +48623,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeIn semantic error: Bindings mismatch: after transform: ScopeId(0): ["Base", "Derived", "I", "f", "f2", "f3", "i", "r", "r2", "r3", "r4", "r5", "r6", "r7"] rebuilt : ScopeId(0): ["Base", "Derived", "f", "f2", "f3", "i", "r", "r2", "r3", "r4", "r5", "r6", "r7"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] Bindings mismatch: after transform: ScopeId(3): ["T", "r", "x"] rebuilt : ScopeId(3): ["r", "x"] @@ -42316,21 +48719,36 @@ 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) +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"] 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): [] Symbol reference IDs mismatch: after transform: SymbolId(1): [ReferenceId(0), ReferenceId(3)] rebuilt : SymbolId(2): [ReferenceId(2)] @@ -42423,6 +48841,9 @@ rebuilt : ScopeId(9): ["_Interface", "c1", "d1", "g", "g2", "r", "r2"] Scope flags mismatch: after transform: ScopeId(9): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(9): ScopeFlags(Function) +Scope children mismatch: +after transform: ScopeId(9): [ScopeId(10), ScopeId(12)] +rebuilt : ScopeId(9): [] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(8), ReferenceId(18), ReferenceId(19), ReferenceId(40), ReferenceId(50), ReferenceId(56)] rebuilt : SymbolId(0): [] @@ -42443,16 +48864,25 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeIn semantic error: Bindings mismatch: after transform: ScopeId(0): ["AssignAction", "Config", "LowInfer", "Meta", "PartialAssigner", "PropertyAssigner"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/genericContextualTypes3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AssignAction", "Config", "LowInfer", "Meta", "PartialAssigner", "PropertyAssigner"] rebuilt : ScopeId(0): [] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1)] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/intraExpressionInferencesJsx.tsx semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "AnimatedViewProps", "Animations", "B", "C", "Component", "Foo", "Props", "StyleParam", "_jsxFileName", "_reactJsxRuntime"] rebuilt : ScopeId(0): ["Component", "Foo", "_jsxFileName", "_reactJsxRuntime"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13)] Bindings mismatch: after transform: ScopeId(10): ["T", "animations", "style"] rebuilt : ScopeId(1): ["animations", "style"] @@ -42467,11 +48897,17 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeIn semantic error: Bindings mismatch: after transform: ScopeId(0): ["X", "a", "b", "c"] rebuilt : ScopeId(0): ["a", "b", "c"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/keyofInferenceLowerPriorityThanReturn.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["BookDef", "BookReq", "MakeTable", "bookTable", "f", "insertOnConflictDoNothing"] rebuilt : ScopeId(0): ["bookTable", "f", "insertOnConflictDoNothing"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(7), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] Bindings mismatch: after transform: ScopeId(11): ["Def", "Req", "_conflictTarget", "_table"] rebuilt : ScopeId(1): ["_conflictTarget", "_table"] @@ -42486,6 +48922,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeIn semantic error: Bindings mismatch: after transform: ScopeId(0): ["Bear", "ITest", "Man", "Maybe", "Pig", "Y", "assign", "baz1", "createTest", "createTestAsync", "destructure", "foo", "foo1", "func", "get", "isNonVoid", "isVoid", "mbp", "res", "result", "value", "x1", "x2", "y"] rebuilt : ScopeId(0): ["assign", "baz1", "createTest", "createTestAsync", "destructure", "foo", "foo1", "func", "get", "isNonVoid", "isVoid", "res", "result", "value", "x1", "x2", "y"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(10), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(9), ScopeId(12), ScopeId(13), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18)] Bindings mismatch: after transform: ScopeId(2): ["a", "haveValue", "haveY", "r", "something"] rebuilt : ScopeId(1): ["haveValue", "haveY", "something"] @@ -42523,10 +48962,18 @@ Unresolved reference IDs mismatch for "Promise": after transform: [ReferenceId(54), ReferenceId(56)] rebuilt : [ReferenceId(27)] +tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/unionAndIntersectionInference2.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/typeInference/unionAndIntersectionInference3.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["AB", "Bar1", "Bar2", "ComponentClass", "ComponentType", "Foo1", "Foo2", "FunctionComponent", "Maybe", "MyComponent", "Props", "R", "RouteComponentProps", "S", "T", "U", "a", "ab", "b", "f1", "f2", "g", "g1", "g2", "sa", "sx", "x1", "x2", "y1", "y2", "z"] rebuilt : ScopeId(0): ["g", "x1", "x2", "y1", "y2", "z"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(8), ScopeId(10), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24)] +rebuilt : ScopeId(0): [ScopeId(1)] Bindings mismatch: after transform: ScopeId(3): ["R", "S", "U", "com"] rebuilt : ScopeId(1): ["com"] @@ -42582,20 +49029,34 @@ Unresolved references mismatch: after transform: ["AsyncIterator", "Component", "Iterable", "Iterator", "Omit", "Promise", "PromiseLike", "concatMaybe", "foo", "foo1", "foo2", "true", "withRouter"] rebuilt : ["MyComponent", "a", "ab", "b", "concatMaybe", "f1", "f2", "foo", "foo1", "foo2", "g1", "g2", "sa", "sx", "withRouter"] +tasks/coverage/typescript/tests/cases/conformance/types/typeRelationships/widenedTypes/strictNullChecksNoWidening.ts +semantic error: Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] + tasks/coverage/typescript/tests/cases/conformance/types/union/contextualTypeWithUnionTypeCallSignatures.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IWithCallSignatures", "IWithCallSignatures2", "IWithCallSignatures3", "IWithCallSignatures4", "IWithNoCallSignatures", "x", "x2", "x3", "x4"] rebuilt : ScopeId(0): ["x", "x2", "x3", "x4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5)] tasks/coverage/typescript/tests/cases/conformance/types/union/contextualTypeWithUnionTypeIndexSignatures.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["IWithNoNumberIndexSignature", "IWithNoStringIndexSignature", "IWithNumberIndexSignature1", "IWithNumberIndexSignature2", "IWithStringIndexSignature1", "IWithStringIndexSignature2", "SomeType", "SomeType2", "x", "x2", "x3", "x4"] rebuilt : ScopeId(0): ["x", "x2", "x3", "x4"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] tasks/coverage/typescript/tests/cases/conformance/types/union/contextualTypeWithUnionTypeMembers.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["I1", "I11", "I2", "I21", "arrayI1OrI2", "arrayOrI11OrI21", "i1", "i11", "i11Ori21", "i1Ori2", "i2", "i21"] rebuilt : ScopeId(0): ["arrayI1OrI2", "arrayOrI11OrI21", "i1", "i11", "i11Ori21", "i1Ori2", "i2", "i21"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(5), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(31), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(36)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24)] Unresolved references mismatch: after transform: ["Array"] rebuilt : [] @@ -42604,6 +49065,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/union/discriminatedUnion semantic error: Bindings mismatch: after transform: ScopeId(0): ["Correct", "Err", "SomeReturnType", "example"] rebuilt : ScopeId(0): ["example"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4)] +rebuilt : ScopeId(0): [ScopeId(1)] Unresolved references mismatch: after transform: ["true", "undefined"] rebuilt : ["undefined"] @@ -42612,6 +49076,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/union/unionTypeCallSigna semantic error: Bindings mismatch: after transform: ScopeId(0): ["A", "B", "C", "a1", "a2", "a3", "f1", "f2", "f3", "n1", "n2", "n3", "s1", "s2", "s3"] rebuilt : ScopeId(0): ["a1", "a2", "a3", "f1", "f2", "f3", "n1", "n2", "n3", "s1", "s2", "s3"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] +rebuilt : ScopeId(0): [] Unresolved references mismatch: after transform: ["Date"] rebuilt : [] @@ -42643,6 +49110,9 @@ tasks/coverage/typescript/tests/cases/conformance/types/union/unionTypeCallSigna semantic error: Bindings mismatch: after transform: ScopeId(0): ["Callable", "f", "result"] rebuilt : ScopeId(0): ["result"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1)] +rebuilt : ScopeId(0): [] Reference symbol mismatch: after transform: ReferenceId(4): Some("f") rebuilt : ReferenceId(0): None @@ -42659,11 +49129,20 @@ tasks/coverage/typescript/tests/cases/conformance/types/union/unionTypeReduction semantic error: Bindings mismatch: after transform: ScopeId(0): ["I2", "I3", "e1", "e2", "i2", "i3", "r1", "r2"] rebuilt : ScopeId(0): ["e1", "e2", "i2", "i3", "r1", "r2"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] +rebuilt : ScopeId(0): [] tasks/coverage/typescript/tests/cases/conformance/types/uniqueSymbol/uniqueSymbols.ts semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "C0", "C1", "Context", "I", "L", "N", "arrayOfConstCall", "asyncFuncReturnConstCall", "asyncFuncReturnLetCall", "asyncFuncReturnVarCall", "asyncGenFuncYieldConstCall", "asyncGenFuncYieldLetCall", "asyncGenFuncYieldVarCall", "c", "ce0", "constCall", "constInitToCReadonlyCall", "constInitToCReadonlyCallWithIndexedAccess", "constInitToCReadonlyCallWithTypeQuery", "constInitToCReadonlyStaticCall", "constInitToCReadonlyStaticCallWithTypeQuery", "constInitToCReadonlyStaticType", "constInitToCReadonlyStaticTypeAndCall", "constInitToCReadonlyStaticTypeAndCallWithTypeQuery", "constInitToCReadonlyStaticTypeWithTypeQuery", "constInitToCReadwriteCall", "constInitToCReadwriteCallWithIndexedAccess", "constInitToCReadwriteCallWithTypeQuery", "constInitToCReadwriteStaticCall", "constInitToCReadwriteStaticCallWithTypeQuery", "constInitToConstCall", "constInitToConstCallWithTypeQuery", "constInitToConstDeclAmbient", "constInitToConstDeclAmbientWithTypeQuery", "constInitToIReadonlyType", "constInitToIReadonlyTypeWithIndexedAccess", "constInitToIReadonlyTypeWithTypeQuery", "constInitToLReadonlyNestedType", "constInitToLReadonlyNestedTypeWithIndexedAccess", "constInitToLReadonlyNestedTypeWithTypeQuery", "constInitToLReadonlyType", "constInitToLReadonlyTypeWithIndexedAccess", "constInitToLReadonlyTypeWithTypeQuery", "constInitToLetCall", "constInitToVarCall", "constType", "constTypeAndCall", "fromAny", "funcInferredReturnType", "funcReturnConstCall", "funcReturnConstCallWithTypeQuery", "funcReturnLetCall", "funcReturnVarCall", "genFuncYieldConstCall", "genFuncYieldConstCallWithTypeQuery", "genFuncYieldLetCall", "genFuncYieldVarCall", "i", "l", "letCall", "letInitToConstCall", "letInitToConstDeclAmbient", "letInitToLetCall", "letInitToVarCall", "o", "o2", "o3", "o4", "promiseForConstCall", "s", "varCall", "varInitToConstCall", "varInitToConstDeclAmbient", "varInitToLetCall", "varInitToVarCall"] rebuilt : ScopeId(0): ["C", "C0", "C1", "arrayOfConstCall", "asyncFuncReturnConstCall", "asyncFuncReturnLetCall", "asyncFuncReturnVarCall", "asyncGenFuncYieldConstCall", "asyncGenFuncYieldLetCall", "asyncGenFuncYieldVarCall", "ce0", "constCall", "constInitToCReadonlyCall", "constInitToCReadonlyCallWithIndexedAccess", "constInitToCReadonlyCallWithTypeQuery", "constInitToCReadonlyStaticCall", "constInitToCReadonlyStaticCallWithTypeQuery", "constInitToCReadonlyStaticType", "constInitToCReadonlyStaticTypeAndCall", "constInitToCReadonlyStaticTypeAndCallWithTypeQuery", "constInitToCReadonlyStaticTypeWithTypeQuery", "constInitToCReadwriteCall", "constInitToCReadwriteCallWithIndexedAccess", "constInitToCReadwriteCallWithTypeQuery", "constInitToCReadwriteStaticCall", "constInitToCReadwriteStaticCallWithTypeQuery", "constInitToConstCall", "constInitToConstCallWithTypeQuery", "constInitToConstDeclAmbient", "constInitToConstDeclAmbientWithTypeQuery", "constInitToIReadonlyType", "constInitToIReadonlyTypeWithIndexedAccess", "constInitToIReadonlyTypeWithTypeQuery", "constInitToLReadonlyNestedType", "constInitToLReadonlyNestedTypeWithIndexedAccess", "constInitToLReadonlyNestedTypeWithTypeQuery", "constInitToLReadonlyType", "constInitToLReadonlyTypeWithIndexedAccess", "constInitToLReadonlyTypeWithTypeQuery", "constInitToLetCall", "constInitToVarCall", "constTypeAndCall", "fromAny", "funcInferredReturnType", "funcReturnConstCall", "funcReturnConstCallWithTypeQuery", "funcReturnLetCall", "funcReturnVarCall", "genFuncYieldConstCall", "genFuncYieldConstCallWithTypeQuery", "genFuncYieldLetCall", "genFuncYieldVarCall", "letCall", "letInitToConstCall", "letInitToConstDeclAmbient", "letInitToLetCall", "letInitToVarCall", "o2", "o3", "o4", "promiseForConstCall", "varCall", "varInitToConstCall", "varInitToConstDeclAmbient", "varInitToLetCall", "varInitToVarCall"] +Scope children mismatch: +after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23), ScopeId(24), ScopeId(25), ScopeId(26), ScopeId(27), ScopeId(33), ScopeId(34), ScopeId(40), ScopeId(41), ScopeId(42), ScopeId(43), ScopeId(44), ScopeId(45), ScopeId(46), ScopeId(47), ScopeId(50)] +rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19), ScopeId(20), ScopeId(21), ScopeId(27), ScopeId(28), ScopeId(29), ScopeId(30), ScopeId(31), ScopeId(32), ScopeId(33), ScopeId(34), ScopeId(35), ScopeId(38)] +Scope children mismatch: +after transform: ScopeId(50): [ScopeId(51)] +rebuilt : ScopeId(38): [] Symbol reference IDs mismatch: after transform: SymbolId(0): [ReferenceId(4), ReferenceId(8), ReferenceId(12), ReferenceId(16), ReferenceId(17), ReferenceId(20), ReferenceId(23), ReferenceId(24), ReferenceId(25), ReferenceId(29), ReferenceId(30), ReferenceId(31), ReferenceId(34), ReferenceId(83), ReferenceId(84)] rebuilt : SymbolId(0): [ReferenceId(4), ReferenceId(8), ReferenceId(12), ReferenceId(16), ReferenceId(18), ReferenceId(21), ReferenceId(22), ReferenceId(25), ReferenceId(26), ReferenceId(29), ReferenceId(61), ReferenceId(62)] diff --git a/tasks/coverage/src/driver.rs b/tasks/coverage/src/driver.rs index 1755dcafc04f9..59f8ec93fa3ef 100644 --- a/tasks/coverage/src/driver.rs +++ b/tasks/coverage/src/driver.rs @@ -43,6 +43,10 @@ impl CompilerInterface for Driver { } } + fn semantic_child_scope_ids(&self) -> bool { + true + } + fn transform_options(&self) -> Option { self.transform.clone() } diff --git a/tasks/transform_conformance/babel.snap.md b/tasks/transform_conformance/babel.snap.md index 50cc5b128016e..fb18ba6fc1254 100644 --- a/tasks/transform_conformance/babel.snap.md +++ b/tasks/transform_conformance/babel.snap.md @@ -1,6 +1,6 @@ commit: 3bcfee23 -Passed: 314/1021 +Passed: 309/1021 # All Passed: * babel-plugin-transform-optional-catch-binding @@ -2145,7 +2145,7 @@ failed to resolve query: failed to parse the rest of input: ...'' -# babel-plugin-transform-typescript (46/152) +# babel-plugin-transform-typescript (41/152) * cast/as-expression/input.ts x Unresolved references mismatch: | after transform: ["T", "x"] @@ -2192,29 +2192,59 @@ TS(18010) | rebuilt : ["D"] +* class/methods/input.ts + x Scope children mismatch: + | after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), + | ScopeId(5)] + | rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] + + +* class/private-method-override/input.ts + x Scope children mismatch: + | after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] + | rebuilt : ScopeId(1): [ScopeId(2)] + + * declarations/const-enum/input.ts x Bindings mismatch: | after transform: ScopeId(0): ["E"] | rebuilt : ScopeId(0): [] + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1)] + | rebuilt : ScopeId(0): [] + * declarations/erased/input.ts x Bindings mismatch: | after transform: ScopeId(0): ["E", "I", "M", "N", "T", "m", "x"] | rebuilt : ScopeId(0): [] + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), + | ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8)] + | rebuilt : ScopeId(0): [] + * declarations/export-declare-enum/input.ts x Bindings mismatch: | after transform: ScopeId(0): ["A"] | rebuilt : ScopeId(0): [] + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1)] + | rebuilt : ScopeId(0): [] + * declarations/nested-namespace/input.mjs x Bindings mismatch: | after transform: ScopeId(0): ["P"] | rebuilt : ScopeId(0): [] + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1)] + | rebuilt : ScopeId(0): [] + * enum/boolean-value/input.ts x Bindings mismatch: @@ -2670,6 +2700,10 @@ TS(18010) * exports/declare-namespace/input.ts + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] + | rebuilt : ScopeId(0): [ScopeId(1)] + x Symbol flags mismatch: | after transform: SymbolId(0): SymbolFlags(Export | Class | NameSpaceModule | | Ambient) @@ -2685,6 +2719,11 @@ TS(18010) * exports/declare-shadowed/input.ts + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), + | ScopeId(4)] + | rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + x Unresolved references mismatch: | after transform: ["Signal", "Signal2"] | rebuilt : [] @@ -2697,6 +2736,14 @@ TS(18010) | "I", "II2", "II3", "M", "N", "T", "foo", "m", "x"] | rebuilt : ScopeId(0): ["BB", "BB2", "C2", "foo"] + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), + | ScopeId(4), ScopeId(5), ScopeId(6), ScopeId(7), ScopeId(8), ScopeId(9), + | ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), + | ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18)] + | rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), + | ScopeId(4), ScopeId(5)] + x Bindings mismatch: | after transform: ScopeId(12): ["BB", "K"] | rebuilt : ScopeId(2): ["BB"] @@ -2766,6 +2813,12 @@ TS(18010) | rebuilt : ["Bar", "E", "x"] +* exports/default-function/input.ts + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] + | rebuilt : ScopeId(0): [ScopeId(1)] + + * exports/export-const-enums/input.ts x Scope flags mismatch: | after transform: ScopeId(1): ScopeFlags(StrictMode) @@ -2793,6 +2846,10 @@ TS(18010) | after transform: ScopeId(0): ["A"] | rebuilt : ScopeId(0): [] + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1)] + | rebuilt : ScopeId(0): [] + * exports/export=/input.ts ! `export = ;` is only supported when compiling modules to CommonJS. @@ -2822,12 +2879,20 @@ TS(18010) | after transform: ScopeId(0): ["A", "I"] | rebuilt : ScopeId(0): [] + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] + | rebuilt : ScopeId(0): [] + * exports/issue-9916-1/input.ts x Bindings mismatch: | after transform: ScopeId(0): ["PromiseRejectCb", "PromiseResolveCb", "a"] | rebuilt : ScopeId(0): ["a"] + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] + | rebuilt : ScopeId(0): [] + x Unresolved references mismatch: | after transform: ["PromiseLike"] | rebuilt : [] @@ -2838,6 +2903,10 @@ TS(18010) | after transform: ScopeId(0): ["PromiseRejectCb", "PromiseResolveCb"] | rebuilt : ScopeId(0): [] + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] + | rebuilt : ScopeId(0): [] + x Unresolved references mismatch: | after transform: ["PromiseLike"] | rebuilt : [] @@ -2848,6 +2917,10 @@ TS(18010) | after transform: ScopeId(0): ["PromiseRejectCb", "PromiseResolveCb", "a"] | rebuilt : ScopeId(0): ["a"] + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] + | rebuilt : ScopeId(0): [] + x Unresolved references mismatch: | after transform: ["PromiseLike"] | rebuilt : [] @@ -2859,6 +2932,18 @@ TS(18010) | rebuilt : SymbolId(0): [] +* function/overloads/input.ts + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] + | rebuilt : ScopeId(0): [ScopeId(1)] + + +* function/overloads-exports/input.mjs + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] + | rebuilt : ScopeId(0): [ScopeId(1)] + + * function/parameters/input.ts x Bindings mismatch: | after transform: ScopeId(1): ["T", "x", "y"] @@ -2926,6 +3011,10 @@ TS(18010) | "H", "Iface", "x", "y"] | rebuilt : ScopeId(0): ["A", "Class", "x", "y"] + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] + | rebuilt : ScopeId(0): [ScopeId(1)] + * imports/elision-qualifiedname/input.ts x Bindings mismatch: @@ -3122,6 +3211,10 @@ TS(18010) | rebuilt : ScopeId(0): ["AliasModule", "b", "babel", "bar", "baz", | "node", "some", "str"] + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1)] + | rebuilt : ScopeId(0): [] + x Reference symbol mismatch: | after transform: ReferenceId(3): Some("AliasModule") | rebuilt : ReferenceId(2): Some("AliasModule") @@ -3693,6 +3786,11 @@ TS(18010) | after transform: ScopeId(1): ["B", "_N", "e", "v"] | rebuilt : ScopeId(1): ["_N"] + x Scope children mismatch: + | after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4), + | ScopeId(5)] + | rebuilt : ScopeId(1): [] + * namespace/declare-global-nested-namespace/input.ts x Missing SymbolId: X @@ -3707,6 +3805,10 @@ TS(18010) | after transform: ScopeId(0): ["X", "global", "i18n"] | rebuilt : ScopeId(0): ["X", "i18n"] + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4)] + | rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2)] + x Binding symbols mismatch: | after transform: ScopeId(3): [SymbolId(4), SymbolId(6)] | rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] @@ -3801,6 +3903,10 @@ TS(18010) | after transform: ScopeId(1): ["_a", "b", "c", "d"] | rebuilt : ScopeId(1): ["_a", "c"] + x Scope children mismatch: + | after transform: ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] + | rebuilt : ScopeId(1): [ScopeId(2)] + x Binding symbols mismatch: | after transform: ScopeId(3): [SymbolId(3), SymbolId(26)] | rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] @@ -3809,10 +3915,19 @@ TS(18010) | after transform: ScopeId(6): ["_WithTypes", "a", "b", "c", "d"] | rebuilt : ScopeId(3): ["_WithTypes", "d"] + x Scope children mismatch: + | after transform: ScopeId(6): [ScopeId(7), ScopeId(9), ScopeId(11), + | ScopeId(12)] + | rebuilt : ScopeId(3): [ScopeId(4)] + x Binding symbols mismatch: | after transform: ScopeId(12): [SymbolId(33)] | rebuilt : ScopeId(4): [SymbolId(8)] + x Scope children mismatch: + | after transform: ScopeId(12): [ScopeId(13)] + | rebuilt : ScopeId(4): [] + x Binding symbols mismatch: | after transform: ScopeId(14): [SymbolId(15), SymbolId(17), SymbolId(19), | SymbolId(21), SymbolId(23), SymbolId(34)] @@ -3875,6 +3990,10 @@ TS(18010) | after transform: ScopeId(0): ["Platform"] | rebuilt : ScopeId(0): [] + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1)] + | rebuilt : ScopeId(0): [] + x Unresolved references mismatch: | after transform: ["Platform"] | rebuilt : [] @@ -4295,6 +4414,10 @@ TS(18010) | after transform: ScopeId(1): ["B", "G", "_A"] | rebuilt : ScopeId(1): ["G", "_A"] + x Scope children mismatch: + | after transform: ScopeId(1): [ScopeId(2), ScopeId(4)] + | rebuilt : ScopeId(1): [ScopeId(2)] + x Bindings mismatch: | after transform: ScopeId(4): ["G", "H"] | rebuilt : ScopeId(2): ["G"] @@ -4591,6 +4714,10 @@ TS(18010) | after transform: ScopeId(0): ["A"] | rebuilt : ScopeId(0): [] + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1)] + | rebuilt : ScopeId(0): [] + x Reference symbol mismatch: | after transform: ReferenceId(0): Some("A") | rebuilt : ReferenceId(0): None diff --git a/tasks/transform_conformance/oxc.snap.md b/tasks/transform_conformance/oxc.snap.md index 567c492f4bcec..2755bc28fb1f9 100644 --- a/tasks/transform_conformance/oxc.snap.md +++ b/tasks/transform_conformance/oxc.snap.md @@ -102,6 +102,10 @@ Passed: 10/39 | after transform: ScopeId(0): ["A", "ReactiveMarkerSymbol"] | rebuilt : ScopeId(0): [] + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1)] + | rebuilt : ScopeId(0): [] + * enum-member-reference/input.ts x Missing ReferenceId: Foo @@ -144,6 +148,12 @@ Passed: 10/39 | rebuilt : ScopeId(0): ["Bar", "Foo", "Func", "Im", "Name", "Ok", | "T"] + x 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)] + x Binding symbols mismatch: | after transform: ScopeId(5): [SymbolId(8), SymbolId(10)] | rebuilt : ScopeId(3): [SymbolId(6), SymbolId(7)] @@ -178,6 +188,10 @@ Passed: 10/39 * redeclarations/input.ts + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] + | rebuilt : ScopeId(0): [] + x Symbol flags mismatch: | after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | | ConstVariable | Export | Import) @@ -512,6 +526,10 @@ Passed: 10/39 * refresh/generates-valid-signature-for-exotic-ways-to-call-hooks/input.jsx x Missing ScopeId + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1)] + | rebuilt : ScopeId(0): [ScopeId(1), ScopeId(3)] + x Symbol reference IDs mismatch: | after transform: SymbolId(10): [ReferenceId(17), ReferenceId(18), | ReferenceId(20)] @@ -550,6 +568,11 @@ Passed: 10/39 x Missing ScopeId + x Scope children mismatch: + | after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(4)] + | rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), + | ScopeId(5), ScopeId(6)] + x Symbol reference IDs mismatch: | after transform: SymbolId(7): [ReferenceId(9), ReferenceId(10), | ReferenceId(12)] diff --git a/tasks/transform_conformance/src/driver.rs b/tasks/transform_conformance/src/driver.rs index b538677d0bcdd..bb290d2c37bc7 100644 --- a/tasks/transform_conformance/src/driver.rs +++ b/tasks/transform_conformance/src/driver.rs @@ -24,6 +24,10 @@ impl CompilerInterface for Driver { false } + fn semantic_child_scope_ids(&self) -> bool { + true + } + fn handle_errors(&mut self, errors: Vec) { self.errors.extend(errors); }