MCPcopy Index your code
hub / github.com/NativeScript/NativeScript / XmlProducerBase

Class XmlProducerBase

packages/core/ui/builder/index.ts:324–334  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

322 }
323
324 export class XmlProducerBase implements XmlProducer {
325 private _next: XmlConsumer;
326 public pipe<Next extends XmlConsumer>(next: Next) {
327 this._next = next;
328
329 return next;
330 }
331 protected next(args: xml.ParserEvent) {
332 this._next.parse(args);
333 }
334 }
335
336 export class XmlStringParser extends XmlProducerBase implements XmlProducer {
337 private error: ErrorFormatter;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected