bertramdev / asset-pipeline

The core implementation of the asset pipeline for the jvm
193 stars 92 forks source link

Asset pipeline doesn't uderstand private (hash) method #333

Open rlconst opened 9 months ago

rlconst commented 9 months ago

Private methods in js classes spec.

class Foo {
    constructor() {
        // ERROR - [JSC_PARSE_ERROR] Parse error. 'identifier' expected
        this.#private()
    }

    #private() {}
}
NekoBroadway commented 8 months ago

I also have this issue. Is there any update?