moved submodules into this project

This commit is contained in:
Tobias Bosch
2014-09-25 14:30:10 -07:00
parent 61ceed5bf6
commit 97f6ceb27b
33 changed files with 22742 additions and 0 deletions

View File

@ -0,0 +1,19 @@
import annotations from './fixtures/annotations';
class Inject {}
class Bar {}
@annotations.Provide('Foo')
class Foo {
@Inject
constructor() {}
}
@annotations.Provide(Foo)
function baz() {}
function annotatedParams(@Inject(Foo) f, @Inject(Bar) b) {}
function main() {
annotations.main();
}