Home
last modified time | relevance | path

Searched refs:staticMethods (Results 1 – 1 of 1) sorted by relevance

/arkcompiler/ets_frontend/ts2panda/src/base/
DtypeSystem.ts280staticMethods: Map<string, {typeIndex: number, isDeclare: boolean}> = new Map<string, {typeIndex: … property in ClassType
407 …let foundSameNameFuncRet = isStatic ? this.staticMethods.get(funcName) : this.methods.get(funcName…
421 …this.staticMethods.set(funcType.getFunctionName(), {typeIndex: type!, isDeclare: member.body == un…
493 …ap<string, {typeIndex: number, isDeclare: boolean}> = isStatic ? this.staticMethods : this.methods;