Files
flights_web_raw/node_modules/@angular/compiler/src/injectable_compiler.d.ts
T

22 lines
894 B
TypeScript
Executable File

/**
* @license
* Copyright Google LLC 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 { CompileInjectableMetadata } from './compile_metadata';
import { CompileReflector } from './compile_reflector';
import { OutputContext } from './constant_pool';
import * as o from './output/output_ast';
export declare class InjectableCompiler {
private reflector;
private alwaysGenerateDef;
private tokenInjector;
constructor(reflector: CompileReflector, alwaysGenerateDef: boolean);
private depsArray;
factoryFor(injectable: CompileInjectableMetadata, ctx: OutputContext): o.Expression;
injectableDef(injectable: CompileInjectableMetadata, ctx: OutputContext): o.Expression;
compile(injectable: CompileInjectableMetadata, ctx: OutputContext): void;
}