| ... | @@ -2101,7 +2101,7 @@ pub const Parser = struct { | ... | @@ -2101,7 +2101,7 @@ pub const Parser = struct { |
| 2101 | // Unescape a JSON string | 2101 | // Unescape a JSON string |
| 2102 | // Only to be used on strings already validated by the parser | 2102 | // Only to be used on strings already validated by the parser |
| 2103 | // (note the unreachable statements and lack of bounds checking) | 2103 | // (note the unreachable statements and lack of bounds checking) |
| 2104 | fn unescapeString(output: []u8, input: []const u8) !void { | 2104 | pub fn unescapeString(output: []u8, input: []const u8) !void { |
| 2105 | var inIndex: usize = 0; | 2105 | var inIndex: usize = 0; |
| 2106 | var outIndex: usize = 0; | 2106 | var outIndex: usize = 0; |
| 2107 | | 2107 | |