(fileName string, currentDirectory string)
| 385 | } |
| 386 | |
| 387 | func GetNormalizedAbsolutePathWithoutRoot(fileName string, currentDirectory string) string { |
| 388 | absolutePath := GetNormalizedAbsolutePath(fileName, currentDirectory) |
| 389 | rootLength := GetRootLength(absolutePath) |
| 390 | return absolutePath[rootLength:] |
| 391 | } |
| 392 | |
| 393 | func GetNormalizedAbsolutePath(fileName string, currentDirectory string) string { |
| 394 | rootLength := GetRootLength(fileName) |