feat: share decorators container

Signed-off-by: MiaoWoo <admin@yumc.pw>
This commit is contained in:
2019-09-27 18:39:40 +08:00
parent 8584709828
commit 7f21fa67ee
2 changed files with 4 additions and 2 deletions

View File

@ -11,7 +11,7 @@ function _proxyGetter(
resolve: () => any,
doCache: boolean
) {
function getter() {
function getter(this: object) {
if (doCache && !Reflect.hasMetadata(INJECTION, this, key)) {
Reflect.defineMetadata(INJECTION, resolve(), this, key);
}
@ -22,7 +22,7 @@ function _proxyGetter(
}
}
function setter(newVal: any) {
function setter(this: object, newVal: any) {
Reflect.defineMetadata(INJECTION, newVal, this, key);
}