##// END OF EJS Templates
Added tag v1.4.0 for changeset 1a8a956a013f
Added tag v1.4.0 for changeset 1a8a956a013f

File last commit:

r82:025f02eff3b2 v1.3.0 default
r157:f563f4b24ce3 default
Show More
NullTextWriter.ts
19 lines | 433 B | video/mp2t | TypeScriptLexer
/ src / main / ts / text / NullTextWriter.ts
import { TextWriter } from "../interfaces";
export class NullTextWriter implements TextWriter {
static readonly instance = new NullTextWriter();
write(obj: any): void;
write(format: string, ...args: any[]): void;
write() {
}
writeLine(obj: any): void;
writeLine(format: string, ...args: any[]): void;
writeLine() {
}
writeValue(value: any, spec?: string): void;
writeValue() {
}
}