UNPKG

@inversifyjs/core

Version:

InversifyJs core package

23 lines 624 B
export class BindingConstraintsImplementation { #node; constructor(node) { this.#node = node; } get name() { return this.#node.elem.name; } get serviceIdentifier() { return this.#node.elem.serviceIdentifier; } get tags() { return this.#node.elem.tags; } getAncestor() { this.#node.elem.getAncestorsCalled = true; if (this.#node.previous === undefined) { return undefined; } return new BindingConstraintsImplementation(this.#node.previous); } } //# sourceMappingURL=BindingConstraintsImplementation.js.map