diff --git a/crates/oxc_semantic/src/builder.rs b/crates/oxc_semantic/src/builder.rs index 6bb9ce5592f29..0e101f82cf3ea 100644 --- a/crates/oxc_semantic/src/builder.rs +++ b/crates/oxc_semantic/src/builder.rs @@ -564,32 +564,6 @@ impl<'a> SemanticBuilder<'a> { pub(crate) fn add_redeclare_variable(&mut self, symbol_id: SymbolId, span: Span) { self.symbols.add_redeclaration(symbol_id, span); } - - fn add_export_flag_to_export_identifiers(&mut self, program: &Program<'a>) { - for stmt in &program.body { - if let Statement::ExportDefaultDeclaration(decl) = stmt { - if let ExportDefaultDeclarationKind::Identifier(ident) = &decl.declaration { - self.add_export_flag_to_identifier(ident.name.as_str()); - } - } - if let Statement::ExportNamedDeclaration(decl) = stmt { - for specifier in &decl.specifiers { - if specifier.export_kind.is_value() { - if let Some(name) = specifier.local.identifier_name() { - self.add_export_flag_to_identifier(name.as_str()); - } - } - } - } - } - } - - /// Flag the symbol bound to an identifier in the current scope as exported. - fn add_export_flag_to_identifier(&mut self, name: &str) { - if let Some(symbol_id) = self.scope.get_binding(self.current_scope_id, name) { - self.symbols.union_flag(symbol_id, SymbolFlags::Export); - } - } } impl<'a> Visit<'a> for SemanticBuilder<'a> { @@ -1870,19 +1844,7 @@ impl<'a> SemanticBuilder<'a> { /* cfg */ match kind { - AstKind::ExportDefaultDeclaration(decl) => { - // Only if the declaration has an ID, we mark it as an export - if match &decl.declaration { - ExportDefaultDeclarationKind::FunctionDeclaration(func) => func.id.is_some(), - ExportDefaultDeclarationKind::ClassDeclaration(class) => class.id.is_some(), - ExportDefaultDeclarationKind::TSInterfaceDeclaration(_) => true, - _ => false, - } { - self.current_symbol_flags |= SymbolFlags::Export; - } - } AstKind::ExportNamedDeclaration(decl) => { - self.current_symbol_flags |= SymbolFlags::Export; if decl.export_kind.is_type() { self.current_reference_flags = ReferenceFlags::Type; } @@ -1959,7 +1921,6 @@ impl<'a> SemanticBuilder<'a> { .get(module_declaration.id.name().as_str()) .copied(); self.namespace_stack.push(symbol_id); - self.current_symbol_flags -= SymbolFlags::Export; } AstKind::TSTypeAliasDeclaration(type_alias_declaration) => { type_alias_declaration.bind(self); @@ -2048,16 +2009,10 @@ impl<'a> SemanticBuilder<'a> { #[allow(clippy::single_match)] fn leave_kind(&mut self, kind: AstKind<'a>) { match kind { - AstKind::Program(program) => { - self.add_export_flag_to_export_identifiers(program); - } AstKind::Class(_) => { self.current_node_flags -= NodeFlags::Class; self.class_table_builder.pop_class(); } - AstKind::BindingIdentifier(_) => { - self.current_symbol_flags -= SymbolFlags::Export; - } AstKind::ExportSpecifier(_) => { if !self.current_reference_flags.is_type_only() { self.current_reference_flags = ReferenceFlags::empty(); diff --git a/crates/oxc_semantic/tests/fixtures/oxc/type-declarations/signatures/property-with-type-import.snap b/crates/oxc_semantic/tests/fixtures/oxc/type-declarations/signatures/property-with-type-import.snap index 474ff33a8f848..1efa7be46c83d 100644 --- a/crates/oxc_semantic/tests/fixtures/oxc/type-declarations/signatures/property-with-type-import.snap +++ b/crates/oxc_semantic/tests/fixtures/oxc/type-declarations/signatures/property-with-type-import.snap @@ -1,7 +1,6 @@ --- source: crates/oxc_semantic/tests/main.rs input_file: crates/oxc_semantic/tests/fixtures/oxc/type-declarations/signatures/property-with-type-import.ts -snapshot_kind: text --- [ { @@ -73,7 +72,7 @@ snapshot_kind: text ] }, { - "flags": "SymbolFlags(Export | Interface)", + "flags": "SymbolFlags(Interface)", "id": 2, "name": "A", "node": "TSInterfaceDeclaration", diff --git a/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/default-type.snap b/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/default-type.snap index c502ecdc397cb..3ff25b2dc866b 100644 --- a/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/default-type.snap +++ b/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/default-type.snap @@ -1,7 +1,6 @@ --- source: crates/oxc_semantic/tests/main.rs input_file: crates/oxc_semantic/tests/fixtures/typescript-eslint/export/default-type.ts -snapshot_kind: text --- [ { @@ -19,7 +18,7 @@ snapshot_kind: text "node": "Program", "symbols": [ { - "flags": "SymbolFlags(BlockScopedVariable | ConstVariable | Export | TypeAlias)", + "flags": "SymbolFlags(BlockScopedVariable | ConstVariable | TypeAlias)", "id": 0, "name": "T", "node": "VariableDeclarator(T)", diff --git a/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/default1.snap b/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/default1.snap index 03bc5fd7ed7fc..156a67b0e2326 100644 --- a/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/default1.snap +++ b/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/default1.snap @@ -1,7 +1,6 @@ --- source: crates/oxc_semantic/tests/main.rs input_file: crates/oxc_semantic/tests/fixtures/typescript-eslint/export/default1.ts -snapshot_kind: text --- [ { @@ -19,7 +18,7 @@ snapshot_kind: text "node": "Program", "symbols": [ { - "flags": "SymbolFlags(BlockScopedVariable | Export | Function)", + "flags": "SymbolFlags(BlockScopedVariable | Function)", "id": 0, "name": "f", "node": "Function(f)", diff --git a/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/default2.snap b/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/default2.snap index 6ca5c7e90ce4a..4770d04e5659a 100644 --- a/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/default2.snap +++ b/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/default2.snap @@ -1,7 +1,6 @@ --- source: crates/oxc_semantic/tests/main.rs input_file: crates/oxc_semantic/tests/fixtures/typescript-eslint/export/default2.ts -snapshot_kind: text --- [ { @@ -11,7 +10,7 @@ snapshot_kind: text "node": "Program", "symbols": [ { - "flags": "SymbolFlags(BlockScopedVariable | ConstVariable | Export)", + "flags": "SymbolFlags(BlockScopedVariable | ConstVariable)", "id": 0, "name": "a", "node": "VariableDeclarator(a)", diff --git a/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named-dual.snap b/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named-dual.snap index 8c2292b1c54d0..98d3dbe4c4a4f 100644 --- a/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named-dual.snap +++ b/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named-dual.snap @@ -1,7 +1,6 @@ --- source: crates/oxc_semantic/tests/main.rs input_file: crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named-dual.ts -snapshot_kind: text --- [ { @@ -19,7 +18,7 @@ snapshot_kind: text "node": "Program", "symbols": [ { - "flags": "SymbolFlags(BlockScopedVariable | ConstVariable | Export | TypeAlias)", + "flags": "SymbolFlags(BlockScopedVariable | ConstVariable | TypeAlias)", "id": 0, "name": "T", "node": "VariableDeclarator(T)", diff --git a/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named-type1.snap b/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named-type1.snap index 0df5aff874903..713ce69ee576e 100644 --- a/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named-type1.snap +++ b/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named-type1.snap @@ -1,7 +1,6 @@ --- source: crates/oxc_semantic/tests/main.rs input_file: crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named-type1.ts -snapshot_kind: text --- [ { @@ -19,7 +18,7 @@ snapshot_kind: text "node": "Program", "symbols": [ { - "flags": "SymbolFlags(Export | TypeAlias)", + "flags": "SymbolFlags(TypeAlias)", "id": 0, "name": "X", "node": "TSTypeAliasDeclaration", diff --git a/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named1.snap b/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named1.snap index 7ca08c9f5f5d2..703c161c99340 100644 --- a/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named1.snap +++ b/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named1.snap @@ -1,7 +1,6 @@ --- source: crates/oxc_semantic/tests/main.rs input_file: crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named1.ts -snapshot_kind: text --- [ { @@ -11,7 +10,7 @@ snapshot_kind: text "node": "Program", "symbols": [ { - "flags": "SymbolFlags(BlockScopedVariable | ConstVariable | Export)", + "flags": "SymbolFlags(BlockScopedVariable | ConstVariable)", "id": 0, "name": "x", "node": "VariableDeclarator(x)", diff --git a/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named2-type.snap b/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named2-type.snap index efc24b910bf52..f7d110fc37144 100644 --- a/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named2-type.snap +++ b/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named2-type.snap @@ -1,7 +1,6 @@ --- source: crates/oxc_semantic/tests/main.rs input_file: crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named2-type.ts -snapshot_kind: text --- [ { @@ -19,7 +18,7 @@ snapshot_kind: text "node": "Program", "symbols": [ { - "flags": "SymbolFlags(Export | TypeAlias)", + "flags": "SymbolFlags(TypeAlias)", "id": 0, "name": "A", "node": "TSTypeAliasDeclaration", diff --git a/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named2.snap b/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named2.snap index 4e5ad81bc74af..fd3ece8431b1f 100644 --- a/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named2.snap +++ b/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named2.snap @@ -1,7 +1,6 @@ --- source: crates/oxc_semantic/tests/main.rs input_file: crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named2.ts -snapshot_kind: text --- [ { @@ -11,7 +10,7 @@ snapshot_kind: text "node": "Program", "symbols": [ { - "flags": "SymbolFlags(BlockScopedVariable | ConstVariable | Export)", + "flags": "SymbolFlags(BlockScopedVariable | ConstVariable)", "id": 0, "name": "a", "node": "VariableDeclarator(a)", diff --git a/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named3-type.snap b/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named3-type.snap index 44168c588deb5..cb034916eb0c2 100644 --- a/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named3-type.snap +++ b/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named3-type.snap @@ -1,7 +1,6 @@ --- source: crates/oxc_semantic/tests/main.rs input_file: crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named3-type.ts -snapshot_kind: text --- [ { @@ -19,7 +18,7 @@ snapshot_kind: text "node": "Program", "symbols": [ { - "flags": "SymbolFlags(Export | TypeAlias)", + "flags": "SymbolFlags(TypeAlias)", "id": 0, "name": "V", "node": "TSTypeAliasDeclaration", diff --git a/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named3.snap b/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named3.snap index bd144be4b6dbb..d85ceca915b5a 100644 --- a/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named3.snap +++ b/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named3.snap @@ -1,7 +1,6 @@ --- source: crates/oxc_semantic/tests/main.rs input_file: crates/oxc_semantic/tests/fixtures/typescript-eslint/export/named3.ts -snapshot_kind: text --- [ { @@ -11,7 +10,7 @@ snapshot_kind: text "node": "Program", "symbols": [ { - "flags": "SymbolFlags(BlockScopedVariable | ConstVariable | Export)", + "flags": "SymbolFlags(BlockScopedVariable | ConstVariable)", "id": 0, "name": "v", "node": "VariableDeclarator(v)", diff --git a/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/type.snap b/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/type.snap index c5f635b8505d9..07f09f481c0c3 100644 --- a/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/type.snap +++ b/crates/oxc_semantic/tests/fixtures/typescript-eslint/export/type.snap @@ -1,7 +1,6 @@ --- source: crates/oxc_semantic/tests/main.rs input_file: crates/oxc_semantic/tests/fixtures/typescript-eslint/export/type.ts -snapshot_kind: text --- [ { @@ -19,7 +18,7 @@ snapshot_kind: text "node": "Program", "symbols": [ { - "flags": "SymbolFlags(BlockScopedVariable | ConstVariable | Export | TypeAlias)", + "flags": "SymbolFlags(BlockScopedVariable | ConstVariable | TypeAlias)", "id": 0, "name": "T", "node": "VariableDeclarator(T)", diff --git a/crates/oxc_semantic/tests/fixtures/typescript-eslint/ts-module/declaration-merging/class-namespace.snap b/crates/oxc_semantic/tests/fixtures/typescript-eslint/ts-module/declaration-merging/class-namespace.snap index 4a42abde77945..22d5f35c0369e 100644 --- a/crates/oxc_semantic/tests/fixtures/typescript-eslint/ts-module/declaration-merging/class-namespace.snap +++ b/crates/oxc_semantic/tests/fixtures/typescript-eslint/ts-module/declaration-merging/class-namespace.snap @@ -1,7 +1,6 @@ --- source: crates/oxc_semantic/tests/main.rs input_file: crates/oxc_semantic/tests/fixtures/typescript-eslint/ts-module/declaration-merging/class-namespace.ts -snapshot_kind: text --- [ { @@ -20,7 +19,7 @@ snapshot_kind: text "node": "TSModuleDeclaration(Foo)", "symbols": [ { - "flags": "SymbolFlags(BlockScopedVariable | ConstVariable | Export)", + "flags": "SymbolFlags(BlockScopedVariable | ConstVariable)", "id": 1, "name": "x", "node": "VariableDeclarator(x)", diff --git a/crates/oxc_semantic/tests/fixtures/typescript-eslint/ts-module/declaration-merging/function-namespace.snap b/crates/oxc_semantic/tests/fixtures/typescript-eslint/ts-module/declaration-merging/function-namespace.snap index c3255f6e26abe..5a4f9b9e27ddc 100644 --- a/crates/oxc_semantic/tests/fixtures/typescript-eslint/ts-module/declaration-merging/function-namespace.snap +++ b/crates/oxc_semantic/tests/fixtures/typescript-eslint/ts-module/declaration-merging/function-namespace.snap @@ -1,7 +1,6 @@ --- source: crates/oxc_semantic/tests/main.rs input_file: crates/oxc_semantic/tests/fixtures/typescript-eslint/ts-module/declaration-merging/function-namespace.ts -snapshot_kind: text --- [ { @@ -20,7 +19,7 @@ snapshot_kind: text "node": "TSModuleDeclaration(Foo)", "symbols": [ { - "flags": "SymbolFlags(BlockScopedVariable | ConstVariable | Export)", + "flags": "SymbolFlags(BlockScopedVariable | ConstVariable)", "id": 1, "name": "x", "node": "VariableDeclarator(x)", diff --git a/crates/oxc_semantic/tests/fixtures/typescript-eslint/ts-module/external-ref.snap b/crates/oxc_semantic/tests/fixtures/typescript-eslint/ts-module/external-ref.snap index 64d81c107a6fc..56f6699e6a561 100644 --- a/crates/oxc_semantic/tests/fixtures/typescript-eslint/ts-module/external-ref.snap +++ b/crates/oxc_semantic/tests/fixtures/typescript-eslint/ts-module/external-ref.snap @@ -1,7 +1,6 @@ --- source: crates/oxc_semantic/tests/main.rs input_file: crates/oxc_semantic/tests/fixtures/typescript-eslint/ts-module/external-ref.ts -snapshot_kind: text --- [ { @@ -13,7 +12,7 @@ snapshot_kind: text "node": "TSModuleDeclaration(Foo)", "symbols": [ { - "flags": "SymbolFlags(BlockScopedVariable | ConstVariable | Export)", + "flags": "SymbolFlags(BlockScopedVariable | ConstVariable)", "id": 1, "name": "x", "node": "VariableDeclarator(x)", diff --git a/crates/oxc_semantic/tests/fixtures/typescript-eslint/ts-module/name-shadowed-in-body.snap b/crates/oxc_semantic/tests/fixtures/typescript-eslint/ts-module/name-shadowed-in-body.snap index 152fe7acca475..5e24834dc8c15 100644 --- a/crates/oxc_semantic/tests/fixtures/typescript-eslint/ts-module/name-shadowed-in-body.snap +++ b/crates/oxc_semantic/tests/fixtures/typescript-eslint/ts-module/name-shadowed-in-body.snap @@ -1,7 +1,6 @@ --- source: crates/oxc_semantic/tests/main.rs input_file: crates/oxc_semantic/tests/fixtures/typescript-eslint/ts-module/name-shadowed-in-body.ts -snapshot_kind: text --- [ { @@ -13,7 +12,7 @@ snapshot_kind: text "node": "TSModuleDeclaration(Foo)", "symbols": [ { - "flags": "SymbolFlags(BlockScopedVariable | ConstVariable | Export)", + "flags": "SymbolFlags(BlockScopedVariable | ConstVariable)", "id": 1, "name": "Foo", "node": "VariableDeclarator(Foo)", diff --git a/crates/oxc_semantic/tests/fixtures/typescript-eslint/ts-module/namespace.snap b/crates/oxc_semantic/tests/fixtures/typescript-eslint/ts-module/namespace.snap index 8258e9c938005..9b94e2b3149b6 100644 --- a/crates/oxc_semantic/tests/fixtures/typescript-eslint/ts-module/namespace.snap +++ b/crates/oxc_semantic/tests/fixtures/typescript-eslint/ts-module/namespace.snap @@ -1,7 +1,6 @@ --- source: crates/oxc_semantic/tests/main.rs input_file: crates/oxc_semantic/tests/fixtures/typescript-eslint/ts-module/namespace.ts -snapshot_kind: text --- [ { @@ -13,7 +12,7 @@ snapshot_kind: text "node": "TSModuleDeclaration(Foo)", "symbols": [ { - "flags": "SymbolFlags(BlockScopedVariable | ConstVariable | Export)", + "flags": "SymbolFlags(BlockScopedVariable | ConstVariable)", "id": 1, "name": "x", "node": "VariableDeclarator(x)", diff --git a/crates/oxc_semantic/tests/fixtures/typescript-eslint/ts-module/self-ref.snap b/crates/oxc_semantic/tests/fixtures/typescript-eslint/ts-module/self-ref.snap index 9546f715fe51f..f3fed2a6a63dd 100644 --- a/crates/oxc_semantic/tests/fixtures/typescript-eslint/ts-module/self-ref.snap +++ b/crates/oxc_semantic/tests/fixtures/typescript-eslint/ts-module/self-ref.snap @@ -1,7 +1,6 @@ --- source: crates/oxc_semantic/tests/main.rs input_file: crates/oxc_semantic/tests/fixtures/typescript-eslint/ts-module/self-ref.ts -snapshot_kind: text --- [ { @@ -13,7 +12,7 @@ snapshot_kind: text "node": "TSModuleDeclaration(Foo)", "symbols": [ { - "flags": "SymbolFlags(BlockScopedVariable | ConstVariable | Export)", + "flags": "SymbolFlags(BlockScopedVariable | ConstVariable)", "id": 1, "name": "x", "node": "VariableDeclarator(x)", diff --git a/crates/oxc_semantic/tests/fixtures/typescript-eslint/type-declaration/interface-heritage2.snap b/crates/oxc_semantic/tests/fixtures/typescript-eslint/type-declaration/interface-heritage2.snap index 90ad6fbb54d3c..ccf82bae5def6 100644 --- a/crates/oxc_semantic/tests/fixtures/typescript-eslint/type-declaration/interface-heritage2.snap +++ b/crates/oxc_semantic/tests/fixtures/typescript-eslint/type-declaration/interface-heritage2.snap @@ -1,7 +1,6 @@ --- source: crates/oxc_semantic/tests/main.rs input_file: crates/oxc_semantic/tests/fixtures/typescript-eslint/type-declaration/interface-heritage2.ts -snapshot_kind: text --- [ { @@ -28,7 +27,7 @@ snapshot_kind: text "node": "TSModuleDeclaration(Member)", "symbols": [ { - "flags": "SymbolFlags(Export | TypeAlias)", + "flags": "SymbolFlags(TypeAlias)", "id": 2, "name": "unreferenced", "node": "TSTypeAliasDeclaration", diff --git a/crates/oxc_semantic/tests/fixtures/typescript-eslint/type-declaration/type-query-with-parameters.snap b/crates/oxc_semantic/tests/fixtures/typescript-eslint/type-declaration/type-query-with-parameters.snap index df0a2c66d9372..59d995ca8a4a2 100644 --- a/crates/oxc_semantic/tests/fixtures/typescript-eslint/type-declaration/type-query-with-parameters.snap +++ b/crates/oxc_semantic/tests/fixtures/typescript-eslint/type-declaration/type-query-with-parameters.snap @@ -1,7 +1,6 @@ --- source: crates/oxc_semantic/tests/main.rs input_file: crates/oxc_semantic/tests/fixtures/typescript-eslint/type-declaration/type-query-with-parameters.ts -snapshot_kind: text --- [ { @@ -84,7 +83,7 @@ snapshot_kind: text ] }, { - "flags": "SymbolFlags(Export | TypeAlias)", + "flags": "SymbolFlags(TypeAlias)", "id": 3, "name": "Foo", "node": "TSTypeAliasDeclaration", diff --git a/crates/oxc_semantic/tests/integration/modules.rs b/crates/oxc_semantic/tests/integration/modules.rs index aa7a31684bb9c..921974dd3a5ad 100644 --- a/crates/oxc_semantic/tests/integration/modules.rs +++ b/crates/oxc_semantic/tests/integration/modules.rs @@ -1,243 +1,7 @@ -use oxc_semantic::{SemanticBuilderReturn, SymbolFlags}; +use oxc_semantic::SymbolFlags; use crate::util::SemanticTester; -#[test] -fn test_exports() { - let test = SemanticTester::js( - " - function foo(a, b) { - let c = a + b; - return c / 2 - } - - export class ExportModifier { - constructor(x) { - this.x = x; - } - } - - const defaultExport = 1; - - export { foo }; - export default defaultExport; - ", - ); - - test.has_some_symbol("foo").is_exported().test(); - test.has_some_symbol("defaultExport").is_exported().test(); -} - -#[test] -fn test_exported_named_function() { - let test = SemanticTester::js( - " - export function foo(a) { - let x = 1; - } - ", - ); - test.has_some_symbol("foo").is_exported().test(); - for name in &["a", "x"] { - test.has_some_symbol(name).is_not_exported().test(); - } - - SemanticTester::ts("export function foo(a: T) { a.length }") - .has_some_symbol("T") - .is_not_exported() - .test(); - - SemanticTester::tsx( - " - import React from 'react'; - export const Counter: React.FC<{ count: number }> = ({ count }) => ( -
{count}
- ) - ", - ) - .has_some_symbol("Counter") - .is_exported() - .contains_flags( - SymbolFlags::ConstVariable - .union(SymbolFlags::BlockScopedVariable) - .union(SymbolFlags::Export), - ) - .test(); -} - -#[test] -fn test_exported_default_function() { - let test = SemanticTester::js( - " - export default function foo(a) { - let x = 1; - } - ", - ); - for name in &["a", "x"] { - test.has_some_symbol(name).is_not_exported().test(); - } - - let test = SemanticTester::ts("export default function (a: T) { a.length }"); - test.has_some_symbol("a").is_not_exported().test(); - test.has_some_symbol("T").is_not_exported().test(); -} - -#[test] -fn test_exported_named_class() { - let test = SemanticTester::ts( - " - export class Foo { - constructor(a) { - this.a = a; - } - - bar() { - return this.a; - } - } - ", - ); - - test.has_class("Foo"); - test.has_some_symbol("Foo").is_exported().test(); - // NOTE: bar() is not a symbol. Should it be? - for name in &["a", "T"] { - test.has_some_symbol(name).is_not_exported().test(); - } - - SemanticTester::ts( - " - class Foo {}; - export { Foo } - ", - ) - .has_some_symbol("Foo") - .is_exported() - .test(); -} - -#[test] -fn test_exported_default_class() { - let test = SemanticTester::ts( - " - export default class Foo { - constructor(a) { - this.a = a; - } - } - ", - ); - - test.has_class("Foo"); - test.has_some_symbol("a").is_not_exported().test(); - test.has_some_symbol("T").is_not_exported().test(); -} - -// FIXME -#[test] -#[ignore] -fn test_exported_enum() { - let test = SemanticTester::ts( - " - export enum Foo { - A = 1, - B, - } - ", - ); - test.has_some_symbol("Foo").is_exported().contains_flags(SymbolFlags::RegularEnum).test(); - test.has_some_symbol("A").is_not_exported().contains_flags(SymbolFlags::EnumMember).test(); - test.has_some_symbol("B").is_not_exported().contains_flags(SymbolFlags::EnumMember).test(); -} - -// FIXME -#[test] -#[ignore] -fn test_exported_interface() { - let test = SemanticTester::ts( - " - export interface Foo { - a: T; - } - ", - ); - test.has_root_symbol("Foo").is_exported().contains_flags(SymbolFlags::Interface).test(); - test.has_some_symbol("a").is_not_exported().test(); - test.has_some_symbol("T").is_not_exported().test(); -} - -#[test] -fn test_exports_in_namespace() { - let test = SemanticTester::ts( - " - export const x = 1; - namespace N { - function foo() { - return 1 - } - export function bar() { - return foo(); - } - export const x = 2 - } - ", - ); - test.has_some_symbol("bar").is_exported().test(); - let semantic = test.build(); - assert!(!semantic.module_record().exported_bindings.contains_key("bar")); - - // namespace exported, member is not - let sources = - ["export namespace N { function foo() {} } ", "export namespace N { const foo = 1 } "]; - for src in sources { - let test = SemanticTester::ts(src); - test.has_some_symbol("N").contains_flags(SymbolFlags::NameSpaceModule).is_exported().test(); - test.has_some_symbol("foo").is_not_exported().test(); - } - - // namespace and member are both exported - let sources = [ - "export namespace N { export function foo() {} } ", - "export namespace N { export const foo = 1 } ", - ]; - for src in sources { - let test = SemanticTester::ts(src); - test.has_some_symbol("N").contains_flags(SymbolFlags::NameSpaceModule).is_exported().test(); - test.has_some_symbol("foo").is_exported().test(); - } - - // namespace is not exported, but member is - let sources = - ["namespace N { export function foo() {} } ", "namespace N { export const foo = 1 } "]; - for src in sources { - let test = SemanticTester::ts(src); - test.has_some_symbol("N") - .contains_flags(SymbolFlags::NameSpaceModule) - .is_not_exported() - .test(); - test.has_some_symbol("foo").is_exported().test(); - } -} - -#[test] -fn test_export_in_invalid_scope() { - let test = SemanticTester::js( - " - function foo() { - export const x = 1; - }", - ) - .expect_errors(true); - test.has_some_symbol("x").contains_flags(SymbolFlags::Export).test(); - let SemanticBuilderReturn { semantic, errors } = test.build_with_errors(); - assert!( - !errors.is_empty(), - "expected an export within a function to produce a check error, but no errors were produced" - ); - assert!(semantic.module_record().exported_bindings.is_empty()); -} - #[test] fn test_import_assignment() { SemanticTester::ts("import Foo = require('./foo')") diff --git a/crates/oxc_semantic/tests/integration/symbols.rs b/crates/oxc_semantic/tests/integration/symbols.rs index f6647ebc87b92..1d718b1ecbca3 100644 --- a/crates/oxc_semantic/tests/integration/symbols.rs +++ b/crates/oxc_semantic/tests/integration/symbols.rs @@ -6,9 +6,8 @@ use crate::util::SemanticTester; fn test_class_simple() { SemanticTester::js("export class Foo {};") .has_root_symbol("Foo") - .contains_flags(SymbolFlags::Class | SymbolFlags::Export) + .contains_flags(SymbolFlags::Class) .has_number_of_references(0) - .is_exported() .test(); SemanticTester::js("class Foo {}; let f = new Foo()") @@ -124,44 +123,6 @@ fn test_types_simple() { .test(); } -#[test] -fn test_export_flag() { - let tester = SemanticTester::js( - " - const a = 1; - export { a, b as d }; - class b {} - export default c; - function c() {} - ", - ); - - tester.has_root_symbol("a").is_exported().test(); - tester.has_root_symbol("b").is_exported().test(); - tester.has_root_symbol("c").is_exported().test(); -} - -#[test] -fn test_export_default_flag() { - let tester = SemanticTester::ts( - " - export default function func() {} - export default class cls {} - export default interface face {} - - export default (function funcExpr() {}); - export default (function(param) {}); - ", - ); - - tester.has_root_symbol("func").is_exported().test(); - tester.has_root_symbol("cls").is_exported().test(); - tester.has_root_symbol("face").is_exported().test(); - - tester.has_symbol("funcExpr").is_not_exported().test(); - tester.has_symbol("param").is_not_exported().test(); -} - #[test] fn test_multiple_ts_type_alias_declaration() { let tester = SemanticTester::ts( diff --git a/crates/oxc_semantic/tests/integration/util/symbol_tester.rs b/crates/oxc_semantic/tests/integration/util/symbol_tester.rs index b46ea82324887..e0ad1d5bc61aa 100644 --- a/crates/oxc_semantic/tests/integration/util/symbol_tester.rs +++ b/crates/oxc_semantic/tests/integration/util/symbol_tester.rs @@ -201,54 +201,6 @@ impl<'a> SymbolTester<'a> { self } - /// Check that this symbol is exported. - /// - /// Export status is checked using the symbol's [`SymbolFlags`], not by - /// checking the [`oxc_semantic::ModuleRecord`]. - /// - /// For the inverse of this assertion, use [`SymbolTester::is_not_exported`]. - #[allow(clippy::wrong_self_convention)] - pub fn is_exported(mut self) -> Self { - self.test_result = match self.test_result { - Ok(symbol_id) => { - let binding = self.target_symbol_name.clone(); - if self.semantic.symbols().get_flags(symbol_id).is_export() { - Ok(symbol_id) - } else { - Err(OxcDiagnostic::error(format!( - "Expected {binding} to be exported with SymbolFlags::Export" - ))) - } - } - e => e, - }; - self - } - - /// Check that this symbol is not exported. - /// - /// Export status is checked using the symbol's [`SymbolFlags`], not by - /// checking the [`oxc_semantic::ModuleRecord`]. - /// - /// For the inverse of this assertion, use [`SymbolTester::is_exported`]. - #[allow(clippy::wrong_self_convention)] - pub fn is_not_exported(mut self) -> Self { - self.test_result = match self.test_result { - Ok(symbol_id) => { - let binding = self.target_symbol_name.clone(); - if self.semantic.symbols().get_flags(symbol_id).contains(SymbolFlags::Export) { - Err(OxcDiagnostic::error(format!( - "Expected {binding} to not be exported. Symbol has export flag." - ))) - } else { - Ok(symbol_id) - } - } - e => e, - }; - self - } - #[allow(clippy::wrong_self_convention)] pub fn is_in_scope(mut self, expected_flags: ScopeFlags) -> Self { let target_name: &str = self.target_symbol_name.as_ref(); diff --git a/crates/oxc_syntax/src/symbol.rs b/crates/oxc_syntax/src/symbol.rs index be7a1ac887533..929a0ae303692 100644 --- a/crates/oxc_syntax/src/symbol.rs +++ b/crates/oxc_syntax/src/symbol.rs @@ -76,29 +76,27 @@ bitflags! { const BlockScopedVariable = 1 << 1; /// A const variable (const) const ConstVariable = 1 << 2; - /// Is this symbol inside an export declaration - const Export = 1 << 4; - const Class = 1 << 5; + const Class = 1 << 3; /// `try {} catch(catch_variable) {}` - const CatchVariable = 1 << 6; + const CatchVariable = 1 << 4; /// A function declaration or expression - const Function = 1 << 7; + const Function = 1 << 5; /// Imported ESM binding - const Import = 1 << 8; + const Import = 1 << 6; /// Imported ESM type-only binding - const TypeImport = 1 << 9; + const TypeImport = 1 << 7; // Type specific symbol flags - const TypeAlias = 1 << 10; - const Interface = 1 << 11; - const RegularEnum = 1 << 12; - const ConstEnum = 1 << 13; - const EnumMember = 1 << 14; - const TypeLiteral = 1 << 15; - const TypeParameter = 1 << 16; - const NameSpaceModule = 1 << 17; - const ValueModule = 1 << 18; + const TypeAlias = 1 << 8; + const Interface = 1 << 9; + const RegularEnum = 1 << 10; + const ConstEnum = 1 << 11; + const EnumMember = 1 << 12; + const TypeLiteral = 1 << 13; + const TypeParameter = 1 << 14; + const NameSpaceModule = 1 << 15; + const ValueModule = 1 << 16; // In a dts file or there is a declare flag - const Ambient = 1 << 19; + const Ambient = 1 << 17; const Enum = Self::ConstEnum.bits() | Self::RegularEnum.bits(); const Variable = Self::FunctionScopedVariable.bits() | Self::BlockScopedVariable.bits(); @@ -199,11 +197,6 @@ impl SymbolFlags { self.contains(Self::FunctionScopedVariable) } - #[inline] - pub fn is_export(&self) -> bool { - self.contains(Self::Export) - } - #[inline] pub fn is_import(&self) -> bool { self.intersects(Self::Import | Self::TypeImport) diff --git a/tasks/coverage/snapshots/semantic_babel.snap b/tasks/coverage/snapshots/semantic_babel.snap index 46f236be07c90..a0f8a5efe1cd2 100644 --- a/tasks/coverage/snapshots/semantic_babel.snap +++ b/tasks/coverage/snapshots/semantic_babel.snap @@ -711,16 +711,16 @@ semantic error: Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "E": -after transform: SymbolId(0): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(RegularEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/enum/export-const/input.ts semantic error: Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "E": -after transform: SymbolId(0): SymbolFlags(Export | ConstEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(ConstEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/enum/export-declare-const/input.ts semantic error: Bindings mismatch: @@ -838,8 +838,8 @@ Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode) rebuilt : ScopeId(3): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "D": -after transform: SymbolId(3): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(3): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(3): SymbolFlags(RegularEnum) +rebuilt : SymbolId(3): SymbolFlags(BlockScopedVariable) tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/export/nested-same-name/input.ts semantic error: Missing SymbolId: "N" @@ -853,9 +853,6 @@ rebuilt : ScopeId(0): [SymbolId(0), SymbolId(1)] Binding symbols mismatch: after transform: ScopeId(1): [SymbolId(2), SymbolId(3)] rebuilt : ScopeId(1): [SymbolId(2), SymbolId(3)] -Symbol flags mismatch for "x": -after transform: SymbolId(2): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(3): SymbolFlags(BlockScopedVariable | ConstVariable) tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/function/annotated/input.ts semantic error: Bindings mismatch: @@ -1491,8 +1488,8 @@ Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "E": -after transform: SymbolId(1): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(1): SymbolFlags(RegularEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/regression/issue-7742/input.ts semantic error: Bindings mismatch: @@ -1621,16 +1618,16 @@ semantic error: Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "Test": -after transform: SymbolId(0): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(RegularEnum) +rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/export-enum-before/input.ts semantic error: Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "Test": -after transform: SymbolId(0): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(RegularEnum) +rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/scope/export-func-in-declare-module/input.ts semantic error: Bindings mismatch: diff --git a/tasks/coverage/snapshots/semantic_typescript.snap b/tasks/coverage/snapshots/semantic_typescript.snap index 2aa977db5fe29..b4557fdd6f4d7 100644 --- a/tasks/coverage/snapshots/semantic_typescript.snap +++ b/tasks/coverage/snapshots/semantic_typescript.snap @@ -2,7 +2,7 @@ commit: df9d1650 semantic_typescript Summary: AST Parsed : 6490/6490 (100.00%) -Positive Passed: 2659/6490 (40.97%) +Positive Passed: 2660/6490 (40.99%) tasks/coverage/typescript/tests/cases/compiler/2dArrays.ts semantic error: Symbol reference IDs mismatch for "Cell": after transform: SymbolId(0): [ReferenceId(1)] @@ -781,8 +781,8 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "CharCode": -after transform: SymbolId(0): SymbolFlags(Export | ConstEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(ConstEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/typescript/tests/cases/compiler/anonClassDeclarationEmitIsAnon.ts semantic error: Bindings mismatch: @@ -811,9 +811,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Symbol flags mismatch for "C": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "C": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(3)] @@ -887,9 +884,6 @@ 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 for "Bug": -after transform: SymbolId(5): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "Bug": after transform: SymbolId(5): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -1673,9 +1667,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Symbol flags mismatch for "Bug": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "Bug": after transform: SymbolId(2): [] rebuilt : SymbolId(2): [ReferenceId(4)] @@ -1709,9 +1700,6 @@ rebuilt : ScopeId(0): [SymbolId(0)] Binding symbols mismatch: after transform: ScopeId(1): [SymbolId(1), SymbolId(3)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] -Symbol flags mismatch for "Name": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "Name": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(3)] @@ -1961,7 +1949,7 @@ Binding symbols mismatch: after transform: ScopeId(1): [SymbolId(1), SymbolId(2)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Symbol flags mismatch for "foo": -after transform: SymbolId(1): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(1): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(2): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "foo": after transform: SymbolId(1): [] @@ -2103,9 +2091,6 @@ rebuilt : SymbolId(1): [ReferenceId(0), ReferenceId(4), ReferenceId(5)] Symbol redeclarations mismatch for "maker": after transform: SymbolId(1): [Span { start: 121, end: 126 }] rebuilt : SymbolId(1): [] -Symbol flags mismatch for "Bar": -after transform: SymbolId(3): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "Bar": after transform: SymbolId(3): [] rebuilt : SymbolId(4): [ReferenceId(3)] @@ -2234,9 +2219,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Symbol flags mismatch for "C": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "C": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -2476,21 +2458,12 @@ rebuilt : ScopeId(20): [ScopeId(21)] Scope children mismatch: after transform: ScopeId(35): [ScopeId(36), ScopeId(37), ScopeId(38)] rebuilt : ScopeId(22): [ScopeId(23)] -Symbol flags mismatch for "b": -after transform: SymbolId(10): SymbolFlags(Export | Class) -rebuilt : SymbolId(7): SymbolFlags(Class) Symbol reference IDs mismatch for "b": after transform: SymbolId(10): [] rebuilt : SymbolId(7): [ReferenceId(3)] -Symbol flags mismatch for "c": -after transform: SymbolId(15): SymbolFlags(Export | Class) -rebuilt : SymbolId(13): SymbolFlags(Class) Symbol reference IDs mismatch for "c": after transform: SymbolId(15): [] rebuilt : SymbolId(13): [ReferenceId(8)] -Symbol flags mismatch for "ib2": -after transform: SymbolId(16): SymbolFlags(Export | Class) -rebuilt : SymbolId(14): SymbolFlags(Class) Symbol reference IDs mismatch for "ib2": after transform: SymbolId(16): [] rebuilt : SymbolId(14): [ReferenceId(10)] @@ -2585,9 +2558,6 @@ rebuilt : SymbolId(0): [ReferenceId(2), ReferenceId(3)] Symbol redeclarations mismatch for "Foo": after transform: SymbolId(0): [Span { start: 63, end: 66 }] rebuilt : SymbolId(0): [] -Symbol flags mismatch for "Baz": -after transform: SymbolId(3): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "Baz": after transform: SymbolId(3): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -2615,9 +2585,6 @@ rebuilt : SymbolId(1): [ReferenceId(2), ReferenceId(3)] Symbol redeclarations mismatch for "Service": after transform: SymbolId(2): [Span { start: 108, end: 115 }] rebuilt : SymbolId(1): [] -Symbol flags mismatch for "Base": -after transform: SymbolId(3): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(3): SymbolFlags(BlockScopedVariable | ConstVariable) tasks/coverage/typescript/tests/cases/compiler/cloduleTest1.ts semantic error: Missing SymbolId: "_$" @@ -2640,9 +2607,6 @@ rebuilt : ScopeId(1): ScopeFlags(Function) Scope children mismatch: after transform: ScopeId(4): [ScopeId(5), ScopeId(6)] rebuilt : ScopeId(1): [ScopeId(2)] -Symbol flags mismatch for "ajax": -after transform: SymbolId(3): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(1): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "ajax": after transform: SymbolId(3): [] rebuilt : SymbolId(1): [ReferenceId(1)] @@ -2680,9 +2644,6 @@ rebuilt : SymbolId(0): [ReferenceId(2), ReferenceId(3)] Symbol redeclarations mismatch for "Moclodule": after transform: SymbolId(0): [Span { start: 132, end: 141 }, Span { start: 178, end: 187 }] rebuilt : SymbolId(0): [] -Symbol flags mismatch for "Manager": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "Manager": after transform: SymbolId(2): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -2973,21 +2934,12 @@ rebuilt : ScopeId(3): [SymbolId(5), SymbolId(6), SymbolId(7)] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(3): ScopeFlags(Function) -Symbol flags mismatch for "m1": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "m1": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] -Symbol flags mismatch for "m2": -after transform: SymbolId(4): SymbolFlags(Export | Class) -rebuilt : SymbolId(6): SymbolFlags(Class) Symbol reference IDs mismatch for "m2": after transform: SymbolId(4): [] rebuilt : SymbolId(6): [ReferenceId(6)] -Symbol flags mismatch for "_m2": -after transform: SymbolId(5): SymbolFlags(Export | Class) -rebuilt : SymbolId(7): SymbolFlags(Class) Symbol reference IDs mismatch for "_m2": after transform: SymbolId(5): [] rebuilt : SymbolId(7): [ReferenceId(8)] @@ -3020,9 +2972,6 @@ rebuilt : ScopeId(1): ScopeFlags(Function) Scope children mismatch: after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] rebuilt : ScopeId(1): [ScopeId(2)] -Symbol flags mismatch for "m2": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "m2": after transform: SymbolId(2): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -3058,9 +3007,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4) Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Symbol flags mismatch for "c1": -after transform: SymbolId(3): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "c1": after transform: SymbolId(3): [] rebuilt : SymbolId(4): [ReferenceId(2)] @@ -3084,9 +3030,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Symbol flags mismatch for "才能ソЫⅨ蒤郳र\u{94d}क\u{94d}ड\u{94d}राüışğİliيونيكودöÄüß才能ソЫⅨ蒤郳र\u{94d}क\u{94d}ड\u{94d}राüışğİliيونيكودöÄüßAbcd123": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "才能ソЫⅨ蒤郳र\u{94d}क\u{94d}ड\u{94d}राüışğİliيونيكودöÄüß才能ソЫⅨ蒤郳र\u{94d}क\u{94d}ड\u{94d}राüışğİliيونيكودöÄüßAbcd123": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -3213,15 +3156,9 @@ rebuilt : ScopeId(6): [SymbolId(7), SymbolId(8), SymbolId(9)] Scope flags mismatch: after transform: ScopeId(6): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(6): ScopeFlags(Function) -Symbol flags mismatch for "exports": -after transform: SymbolId(6): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(8): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "exports": after transform: SymbolId(6): [] rebuilt : SymbolId(8): [ReferenceId(3)] -Symbol flags mismatch for "require": -after transform: SymbolId(7): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(9): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "require": after transform: SymbolId(7): [] rebuilt : SymbolId(9): [ReferenceId(5)] @@ -3264,9 +3201,6 @@ rebuilt : ScopeId(4): ["_m2"] Scope flags mismatch: after transform: ScopeId(4): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(4): ScopeFlags(Function) -Symbol flags mismatch for "c": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "c": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -3609,8 +3543,8 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "Color": -after transform: SymbolId(0): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(RegularEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/typescript/tests/cases/compiler/commentOnInterface1.ts semantic error: Bindings mismatch: @@ -3655,9 +3589,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Binding symbols mismatch: after transform: ScopeId(2): [SymbolId(2), SymbolId(4)] rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] -Symbol flags mismatch for "b": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "b": after transform: SymbolId(2): [] rebuilt : SymbolId(4): [ReferenceId(1)] @@ -3713,27 +3644,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) -Symbol flags mismatch for "c": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "c": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] -Symbol flags mismatch for "c2": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(3): SymbolFlags(Class) Symbol reference IDs mismatch for "c2": after transform: SymbolId(2): [] rebuilt : SymbolId(3): [ReferenceId(3)] -Symbol flags mismatch for "c3": -after transform: SymbolId(3): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "c3": after transform: SymbolId(3): [] rebuilt : SymbolId(4): [ReferenceId(5)] -Symbol flags mismatch for "c4": -after transform: SymbolId(4): SymbolFlags(Export | Class) -rebuilt : SymbolId(5): SymbolFlags(Class) Symbol reference IDs mismatch for "c4": after transform: SymbolId(4): [] rebuilt : SymbolId(5): [ReferenceId(7)] @@ -3781,21 +3700,12 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Binding symbols mismatch: after transform: ScopeId(3): [SymbolId(2), SymbolId(3), SymbolId(5)] rebuilt : ScopeId(3): [SymbolId(3), SymbolId(4), SymbolId(5)] -Symbol flags mismatch for "b": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "b": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] -Symbol flags mismatch for "c": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "c": after transform: SymbolId(2): [] rebuilt : SymbolId(4): [ReferenceId(5)] -Symbol flags mismatch for "e": -after transform: SymbolId(3): SymbolFlags(Export | Class) -rebuilt : SymbolId(5): SymbolFlags(Class) Symbol reference IDs mismatch for "e": after transform: SymbolId(3): [] rebuilt : SymbolId(5): [ReferenceId(7)] @@ -3837,27 +3747,15 @@ rebuilt : ScopeId(4): [SymbolId(4), SymbolId(5), SymbolId(6)] Scope flags mismatch: after transform: ScopeId(4): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(4): ScopeFlags(Function) -Symbol flags mismatch for "b": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "b": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] -Symbol flags mismatch for "d": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(3): SymbolFlags(Class) Symbol reference IDs mismatch for "d": after transform: SymbolId(2): [] rebuilt : SymbolId(3): [ReferenceId(3)] -Symbol flags mismatch for "c": -after transform: SymbolId(3): SymbolFlags(Export | Class) -rebuilt : SymbolId(5): SymbolFlags(Class) Symbol reference IDs mismatch for "c": after transform: SymbolId(3): [] rebuilt : SymbolId(5): [ReferenceId(7)] -Symbol flags mismatch for "e": -after transform: SymbolId(4): SymbolFlags(Export | Class) -rebuilt : SymbolId(6): SymbolFlags(Class) Symbol reference IDs mismatch for "e": after transform: SymbolId(4): [] rebuilt : SymbolId(6): [ReferenceId(9)] @@ -3953,9 +3851,6 @@ rebuilt : ScopeId(11): ["color"] Scope flags mismatch: after transform: ScopeId(17): ScopeFlags(0x0) rebuilt : ScopeId(11): ScopeFlags(Function) -Symbol flags mismatch for "b": -after transform: SymbolId(13): SymbolFlags(Export | Class) -rebuilt : SymbolId(11): SymbolFlags(Class) Symbol reference IDs mismatch for "b": after transform: SymbolId(13): [] rebuilt : SymbolId(11): [ReferenceId(7)] @@ -3991,9 +3886,6 @@ rebuilt : ScopeId(8): ScopeFlags(Function) Scope children mismatch: after transform: ScopeId(13): [ScopeId(14), ScopeId(16)] rebuilt : ScopeId(8): [ScopeId(9)] -Symbol flags mismatch for "b": -after transform: SymbolId(13): SymbolFlags(Export | Class) -rebuilt : SymbolId(11): SymbolFlags(Class) Symbol reference IDs mismatch for "b": after transform: SymbolId(13): [] rebuilt : SymbolId(11): [ReferenceId(7)] @@ -4209,9 +4101,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Symbol flags mismatch for "x": -after transform: SymbolId(1): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(2): SymbolFlags(BlockScopedVariable | ConstVariable) Reference symbol mismatch for "NS": after transform: SymbolId(0) "NS" rebuilt : SymbolId(0) "NS" @@ -4458,15 +4347,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4) Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Symbol flags mismatch for "c1": -after transform: SymbolId(1): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(2): SymbolFlags(BlockScopedVariable | ConstVariable) -Symbol flags mismatch for "c2": -after transform: SymbolId(2): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(3): SymbolFlags(BlockScopedVariable | ConstVariable) -Symbol flags mismatch for "c3": -after transform: SymbolId(3): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(4): SymbolFlags(BlockScopedVariable | ConstVariable) tasks/coverage/typescript/tests/cases/compiler/constEnumDeclarations.ts semantic error: Bindings mismatch: @@ -4645,8 +4525,8 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "ConstFooEnum": -after transform: SymbolId(0): SymbolFlags(Export | ConstEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(ConstEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/typescript/tests/cases/compiler/constEnumNamespaceReferenceCausesNoImport2.ts semantic error: Missing SymbolId: "ConstEnumOnlyModule" @@ -4668,7 +4548,7 @@ Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(StrictMode) rebuilt : ScopeId(2): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "ConstFooEnum": -after transform: SymbolId(1): SymbolFlags(Export | ConstEnum) +after transform: SymbolId(1): SymbolFlags(ConstEnum) rebuilt : SymbolId(2): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "ConstFooEnum": after transform: SymbolId(1): [] @@ -4682,8 +4562,8 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "MyConstEnum": -after transform: SymbolId(0): SymbolFlags(Export | ConstEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(ConstEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/typescript/tests/cases/compiler/constEnumOnlyModuleMerging.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 @@ -4696,8 +4576,8 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "A": -after transform: SymbolId(0): SymbolFlags(Export | ConstEnum) -rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(ConstEnum) +rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) tasks/coverage/typescript/tests/cases/compiler/constEnumPreserveEmitNamedExport2.ts semantic error: Bindings mismatch: @@ -4707,8 +4587,8 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "A": -after transform: SymbolId(0): SymbolFlags(Export | ConstEnum) -rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(ConstEnum) +rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) tasks/coverage/typescript/tests/cases/compiler/constEnumPreserveEmitReexport.ts semantic error: Bindings mismatch: @@ -4718,8 +4598,8 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "MyConstEnum": -after transform: SymbolId(0): SymbolFlags(Export | ConstEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(ConstEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/typescript/tests/cases/compiler/constEnumSyntheticNodesComments.ts semantic error: Bindings mismatch: @@ -4982,7 +4862,7 @@ Symbol reference IDs mismatch for "Comments": after transform: SymbolId(31): [ReferenceId(85), ReferenceId(87), ReferenceId(88), ReferenceId(89), ReferenceId(90), ReferenceId(91), ReferenceId(92), ReferenceId(93), ReferenceId(174)] rebuilt : SymbolId(3): [ReferenceId(83), ReferenceId(214), ReferenceId(215), ReferenceId(216), ReferenceId(217), ReferenceId(218), ReferenceId(219), ReferenceId(220)] Symbol flags mismatch for "E": -after transform: SymbolId(42): SymbolFlags(Export | ConstEnum) +after transform: SymbolId(42): SymbolFlags(ConstEnum) rebuilt : SymbolId(11): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "E": after transform: SymbolId(42): [] @@ -5210,15 +5090,9 @@ 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 for "MyClass": -after transform: SymbolId(3): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "MyClass": after transform: SymbolId(3): [] rebuilt : SymbolId(2): [ReferenceId(1)] -Symbol flags mismatch for "F": -after transform: SymbolId(5): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(4): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "F": after transform: SymbolId(5): [] rebuilt : SymbolId(4): [ReferenceId(3)] @@ -6147,8 +6021,8 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "Choice": -after transform: SymbolId(0): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(RegularEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "Choice": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2)] rebuilt : SymbolId(0): [ReferenceId(5), ReferenceId(6)] @@ -6303,15 +6177,9 @@ 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 for "XX": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "XX": after transform: SymbolId(2): [ReferenceId(6)] rebuilt : SymbolId(2): [ReferenceId(2)] -Symbol flags mismatch for "f": -after transform: SymbolId(5): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(4): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "f": after transform: SymbolId(5): [ReferenceId(4), ReferenceId(7)] rebuilt : SymbolId(4): [ReferenceId(4), ReferenceId(5), ReferenceId(7)] @@ -6576,9 +6444,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Binding symbols mismatch: after transform: ScopeId(2): [SymbolId(2), SymbolId(4)] rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] -Symbol flags mismatch for "c1": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "c1": after transform: SymbolId(2): [] rebuilt : SymbolId(4): [ReferenceId(1)] @@ -6608,9 +6473,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Binding symbols mismatch: after transform: ScopeId(2): [SymbolId(2), SymbolId(4)] rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] -Symbol flags mismatch for "c1": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "c1": after transform: SymbolId(2): [] rebuilt : SymbolId(4): [ReferenceId(1)] @@ -6782,57 +6644,48 @@ rebuilt : ScopeId(10): [] Bindings mismatch: after transform: ScopeId(12): ["T"] rebuilt : ScopeId(12): [] -Symbol flags mismatch for "A": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "A": after transform: SymbolId(1): [ReferenceId(1), ReferenceId(9), ReferenceId(16)] rebuilt : SymbolId(2): [ReferenceId(1)] -Symbol flags mismatch for "B": -after transform: SymbolId(3): SymbolFlags(Export | Class) -rebuilt : SymbolId(3): SymbolFlags(Class) Symbol reference IDs mismatch for "B": after transform: SymbolId(3): [ReferenceId(2), ReferenceId(10), ReferenceId(17)] rebuilt : SymbolId(3): [ReferenceId(3)] Symbol flags mismatch for "F": -after transform: SymbolId(4): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(4): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(4): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "F": after transform: SymbolId(4): [] rebuilt : SymbolId(4): [ReferenceId(5)] Symbol flags mismatch for "F2": -after transform: SymbolId(7): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(7): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(6): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "F2": after transform: SymbolId(7): [] rebuilt : SymbolId(6): [ReferenceId(7)] Symbol flags mismatch for "F3": -after transform: SymbolId(10): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(10): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(8): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "F3": after transform: SymbolId(10): [] rebuilt : SymbolId(8): [ReferenceId(9)] Symbol flags mismatch for "F4": -after transform: SymbolId(13): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(13): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(10): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "F4": after transform: SymbolId(13): [] rebuilt : SymbolId(10): [ReferenceId(11)] Symbol flags mismatch for "F5": -after transform: SymbolId(16): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(16): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(12): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "F5": after transform: SymbolId(16): [] rebuilt : SymbolId(12): [ReferenceId(13)] Symbol flags mismatch for "F6": -after transform: SymbolId(18): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(18): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(13): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "F6": after transform: SymbolId(18): [] rebuilt : SymbolId(13): [ReferenceId(15)] -Symbol flags mismatch for "D": -after transform: SymbolId(21): SymbolFlags(Export | Class) -rebuilt : SymbolId(15): SymbolFlags(Class) Symbol reference IDs mismatch for "D": after transform: SymbolId(21): [] rebuilt : SymbolId(15): [ReferenceId(18)] @@ -6963,15 +6816,9 @@ rebuilt : ScopeId(9): ScopeFlags(Function) Bindings mismatch: after transform: ScopeId(28): ["ModelType"] rebuilt : ScopeId(10): [] -Symbol flags mismatch for "AbstractElementController": -after transform: SymbolId(18): SymbolFlags(Export | Class) -rebuilt : SymbolId(6): SymbolFlags(Class) Symbol reference IDs mismatch for "AbstractElementController": after transform: SymbolId(18): [] rebuilt : SymbolId(6): [ReferenceId(2)] -Symbol flags mismatch for "AbstractCompositeElementController": -after transform: SymbolId(23): SymbolFlags(Export | Class) -rebuilt : SymbolId(14): SymbolFlags(Class) Symbol reference IDs mismatch for "AbstractCompositeElementController": after transform: SymbolId(23): [] rebuilt : SymbolId(14): [ReferenceId(15)] @@ -7009,9 +6856,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Binding symbols mismatch: after transform: ScopeId(2): [SymbolId(2), SymbolId(6)] rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] -Symbol flags mismatch for "c": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "c": after transform: SymbolId(2): [] rebuilt : SymbolId(4): [ReferenceId(1)] @@ -7095,9 +6939,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Symbol flags mismatch for "c": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "c": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -7151,9 +6992,6 @@ rebuilt : ScopeId(3): [SymbolId(5), SymbolId(6)] Scope flags mismatch: after transform: ScopeId(6): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(3): ScopeFlags(Function) -Symbol flags mismatch for "W": -after transform: SymbolId(5): SymbolFlags(Export | Class) -rebuilt : SymbolId(6): SymbolFlags(Class) Symbol reference IDs mismatch for "W": after transform: SymbolId(5): [] rebuilt : SymbolId(6): [ReferenceId(1)] @@ -7221,15 +7059,9 @@ rebuilt : ScopeId(5): [] Symbol reference IDs mismatch for "c": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2), ReferenceId(12), ReferenceId(13), ReferenceId(14)] rebuilt : SymbolId(0): [ReferenceId(6), ReferenceId(7), ReferenceId(14), ReferenceId(15)] -Symbol flags mismatch for "c": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(3): SymbolFlags(Class) Symbol reference IDs mismatch for "c": after transform: SymbolId(2): [] rebuilt : SymbolId(3): [ReferenceId(1)] -Symbol flags mismatch for "g": -after transform: SymbolId(3): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "g": after transform: SymbolId(3): [] rebuilt : SymbolId(4): [ReferenceId(3)] @@ -7284,15 +7116,9 @@ rebuilt : ScopeId(5): [] Symbol reference IDs mismatch for "c": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2), ReferenceId(7), ReferenceId(10)] rebuilt : SymbolId(0): [ReferenceId(6), ReferenceId(11)] -Symbol flags mismatch for "c": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(3): SymbolFlags(Class) Symbol reference IDs mismatch for "c": after transform: SymbolId(2): [] rebuilt : SymbolId(3): [ReferenceId(1)] -Symbol flags mismatch for "g": -after transform: SymbolId(3): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "g": after transform: SymbolId(3): [] rebuilt : SymbolId(4): [ReferenceId(3)] @@ -7341,9 +7167,6 @@ rebuilt : SymbolId(0): [] Symbol reference IDs mismatch for "g": after transform: SymbolId(1): [ReferenceId(1), ReferenceId(7), ReferenceId(8)] rebuilt : SymbolId(1): [] -Symbol flags mismatch for "c": -after transform: SymbolId(4): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "c": after transform: SymbolId(4): [] rebuilt : SymbolId(4): [ReferenceId(1)] @@ -7378,15 +7201,9 @@ rebuilt : ScopeId(5): [] Symbol reference IDs mismatch for "c": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2)] rebuilt : SymbolId(0): [ReferenceId(6), ReferenceId(7)] -Symbol flags mismatch for "c": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(3): SymbolFlags(Class) Symbol reference IDs mismatch for "c": after transform: SymbolId(2): [] rebuilt : SymbolId(3): [ReferenceId(1)] -Symbol flags mismatch for "g": -after transform: SymbolId(3): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "g": after transform: SymbolId(3): [] rebuilt : SymbolId(4): [ReferenceId(3)] @@ -7433,15 +7250,9 @@ rebuilt : ScopeId(5): [] Symbol reference IDs mismatch for "c": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2)] rebuilt : SymbolId(0): [ReferenceId(6), ReferenceId(7)] -Symbol flags mismatch for "c": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(3): SymbolFlags(Class) Symbol reference IDs mismatch for "c": after transform: SymbolId(2): [] rebuilt : SymbolId(3): [ReferenceId(1)] -Symbol flags mismatch for "g": -after transform: SymbolId(3): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "g": after transform: SymbolId(3): [] rebuilt : SymbolId(4): [ReferenceId(3)] @@ -7491,15 +7302,9 @@ rebuilt : ScopeId(5): [] Symbol reference IDs mismatch for "c": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2), ReferenceId(4), ReferenceId(8), ReferenceId(11), ReferenceId(14)] rebuilt : SymbolId(0): [ReferenceId(6), ReferenceId(8), ReferenceId(12), ReferenceId(15)] -Symbol flags mismatch for "c": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(3): SymbolFlags(Class) Symbol reference IDs mismatch for "c": after transform: SymbolId(2): [] rebuilt : SymbolId(3): [ReferenceId(1)] -Symbol flags mismatch for "g": -after transform: SymbolId(3): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "g": after transform: SymbolId(3): [] rebuilt : SymbolId(4): [ReferenceId(3)] @@ -7555,21 +7360,12 @@ rebuilt : ScopeId(4): ScopeFlags(Function) Symbol reference IDs mismatch for "private1": after transform: SymbolId(1): [ReferenceId(0), ReferenceId(1), ReferenceId(2), ReferenceId(3), ReferenceId(4), ReferenceId(5), ReferenceId(6)] rebuilt : SymbolId(2): [ReferenceId(6), ReferenceId(7)] -Symbol flags mismatch for "public1": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(3): SymbolFlags(Class) Symbol reference IDs mismatch for "public1": after transform: SymbolId(2): [ReferenceId(7), ReferenceId(8), ReferenceId(9), ReferenceId(10), ReferenceId(11), ReferenceId(12), ReferenceId(13)] rebuilt : SymbolId(3): [ReferenceId(1), ReferenceId(8), ReferenceId(9)] -Symbol flags mismatch for "public2": -after transform: SymbolId(4): SymbolFlags(Export | Class) -rebuilt : SymbolId(6): SymbolFlags(Class) Symbol reference IDs mismatch for "public2": after transform: SymbolId(4): [] rebuilt : SymbolId(6): [ReferenceId(3)] -Symbol flags mismatch for "c": -after transform: SymbolId(5): SymbolFlags(Export | Class) -rebuilt : SymbolId(7): SymbolFlags(Class) Symbol reference IDs mismatch for "c": after transform: SymbolId(5): [] rebuilt : SymbolId(7): [ReferenceId(13)] @@ -7626,51 +7422,27 @@ rebuilt : ScopeId(12): ScopeFlags(Function) Symbol reference IDs mismatch for "private1": after transform: SymbolId(1): [ReferenceId(0), ReferenceId(1), ReferenceId(2), ReferenceId(3)] rebuilt : SymbolId(2): [ReferenceId(2), ReferenceId(5)] -Symbol flags mismatch for "public1": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(3): SymbolFlags(Class) Symbol reference IDs mismatch for "public1": after transform: SymbolId(2): [ReferenceId(4), ReferenceId(5), ReferenceId(6), ReferenceId(7)] rebuilt : SymbolId(3): [ReferenceId(1), ReferenceId(8), ReferenceId(11)] -Symbol flags mismatch for "foo3": -after transform: SymbolId(7): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(8): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "foo3": after transform: SymbolId(7): [] rebuilt : SymbolId(8): [ReferenceId(4)] -Symbol flags mismatch for "foo4": -after transform: SymbolId(9): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(10): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "foo4": after transform: SymbolId(9): [] rebuilt : SymbolId(10): [ReferenceId(7)] -Symbol flags mismatch for "foo13": -after transform: SymbolId(15): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(16): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "foo13": after transform: SymbolId(15): [] rebuilt : SymbolId(16): [ReferenceId(10)] -Symbol flags mismatch for "foo14": -after transform: SymbolId(17): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(18): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "foo14": after transform: SymbolId(17): [] rebuilt : SymbolId(18): [ReferenceId(13)] -Symbol flags mismatch for "public2": -after transform: SymbolId(20): SymbolFlags(Export | Class) -rebuilt : SymbolId(22): SymbolFlags(Class) Symbol reference IDs mismatch for "public2": after transform: SymbolId(20): [] rebuilt : SymbolId(22): [ReferenceId(15)] -Symbol flags mismatch for "foo113": -after transform: SymbolId(25): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(27): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "foo113": after transform: SymbolId(25): [] rebuilt : SymbolId(27): [ReferenceId(20)] -Symbol flags mismatch for "foo114": -after transform: SymbolId(27): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(29): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "foo114": after transform: SymbolId(27): [] rebuilt : SymbolId(29): [ReferenceId(23)] @@ -7727,51 +7499,27 @@ rebuilt : ScopeId(12): ScopeFlags(Function) Symbol reference IDs mismatch for "private1": after transform: SymbolId(1): [ReferenceId(0), ReferenceId(1), ReferenceId(2), ReferenceId(3)] rebuilt : SymbolId(2): [ReferenceId(2), ReferenceId(5)] -Symbol flags mismatch for "public1": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(3): SymbolFlags(Class) Symbol reference IDs mismatch for "public1": after transform: SymbolId(2): [ReferenceId(4), ReferenceId(5), ReferenceId(6), ReferenceId(7)] rebuilt : SymbolId(3): [ReferenceId(1), ReferenceId(8), ReferenceId(11)] -Symbol flags mismatch for "foo3": -after transform: SymbolId(5): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(6): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "foo3": after transform: SymbolId(5): [] rebuilt : SymbolId(6): [ReferenceId(4)] -Symbol flags mismatch for "foo4": -after transform: SymbolId(6): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(7): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "foo4": after transform: SymbolId(6): [] rebuilt : SymbolId(7): [ReferenceId(7)] -Symbol flags mismatch for "foo13": -after transform: SymbolId(9): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(10): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "foo13": after transform: SymbolId(9): [] rebuilt : SymbolId(10): [ReferenceId(10)] -Symbol flags mismatch for "foo14": -after transform: SymbolId(10): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(11): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "foo14": after transform: SymbolId(10): [] rebuilt : SymbolId(11): [ReferenceId(13)] -Symbol flags mismatch for "public2": -after transform: SymbolId(12): SymbolFlags(Export | Class) -rebuilt : SymbolId(14): SymbolFlags(Class) Symbol reference IDs mismatch for "public2": after transform: SymbolId(12): [] rebuilt : SymbolId(14): [ReferenceId(15)] -Symbol flags mismatch for "foo113": -after transform: SymbolId(15): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(17): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "foo113": after transform: SymbolId(15): [] rebuilt : SymbolId(17): [ReferenceId(20)] -Symbol flags mismatch for "foo114": -after transform: SymbolId(16): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(18): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "foo114": after transform: SymbolId(16): [] rebuilt : SymbolId(18): [ReferenceId(23)] @@ -7869,14 +7617,11 @@ rebuilt : ScopeId(3): ["e"] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(0x0) rebuilt : ScopeId(3): ScopeFlags(Function) -Symbol flags mismatch for "c": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "c": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] Symbol flags mismatch for "e": -after transform: SymbolId(2): SymbolFlags(Export | RegularEnum) +after transform: SymbolId(2): SymbolFlags(RegularEnum) rebuilt : SymbolId(3): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "e": after transform: SymbolId(2): [] @@ -8003,15 +7748,9 @@ rebuilt : ScopeId(8): ScopeFlags(Function) Bindings mismatch: after transform: ScopeId(13): ["TValue"] rebuilt : ScopeId(9): [] -Symbol flags mismatch for "W": -after transform: SymbolId(7): SymbolFlags(Export | Class) -rebuilt : SymbolId(6): SymbolFlags(Class) Symbol reference IDs mismatch for "W": after transform: SymbolId(7): [] rebuilt : SymbolId(6): [ReferenceId(2)] -Symbol flags mismatch for "W": -after transform: SymbolId(11): SymbolFlags(Export | Class) -rebuilt : SymbolId(14): SymbolFlags(Class) Symbol reference IDs mismatch for "W": after transform: SymbolId(11): [] rebuilt : SymbolId(14): [ReferenceId(15)] @@ -8085,15 +7824,9 @@ rebuilt : ScopeId(6): [SymbolId(9), SymbolId(10)] Scope flags mismatch: after transform: ScopeId(10): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(6): ScopeFlags(Function) -Symbol flags mismatch for "EventManager": -after transform: SymbolId(5): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "EventManager": after transform: SymbolId(5): [] rebuilt : SymbolId(4): [ReferenceId(1)] -Symbol flags mismatch for "ContextMenu": -after transform: SymbolId(8): SymbolFlags(Export | Class) -rebuilt : SymbolId(10): SymbolFlags(Class) Symbol reference IDs mismatch for "ContextMenu": after transform: SymbolId(8): [] rebuilt : SymbolId(10): [ReferenceId(10)] @@ -8156,9 +7889,6 @@ rebuilt : ScopeId(4): ScopeFlags(Function) Scope children mismatch: after transform: ScopeId(8): [ScopeId(9), ScopeId(10)] rebuilt : ScopeId(4): [ScopeId(5)] -Symbol flags mismatch for "W": -after transform: SymbolId(8): SymbolFlags(Export | Class) -rebuilt : SymbolId(8): SymbolFlags(Class) Symbol reference IDs mismatch for "W": after transform: SymbolId(8): [] rebuilt : SymbolId(8): [ReferenceId(1)] @@ -8221,9 +7951,6 @@ rebuilt : ScopeId(4): [SymbolId(7), SymbolId(8)] Scope flags mismatch: after transform: ScopeId(8): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(4): ScopeFlags(Function) -Symbol flags mismatch for "W": -after transform: SymbolId(7): SymbolFlags(Export | Class) -rebuilt : SymbolId(8): SymbolFlags(Class) Symbol reference IDs mismatch for "W": after transform: SymbolId(7): [] rebuilt : SymbolId(8): [ReferenceId(1)] @@ -8286,9 +8013,6 @@ rebuilt : ScopeId(4): [SymbolId(7), SymbolId(8)] Scope flags mismatch: after transform: ScopeId(8): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(4): ScopeFlags(Function) -Symbol flags mismatch for "W": -after transform: SymbolId(7): SymbolFlags(Export | Class) -rebuilt : SymbolId(8): SymbolFlags(Class) Symbol reference IDs mismatch for "W": after transform: SymbolId(7): [] rebuilt : SymbolId(8): [ReferenceId(1)] @@ -8320,15 +8044,9 @@ rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] Symbol reference IDs mismatch for "C": after transform: SymbolId(1): [ReferenceId(0), ReferenceId(1), ReferenceId(10), ReferenceId(11)] rebuilt : SymbolId(2): [ReferenceId(2)] -Symbol flags mismatch for "E": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(3): SymbolFlags(Class) Symbol reference IDs mismatch for "E": after transform: SymbolId(2): [ReferenceId(2), ReferenceId(5)] rebuilt : SymbolId(3): [ReferenceId(1)] -Symbol flags mismatch for "D": -after transform: SymbolId(5): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "D": after transform: SymbolId(5): [] rebuilt : SymbolId(4): [ReferenceId(4)] @@ -8382,15 +8100,9 @@ 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)] -Symbol flags mismatch for "E": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(3): SymbolFlags(Class) Symbol reference IDs mismatch for "E": after transform: SymbolId(2): [ReferenceId(0), ReferenceId(2)] rebuilt : SymbolId(3): [ReferenceId(1)] -Symbol flags mismatch for "D": -after transform: SymbolId(5): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "D": after transform: SymbolId(5): [] rebuilt : SymbolId(4): [ReferenceId(3)] @@ -8594,8 +8306,8 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "EnumExample": -after transform: SymbolId(0): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(RegularEnum) +rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) tasks/coverage/typescript/tests/cases/compiler/declarationEmitComputedPropertyName1.ts semantic error: Bindings mismatch: @@ -8619,8 +8331,8 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "Enum": -after transform: SymbolId(0): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(RegularEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "Enum": after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] @@ -8688,7 +8400,7 @@ Scope children mismatch: after transform: ScopeId(2): [ScopeId(3)] rebuilt : ScopeId(1): [] Symbol flags mismatch for "TranslationKeyEnum": -after transform: SymbolId(1): SymbolFlags(BlockScopedVariable | ConstVariable | Export | TypeAlias) +after transform: SymbolId(1): SymbolFlags(BlockScopedVariable | ConstVariable | TypeAlias) rebuilt : SymbolId(2): SymbolFlags(BlockScopedVariable | ConstVariable) Symbol span mismatch for "TranslationKeyEnum": after transform: SymbolId(1): Span { start: 129, end: 147 } @@ -8719,8 +8431,8 @@ Bindings mismatch: after transform: ScopeId(4): ["a", "b", "p"] rebuilt : ScopeId(2): ["a", "b"] Symbol flags mismatch for "Point": -after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export | Interface) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export) +after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Interface) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable) Symbol span mismatch for "Point": after transform: SymbolId(0): Span { start: 17, end: 22 } rebuilt : SymbolId(0): Span { start: 171, end: 176 } @@ -8731,8 +8443,8 @@ Symbol redeclarations mismatch for "Point": after transform: SymbolId(0): [Span { start: 171, end: 176 }] rebuilt : SymbolId(0): [] Symbol flags mismatch for "Rect": -after transform: SymbolId(1): SymbolFlags(BlockScopedVariable | ConstVariable | Export | Interface) -rebuilt : SymbolId(3): SymbolFlags(BlockScopedVariable | ConstVariable | Export) +after transform: SymbolId(1): SymbolFlags(BlockScopedVariable | ConstVariable | Interface) +rebuilt : SymbolId(3): SymbolFlags(BlockScopedVariable | ConstVariable) Symbol span mismatch for "Rect": after transform: SymbolId(1): Span { start: 93, end: 97 } rebuilt : SymbolId(3): Span { start: 237, end: 241 } @@ -8837,21 +8549,12 @@ rebuilt : ScopeId(1): [ScopeId(2), ScopeId(3), ScopeId(4)] Bindings mismatch: after transform: ScopeId(5): ["T"] rebuilt : ScopeId(4): [] -Symbol flags mismatch for "SomeClass": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "SomeClass": after transform: SymbolId(2): [ReferenceId(4)] rebuilt : SymbolId(2): [ReferenceId(1), ReferenceId(5)] -Symbol flags mismatch for "Derived": -after transform: SymbolId(3): SymbolFlags(Export | Class) -rebuilt : SymbolId(3): SymbolFlags(Class) Symbol reference IDs mismatch for "Derived": after transform: SymbolId(3): [] rebuilt : SymbolId(3): [ReferenceId(4)] -Symbol flags mismatch for "getClass": -after transform: SymbolId(4): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(4): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "getClass": after transform: SymbolId(4): [ReferenceId(1)] rebuilt : SymbolId(4): [ReferenceId(2), ReferenceId(7)] @@ -9089,8 +8792,8 @@ semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3), ScopeId(4), ScopeId(5), ScopeId(6)] rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] Symbol flags mismatch for "A": -after transform: SymbolId(0): SymbolFlags(Export | Class | NameSpaceModule | Ambient) -rebuilt : SymbolId(1): SymbolFlags(Export | Class) +after transform: SymbolId(0): SymbolFlags(Class | NameSpaceModule | Ambient) +rebuilt : SymbolId(1): SymbolFlags(Class) Symbol span mismatch for "A": after transform: SymbolId(0): Span { start: 25, end: 26 } rebuilt : SymbolId(1): Span { start: 78, end: 79 } @@ -9098,8 +8801,8 @@ Symbol redeclarations mismatch for "A": after transform: SymbolId(0): [Span { start: 78, end: 79 }] rebuilt : SymbolId(1): [] Symbol flags mismatch for "Y": -after transform: SymbolId(3): SymbolFlags(Export | Class | NameSpaceModule | Ambient) -rebuilt : SymbolId(2): SymbolFlags(Export | Class) +after transform: SymbolId(3): SymbolFlags(Class | NameSpaceModule | Ambient) +rebuilt : SymbolId(2): SymbolFlags(Class) Symbol span mismatch for "Y": after transform: SymbolId(3): Span { start: 128, end: 129 } rebuilt : SymbolId(2): Span { start: 149, end: 150 } @@ -9137,8 +8840,8 @@ Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] Symbol flags mismatch for "Color": -after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export | TypeAlias) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export) +after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | TypeAlias) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable) Symbol reference IDs mismatch for "Color": after transform: SymbolId(0): [ReferenceId(1), ReferenceId(2), ReferenceId(3)] rebuilt : SymbolId(0): [] @@ -9178,9 +8881,6 @@ rebuilt : ScopeId(0): [SymbolId(0)] Binding symbols mismatch: after transform: ScopeId(1): [SymbolId(1), SymbolId(2)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] -Symbol flags mismatch for "c": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "c": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -9221,7 +8921,7 @@ Binding symbols mismatch: after transform: ScopeId(4): [SymbolId(2), SymbolId(3)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Symbol flags mismatch for "biz": -after transform: SymbolId(2): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(2): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(2): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "biz": after transform: SymbolId(2): [] @@ -9266,8 +8966,8 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "Test": -after transform: SymbolId(0): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(RegularEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "Test": after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] @@ -9546,8 +9246,8 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "TestEnum": -after transform: SymbolId(0): SymbolFlags(Export | ConstEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(ConstEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "TestEnum": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(3), ReferenceId(4)] rebuilt : SymbolId(0): [ReferenceId(3), ReferenceId(4)] @@ -9841,9 +9541,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Symbol flags mismatch for "obj": -after transform: SymbolId(2): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(3): SymbolFlags(BlockScopedVariable | ConstVariable) tasks/coverage/typescript/tests/cases/compiler/declarationImportTypeAliasInferredAndEmittable.ts semantic error: Bindings mismatch: @@ -10131,10 +9828,7 @@ after transform: ["ClassDecorator", "MethodDecorator"] rebuilt : [] tasks/coverage/typescript/tests/cases/compiler/decoratorMetadataTypeOnlyExport.ts -semantic error: Symbol flags mismatch for "Foo": -after transform: SymbolId(0): SymbolFlags(Export | Class) -rebuilt : SymbolId(0): SymbolFlags(Class) -Symbol reference IDs mismatch for "Foo": +semantic error: Symbol reference IDs mismatch for "Foo": after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] @@ -10301,17 +9995,14 @@ rebuilt : ScopeId(1): [] Binding symbols mismatch: after transform: ScopeId(6): [SymbolId(11), SymbolId(12), SymbolId(13)] rebuilt : ScopeId(3): [SymbolId(5), SymbolId(6), SymbolId(7)] -Symbol flags mismatch for "create": -after transform: SymbolId(12): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(7): SymbolFlags(BlockScopedVariable | ConstVariable) tasks/coverage/typescript/tests/cases/compiler/defaultNamedExportWithType1.ts semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Symbol flags mismatch for "Foo": -after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export | TypeAlias) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export) +after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | TypeAlias) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable) Symbol span mismatch for "Foo": after transform: SymbolId(0): Span { start: 5, end: 8 } rebuilt : SymbolId(0): Span { start: 32, end: 35 } @@ -10324,8 +10015,8 @@ semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Symbol flags mismatch for "Foo": -after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export | TypeAlias) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export) +after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | TypeAlias) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable) Symbol span mismatch for "Foo": after transform: SymbolId(0): Span { start: 5, end: 8 } rebuilt : SymbolId(0): Span { start: 25, end: 28 } @@ -10338,8 +10029,8 @@ semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Symbol flags mismatch for "Foo": -after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export | Interface) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export) +after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Interface) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable) Symbol span mismatch for "Foo": after transform: SymbolId(0): Span { start: 10, end: 13 } rebuilt : SymbolId(0): Span { start: 30, end: 33 } @@ -10352,8 +10043,8 @@ semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Symbol flags mismatch for "Foo": -after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export | Interface) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export) +after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Interface) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable) Symbol span mismatch for "Foo": after transform: SymbolId(0): Span { start: 10, end: 13 } rebuilt : SymbolId(0): Span { start: 23, end: 26 } @@ -11124,7 +10815,7 @@ Binding symbols mismatch: after transform: ScopeId(3): [SymbolId(3), SymbolId(7)] rebuilt : ScopeId(3): [SymbolId(5), SymbolId(6)] Symbol flags mismatch for "foo": -after transform: SymbolId(3): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(3): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(6): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "foo": after transform: SymbolId(3): [] @@ -11199,9 +10890,6 @@ rebuilt : SymbolId(0): [ReferenceId(9), ReferenceId(12), ReferenceId(13)] Symbol redeclarations mismatch for "Foo": after transform: SymbolId(0): [Span { start: 117, end: 120 }] rebuilt : SymbolId(0): [] -Symbol flags mismatch for "___call": -after transform: SymbolId(5): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(3): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "___call": after transform: SymbolId(5): [] rebuilt : SymbolId(3): [ReferenceId(11)] @@ -11214,9 +10902,6 @@ rebuilt : SymbolId(4): [ReferenceId(16), ReferenceId(17)] Symbol redeclarations mismatch for "Bar": after transform: SymbolId(6): [Span { start: 235, end: 238 }] rebuilt : SymbolId(4): [] -Symbol flags mismatch for "__call": -after transform: SymbolId(7): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(6): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "__call": after transform: SymbolId(7): [] rebuilt : SymbolId(6): [ReferenceId(15)] @@ -11394,9 +11079,6 @@ rebuilt : ScopeId(0): [ScopeId(1)] Binding symbols mismatch: after transform: ScopeId(2): [SymbolId(2), SymbolId(3)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] -Symbol flags mismatch for "Point": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "Point": after transform: SymbolId(2): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -11588,9 +11270,6 @@ rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] Binding symbols mismatch: after transform: ScopeId(3): [SymbolId(3), SymbolId(8)] rebuilt : ScopeId(3): [SymbolId(5), SymbolId(6)] -Symbol flags mismatch for "_Person": -after transform: SymbolId(3): SymbolFlags(Export | Class) -rebuilt : SymbolId(6): SymbolFlags(Class) Symbol reference IDs mismatch for "_Person": after transform: SymbolId(3): [] rebuilt : SymbolId(6): [ReferenceId(2)] @@ -11772,8 +11451,8 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "Enum": -after transform: SymbolId(0): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(RegularEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/typescript/tests/cases/compiler/enumFromExternalModule.ts semantic error: Bindings mismatch: @@ -11783,8 +11462,8 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "Mode": -after transform: SymbolId(0): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(RegularEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/typescript/tests/cases/compiler/enumIndexer.ts semantic error: Bindings mismatch: @@ -11813,8 +11492,8 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "MouseButton": -after transform: SymbolId(0): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(RegularEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/typescript/tests/cases/compiler/enumLiteralUnionNotWidened.ts semantic error: Bindings mismatch: @@ -14069,9 +13748,6 @@ rebuilt : ScopeId(0): [SymbolId(0)] Binding symbols mismatch: after transform: ScopeId(1): [SymbolId(1), SymbolId(2)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] -Symbol flags mismatch for "c": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "c": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -14114,15 +13790,9 @@ rebuilt : ScopeId(13): [SymbolId(3), SymbolId(4), SymbolId(5)] Binding symbols mismatch: after transform: ScopeId(26): [SymbolId(6), SymbolId(7), SymbolId(9)] rebuilt : ScopeId(26): [SymbolId(7), SymbolId(8), SymbolId(9)] -Symbol flags mismatch for "c3": -after transform: SymbolId(3): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "c3": after transform: SymbolId(3): [ReferenceId(4)] rebuilt : SymbolId(4): [ReferenceId(3), ReferenceId(6)] -Symbol flags mismatch for "c3": -after transform: SymbolId(6): SymbolFlags(Export | Class) -rebuilt : SymbolId(8): SymbolFlags(Class) Symbol reference IDs mismatch for "c3": after transform: SymbolId(6): [ReferenceId(8)] rebuilt : SymbolId(8): [ReferenceId(11), ReferenceId(14)] @@ -14154,18 +13824,6 @@ rebuilt : ScopeId(1): [SymbolId(7), SymbolId(8), SymbolId(9), SymbolId(10 Binding symbols mismatch: after transform: ScopeId(2): [SymbolId(14), SymbolId(15), SymbolId(16), SymbolId(17), SymbolId(18), SymbolId(19), SymbolId(21)] rebuilt : ScopeId(2): [SymbolId(15), SymbolId(16), SymbolId(17), SymbolId(18), SymbolId(19), SymbolId(20), SymbolId(21)] -Symbol flags mismatch for "k": -after transform: SymbolId(7): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(8): SymbolFlags(BlockScopedVariable | ConstVariable) -Symbol flags mismatch for "l": -after transform: SymbolId(8): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(9): SymbolFlags(BlockScopedVariable | ConstVariable) -Symbol flags mismatch for "k": -after transform: SymbolId(14): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(16): SymbolFlags(BlockScopedVariable | ConstVariable) -Symbol flags mismatch for "l": -after transform: SymbolId(15): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(17): SymbolFlags(BlockScopedVariable | ConstVariable) Reference symbol mismatch for "m1": after transform: SymbolId(6) "m1" rebuilt : SymbolId(6) "m1" @@ -14232,13 +13890,13 @@ Scope flags mismatch: after transform: ScopeId(8): ScopeFlags(StrictMode) rebuilt : ScopeId(8): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "e1": -after transform: SymbolId(0): SymbolFlags(Export | ConstEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(ConstEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) Symbol flags mismatch for "e2": after transform: SymbolId(4): SymbolFlags(ConstEnum) rebuilt : SymbolId(2): SymbolFlags(FunctionScopedVariable) Symbol flags mismatch for "e3": -after transform: SymbolId(11): SymbolFlags(Export | ConstEnum) +after transform: SymbolId(11): SymbolFlags(ConstEnum) rebuilt : SymbolId(8): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "e3": after transform: SymbolId(11): [ReferenceId(4)] @@ -14247,7 +13905,7 @@ Symbol flags mismatch for "e4": after transform: SymbolId(15): SymbolFlags(ConstEnum) rebuilt : SymbolId(10): SymbolFlags(BlockScopedVariable) Symbol flags mismatch for "e5": -after transform: SymbolId(24): SymbolFlags(Export | ConstEnum) +after transform: SymbolId(24): SymbolFlags(ConstEnum) rebuilt : SymbolId(18): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "e5": after transform: SymbolId(24): [ReferenceId(8)] @@ -14318,13 +13976,13 @@ Scope flags mismatch: after transform: ScopeId(8): ScopeFlags(StrictMode) rebuilt : ScopeId(8): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "e1": -after transform: SymbolId(0): SymbolFlags(Export | ConstEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(ConstEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) Symbol flags mismatch for "e2": after transform: SymbolId(4): SymbolFlags(ConstEnum) rebuilt : SymbolId(2): SymbolFlags(FunctionScopedVariable) Symbol flags mismatch for "e3": -after transform: SymbolId(11): SymbolFlags(Export | ConstEnum) +after transform: SymbolId(11): SymbolFlags(ConstEnum) rebuilt : SymbolId(8): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "e3": after transform: SymbolId(11): [ReferenceId(4)] @@ -14333,7 +13991,7 @@ Symbol flags mismatch for "e4": after transform: SymbolId(15): SymbolFlags(ConstEnum) rebuilt : SymbolId(10): SymbolFlags(BlockScopedVariable) Symbol flags mismatch for "e5": -after transform: SymbolId(24): SymbolFlags(Export | ConstEnum) +after transform: SymbolId(24): SymbolFlags(ConstEnum) rebuilt : SymbolId(18): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "e5": after transform: SymbolId(24): [ReferenceId(8)] @@ -14404,13 +14062,13 @@ Scope flags mismatch: after transform: ScopeId(8): ScopeFlags(StrictMode) rebuilt : ScopeId(8): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "e1": -after transform: SymbolId(0): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(RegularEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) Symbol flags mismatch for "e2": after transform: SymbolId(4): SymbolFlags(RegularEnum) rebuilt : SymbolId(2): SymbolFlags(FunctionScopedVariable) Symbol flags mismatch for "e3": -after transform: SymbolId(11): SymbolFlags(Export | RegularEnum) +after transform: SymbolId(11): SymbolFlags(RegularEnum) rebuilt : SymbolId(8): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "e3": after transform: SymbolId(11): [ReferenceId(4)] @@ -14419,7 +14077,7 @@ Symbol flags mismatch for "e4": after transform: SymbolId(15): SymbolFlags(RegularEnum) rebuilt : SymbolId(10): SymbolFlags(BlockScopedVariable) Symbol flags mismatch for "e5": -after transform: SymbolId(24): SymbolFlags(Export | RegularEnum) +after transform: SymbolId(24): SymbolFlags(RegularEnum) rebuilt : SymbolId(18): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "e5": after transform: SymbolId(24): [ReferenceId(8)] @@ -14454,7 +14112,7 @@ Binding symbols mismatch: after transform: ScopeId(6): [SymbolId(6), SymbolId(7), SymbolId(9)] rebuilt : ScopeId(6): [SymbolId(7), SymbolId(8), SymbolId(9)] Symbol flags mismatch for "foo3": -after transform: SymbolId(3): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(3): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(4): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "foo3": after transform: SymbolId(3): [ReferenceId(4)] @@ -14463,7 +14121,7 @@ Symbol flags mismatch for "foo4": after transform: SymbolId(4): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(5): SymbolFlags(FunctionScopedVariable) Symbol flags mismatch for "foo3": -after transform: SymbolId(6): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(6): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(8): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "foo3": after transform: SymbolId(6): [ReferenceId(8)] @@ -14823,12 +14481,9 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(StrictMode) rebuilt : ScopeId(2): ScopeFlags(StrictMode | Function) -Symbol flags mismatch for "A": -after transform: SymbolId(1): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(2): SymbolFlags(BlockScopedVariable | ConstVariable) Symbol flags mismatch for "B": -after transform: SymbolId(2): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(3): SymbolFlags(FunctionScopedVariable | Export) +after transform: SymbolId(2): SymbolFlags(RegularEnum) +rebuilt : SymbolId(3): SymbolFlags(FunctionScopedVariable) Reference symbol mismatch for "A": after transform: SymbolId(0) "A" rebuilt : SymbolId(0) "A" @@ -14915,7 +14570,7 @@ Binding symbols mismatch: after transform: ScopeId(4): [SymbolId(3), SymbolId(5)] rebuilt : ScopeId(4): [SymbolId(4), SymbolId(5)] Symbol flags mismatch for "B": -after transform: SymbolId(1): SymbolFlags(Export | Class | NameSpaceModule | ValueModule) +after transform: SymbolId(1): SymbolFlags(Class | NameSpaceModule | ValueModule) rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "B": after transform: SymbolId(1): [] @@ -14923,9 +14578,6 @@ rebuilt : SymbolId(2): [ReferenceId(1), ReferenceId(3), ReferenceId(4)] Symbol redeclarations mismatch for "B": after transform: SymbolId(1): [Span { start: 84, end: 85 }] rebuilt : SymbolId(2): [] -Symbol flags mismatch for "b": -after transform: SymbolId(3): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(5): SymbolFlags(BlockScopedVariable | ConstVariable) Reference symbol mismatch for "A": after transform: SymbolId(0) "A" rebuilt : SymbolId(0) "A" @@ -15019,7 +14671,7 @@ Binding symbols mismatch: after transform: ScopeId(4): [SymbolId(3), SymbolId(5)] rebuilt : ScopeId(4): [SymbolId(4), SymbolId(5)] Symbol flags mismatch for "B": -after transform: SymbolId(1): SymbolFlags(Export | Class | NameSpaceModule | ValueModule) +after transform: SymbolId(1): SymbolFlags(Class | NameSpaceModule | ValueModule) rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "B": after transform: SymbolId(1): [] @@ -15027,9 +14679,6 @@ rebuilt : SymbolId(2): [ReferenceId(1), ReferenceId(3), ReferenceId(4)] Symbol redeclarations mismatch for "B": after transform: SymbolId(1): [Span { start: 84, end: 85 }] rebuilt : SymbolId(2): [] -Symbol flags mismatch for "b": -after transform: SymbolId(3): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(5): SymbolFlags(BlockScopedVariable | ConstVariable) Reference symbol mismatch for "A": after transform: SymbolId(0) "A" rebuilt : SymbolId(0) "A" @@ -15141,26 +14790,20 @@ Scope flags mismatch: after transform: ScopeId(9): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(8): ScopeFlags(Function) Symbol flags mismatch for "DialogResult": -after transform: SymbolId(3): SymbolFlags(Export | ConstEnum) +after transform: SymbolId(3): SymbolFlags(ConstEnum) rebuilt : SymbolId(6): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "DialogResult": after transform: SymbolId(3): [] rebuilt : SymbolId(6): [ReferenceId(16)] -Symbol flags mismatch for "someExportedFunction": -after transform: SymbolId(12): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(8): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "someExportedFunction": after transform: SymbolId(12): [] rebuilt : SymbolId(8): [ReferenceId(18)] Symbol flags mismatch for "MessageBoxButtons": -after transform: SymbolId(13): SymbolFlags(Export | ConstEnum) +after transform: SymbolId(13): SymbolFlags(ConstEnum) rebuilt : SymbolId(9): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "MessageBoxButtons": after transform: SymbolId(13): [] rebuilt : SymbolId(9): [ReferenceId(33)] -Symbol flags mismatch for "SomeUsagesOfTheseConsts": -after transform: SymbolId(24): SymbolFlags(Export | Class) -rebuilt : SymbolId(14): SymbolFlags(Class) Symbol reference IDs mismatch for "SomeUsagesOfTheseConsts": after transform: SymbolId(24): [] rebuilt : SymbolId(14): [ReferenceId(51)] @@ -15226,14 +14869,6 @@ Reference flags mismatch for "X": after transform: ReferenceId(2): ReferenceFlags(Read | Type) rebuilt : ReferenceId(1): ReferenceFlags(Read) -tasks/coverage/typescript/tests/cases/compiler/exportObjectRest.ts -semantic error: Symbol flags mismatch for "x": -after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(2): SymbolFlags(BlockScopedVariable | ConstVariable) -Symbol flags mismatch for "rest": -after transform: SymbolId(1): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(3): SymbolFlags(BlockScopedVariable | ConstVariable) - tasks/coverage/typescript/tests/cases/compiler/exportPrivateType.ts semantic error: Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript Namespaces exporting non-const are not supported by Babel. Change to const or see: https://babeljs.io/docs/en/babel-plugin-transform-typescript @@ -15245,8 +14880,8 @@ semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol flags mismatch for "Foo": -after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | Export | Function | TypeAlias) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | Function | TypeAlias) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Function) Symbol span mismatch for "Foo": after transform: SymbolId(0): Span { start: 12, end: 15 } rebuilt : SymbolId(0): Span { start: 73, end: 76 } @@ -15439,27 +15074,15 @@ rebuilt : ScopeId(6): [SymbolId(7), SymbolId(8)] Scope flags mismatch: after transform: ScopeId(6): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(6): ScopeFlags(Function) -Symbol flags mismatch for "B": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "B": after transform: SymbolId(1): [ReferenceId(0)] rebuilt : SymbolId(2): [ReferenceId(1), ReferenceId(2)] -Symbol flags mismatch for "C": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(3): SymbolFlags(Class) Symbol reference IDs mismatch for "C": after transform: SymbolId(2): [] rebuilt : SymbolId(3): [ReferenceId(4)] -Symbol flags mismatch for "C2": -after transform: SymbolId(3): SymbolFlags(Export | Class) -rebuilt : SymbolId(5): SymbolFlags(Class) Symbol reference IDs mismatch for "C2": after transform: SymbolId(3): [] rebuilt : SymbolId(5): [ReferenceId(9)] -Symbol flags mismatch for "C3": -after transform: SymbolId(5): SymbolFlags(Export | Class) -rebuilt : SymbolId(8): SymbolFlags(Class) Symbol reference IDs mismatch for "C3": after transform: SymbolId(5): [] rebuilt : SymbolId(8): [ReferenceId(14)] @@ -15626,10 +15249,10 @@ Scope children mismatch: after transform: ScopeId(2): [ScopeId(3), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(2): [ScopeId(3)] Symbol flags mismatch for "Foo": -after transform: SymbolId(0): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(RegularEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) Symbol flags mismatch for "f": -after transform: SymbolId(6): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(6): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(4): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "f": after transform: SymbolId(6): [] @@ -15666,10 +15289,10 @@ Scope children mismatch: after transform: ScopeId(2): [ScopeId(3), ScopeId(4), ScopeId(5)] rebuilt : ScopeId(2): [ScopeId(3)] Symbol flags mismatch for "Foo": -after transform: SymbolId(0): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(RegularEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) Symbol flags mismatch for "f": -after transform: SymbolId(6): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(6): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(4): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "f": after transform: SymbolId(6): [] @@ -15720,9 +15343,6 @@ rebuilt : ScopeId(4): [SymbolId(6), SymbolId(7)] Scope flags mismatch: after transform: ScopeId(5): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(4): ScopeFlags(Function) -Symbol flags mismatch for "EventEmitter": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "EventEmitter": after transform: SymbolId(2): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -15968,9 +15588,6 @@ rebuilt : ScopeId(12): [SymbolId(37), SymbolId(38)] Scope flags mismatch: after transform: ScopeId(14): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(12): ScopeFlags(Function) -Symbol flags mismatch for "foo": -after transform: SymbolId(39): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(38): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "foo": after transform: SymbolId(39): [] rebuilt : SymbolId(38): [ReferenceId(15)] @@ -16002,9 +15619,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Symbol flags mismatch for "c1": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "c1": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -16140,15 +15754,9 @@ rebuilt : SymbolId(0): [ReferenceId(6), ReferenceId(7), ReferenceId(15), Symbol redeclarations mismatch for "foo": after transform: SymbolId(0): [Span { start: 56, end: 59 }, Span { start: 108, end: 111 }] rebuilt : SymbolId(0): [] -Symbol flags mismatch for "f": -after transform: SymbolId(4): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(6): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "f": after transform: SymbolId(4): [] rebuilt : SymbolId(6): [ReferenceId(1)] -Symbol flags mismatch for "g": -after transform: SymbolId(6): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(10): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "g": after transform: SymbolId(6): [] rebuilt : SymbolId(10): [ReferenceId(10)] @@ -16427,9 +16035,6 @@ rebuilt : ScopeId(3): ScopeFlags(Function) Symbol reference IDs mismatch for "C": after transform: SymbolId(0): [ReferenceId(1)] rebuilt : SymbolId(0): [] -Symbol flags mismatch for "f": -after transform: SymbolId(4): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(4): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "f": after transform: SymbolId(4): [] rebuilt : SymbolId(4): [ReferenceId(2)] @@ -16598,27 +16203,15 @@ rebuilt : ScopeId(4): [] Bindings mismatch: after transform: ScopeId(7): ["T"] rebuilt : ScopeId(5): [] -Symbol flags mismatch for "C1": -after transform: SymbolId(3): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "C1": after transform: SymbolId(3): [ReferenceId(3)] rebuilt : SymbolId(2): [ReferenceId(1), ReferenceId(4)] -Symbol flags mismatch for "A": -after transform: SymbolId(5): SymbolFlags(Export | Class) -rebuilt : SymbolId(3): SymbolFlags(Class) Symbol reference IDs mismatch for "A": after transform: SymbolId(5): [ReferenceId(4), ReferenceId(8), ReferenceId(11), ReferenceId(17)] rebuilt : SymbolId(3): [ReferenceId(3)] -Symbol flags mismatch for "B": -after transform: SymbolId(7): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "B": after transform: SymbolId(7): [ReferenceId(6)] rebuilt : SymbolId(4): [ReferenceId(6)] -Symbol flags mismatch for "D": -after transform: SymbolId(9): SymbolFlags(Export | Class) -rebuilt : SymbolId(5): SymbolFlags(Class) Symbol reference IDs mismatch for "D": after transform: SymbolId(9): [] rebuilt : SymbolId(5): [ReferenceId(12)] @@ -16650,9 +16243,6 @@ rebuilt : ScopeId(1): ScopeFlags(Function) Bindings mismatch: after transform: ScopeId(4): ["T"] rebuilt : ScopeId(2): [] -Symbol flags mismatch for "Foo": -after transform: SymbolId(4): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "Foo": after transform: SymbolId(4): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -16760,15 +16350,9 @@ rebuilt : ScopeId(12): [] Bindings mismatch: after transform: ScopeId(38): ["TValue"] rebuilt : ScopeId(14): [] -Symbol flags mismatch for "Validator": -after transform: SymbolId(13): SymbolFlags(Export | Class) -rebuilt : SymbolId(6): SymbolFlags(Class) Symbol reference IDs mismatch for "Validator": after transform: SymbolId(13): [] rebuilt : SymbolId(6): [ReferenceId(1)] -Symbol flags mismatch for "Validator": -after transform: SymbolId(21): SymbolFlags(Export | Class) -rebuilt : SymbolId(17): SymbolFlags(Class) Symbol reference IDs mismatch for "Validator": after transform: SymbolId(21): [] rebuilt : SymbolId(17): [ReferenceId(15)] @@ -16820,15 +16404,9 @@ rebuilt : ScopeId(23): ["data", "entry"] Bindings mismatch: after transform: ScopeId(24): ["T", "entry"] rebuilt : ScopeId(24): ["entry"] -Symbol flags mismatch for "List": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "List": after transform: SymbolId(1): [ReferenceId(0), ReferenceId(2), ReferenceId(10), ReferenceId(18), ReferenceId(28), ReferenceId(46), ReferenceId(48), ReferenceId(50), ReferenceId(52), ReferenceId(61), ReferenceId(63), ReferenceId(72), ReferenceId(74), ReferenceId(82), ReferenceId(86), ReferenceId(88), ReferenceId(90), ReferenceId(98), ReferenceId(100), ReferenceId(102), ReferenceId(110), ReferenceId(112)] rebuilt : SymbolId(2): [ReferenceId(52), ReferenceId(53), ReferenceId(59)] -Symbol flags mismatch for "ListFactory": -after transform: SymbolId(19): SymbolFlags(Export | Class) -rebuilt : SymbolId(19): SymbolFlags(Class) Symbol reference IDs mismatch for "ListFactory": after transform: SymbolId(19): [ReferenceId(4), ReferenceId(7)] rebuilt : SymbolId(19): [ReferenceId(2), ReferenceId(74)] @@ -16906,15 +16484,9 @@ rebuilt : ScopeId(1): ScopeFlags(Function) Bindings mismatch: after transform: ScopeId(2): ["T"] rebuilt : ScopeId(2): [] -Symbol flags mismatch for "B": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "B": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] -Symbol flags mismatch for "A": -after transform: SymbolId(3): SymbolFlags(Export | Class) -rebuilt : SymbolId(3): SymbolFlags(Class) Symbol reference IDs mismatch for "A": after transform: SymbolId(3): [] rebuilt : SymbolId(3): [ReferenceId(3)] @@ -17024,15 +16596,9 @@ rebuilt : ScopeId(6): [SymbolId(8), SymbolId(9)] Scope flags mismatch: after transform: ScopeId(10): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(6): ScopeFlags(Function) -Symbol flags mismatch for "Tween": -after transform: SymbolId(4): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "Tween": after transform: SymbolId(4): [] rebuilt : SymbolId(4): [ReferenceId(2)] -Symbol flags mismatch for "NumberTween": -after transform: SymbolId(8): SymbolFlags(Export | Class) -rebuilt : SymbolId(9): SymbolFlags(Class) Symbol reference IDs mismatch for "NumberTween": after transform: SymbolId(8): [] rebuilt : SymbolId(9): [ReferenceId(12)] @@ -17097,15 +16663,9 @@ rebuilt : ScopeId(6): [SymbolId(8), SymbolId(9)] Scope flags mismatch: after transform: ScopeId(10): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(6): ScopeFlags(Function) -Symbol flags mismatch for "Tween": -after transform: SymbolId(4): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "Tween": after transform: SymbolId(4): [] rebuilt : SymbolId(4): [ReferenceId(2)] -Symbol flags mismatch for "NumberTween": -after transform: SymbolId(8): SymbolFlags(Export | Class) -rebuilt : SymbolId(9): SymbolFlags(Class) Symbol reference IDs mismatch for "NumberTween": after transform: SymbolId(8): [] rebuilt : SymbolId(9): [ReferenceId(12)] @@ -17428,7 +16988,7 @@ Scope flags mismatch: after transform: ScopeId(6): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(6): ScopeFlags(Function) Symbol flags mismatch for "C": -after transform: SymbolId(4): SymbolFlags(Export | Class | NameSpaceModule | ValueModule) +after transform: SymbolId(4): SymbolFlags(Class | NameSpaceModule | ValueModule) rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "C": after transform: SymbolId(4): [ReferenceId(3)] @@ -17436,9 +16996,6 @@ rebuilt : SymbolId(4): [ReferenceId(2), ReferenceId(5), ReferenceId(6)] Symbol redeclarations mismatch for "C": after transform: SymbolId(4): [Span { start: 100, end: 101 }] rebuilt : SymbolId(4): [] -Symbol flags mismatch for "X": -after transform: SymbolId(5): SymbolFlags(Export | Class) -rebuilt : SymbolId(6): SymbolFlags(Class) Symbol reference IDs mismatch for "X": after transform: SymbolId(5): [] rebuilt : SymbolId(6): [ReferenceId(4)] @@ -17489,7 +17046,7 @@ Scope flags mismatch: after transform: ScopeId(8): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(8): ScopeFlags(Function) Symbol flags mismatch for "C": -after transform: SymbolId(4): SymbolFlags(Export | Class | NameSpaceModule | ValueModule) +after transform: SymbolId(4): SymbolFlags(Class | NameSpaceModule | ValueModule) rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "C": after transform: SymbolId(4): [ReferenceId(3)] @@ -17497,9 +17054,6 @@ rebuilt : SymbolId(4): [ReferenceId(2), ReferenceId(5), ReferenceId(6)] Symbol redeclarations mismatch for "C": after transform: SymbolId(4): [Span { start: 100, end: 101 }] rebuilt : SymbolId(4): [] -Symbol flags mismatch for "X": -after transform: SymbolId(5): SymbolFlags(Export | Class) -rebuilt : SymbolId(6): SymbolFlags(Class) Symbol reference IDs mismatch for "X": after transform: SymbolId(5): [] rebuilt : SymbolId(6): [ReferenceId(4)] @@ -17601,20 +17155,14 @@ Bindings mismatch: after transform: ScopeId(10): ["A", "B", "C"] rebuilt : ScopeId(7): [] Symbol flags mismatch for "PullSymbolVisibility": -after transform: SymbolId(4): SymbolFlags(Export | RegularEnum) +after transform: SymbolId(4): SymbolFlags(RegularEnum) rebuilt : SymbolId(2): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "PullSymbolVisibility": after transform: SymbolId(4): [] rebuilt : SymbolId(2): [ReferenceId(6)] -Symbol flags mismatch for "PullSymbol": -after transform: SymbolId(7): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "PullSymbol": after transform: SymbolId(7): [ReferenceId(1), ReferenceId(8)] rebuilt : SymbolId(4): [ReferenceId(9), ReferenceId(10)] -Symbol flags mismatch for "PullTypeSymbol": -after transform: SymbolId(18): SymbolFlags(Export | Class) -rebuilt : SymbolId(9): SymbolFlags(Class) Symbol reference IDs mismatch for "PullTypeSymbol": after transform: SymbolId(18): [ReferenceId(3)] rebuilt : SymbolId(9): [ReferenceId(12)] @@ -17909,9 +17457,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(8): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Symbol flags mismatch for "MyClass": -after transform: SymbolId(14): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "MyClass": after transform: SymbolId(14): [] rebuilt : SymbolId(2): [ReferenceId(2)] @@ -17967,9 +17512,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Symbol flags mismatch for "f": -after transform: SymbolId(1): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(2): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "f": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(3)] @@ -18251,7 +17793,7 @@ Binding symbols mismatch: after transform: ScopeId(1): [SymbolId(1), SymbolId(2)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Symbol flags mismatch for "foo": -after transform: SymbolId(1): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(1): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(2): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "foo": after transform: SymbolId(1): [] @@ -18288,13 +17830,13 @@ Scope flags mismatch: after transform: ScopeId(4): ScopeFlags(StrictMode) rebuilt : ScopeId(4): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "getThing": -after transform: SymbolId(2): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(2): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(4): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "getThing": after transform: SymbolId(2): [] rebuilt : SymbolId(4): [ReferenceId(1)] Symbol flags mismatch for "WhichThing": -after transform: SymbolId(3): SymbolFlags(Export | ConstEnum) +after transform: SymbolId(3): SymbolFlags(ConstEnum) rebuilt : SymbolId(5): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "WhichThing": after transform: SymbolId(3): [] @@ -18341,16 +17883,16 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "MyEnum": -after transform: SymbolId(0): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(RegularEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/typescript/tests/cases/compiler/importElisionExportNonExportAndDefault.ts semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol flags mismatch for "MyFunction": -after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export | Interface) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export) +after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Interface) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable) Symbol span mismatch for "MyFunction": after transform: SymbolId(0): Span { start: 10, end: 20 } rebuilt : SymbolId(0): Span { start: 52, end: 62 } @@ -18523,9 +18065,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Binding symbols mismatch: after transform: ScopeId(2): [SymbolId(2), SymbolId(5)] rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] -Symbol flags mismatch for "UserServices": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "UserServices": after transform: SymbolId(2): [] rebuilt : SymbolId(4): [ReferenceId(1)] @@ -18558,9 +18097,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Binding symbols mismatch: after transform: ScopeId(2): [SymbolId(2), SymbolId(4)] rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] -Symbol flags mismatch for "UserServices": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "UserServices": after transform: SymbolId(2): [] rebuilt : SymbolId(4): [ReferenceId(1)] @@ -18634,9 +18170,6 @@ rebuilt : ScopeId(3): [SymbolId(5), SymbolId(6)] Binding symbols mismatch: after transform: ScopeId(4): [SymbolId(4), SymbolId(8)] rebuilt : ScopeId(4): [SymbolId(7), SymbolId(8)] -Symbol flags mismatch for "ReferredTo": -after transform: SymbolId(4): SymbolFlags(Export | Class) -rebuilt : SymbolId(8): SymbolFlags(Class) Symbol reference IDs mismatch for "ReferredTo": after transform: SymbolId(4): [] rebuilt : SymbolId(8): [ReferenceId(1)] @@ -19760,27 +19293,15 @@ rebuilt : ScopeId(4): ScopeFlags(Function) Bindings mismatch: after transform: ScopeId(6): ["T"] rebuilt : ScopeId(6): [] -Symbol flags mismatch for "C1": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "C1": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] -Symbol flags mismatch for "C2": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(3): SymbolFlags(Class) Symbol reference IDs mismatch for "C2": after transform: SymbolId(2): [] rebuilt : SymbolId(3): [ReferenceId(3)] -Symbol flags mismatch for "D1": -after transform: SymbolId(5): SymbolFlags(Export | Class) -rebuilt : SymbolId(6): SymbolFlags(Class) Symbol reference IDs mismatch for "D1": after transform: SymbolId(5): [] rebuilt : SymbolId(6): [ReferenceId(8)] -Symbol flags mismatch for "D2": -after transform: SymbolId(6): SymbolFlags(Export | Class) -rebuilt : SymbolId(7): SymbolFlags(Class) Symbol reference IDs mismatch for "D2": after transform: SymbolId(6): [] rebuilt : SymbolId(7): [ReferenceId(11)] @@ -19939,9 +19460,6 @@ rebuilt : ScopeId(4): ["_consumer", "g", "use"] Scope flags mismatch: after transform: ScopeId(4): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(4): ScopeFlags(Function) -Symbol flags mismatch for "UsefulClass": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "UsefulClass": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -19971,9 +19489,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Symbol flags mismatch for "Foo": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "Foo": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -20012,9 +19527,6 @@ rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(2): ScopeFlags(Function) -Symbol flags mismatch for "C": -after transform: SymbolId(4): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "C": after transform: SymbolId(4): [] rebuilt : SymbolId(4): [ReferenceId(2)] @@ -20035,9 +19547,6 @@ rebuilt : ScopeId(3): [SymbolId(3), SymbolId(4)] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(3): ScopeFlags(Function) -Symbol flags mismatch for "tungsten": -after transform: SymbolId(3): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(4): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "tungsten": after transform: SymbolId(3): [] rebuilt : SymbolId(4): [ReferenceId(3)] @@ -20256,9 +19765,6 @@ rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(2): ScopeFlags(Function) -Symbol flags mismatch for "createB": -after transform: SymbolId(2): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(4): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "createB": after transform: SymbolId(2): [] rebuilt : SymbolId(4): [ReferenceId(1)] @@ -20300,9 +19806,6 @@ rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(2): ScopeFlags(Function) -Symbol flags mismatch for "createB": -after transform: SymbolId(2): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(4): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "createB": after transform: SymbolId(2): [] rebuilt : SymbolId(4): [ReferenceId(1)] @@ -20342,9 +19845,6 @@ rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(2): ScopeFlags(Function) -Symbol flags mismatch for "createB": -after transform: SymbolId(2): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(4): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "createB": after transform: SymbolId(2): [] rebuilt : SymbolId(4): [ReferenceId(1)] @@ -20381,9 +19881,6 @@ rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(2): ScopeFlags(Function) -Symbol flags mismatch for "createB": -after transform: SymbolId(2): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(4): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "createB": after transform: SymbolId(2): [] rebuilt : SymbolId(4): [ReferenceId(1)] @@ -20422,9 +19919,6 @@ rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(2): ScopeFlags(Function) -Symbol flags mismatch for "createB": -after transform: SymbolId(2): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(4): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "createB": after transform: SymbolId(2): [] rebuilt : SymbolId(4): [ReferenceId(1)] @@ -20463,9 +19957,6 @@ rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(2): ScopeFlags(Function) -Symbol flags mismatch for "createB": -after transform: SymbolId(2): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(4): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "createB": after transform: SymbolId(2): [] rebuilt : SymbolId(4): [ReferenceId(1)] @@ -20610,9 +20101,6 @@ rebuilt : ScopeId(1): ScopeFlags(Function) Scope children mismatch: after transform: ScopeId(2): [ScopeId(3), ScopeId(4)] rebuilt : ScopeId(1): [ScopeId(2)] -Symbol flags mismatch for "n": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "n": after transform: SymbolId(2): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -20707,9 +20195,6 @@ rebuilt : ScopeId(0): [SymbolId(0), SymbolId(4), SymbolId(5), SymbolId(6) Binding symbols mismatch: after transform: ScopeId(1): [SymbolId(1), SymbolId(6)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] -Symbol flags mismatch for "c": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "c": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(2)] @@ -20734,9 +20219,6 @@ rebuilt : ScopeId(0): [SymbolId(0), SymbolId(4), SymbolId(5), SymbolId(6) Binding symbols mismatch: after transform: ScopeId(1): [SymbolId(1), SymbolId(6)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] -Symbol flags mismatch for "c": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "c": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(2)] @@ -20777,7 +20259,7 @@ Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(StrictMode) rebuilt : ScopeId(2): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "weekend": -after transform: SymbolId(1): SymbolFlags(Export | RegularEnum) +after transform: SymbolId(1): SymbolFlags(RegularEnum) rebuilt : SymbolId(2): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "weekend": after transform: SymbolId(1): [] @@ -20810,7 +20292,7 @@ Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(StrictMode) rebuilt : ScopeId(2): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "weekend": -after transform: SymbolId(1): SymbolFlags(Export | RegularEnum) +after transform: SymbolId(1): SymbolFlags(RegularEnum) rebuilt : SymbolId(2): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "weekend": after transform: SymbolId(1): [] @@ -20848,7 +20330,7 @@ Binding symbols mismatch: after transform: ScopeId(1): [SymbolId(1), SymbolId(6)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Symbol flags mismatch for "foo": -after transform: SymbolId(1): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(1): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(2): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "foo": after transform: SymbolId(1): [] @@ -20878,7 +20360,7 @@ Binding symbols mismatch: after transform: ScopeId(1): [SymbolId(1), SymbolId(6)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Symbol flags mismatch for "foo": -after transform: SymbolId(1): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(1): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(2): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "foo": after transform: SymbolId(1): [] @@ -20925,9 +20407,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Binding symbols mismatch: after transform: ScopeId(2): [SymbolId(2), SymbolId(6)] rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] -Symbol flags mismatch for "c": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "c": after transform: SymbolId(2): [] rebuilt : SymbolId(4): [ReferenceId(1)] @@ -20961,9 +20440,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Binding symbols mismatch: after transform: ScopeId(2): [SymbolId(2), SymbolId(6)] rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] -Symbol flags mismatch for "c": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "c": after transform: SymbolId(2): [] rebuilt : SymbolId(4): [ReferenceId(1)] @@ -21206,19 +20682,19 @@ Scope flags mismatch: after transform: ScopeId(29): ScopeFlags(0x0) rebuilt : ScopeId(6): ScopeFlags(Function) Symbol flags mismatch for "A": -after transform: SymbolId(28): SymbolFlags(Export | ConstEnum) +after transform: SymbolId(28): SymbolFlags(ConstEnum) rebuilt : SymbolId(7): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "A": after transform: SymbolId(28): [ReferenceId(100)] rebuilt : SymbolId(7): [ReferenceId(17)] Symbol flags mismatch for "B": -after transform: SymbolId(35): SymbolFlags(Export | ConstEnum) +after transform: SymbolId(35): SymbolFlags(ConstEnum) rebuilt : SymbolId(9): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "B": after transform: SymbolId(35): [ReferenceId(101)] rebuilt : SymbolId(9): [ReferenceId(28)] Symbol flags mismatch for "C": -after transform: SymbolId(40): SymbolFlags(Export | ConstEnum) +after transform: SymbolId(40): SymbolFlags(ConstEnum) rebuilt : SymbolId(11): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "C": after transform: SymbolId(40): [ReferenceId(102)] @@ -21502,57 +20978,30 @@ rebuilt : ScopeId(19): [] Bindings mismatch: after transform: ScopeId(23): ["T", "v"] rebuilt : ScopeId(20): ["v"] -Symbol flags mismatch for "createValidator1": -after transform: SymbolId(1): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(2): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "createValidator1": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(2)] -Symbol flags mismatch for "createValidator2": -after transform: SymbolId(4): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(5): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "createValidator2": after transform: SymbolId(4): [] rebuilt : SymbolId(5): [ReferenceId(7)] -Symbol flags mismatch for "createValidator3": -after transform: SymbolId(7): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(8): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "createValidator3": after transform: SymbolId(7): [] rebuilt : SymbolId(8): [ReferenceId(12)] -Symbol flags mismatch for "createValidator4": -after transform: SymbolId(10): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(11): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "createValidator4": after transform: SymbolId(10): [] rebuilt : SymbolId(11): [ReferenceId(17)] -Symbol flags mismatch for "createValidator5": -after transform: SymbolId(13): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(14): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "createValidator5": after transform: SymbolId(13): [] rebuilt : SymbolId(14): [ReferenceId(22)] -Symbol flags mismatch for "createValidator6": -after transform: SymbolId(16): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(17): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "createValidator6": after transform: SymbolId(16): [] rebuilt : SymbolId(17): [ReferenceId(27)] -Symbol flags mismatch for "createValidator7": -after transform: SymbolId(19): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(20): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "createValidator7": after transform: SymbolId(19): [] rebuilt : SymbolId(20): [ReferenceId(32)] -Symbol flags mismatch for "createValidator8": -after transform: SymbolId(22): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(23): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "createValidator8": after transform: SymbolId(22): [] rebuilt : SymbolId(23): [ReferenceId(37)] -Symbol flags mismatch for "T": -after transform: SymbolId(25): SymbolFlags(Export | Class) -rebuilt : SymbolId(26): SymbolFlags(Class) Symbol reference IDs mismatch for "T": after transform: SymbolId(25): [] rebuilt : SymbolId(26): [ReferenceId(42)] @@ -21608,8 +21057,8 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "Foo": -after transform: SymbolId(0): SymbolFlags(Export | ConstEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(ConstEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/typescript/tests/cases/compiler/isolatedModulesImportConstEnumTypeOnly.ts semantic error: Bindings mismatch: @@ -21619,8 +21068,8 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "Foo": -after transform: SymbolId(0): SymbolFlags(Export | ConstEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(ConstEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/typescript/tests/cases/compiler/isolatedModulesNonAmbientConstEnum.ts semantic error: Bindings mismatch: @@ -21747,8 +21196,8 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "E": -after transform: SymbolId(0): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(RegularEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/typescript/tests/cases/compiler/jsonFileImportChecksCallCorrectlyTwice.ts semantic error: Bindings mismatch: @@ -21866,13 +21315,13 @@ Binding symbols mismatch: after transform: ScopeId(7): [SymbolId(3), SymbolId(5), SymbolId(10)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(4)] Symbol flags mismatch for "isElement": -after transform: SymbolId(3): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(3): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(2): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "isElement": after transform: SymbolId(3): [] rebuilt : SymbolId(2): [ReferenceId(3)] Symbol flags mismatch for "createElement": -after transform: SymbolId(5): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(5): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(4): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "createElement": after transform: SymbolId(5): [] @@ -21924,13 +21373,13 @@ Binding symbols mismatch: after transform: ScopeId(7): [SymbolId(3), SymbolId(5), SymbolId(10)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(4)] Symbol flags mismatch for "isElement": -after transform: SymbolId(3): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(3): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(2): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "isElement": after transform: SymbolId(3): [] rebuilt : SymbolId(2): [ReferenceId(3)] Symbol flags mismatch for "createElement": -after transform: SymbolId(5): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(5): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(4): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "createElement": after transform: SymbolId(5): [] @@ -21969,13 +21418,13 @@ Binding symbols mismatch: after transform: ScopeId(7): [SymbolId(3), SymbolId(5), SymbolId(10)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(4)] Symbol flags mismatch for "isElement": -after transform: SymbolId(3): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(3): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(2): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "isElement": after transform: SymbolId(3): [] rebuilt : SymbolId(2): [ReferenceId(3)] Symbol flags mismatch for "createElement": -after transform: SymbolId(5): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(5): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(4): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "createElement": after transform: SymbolId(5): [] @@ -22109,8 +21558,8 @@ 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 for "X": -after transform: SymbolId(0): SymbolFlags(Export | Class | NameSpaceModule) -rebuilt : SymbolId(1): SymbolFlags(Export | Class) +after transform: SymbolId(0): SymbolFlags(Class | NameSpaceModule) +rebuilt : SymbolId(1): SymbolFlags(Class) Symbol redeclarations mismatch for "X": after transform: SymbolId(0): [Span { start: 106, end: 107 }] rebuilt : SymbolId(1): [] @@ -22378,36 +21827,21 @@ rebuilt : ScopeId(6): ["data"] Bindings mismatch: after transform: ScopeId(7): ["T"] rebuilt : ScopeId(7): [] -Symbol flags mismatch for "Buffer": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "Buffer": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(5)] -Symbol flags mismatch for "ListRemoveEntry": -after transform: SymbolId(5): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(6): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "ListRemoveEntry": after transform: SymbolId(5): [ReferenceId(31)] rebuilt : SymbolId(6): [ReferenceId(8), ReferenceId(15)] -Symbol flags mismatch for "ListMakeHead": -after transform: SymbolId(8): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(8): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "ListMakeHead": after transform: SymbolId(8): [ReferenceId(0)] rebuilt : SymbolId(8): [ReferenceId(0), ReferenceId(10)] -Symbol flags mismatch for "ListMakeEntry": -after transform: SymbolId(10): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(9): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "ListMakeEntry": after transform: SymbolId(10): [ReferenceId(25)] rebuilt : SymbolId(9): [ReferenceId(12), ReferenceId(13)] Symbol reference IDs mismatch for "List": after transform: SymbolId(13): [ReferenceId(2), ReferenceId(4), ReferenceId(10), ReferenceId(12), ReferenceId(15), ReferenceId(18), ReferenceId(20), ReferenceId(23), ReferenceId(27), ReferenceId(29)] rebuilt : SymbolId(11): [] -Symbol flags mismatch for "Line": -after transform: SymbolId(17): SymbolFlags(Export | Class) -rebuilt : SymbolId(14): SymbolFlags(Class) Symbol reference IDs mismatch for "Line": after transform: SymbolId(17): [ReferenceId(1), ReferenceId(3), ReferenceId(5), ReferenceId(6), ReferenceId(7)] rebuilt : SymbolId(14): [ReferenceId(1), ReferenceId(17)] @@ -22508,14 +21942,11 @@ Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(3): ScopeFlags(Function) Symbol flags mismatch for "Key": -after transform: SymbolId(1): SymbolFlags(Export | RegularEnum) +after transform: SymbolId(1): SymbolFlags(RegularEnum) rebuilt : SymbolId(2): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "Key": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(10)] -Symbol flags mismatch for "foo": -after transform: SymbolId(8): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(6): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "foo": after transform: SymbolId(8): [ReferenceId(2), ReferenceId(4), ReferenceId(6)] rebuilt : SymbolId(6): [ReferenceId(14), ReferenceId(15), ReferenceId(17), ReferenceId(19)] @@ -22992,9 +22423,6 @@ rebuilt : ScopeId(5): [SymbolId(6), SymbolId(7)] Binding symbols mismatch: after transform: ScopeId(6): [SymbolId(5), SymbolId(9)] rebuilt : ScopeId(6): [SymbolId(8), SymbolId(9)] -Symbol flags mismatch for "B": -after transform: SymbolId(5): SymbolFlags(Export | Class) -rebuilt : SymbolId(9): SymbolFlags(Class) Symbol reference IDs mismatch for "B": after transform: SymbolId(5): [] rebuilt : SymbolId(9): [ReferenceId(8)] @@ -23060,9 +22488,6 @@ rebuilt : ScopeId(6): [SymbolId(9), SymbolId(10)] Scope flags mismatch: after transform: ScopeId(6): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(6): ScopeFlags(Function) -Symbol flags mismatch for "buz": -after transform: SymbolId(3): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(6): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "buz": after transform: SymbolId(3): [] rebuilt : SymbolId(6): [ReferenceId(1)] @@ -23128,9 +22553,6 @@ rebuilt : ScopeId(6): [SymbolId(9), SymbolId(10)] Scope flags mismatch: after transform: ScopeId(6): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(6): ScopeFlags(Function) -Symbol flags mismatch for "buz": -after transform: SymbolId(2): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(4): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "buz": after transform: SymbolId(2): [] rebuilt : SymbolId(4): [ReferenceId(1)] @@ -23236,15 +22658,9 @@ rebuilt : ScopeId(9): [SymbolId(15), SymbolId(16)] Scope flags mismatch: after transform: ScopeId(9): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(9): ScopeFlags(Function) -Symbol flags mismatch for "foo": -after transform: SymbolId(5): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(10): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "foo": after transform: SymbolId(5): [] rebuilt : SymbolId(10): [ReferenceId(1)] -Symbol flags mismatch for "bar": -after transform: SymbolId(8): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(16): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "bar": after transform: SymbolId(8): [] rebuilt : SymbolId(16): [ReferenceId(16)] @@ -23294,21 +22710,12 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(5), SymbolId(6) Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Symbol flags mismatch for "inject": -after transform: SymbolId(1): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(2): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "inject": after transform: SymbolId(1): [ReferenceId(0)] rebuilt : SymbolId(2): [ReferenceId(1), ReferenceId(4)] -Symbol flags mismatch for "Leg": -after transform: SymbolId(4): SymbolFlags(Export | Class) -rebuilt : SymbolId(5): SymbolFlags(Class) Symbol reference IDs mismatch for "Leg": after transform: SymbolId(4): [ReferenceId(1)] rebuilt : SymbolId(5): [ReferenceId(3)] -Symbol flags mismatch for "Person": -after transform: SymbolId(5): SymbolFlags(Export | Class) -rebuilt : SymbolId(6): SymbolFlags(Class) Symbol reference IDs mismatch for "Person": after transform: SymbolId(5): [] rebuilt : SymbolId(6): [ReferenceId(6)] @@ -23400,9 +22807,6 @@ rebuilt : ScopeId(16): ["E"] Scope flags mismatch: after transform: ScopeId(16): ScopeFlags(0x0) rebuilt : ScopeId(16): ScopeFlags(Function) -Symbol flags mismatch for "exhibitBug": -after transform: SymbolId(20): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(16): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "exhibitBug": after transform: SymbolId(20): [] rebuilt : SymbolId(16): [ReferenceId(11)] @@ -23697,21 +23101,12 @@ rebuilt : ScopeId(16): ["_B", "c", "i"] Scope flags mismatch: after transform: ScopeId(18): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(16): ScopeFlags(Function) -Symbol flags mismatch for "Mode": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "Mode": after transform: SymbolId(2): [] rebuilt : SymbolId(2): [ReferenceId(1)] -Symbol flags mismatch for "Bar": -after transform: SymbolId(17): SymbolFlags(Export | Class) -rebuilt : SymbolId(19): SymbolFlags(Class) Symbol reference IDs mismatch for "Bar": after transform: SymbolId(17): [] rebuilt : SymbolId(19): [ReferenceId(8)] -Symbol flags mismatch for "A1C1": -after transform: SymbolId(23): SymbolFlags(Export | Class) -rebuilt : SymbolId(25): SymbolFlags(Class) Symbol reference IDs mismatch for "A1C1": after transform: SymbolId(23): [] rebuilt : SymbolId(25): [ReferenceId(14)] @@ -24000,8 +23395,8 @@ Scope flags mismatch: after transform: ScopeId(8): ScopeFlags(StrictMode) rebuilt : ScopeId(8): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "E1": -after transform: SymbolId(6): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(6): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(6): SymbolFlags(RegularEnum) +rebuilt : SymbolId(6): SymbolFlags(BlockScopedVariable) Symbol flags mismatch for "E2": after transform: SymbolId(9): SymbolFlags(RegularEnum) rebuilt : SymbolId(9): SymbolFlags(FunctionScopedVariable) @@ -24111,33 +23506,18 @@ rebuilt : ScopeId(15): [SymbolId(22), SymbolId(23), SymbolId(24)] Scope flags mismatch: after transform: ScopeId(17): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(15): ScopeFlags(Function) -Symbol flags mismatch for "PositionedElement": -after transform: SymbolId(5): SymbolFlags(Export | Class) -rebuilt : SymbolId(6): SymbolFlags(Class) Symbol reference IDs mismatch for "PositionedElement": after transform: SymbolId(5): [ReferenceId(3)] rebuilt : SymbolId(6): [ReferenceId(8)] -Symbol flags mismatch for "PositionedToken": -after transform: SymbolId(7): SymbolFlags(Export | Class) -rebuilt : SymbolId(8): SymbolFlags(Class) Symbol reference IDs mismatch for "PositionedToken": after transform: SymbolId(7): [] rebuilt : SymbolId(8): [ReferenceId(10)] -Symbol flags mismatch for "SyntaxNode": -after transform: SymbolId(11): SymbolFlags(Export | Class) -rebuilt : SymbolId(13): SymbolFlags(Class) Symbol reference IDs mismatch for "SyntaxNode": after transform: SymbolId(11): [] rebuilt : SymbolId(13): [ReferenceId(15)] -Symbol flags mismatch for "childIndex": -after transform: SymbolId(19): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(23): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "childIndex": after transform: SymbolId(19): [] rebuilt : SymbolId(23): [ReferenceId(19)] -Symbol flags mismatch for "VariableWidthTokenWithTrailingTrivia": -after transform: SymbolId(20): SymbolFlags(Export | Class) -rebuilt : SymbolId(24): SymbolFlags(Class) Symbol reference IDs mismatch for "VariableWidthTokenWithTrailingTrivia": after transform: SymbolId(20): [] rebuilt : SymbolId(24): [ReferenceId(24)] @@ -24176,9 +23556,6 @@ rebuilt : ScopeId(4): [SymbolId(3), SymbolId(4)] Scope flags mismatch: after transform: ScopeId(4): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(4): ScopeFlags(Function) -Symbol flags mismatch for "B": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "B": after transform: SymbolId(2): [] rebuilt : SymbolId(4): [ReferenceId(3)] @@ -24307,15 +23684,9 @@ rebuilt : ScopeId(3): [SymbolId(3), SymbolId(4)] Scope flags mismatch: after transform: ScopeId(4): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(3): ScopeFlags(Function) -Symbol flags mismatch for "C1": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "C1": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] -Symbol flags mismatch for "C2": -after transform: SymbolId(3): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "C2": after transform: SymbolId(3): [] rebuilt : SymbolId(4): [ReferenceId(5)] @@ -24353,15 +23724,9 @@ rebuilt : ScopeId(3): ScopeFlags(Function) Scope children mismatch: after transform: ScopeId(3): [ScopeId(4), ScopeId(5)] rebuilt : ScopeId(3): [ScopeId(4)] -Symbol flags mismatch for "C1": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "C1": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] -Symbol flags mismatch for "C2": -after transform: SymbolId(3): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "C2": after transform: SymbolId(3): [] rebuilt : SymbolId(4): [ReferenceId(5)] @@ -24566,8 +23931,8 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "Animals": -after transform: SymbolId(0): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(RegularEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/typescript/tests/cases/compiler/moduleScopingBug.ts semantic error: Missing SymbolId: "M" @@ -24646,15 +24011,9 @@ rebuilt : ScopeId(5): ["_M2", "bar"] Scope flags mismatch: after transform: ScopeId(5): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(5): ScopeFlags(Function) -Symbol flags mismatch for "bar": -after transform: SymbolId(2): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(4): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "bar": after transform: SymbolId(2): [] rebuilt : SymbolId(4): [ReferenceId(1)] -Symbol flags mismatch for "bar": -after transform: SymbolId(6): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(9): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "bar": after transform: SymbolId(6): [] rebuilt : SymbolId(9): [ReferenceId(9)] @@ -24714,15 +24073,9 @@ rebuilt : ScopeId(5): ["_M2", "bar"] Scope flags mismatch: after transform: ScopeId(5): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(5): ScopeFlags(Function) -Symbol flags mismatch for "bar": -after transform: SymbolId(2): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(4): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "bar": after transform: SymbolId(2): [] rebuilt : SymbolId(4): [ReferenceId(1)] -Symbol flags mismatch for "bar": -after transform: SymbolId(6): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(9): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "bar": after transform: SymbolId(6): [] rebuilt : SymbolId(9): [ReferenceId(9)] @@ -24785,15 +24138,9 @@ rebuilt : ScopeId(5): ScopeFlags(Function) Scope children mismatch: after transform: ScopeId(5): [ScopeId(6), ScopeId(7)] rebuilt : ScopeId(5): [ScopeId(6)] -Symbol flags mismatch for "bar": -after transform: SymbolId(2): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(4): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "bar": after transform: SymbolId(2): [] rebuilt : SymbolId(4): [ReferenceId(1)] -Symbol flags mismatch for "bar": -after transform: SymbolId(6): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(9): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "bar": after transform: SymbolId(6): [] rebuilt : SymbolId(9): [ReferenceId(9)] @@ -24853,15 +24200,9 @@ rebuilt : ScopeId(5): ["_M2", "bar"] Scope flags mismatch: after transform: ScopeId(5): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(5): ScopeFlags(Function) -Symbol flags mismatch for "bar": -after transform: SymbolId(2): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(4): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "bar": after transform: SymbolId(2): [] rebuilt : SymbolId(4): [ReferenceId(1)] -Symbol flags mismatch for "bar": -after transform: SymbolId(6): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(9): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "bar": after transform: SymbolId(6): [] rebuilt : SymbolId(9): [ReferenceId(9)] @@ -25066,9 +24407,6 @@ rebuilt : ScopeId(3): [SymbolId(3)] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(3): ScopeFlags(Function) -Symbol flags mismatch for "C": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "C": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -25127,9 +24465,6 @@ rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(2): ScopeFlags(Function) -Symbol flags mismatch for "C": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "C": after transform: SymbolId(2): [] rebuilt : SymbolId(4): [ReferenceId(1)] @@ -25758,9 +25093,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Symbol flags mismatch for "C": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "C": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(2)] @@ -25800,8 +25132,8 @@ Scope flags mismatch: after transform: ScopeId(14): ScopeFlags(StrictMode) rebuilt : ScopeId(5): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "GatewayOpcode": -after transform: SymbolId(14): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(5): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(14): SymbolFlags(RegularEnum) +rebuilt : SymbolId(5): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "GatewayOpcode": after transform: SymbolId(14): [ReferenceId(6), ReferenceId(11), ReferenceId(13), ReferenceId(16), ReferenceId(27), ReferenceId(28)] rebuilt : SymbolId(5): [] @@ -27516,90 +26848,48 @@ rebuilt : SymbolId(1): [ReferenceId(4), ReferenceId(5), ReferenceId(6), R Symbol reference IDs mismatch for "privateClass": after transform: SymbolId(35): [ReferenceId(60), ReferenceId(61), ReferenceId(62), ReferenceId(63), ReferenceId(64), ReferenceId(65), ReferenceId(66), ReferenceId(67), ReferenceId(76), ReferenceId(77), ReferenceId(78), ReferenceId(79), ReferenceId(80), ReferenceId(81), ReferenceId(82), ReferenceId(83), ReferenceId(92), ReferenceId(93), ReferenceId(94), ReferenceId(95), ReferenceId(100), ReferenceId(101), ReferenceId(102), ReferenceId(103)] rebuilt : SymbolId(36): [ReferenceId(22), ReferenceId(23), ReferenceId(24), ReferenceId(25), ReferenceId(34), ReferenceId(35), ReferenceId(36), ReferenceId(37)] -Symbol flags mismatch for "publicClass": -after transform: SymbolId(36): SymbolFlags(Export | Class) -rebuilt : SymbolId(37): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClass": after transform: SymbolId(36): [ReferenceId(68), ReferenceId(69), ReferenceId(70), ReferenceId(71), ReferenceId(72), ReferenceId(73), ReferenceId(74), ReferenceId(75), ReferenceId(84), ReferenceId(85), ReferenceId(86), ReferenceId(87), ReferenceId(88), ReferenceId(89), ReferenceId(90), ReferenceId(91), ReferenceId(96), ReferenceId(97), ReferenceId(98), ReferenceId(99), ReferenceId(104), ReferenceId(105), ReferenceId(106), ReferenceId(107)] rebuilt : SymbolId(37): [ReferenceId(21), ReferenceId(28), ReferenceId(29), ReferenceId(30), ReferenceId(31), ReferenceId(38), ReferenceId(39), ReferenceId(40), ReferenceId(41)] -Symbol flags mismatch for "publicClassWithWithPrivateGetAccessorTypes": -after transform: SymbolId(37): SymbolFlags(Export | Class) -rebuilt : SymbolId(38): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithWithPrivateGetAccessorTypes": after transform: SymbolId(37): [] rebuilt : SymbolId(38): [ReferenceId(27)] -Symbol flags mismatch for "publicClassWithWithPublicGetAccessorTypes": -after transform: SymbolId(38): SymbolFlags(Export | Class) -rebuilt : SymbolId(39): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithWithPublicGetAccessorTypes": after transform: SymbolId(38): [] rebuilt : SymbolId(39): [ReferenceId(33)] -Symbol flags mismatch for "publicClassWithWithPrivateSetAccessorTypes": -after transform: SymbolId(41): SymbolFlags(Export | Class) -rebuilt : SymbolId(42): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithWithPrivateSetAccessorTypes": after transform: SymbolId(41): [] rebuilt : SymbolId(42): [ReferenceId(43)] -Symbol flags mismatch for "publicClassWithWithPublicSetAccessorTypes": -after transform: SymbolId(46): SymbolFlags(Export | Class) -rebuilt : SymbolId(47): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithWithPublicSetAccessorTypes": after transform: SymbolId(46): [] rebuilt : SymbolId(47): [ReferenceId(45)] -Symbol flags mismatch for "publicClassWithPrivateModuleGetAccessorTypes": -after transform: SymbolId(61): SymbolFlags(Export | Class) -rebuilt : SymbolId(62): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithPrivateModuleGetAccessorTypes": after transform: SymbolId(61): [] rebuilt : SymbolId(62): [ReferenceId(49)] -Symbol flags mismatch for "publicClassWithPrivateModuleSetAccessorTypes": -after transform: SymbolId(62): SymbolFlags(Export | Class) -rebuilt : SymbolId(63): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithPrivateModuleSetAccessorTypes": after transform: SymbolId(62): [] rebuilt : SymbolId(63): [ReferenceId(51)] Symbol reference IDs mismatch for "privateClass": after transform: SymbolId(70): [ReferenceId(120), ReferenceId(121), ReferenceId(122), ReferenceId(123), ReferenceId(124), ReferenceId(125), ReferenceId(126), ReferenceId(127), ReferenceId(136), ReferenceId(137), ReferenceId(138), ReferenceId(139), ReferenceId(140), ReferenceId(141), ReferenceId(142), ReferenceId(143), ReferenceId(152), ReferenceId(153), ReferenceId(154), ReferenceId(155), ReferenceId(160), ReferenceId(161), ReferenceId(162), ReferenceId(163)] rebuilt : SymbolId(72): [ReferenceId(58), ReferenceId(59), ReferenceId(60), ReferenceId(61), ReferenceId(70), ReferenceId(71), ReferenceId(72), ReferenceId(73)] -Symbol flags mismatch for "publicClass": -after transform: SymbolId(71): SymbolFlags(Export | Class) -rebuilt : SymbolId(73): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClass": after transform: SymbolId(71): [ReferenceId(128), ReferenceId(129), ReferenceId(130), ReferenceId(131), ReferenceId(132), ReferenceId(133), ReferenceId(134), ReferenceId(135), ReferenceId(144), ReferenceId(145), ReferenceId(146), ReferenceId(147), ReferenceId(148), ReferenceId(149), ReferenceId(150), ReferenceId(151), ReferenceId(156), ReferenceId(157), ReferenceId(158), ReferenceId(159), ReferenceId(164), ReferenceId(165), ReferenceId(166), ReferenceId(167)] rebuilt : SymbolId(73): [ReferenceId(57), ReferenceId(64), ReferenceId(65), ReferenceId(66), ReferenceId(67), ReferenceId(74), ReferenceId(75), ReferenceId(76), ReferenceId(77)] -Symbol flags mismatch for "publicClassWithWithPrivateGetAccessorTypes": -after transform: SymbolId(72): SymbolFlags(Export | Class) -rebuilt : SymbolId(74): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithWithPrivateGetAccessorTypes": after transform: SymbolId(72): [] rebuilt : SymbolId(74): [ReferenceId(63)] -Symbol flags mismatch for "publicClassWithWithPublicGetAccessorTypes": -after transform: SymbolId(73): SymbolFlags(Export | Class) -rebuilt : SymbolId(75): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithWithPublicGetAccessorTypes": after transform: SymbolId(73): [] rebuilt : SymbolId(75): [ReferenceId(69)] -Symbol flags mismatch for "publicClassWithWithPrivateSetAccessorTypes": -after transform: SymbolId(76): SymbolFlags(Export | Class) -rebuilt : SymbolId(78): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithWithPrivateSetAccessorTypes": after transform: SymbolId(76): [] rebuilt : SymbolId(78): [ReferenceId(79)] -Symbol flags mismatch for "publicClassWithWithPublicSetAccessorTypes": -after transform: SymbolId(81): SymbolFlags(Export | Class) -rebuilt : SymbolId(83): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithWithPublicSetAccessorTypes": after transform: SymbolId(81): [] rebuilt : SymbolId(83): [ReferenceId(81)] -Symbol flags mismatch for "publicClassWithPrivateModuleGetAccessorTypes": -after transform: SymbolId(96): SymbolFlags(Export | Class) -rebuilt : SymbolId(98): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithPrivateModuleGetAccessorTypes": after transform: SymbolId(96): [] rebuilt : SymbolId(98): [ReferenceId(85)] -Symbol flags mismatch for "publicClassWithPrivateModuleSetAccessorTypes": -after transform: SymbolId(97): SymbolFlags(Export | Class) -rebuilt : SymbolId(99): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithPrivateModuleSetAccessorTypes": after transform: SymbolId(97): [] rebuilt : SymbolId(99): [ReferenceId(87)] @@ -27679,7 +26969,7 @@ Bindings mismatch: after transform: ScopeId(3): ["T", "doWhile"] rebuilt : ScopeId(2): ["doWhile"] Symbol flags mismatch for "fromDoWhile": -after transform: SymbolId(4): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(4): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(3): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "fromDoWhile": after transform: SymbolId(4): [ReferenceId(4)] @@ -27714,7 +27004,7 @@ Binding symbols mismatch: after transform: ScopeId(4): [SymbolId(7), SymbolId(9)] rebuilt : ScopeId(3): [SymbolId(5), SymbolId(6)] Symbol flags mismatch for "foo": -after transform: SymbolId(4): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(4): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(3): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "foo": after transform: SymbolId(4): [] @@ -27835,87 +27125,45 @@ rebuilt : ScopeId(17): ["_m2", "m2_C10_private", "m2_C11_public", "m2_C12 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 for "m1_c_public": -after transform: SymbolId(3): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "m1_c_public": after transform: SymbolId(3): [ReferenceId(0), ReferenceId(2), ReferenceId(8), ReferenceId(14)] rebuilt : SymbolId(2): [ReferenceId(1), ReferenceId(2), ReferenceId(4), ReferenceId(14), ReferenceId(16)] -Symbol flags mismatch for "m1_C3_public": -after transform: SymbolId(7): SymbolFlags(Export | Class) -rebuilt : SymbolId(6): SymbolFlags(Class) Symbol reference IDs mismatch for "m1_C3_public": after transform: SymbolId(7): [] rebuilt : SymbolId(6): [ReferenceId(6)] -Symbol flags mismatch for "m1_C4_public": -after transform: SymbolId(8): SymbolFlags(Export | Class) -rebuilt : SymbolId(7): SymbolFlags(Class) Symbol reference IDs mismatch for "m1_C4_public": after transform: SymbolId(8): [] rebuilt : SymbolId(7): [ReferenceId(9)] -Symbol flags mismatch for "m1_C7_public": -after transform: SymbolId(11): SymbolFlags(Export | Class) -rebuilt : SymbolId(10): SymbolFlags(Class) Symbol reference IDs mismatch for "m1_C7_public": after transform: SymbolId(11): [] rebuilt : SymbolId(10): [ReferenceId(11)] -Symbol flags mismatch for "m1_C8_public": -after transform: SymbolId(12): SymbolFlags(Export | Class) -rebuilt : SymbolId(11): SymbolFlags(Class) Symbol reference IDs mismatch for "m1_C8_public": after transform: SymbolId(12): [] rebuilt : SymbolId(11): [ReferenceId(13)] -Symbol flags mismatch for "m1_C11_public": -after transform: SymbolId(15): SymbolFlags(Export | Class) -rebuilt : SymbolId(14): SymbolFlags(Class) Symbol reference IDs mismatch for "m1_C11_public": after transform: SymbolId(15): [] rebuilt : SymbolId(14): [ReferenceId(18)] -Symbol flags mismatch for "m1_C12_public": -after transform: SymbolId(16): SymbolFlags(Export | Class) -rebuilt : SymbolId(15): SymbolFlags(Class) Symbol reference IDs mismatch for "m1_C12_public": after transform: SymbolId(16): [] rebuilt : SymbolId(15): [ReferenceId(21)] -Symbol flags mismatch for "m2_c_public": -after transform: SymbolId(20): SymbolFlags(Export | Class) -rebuilt : SymbolId(18): SymbolFlags(Class) Symbol reference IDs mismatch for "m2_c_public": after transform: SymbolId(20): [ReferenceId(20), ReferenceId(22), ReferenceId(28), ReferenceId(34)] rebuilt : SymbolId(18): [ReferenceId(25), ReferenceId(26), ReferenceId(28), ReferenceId(38), ReferenceId(40)] -Symbol flags mismatch for "m2_C3_public": -after transform: SymbolId(24): SymbolFlags(Export | Class) -rebuilt : SymbolId(22): SymbolFlags(Class) Symbol reference IDs mismatch for "m2_C3_public": after transform: SymbolId(24): [] rebuilt : SymbolId(22): [ReferenceId(30)] -Symbol flags mismatch for "m2_C4_public": -after transform: SymbolId(25): SymbolFlags(Export | Class) -rebuilt : SymbolId(23): SymbolFlags(Class) Symbol reference IDs mismatch for "m2_C4_public": after transform: SymbolId(25): [] rebuilt : SymbolId(23): [ReferenceId(33)] -Symbol flags mismatch for "m2_C7_public": -after transform: SymbolId(28): SymbolFlags(Export | Class) -rebuilt : SymbolId(26): SymbolFlags(Class) Symbol reference IDs mismatch for "m2_C7_public": after transform: SymbolId(28): [] rebuilt : SymbolId(26): [ReferenceId(35)] -Symbol flags mismatch for "m2_C8_public": -after transform: SymbolId(29): SymbolFlags(Export | Class) -rebuilt : SymbolId(27): SymbolFlags(Class) Symbol reference IDs mismatch for "m2_C8_public": after transform: SymbolId(29): [] rebuilt : SymbolId(27): [ReferenceId(37)] -Symbol flags mismatch for "m2_C11_public": -after transform: SymbolId(32): SymbolFlags(Export | Class) -rebuilt : SymbolId(30): SymbolFlags(Class) Symbol reference IDs mismatch for "m2_C11_public": after transform: SymbolId(32): [] rebuilt : SymbolId(30): [ReferenceId(42)] -Symbol flags mismatch for "m2_C12_public": -after transform: SymbolId(33): SymbolFlags(Export | Class) -rebuilt : SymbolId(31): SymbolFlags(Class) Symbol reference IDs mismatch for "m2_C12_public": after transform: SymbolId(33): [] rebuilt : SymbolId(31): [ReferenceId(45)] @@ -27961,45 +27209,24 @@ rebuilt : ScopeId(9): ["_privateModule", "privateClassImplementingFromPri Scope children mismatch: after transform: ScopeId(11): [ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15), ScopeId(16), ScopeId(17), ScopeId(18), ScopeId(19)] rebuilt : ScopeId(9): [ScopeId(10), ScopeId(11), ScopeId(12), ScopeId(13), ScopeId(14), ScopeId(15)] -Symbol flags mismatch for "publicClassImplementingPublicInterfaceInModule": -after transform: SymbolId(5): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassImplementingPublicInterfaceInModule": after transform: SymbolId(5): [] rebuilt : SymbolId(4): [ReferenceId(1)] -Symbol flags mismatch for "publicClassImplementingPrivateInterfaceInModule": -after transform: SymbolId(6): SymbolFlags(Export | Class) -rebuilt : SymbolId(5): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassImplementingPrivateInterfaceInModule": after transform: SymbolId(6): [] rebuilt : SymbolId(5): [ReferenceId(3)] -Symbol flags mismatch for "publicClassImplementingFromPrivateModuleInterface": -after transform: SymbolId(8): SymbolFlags(Export | Class) -rebuilt : SymbolId(7): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassImplementingFromPrivateModuleInterface": after transform: SymbolId(8): [] rebuilt : SymbolId(7): [ReferenceId(5)] -Symbol flags mismatch for "publicClassImplementingPrivateAndPublicInterface": -after transform: SymbolId(9): SymbolFlags(Export | Class) -rebuilt : SymbolId(8): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassImplementingPrivateAndPublicInterface": after transform: SymbolId(9): [] rebuilt : SymbolId(8): [ReferenceId(7)] -Symbol flags mismatch for "publicClassImplementingPublicInterfaceInModule": -after transform: SymbolId(15): SymbolFlags(Export | Class) -rebuilt : SymbolId(13): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassImplementingPublicInterfaceInModule": after transform: SymbolId(15): [] rebuilt : SymbolId(13): [ReferenceId(11)] -Symbol flags mismatch for "publicClassImplementingPrivateInterfaceInModule": -after transform: SymbolId(16): SymbolFlags(Export | Class) -rebuilt : SymbolId(14): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassImplementingPrivateInterfaceInModule": after transform: SymbolId(16): [] rebuilt : SymbolId(14): [ReferenceId(13)] -Symbol flags mismatch for "publicClassImplementingFromPrivateModuleInterface": -after transform: SymbolId(18): SymbolFlags(Export | Class) -rebuilt : SymbolId(16): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassImplementingFromPrivateModuleInterface": after transform: SymbolId(18): [] rebuilt : SymbolId(16): [ReferenceId(15)] @@ -28050,66 +27277,36 @@ rebuilt : ScopeId(19): [ScopeId(20), ScopeId(21), ScopeId(22), ScopeId(23 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 for "C1_public": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "C1_public": after transform: SymbolId(1): [ReferenceId(0), ReferenceId(2), ReferenceId(3), ReferenceId(6), ReferenceId(7), ReferenceId(10), ReferenceId(11), ReferenceId(12), ReferenceId(13), ReferenceId(18), ReferenceId(20), ReferenceId(21), ReferenceId(24), ReferenceId(25), ReferenceId(28), ReferenceId(29), ReferenceId(30), ReferenceId(31), ReferenceId(36), ReferenceId(37), ReferenceId(40), ReferenceId(41), ReferenceId(44), ReferenceId(45), ReferenceId(48), ReferenceId(49), ReferenceId(50), ReferenceId(51)] rebuilt : SymbolId(2): [ReferenceId(1), ReferenceId(2), ReferenceId(3), ReferenceId(6), ReferenceId(7), ReferenceId(12), ReferenceId(13), ReferenceId(16), ReferenceId(17), ReferenceId(28), ReferenceId(29), ReferenceId(36), ReferenceId(37)] Symbol reference IDs mismatch for "C2_private": after transform: SymbolId(2): [ReferenceId(1), ReferenceId(4), ReferenceId(5), ReferenceId(8), ReferenceId(9), ReferenceId(14), ReferenceId(15), ReferenceId(16), ReferenceId(17), ReferenceId(19), ReferenceId(22), ReferenceId(23), ReferenceId(26), ReferenceId(27), ReferenceId(32), ReferenceId(33), ReferenceId(34), ReferenceId(35), ReferenceId(38), ReferenceId(39), ReferenceId(42), ReferenceId(43), ReferenceId(46), ReferenceId(47), ReferenceId(52), ReferenceId(53), ReferenceId(54), ReferenceId(55)] rebuilt : SymbolId(3): [ReferenceId(4), ReferenceId(5), ReferenceId(8), ReferenceId(9), ReferenceId(14), ReferenceId(15), ReferenceId(18), ReferenceId(19), ReferenceId(32), ReferenceId(33), ReferenceId(40), ReferenceId(41)] -Symbol flags mismatch for "C3_public": -after transform: SymbolId(3): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "C3_public": after transform: SymbolId(3): [] rebuilt : SymbolId(4): [ReferenceId(11)] -Symbol flags mismatch for "C5_public": -after transform: SymbolId(19): SymbolFlags(Export | Class) -rebuilt : SymbolId(16): SymbolFlags(Class) Symbol reference IDs mismatch for "C5_public": after transform: SymbolId(19): [] rebuilt : SymbolId(16): [ReferenceId(21)] -Symbol flags mismatch for "C7_public": -after transform: SymbolId(23): SymbolFlags(Export | Class) -rebuilt : SymbolId(20): SymbolFlags(Class) Symbol reference IDs mismatch for "C7_public": after transform: SymbolId(23): [] rebuilt : SymbolId(20): [ReferenceId(23)] -Symbol flags mismatch for "f2_public": -after transform: SymbolId(29): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(26): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "f2_public": after transform: SymbolId(29): [] rebuilt : SymbolId(26): [ReferenceId(25)] -Symbol flags mismatch for "f4_public": -after transform: SymbolId(33): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(30): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "f4_public": after transform: SymbolId(33): [] rebuilt : SymbolId(30): [ReferenceId(27)] -Symbol flags mismatch for "f6_public": -after transform: SymbolId(36): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(33): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "f6_public": after transform: SymbolId(36): [] rebuilt : SymbolId(33): [ReferenceId(31)] -Symbol flags mismatch for "f8_public": -after transform: SymbolId(38): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(35): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "f8_public": after transform: SymbolId(38): [] rebuilt : SymbolId(35): [ReferenceId(35)] -Symbol flags mismatch for "f10_public": -after transform: SymbolId(40): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(37): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "f10_public": after transform: SymbolId(40): [] rebuilt : SymbolId(37): [ReferenceId(39)] -Symbol flags mismatch for "f12_public": -after transform: SymbolId(42): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(39): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "f12_public": after transform: SymbolId(42): [] rebuilt : SymbolId(39): [ReferenceId(43)] @@ -28197,32 +27394,23 @@ rebuilt : SymbolId(1): [] Symbol reference IDs mismatch for "privateClass": after transform: SymbolId(71): [ReferenceId(80), ReferenceId(82), ReferenceId(84), ReferenceId(90), ReferenceId(91), ReferenceId(92), ReferenceId(93), ReferenceId(94), ReferenceId(100), ReferenceId(101), ReferenceId(102), ReferenceId(103), ReferenceId(104), ReferenceId(105), ReferenceId(106), ReferenceId(114), ReferenceId(115), ReferenceId(116), ReferenceId(117), ReferenceId(118), ReferenceId(119), ReferenceId(120), ReferenceId(128), ReferenceId(130), ReferenceId(132), ReferenceId(134)] rebuilt : SymbolId(60): [] -Symbol flags mismatch for "publicClass": -after transform: SymbolId(72): SymbolFlags(Export | Class) -rebuilt : SymbolId(61): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClass": after transform: SymbolId(72): [ReferenceId(81), ReferenceId(83), ReferenceId(85), ReferenceId(86), ReferenceId(87), ReferenceId(88), ReferenceId(89), ReferenceId(95), ReferenceId(96), ReferenceId(97), ReferenceId(98), ReferenceId(99), ReferenceId(107), ReferenceId(108), ReferenceId(109), ReferenceId(110), ReferenceId(111), ReferenceId(112), ReferenceId(113), ReferenceId(121), ReferenceId(122), ReferenceId(123), ReferenceId(124), ReferenceId(125), ReferenceId(126), ReferenceId(127), ReferenceId(129), ReferenceId(131), ReferenceId(133), ReferenceId(135), ReferenceId(137), ReferenceId(139), ReferenceId(149), ReferenceId(151)] rebuilt : SymbolId(61): [ReferenceId(13)] -Symbol flags mismatch for "publicClassWithWithPrivateParmeterTypes": -after transform: SymbolId(77): SymbolFlags(Export | Class) -rebuilt : SymbolId(62): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithWithPrivateParmeterTypes": after transform: SymbolId(77): [] rebuilt : SymbolId(62): [ReferenceId(17)] -Symbol flags mismatch for "publicClassWithWithPublicParmeterTypes": -after transform: SymbolId(85): SymbolFlags(Export | Class) -rebuilt : SymbolId(70): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithWithPublicParmeterTypes": after transform: SymbolId(85): [] rebuilt : SymbolId(70): [ReferenceId(21)] Symbol flags mismatch for "publicFunctionWithPrivateParmeterTypes": -after transform: SymbolId(109): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(109): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(94): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "publicFunctionWithPrivateParmeterTypes": after transform: SymbolId(109): [] rebuilt : SymbolId(94): [ReferenceId(27)] Symbol flags mismatch for "publicFunctionWithPublicParmeterTypes": -after transform: SymbolId(111): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(111): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(96): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "publicFunctionWithPublicParmeterTypes": after transform: SymbolId(111): [] @@ -28233,14 +27421,11 @@ rebuilt : SymbolId(98): SymbolFlags(FunctionScopedVariable) Symbol flags mismatch for "privateFunctionWithPublicParmeterTypes": after transform: SymbolId(115): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(100): SymbolFlags(FunctionScopedVariable) -Symbol flags mismatch for "publicClassWithPrivateModuleParameterTypes": -after transform: SymbolId(122): SymbolFlags(Export | Class) -rebuilt : SymbolId(102): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithPrivateModuleParameterTypes": after transform: SymbolId(122): [] rebuilt : SymbolId(102): [ReferenceId(33)] Symbol flags mismatch for "publicFunctionWithPrivateModuleParameterTypes": -after transform: SymbolId(128): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(128): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(108): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "publicFunctionWithPrivateModuleParameterTypes": after transform: SymbolId(128): [] @@ -28251,32 +27436,23 @@ rebuilt : SymbolId(116): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "privateClass": after transform: SymbolId(142): [ReferenceId(160), ReferenceId(162), ReferenceId(164), ReferenceId(170), ReferenceId(171), ReferenceId(172), ReferenceId(173), ReferenceId(174), ReferenceId(180), ReferenceId(181), ReferenceId(182), ReferenceId(183), ReferenceId(184), ReferenceId(185), ReferenceId(186), ReferenceId(194), ReferenceId(195), ReferenceId(196), ReferenceId(197), ReferenceId(198), ReferenceId(199), ReferenceId(200), ReferenceId(208), ReferenceId(210), ReferenceId(212), ReferenceId(214)] rebuilt : SymbolId(120): [] -Symbol flags mismatch for "publicClass": -after transform: SymbolId(143): SymbolFlags(Export | Class) -rebuilt : SymbolId(121): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClass": after transform: SymbolId(143): [ReferenceId(161), ReferenceId(163), ReferenceId(165), ReferenceId(166), ReferenceId(167), ReferenceId(168), ReferenceId(169), ReferenceId(175), ReferenceId(176), ReferenceId(177), ReferenceId(178), ReferenceId(179), ReferenceId(187), ReferenceId(188), ReferenceId(189), ReferenceId(190), ReferenceId(191), ReferenceId(192), ReferenceId(193), ReferenceId(201), ReferenceId(202), ReferenceId(203), ReferenceId(204), ReferenceId(205), ReferenceId(206), ReferenceId(207), ReferenceId(209), ReferenceId(211), ReferenceId(213), ReferenceId(215), ReferenceId(217), ReferenceId(219), ReferenceId(229), ReferenceId(231)] rebuilt : SymbolId(121): [ReferenceId(41)] -Symbol flags mismatch for "publicClassWithWithPrivateParmeterTypes": -after transform: SymbolId(148): SymbolFlags(Export | Class) -rebuilt : SymbolId(122): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithWithPrivateParmeterTypes": after transform: SymbolId(148): [] rebuilt : SymbolId(122): [ReferenceId(45)] -Symbol flags mismatch for "publicClassWithWithPublicParmeterTypes": -after transform: SymbolId(156): SymbolFlags(Export | Class) -rebuilt : SymbolId(130): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithWithPublicParmeterTypes": after transform: SymbolId(156): [] rebuilt : SymbolId(130): [ReferenceId(49)] Symbol flags mismatch for "publicFunctionWithPrivateParmeterTypes": -after transform: SymbolId(180): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(180): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(154): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "publicFunctionWithPrivateParmeterTypes": after transform: SymbolId(180): [] rebuilt : SymbolId(154): [ReferenceId(55)] Symbol flags mismatch for "publicFunctionWithPublicParmeterTypes": -after transform: SymbolId(182): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(182): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(156): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "publicFunctionWithPublicParmeterTypes": after transform: SymbolId(182): [] @@ -28287,14 +27463,11 @@ rebuilt : SymbolId(158): SymbolFlags(FunctionScopedVariable) Symbol flags mismatch for "privateFunctionWithPublicParmeterTypes": after transform: SymbolId(186): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(160): SymbolFlags(FunctionScopedVariable) -Symbol flags mismatch for "publicClassWithPrivateModuleParameterTypes": -after transform: SymbolId(193): SymbolFlags(Export | Class) -rebuilt : SymbolId(162): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithPrivateModuleParameterTypes": after transform: SymbolId(193): [] rebuilt : SymbolId(162): [ReferenceId(61)] Symbol flags mismatch for "publicFunctionWithPrivateModuleParameterTypes": -after transform: SymbolId(199): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(199): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(168): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "publicFunctionWithPrivateModuleParameterTypes": after transform: SymbolId(199): [] @@ -28382,32 +27555,23 @@ rebuilt : SymbolId(1): [ReferenceId(4), ReferenceId(5), ReferenceId(6), R Symbol reference IDs mismatch for "privateClass": after transform: SymbolId(27): [ReferenceId(82), ReferenceId(83), ReferenceId(84), ReferenceId(85), ReferenceId(90), ReferenceId(91), ReferenceId(92), ReferenceId(93), ReferenceId(98), ReferenceId(99), ReferenceId(100), ReferenceId(101), ReferenceId(102), ReferenceId(103), ReferenceId(104), ReferenceId(105), ReferenceId(114), ReferenceId(115), ReferenceId(116), ReferenceId(117), ReferenceId(118), ReferenceId(119), ReferenceId(120), ReferenceId(121), ReferenceId(130), ReferenceId(132), ReferenceId(134), ReferenceId(136), ReferenceId(138), ReferenceId(140)] rebuilt : SymbolId(22): [ReferenceId(28), ReferenceId(29), ReferenceId(30), ReferenceId(31), ReferenceId(40), ReferenceId(41), ReferenceId(42), ReferenceId(43), ReferenceId(52), ReferenceId(58)] -Symbol flags mismatch for "publicClass": -after transform: SymbolId(28): SymbolFlags(Export | Class) -rebuilt : SymbolId(23): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClass": after transform: SymbolId(28): [ReferenceId(86), ReferenceId(87), ReferenceId(88), ReferenceId(89), ReferenceId(94), ReferenceId(95), ReferenceId(96), ReferenceId(97), ReferenceId(106), ReferenceId(107), ReferenceId(108), ReferenceId(109), ReferenceId(110), ReferenceId(111), ReferenceId(112), ReferenceId(113), ReferenceId(122), ReferenceId(123), ReferenceId(124), ReferenceId(125), ReferenceId(126), ReferenceId(127), ReferenceId(128), ReferenceId(129), ReferenceId(131), ReferenceId(133), ReferenceId(135), ReferenceId(137), ReferenceId(139), ReferenceId(141)] rebuilt : SymbolId(23): [ReferenceId(27), ReferenceId(34), ReferenceId(35), ReferenceId(36), ReferenceId(37), ReferenceId(44), ReferenceId(45), ReferenceId(46), ReferenceId(47), ReferenceId(55), ReferenceId(59)] -Symbol flags mismatch for "publicClassWithWithPrivateParmeterTypes": -after transform: SymbolId(33): SymbolFlags(Export | Class) -rebuilt : SymbolId(24): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithWithPrivateParmeterTypes": after transform: SymbolId(33): [] rebuilt : SymbolId(24): [ReferenceId(33)] -Symbol flags mismatch for "publicClassWithWithPublicParmeterTypes": -after transform: SymbolId(34): SymbolFlags(Export | Class) -rebuilt : SymbolId(25): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithWithPublicParmeterTypes": after transform: SymbolId(34): [] rebuilt : SymbolId(25): [ReferenceId(39)] Symbol flags mismatch for "publicFunctionWithPrivateParmeterTypes": -after transform: SymbolId(37): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(37): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(28): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "publicFunctionWithPrivateParmeterTypes": after transform: SymbolId(37): [] rebuilt : SymbolId(28): [ReferenceId(49)] Symbol flags mismatch for "publicFunctionWithPublicParmeterTypes": -after transform: SymbolId(38): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(38): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(29): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "publicFunctionWithPublicParmeterTypes": after transform: SymbolId(38): [] @@ -28419,13 +27583,13 @@ Symbol flags mismatch for "privateFunctionWithPublicParmeterTypes": after transform: SymbolId(40): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(31): SymbolFlags(FunctionScopedVariable) Symbol flags mismatch for "publicFunctionWithPrivateParmeterTypes1": -after transform: SymbolId(41): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(41): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(32): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "publicFunctionWithPrivateParmeterTypes1": after transform: SymbolId(41): [] rebuilt : SymbolId(32): [ReferenceId(54)] Symbol flags mismatch for "publicFunctionWithPublicParmeterTypes1": -after transform: SymbolId(42): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(42): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(33): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "publicFunctionWithPublicParmeterTypes1": after transform: SymbolId(42): [] @@ -28436,20 +27600,17 @@ rebuilt : SymbolId(34): SymbolFlags(FunctionScopedVariable) Symbol flags mismatch for "privateFunctionWithPublicParmeterTypes1": after transform: SymbolId(44): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(35): SymbolFlags(FunctionScopedVariable) -Symbol flags mismatch for "publicClassWithPrivateModuleParameterTypes": -after transform: SymbolId(46): SymbolFlags(Export | Class) -rebuilt : SymbolId(36): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithPrivateModuleParameterTypes": after transform: SymbolId(46): [] rebuilt : SymbolId(36): [ReferenceId(63)] Symbol flags mismatch for "publicFunctionWithPrivateModuleParameterTypes": -after transform: SymbolId(47): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(47): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(37): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "publicFunctionWithPrivateModuleParameterTypes": after transform: SymbolId(47): [] rebuilt : SymbolId(37): [ReferenceId(65)] Symbol flags mismatch for "publicFunctionWithPrivateModuleParameterTypes1": -after transform: SymbolId(48): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(48): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(38): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "publicFunctionWithPrivateModuleParameterTypes1": after transform: SymbolId(48): [] @@ -28463,32 +27624,23 @@ rebuilt : SymbolId(41): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "privateClass": after transform: SymbolId(54): [ReferenceId(164), ReferenceId(165), ReferenceId(166), ReferenceId(167), ReferenceId(172), ReferenceId(173), ReferenceId(174), ReferenceId(175), ReferenceId(180), ReferenceId(181), ReferenceId(182), ReferenceId(183), ReferenceId(184), ReferenceId(185), ReferenceId(186), ReferenceId(187), ReferenceId(196), ReferenceId(197), ReferenceId(198), ReferenceId(199), ReferenceId(200), ReferenceId(201), ReferenceId(202), ReferenceId(203), ReferenceId(212), ReferenceId(214), ReferenceId(216), ReferenceId(218), ReferenceId(220), ReferenceId(222)] rebuilt : SymbolId(44): [ReferenceId(76), ReferenceId(77), ReferenceId(78), ReferenceId(79), ReferenceId(88), ReferenceId(89), ReferenceId(90), ReferenceId(91), ReferenceId(100), ReferenceId(106)] -Symbol flags mismatch for "publicClass": -after transform: SymbolId(55): SymbolFlags(Export | Class) -rebuilt : SymbolId(45): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClass": after transform: SymbolId(55): [ReferenceId(168), ReferenceId(169), ReferenceId(170), ReferenceId(171), ReferenceId(176), ReferenceId(177), ReferenceId(178), ReferenceId(179), ReferenceId(188), ReferenceId(189), ReferenceId(190), ReferenceId(191), ReferenceId(192), ReferenceId(193), ReferenceId(194), ReferenceId(195), ReferenceId(204), ReferenceId(205), ReferenceId(206), ReferenceId(207), ReferenceId(208), ReferenceId(209), ReferenceId(210), ReferenceId(211), ReferenceId(213), ReferenceId(215), ReferenceId(217), ReferenceId(219), ReferenceId(221), ReferenceId(223)] rebuilt : SymbolId(45): [ReferenceId(75), ReferenceId(82), ReferenceId(83), ReferenceId(84), ReferenceId(85), ReferenceId(92), ReferenceId(93), ReferenceId(94), ReferenceId(95), ReferenceId(103), ReferenceId(107)] -Symbol flags mismatch for "publicClassWithWithPrivateParmeterTypes": -after transform: SymbolId(60): SymbolFlags(Export | Class) -rebuilt : SymbolId(46): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithWithPrivateParmeterTypes": after transform: SymbolId(60): [] rebuilt : SymbolId(46): [ReferenceId(81)] -Symbol flags mismatch for "publicClassWithWithPublicParmeterTypes": -after transform: SymbolId(61): SymbolFlags(Export | Class) -rebuilt : SymbolId(47): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithWithPublicParmeterTypes": after transform: SymbolId(61): [] rebuilt : SymbolId(47): [ReferenceId(87)] Symbol flags mismatch for "publicFunctionWithPrivateParmeterTypes": -after transform: SymbolId(64): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(64): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(50): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "publicFunctionWithPrivateParmeterTypes": after transform: SymbolId(64): [] rebuilt : SymbolId(50): [ReferenceId(97)] Symbol flags mismatch for "publicFunctionWithPublicParmeterTypes": -after transform: SymbolId(65): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(65): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(51): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "publicFunctionWithPublicParmeterTypes": after transform: SymbolId(65): [] @@ -28500,13 +27652,13 @@ Symbol flags mismatch for "privateFunctionWithPublicParmeterTypes": after transform: SymbolId(67): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(53): SymbolFlags(FunctionScopedVariable) Symbol flags mismatch for "publicFunctionWithPrivateParmeterTypes1": -after transform: SymbolId(68): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(68): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(54): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "publicFunctionWithPrivateParmeterTypes1": after transform: SymbolId(68): [] rebuilt : SymbolId(54): [ReferenceId(102)] Symbol flags mismatch for "publicFunctionWithPublicParmeterTypes1": -after transform: SymbolId(69): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(69): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(55): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "publicFunctionWithPublicParmeterTypes1": after transform: SymbolId(69): [] @@ -28517,20 +27669,17 @@ rebuilt : SymbolId(56): SymbolFlags(FunctionScopedVariable) Symbol flags mismatch for "privateFunctionWithPublicParmeterTypes1": after transform: SymbolId(71): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(57): SymbolFlags(FunctionScopedVariable) -Symbol flags mismatch for "publicClassWithPrivateModuleParameterTypes": -after transform: SymbolId(73): SymbolFlags(Export | Class) -rebuilt : SymbolId(58): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithPrivateModuleParameterTypes": after transform: SymbolId(73): [] rebuilt : SymbolId(58): [ReferenceId(111)] Symbol flags mismatch for "publicFunctionWithPrivateModuleParameterTypes": -after transform: SymbolId(74): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(74): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(59): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "publicFunctionWithPrivateModuleParameterTypes": after transform: SymbolId(74): [] rebuilt : SymbolId(59): [ReferenceId(113)] Symbol flags mismatch for "publicFunctionWithPrivateModuleParameterTypes1": -after transform: SymbolId(75): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(75): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(60): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "publicFunctionWithPrivateModuleParameterTypes1": after transform: SymbolId(75): [] @@ -28625,33 +27774,21 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(4) Binding symbols mismatch: after transform: ScopeId(23): [SymbolId(14), SymbolId(15), SymbolId(16), SymbolId(21), SymbolId(39)] rebuilt : ScopeId(23): [SymbolId(15), SymbolId(16), SymbolId(17), SymbolId(18), SymbolId(23)] -Symbol flags mismatch for "C1_public": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "C1_public": after transform: SymbolId(1): [ReferenceId(0), ReferenceId(1), ReferenceId(2), ReferenceId(3), ReferenceId(9), ReferenceId(10), ReferenceId(11), ReferenceId(12)] rebuilt : SymbolId(2): [ReferenceId(1), ReferenceId(2), ReferenceId(3), ReferenceId(8), ReferenceId(9)] Symbol reference IDs mismatch for "C2_private": after transform: SymbolId(2): [ReferenceId(4), ReferenceId(5), ReferenceId(6), ReferenceId(7), ReferenceId(8), ReferenceId(13), ReferenceId(14), ReferenceId(15), ReferenceId(16), ReferenceId(17)] rebuilt : SymbolId(3): [ReferenceId(4), ReferenceId(5), ReferenceId(10), ReferenceId(11)] -Symbol flags mismatch for "C3_public": -after transform: SymbolId(3): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "C3_public": after transform: SymbolId(3): [] rebuilt : SymbolId(4): [ReferenceId(7)] -Symbol flags mismatch for "m2_C1_public": -after transform: SymbolId(14): SymbolFlags(Export | Class) -rebuilt : SymbolId(16): SymbolFlags(Class) Symbol reference IDs mismatch for "m2_C1_public": after transform: SymbolId(14): [ReferenceId(18), ReferenceId(19), ReferenceId(20), ReferenceId(21), ReferenceId(27), ReferenceId(28), ReferenceId(29), ReferenceId(30)] rebuilt : SymbolId(16): [ReferenceId(15), ReferenceId(16), ReferenceId(17), ReferenceId(22), ReferenceId(23)] Symbol reference IDs mismatch for "m2_C2_private": after transform: SymbolId(15): [ReferenceId(22), ReferenceId(23), ReferenceId(24), ReferenceId(25), ReferenceId(26), ReferenceId(31), ReferenceId(32), ReferenceId(33), ReferenceId(34), ReferenceId(35)] rebuilt : SymbolId(17): [ReferenceId(18), ReferenceId(19), ReferenceId(24), ReferenceId(25)] -Symbol flags mismatch for "m2_C3_public": -after transform: SymbolId(16): SymbolFlags(Export | Class) -rebuilt : SymbolId(18): SymbolFlags(Class) Symbol reference IDs mismatch for "m2_C3_public": after transform: SymbolId(16): [] rebuilt : SymbolId(18): [ReferenceId(21)] @@ -28696,45 +27833,24 @@ 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 for "m1_c_public": -after transform: SymbolId(3): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "m1_c_public": after transform: SymbolId(3): [ReferenceId(0), ReferenceId(2), ReferenceId(8), ReferenceId(14)] rebuilt : SymbolId(2): [ReferenceId(1), ReferenceId(2), ReferenceId(4), ReferenceId(14), ReferenceId(16)] -Symbol flags mismatch for "m1_C3_public": -after transform: SymbolId(7): SymbolFlags(Export | Class) -rebuilt : SymbolId(6): SymbolFlags(Class) Symbol reference IDs mismatch for "m1_C3_public": after transform: SymbolId(7): [] rebuilt : SymbolId(6): [ReferenceId(6)] -Symbol flags mismatch for "m1_C4_public": -after transform: SymbolId(8): SymbolFlags(Export | Class) -rebuilt : SymbolId(7): SymbolFlags(Class) Symbol reference IDs mismatch for "m1_C4_public": after transform: SymbolId(8): [] rebuilt : SymbolId(7): [ReferenceId(9)] -Symbol flags mismatch for "m1_C7_public": -after transform: SymbolId(11): SymbolFlags(Export | Class) -rebuilt : SymbolId(10): SymbolFlags(Class) Symbol reference IDs mismatch for "m1_C7_public": after transform: SymbolId(11): [] rebuilt : SymbolId(10): [ReferenceId(11)] -Symbol flags mismatch for "m1_C8_public": -after transform: SymbolId(12): SymbolFlags(Export | Class) -rebuilt : SymbolId(11): SymbolFlags(Class) Symbol reference IDs mismatch for "m1_C8_public": after transform: SymbolId(12): [] rebuilt : SymbolId(11): [ReferenceId(13)] -Symbol flags mismatch for "m1_C11_public": -after transform: SymbolId(15): SymbolFlags(Export | Class) -rebuilt : SymbolId(14): SymbolFlags(Class) Symbol reference IDs mismatch for "m1_C11_public": after transform: SymbolId(15): [] rebuilt : SymbolId(14): [ReferenceId(18)] -Symbol flags mismatch for "m1_C12_public": -after transform: SymbolId(16): SymbolFlags(Export | Class) -rebuilt : SymbolId(15): SymbolFlags(Class) Symbol reference IDs mismatch for "m1_C12_public": after transform: SymbolId(16): [] rebuilt : SymbolId(15): [ReferenceId(21)] @@ -28815,30 +27931,18 @@ rebuilt : ScopeId(108): [ScopeId(109), ScopeId(110), ScopeId(111), ScopeI 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 for "C1_public": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "C1_public": after transform: SymbolId(1): [ReferenceId(0), ReferenceId(2), ReferenceId(3), ReferenceId(6), ReferenceId(7), ReferenceId(10), ReferenceId(11), ReferenceId(12), ReferenceId(13), ReferenceId(18), ReferenceId(20), ReferenceId(21), ReferenceId(24), ReferenceId(25), ReferenceId(28), ReferenceId(29), ReferenceId(30), ReferenceId(31), ReferenceId(36), ReferenceId(37), ReferenceId(40), ReferenceId(41), ReferenceId(44), ReferenceId(45), ReferenceId(48), ReferenceId(49), ReferenceId(50), ReferenceId(51)] rebuilt : SymbolId(2): [ReferenceId(1), ReferenceId(2), ReferenceId(3), ReferenceId(6), ReferenceId(7), ReferenceId(12), ReferenceId(13), ReferenceId(16), ReferenceId(17), ReferenceId(28), ReferenceId(29), ReferenceId(36), ReferenceId(37)] Symbol reference IDs mismatch for "C2_private": after transform: SymbolId(2): [ReferenceId(1), ReferenceId(4), ReferenceId(5), ReferenceId(8), ReferenceId(9), ReferenceId(14), ReferenceId(15), ReferenceId(16), ReferenceId(17), ReferenceId(19), ReferenceId(22), ReferenceId(23), ReferenceId(26), ReferenceId(27), ReferenceId(32), ReferenceId(33), ReferenceId(34), ReferenceId(35), ReferenceId(38), ReferenceId(39), ReferenceId(42), ReferenceId(43), ReferenceId(46), ReferenceId(47), ReferenceId(52), ReferenceId(53), ReferenceId(54), ReferenceId(55)] rebuilt : SymbolId(3): [ReferenceId(4), ReferenceId(5), ReferenceId(8), ReferenceId(9), ReferenceId(14), ReferenceId(15), ReferenceId(18), ReferenceId(19), ReferenceId(32), ReferenceId(33), ReferenceId(40), ReferenceId(41)] -Symbol flags mismatch for "C3_public": -after transform: SymbolId(3): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "C3_public": after transform: SymbolId(3): [] rebuilt : SymbolId(4): [ReferenceId(11)] -Symbol flags mismatch for "C5_public": -after transform: SymbolId(19): SymbolFlags(Export | Class) -rebuilt : SymbolId(16): SymbolFlags(Class) Symbol reference IDs mismatch for "C5_public": after transform: SymbolId(19): [] rebuilt : SymbolId(16): [ReferenceId(21)] -Symbol flags mismatch for "C7_public": -after transform: SymbolId(23): SymbolFlags(Export | Class) -rebuilt : SymbolId(20): SymbolFlags(Class) Symbol reference IDs mismatch for "C7_public": after transform: SymbolId(23): [] rebuilt : SymbolId(20): [ReferenceId(23)] @@ -28846,7 +27950,7 @@ Symbol flags mismatch for "f1_public": after transform: SymbolId(27): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(24): SymbolFlags(FunctionScopedVariable) Symbol flags mismatch for "f2_public": -after transform: SymbolId(29): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(29): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(26): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "f2_public": after transform: SymbolId(29): [] @@ -28855,7 +27959,7 @@ Symbol flags mismatch for "f3_public": after transform: SymbolId(31): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(28): SymbolFlags(FunctionScopedVariable) Symbol flags mismatch for "f4_public": -after transform: SymbolId(33): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(33): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(30): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "f4_public": after transform: SymbolId(33): [] @@ -28864,7 +27968,7 @@ Symbol flags mismatch for "f5_public": after transform: SymbolId(35): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(32): SymbolFlags(FunctionScopedVariable) Symbol flags mismatch for "f6_public": -after transform: SymbolId(36): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(36): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(33): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "f6_public": after transform: SymbolId(36): [] @@ -28873,7 +27977,7 @@ Symbol flags mismatch for "f7_public": after transform: SymbolId(37): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(34): SymbolFlags(FunctionScopedVariable) Symbol flags mismatch for "f8_public": -after transform: SymbolId(38): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(38): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(35): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "f8_public": after transform: SymbolId(38): [] @@ -28882,7 +27986,7 @@ Symbol flags mismatch for "f9_private": after transform: SymbolId(39): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(36): SymbolFlags(FunctionScopedVariable) Symbol flags mismatch for "f10_public": -after transform: SymbolId(40): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(40): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(37): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "f10_public": after transform: SymbolId(40): [] @@ -28891,35 +27995,23 @@ Symbol flags mismatch for "f11_private": after transform: SymbolId(41): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(38): SymbolFlags(FunctionScopedVariable) Symbol flags mismatch for "f12_public": -after transform: SymbolId(42): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(42): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(39): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "f12_public": after transform: SymbolId(42): [] rebuilt : SymbolId(39): [ReferenceId(43)] -Symbol flags mismatch for "m2_C1_public": -after transform: SymbolId(44): SymbolFlags(Export | Class) -rebuilt : SymbolId(42): SymbolFlags(Class) Symbol reference IDs mismatch for "m2_C1_public": after transform: SymbolId(44): [ReferenceId(56), ReferenceId(58), ReferenceId(59), ReferenceId(62), ReferenceId(63), ReferenceId(66), ReferenceId(67), ReferenceId(68), ReferenceId(69), ReferenceId(74), ReferenceId(76), ReferenceId(77), ReferenceId(80), ReferenceId(81), ReferenceId(84), ReferenceId(85), ReferenceId(86), ReferenceId(87), ReferenceId(92), ReferenceId(93), ReferenceId(96), ReferenceId(97), ReferenceId(100), ReferenceId(101), ReferenceId(104), ReferenceId(105), ReferenceId(106), ReferenceId(107)] rebuilt : SymbolId(42): [ReferenceId(47), ReferenceId(48), ReferenceId(49), ReferenceId(52), ReferenceId(53), ReferenceId(58), ReferenceId(59), ReferenceId(62), ReferenceId(63), ReferenceId(74), ReferenceId(75), ReferenceId(82), ReferenceId(83)] Symbol reference IDs mismatch for "m2_C2_private": after transform: SymbolId(45): [ReferenceId(57), ReferenceId(60), ReferenceId(61), ReferenceId(64), ReferenceId(65), ReferenceId(70), ReferenceId(71), ReferenceId(72), ReferenceId(73), ReferenceId(75), ReferenceId(78), ReferenceId(79), ReferenceId(82), ReferenceId(83), ReferenceId(88), ReferenceId(89), ReferenceId(90), ReferenceId(91), ReferenceId(94), ReferenceId(95), ReferenceId(98), ReferenceId(99), ReferenceId(102), ReferenceId(103), ReferenceId(108), ReferenceId(109), ReferenceId(110), ReferenceId(111)] rebuilt : SymbolId(43): [ReferenceId(50), ReferenceId(51), ReferenceId(54), ReferenceId(55), ReferenceId(60), ReferenceId(61), ReferenceId(64), ReferenceId(65), ReferenceId(78), ReferenceId(79), ReferenceId(86), ReferenceId(87)] -Symbol flags mismatch for "m2_C3_public": -after transform: SymbolId(46): SymbolFlags(Export | Class) -rebuilt : SymbolId(44): SymbolFlags(Class) Symbol reference IDs mismatch for "m2_C3_public": after transform: SymbolId(46): [] rebuilt : SymbolId(44): [ReferenceId(57)] -Symbol flags mismatch for "m2_C5_public": -after transform: SymbolId(62): SymbolFlags(Export | Class) -rebuilt : SymbolId(56): SymbolFlags(Class) Symbol reference IDs mismatch for "m2_C5_public": after transform: SymbolId(62): [] rebuilt : SymbolId(56): [ReferenceId(67)] -Symbol flags mismatch for "m2_C7_public": -after transform: SymbolId(66): SymbolFlags(Export | Class) -rebuilt : SymbolId(60): SymbolFlags(Class) Symbol reference IDs mismatch for "m2_C7_public": after transform: SymbolId(66): [] rebuilt : SymbolId(60): [ReferenceId(69)] @@ -28927,7 +28019,7 @@ Symbol flags mismatch for "f1_public": after transform: SymbolId(70): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(64): SymbolFlags(FunctionScopedVariable) Symbol flags mismatch for "f2_public": -after transform: SymbolId(72): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(72): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(66): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "f2_public": after transform: SymbolId(72): [] @@ -28936,7 +28028,7 @@ Symbol flags mismatch for "f3_public": after transform: SymbolId(74): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(68): SymbolFlags(FunctionScopedVariable) Symbol flags mismatch for "f4_public": -after transform: SymbolId(76): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(76): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(70): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "f4_public": after transform: SymbolId(76): [] @@ -28945,7 +28037,7 @@ Symbol flags mismatch for "f5_public": after transform: SymbolId(78): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(72): SymbolFlags(FunctionScopedVariable) Symbol flags mismatch for "f6_public": -after transform: SymbolId(79): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(79): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(73): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "f6_public": after transform: SymbolId(79): [] @@ -28954,7 +28046,7 @@ Symbol flags mismatch for "f7_public": after transform: SymbolId(80): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(74): SymbolFlags(FunctionScopedVariable) Symbol flags mismatch for "f8_public": -after transform: SymbolId(81): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(81): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(75): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "f8_public": after transform: SymbolId(81): [] @@ -28963,7 +28055,7 @@ Symbol flags mismatch for "f9_private": after transform: SymbolId(82): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(76): SymbolFlags(FunctionScopedVariable) Symbol flags mismatch for "f10_public": -after transform: SymbolId(83): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(83): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(77): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "f10_public": after transform: SymbolId(83): [] @@ -28972,7 +28064,7 @@ Symbol flags mismatch for "f11_private": after transform: SymbolId(84): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(78): SymbolFlags(FunctionScopedVariable) Symbol flags mismatch for "f12_public": -after transform: SymbolId(85): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(85): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(79): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "f12_public": after transform: SymbolId(85): [] @@ -29002,18 +28094,12 @@ 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) -Symbol flags mismatch for "C1_public": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "C1_public": after transform: SymbolId(1): [ReferenceId(0), ReferenceId(1), ReferenceId(2), ReferenceId(3), ReferenceId(9), ReferenceId(10), ReferenceId(11), ReferenceId(12)] rebuilt : SymbolId(2): [ReferenceId(1), ReferenceId(2), ReferenceId(3), ReferenceId(8), ReferenceId(9)] Symbol reference IDs mismatch for "C2_private": after transform: SymbolId(2): [ReferenceId(4), ReferenceId(5), ReferenceId(6), ReferenceId(7), ReferenceId(8), ReferenceId(13), ReferenceId(14), ReferenceId(15), ReferenceId(16), ReferenceId(17)] rebuilt : SymbolId(3): [ReferenceId(4), ReferenceId(5), ReferenceId(10), ReferenceId(11)] -Symbol flags mismatch for "C3_public": -after transform: SymbolId(3): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "C3_public": after transform: SymbolId(3): [] rebuilt : SymbolId(4): [ReferenceId(7)] @@ -29059,9 +28145,6 @@ 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 for "C1_public": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "C1_public": after transform: SymbolId(1): [ReferenceId(0), ReferenceId(2), ReferenceId(4), ReferenceId(6), ReferenceId(8), ReferenceId(10), ReferenceId(12), ReferenceId(14), ReferenceId(16), ReferenceId(18), ReferenceId(20), ReferenceId(22), ReferenceId(24), ReferenceId(26), ReferenceId(28), ReferenceId(30), ReferenceId(32), ReferenceId(34)] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -29141,18 +28224,12 @@ rebuilt : ScopeId(5): ["C1_public", "C2_private", "_m2"] 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 for "C1_public": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "C1_public": after transform: SymbolId(1): [ReferenceId(0), ReferenceId(2), ReferenceId(4), ReferenceId(6), ReferenceId(8), ReferenceId(10), ReferenceId(12), ReferenceId(14), ReferenceId(16), ReferenceId(18), ReferenceId(20), ReferenceId(22), ReferenceId(24), ReferenceId(26), ReferenceId(28), ReferenceId(30), ReferenceId(32), ReferenceId(34)] rebuilt : SymbolId(2): [ReferenceId(1)] Symbol reference IDs mismatch for "C2_private": after transform: SymbolId(2): [ReferenceId(1), ReferenceId(3), ReferenceId(5), ReferenceId(7), ReferenceId(9), ReferenceId(11), ReferenceId(13), ReferenceId(15), ReferenceId(17), ReferenceId(19), ReferenceId(21), ReferenceId(23), ReferenceId(25), ReferenceId(27), ReferenceId(29), ReferenceId(31), ReferenceId(33), ReferenceId(35)] rebuilt : SymbolId(3): [] -Symbol flags mismatch for "C1_public": -after transform: SymbolId(6): SymbolFlags(Export | Class) -rebuilt : SymbolId(6): SymbolFlags(Class) Symbol reference IDs mismatch for "C1_public": after transform: SymbolId(6): [ReferenceId(36), ReferenceId(38), ReferenceId(40), ReferenceId(42), ReferenceId(44), ReferenceId(46), ReferenceId(48), ReferenceId(50), ReferenceId(52), ReferenceId(54), ReferenceId(56), ReferenceId(58), ReferenceId(60), ReferenceId(62), ReferenceId(64), ReferenceId(66), ReferenceId(68), ReferenceId(70)] rebuilt : SymbolId(6): [ReferenceId(5)] @@ -29727,32 +28804,23 @@ rebuilt : SymbolId(1): [] Symbol reference IDs mismatch for "privateClass": after transform: SymbolId(87): [ReferenceId(68), ReferenceId(69), ReferenceId(70), ReferenceId(71), ReferenceId(72), ReferenceId(73), ReferenceId(80), ReferenceId(81), ReferenceId(82), ReferenceId(83), ReferenceId(84), ReferenceId(85), ReferenceId(92), ReferenceId(93), ReferenceId(94), ReferenceId(95), ReferenceId(100), ReferenceId(101), ReferenceId(102), ReferenceId(103), ReferenceId(108), ReferenceId(110)] rebuilt : SymbolId(20): [] -Symbol flags mismatch for "publicClass": -after transform: SymbolId(88): SymbolFlags(Export | Class) -rebuilt : SymbolId(21): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClass": after transform: SymbolId(88): [ReferenceId(74), ReferenceId(75), ReferenceId(76), ReferenceId(77), ReferenceId(78), ReferenceId(79), ReferenceId(86), ReferenceId(87), ReferenceId(88), ReferenceId(89), ReferenceId(90), ReferenceId(91), ReferenceId(96), ReferenceId(97), ReferenceId(98), ReferenceId(99), ReferenceId(104), ReferenceId(105), ReferenceId(106), ReferenceId(107), ReferenceId(109), ReferenceId(111), ReferenceId(112), ReferenceId(113), ReferenceId(114), ReferenceId(115), ReferenceId(116), ReferenceId(117)] rebuilt : SymbolId(21): [ReferenceId(1)] -Symbol flags mismatch for "publicClassWithWithPrivateTypeParameters": -after transform: SymbolId(105): SymbolFlags(Export | Class) -rebuilt : SymbolId(22): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithWithPrivateTypeParameters": after transform: SymbolId(105): [] rebuilt : SymbolId(22): [ReferenceId(3)] -Symbol flags mismatch for "publicClassWithWithPublicTypeParameters": -after transform: SymbolId(110): SymbolFlags(Export | Class) -rebuilt : SymbolId(23): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithWithPublicTypeParameters": after transform: SymbolId(110): [] rebuilt : SymbolId(23): [ReferenceId(5)] Symbol flags mismatch for "publicFunctionWithPrivateTypeParameters": -after transform: SymbolId(125): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(125): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(26): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "publicFunctionWithPrivateTypeParameters": after transform: SymbolId(125): [] rebuilt : SymbolId(26): [ReferenceId(7)] Symbol flags mismatch for "publicFunctionWithPublicTypeParameters": -after transform: SymbolId(127): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(127): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(27): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "publicFunctionWithPublicTypeParameters": after transform: SymbolId(127): [] @@ -29763,14 +28831,11 @@ rebuilt : SymbolId(28): SymbolFlags(FunctionScopedVariable) Symbol flags mismatch for "privateFunctionWithPublicTypeParameters": after transform: SymbolId(131): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(29): SymbolFlags(FunctionScopedVariable) -Symbol flags mismatch for "publicClassWithWithPublicTypeParametersWithoutExtends": -after transform: SymbolId(141): SymbolFlags(Export | Class) -rebuilt : SymbolId(30): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithWithPublicTypeParametersWithoutExtends": after transform: SymbolId(141): [] rebuilt : SymbolId(30): [ReferenceId(11)] Symbol flags mismatch for "publicFunctionWithPublicTypeParametersWithoutExtends": -after transform: SymbolId(151): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(151): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(32): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "publicFunctionWithPublicTypeParametersWithoutExtends": after transform: SymbolId(151): [] @@ -29778,14 +28843,11 @@ rebuilt : SymbolId(32): [ReferenceId(13)] Symbol flags mismatch for "privateFunctionWithPublicTypeParametersWithoutExtends": after transform: SymbolId(153): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(33): SymbolFlags(FunctionScopedVariable) -Symbol flags mismatch for "publicClassWithWithPrivateModuleTypeParameters": -after transform: SymbolId(159): SymbolFlags(Export | Class) -rebuilt : SymbolId(34): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithWithPrivateModuleTypeParameters": after transform: SymbolId(159): [] rebuilt : SymbolId(34): [ReferenceId(15)] Symbol flags mismatch for "publicFunctionWithPrivateMopduleTypeParameters": -after transform: SymbolId(162): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(162): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(35): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "publicFunctionWithPrivateMopduleTypeParameters": after transform: SymbolId(162): [] @@ -29796,32 +28858,23 @@ rebuilt : SymbolId(37): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "privateClass": after transform: SymbolId(174): [ReferenceId(136), ReferenceId(137), ReferenceId(138), ReferenceId(139), ReferenceId(140), ReferenceId(141), ReferenceId(148), ReferenceId(149), ReferenceId(150), ReferenceId(151), ReferenceId(152), ReferenceId(153), ReferenceId(160), ReferenceId(161), ReferenceId(162), ReferenceId(163), ReferenceId(168), ReferenceId(169), ReferenceId(170), ReferenceId(171), ReferenceId(176), ReferenceId(178)] rebuilt : SymbolId(40): [] -Symbol flags mismatch for "publicClass": -after transform: SymbolId(175): SymbolFlags(Export | Class) -rebuilt : SymbolId(41): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClass": after transform: SymbolId(175): [ReferenceId(142), ReferenceId(143), ReferenceId(144), ReferenceId(145), ReferenceId(146), ReferenceId(147), ReferenceId(154), ReferenceId(155), ReferenceId(156), ReferenceId(157), ReferenceId(158), ReferenceId(159), ReferenceId(164), ReferenceId(165), ReferenceId(166), ReferenceId(167), ReferenceId(172), ReferenceId(173), ReferenceId(174), ReferenceId(175), ReferenceId(177), ReferenceId(179), ReferenceId(180), ReferenceId(181), ReferenceId(182), ReferenceId(183), ReferenceId(184), ReferenceId(185)] rebuilt : SymbolId(41): [ReferenceId(21)] -Symbol flags mismatch for "publicClassWithWithPrivateTypeParameters": -after transform: SymbolId(192): SymbolFlags(Export | Class) -rebuilt : SymbolId(42): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithWithPrivateTypeParameters": after transform: SymbolId(192): [] rebuilt : SymbolId(42): [ReferenceId(23)] -Symbol flags mismatch for "publicClassWithWithPublicTypeParameters": -after transform: SymbolId(197): SymbolFlags(Export | Class) -rebuilt : SymbolId(43): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithWithPublicTypeParameters": after transform: SymbolId(197): [] rebuilt : SymbolId(43): [ReferenceId(25)] Symbol flags mismatch for "publicFunctionWithPrivateTypeParameters": -after transform: SymbolId(212): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(212): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(46): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "publicFunctionWithPrivateTypeParameters": after transform: SymbolId(212): [] rebuilt : SymbolId(46): [ReferenceId(27)] Symbol flags mismatch for "publicFunctionWithPublicTypeParameters": -after transform: SymbolId(214): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(214): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(47): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "publicFunctionWithPublicTypeParameters": after transform: SymbolId(214): [] @@ -29832,14 +28885,11 @@ rebuilt : SymbolId(48): SymbolFlags(FunctionScopedVariable) Symbol flags mismatch for "privateFunctionWithPublicTypeParameters": after transform: SymbolId(218): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(49): SymbolFlags(FunctionScopedVariable) -Symbol flags mismatch for "publicClassWithWithPublicTypeParametersWithoutExtends": -after transform: SymbolId(228): SymbolFlags(Export | Class) -rebuilt : SymbolId(50): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithWithPublicTypeParametersWithoutExtends": after transform: SymbolId(228): [] rebuilt : SymbolId(50): [ReferenceId(31)] Symbol flags mismatch for "publicFunctionWithPublicTypeParametersWithoutExtends": -after transform: SymbolId(238): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(238): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(52): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "publicFunctionWithPublicTypeParametersWithoutExtends": after transform: SymbolId(238): [] @@ -29988,60 +29038,33 @@ rebuilt : SymbolId(1): [] Symbol reference IDs mismatch for "privateClassInPublicModule": after transform: SymbolId(27): [ReferenceId(30), ReferenceId(38)] rebuilt : SymbolId(20): [] -Symbol flags mismatch for "publicClassInPublicModule": -after transform: SymbolId(28): SymbolFlags(Export | Class) -rebuilt : SymbolId(21): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassInPublicModule": after transform: SymbolId(28): [ReferenceId(34), ReferenceId(42)] rebuilt : SymbolId(21): [ReferenceId(9)] -Symbol flags mismatch for "publicClassWithPrivateTypeParameters": -after transform: SymbolId(29): SymbolFlags(Export | Class) -rebuilt : SymbolId(22): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithPrivateTypeParameters": after transform: SymbolId(29): [] rebuilt : SymbolId(22): [ReferenceId(12)] -Symbol flags mismatch for "publicClassWithPublicTypeParameters": -after transform: SymbolId(32): SymbolFlags(Export | Class) -rebuilt : SymbolId(24): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithPublicTypeParameters": after transform: SymbolId(32): [] rebuilt : SymbolId(24): [ReferenceId(15)] -Symbol flags mismatch for "publicClassWithPublicTypeParametersWithoutExtends": -after transform: SymbolId(41): SymbolFlags(Export | Class) -rebuilt : SymbolId(30): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithPublicTypeParametersWithoutExtends": after transform: SymbolId(41): [] rebuilt : SymbolId(30): [ReferenceId(20)] -Symbol flags mismatch for "publicClassWithTypeParametersFromPrivateModule": -after transform: SymbolId(47): SymbolFlags(Export | Class) -rebuilt : SymbolId(34): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithTypeParametersFromPrivateModule": after transform: SymbolId(47): [] rebuilt : SymbolId(34): [ReferenceId(24)] Symbol reference IDs mismatch for "privateClassInPrivateModule": after transform: SymbolId(54): [ReferenceId(60), ReferenceId(68)] rebuilt : SymbolId(40): [] -Symbol flags mismatch for "publicClassInPrivateModule": -after transform: SymbolId(55): SymbolFlags(Export | Class) -rebuilt : SymbolId(41): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassInPrivateModule": after transform: SymbolId(55): [ReferenceId(64), ReferenceId(72)] rebuilt : SymbolId(41): [ReferenceId(29)] -Symbol flags mismatch for "publicClassWithPrivateTypeParameters": -after transform: SymbolId(56): SymbolFlags(Export | Class) -rebuilt : SymbolId(42): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithPrivateTypeParameters": after transform: SymbolId(56): [] rebuilt : SymbolId(42): [ReferenceId(32)] -Symbol flags mismatch for "publicClassWithPublicTypeParameters": -after transform: SymbolId(59): SymbolFlags(Export | Class) -rebuilt : SymbolId(44): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithPublicTypeParameters": after transform: SymbolId(59): [] rebuilt : SymbolId(44): [ReferenceId(35)] -Symbol flags mismatch for "publicClassWithPublicTypeParametersWithoutExtends": -after transform: SymbolId(68): SymbolFlags(Export | Class) -rebuilt : SymbolId(50): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassWithPublicTypeParametersWithoutExtends": after transform: SymbolId(68): [] rebuilt : SymbolId(50): [ReferenceId(40)] @@ -30143,36 +29166,24 @@ rebuilt : SymbolId(3): [] Symbol reference IDs mismatch for "privateClassInPublicModule": after transform: SymbolId(23): [ReferenceId(62), ReferenceId(68), ReferenceId(72), ReferenceId(81), ReferenceId(85), ReferenceId(88), ReferenceId(94), ReferenceId(98), ReferenceId(107), ReferenceId(111)] rebuilt : SymbolId(6): [] -Symbol flags mismatch for "publicClassInPublicModule": -after transform: SymbolId(24): SymbolFlags(Export | Class) -rebuilt : SymbolId(7): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassInPublicModule": after transform: SymbolId(24): [ReferenceId(70), ReferenceId(74), ReferenceId(75), ReferenceId(83), ReferenceId(87), ReferenceId(96), ReferenceId(100), ReferenceId(101), ReferenceId(109), ReferenceId(113)] rebuilt : SymbolId(7): [ReferenceId(1)] Symbol reference IDs mismatch for "privateClassInPublicModuleT": after transform: SymbolId(25): [ReferenceId(67), ReferenceId(69), ReferenceId(80), ReferenceId(82), ReferenceId(93), ReferenceId(95), ReferenceId(106), ReferenceId(108)] rebuilt : SymbolId(8): [] -Symbol flags mismatch for "publicClassInPublicModuleT": -after transform: SymbolId(27): SymbolFlags(Export | Class) -rebuilt : SymbolId(9): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassInPublicModuleT": after transform: SymbolId(27): [ReferenceId(65), ReferenceId(71), ReferenceId(73), ReferenceId(78), ReferenceId(84), ReferenceId(86), ReferenceId(91), ReferenceId(97), ReferenceId(99), ReferenceId(104), ReferenceId(110), ReferenceId(112), ReferenceId(116), ReferenceId(120)] rebuilt : SymbolId(9): [ReferenceId(3)] Symbol reference IDs mismatch for "privateClassInPrivateModule": after transform: SymbolId(46): [ReferenceId(124), ReferenceId(130), ReferenceId(134), ReferenceId(143), ReferenceId(147), ReferenceId(150), ReferenceId(156), ReferenceId(160), ReferenceId(169), ReferenceId(173)] rebuilt : SymbolId(12): [] -Symbol flags mismatch for "publicClassInPrivateModule": -after transform: SymbolId(47): SymbolFlags(Export | Class) -rebuilt : SymbolId(13): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassInPrivateModule": after transform: SymbolId(47): [ReferenceId(132), ReferenceId(136), ReferenceId(137), ReferenceId(145), ReferenceId(149), ReferenceId(158), ReferenceId(162), ReferenceId(163), ReferenceId(171), ReferenceId(175)] rebuilt : SymbolId(13): [ReferenceId(7)] Symbol reference IDs mismatch for "privateClassInPrivateModuleT": after transform: SymbolId(48): [ReferenceId(129), ReferenceId(131), ReferenceId(142), ReferenceId(144), ReferenceId(155), ReferenceId(157), ReferenceId(168), ReferenceId(170)] rebuilt : SymbolId(14): [] -Symbol flags mismatch for "publicClassInPrivateModuleT": -after transform: SymbolId(50): SymbolFlags(Export | Class) -rebuilt : SymbolId(15): SymbolFlags(Class) Symbol reference IDs mismatch for "publicClassInPrivateModuleT": after transform: SymbolId(50): [ReferenceId(127), ReferenceId(133), ReferenceId(135), ReferenceId(140), ReferenceId(146), ReferenceId(148), ReferenceId(153), ReferenceId(159), ReferenceId(161), ReferenceId(166), ReferenceId(172), ReferenceId(174), ReferenceId(178), ReferenceId(182)] rebuilt : SymbolId(15): [ReferenceId(9)] @@ -30218,9 +29229,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Symbol flags mismatch for "Example": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "Example": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(2)] @@ -31532,9 +30540,6 @@ rebuilt : ScopeId(1): ScopeFlags(Function) Scope children mismatch: after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] rebuilt : ScopeId(1): [ScopeId(2)] -Symbol flags mismatch for "f": -after transform: SymbolId(2): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(2): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "f": after transform: SymbolId(2): [ReferenceId(3), ReferenceId(5), ReferenceId(7), ReferenceId(8), ReferenceId(10), ReferenceId(11), ReferenceId(12)] rebuilt : SymbolId(2): [ReferenceId(0), ReferenceId(2), ReferenceId(3), ReferenceId(5), ReferenceId(6), ReferenceId(8), ReferenceId(9), ReferenceId(10)] @@ -31619,15 +30624,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) -Symbol flags mismatch for "MemberName": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "MemberName": after transform: SymbolId(1): [ReferenceId(0)] rebuilt : SymbolId(2): [ReferenceId(1), ReferenceId(2)] -Symbol flags mismatch for "MemberNameArray": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(3): SymbolFlags(Class) Symbol reference IDs mismatch for "MemberNameArray": after transform: SymbolId(2): [] rebuilt : SymbolId(3): [ReferenceId(4)] @@ -31672,9 +30671,6 @@ 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): [] -Symbol flags mismatch for "y1": -after transform: SymbolId(51): SymbolFlags(BlockScopedVariable) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) Unresolved references mismatch: after transform: ["Array"] rebuilt : [] @@ -31855,9 +30851,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Binding symbols mismatch: after transform: ScopeId(3): [SymbolId(2), SymbolId(3), SymbolId(5), SymbolId(8)] rebuilt : ScopeId(3): [SymbolId(3), SymbolId(4), SymbolId(5), SymbolId(7)] -Symbol flags mismatch for "C": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "C": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -31938,9 +30931,6 @@ 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): [] -Symbol flags mismatch for "zipped1": -after transform: SymbolId(21): SymbolFlags(BlockScopedVariable | ConstVariable) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export) Reference symbol mismatch for "opt1": after transform: SymbolId(18) "opt1" rebuilt : @@ -32098,15 +31088,9 @@ rebuilt : ScopeId(5): [] Bindings mismatch: after transform: ScopeId(8): ["TValue"] rebuilt : ScopeId(7): [] -Symbol flags mismatch for "ItemValue": -after transform: SymbolId(6): SymbolFlags(Export | Class) -rebuilt : SymbolId(8): SymbolFlags(Class) Symbol reference IDs mismatch for "ItemValue": after transform: SymbolId(6): [ReferenceId(3)] rebuilt : SymbolId(8): [ReferenceId(1), ReferenceId(2)] -Symbol flags mismatch for "ViewModel": -after transform: SymbolId(9): SymbolFlags(Export | Class) -rebuilt : SymbolId(10): SymbolFlags(Class) Symbol reference IDs mismatch for "ViewModel": after transform: SymbolId(9): [ReferenceId(0)] rebuilt : SymbolId(10): [ReferenceId(4)] @@ -32141,8 +31125,8 @@ semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1)] rebuilt : ScopeId(0): [] Symbol flags mismatch for "Sizing": -after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export | TypeAlias) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export) +after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | TypeAlias) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable) Symbol span mismatch for "Sizing": after transform: SymbolId(0): Span { start: 12, end: 18 } rebuilt : SymbolId(0): Span { start: 39, end: 45 } @@ -32221,9 +31205,6 @@ rebuilt : ScopeId(0): [SymbolId(0)] Binding symbols mismatch: after transform: ScopeId(1): [SymbolId(1), SymbolId(3)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] -Symbol flags mismatch for "Person": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "Person": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -32777,21 +31758,12 @@ rebuilt : ScopeId(3): ScopeFlags(Function) Bindings mismatch: after transform: ScopeId(5): ["B", "C", "D", "f", "g"] rebuilt : ScopeId(5): ["f", "g"] -Symbol flags mismatch for "reduce": -after transform: SymbolId(1): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(2): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "reduce": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(7)] -Symbol flags mismatch for "compose": -after transform: SymbolId(8): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(8): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "compose": after transform: SymbolId(8): [] rebuilt : SymbolId(8): [ReferenceId(14)] -Symbol flags mismatch for "compose2": -after transform: SymbolId(9): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(9): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "compose2": after transform: SymbolId(9): [ReferenceId(11)] rebuilt : SymbolId(9): [ReferenceId(12), ReferenceId(19)] @@ -32991,9 +31963,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Symbol flags mismatch for "f": -after transform: SymbolId(1): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(2): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "f": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -33137,9 +32106,6 @@ rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(2): ScopeFlags(Function) -Symbol flags mismatch for "Test": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "Test": after transform: SymbolId(2): [] rebuilt : SymbolId(4): [ReferenceId(2)] @@ -33165,15 +32131,9 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(5), SymbolId(6) Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Symbol flags mismatch for "Point": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "Point": after transform: SymbolId(2): [ReferenceId(2)] rebuilt : SymbolId(2): [ReferenceId(3), ReferenceId(5)] -Symbol flags mismatch for "foo": -after transform: SymbolId(6): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(6): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "foo": after transform: SymbolId(6): [] rebuilt : SymbolId(6): [ReferenceId(7)] @@ -34765,9 +33725,6 @@ rebuilt : ScopeId(0): [SymbolId(0), SymbolId(3), SymbolId(4), SymbolId(5) Binding symbols mismatch: after transform: ScopeId(1): [SymbolId(1), SymbolId(6)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] -Symbol flags mismatch for "c": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "c": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -34815,9 +33772,6 @@ rebuilt : ScopeId(3): [SymbolId(4), SymbolId(5)] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(3): ScopeFlags(Function) -Symbol flags mismatch for "c": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(3): SymbolFlags(Class) Symbol reference IDs mismatch for "c": after transform: SymbolId(2): [] rebuilt : SymbolId(3): [ReferenceId(1)] @@ -34863,9 +33817,6 @@ rebuilt : ScopeId(1): ScopeFlags(Function) Bindings mismatch: after transform: ScopeId(2): ["T"] rebuilt : ScopeId(2): [] -Symbol flags mismatch for "C": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "C": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -35284,9 +34235,6 @@ rebuilt : ScopeId(47): ["candidate", "candidateValue", "dit", "index", "l Symbol reference IDs mismatch for "ListWrapper2": after transform: SymbolId(5): [ReferenceId(5), ReferenceId(9), ReferenceId(12)] rebuilt : SymbolId(4): [ReferenceId(4)] -Symbol flags mismatch for "funkyFor": -after transform: SymbolId(14): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(12): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "funkyFor": after transform: SymbolId(14): [] rebuilt : SymbolId(12): [ReferenceId(21)] @@ -35498,9 +34446,6 @@ rebuilt : ScopeId(1): ScopeFlags(Function) Scope children mismatch: after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] rebuilt : ScopeId(1): [ScopeId(2)] -Symbol flags mismatch for "f": -after transform: SymbolId(2): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(2): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "f": after transform: SymbolId(2): [ReferenceId(1)] rebuilt : SymbolId(2): [ReferenceId(1), ReferenceId(2)] @@ -35685,15 +34630,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) -Symbol flags mismatch for "A": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "A": after transform: SymbolId(1): [ReferenceId(0)] rebuilt : SymbolId(2): [ReferenceId(1), ReferenceId(2)] -Symbol flags mismatch for "B": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(3): SymbolFlags(Class) Symbol reference IDs mismatch for "B": after transform: SymbolId(2): [] rebuilt : SymbolId(3): [ReferenceId(4)] @@ -35878,7 +34817,7 @@ Symbol flags mismatch for "TopLevelConstEnum": after transform: SymbolId(1): SymbolFlags(ConstEnum) rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) Symbol flags mismatch for "NonTopLevelConstEnum": -after transform: SymbolId(5): SymbolFlags(Export | ConstEnum) +after transform: SymbolId(5): SymbolFlags(ConstEnum) rebuilt : SymbolId(5): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "NonTopLevelConstEnum": after transform: SymbolId(5): [] @@ -35919,7 +34858,7 @@ Symbol flags mismatch for "TopLevelConstEnum": after transform: SymbolId(1): SymbolFlags(ConstEnum) rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) Symbol flags mismatch for "NonTopLevelConstEnum": -after transform: SymbolId(5): SymbolFlags(Export | ConstEnum) +after transform: SymbolId(5): SymbolFlags(ConstEnum) rebuilt : SymbolId(5): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "NonTopLevelConstEnum": after transform: SymbolId(5): [] @@ -35951,8 +34890,8 @@ Binding symbols mismatch: after transform: ScopeId(6): [SymbolId(5), SymbolId(8)] rebuilt : ScopeId(6): [SymbolId(8), SymbolId(9)] Symbol flags mismatch for "F": -after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | Export | Function | NameSpaceModule | ValueModule) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | Function | NameSpaceModule | ValueModule) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Function) Symbol reference IDs mismatch for "F": after transform: SymbolId(0): [] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(1)] @@ -35960,8 +34899,8 @@ Symbol redeclarations mismatch for "F": after transform: SymbolId(0): [Span { start: 37, end: 38 }] rebuilt : SymbolId(0): [] Symbol flags mismatch for "C": -after transform: SymbolId(2): SymbolFlags(Export | Class | NameSpaceModule | ValueModule) -rebuilt : SymbolId(3): SymbolFlags(Export | Class) +after transform: SymbolId(2): SymbolFlags(Class | NameSpaceModule | ValueModule) +rebuilt : SymbolId(3): SymbolFlags(Class) Symbol reference IDs mismatch for "C": after transform: SymbolId(2): [] rebuilt : SymbolId(3): [ReferenceId(2), ReferenceId(3)] @@ -35969,8 +34908,8 @@ Symbol redeclarations mismatch for "C": after transform: SymbolId(2): [Span { start: 83, end: 84 }] rebuilt : SymbolId(3): [] Symbol flags mismatch for "E": -after transform: SymbolId(4): SymbolFlags(Export | RegularEnum | NameSpaceModule | ValueModule) -rebuilt : SymbolId(6): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(4): SymbolFlags(RegularEnum | NameSpaceModule | ValueModule) +rebuilt : SymbolId(6): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "E": after transform: SymbolId(4): [] rebuilt : SymbolId(6): [ReferenceId(5), ReferenceId(6)] @@ -36024,22 +34963,19 @@ Scope flags mismatch: after transform: ScopeId(9): ScopeFlags(StrictMode) rebuilt : ScopeId(9): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "TopLevelEnum": -after transform: SymbolId(4): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(5): SymbolFlags(BlockScopedVariable | Export) -Symbol flags mismatch for "NonTopLevelClass": -after transform: SymbolId(7): SymbolFlags(Export | Class) -rebuilt : SymbolId(9): SymbolFlags(Class) +after transform: SymbolId(4): SymbolFlags(RegularEnum) +rebuilt : SymbolId(5): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "NonTopLevelClass": after transform: SymbolId(7): [] rebuilt : SymbolId(9): [ReferenceId(6)] Symbol flags mismatch for "NonTopLevelFunction": -after transform: SymbolId(10): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(10): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(13): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "NonTopLevelFunction": after transform: SymbolId(10): [] rebuilt : SymbolId(13): [ReferenceId(12)] Symbol flags mismatch for "NonTopLevelEnum": -after transform: SymbolId(11): SymbolFlags(Export | RegularEnum) +after transform: SymbolId(11): SymbolFlags(RegularEnum) rebuilt : SymbolId(14): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "NonTopLevelEnum": after transform: SymbolId(11): [] @@ -36063,8 +34999,8 @@ Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(StrictMode) rebuilt : ScopeId(2): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "AnEnum": -after transform: SymbolId(2): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(3): SymbolFlags(FunctionScopedVariable | Export) +after transform: SymbolId(2): SymbolFlags(RegularEnum) +rebuilt : SymbolId(3): SymbolFlags(FunctionScopedVariable) Reference symbol mismatch for "ns": after transform: SymbolId(0) "ns" rebuilt : SymbolId(0) "ns" @@ -36291,9 +35227,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Symbol flags mismatch for "bar": -after transform: SymbolId(1): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(2): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "bar": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -36404,8 +35337,8 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "SyntaxKind": -after transform: SymbolId(0): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(RegularEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "SyntaxKind": 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(11), ReferenceId(12), ReferenceId(13), ReferenceId(14), ReferenceId(15), ReferenceId(16), ReferenceId(17), ReferenceId(18), ReferenceId(19), ReferenceId(20), ReferenceId(21), ReferenceId(22), ReferenceId(23), ReferenceId(24), ReferenceId(25), ReferenceId(26), ReferenceId(27), ReferenceId(28), ReferenceId(29), ReferenceId(30), ReferenceId(31), ReferenceId(32), ReferenceId(33), ReferenceId(34), ReferenceId(35), ReferenceId(36), ReferenceId(37), ReferenceId(38), ReferenceId(39), ReferenceId(40), ReferenceId(41), ReferenceId(42), ReferenceId(43), ReferenceId(44), ReferenceId(45), ReferenceId(46), ReferenceId(47), ReferenceId(48), ReferenceId(49), ReferenceId(50), ReferenceId(51), ReferenceId(52), ReferenceId(53), ReferenceId(54), ReferenceId(55), ReferenceId(56), ReferenceId(57), ReferenceId(58), ReferenceId(59), ReferenceId(60), ReferenceId(61), ReferenceId(62), ReferenceId(63), ReferenceId(64), ReferenceId(65), ReferenceId(66), ReferenceId(67), ReferenceId(68), ReferenceId(69), ReferenceId(70), ReferenceId(71), ReferenceId(72), ReferenceId(73), ReferenceId(74), ReferenceId(75), ReferenceId(76), ReferenceId(77), ReferenceId(78), ReferenceId(79), ReferenceId(80), ReferenceId(81), ReferenceId(82), ReferenceId(83), ReferenceId(84), ReferenceId(85), ReferenceId(86), ReferenceId(87), ReferenceId(88), ReferenceId(89), ReferenceId(90), ReferenceId(91), ReferenceId(92), ReferenceId(93), ReferenceId(94), ReferenceId(95), ReferenceId(96), ReferenceId(97), ReferenceId(98), ReferenceId(99)] rebuilt : SymbolId(0): [] @@ -36998,9 +35931,6 @@ rebuilt : ScopeId(0): [SymbolId(0), SymbolId(3)] Binding symbols mismatch: after transform: ScopeId(1): [SymbolId(1), SymbolId(3)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] -Symbol flags mismatch for "key": -after transform: SymbolId(1): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(2): SymbolFlags(BlockScopedVariable | ConstVariable) Reference symbol mismatch for "Foo": after transform: SymbolId(0) "Foo" rebuilt : SymbolId(0) "Foo" @@ -37022,7 +35952,7 @@ Binding symbols mismatch: after transform: ScopeId(1): [SymbolId(1), SymbolId(3)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Symbol flags mismatch for "IsObject": -after transform: SymbolId(1): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(1): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(2): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "IsObject": after transform: SymbolId(1): [] @@ -37704,45 +36634,24 @@ rebuilt : ScopeId(26): [SymbolId(51), SymbolId(52)] Binding symbols mismatch: after transform: ScopeId(36): [SymbolId(51), SymbolId(59)] rebuilt : ScopeId(27): [SymbolId(53), SymbolId(54)] -Symbol flags mismatch for "ClassA": -after transform: SymbolId(3): SymbolFlags(Export | Class) -rebuilt : SymbolId(6): SymbolFlags(Class) Symbol reference IDs mismatch for "ClassA": after transform: SymbolId(3): [ReferenceId(0), ReferenceId(18)] rebuilt : SymbolId(6): [ReferenceId(10)] -Symbol flags mismatch for "ClassB": -after transform: SymbolId(13): SymbolFlags(Export | Class) -rebuilt : SymbolId(16): SymbolFlags(Class) Symbol reference IDs mismatch for "ClassB": after transform: SymbolId(13): [ReferenceId(8), ReferenceId(26)] rebuilt : SymbolId(16): [ReferenceId(22)] -Symbol flags mismatch for "ClassA": -after transform: SymbolId(39): SymbolFlags(Export | Class) -rebuilt : SymbolId(43): SymbolFlags(Class) Symbol reference IDs mismatch for "ClassA": after transform: SymbolId(39): [] rebuilt : SymbolId(43): [ReferenceId(40)] -Symbol flags mismatch for "ClassB": -after transform: SymbolId(40): SymbolFlags(Export | Class) -rebuilt : SymbolId(44): SymbolFlags(Class) Symbol reference IDs mismatch for "ClassB": after transform: SymbolId(40): [] rebuilt : SymbolId(44): [ReferenceId(42)] -Symbol flags mismatch for "ClassC": -after transform: SymbolId(41): SymbolFlags(Export | Class) -rebuilt : SymbolId(45): SymbolFlags(Class) Symbol reference IDs mismatch for "ClassC": after transform: SymbolId(41): [] rebuilt : SymbolId(45): [ReferenceId(44)] -Symbol flags mismatch for "ClassA": -after transform: SymbolId(48): SymbolFlags(Export | Class) -rebuilt : SymbolId(49): SymbolFlags(Class) Symbol reference IDs mismatch for "ClassA": after transform: SymbolId(48): [] rebuilt : SymbolId(49): [ReferenceId(54)] -Symbol flags mismatch for "ClassA": -after transform: SymbolId(51): SymbolFlags(Export | Class) -rebuilt : SymbolId(54): SymbolFlags(Class) Symbol reference IDs mismatch for "ClassA": after transform: SymbolId(51): [] rebuilt : SymbolId(54): [ReferenceId(60)] @@ -38543,9 +37452,6 @@ 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 for "c1": -after transform: SymbolId(4): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "c1": after transform: SymbolId(4): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -38714,13 +37620,13 @@ Binding symbols mismatch: after transform: ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(4)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3)] Symbol flags mismatch for "printVersion": -after transform: SymbolId(1): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(1): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(2): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "printVersion": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(3)] Symbol flags mismatch for "log": -after transform: SymbolId(2): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(2): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(3): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "log": after transform: SymbolId(2): [ReferenceId(0)] @@ -39257,13 +38163,13 @@ Binding symbols mismatch: after transform: ScopeId(6): [SymbolId(22), SymbolId(30)] rebuilt : ScopeId(5): [SymbolId(17), SymbolId(18)] Symbol flags mismatch for "foo": -after transform: SymbolId(18): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(18): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(15): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "foo": after transform: SymbolId(18): [] rebuilt : SymbolId(15): [ReferenceId(3)] Symbol flags mismatch for "foo": -after transform: SymbolId(22): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(22): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(18): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "foo": after transform: SymbolId(22): [] @@ -39288,7 +38194,7 @@ Binding symbols mismatch: after transform: ScopeId(2): [SymbolId(12), SymbolId(15)] rebuilt : ScopeId(2): [SymbolId(9), SymbolId(10)] Symbol flags mismatch for "foo": -after transform: SymbolId(12): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(12): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(10): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "foo": after transform: SymbolId(12): [] @@ -39478,7 +38384,7 @@ Scope flags mismatch: after transform: ScopeId(59): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(55): ScopeFlags(Function) Symbol flags mismatch for "f1": -after transform: SymbolId(20): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(20): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(35): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "f1": after transform: SymbolId(20): [] @@ -39857,7 +38763,7 @@ Scope flags mismatch: after transform: ScopeId(59): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(55): ScopeFlags(Function) Symbol flags mismatch for "f1": -after transform: SymbolId(20): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(20): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(35): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "f1": after transform: SymbolId(20): [] @@ -39907,9 +38813,6 @@ rebuilt : ScopeId(1): ScopeFlags(Function) Bindings mismatch: after transform: ScopeId(2): ["T"] rebuilt : ScopeId(2): [] -Symbol flags mismatch for "MyPromise": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(3): SymbolFlags(Class) Symbol reference IDs mismatch for "MyPromise": after transform: SymbolId(1): [] rebuilt : SymbolId(3): [ReferenceId(3)] @@ -40290,7 +39193,7 @@ Scope flags mismatch: after transform: ScopeId(59): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(55): ScopeFlags(Function) Symbol flags mismatch for "f1": -after transform: SymbolId(20): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(20): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(35): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "f1": after transform: SymbolId(20): [] @@ -42041,9 +40944,6 @@ rebuilt : ScopeId(1): ScopeFlags(Function) Scope children mismatch: after transform: ScopeId(1): [ScopeId(2), ScopeId(3)] rebuilt : ScopeId(1): [ScopeId(2)] -Symbol flags mismatch for "C": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "C": after transform: SymbolId(2): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -42131,9 +41031,6 @@ tasks/coverage/typescript/tests/cases/conformance/declarationEmit/typeofImportTy semantic error: Bindings mismatch: after transform: ScopeId(2): ["C", "class_"] rebuilt : ScopeId(2): ["class_"] -Symbol flags mismatch for "ClassMapDirective": -after transform: SymbolId(0): SymbolFlags(Export | Class) -rebuilt : SymbolId(0): SymbolFlags(Class) Symbol reference IDs mismatch for "ClassMapDirective": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(4)] rebuilt : SymbolId(0): [ReferenceId(2)] @@ -42567,9 +41464,6 @@ rebuilt : ScopeId(0): [SymbolId(0)] Binding symbols mismatch: after transform: ScopeId(1): [SymbolId(1), SymbolId(2)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] -Symbol flags mismatch for "Service": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "Service": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -43254,8 +42148,8 @@ Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode) rebuilt : ScopeId(3): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "Animals": -after transform: SymbolId(0): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(RegularEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) Symbol redeclarations mismatch for "Animals": after transform: SymbolId(0): [Span { start: 45, end: 52 }, Span { start: 78, end: 85 }] rebuilt : SymbolId(0): [] @@ -43455,7 +42349,7 @@ Symbol redeclarations mismatch for "EImpl1": after transform: SymbolId(1): [Span { start: 238, end: 244 }] rebuilt : SymbolId(2): [] Symbol flags mismatch for "EConst1": -after transform: SymbolId(8): SymbolFlags(Export | RegularEnum) +after transform: SymbolId(8): SymbolFlags(RegularEnum) rebuilt : SymbolId(5): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "EConst1": after transform: SymbolId(8): [ReferenceId(0), ReferenceId(1), ReferenceId(2), ReferenceId(3), ReferenceId(4), ReferenceId(5), ReferenceId(45), ReferenceId(46)] @@ -43464,7 +42358,7 @@ Symbol redeclarations mismatch for "EConst1": after transform: SymbolId(8): [Span { start: 351, end: 358 }] rebuilt : SymbolId(5): [] Symbol flags mismatch for "EComp2": -after transform: SymbolId(17): SymbolFlags(Export | RegularEnum) +after transform: SymbolId(17): SymbolFlags(RegularEnum) rebuilt : SymbolId(11): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "EComp2": after transform: SymbolId(17): [ReferenceId(6), ReferenceId(7), ReferenceId(8), ReferenceId(9), ReferenceId(10), ReferenceId(11), ReferenceId(61), ReferenceId(62)] @@ -43479,7 +42373,7 @@ Symbol redeclarations mismatch for "EInit": after transform: SymbolId(26): [Span { start: 1009, end: 1014 }] rebuilt : SymbolId(17): [] Symbol flags mismatch for "Color": -after transform: SymbolId(33): SymbolFlags(Export | RegularEnum) +after transform: SymbolId(33): SymbolFlags(RegularEnum) rebuilt : SymbolId(22): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "Color": after transform: SymbolId(33): [] @@ -44875,7 +43769,7 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) Symbol flags mismatch for "generator": -after transform: SymbolId(1): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(1): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(2): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "generator": after transform: SymbolId(1): [] @@ -45334,17 +44228,14 @@ Binding symbols mismatch: after transform: ScopeId(3): [SymbolId(2), SymbolId(3)] rebuilt : ScopeId(3): [SymbolId(1), SymbolId(2)] Symbol flags mismatch for "Example": -after transform: SymbolId(1): SymbolFlags(Export | Class | NameSpaceModule | ValueModule) -rebuilt : SymbolId(0): SymbolFlags(Export | Class) +after transform: SymbolId(1): SymbolFlags(Class | NameSpaceModule | ValueModule) +rebuilt : SymbolId(0): SymbolFlags(Class) Symbol reference IDs mismatch for "Example": after transform: SymbolId(1): [ReferenceId(1)] rebuilt : SymbolId(0): [ReferenceId(2), ReferenceId(3), ReferenceId(4)] Symbol redeclarations mismatch for "Example": after transform: SymbolId(1): [Span { start: 93, end: 100 }] rebuilt : SymbolId(0): [] -Symbol flags mismatch for "x": -after transform: SymbolId(2): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(2): SymbolFlags(BlockScopedVariable | ConstVariable) Reference symbol mismatch for "deco": after transform: SymbolId(0) "deco" rebuilt : @@ -46395,14 +45286,14 @@ Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(StrictMode) rebuilt : ScopeId(2): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "AppType": -after transform: SymbolId(0): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(RegularEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "AppType": after transform: SymbolId(0): [ReferenceId(1), ReferenceId(5), ReferenceId(8), ReferenceId(12)] rebuilt : SymbolId(0): [ReferenceId(22), ReferenceId(25), ReferenceId(29)] Symbol flags mismatch for "AppStyle": -after transform: SymbolId(10): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(2): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(10): SymbolFlags(RegularEnum) +rebuilt : SymbolId(2): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "AppStyle": after transform: SymbolId(10): [ReferenceId(3), ReferenceId(6), ReferenceId(7), ReferenceId(9), ReferenceId(10), ReferenceId(11), ReferenceId(13), ReferenceId(14)] rebuilt : SymbolId(2): [ReferenceId(23), ReferenceId(24), ReferenceId(26), ReferenceId(27), ReferenceId(28), ReferenceId(30), ReferenceId(31)] @@ -48998,8 +47889,8 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "Foo": -after transform: SymbolId(0): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(RegularEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/typescript/tests/cases/conformance/expressions/typeGuards/TypeGuardWithArrayUnion.ts semantic error: Symbol reference IDs mismatch for "Message": @@ -49465,8 +48356,8 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "E1": -after transform: SymbolId(0): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(RegularEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/typescript/tests/cases/conformance/externalModules/amdImportNotAsPrimaryExpression.ts semantic error: Bindings mismatch: @@ -49482,8 +48373,8 @@ Scope flags mismatch: after transform: ScopeId(5): ScopeFlags(StrictMode) rebuilt : ScopeId(2): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "E1": -after transform: SymbolId(4): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(1): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(4): SymbolFlags(RegularEnum) +rebuilt : SymbolId(1): SymbolFlags(BlockScopedVariable) tasks/coverage/typescript/tests/cases/conformance/externalModules/asiPreventsParsingAsAmbientExternalModule02.ts semantic error: Missing SymbolId: "container" @@ -49527,8 +48418,8 @@ Scope flags mismatch: after transform: ScopeId(5): ScopeFlags(StrictMode) rebuilt : ScopeId(2): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "E1": -after transform: SymbolId(4): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(1): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(4): SymbolFlags(RegularEnum) +rebuilt : SymbolId(1): SymbolFlags(BlockScopedVariable) tasks/coverage/typescript/tests/cases/conformance/externalModules/es6/es6modulekindWithES5Target.ts semantic error: Scope children mismatch: @@ -49595,47 +48486,32 @@ Binding symbols mismatch: after transform: ScopeId(10): [SymbolId(10), SymbolId(16)] rebuilt : ScopeId(9): [SymbolId(13), SymbolId(14)] Symbol flags mismatch for "C": -after transform: SymbolId(0): SymbolFlags(Export | Class | NameSpaceModule | ValueModule) -rebuilt : SymbolId(0): SymbolFlags(Export | Class) +after transform: SymbolId(0): SymbolFlags(Class | NameSpaceModule | ValueModule) +rebuilt : SymbolId(0): SymbolFlags(Class) Symbol reference IDs mismatch for "C": after transform: SymbolId(0): [] rebuilt : SymbolId(0): [ReferenceId(1), ReferenceId(2)] Symbol redeclarations mismatch for "C": after transform: SymbolId(0): [Span { start: 37, end: 38 }] rebuilt : SymbolId(0): [] -Symbol flags mismatch for "x": -after transform: SymbolId(1): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(2): SymbolFlags(BlockScopedVariable | ConstVariable) Symbol flags mismatch for "E": -after transform: SymbolId(2): SymbolFlags(Export | RegularEnum | NameSpaceModule | ValueModule) -rebuilt : SymbolId(3): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(2): SymbolFlags(RegularEnum | NameSpaceModule | ValueModule) +rebuilt : SymbolId(3): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "E": after transform: SymbolId(2): [ReferenceId(6), ReferenceId(7)] rebuilt : SymbolId(3): [ReferenceId(6), ReferenceId(10), ReferenceId(12), ReferenceId(13), ReferenceId(15), ReferenceId(16)] Symbol redeclarations mismatch for "E": after transform: SymbolId(2): [Span { start: 109, end: 110 }, Span { start: 143, end: 144 }, Span { start: 191, end: 192 }] rebuilt : SymbolId(3): [] -Symbol flags mismatch for "y": -after transform: SymbolId(5): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(7): SymbolFlags(BlockScopedVariable | ConstVariable) -Symbol flags mismatch for "z": -after transform: SymbolId(6): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(9): SymbolFlags(BlockScopedVariable | ConstVariable) -Symbol flags mismatch for "x": -after transform: SymbolId(8): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(11): SymbolFlags(BlockScopedVariable | ConstVariable) Symbol flags mismatch for "F": -after transform: SymbolId(9): SymbolFlags(BlockScopedVariable | Export | Function | NameSpaceModule | ValueModule) -rebuilt : SymbolId(12): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(9): SymbolFlags(BlockScopedVariable | Function | NameSpaceModule | ValueModule) +rebuilt : SymbolId(12): SymbolFlags(BlockScopedVariable | Function) Symbol reference IDs mismatch for "F": after transform: SymbolId(9): [] rebuilt : SymbolId(12): [ReferenceId(21), ReferenceId(22)] Symbol redeclarations mismatch for "F": after transform: SymbolId(9): [Span { start: 336, end: 337 }] rebuilt : SymbolId(12): [] -Symbol flags mismatch for "x": -after transform: SymbolId(10): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(14): SymbolFlags(BlockScopedVariable | ConstVariable) Unresolved references mismatch: after transform: [] rebuilt : ["N"] @@ -49659,11 +48535,11 @@ Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(StrictMode) rebuilt : ScopeId(2): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "E1": -after transform: SymbolId(0): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(RegularEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) Symbol flags mismatch for "E2": -after transform: SymbolId(2): SymbolFlags(Export | ConstEnum) -rebuilt : SymbolId(2): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(2): SymbolFlags(ConstEnum) +rebuilt : SymbolId(2): SymbolFlags(BlockScopedVariable) tasks/coverage/typescript/tests/cases/conformance/externalModules/es6/es6modulekindWithES5Target7.ts semantic error: Missing SymbolId: "N" @@ -49745,47 +48621,32 @@ Binding symbols mismatch: after transform: ScopeId(10): [SymbolId(10), SymbolId(16)] rebuilt : ScopeId(9): [SymbolId(13), SymbolId(14)] Symbol flags mismatch for "C": -after transform: SymbolId(0): SymbolFlags(Export | Class | NameSpaceModule | ValueModule) -rebuilt : SymbolId(0): SymbolFlags(Export | Class) +after transform: SymbolId(0): SymbolFlags(Class | NameSpaceModule | ValueModule) +rebuilt : SymbolId(0): SymbolFlags(Class) Symbol reference IDs mismatch for "C": after transform: SymbolId(0): [] rebuilt : SymbolId(0): [ReferenceId(1), ReferenceId(2)] Symbol redeclarations mismatch for "C": after transform: SymbolId(0): [Span { start: 37, end: 38 }] rebuilt : SymbolId(0): [] -Symbol flags mismatch for "x": -after transform: SymbolId(1): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(2): SymbolFlags(BlockScopedVariable | ConstVariable) Symbol flags mismatch for "E": -after transform: SymbolId(2): SymbolFlags(Export | RegularEnum | NameSpaceModule | ValueModule) -rebuilt : SymbolId(3): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(2): SymbolFlags(RegularEnum | NameSpaceModule | ValueModule) +rebuilt : SymbolId(3): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "E": after transform: SymbolId(2): [ReferenceId(6), ReferenceId(7)] rebuilt : SymbolId(3): [ReferenceId(6), ReferenceId(10), ReferenceId(12), ReferenceId(13), ReferenceId(15), ReferenceId(16)] Symbol redeclarations mismatch for "E": after transform: SymbolId(2): [Span { start: 109, end: 110 }, Span { start: 143, end: 144 }, Span { start: 191, end: 192 }] rebuilt : SymbolId(3): [] -Symbol flags mismatch for "y": -after transform: SymbolId(5): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(7): SymbolFlags(BlockScopedVariable | ConstVariable) -Symbol flags mismatch for "z": -after transform: SymbolId(6): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(9): SymbolFlags(BlockScopedVariable | ConstVariable) -Symbol flags mismatch for "x": -after transform: SymbolId(8): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(11): SymbolFlags(BlockScopedVariable | ConstVariable) Symbol flags mismatch for "F": -after transform: SymbolId(9): SymbolFlags(BlockScopedVariable | Export | Function | NameSpaceModule | ValueModule) -rebuilt : SymbolId(12): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(9): SymbolFlags(BlockScopedVariable | Function | NameSpaceModule | ValueModule) +rebuilt : SymbolId(12): SymbolFlags(BlockScopedVariable | Function) Symbol reference IDs mismatch for "F": after transform: SymbolId(9): [] rebuilt : SymbolId(12): [ReferenceId(21), ReferenceId(22)] Symbol redeclarations mismatch for "F": after transform: SymbolId(9): [Span { start: 336, end: 337 }] rebuilt : SymbolId(12): [] -Symbol flags mismatch for "x": -after transform: SymbolId(10): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(14): SymbolFlags(BlockScopedVariable | ConstVariable) Unresolved references mismatch: after transform: [] rebuilt : ["N"] @@ -49809,11 +48670,11 @@ Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(StrictMode) rebuilt : ScopeId(2): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "E1": -after transform: SymbolId(0): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(RegularEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) Symbol flags mismatch for "E2": -after transform: SymbolId(2): SymbolFlags(Export | ConstEnum) -rebuilt : SymbolId(2): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(2): SymbolFlags(ConstEnum) +rebuilt : SymbolId(2): SymbolFlags(BlockScopedVariable) tasks/coverage/typescript/tests/cases/conformance/externalModules/esnext/esnextmodulekindWithES5Target7.ts semantic error: Missing SymbolId: "N" @@ -50114,10 +48975,7 @@ after transform: ScopeId(0): ["SpecialError", "handleError"] rebuilt : ScopeId(0): ["handleError"] tasks/coverage/typescript/tests/cases/conformance/externalModules/typeOnly/exportDeclaration.ts -semantic error: Symbol flags mismatch for "A": -after transform: SymbolId(0): SymbolFlags(Export | Class) -rebuilt : SymbolId(0): SymbolFlags(Class) -Symbol reference IDs mismatch for "A": +semantic error: Symbol reference IDs mismatch for "A": after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [] @@ -50130,10 +48988,7 @@ 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 for "A": -after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable) -Unresolved references mismatch: +semantic error: Unresolved references mismatch: after transform: ["A"] rebuilt : [] @@ -50189,9 +49044,6 @@ rebuilt : ScopeId(0): [SymbolId(0)] Binding symbols mismatch: after transform: ScopeId(1): [SymbolId(1), SymbolId(2)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] -Symbol flags mismatch for "A": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "A": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] @@ -50230,8 +49082,8 @@ semantic error: Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol flags mismatch for "A": -after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | Export | Function | TypeAlias) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | Function | TypeAlias) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Function) Symbol span mismatch for "A": after transform: SymbolId(0): Span { start: 12, end: 13 } rebuilt : SymbolId(0): Span { start: 33, end: 34 } @@ -50239,8 +49091,8 @@ Symbol redeclarations mismatch for "A": after transform: SymbolId(0): [Span { start: 33, end: 34 }] rebuilt : SymbolId(0): [] Symbol flags mismatch for "B": -after transform: SymbolId(1): SymbolFlags(FunctionScopedVariable | Export | TypeAlias) -rebuilt : SymbolId(1): SymbolFlags(FunctionScopedVariable | Export) +after transform: SymbolId(1): SymbolFlags(FunctionScopedVariable | TypeAlias) +rebuilt : SymbolId(1): SymbolFlags(FunctionScopedVariable) Symbol span mismatch for "B": after transform: SymbolId(1): Span { start: 67, end: 68 } rebuilt : SymbolId(1): Span { start: 83, end: 84 } @@ -50291,8 +49143,8 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "E": -after transform: SymbolId(0): SymbolFlags(Export | ConstEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(ConstEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/typescript/tests/cases/conformance/externalModules/verbatimModuleSyntaxConstEnumUsage.ts semantic error: Bindings mismatch: @@ -50302,8 +49154,8 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "Foo": -after transform: SymbolId(0): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(RegularEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/typescript/tests/cases/conformance/externalModules/verbatimModuleSyntaxRestrictionsESM.ts semantic error: Bindings mismatch: @@ -50420,15 +49272,9 @@ rebuilt : SymbolId(3): [ReferenceId(13), ReferenceId(15), ReferenceId(19) Symbol redeclarations mismatch for "Directive": after transform: SymbolId(10): [Span { start: 381, end: 390 }] rebuilt : SymbolId(3): [] -Symbol flags mismatch for "is": -after transform: SymbolId(15): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(6): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "is": after transform: SymbolId(15): [] rebuilt : SymbolId(6): [ReferenceId(18)] -Symbol flags mismatch for "Break": -after transform: SymbolId(27): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(10): SymbolFlags(BlockScopedVariable | ConstVariable) Symbol reference IDs mismatch for "step": after transform: SymbolId(51): [ReferenceId(83), ReferenceId(84), ReferenceId(86)] rebuilt : SymbolId(20): [ReferenceId(27), ReferenceId(29)] @@ -51003,9 +49849,6 @@ rebuilt : ScopeId(0): [SymbolId(0)] Binding symbols mismatch: after transform: ScopeId(1): [SymbolId(1), SymbolId(4)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] -Symbol flags mismatch for "Point": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "Point": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(3)] @@ -51056,7 +49899,7 @@ Symbol redeclarations mismatch for "Point": after transform: SymbolId(0): [Span { start: 135, end: 140 }] rebuilt : SymbolId(0): [] Symbol flags mismatch for "Point": -after transform: SymbolId(5): SymbolFlags(Export | Class | NameSpaceModule | ValueModule) +after transform: SymbolId(5): SymbolFlags(Class | NameSpaceModule | ValueModule) rebuilt : SymbolId(7): SymbolFlags(Class) Symbol reference IDs mismatch for "Point": after transform: SymbolId(5): [ReferenceId(1)] @@ -51111,7 +49954,7 @@ Symbol redeclarations mismatch for "Point": after transform: SymbolId(0): [Span { start: 124, end: 129 }] rebuilt : SymbolId(0): [] Symbol flags mismatch for "Point": -after transform: SymbolId(5): SymbolFlags(Export | Class | NameSpaceModule | ValueModule) +after transform: SymbolId(5): SymbolFlags(Class | NameSpaceModule | ValueModule) rebuilt : SymbolId(7): SymbolFlags(Class) Symbol reference IDs mismatch for "Point": after transform: SymbolId(5): [ReferenceId(1)] @@ -51147,9 +49990,6 @@ rebuilt : SymbolId(0): [ReferenceId(5), ReferenceId(10), ReferenceId(11), Symbol redeclarations mismatch for "enumdule": after transform: SymbolId(0): [Span { start: 40, end: 48 }] rebuilt : SymbolId(0): [] -Symbol flags mismatch for "Point": -after transform: SymbolId(3): SymbolFlags(Export | Class) -rebuilt : SymbolId(3): SymbolFlags(Class) Symbol reference IDs mismatch for "Point": after transform: SymbolId(3): [] rebuilt : SymbolId(3): [ReferenceId(9)] @@ -51168,7 +50008,7 @@ Binding symbols mismatch: after transform: ScopeId(1): [SymbolId(1), SymbolId(2)] rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Symbol flags mismatch for "Point": -after transform: SymbolId(1): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(1): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(2): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "Point": after transform: SymbolId(1): [] @@ -51193,9 +50033,6 @@ rebuilt : ScopeId(4): ["enumdule"] Scope flags mismatch: after transform: ScopeId(4): ScopeFlags(0x0) rebuilt : ScopeId(4): ScopeFlags(Function) -Symbol flags mismatch for "Point": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "Point": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(3)] @@ -51303,15 +50140,9 @@ rebuilt : ScopeId(12): [SymbolId(18), SymbolId(19)] Scope flags mismatch: after transform: ScopeId(12): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(12): ScopeFlags(Function) -Symbol flags mismatch for "Point": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "Point": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(1)] -Symbol flags mismatch for "Line": -after transform: SymbolId(8): SymbolFlags(Export | Class) -rebuilt : SymbolId(13): SymbolFlags(Class) Symbol reference IDs mismatch for "Line": after transform: SymbolId(8): [] rebuilt : SymbolId(13): [ReferenceId(9)] @@ -51386,7 +50217,7 @@ Bindings mismatch: after transform: ScopeId(5): ["T", "p"] rebuilt : ScopeId(4): ["p"] Symbol flags mismatch for "mirror": -after transform: SymbolId(4): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(4): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(6): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "mirror": after transform: SymbolId(4): [] @@ -51421,7 +50252,7 @@ Bindings mismatch: after transform: ScopeId(4): ["T", "p"] rebuilt : ScopeId(3): ["p"] Symbol flags mismatch for "mirror": -after transform: SymbolId(3): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(3): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(4): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "mirror": after transform: SymbolId(3): [] @@ -51456,9 +50287,6 @@ rebuilt : ScopeId(1): ScopeFlags(Function) Scope children mismatch: after transform: ScopeId(1): [ScopeId(2), ScopeId(4)] rebuilt : ScopeId(1): [ScopeId(2)] -Symbol flags mismatch for "Point2d": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "Point2d": after transform: SymbolId(2): [] rebuilt : SymbolId(2): [ReferenceId(3)] @@ -51486,9 +50314,6 @@ rebuilt : ScopeId(1): ScopeFlags(Function) Symbol reference IDs mismatch for "Point": after transform: SymbolId(1): [ReferenceId(0), ReferenceId(1)] rebuilt : SymbolId(2): [] -Symbol flags mismatch for "points": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(3): SymbolFlags(Class) Symbol reference IDs mismatch for "points": after transform: SymbolId(2): [] rebuilt : SymbolId(3): [ReferenceId(1)] @@ -51517,21 +50342,12 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(6) Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Symbol flags mismatch for "Point": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "Point": after transform: SymbolId(1): [ReferenceId(0), ReferenceId(1), ReferenceId(2)] rebuilt : SymbolId(2): [ReferenceId(1)] -Symbol flags mismatch for "Line": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(3): SymbolFlags(Class) Symbol reference IDs mismatch for "Line": after transform: SymbolId(2): [ReferenceId(3), ReferenceId(4)] rebuilt : SymbolId(3): [ReferenceId(5), ReferenceId(6)] -Symbol flags mismatch for "fromOrigin": -after transform: SymbolId(5): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(6): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "fromOrigin": after transform: SymbolId(5): [] rebuilt : SymbolId(6): [ReferenceId(9)] @@ -51557,15 +50373,9 @@ rebuilt : ScopeId(1): ScopeFlags(Function) Symbol reference IDs mismatch for "Point": after transform: SymbolId(1): [ReferenceId(0), ReferenceId(1), ReferenceId(2)] rebuilt : SymbolId(2): [] -Symbol flags mismatch for "Line": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(3): SymbolFlags(Class) Symbol reference IDs mismatch for "Line": after transform: SymbolId(2): [ReferenceId(3), ReferenceId(4)] rebuilt : SymbolId(3): [ReferenceId(3), ReferenceId(4)] -Symbol flags mismatch for "fromOrigin": -after transform: SymbolId(5): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(6): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "fromOrigin": after transform: SymbolId(5): [] rebuilt : SymbolId(6): [ReferenceId(7)] @@ -51588,18 +50398,12 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2), SymbolId(3), SymbolId(6) Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Symbol flags mismatch for "Point": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "Point": after transform: SymbolId(1): [ReferenceId(0), ReferenceId(1), ReferenceId(2)] rebuilt : SymbolId(2): [ReferenceId(1)] Symbol reference IDs mismatch for "Line": after transform: SymbolId(2): [ReferenceId(3), ReferenceId(4)] rebuilt : SymbolId(3): [ReferenceId(4)] -Symbol flags mismatch for "fromOrigin": -after transform: SymbolId(5): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(6): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "fromOrigin": after transform: SymbolId(5): [] rebuilt : SymbolId(6): [ReferenceId(7)] @@ -51688,9 +50492,6 @@ rebuilt : ScopeId(7): ScopeFlags(Function) Scope children mismatch: after transform: ScopeId(8): [ScopeId(9)] rebuilt : ScopeId(7): [] -Symbol flags mismatch for "Point": -after transform: SymbolId(1): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "Point": after transform: SymbolId(1): [] rebuilt : SymbolId(2): [ReferenceId(3)] @@ -51704,7 +50505,7 @@ Symbol redeclarations mismatch for "clodule": after transform: SymbolId(6): [Span { start: 257, end: 264 }] rebuilt : SymbolId(7): [] Symbol flags mismatch for "Point": -after transform: SymbolId(7): SymbolFlags(FunctionScopedVariable | Export | Interface) +after transform: SymbolId(7): SymbolFlags(FunctionScopedVariable | Interface) rebuilt : SymbolId(9): SymbolFlags(FunctionScopedVariable) Symbol span mismatch for "Point": after transform: SymbolId(7): Span { start: 288, end: 293 } @@ -51725,7 +50526,7 @@ Symbol redeclarations mismatch for "fundule": after transform: SymbolId(9): [Span { start: 539, end: 546 }] rebuilt : SymbolId(11): [] Symbol flags mismatch for "Point": -after transform: SymbolId(10): SymbolFlags(FunctionScopedVariable | Export | Interface) +after transform: SymbolId(10): SymbolFlags(FunctionScopedVariable | Interface) rebuilt : SymbolId(13): SymbolFlags(FunctionScopedVariable) Symbol span mismatch for "Point": after transform: SymbolId(10): Span { start: 570, end: 575 } @@ -51784,9 +50585,6 @@ 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 for "test2": -after transform: SymbolId(9): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(1): SymbolFlags(BlockScopedVariable | ConstVariable) Unresolved references mismatch: after transform: ["mod1", "mod2", "pack1", "pack2"] rebuilt : ["mod2", "pack2"] @@ -52415,9 +51213,6 @@ rebuilt : ScopeId(3): [SymbolId(5), SymbolId(6)] Scope flags mismatch: after transform: ScopeId(5): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(3): ScopeFlags(Function) -Symbol flags mismatch for "Name": -after transform: SymbolId(5): SymbolFlags(Export | Class) -rebuilt : SymbolId(6): SymbolFlags(Class) Symbol reference IDs mismatch for "Name": after transform: SymbolId(5): [] rebuilt : SymbolId(6): [ReferenceId(2)] @@ -53836,8 +52631,8 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "SignatureFlags": -after transform: SymbolId(0): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(RegularEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/EnumDeclarations/parserEnum2.ts semantic error: Bindings mismatch: @@ -53847,16 +52642,16 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "SignatureFlags": -after transform: SymbolId(0): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(RegularEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/EnumDeclarations/parserEnum3.ts semantic error: Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "SignatureFlags": -after transform: SymbolId(0): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(RegularEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/typescript/tests/cases/conformance/parser/ecmascript5/EnumDeclarations/parserEnum6.ts semantic error: Bindings mismatch: @@ -53956,9 +52751,6 @@ rebuilt : ScopeId(1): [SymbolId(1), SymbolId(2)] Scope flags mismatch: after transform: ScopeId(3): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(1): ScopeFlags(Function) -Symbol flags mismatch for "Point": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(2): SymbolFlags(Class) Symbol reference IDs mismatch for "Point": after transform: SymbolId(2): [ReferenceId(2)] rebuilt : SymbolId(2): [ReferenceId(3), ReferenceId(5)] @@ -54557,8 +53349,8 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "CodeGenTarget": -after transform: SymbolId(0): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(RegularEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/everyTypeWithAnnotationAndInitializer.ts semantic error: Missing SymbolId: "M" @@ -54593,15 +53385,9 @@ rebuilt : SymbolId(1): [ReferenceId(13)] Symbol reference IDs mismatch for "F": after transform: SymbolId(4): [ReferenceId(22), ReferenceId(23), ReferenceId(24), ReferenceId(25)] rebuilt : SymbolId(2): [ReferenceId(15), ReferenceId(16)] -Symbol flags mismatch for "A": -after transform: SymbolId(7): SymbolFlags(Export | Class) -rebuilt : SymbolId(6): SymbolFlags(Class) Symbol reference IDs mismatch for "A": after transform: SymbolId(7): [] rebuilt : SymbolId(6): [ReferenceId(1)] -Symbol flags mismatch for "F2": -after transform: SymbolId(8): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(7): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "F2": after transform: SymbolId(8): [] rebuilt : SymbolId(7): [ReferenceId(4)] @@ -54648,15 +53434,9 @@ rebuilt : ScopeId(4): ScopeFlags(Function) Symbol reference IDs mismatch for "D": after transform: SymbolId(2): [ReferenceId(2), ReferenceId(4), ReferenceId(5), ReferenceId(13)] rebuilt : SymbolId(1): [ReferenceId(12)] -Symbol flags mismatch for "A": -after transform: SymbolId(7): SymbolFlags(Export | Class) -rebuilt : SymbolId(6): SymbolFlags(Class) Symbol reference IDs mismatch for "A": after transform: SymbolId(7): [] rebuilt : SymbolId(6): [ReferenceId(1)] -Symbol flags mismatch for "F2": -after transform: SymbolId(8): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(7): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "F2": after transform: SymbolId(8): [] rebuilt : SymbolId(7): [ReferenceId(4)] @@ -54746,9 +53526,6 @@ tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["C1", "C2", "C3", "C4", "dec"] rebuilt : ScopeId(0): ["C1", "C2", "C3", "C4"] -Symbol flags mismatch for "C1": -after transform: SymbolId(1): SymbolFlags(FunctionScopedVariable) -rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable | Export) Reference symbol mismatch for "dec": after transform: SymbolId(0) "dec" rebuilt : @@ -54763,9 +53540,6 @@ tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "before", "dec"] rebuilt : ScopeId(0): ["C", "before"] -Symbol flags mismatch for "before": -after transform: SymbolId(1): SymbolFlags(FunctionScopedVariable) -rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable | Export) Reference symbol mismatch for "dec": after transform: SymbolId(0) "dec" rebuilt : @@ -54777,9 +53551,6 @@ tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["after", "dec"] rebuilt : ScopeId(0): ["after"] -Symbol flags mismatch for "after": -after transform: SymbolId(1): SymbolFlags(FunctionScopedVariable) -rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable | Export) Reference symbol mismatch for "dec": after transform: SymbolId(0) "dec" rebuilt : @@ -54813,9 +53584,6 @@ tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "before", "dec"] rebuilt : ScopeId(0): ["C", "before"] -Symbol flags mismatch for "before": -after transform: SymbolId(1): SymbolFlags(FunctionScopedVariable) -rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable | Export) Reference symbol mismatch for "dec": after transform: SymbolId(0) "dec" rebuilt : @@ -54827,9 +53595,6 @@ tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "before", "dec"] rebuilt : ScopeId(0): ["C", "before"] -Symbol flags mismatch for "before": -after transform: SymbolId(1): SymbolFlags(FunctionScopedVariable) -rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable | Export) Reference symbol mismatch for "dec": after transform: SymbolId(0) "dec" rebuilt : @@ -54841,9 +53606,6 @@ tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["before", "dec"] rebuilt : ScopeId(0): ["before"] -Symbol flags mismatch for "before": -after transform: SymbolId(1): SymbolFlags(FunctionScopedVariable) -rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable | Export) Reference symbol mismatch for "dec": after transform: SymbolId(0) "dec" rebuilt : @@ -54855,9 +53617,6 @@ tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "before", "dec"] rebuilt : ScopeId(0): ["C", "before"] -Symbol flags mismatch for "before": -after transform: SymbolId(1): SymbolFlags(FunctionScopedVariable) -rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable | Export) Reference symbol mismatch for "dec": after transform: SymbolId(0) "dec" rebuilt : @@ -54869,9 +53628,6 @@ tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "before", "dec"] rebuilt : ScopeId(0): ["C", "before"] -Symbol flags mismatch for "before": -after transform: SymbolId(1): SymbolFlags(FunctionScopedVariable) -rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable | Export) Reference symbol mismatch for "dec": after transform: SymbolId(0) "dec" rebuilt : @@ -54883,9 +53639,6 @@ tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "after", "dec"] rebuilt : ScopeId(0): ["C", "after"] -Symbol flags mismatch for "C": -after transform: SymbolId(1): SymbolFlags(Class) -rebuilt : SymbolId(0): SymbolFlags(Export | Class) Reference symbol mismatch for "dec": after transform: SymbolId(0) "dec" rebuilt : @@ -54919,9 +53672,6 @@ tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "before", "dec"] rebuilt : ScopeId(0): ["C", "before"] -Symbol flags mismatch for "before": -after transform: SymbolId(1): SymbolFlags(FunctionScopedVariable) -rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable | Export) Reference symbol mismatch for "dec": after transform: SymbolId(0) "dec" rebuilt : @@ -54933,9 +53683,6 @@ tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["after", "dec"] rebuilt : ScopeId(0): ["after"] -Symbol flags mismatch for "after": -after transform: SymbolId(1): SymbolFlags(FunctionScopedVariable) -rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable | Export) Reference symbol mismatch for "dec": after transform: SymbolId(0) "dec" rebuilt : @@ -54969,9 +53716,6 @@ tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "before", "dec"] rebuilt : ScopeId(0): ["C", "before"] -Symbol flags mismatch for "before": -after transform: SymbolId(1): SymbolFlags(FunctionScopedVariable) -rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable | Export) Reference symbol mismatch for "dec": after transform: SymbolId(0) "dec" rebuilt : @@ -54983,9 +53727,6 @@ tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "before", "dec"] rebuilt : ScopeId(0): ["C", "before"] -Symbol flags mismatch for "before": -after transform: SymbolId(1): SymbolFlags(FunctionScopedVariable) -rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable | Export) Reference symbol mismatch for "dec": after transform: SymbolId(0) "dec" rebuilt : @@ -54997,9 +53738,6 @@ tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["before", "dec"] rebuilt : ScopeId(0): ["before"] -Symbol flags mismatch for "before": -after transform: SymbolId(1): SymbolFlags(FunctionScopedVariable) -rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable | Export) Reference symbol mismatch for "dec": after transform: SymbolId(0) "dec" rebuilt : @@ -55011,9 +53749,6 @@ tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "before", "dec"] rebuilt : ScopeId(0): ["C", "before"] -Symbol flags mismatch for "before": -after transform: SymbolId(1): SymbolFlags(FunctionScopedVariable) -rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable | Export) Reference symbol mismatch for "dec": after transform: SymbolId(0) "dec" rebuilt : @@ -55025,9 +53760,6 @@ tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "before", "dec"] rebuilt : ScopeId(0): ["C", "before"] -Symbol flags mismatch for "before": -after transform: SymbolId(1): SymbolFlags(FunctionScopedVariable) -rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable | Export) Reference symbol mismatch for "dec": after transform: SymbolId(0) "dec" rebuilt : @@ -55039,9 +53771,6 @@ tasks/coverage/typescript/tests/cases/conformance/statements/VariableStatements/ semantic error: Bindings mismatch: after transform: ScopeId(0): ["C", "after", "dec"] rebuilt : ScopeId(0): ["C", "after"] -Symbol flags mismatch for "C": -after transform: SymbolId(1): SymbolFlags(Class) -rebuilt : SymbolId(0): SymbolFlags(Export | Class) Reference symbol mismatch for "dec": after transform: SymbolId(0) "dec" rebuilt : @@ -55136,15 +53865,9 @@ rebuilt : SymbolId(1): [ReferenceId(13)] Symbol reference IDs mismatch for "F": after transform: SymbolId(4): [ReferenceId(22), ReferenceId(23), ReferenceId(24), ReferenceId(25)] rebuilt : SymbolId(2): [ReferenceId(15), ReferenceId(16)] -Symbol flags mismatch for "A": -after transform: SymbolId(7): SymbolFlags(Export | Class) -rebuilt : SymbolId(6): SymbolFlags(Class) Symbol reference IDs mismatch for "A": after transform: SymbolId(7): [] rebuilt : SymbolId(6): [ReferenceId(1)] -Symbol flags mismatch for "F2": -after transform: SymbolId(8): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(7): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "F2": after transform: SymbolId(8): [] rebuilt : SymbolId(7): [ReferenceId(4)] @@ -55233,15 +53956,9 @@ rebuilt : ScopeId(9): ["x"] Symbol reference IDs mismatch for "D": after transform: SymbolId(2): [ReferenceId(2), ReferenceId(4), ReferenceId(5), ReferenceId(21), ReferenceId(42)] rebuilt : SymbolId(1): [ReferenceId(20), ReferenceId(40)] -Symbol flags mismatch for "A": -after transform: SymbolId(7): SymbolFlags(Export | Class) -rebuilt : SymbolId(6): SymbolFlags(Class) Symbol reference IDs mismatch for "A": after transform: SymbolId(7): [] rebuilt : SymbolId(6): [ReferenceId(1)] -Symbol flags mismatch for "F2": -after transform: SymbolId(8): SymbolFlags(FunctionScopedVariable | Export) -rebuilt : SymbolId(7): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "F2": after transform: SymbolId(8): [] rebuilt : SymbolId(7): [ReferenceId(4)] diff --git a/tasks/transform_conformance/snapshots/babel.snap.md b/tasks/transform_conformance/snapshots/babel.snap.md index 94e0e99285eeb..0a7c39cf7c72f 100644 --- a/tasks/transform_conformance/snapshots/babel.snap.md +++ b/tasks/transform_conformance/snapshots/babel.snap.md @@ -601,8 +601,8 @@ Scope flags mismatch: after transform: ScopeId(2): ScopeFlags(StrictMode) rebuilt : ScopeId(2): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "E": -after transform: SymbolId(0): SymbolFlags(Export | RegularEnum) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | Export) +after transform: SymbolId(0): SymbolFlags(RegularEnum) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable) Symbol redeclarations mismatch for "E": after transform: SymbolId(0): [Span { start: 40, end: 41 }] rebuilt : SymbolId(0): [] @@ -738,8 +738,8 @@ Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(3)] rebuilt : ScopeId(0): [ScopeId(1)] Symbol flags mismatch for "N": -after transform: SymbolId(0): SymbolFlags(Export | Class | NameSpaceModule | Ambient) -rebuilt : SymbolId(0): SymbolFlags(Export | Class) +after transform: SymbolId(0): SymbolFlags(Class | NameSpaceModule | Ambient) +rebuilt : SymbolId(0): SymbolFlags(Class) Symbol reference IDs mismatch for "N": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2)] rebuilt : SymbolId(0): [ReferenceId(1)] @@ -768,7 +768,7 @@ Scope flags mismatch: after transform: ScopeId(1): ScopeFlags(StrictMode) rebuilt : ScopeId(1): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "None": -after transform: SymbolId(0): SymbolFlags(Export | ConstEnum) +after transform: SymbolId(0): SymbolFlags(ConstEnum) rebuilt : SymbolId(0): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "None": after transform: SymbolId(0): [ReferenceId(0), ReferenceId(2)] @@ -1068,9 +1068,6 @@ rebuilt : SymbolId(0): [ReferenceId(1), ReferenceId(2)] Symbol redeclarations mismatch for "A": after transform: SymbolId(0): [Span { start: 22, end: 23 }] rebuilt : SymbolId(0): [] -Symbol flags mismatch for "B": -after transform: SymbolId(1): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(2): SymbolFlags(BlockScopedVariable | ConstVariable) * namespace/clobber-enum/input.ts Missing SymbolId: "_A" @@ -1095,9 +1092,6 @@ rebuilt : SymbolId(0): [ReferenceId(3), ReferenceId(5), ReferenceId(6)] Symbol redeclarations mismatch for "A": after transform: SymbolId(0): [Span { start: 30, end: 31 }] rebuilt : SymbolId(0): [] -Symbol flags mismatch for "B": -after transform: SymbolId(2): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(3): SymbolFlags(BlockScopedVariable | ConstVariable) * namespace/clobber-export/input.ts Missing SymbolId: "_N" @@ -1107,8 +1101,8 @@ Binding symbols mismatch: after transform: ScopeId(2): [SymbolId(1), SymbolId(2)] rebuilt : ScopeId(2): [SymbolId(1), SymbolId(2)] Symbol flags mismatch for "N": -after transform: SymbolId(0): SymbolFlags(Export | Class | NameSpaceModule | ValueModule) -rebuilt : SymbolId(0): SymbolFlags(Export | Class) +after transform: SymbolId(0): SymbolFlags(Class | NameSpaceModule | ValueModule) +rebuilt : SymbolId(0): SymbolFlags(Class) Symbol reference IDs mismatch for "N": after transform: SymbolId(0): [ReferenceId(0)] rebuilt : SymbolId(0): [ReferenceId(0), ReferenceId(1), ReferenceId(2)] @@ -1545,15 +1539,9 @@ rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] Binding symbols mismatch: after transform: ScopeId(4): [SymbolId(4), SymbolId(7)] rebuilt : ScopeId(4): [SymbolId(6), SymbolId(7)] -Symbol flags mismatch for "foo": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "foo": after transform: SymbolId(2): [] rebuilt : SymbolId(4): [ReferenceId(1)] -Symbol flags mismatch for "foo": -after transform: SymbolId(4): SymbolFlags(Export | Class) -rebuilt : SymbolId(7): SymbolFlags(Class) Symbol reference IDs mismatch for "foo": after transform: SymbolId(4): [] rebuilt : SymbolId(7): [ReferenceId(7)] @@ -1591,15 +1579,9 @@ rebuilt : ScopeId(2): [SymbolId(3), SymbolId(4)] Binding symbols mismatch: after transform: ScopeId(4): [SymbolId(4), SymbolId(7)] rebuilt : ScopeId(4): [SymbolId(6), SymbolId(7)] -Symbol flags mismatch for "foo": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "foo": after transform: SymbolId(2): [] rebuilt : SymbolId(4): [ReferenceId(1)] -Symbol flags mismatch for "foo": -after transform: SymbolId(4): SymbolFlags(Export | Class) -rebuilt : SymbolId(7): SymbolFlags(Class) Symbol reference IDs mismatch for "foo": after transform: SymbolId(4): [] rebuilt : SymbolId(7): [ReferenceId(7)] @@ -1717,15 +1699,9 @@ rebuilt : SymbolId(0): [ReferenceId(33), ReferenceId(34)] Symbol redeclarations mismatch for "A": after transform: SymbolId(0): [Span { start: 22, end: 23 }] rebuilt : SymbolId(0): [] -Symbol flags mismatch for "G": -after transform: SymbolId(2): SymbolFlags(Export | Class) -rebuilt : SymbolId(4): SymbolFlags(Class) Symbol reference IDs mismatch for "G": after transform: SymbolId(2): [] rebuilt : SymbolId(4): [ReferenceId(1)] -Symbol flags mismatch for "E": -after transform: SymbolId(3): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(5): SymbolFlags(BlockScopedVariable | ConstVariable) Symbol flags mismatch for "M": after transform: SymbolId(4): SymbolFlags(BlockScopedVariable | Function | NameSpaceModule | ValueModule) rebuilt : SymbolId(6): SymbolFlags(FunctionScopedVariable) @@ -1735,11 +1711,8 @@ rebuilt : SymbolId(6): [ReferenceId(9), ReferenceId(10)] Symbol redeclarations mismatch for "M": after transform: SymbolId(4): [Span { start: 129, end: 130 }] rebuilt : SymbolId(6): [] -Symbol flags mismatch for "N": -after transform: SymbolId(5): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(8): SymbolFlags(BlockScopedVariable | ConstVariable) Symbol flags mismatch for "D": -after transform: SymbolId(6): SymbolFlags(BlockScopedVariable | Export | Function | NameSpaceModule | ValueModule) +after transform: SymbolId(6): SymbolFlags(BlockScopedVariable | Function | NameSpaceModule | ValueModule) rebuilt : SymbolId(9): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "D": after transform: SymbolId(6): [] @@ -1748,7 +1721,7 @@ Symbol redeclarations mismatch for "D": after transform: SymbolId(6): [Span { start: 207, end: 208 }] rebuilt : SymbolId(9): [] Symbol flags mismatch for "H": -after transform: SymbolId(8): SymbolFlags(Export | RegularEnum) +after transform: SymbolId(8): SymbolFlags(RegularEnum) rebuilt : SymbolId(12): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "H": after transform: SymbolId(8): [] @@ -1792,7 +1765,7 @@ Scope flags mismatch: after transform: ScopeId(4): ScopeFlags(StrictMode) rebuilt : ScopeId(2): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "G": -after transform: SymbolId(3): SymbolFlags(Export | RegularEnum) +after transform: SymbolId(3): SymbolFlags(RegularEnum) rebuilt : SymbolId(2): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "G": after transform: SymbolId(3): [] @@ -1854,12 +1827,6 @@ rebuilt : ScopeId(5): [SymbolId(10), SymbolId(11)] Binding symbols mismatch: after transform: ScopeId(6): [SymbolId(7), SymbolId(13)] rebuilt : ScopeId(6): [SymbolId(12), SymbolId(13)] -Symbol flags mismatch for "Z": -after transform: SymbolId(2): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(4): SymbolFlags(BlockScopedVariable | ConstVariable) -Symbol flags mismatch for "X": -after transform: SymbolId(7): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(13): SymbolFlags(BlockScopedVariable | ConstVariable) * namespace/same-name/input.ts Missing SymbolId: "N" @@ -1914,19 +1881,16 @@ Scope flags mismatch: after transform: ScopeId(8): ScopeFlags(StrictMode) rebuilt : ScopeId(8): ScopeFlags(StrictMode | Function) Symbol flags mismatch for "_N3": -after transform: SymbolId(4): SymbolFlags(BlockScopedVariable | Export | Function) +after transform: SymbolId(4): SymbolFlags(BlockScopedVariable | Function) rebuilt : SymbolId(7): SymbolFlags(FunctionScopedVariable) Symbol reference IDs mismatch for "_N3": after transform: SymbolId(4): [] rebuilt : SymbolId(7): [ReferenceId(3)] -Symbol flags mismatch for "_N5": -after transform: SymbolId(5): SymbolFlags(Export | Class) -rebuilt : SymbolId(9): SymbolFlags(Class) Symbol reference IDs mismatch for "_N5": after transform: SymbolId(5): [] rebuilt : SymbolId(9): [ReferenceId(9)] Symbol flags mismatch for "_N": -after transform: SymbolId(6): SymbolFlags(Export | RegularEnum) +after transform: SymbolId(6): SymbolFlags(RegularEnum) rebuilt : SymbolId(11): SymbolFlags(BlockScopedVariable) Symbol reference IDs mismatch for "_N": after transform: SymbolId(6): [] diff --git a/tasks/transform_conformance/snapshots/oxc.snap.md b/tasks/transform_conformance/snapshots/oxc.snap.md index 908a2f8ebc08f..9c5ea927d9b1b 100644 --- a/tasks/transform_conformance/snapshots/oxc.snap.md +++ b/tasks/transform_conformance/snapshots/oxc.snap.md @@ -1,12 +1,13 @@ commit: d20b314c -Passed: 89/100 +Passed: 90/100 # All Passed: * babel-plugin-transform-class-static-block * babel-plugin-transform-nullish-coalescing-operator * babel-plugin-transform-optional-catch-binding * babel-plugin-transform-async-generator-functions +* babel-plugin-transform-object-rest-spread * babel-plugin-transform-async-to-generator * babel-plugin-transform-exponentiation-operator * babel-plugin-transform-arrow-functions @@ -15,13 +16,6 @@ Passed: 89/100 * regexp -# babel-plugin-transform-object-rest-spread (4/5) -* object-rest/export/input.js -Symbol flags mismatch for "b0": -after transform: SymbolId(1): SymbolFlags(BlockScopedVariable | Export) -rebuilt : SymbolId(2): SymbolFlags(BlockScopedVariable) - - # babel-plugin-transform-typescript (2/9) * class-property-definition/input.ts Unresolved references mismatch: @@ -117,12 +111,9 @@ rebuilt : ScopeId(3): [SymbolId(6), SymbolId(7)] Scope flags mismatch: after transform: ScopeId(5): ScopeFlags(StrictMode | Function) rebuilt : ScopeId(3): ScopeFlags(Function) -Symbol flags mismatch for "Q": -after transform: SymbolId(8): SymbolFlags(BlockScopedVariable | ConstVariable | Export) -rebuilt : SymbolId(7): SymbolFlags(BlockScopedVariable | ConstVariable) Symbol flags mismatch for "T": -after transform: SymbolId(9): SymbolFlags(FunctionScopedVariable | Export | TypeAlias) -rebuilt : SymbolId(8): SymbolFlags(FunctionScopedVariable | Export) +after transform: SymbolId(9): SymbolFlags(FunctionScopedVariable | TypeAlias) +rebuilt : SymbolId(8): SymbolFlags(FunctionScopedVariable) Symbol span mismatch for "T": after transform: SymbolId(9): Span { start: 205, end: 206 } rebuilt : SymbolId(8): Span { start: 226, end: 227 } @@ -141,8 +132,8 @@ Scope children mismatch: after transform: ScopeId(0): [ScopeId(1), ScopeId(2)] rebuilt : ScopeId(0): [] Symbol flags mismatch for "A": -after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export | Import) -rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Export) +after transform: SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable | Import) +rebuilt : SymbolId(0): SymbolFlags(BlockScopedVariable | ConstVariable) Symbol span mismatch for "A": after transform: SymbolId(0): Span { start: 57, end: 58 } rebuilt : SymbolId(0): Span { start: 79, end: 83 } @@ -153,14 +144,14 @@ Symbol redeclarations mismatch for "A": after transform: SymbolId(0): [Span { start: 79, end: 83 }] rebuilt : SymbolId(0): [] Symbol flags mismatch for "T": -after transform: SymbolId(1): SymbolFlags(Export | Import | TypeAlias) -rebuilt : SymbolId(1): SymbolFlags(Export | Import) +after transform: SymbolId(1): SymbolFlags(Import | TypeAlias) +rebuilt : SymbolId(1): SymbolFlags(Import) Symbol redeclarations mismatch for "T": after transform: SymbolId(1): [Span { start: 170, end: 171 }] rebuilt : SymbolId(1): [] Symbol flags mismatch for "B": -after transform: SymbolId(2): SymbolFlags(BlockScopedVariable | ConstVariable | Export | Import | TypeAlias) -rebuilt : SymbolId(2): SymbolFlags(BlockScopedVariable | ConstVariable | Export) +after transform: SymbolId(2): SymbolFlags(BlockScopedVariable | ConstVariable | Import | TypeAlias) +rebuilt : SymbolId(2): SymbolFlags(BlockScopedVariable | ConstVariable) Symbol span mismatch for "B": after transform: SymbolId(2): Span { start: 267, end: 268 } rebuilt : SymbolId(2): Span { start: 289, end: 293 }