##// END OF EJS Templates
added provided and configure methods to the fluent container configuration, added applyConfig method to the container
added provided and configure methods to the fluent container configuration, added applyConfig method to the container

File last commit:

r82:025f02eff3b2 v1.3.0 default
r142:be7edf08a115 v1.4.0-rc3 default
Show More
NullTextWriter.ts
19 lines | 433 B | video/mp2t | TypeScriptLexer
/ src / main / ts / text / NullTextWriter.ts
cin
StringBuilder, TextWriter, ConsoleWriter tests
r82 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() {
}
}