
Adds support for compiling @Pipe in JIT mode, along with tests to verify that certain aspects of compilation are correct. PR Close #24703
20 lines
735 B
TypeScript
20 lines
735 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
|
|
*/
|
|
|
|
import {compileComponent, compileDirective} from './render3/jit/directive';
|
|
import {compileInjectable} from './render3/jit/injectable';
|
|
import {compileNgModule} from './render3/jit/module';
|
|
import {compilePipe} from './render3/jit/pipe';
|
|
|
|
export const ivyEnabled = true;
|
|
export const R3_COMPILE_COMPONENT = compileComponent;
|
|
export const R3_COMPILE_DIRECTIVE = compileDirective;
|
|
export const R3_COMPILE_INJECTABLE = compileInjectable;
|
|
export const R3_COMPILE_NGMODULE = compileNgModule;
|
|
export const R3_COMPILE_PIPE = compilePipe;
|