mark as comptime

This commit is contained in:
Jarred Sumner
2022-02-27 04:26:45 -08:00
parent 0d4a2539a8
commit 1ed74ab59b

View File

@@ -114,7 +114,7 @@ fn JSONLikeParser(opts: js_lexer.JSONOptions) type {
return Expr.init(Type, t, loc);
}
}
pub fn parseExpr(p: *Parser, comptime maybe_auto_quote: bool, force_utf8: bool) anyerror!Expr {
pub fn parseExpr(p: *Parser, comptime maybe_auto_quote: bool, comptime force_utf8: bool) anyerror!Expr {
const loc = p.lexer.loc();
switch (p.lexer.token) {