(parser)
| 9630 | this.displayName = "live"; |
| 9631 | } |
| 9632 | static parse(parser) { |
| 9633 | if (!parser.matchToken("live")) return; |
| 9634 | var start = parser.requireElement("commandList"); |
| 9635 | var feature = new _LiveFeature(start); |
| 9636 | parser.ensureTerminated(start); |
| 9637 | parser.setParent(start, feature); |
| 9638 | return feature; |
| 9639 | } |
| 9640 | install(target, source, args, runtime2) { |
| 9641 | var feature = this; |
| 9642 | queueMicrotask(function() { |
nothing calls this directly
no test coverage detected