@zigc/lib 0.16.0-dev.3066 → 0.16.0-dev.3091
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/c/math.zig +14 -0
- package/c/stropts.zig +17 -0
- package/c.zig +1 -0
- package/compiler_rt/limb64.zig +266 -0
- package/compiler_rt.zig +2 -0
- package/package.json +1 -1
- package/std/Build/Module.zig +1 -1
- package/std/Build/WebServer.zig +21 -16
- package/std/Build/abi.zig +8 -4
- package/std/Io/Dispatch.zig +2 -0
- package/std/Io/File.zig +1 -0
- package/std/Io/Threaded.zig +2 -0
- package/std/Io/Uring.zig +1 -0
- package/std/array_list.zig +22 -31
- package/std/debug/SelfInfo/Windows.zig +1 -0
- package/std/testing/Smith.zig +37 -2
- package/std/zig/Ast/Render.zig +186 -458
- package/std/zig/Ast.zig +0 -4
- package/std/zig/AstSmith.zig +2602 -0
- package/std/zig/Parse.zig +83 -74
- package/std/zig/system.zig +2 -0
- package/std/zig/tokenizer.zig +2 -1
- package/std/zig.zig +2 -0
- package/libc/musl/src/legacy/isastream.c +0 -7
- package/libc/musl/src/math/fdim.c +0 -10
package/std/zig/Ast.zig
CHANGED
|
@@ -504,9 +504,6 @@ pub fn renderError(tree: Ast, parse_error: Error, w: *Writer) Writer.Error!void
|
|
|
504
504
|
.varargs_nonfinal => {
|
|
505
505
|
return w.writeAll("function prototype has parameter after varargs");
|
|
506
506
|
},
|
|
507
|
-
.expected_continue_expr => {
|
|
508
|
-
return w.writeAll("expected ':' before while continue expression");
|
|
509
|
-
},
|
|
510
507
|
|
|
511
508
|
.expected_semi_after_decl => {
|
|
512
509
|
return w.writeAll("expected ';' after declaration");
|
|
@@ -2888,7 +2885,6 @@ pub const Error = struct {
|
|
|
2888
2885
|
test_doc_comment,
|
|
2889
2886
|
comptime_doc_comment,
|
|
2890
2887
|
varargs_nonfinal,
|
|
2891
|
-
expected_continue_expr,
|
|
2892
2888
|
expected_semi_after_decl,
|
|
2893
2889
|
expected_semi_after_stmt,
|
|
2894
2890
|
expected_comma_after_field,
|