(kind: 'static' | 'functional')
| 141 | } |
| 142 | |
| 143 | keys(kind: 'static' | 'functional') { |
| 144 | let keys: string[] = [] |
| 145 | |
| 146 | for (let [key, fns] of this.utilities.entries()) { |
| 147 | for (let fn of fns) { |
| 148 | if (fn.kind === kind) { |
| 149 | keys.push(key) |
| 150 | break |
| 151 | } |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | return keys |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | function property(ident: string, initialValue?: string, syntax?: string) { |
no test coverage detected