source: trip-planner-front/node_modules/@angular/compiler/src/aot/static_symbol.d.ts@ eed0bf8

Last change on this file since eed0bf8 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 819 bytes
Line 
1/**
2 * @license
3 * Copyright Google LLC All Rights Reserved.
4 *
5 * Use of this source code is governed by an MIT-style license that can be
6 * found in the LICENSE file at https://angular.io/license
7 */
8/**
9 * A token representing the a reference to a static type.
10 *
11 * This token is unique for a filePath and name and can be used as a hash table key.
12 */
13export declare class StaticSymbol {
14 filePath: string;
15 name: string;
16 members: string[];
17 constructor(filePath: string, name: string, members: string[]);
18 assertNoMembers(): void;
19}
20/**
21 * A cache of static symbol used by the StaticReflector to return the same symbol for the
22 * same symbol values.
23 */
24export declare class StaticSymbolCache {
25 private cache;
26 get(declarationFile: string, name: string, members?: string[]): StaticSymbol;
27}
Note: See TracBrowser for help on using the repository browser.