summaryrefslogtreecommitdiff
path: root/src/node_modules/inversify/amd/syntax/constraint_helpers.js
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2021-12-21 16:52:28 +0100
committerMinteck <contact@minteck.org>2021-12-21 16:52:28 +0100
commit46e43f4bde4a35785b4997b81e86cd19f046b69b (patch)
treec53c2f826f777f9d6b2d249dab556feb72a6c3a6 /src/node_modules/inversify/amd/syntax/constraint_helpers.js
downloadlangdetect-46e43f4bde4a35785b4997b81e86cd19f046b69b.tar.gz
langdetect-46e43f4bde4a35785b4997b81e86cd19f046b69b.tar.bz2
langdetect-46e43f4bde4a35785b4997b81e86cd19f046b69b.zip
Commit
Diffstat (limited to 'src/node_modules/inversify/amd/syntax/constraint_helpers.js')
-rw-r--r--src/node_modules/inversify/amd/syntax/constraint_helpers.js40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/node_modules/inversify/amd/syntax/constraint_helpers.js b/src/node_modules/inversify/amd/syntax/constraint_helpers.js
new file mode 100644
index 0000000..e745a44
--- /dev/null
+++ b/src/node_modules/inversify/amd/syntax/constraint_helpers.js
@@ -0,0 +1,40 @@
+define(["require", "exports", "../constants/metadata_keys", "../planning/metadata"], function (require, exports, METADATA_KEY, metadata_1) {
+ "use strict";
+ Object.defineProperty(exports, "__esModule", { value: true });
+ var traverseAncerstors = function (request, constraint) {
+ var parent = request.parentRequest;
+ if (parent !== null) {
+ return constraint(parent) ? true : traverseAncerstors(parent, constraint);
+ }
+ else {
+ return false;
+ }
+ };
+ exports.traverseAncerstors = traverseAncerstors;
+ var taggedConstraint = function (key) { return function (value) {
+ var constraint = function (request) {
+ return request !== null && request.target !== null && request.target.matchesTag(key)(value);
+ };
+ constraint.metaData = new metadata_1.Metadata(key, value);
+ return constraint;
+ }; };
+ exports.taggedConstraint = taggedConstraint;
+ var namedConstraint = taggedConstraint(METADATA_KEY.NAMED_TAG);
+ exports.namedConstraint = namedConstraint;
+ var typeConstraint = function (type) { return function (request) {
+ var binding = null;
+ if (request !== null) {
+ binding = request.bindings[0];
+ if (typeof type === "string") {
+ var serviceIdentifier = binding.serviceIdentifier;
+ return serviceIdentifier === type;
+ }
+ else {
+ var constructor = request.bindings[0].implementationType;
+ return type === constructor;
+ }
+ }
+ return false;
+ }; };
+ exports.typeConstraint = typeConstraint;
+});