You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

21 lines
894 B

/**
* @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;
}