-
-
Notifications
You must be signed in to change notification settings - Fork 722
Closed
Description
For example,
export class Foo { #foo; #bar; method() { return this.#foo + this.#bar } }
should be minified to:
export class Foo{#e;#t;method(){return this.#e+this.#t}}
This requires another block-scoped symbol table (or another namespace in it that is minified separately), because inner private names can shadow outer private names.
Metadata
Metadata
Assignees
Labels
No labels