##// 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:

r115:691199f665e0 ioc ts support
r142:be7edf08a115 v1.4.0-rc3 default
Show More
TraceEventData.ts
20 lines | 518 B | video/mp2t | TypeScriptLexer
/ src / main / ts / log / TraceEventData.ts
cin
StringBuilder, TextWriter, ConsoleWriter tests
r82 import { TraceEvent, TraceSource } from "./TraceSource";
import { format } from "../text/StringBuilder";
export class TraceEventData implements TraceEvent {
source: TraceSource;
level: number;
message: any;
cin
corrected code to support ts strict mode...
r115 args: any[];
cin
StringBuilder, TextWriter, ConsoleWriter tests
r82
constructor(source: TraceSource, level: number, message: any, args: any[]) {
this.source = source;
this.level = level;
this.message = message;
this.args = args;
}
toString() {
return format(this.message, ...this.args);
}
}