()
| 46 | private onRootVariableDefined: () => void; |
| 47 | |
| 48 | clear(): void { |
| 49 | this.varTypes.clear(); |
| 50 | this.rulesQueue.clear(); |
| 51 | this.inlineStyleQueue.splice(0); |
| 52 | this.definedVars.clear(); |
| 53 | this.varRefs.clear(); |
| 54 | this.unknownColorVars.clear(); |
| 55 | this.unknownBgVars.clear(); |
| 56 | this.undefinedVars.clear(); |
| 57 | this.initialVarTypes.clear(); |
| 58 | this.changedTypeVars.clear(); |
| 59 | this.typeChangeSubscriptions.clear(); |
| 60 | this.unstableVarValues.clear(); |
| 61 | this.varFilterTypes.clear(); |
| 62 | this.notifyingVarFilterTypes.clear(); |
| 63 | } |
| 64 | |
| 65 | private isVarType(varName: string, typeNum: number) { |
| 66 | return ( |
no outgoing calls
no test coverage detected