oxc/crates/oxc_semantic
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
..
examples refactor(semantic): make control flow generation optional. (#3737) 2024-06-18 15:59:38 +00:00
src fix(semantic): incorrect resolve references for ExportSpecifier (#4320) 2024-07-17 09:52:58 +00:00
tests fix(semantic): incorrect resolve references for ExportSpecifier (#4320) 2024-07-17 09:52:58 +00:00
Cargo.toml chore(semantic): copy tests from typescript-eslint’s scope-manager (#3990) 2024-07-17 02:50:50 +00:00
CHANGELOG.md Release crates v0.20.0 (#4189) 2024-07-11 11:05:49 +08:00