##// END OF EJS Templates
Added tag v1.4.6 for changeset 3969a8fb8049
Added tag v1.4.6 for changeset 3969a8fb8049

File last commit:

r82:025f02eff3b2 v1.3.0 default
r173:3843ec3ca8f8 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() {
}
}