(ch rune)
| 685 | } |
| 686 | |
| 687 | func isASCIIWordCharacter(ch rune) bool { |
| 688 | return stringutil.IsASCIILetter(ch) || stringutil.IsDigit(ch) || ch == '_' |
| 689 | } |
| 690 | |
| 691 | func makeIdentifierFromModuleName(moduleName string) string { |
| 692 | moduleName = tspath.GetBaseFileName(moduleName) |
no test coverage detected