oxc/crates/oxc_semantic/tests
Dunqing 95e15b6dc5 fix(semantic): incorrect resolve references for ExportSpecifier (#4320)
```ts
type A = any;
const B = 0;
export { A, B }
       ^^^^^^^^ ExportSpecifiers

export { A }
       ^^^^^ type-only ExportSpecifiers

```

non-type-only `ExportSpecifier` can reference value and type symbols. but currently, `IdentifierReference` in ExportSpecifier only has a `ReferenceFlags::Read`
2024-07-17 09:52:58 +00:00
..
fixtures/typescript-eslint fix(semantic): incorrect resolve references for ExportSpecifier (#4320) 2024-07-17 09:52:58 +00:00
integration fix(semantic): incorrect resolve references for TSInterfaceHeritage (#4311) 2024-07-17 03:33:02 +00:00
main.rs chore(semantic): copy tests from typescript-eslint’s scope-manager (#3990) 2024-07-17 02:50:50 +00:00