mirror of
https://gitee.com/bimuziyan/ccc-obfuscated-code.git
synced 2026-05-09 22:03:35 +08:00
11 lines
392 B
JavaScript
11 lines
392 B
JavaScript
import * as METADATA_KEY from "../constants/metadata_keys";
|
|
import { Metadata } from "../planning/metadata";
|
|
import { tagParameter } from "./decorator_utils";
|
|
function targetName(name) {
|
|
return function (target, targetKey, index) {
|
|
var metadata = new Metadata(METADATA_KEY.NAME_TAG, name);
|
|
tagParameter(target, targetKey, index, metadata);
|
|
};
|
|
}
|
|
export { targetName };
|