* Gets the local name of a declaration. This is primarily used for declarations that can be * referred to by name in the declaration's immediate scope (classes, enums, namespaces). A * local name will *never* be prefixed with an module or namespace export modifier like * "
(node, allowComments, allowSourceMaps)
| 26927 | * @param allowSourceMaps A value indicating whether source maps may be emitted for the name. |
| 26928 | */ |
| 26929 | function getLocalName(node, allowComments, allowSourceMaps) { |
| 26930 | return getName(node, allowComments, allowSourceMaps, 16384 /* EmitFlags.LocalName */); |
| 26931 | } |
| 26932 | /** |
| 26933 | * Gets the export name of a declaration. This is primarily used for declarations that can be |
| 26934 | * referred to by name in the declaration's immediate scope (classes, enums, namespaces). An |