(node *Node)
| 1631 | } |
| 1632 | |
| 1633 | func IsAmbientModule(node *Node) bool { |
| 1634 | return IsModuleDeclaration(node) && (node.AsModuleDeclaration().Name().Kind == KindStringLiteral || IsGlobalScopeAugmentation(node)) |
| 1635 | } |
| 1636 | |
| 1637 | func IsAmbientModuleSymbolName(s string) bool { |
| 1638 | return strings.HasPrefix(s, "\"") && strings.HasSuffix(s, "\"") |
no test coverage detected