File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ /** @internal */
12namespace ts {
3+ /** @internal */
24 export function createGetSymbolWalker (
35 getRestTypeOfSignature : ( sig : Signature ) => Type ,
46 getReturnTypeOfSignature : ( sig : Signature ) => Type ,
Original file line number Diff line number Diff line change @@ -2625,7 +2625,7 @@ namespace ts {
26252625
26262626 /* @internal */ tryFindAmbientModuleWithoutAugmentations ( moduleName : string ) : Symbol | undefined ;
26272627
2628- getSymbolWalker ( accept ?: ( symbol : Symbol ) => boolean ) : SymbolWalker ;
2628+ /* @internal */ getSymbolWalker ( accept ?: ( symbol : Symbol ) => boolean ) : SymbolWalker ;
26292629
26302630 // Should not be called directly. Should only be accessed through the Program instance.
26312631 /* @internal */ getDiagnostics ( sourceFile ?: SourceFile , cancellationToken ?: CancellationToken ) : Diagnostic [ ] ;
@@ -2671,6 +2671,7 @@ namespace ts {
26712671 InTypeAlias = 1 << 23 , // Writing type in type alias declaration
26722672 }
26732673
2674+ /* @internal */
26742675 export interface SymbolWalker {
26752676 visitType ( type : Type ) : void ;
26762677 visitSymbol ( symbol : Symbol ) : void ;
You can’t perform that action at this time.
0 commit comments