✂️ Dead code

This commit is contained in:
Jarred Sumner
2021-10-24 15:53:02 -07:00
parent 449c8b5f36
commit a3cd9347e6

View File

@@ -189,10 +189,6 @@ pub fn NewLexer(comptime json_options: JSONOptions) type {
// }
}
pub fn codePointEql(self: *LexerType, a: u8) bool {
return @intCast(CodePoint, a) == self.code_point;
}
/// Look ahead at the next n codepoints without advancing the iterator.
/// If fewer than n codepoints are available, then return the remainder of the string.
fn peek(it: *LexerType, n: usize) string {