
- `src/runtime_compiler.ts` -> `src/jit/compiler.ts` - `src/compiler.ts` -> `src/jit/compiler_factory.ts` - `src/offline_compiler` -> `src/aot/compiler.ts` Part of #12867
15 lines
517 B
TypeScript
15 lines
517 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
|
|
export {StaticReflector, StaticReflectorHost, StaticSymbol} from '@angular/compiler';
|
|
export {CodeGenerator} from './src/codegen';
|
|
export {Extractor} from './src/extractor';
|
|
export {NodeReflectorHostContext, ReflectorHost, ReflectorHostContext} from './src/reflector_host';
|
|
|
|
export * from '@angular/tsc-wrapped';
|