(allowedOverridesSet: Set<string>, indent?: string)
| 1041 | } |
| 1042 | |
| 1043 | toJS(allowedOverridesSet: Set<string>, indent?: string): string { |
| 1044 | conditionStack.push(this.themeCondition || this.prelude); |
| 1045 | let res = super.toJS(allowedOverridesSet, indent); |
| 1046 | conditionStack.pop(); |
| 1047 | return res; |
| 1048 | } |
| 1049 | } |
| 1050 | |
| 1051 | /** A rule that applies conditionally at runtime. */ |