aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/js_lexer.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/js_lexer.zig b/src/js_lexer.zig
index 8ff73fcb6..98393080b 100644
--- a/src/js_lexer.zig
+++ b/src/js_lexer.zig
@@ -782,12 +782,12 @@ fn NewLexer_(
}
inline fn nextCodepointSlice(it: *LexerType) []const u8 {
- const cp_len = strings.wtf8ByteSequenceLength(it.source.contents.ptr[it.current]);
+ const cp_len = strings.wtf8ByteSequenceLengthWithInvalid(it.source.contents.ptr[it.current]);
return if (!(cp_len + it.current > it.source.contents.len)) it.source.contents[it.current .. cp_len + it.current] else "";
}
inline fn nextCodepoint(it: *LexerType) CodePoint {
- const cp_len = strings.wtf8ByteSequenceLength(it.source.contents.ptr[it.current]);
+ const cp_len = strings.wtf8ByteSequenceLengthWithInvalid(it.source.contents.ptr[it.current]);
const slice = if (!(cp_len + it.current > it.source.contents.len)) it.source.contents[it.current .. cp_len + it.current] else "";
const code_point = switch (slice.len) {