##// END OF EJS Templates
Fixed circular dependency TraceSource<->Registry
cin -
r148:cd81c631015f v1.4.0-rc6 default
parent child
Show More
@@ -14,12 +14,12 export class Registry {
14 14
15 15 if (this._registry[id])
16 16 return this._registry[id];
17 else
18 throw new Error("The specified trace source doesn't exists");
19 }
17 20
18 const source = new TraceSource(id);
19 this._registry[id] = source;
20 this._onNewSource(source);
21
22 return source;
21 has(id: string) {
22 return !!this._registry[id];
23 23 }
24 24
25 25 add(id: any, source: TraceSource) {
@@ -136,6 +136,12 export class TraceSource {
136 136 * @param id the id for the trace source
137 137 */
138 138 static get(id: any) {
139 if (!Registry.instance.has(id)) {
140 const trace = new TraceSource(id);
141 Registry.instance.add(id, trace);
142 return trace;
143 } else {
139 144 return Registry.instance.get(id);
140 145 }
141 146 }
147 }
General Comments 0
You need to be logged in to leave comments. Login now