offsets: fix integer overflow

This commit is contained in:
lithdew 2020-09-25 12:59:45 +09:00
parent 39b0f50bda
commit f5b4fc2aea

View File

@ -81,7 +81,7 @@ pub fn tokenRelativeLocation(tree: *std.zig.ast.Tree, start_index: usize, token:
const token_start = token_loc.start;
const source = tree.source[start_index..];
var i: usize = 0;
while (i < token_start - start_index) {
while (i + start_index < token_start) {
const c = source[i];
if (c == '\n') {
loc.line += 1;