| ... | @@ -32,6 +32,7 @@ pub fn do(comptime input: string, comptime symbols: []const u8) []const Token { | ... | @@ -32,6 +32,7 @@ pub fn do(comptime input: string, comptime symbols: []const u8) []const Token { |
| 32 | var mode = 0; | 32 | var mode = 0; |
| 33 | | 33 | |
| 34 | @setEvalBranchQuota(1000000); | 34 | @setEvalBranchQuota(1000000); |
| | 35 | if (!@inComptime()) @compileError("must be at comptime!"); |
| 35 | | 36 | |
| 36 | inline for (input, 0..) |c, i| { | 37 | inline for (input, 0..) |c, i| { |
| 37 | const s = &[_]u8{c}; | 38 | const s = &[_]u8{c}; |