fix(es/decorators): fix initProto injection for public accessor storage
The previous fix for issue #9565 excluded all PrivateProp from _initProto
injection. However, this broke decorator ordering tests because public
accessor storage fields (which are PrivateProp) need _initProto to run
before their initialization.
This fix distinguishes between:
- Storage for PUBLIC accessors (PrivateProp followed by public ClassMethod
getter) - allow _initProto injection
- Truly private fields and storage for PRIVATE accessors - disallow injection
Co-authored-by: Donny/강동윤 <kdy1@users.noreply.github.com>
chore: Ignore RUSTSEC-2026-0006 wasmtime advisory in cargo deny
This is a transitive dependency via swc_plugin_runner.
Co-authored-by: Donny/강동윤 <kdy1@users.noreply.github.com>
chore(minifier): Update size snapshot for syntax context fix
The fix for #11517 prevents some if-statement merging which
slightly increases the compressed size of echarts.js by about 50 bytes.
Co-authored-by: kdy1 <kdy1@users.noreply.github.com>