Skip to content

Commit

Permalink
Merge pull request #5199 from asemdreibati/di-enhancement
Browse files Browse the repository at this point in the history
Store the DI decorator's id in specific property (#5131).
  • Loading branch information
Tyriar authored Jan 6, 2025
2 parents ce095b3 + db925ad commit af4208d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/common/services/InstantiationService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export class InstantiationService implements IInstantiationService {
for (const dependency of serviceDependencies) {
const service = this._services.get(dependency.id);
if (!service) {
throw new Error(`[createInstance] ${ctor.name} depends on UNKNOWN service ${dependency.id}.`);
throw new Error(`[createInstance] ${ctor.name} depends on UNKNOWN service ${dependency.id._id}.`);
}
serviceArgs.push(service);
}
Expand Down
2 changes: 1 addition & 1 deletion src/common/services/ServiceRegistry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export function createDecorator<T>(id: string): IServiceIdentifier<T> {
storeServiceDependency(decorator, target, index);
};

decorator.toString = () => id;
decorator._id = id;

serviceRegistry.set(id, decorator);
return decorator;
Expand Down
1 change: 1 addition & 0 deletions src/common/services/Services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ export interface ICharsetService {
export interface IServiceIdentifier<T> {
(...args: any[]): void;
type: T;
_id: string;
}

export interface IBrandedService {
Expand Down

0 comments on commit af4208d

Please sign in to comment.