(startPos int, endPos int, sourceFile *ast.SourceFile, options lsutil.FormatCodeSettings)
| 463 | } |
| 464 | |
| 465 | func FindFirstNonWhitespaceColumn(startPos int, endPos int, sourceFile *ast.SourceFile, options lsutil.FormatCodeSettings) int { |
| 466 | _, col := findFirstNonWhitespaceCharacterAndColumn(startPos, endPos, sourceFile, options) |
| 467 | return col |
| 468 | } |
| 469 | |
| 470 | /** |
| 471 | * Character is the actual index of the character since the beginning of the line. |
no test coverage detected