(n *ast.Node, sourceFile *ast.SourceFile)
| 508 | } |
| 509 | |
| 510 | func getStartLineAndCharacterForNode(n *ast.Node, sourceFile *ast.SourceFile) (line int, character int) { |
| 511 | return scanner.GetECMALineAndByteOffsetOfPosition(sourceFile, scanner.GetTokenPosOfNode(n, sourceFile, false)) |
| 512 | } |
| 513 | |
| 514 | func getStartLineForNode(n *ast.Node, sourceFile *ast.SourceFile) int { |
| 515 | return scanner.GetECMALineOfPosition(sourceFile, scanner.GetTokenPosOfNode(n, sourceFile, false)) |
no test coverage detected