##// END OF EJS Templates
Fixed startupWidgets for nodes are not of the Element type.
Fixed startupWidgets for nodes are not of the Element type.

File last commit:

r65:8ac132c83639 default
r69:c276b9b7fa83 v1.1.2 default
Show More
TextTapWriter.ts
17 lines | 372 B | video/mp2t | TypeScriptLexer
/ djx / src / test / ts / TextTapWriter.ts
import { AbstractTapWriter } from "./Tap";
import { TextWriter } from "@implab/core-amd/interfaces";
export class TextTapWriter extends AbstractTapWriter {
private readonly _writer: TextWriter;
constructor(writer: TextWriter) {
super();
this._writer = writer;
}
_writeLine(text: string) {
this._writer.writeLine(text);
}
}