(node *Node)
| 1338 | } |
| 1339 | |
| 1340 | func IsModuleIdentifier(node *Node) bool { |
| 1341 | return IsIdentifier(node) && node.Text() == "module" |
| 1342 | } |
| 1343 | |
| 1344 | func IsThisIdentifier(node *Node) bool { |
| 1345 | return IsIdentifier(node) && node.Text() == "this" |
no test coverage detected