angular-cn/modules/di/src/annotations.js

22 lines
302 B
JavaScript
Raw Normal View History

import {CONST} from "facade/lang";
export class Inject {
@CONST()
constructor(token){
this.token = token;
}
}
export class InjectFuture {
@CONST()
constructor(token){
this.token = token;
}
2014-10-06 13:45:24 -04:00
}
export class InjectLazy {
@CONST()
constructor(token){
this.token = token;
}
}