├── .gitignore ├── README.md ├── package.json ├── sandbox-loader.js ├── tests ├── arrow-function-exports │ ├── README.md │ ├── app.component.ts │ ├── app.module.ts │ ├── foo.module.ts │ ├── foo.ts │ ├── index.html │ ├── main-aot.ts │ └── main.ts ├── control │ ├── README.md │ ├── app.component.ts │ ├── app.module.ts │ ├── index.html │ ├── main-aot.ts │ └── main.ts ├── default-exports │ ├── README.md │ ├── app.component.ts │ ├── app.module.ts │ ├── index.html │ ├── main-aot.ts │ └── main.ts ├── form-control-error │ ├── README.md │ ├── app.component.ts │ ├── app.module.ts │ ├── index.html │ ├── main-aot.ts │ └── main.ts ├── form-control │ ├── README.md │ ├── app.component.ts │ ├── app.module.ts │ ├── index.html │ ├── main-aot.ts │ └── main.ts ├── func-as-variable-export │ ├── README.md │ ├── app.component.ts │ ├── app.module.ts │ ├── foo.module.ts │ ├── foo.ts │ ├── index.html │ ├── main-aot.ts │ └── main.ts ├── func-declaration-export │ ├── README.md │ ├── app.component.ts │ ├── app.module.ts │ ├── foo.module.ts │ ├── foo.ts │ ├── index.html │ ├── main-aot.ts │ └── main.ts ├── func-in-declarations │ ├── README.md │ ├── app-fake.component.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── index.html │ ├── main-aot.ts │ └── main.ts ├── func-in-providers-useFactory │ ├── README.md │ ├── app.component.ts │ ├── app.module.ts │ ├── app.service.ts │ ├── index.html │ ├── main-aot.ts │ └── main.ts ├── func-in-providers-useValue │ ├── README.md │ ├── app.component.ts │ ├── app.module.ts │ ├── app.service.ts │ ├── bar.ts │ ├── foo.ts │ ├── index.html │ ├── main-aot.ts │ └── main.ts ├── func-in-providers │ ├── README.md │ ├── app.component.ts │ ├── app.module.ts │ ├── index.html │ ├── main-aot.ts │ ├── main.ts │ └── services │ │ ├── app.service.ts │ │ └── service-providers.ts ├── func-in-routes │ ├── README.md │ ├── app-view.component.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── app.routes.ts │ ├── index.html │ ├── main-aot.ts │ └── main.ts ├── func-in-string-config │ ├── README.md │ ├── app.component.ts │ ├── app.module.ts │ ├── index.html │ ├── main-aot.ts │ └── main.ts ├── interpolated-es6 │ ├── README.md │ ├── app.component.ts │ ├── app.module.ts │ ├── index.html │ ├── main-aot.ts │ └── main.ts ├── jquery │ ├── README.md │ ├── app.component.ts │ ├── app.module.ts │ ├── index.html │ ├── main-aot.ts │ └── main.ts ├── mut-property-decorator │ ├── README.md │ ├── app.component.ts │ ├── app.module.ts │ ├── index.html │ ├── main-aot.ts │ └── main.ts ├── ng2-redux-@select │ ├── README.md │ ├── actions │ │ └── counter.actions.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── index.html │ ├── main-aot.ts │ ├── main.ts │ └── store │ │ ├── counter.reducer.ts │ │ └── index.ts ├── ng2-redux │ ├── README.md │ ├── actions │ │ └── counter.actions.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── index.html │ ├── main-aot.ts │ ├── main.ts │ └── store │ │ ├── counter.reducer.ts │ │ └── index.ts ├── ngrx-compose │ ├── README.md │ ├── app.component.ts │ ├── app.module.ts │ ├── index.html │ ├── main-aot.ts │ ├── main.ts │ └── reducers │ │ ├── counter.ts │ │ └── index.ts ├── ngrx-effects │ ├── README.md │ ├── app.component.ts │ ├── app.module.ts │ ├── counter.ts │ ├── index.html │ ├── main-aot.ts │ └── main.ts ├── ngrx │ ├── README.md │ ├── app.component.ts │ ├── app.module.ts │ ├── counter.ts │ ├── index.html │ ├── main-aot.ts │ └── main.ts ├── nomut-property-decorator │ ├── README.md │ ├── app.component.js │ ├── app.component.ts │ ├── app.module.ts │ ├── index.html │ ├── main-aot.ts │ └── main.ts ├── private-contentchild │ ├── README.md │ ├── app.component.ts │ ├── app.module.ts │ ├── index.html │ ├── main-aot.ts │ ├── main.ts │ ├── pane.directive.ts │ └── tab.component.ts ├── private-hostbinding │ ├── README.md │ ├── app.component.ts │ ├── app.module.ts │ ├── index.html │ ├── main-aot.ts │ ├── main.ts │ └── name.directive.ts ├── private-input │ ├── README.md │ ├── app.component.ts │ ├── app.module.ts │ ├── index.html │ ├── main-aot.ts │ ├── main.ts │ └── name.component.ts ├── private-output │ ├── README.md │ ├── app.component.ts │ ├── app.module.ts │ ├── index.html │ ├── main-aot.ts │ ├── main.ts │ └── name.component.ts ├── private-property │ ├── README.md │ ├── app.component.ts │ ├── app.module.ts │ ├── index.html │ ├── main-aot.ts │ └── main.ts ├── private-viewchild │ ├── README.md │ ├── app.component.ts │ ├── app.module.ts │ ├── child.directive.ts │ ├── index.html │ ├── main-aot.ts │ └── main.ts ├── property-accessors │ ├── README.md │ ├── app.component.ts │ ├── app.module.ts │ ├── definitions.ts │ ├── foo.module.ts │ ├── handlers.ts │ ├── index.html │ ├── main-aot.ts │ └── main.ts ├── service-with-generic-type-param │ ├── README.md │ ├── app.component.ts │ ├── app.module.ts │ ├── hello.service.ts │ ├── index.html │ ├── main-aot.ts │ └── main.ts ├── template-expression │ ├── README.md │ ├── app.component.ts │ ├── app.module.ts │ ├── index.html │ ├── main-aot.ts │ └── main.ts └── template-variable │ ├── README.md │ ├── app.component.ts │ ├── app.module.ts │ ├── index.html │ ├── main-aot.ts │ └── main.ts ├── tsconfig.json ├── webpack-aot-ngc.config.js ├── webpack-aot-ngtools.config.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/package.json -------------------------------------------------------------------------------- /sandbox-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/sandbox-loader.js -------------------------------------------------------------------------------- /tests/arrow-function-exports/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/arrow-function-exports/README.md -------------------------------------------------------------------------------- /tests/arrow-function-exports/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/arrow-function-exports/app.component.ts -------------------------------------------------------------------------------- /tests/arrow-function-exports/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/arrow-function-exports/app.module.ts -------------------------------------------------------------------------------- /tests/arrow-function-exports/foo.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/arrow-function-exports/foo.module.ts -------------------------------------------------------------------------------- /tests/arrow-function-exports/foo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/arrow-function-exports/foo.ts -------------------------------------------------------------------------------- /tests/arrow-function-exports/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/arrow-function-exports/index.html -------------------------------------------------------------------------------- /tests/arrow-function-exports/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/arrow-function-exports/main-aot.ts -------------------------------------------------------------------------------- /tests/arrow-function-exports/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/arrow-function-exports/main.ts -------------------------------------------------------------------------------- /tests/control/README.md: -------------------------------------------------------------------------------- 1 | ### control 2 | 3 | This is used as a simplest working case. 4 | -------------------------------------------------------------------------------- /tests/control/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/control/app.component.ts -------------------------------------------------------------------------------- /tests/control/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/control/app.module.ts -------------------------------------------------------------------------------- /tests/control/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/control/index.html -------------------------------------------------------------------------------- /tests/control/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/control/main-aot.ts -------------------------------------------------------------------------------- /tests/control/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/control/main.ts -------------------------------------------------------------------------------- /tests/default-exports/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/default-exports/README.md -------------------------------------------------------------------------------- /tests/default-exports/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/default-exports/app.component.ts -------------------------------------------------------------------------------- /tests/default-exports/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/default-exports/app.module.ts -------------------------------------------------------------------------------- /tests/default-exports/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/default-exports/index.html -------------------------------------------------------------------------------- /tests/default-exports/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/default-exports/main-aot.ts -------------------------------------------------------------------------------- /tests/default-exports/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/default-exports/main.ts -------------------------------------------------------------------------------- /tests/form-control-error/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/form-control-error/README.md -------------------------------------------------------------------------------- /tests/form-control-error/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/form-control-error/app.component.ts -------------------------------------------------------------------------------- /tests/form-control-error/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/form-control-error/app.module.ts -------------------------------------------------------------------------------- /tests/form-control-error/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/form-control-error/index.html -------------------------------------------------------------------------------- /tests/form-control-error/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/form-control-error/main-aot.ts -------------------------------------------------------------------------------- /tests/form-control-error/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/form-control-error/main.ts -------------------------------------------------------------------------------- /tests/form-control/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/form-control/README.md -------------------------------------------------------------------------------- /tests/form-control/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/form-control/app.component.ts -------------------------------------------------------------------------------- /tests/form-control/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/form-control/app.module.ts -------------------------------------------------------------------------------- /tests/form-control/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/form-control/index.html -------------------------------------------------------------------------------- /tests/form-control/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/form-control/main-aot.ts -------------------------------------------------------------------------------- /tests/form-control/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/form-control/main.ts -------------------------------------------------------------------------------- /tests/func-as-variable-export/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-as-variable-export/README.md -------------------------------------------------------------------------------- /tests/func-as-variable-export/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-as-variable-export/app.component.ts -------------------------------------------------------------------------------- /tests/func-as-variable-export/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-as-variable-export/app.module.ts -------------------------------------------------------------------------------- /tests/func-as-variable-export/foo.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-as-variable-export/foo.module.ts -------------------------------------------------------------------------------- /tests/func-as-variable-export/foo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-as-variable-export/foo.ts -------------------------------------------------------------------------------- /tests/func-as-variable-export/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-as-variable-export/index.html -------------------------------------------------------------------------------- /tests/func-as-variable-export/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-as-variable-export/main-aot.ts -------------------------------------------------------------------------------- /tests/func-as-variable-export/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-as-variable-export/main.ts -------------------------------------------------------------------------------- /tests/func-declaration-export/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-declaration-export/README.md -------------------------------------------------------------------------------- /tests/func-declaration-export/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-declaration-export/app.component.ts -------------------------------------------------------------------------------- /tests/func-declaration-export/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-declaration-export/app.module.ts -------------------------------------------------------------------------------- /tests/func-declaration-export/foo.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-declaration-export/foo.module.ts -------------------------------------------------------------------------------- /tests/func-declaration-export/foo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-declaration-export/foo.ts -------------------------------------------------------------------------------- /tests/func-declaration-export/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-declaration-export/index.html -------------------------------------------------------------------------------- /tests/func-declaration-export/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-declaration-export/main-aot.ts -------------------------------------------------------------------------------- /tests/func-declaration-export/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-declaration-export/main.ts -------------------------------------------------------------------------------- /tests/func-in-declarations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-declarations/README.md -------------------------------------------------------------------------------- /tests/func-in-declarations/app-fake.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-declarations/app-fake.component.ts -------------------------------------------------------------------------------- /tests/func-in-declarations/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-declarations/app.component.ts -------------------------------------------------------------------------------- /tests/func-in-declarations/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-declarations/app.module.ts -------------------------------------------------------------------------------- /tests/func-in-declarations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-declarations/index.html -------------------------------------------------------------------------------- /tests/func-in-declarations/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-declarations/main-aot.ts -------------------------------------------------------------------------------- /tests/func-in-declarations/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-declarations/main.ts -------------------------------------------------------------------------------- /tests/func-in-providers-useFactory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-providers-useFactory/README.md -------------------------------------------------------------------------------- /tests/func-in-providers-useFactory/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-providers-useFactory/app.component.ts -------------------------------------------------------------------------------- /tests/func-in-providers-useFactory/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-providers-useFactory/app.module.ts -------------------------------------------------------------------------------- /tests/func-in-providers-useFactory/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-providers-useFactory/app.service.ts -------------------------------------------------------------------------------- /tests/func-in-providers-useFactory/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-providers-useFactory/index.html -------------------------------------------------------------------------------- /tests/func-in-providers-useFactory/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-providers-useFactory/main-aot.ts -------------------------------------------------------------------------------- /tests/func-in-providers-useFactory/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-providers-useFactory/main.ts -------------------------------------------------------------------------------- /tests/func-in-providers-useValue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-providers-useValue/README.md -------------------------------------------------------------------------------- /tests/func-in-providers-useValue/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-providers-useValue/app.component.ts -------------------------------------------------------------------------------- /tests/func-in-providers-useValue/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-providers-useValue/app.module.ts -------------------------------------------------------------------------------- /tests/func-in-providers-useValue/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-providers-useValue/app.service.ts -------------------------------------------------------------------------------- /tests/func-in-providers-useValue/bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-providers-useValue/bar.ts -------------------------------------------------------------------------------- /tests/func-in-providers-useValue/foo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-providers-useValue/foo.ts -------------------------------------------------------------------------------- /tests/func-in-providers-useValue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-providers-useValue/index.html -------------------------------------------------------------------------------- /tests/func-in-providers-useValue/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-providers-useValue/main-aot.ts -------------------------------------------------------------------------------- /tests/func-in-providers-useValue/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-providers-useValue/main.ts -------------------------------------------------------------------------------- /tests/func-in-providers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-providers/README.md -------------------------------------------------------------------------------- /tests/func-in-providers/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-providers/app.component.ts -------------------------------------------------------------------------------- /tests/func-in-providers/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-providers/app.module.ts -------------------------------------------------------------------------------- /tests/func-in-providers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-providers/index.html -------------------------------------------------------------------------------- /tests/func-in-providers/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-providers/main-aot.ts -------------------------------------------------------------------------------- /tests/func-in-providers/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-providers/main.ts -------------------------------------------------------------------------------- /tests/func-in-providers/services/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-providers/services/app.service.ts -------------------------------------------------------------------------------- /tests/func-in-providers/services/service-providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-providers/services/service-providers.ts -------------------------------------------------------------------------------- /tests/func-in-routes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-routes/README.md -------------------------------------------------------------------------------- /tests/func-in-routes/app-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-routes/app-view.component.ts -------------------------------------------------------------------------------- /tests/func-in-routes/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-routes/app.component.ts -------------------------------------------------------------------------------- /tests/func-in-routes/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-routes/app.module.ts -------------------------------------------------------------------------------- /tests/func-in-routes/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-routes/app.routes.ts -------------------------------------------------------------------------------- /tests/func-in-routes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-routes/index.html -------------------------------------------------------------------------------- /tests/func-in-routes/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-routes/main-aot.ts -------------------------------------------------------------------------------- /tests/func-in-routes/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-routes/main.ts -------------------------------------------------------------------------------- /tests/func-in-string-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-string-config/README.md -------------------------------------------------------------------------------- /tests/func-in-string-config/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-string-config/app.component.ts -------------------------------------------------------------------------------- /tests/func-in-string-config/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-string-config/app.module.ts -------------------------------------------------------------------------------- /tests/func-in-string-config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-string-config/index.html -------------------------------------------------------------------------------- /tests/func-in-string-config/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-string-config/main-aot.ts -------------------------------------------------------------------------------- /tests/func-in-string-config/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/func-in-string-config/main.ts -------------------------------------------------------------------------------- /tests/interpolated-es6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/interpolated-es6/README.md -------------------------------------------------------------------------------- /tests/interpolated-es6/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/interpolated-es6/app.component.ts -------------------------------------------------------------------------------- /tests/interpolated-es6/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/interpolated-es6/app.module.ts -------------------------------------------------------------------------------- /tests/interpolated-es6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/interpolated-es6/index.html -------------------------------------------------------------------------------- /tests/interpolated-es6/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/interpolated-es6/main-aot.ts -------------------------------------------------------------------------------- /tests/interpolated-es6/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/interpolated-es6/main.ts -------------------------------------------------------------------------------- /tests/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/jquery/README.md -------------------------------------------------------------------------------- /tests/jquery/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/jquery/app.component.ts -------------------------------------------------------------------------------- /tests/jquery/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/jquery/app.module.ts -------------------------------------------------------------------------------- /tests/jquery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/jquery/index.html -------------------------------------------------------------------------------- /tests/jquery/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/jquery/main-aot.ts -------------------------------------------------------------------------------- /tests/jquery/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/jquery/main.ts -------------------------------------------------------------------------------- /tests/mut-property-decorator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/mut-property-decorator/README.md -------------------------------------------------------------------------------- /tests/mut-property-decorator/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/mut-property-decorator/app.component.ts -------------------------------------------------------------------------------- /tests/mut-property-decorator/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/mut-property-decorator/app.module.ts -------------------------------------------------------------------------------- /tests/mut-property-decorator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/mut-property-decorator/index.html -------------------------------------------------------------------------------- /tests/mut-property-decorator/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/mut-property-decorator/main-aot.ts -------------------------------------------------------------------------------- /tests/mut-property-decorator/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/mut-property-decorator/main.ts -------------------------------------------------------------------------------- /tests/ng2-redux-@select/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ng2-redux-@select/README.md -------------------------------------------------------------------------------- /tests/ng2-redux-@select/actions/counter.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ng2-redux-@select/actions/counter.actions.ts -------------------------------------------------------------------------------- /tests/ng2-redux-@select/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ng2-redux-@select/app.component.ts -------------------------------------------------------------------------------- /tests/ng2-redux-@select/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ng2-redux-@select/app.module.ts -------------------------------------------------------------------------------- /tests/ng2-redux-@select/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ng2-redux-@select/index.html -------------------------------------------------------------------------------- /tests/ng2-redux-@select/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ng2-redux-@select/main-aot.ts -------------------------------------------------------------------------------- /tests/ng2-redux-@select/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ng2-redux-@select/main.ts -------------------------------------------------------------------------------- /tests/ng2-redux-@select/store/counter.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ng2-redux-@select/store/counter.reducer.ts -------------------------------------------------------------------------------- /tests/ng2-redux-@select/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ng2-redux-@select/store/index.ts -------------------------------------------------------------------------------- /tests/ng2-redux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ng2-redux/README.md -------------------------------------------------------------------------------- /tests/ng2-redux/actions/counter.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ng2-redux/actions/counter.actions.ts -------------------------------------------------------------------------------- /tests/ng2-redux/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ng2-redux/app.component.ts -------------------------------------------------------------------------------- /tests/ng2-redux/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ng2-redux/app.module.ts -------------------------------------------------------------------------------- /tests/ng2-redux/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ng2-redux/index.html -------------------------------------------------------------------------------- /tests/ng2-redux/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ng2-redux/main-aot.ts -------------------------------------------------------------------------------- /tests/ng2-redux/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ng2-redux/main.ts -------------------------------------------------------------------------------- /tests/ng2-redux/store/counter.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ng2-redux/store/counter.reducer.ts -------------------------------------------------------------------------------- /tests/ng2-redux/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ng2-redux/store/index.ts -------------------------------------------------------------------------------- /tests/ngrx-compose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ngrx-compose/README.md -------------------------------------------------------------------------------- /tests/ngrx-compose/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ngrx-compose/app.component.ts -------------------------------------------------------------------------------- /tests/ngrx-compose/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ngrx-compose/app.module.ts -------------------------------------------------------------------------------- /tests/ngrx-compose/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ngrx-compose/index.html -------------------------------------------------------------------------------- /tests/ngrx-compose/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ngrx-compose/main-aot.ts -------------------------------------------------------------------------------- /tests/ngrx-compose/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ngrx-compose/main.ts -------------------------------------------------------------------------------- /tests/ngrx-compose/reducers/counter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ngrx-compose/reducers/counter.ts -------------------------------------------------------------------------------- /tests/ngrx-compose/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ngrx-compose/reducers/index.ts -------------------------------------------------------------------------------- /tests/ngrx-effects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ngrx-effects/README.md -------------------------------------------------------------------------------- /tests/ngrx-effects/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ngrx-effects/app.component.ts -------------------------------------------------------------------------------- /tests/ngrx-effects/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ngrx-effects/app.module.ts -------------------------------------------------------------------------------- /tests/ngrx-effects/counter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ngrx-effects/counter.ts -------------------------------------------------------------------------------- /tests/ngrx-effects/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ngrx-effects/index.html -------------------------------------------------------------------------------- /tests/ngrx-effects/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ngrx-effects/main-aot.ts -------------------------------------------------------------------------------- /tests/ngrx-effects/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ngrx-effects/main.ts -------------------------------------------------------------------------------- /tests/ngrx/README.md: -------------------------------------------------------------------------------- 1 | ### ngrx 2 | 3 | Setting up basic `ngrx` is fine with AoT. 4 | -------------------------------------------------------------------------------- /tests/ngrx/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ngrx/app.component.ts -------------------------------------------------------------------------------- /tests/ngrx/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ngrx/app.module.ts -------------------------------------------------------------------------------- /tests/ngrx/counter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ngrx/counter.ts -------------------------------------------------------------------------------- /tests/ngrx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ngrx/index.html -------------------------------------------------------------------------------- /tests/ngrx/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ngrx/main-aot.ts -------------------------------------------------------------------------------- /tests/ngrx/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/ngrx/main.ts -------------------------------------------------------------------------------- /tests/nomut-property-decorator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/nomut-property-decorator/README.md -------------------------------------------------------------------------------- /tests/nomut-property-decorator/app.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/nomut-property-decorator/app.component.js -------------------------------------------------------------------------------- /tests/nomut-property-decorator/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/nomut-property-decorator/app.component.ts -------------------------------------------------------------------------------- /tests/nomut-property-decorator/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/nomut-property-decorator/app.module.ts -------------------------------------------------------------------------------- /tests/nomut-property-decorator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/nomut-property-decorator/index.html -------------------------------------------------------------------------------- /tests/nomut-property-decorator/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/nomut-property-decorator/main-aot.ts -------------------------------------------------------------------------------- /tests/nomut-property-decorator/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/nomut-property-decorator/main.ts -------------------------------------------------------------------------------- /tests/private-contentchild/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-contentchild/README.md -------------------------------------------------------------------------------- /tests/private-contentchild/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-contentchild/app.component.ts -------------------------------------------------------------------------------- /tests/private-contentchild/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-contentchild/app.module.ts -------------------------------------------------------------------------------- /tests/private-contentchild/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-contentchild/index.html -------------------------------------------------------------------------------- /tests/private-contentchild/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-contentchild/main-aot.ts -------------------------------------------------------------------------------- /tests/private-contentchild/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-contentchild/main.ts -------------------------------------------------------------------------------- /tests/private-contentchild/pane.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-contentchild/pane.directive.ts -------------------------------------------------------------------------------- /tests/private-contentchild/tab.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-contentchild/tab.component.ts -------------------------------------------------------------------------------- /tests/private-hostbinding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-hostbinding/README.md -------------------------------------------------------------------------------- /tests/private-hostbinding/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-hostbinding/app.component.ts -------------------------------------------------------------------------------- /tests/private-hostbinding/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-hostbinding/app.module.ts -------------------------------------------------------------------------------- /tests/private-hostbinding/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-hostbinding/index.html -------------------------------------------------------------------------------- /tests/private-hostbinding/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-hostbinding/main-aot.ts -------------------------------------------------------------------------------- /tests/private-hostbinding/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-hostbinding/main.ts -------------------------------------------------------------------------------- /tests/private-hostbinding/name.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-hostbinding/name.directive.ts -------------------------------------------------------------------------------- /tests/private-input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-input/README.md -------------------------------------------------------------------------------- /tests/private-input/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-input/app.component.ts -------------------------------------------------------------------------------- /tests/private-input/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-input/app.module.ts -------------------------------------------------------------------------------- /tests/private-input/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-input/index.html -------------------------------------------------------------------------------- /tests/private-input/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-input/main-aot.ts -------------------------------------------------------------------------------- /tests/private-input/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-input/main.ts -------------------------------------------------------------------------------- /tests/private-input/name.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-input/name.component.ts -------------------------------------------------------------------------------- /tests/private-output/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-output/README.md -------------------------------------------------------------------------------- /tests/private-output/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-output/app.component.ts -------------------------------------------------------------------------------- /tests/private-output/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-output/app.module.ts -------------------------------------------------------------------------------- /tests/private-output/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-output/index.html -------------------------------------------------------------------------------- /tests/private-output/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-output/main-aot.ts -------------------------------------------------------------------------------- /tests/private-output/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-output/main.ts -------------------------------------------------------------------------------- /tests/private-output/name.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-output/name.component.ts -------------------------------------------------------------------------------- /tests/private-property/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-property/README.md -------------------------------------------------------------------------------- /tests/private-property/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-property/app.component.ts -------------------------------------------------------------------------------- /tests/private-property/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-property/app.module.ts -------------------------------------------------------------------------------- /tests/private-property/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-property/index.html -------------------------------------------------------------------------------- /tests/private-property/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-property/main-aot.ts -------------------------------------------------------------------------------- /tests/private-property/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-property/main.ts -------------------------------------------------------------------------------- /tests/private-viewchild/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-viewchild/README.md -------------------------------------------------------------------------------- /tests/private-viewchild/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-viewchild/app.component.ts -------------------------------------------------------------------------------- /tests/private-viewchild/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-viewchild/app.module.ts -------------------------------------------------------------------------------- /tests/private-viewchild/child.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-viewchild/child.directive.ts -------------------------------------------------------------------------------- /tests/private-viewchild/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-viewchild/index.html -------------------------------------------------------------------------------- /tests/private-viewchild/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-viewchild/main-aot.ts -------------------------------------------------------------------------------- /tests/private-viewchild/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/private-viewchild/main.ts -------------------------------------------------------------------------------- /tests/property-accessors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/property-accessors/README.md -------------------------------------------------------------------------------- /tests/property-accessors/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/property-accessors/app.component.ts -------------------------------------------------------------------------------- /tests/property-accessors/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/property-accessors/app.module.ts -------------------------------------------------------------------------------- /tests/property-accessors/definitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/property-accessors/definitions.ts -------------------------------------------------------------------------------- /tests/property-accessors/foo.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/property-accessors/foo.module.ts -------------------------------------------------------------------------------- /tests/property-accessors/handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/property-accessors/handlers.ts -------------------------------------------------------------------------------- /tests/property-accessors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/property-accessors/index.html -------------------------------------------------------------------------------- /tests/property-accessors/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/property-accessors/main-aot.ts -------------------------------------------------------------------------------- /tests/property-accessors/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/property-accessors/main.ts -------------------------------------------------------------------------------- /tests/service-with-generic-type-param/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/service-with-generic-type-param/README.md -------------------------------------------------------------------------------- /tests/service-with-generic-type-param/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/service-with-generic-type-param/app.component.ts -------------------------------------------------------------------------------- /tests/service-with-generic-type-param/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/service-with-generic-type-param/app.module.ts -------------------------------------------------------------------------------- /tests/service-with-generic-type-param/hello.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/service-with-generic-type-param/hello.service.ts -------------------------------------------------------------------------------- /tests/service-with-generic-type-param/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/service-with-generic-type-param/index.html -------------------------------------------------------------------------------- /tests/service-with-generic-type-param/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/service-with-generic-type-param/main-aot.ts -------------------------------------------------------------------------------- /tests/service-with-generic-type-param/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/service-with-generic-type-param/main.ts -------------------------------------------------------------------------------- /tests/template-expression/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/template-expression/README.md -------------------------------------------------------------------------------- /tests/template-expression/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/template-expression/app.component.ts -------------------------------------------------------------------------------- /tests/template-expression/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/template-expression/app.module.ts -------------------------------------------------------------------------------- /tests/template-expression/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/template-expression/index.html -------------------------------------------------------------------------------- /tests/template-expression/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/template-expression/main-aot.ts -------------------------------------------------------------------------------- /tests/template-expression/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/template-expression/main.ts -------------------------------------------------------------------------------- /tests/template-variable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/template-variable/README.md -------------------------------------------------------------------------------- /tests/template-variable/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/template-variable/app.component.ts -------------------------------------------------------------------------------- /tests/template-variable/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/template-variable/app.module.ts -------------------------------------------------------------------------------- /tests/template-variable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/template-variable/index.html -------------------------------------------------------------------------------- /tests/template-variable/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/template-variable/main-aot.ts -------------------------------------------------------------------------------- /tests/template-variable/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tests/template-variable/main.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack-aot-ngc.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/webpack-aot-ngc.config.js -------------------------------------------------------------------------------- /webpack-aot-ngtools.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/webpack-aot-ngtools.config.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rangle/angular-2-aot-sandbox/HEAD/webpack.config.js --------------------------------------------------------------------------------