(parser)
| 10084 | this.displayName = "live"; |
| 10085 | } |
| 10086 | static parse(parser) { |
| 10087 | if (!parser.matchToken("live")) return; |
| 10088 | var start = parser.requireElement("commandList"); |
| 10089 | var feature = new _LiveFeature(start); |
| 10090 | parser.ensureTerminated(start); |
| 10091 | parser.setParent(start, feature); |
| 10092 | return feature; |
| 10093 | } |
| 10094 | install(target, source, args, runtime2) { |
| 10095 | var feature = this; |
| 10096 | queueMicrotask(function() { |
nothing calls this directly
no test coverage detected