mirror of
https://github.com/ziglang/zig.git
synced 2026-02-13 12:59:04 +00:00
zig fmt: no space on switch range operator
This commit is contained in:
parent
0bef1f9824
commit
7e900d28be
@ -69,7 +69,7 @@ test "zig fmt: switch cases trailing comma" {
|
||||
\\ switch (x) {
|
||||
\\ 1,2,3 => {},
|
||||
\\ 4,5, => {},
|
||||
\\ 6...8, => {},
|
||||
\\ 6... 8, => {},
|
||||
\\ else => {},
|
||||
\\ }
|
||||
\\}
|
||||
@ -79,7 +79,7 @@ test "zig fmt: switch cases trailing comma" {
|
||||
\\ 1, 2, 3 => {},
|
||||
\\ 4,
|
||||
\\ 5, => {},
|
||||
\\ 6 ... 8 => {},
|
||||
\\ 6...8 => {},
|
||||
\\ else => {},
|
||||
\\ }
|
||||
\\}
|
||||
@ -1091,7 +1091,7 @@ test "zig fmt: switch" {
|
||||
\\ 0 => {},
|
||||
\\ 1 => unreachable,
|
||||
\\ 2, 3 => {},
|
||||
\\ 4 ... 7 => {},
|
||||
\\ 4...7 => {},
|
||||
\\ 1 + 4 * 3 + 22 => {},
|
||||
\\ else => {
|
||||
\\ const a = 1;
|
||||
|
||||
@ -244,7 +244,7 @@ fn renderExpression(allocator: &mem.Allocator, stream: var, tree: &ast.Tree, ind
|
||||
|
||||
const op_token = tree.tokens.at(infix_op_node.op_token);
|
||||
const op_space = switch (infix_op_node.op) {
|
||||
ast.Node.InfixOp.Op.Period, ast.Node.InfixOp.Op.ErrorUnion => Space.None,
|
||||
ast.Node.InfixOp.Op.Period, ast.Node.InfixOp.Op.ErrorUnion, ast.Node.InfixOp.Op.Range => Space.None,
|
||||
else => Space.Space,
|
||||
};
|
||||
try renderExpression(allocator, stream, tree, indent, infix_op_node.lhs, op_space);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user