Skip to main content
Module

x/deno2node/src/deps.deno.ts>Symbol#getExportSymbol

Compile your Deno project to run on Node.js.
Go to Latest
method Symbol.prototype.getExportSymbol
import { Symbol } from "https://deno.land/x/deno2node@v1.7.1/src/deps.deno.ts";

Gets the export symbol of the symbol if its a local symbol with a corresponding export symbol. Otherwise returns the current symbol.

The following is from the compiler API documentation:

For example, at export type T = number;: - getSymbolAtLocation at the location T will return the exported symbol for T. - But the result of getSymbolsInScope will contain the local symbol for T, not the exported symbol. - Calling getExportSymbol on that local symbol will return the exported symbol.