Project

General

Profile

1
/**
2
 * @license
3
 * Copyright Google Inc. 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
 */
13
export 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
 */
24
export declare class StaticSymbolCache {
25
    private cache;
26
    get(declarationFile: string, name: string, members?: string[]): StaticSymbol;
27
}
(13-13/22)