You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
728 B
16 lines
728 B
define(["require", "exports", "../constants/metadata_keys", "../planning/metadata", "./decorator_utils"], function (require, exports, METADATA_KEY, metadata_1, decorator_utils_1) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
function named(name) {
|
|
return function (target, targetKey, index) {
|
|
var metadata = new metadata_1.Metadata(METADATA_KEY.NAMED_TAG, name);
|
|
if (typeof index === "number") {
|
|
decorator_utils_1.tagParameter(target, targetKey, index, metadata);
|
|
}
|
|
else {
|
|
decorator_utils_1.tagProperty(target, targetKey, metadata);
|
|
}
|
|
};
|
|
}
|
|
exports.named = named;
|
|
});
|
|
|