oxc/crates/oxc_semantic
Don Isaac 2e01a45b2b
fix(semantic): non-exported namespace member symbols flagged as exported (#4493)
> Part of #4445

Fixes a bug where non-exported functions and variables inside of
exported TS namespaces were being flagged with `SymbolFlags::Export`

```ts
export namespace Foo {
  // incorrectly flagged as exported
  function foo() { }
}
```
2024-07-27 08:46:21 +08:00
..
examples example(semantic): examples print parser errors (#4405) 2024-07-22 11:05:03 +00:00
src fix(semantic): non-exported namespace member symbols flagged as exported (#4493) 2024-07-27 08:46:21 +08:00
tests fix(semantic): non-exported namespace member symbols flagged as exported (#4493) 2024-07-27 08:46:21 +08:00
Cargo.toml Release crates v0.22.0 (#4434) 2024-07-24 08:23:27 +08:00
CHANGELOG.md Release crates v0.22.0 (#4434) 2024-07-24 08:23:27 +08:00