@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/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,