##// END OF EJS Templates
fixed bug in applying a lifetime while processing the json configuration...
fixed bug in applying a lifetime while processing the json configuration fixed template-compile

File last commit:

r82:025f02eff3b2 v1.3.0 default
r152:8bee6a6d5f46 v1.4.0-rc10 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() {
}
}