2017-09-11 15:18:19 -07:00
|
|
|
/**
|
|
|
|
|
* @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
|
|
|
|
|
*/
|
|
|
|
|
|
2017-09-12 09:40:28 -07:00
|
|
|
import * as ts from 'typescript';
|
|
|
|
|
|
2017-09-11 15:18:19 -07:00
|
|
|
export const GENERATED_FILES = /(.*?)\.(ngfactory|shim\.ngstyle|ngstyle|ngsummary)\.(js|d\.ts|ts)$/;
|
2017-09-12 09:40:28 -07:00
|
|
|
|
|
|
|
|
export const enum StructureIsReused {Not = 0, SafeModules = 1, Completely = 2}
|
|
|
|
|
|
|
|
|
|
// Note: This is an internal property in TypeScript. Use it only for assertions and tests.
|
|
|
|
|
export function tsStructureIsReused(program: ts.Program): StructureIsReused {
|
|
|
|
|
return (program as any).structureIsReused;
|
|
|
|
|
}
|