summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/regex.zig4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/regex.zig b/src/regex.zig
index ed66df8..a2f9c79 100644
--- a/src/regex.zig
+++ b/src/regex.zig
@@ -76,9 +76,7 @@ pub const Lexer = struct {
},
.Class => {
while (c != ']') { // needs more verbose error handling
- if (self.cursor >= self.regexp.len) {
- return Error.EndOfBuffer;
- }
+ c = try self.readChar();
self.cursor += 1;
}
return .{ .kind = inferred_type, .value = .{ .Class = try RangeList.init(self.regexp[self.start + 1 .. self.cursor - 1], self.allocator) }, .pos = self.start };