⚝
One Hat Cyber Team
⚝
Your IP:
172.22.0.1
Server IP:
151.80.20.34
Server:
Linux 794f04d97d5e 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64
Server Software:
Apache/2.4.62 (Debian)
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
nodejs
/
acorn-private-methods
/
dist
/
View File Name :
acorn-private-methods.mjs
import privateClassElements from 'acorn-private-class-elements'; // eslint-disable-next-line node/no-unsupported-features/es-syntax // eslint-disable-next-line node/no-unsupported-features/es-syntax function privateMethods(Parser) { const ExtendedParser = privateClassElements(Parser); return class extends ExtendedParser { // Parse private methods parseClassElement(_constructorAllowsSuper) { const oldInClassMemberName = this._inClassMemberName; this._inClassMemberName = true; const result = super.parseClassElement.apply(this, arguments); this._inClassMemberName = oldInClassMemberName; return result } parsePropertyName(prop) { const isPrivate = this.options.ecmaVersion >= 8 && this._inClassMemberName && this.type == this.privateIdentifierToken && !prop.static; this._inClassMemberName = false; if (!isPrivate) return super.parsePropertyName(prop) return this.parsePrivateClassElementName(prop) } } } export { privateMethods as default }; //# sourceMappingURL=acorn-private-methods.mjs.map