##// END OF EJS Templates
tsx: Added auto unfolding arrays of children when constructing DOM
tsx: Added auto unfolding arrays of children when constructing DOM

File last commit:

r1:b6ccfccf314f default
r13:6c01fabe9ea9 v1.0.0-rc6 default
Show More
TextTapWriter.ts
17 lines | 372 B | video/mp2t | TypeScriptLexer
/ 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);
}
}