Adds support for compiling @Pipe in JIT mode, along with tests to verify that certain aspects of compilation are correct. PR Close #24703
15 lines
637 B
TypeScript
15 lines
637 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 const ivyEnabled = false;
|
|
export const R3_COMPILE_COMPONENT: ((type: any, meta: any) => void)|null = null;
|
|
export const R3_COMPILE_DIRECTIVE: ((type: any, meta: any) => void)|null = null;
|
|
export const R3_COMPILE_INJECTABLE: ((type: any, meta: any) => void)|null = null;
|
|
export const R3_COMPILE_NGMODULE: ((type: any, meta: any) => void)|null = null;
|
|
export const R3_COMPILE_PIPE: ((type: any, meta: any) => void)|null = null;
|