Commits
Click on a commit to change the comparison rangefix(semantic): non-exported namespace member symbols flagged as exported
> 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() { }
}
```