| ... | ... | @@ -1433,8 +1433,8 @@ pub fn containerField(tree: Ast, node: Node.Index) full.ContainerField { |
| 1433 | 1433 | return tree.fullContainerFieldComponents(.{ |
| 1434 | 1434 | .main_token = main_token, |
| 1435 | 1435 | .type_expr = data.lhs, |
| 1436 | | .value_expr = extra.value_expr, |
| 1437 | 1436 | .align_expr = extra.align_expr, |
| 1437 | .value_expr = extra.value_expr, |
| 1438 | 1438 | .tuple_like = tree.tokens.items(.tag)[main_token] != .identifier or |
| 1439 | 1439 | tree.tokens.items(.tag)[main_token + 1] != .colon, |
| 1440 | 1440 | }); |
| ... | ... | @@ -1447,8 +1447,8 @@ pub fn containerFieldInit(tree: Ast, node: Node.Index) full.ContainerField { |
| 1447 | 1447 | return tree.fullContainerFieldComponents(.{ |
| 1448 | 1448 | .main_token = main_token, |
| 1449 | 1449 | .type_expr = data.lhs, |
| 1450 | | .value_expr = data.rhs, |
| 1451 | 1450 | .align_expr = 0, |
| 1451 | .value_expr = data.rhs, |
| 1452 | 1452 | .tuple_like = tree.tokens.items(.tag)[main_token] != .identifier or |
| 1453 | 1453 | tree.tokens.items(.tag)[main_token + 1] != .colon, |
| 1454 | 1454 | }); |
| ... | ... | @@ -1461,8 +1461,8 @@ pub fn containerFieldAlign(tree: Ast, node: Node.Index) full.ContainerField { |
| 1461 | 1461 | return tree.fullContainerFieldComponents(.{ |
| 1462 | 1462 | .main_token = main_token, |
| 1463 | 1463 | .type_expr = data.lhs, |
| 1464 | | .value_expr = 0, |
| 1465 | 1464 | .align_expr = data.rhs, |
| 1465 | .value_expr = 0, |
| 1466 | 1466 | .tuple_like = tree.tokens.items(.tag)[main_token] != .identifier or |
| 1467 | 1467 | tree.tokens.items(.tag)[main_token + 1] != .colon, |
| 1468 | 1468 | }); |
| ... | ... | @@ -2565,8 +2565,8 @@ pub const full = struct { |
| 2565 | 2565 | pub const Components = struct { |
| 2566 | 2566 | main_token: TokenIndex, |
| 2567 | 2567 | type_expr: Node.Index, |
| 2568 | | value_expr: Node.Index, |
| 2569 | 2568 | align_expr: Node.Index, |
| 2569 | value_expr: Node.Index, |
| 2570 | 2570 | tuple_like: bool, |
| 2571 | 2571 | }; |
| 2572 | 2572 | |
| ... | ... | @@ -3427,8 +3427,8 @@ pub const Node = struct { |
| 3427 | 3427 | }; |
| 3428 | 3428 | |
| 3429 | 3429 | pub const ArrayTypeSentinel = struct { |
| 3430 | | elem_type: Index, |
| 3431 | 3430 | sentinel: Index, |
| 3431 | elem_type: Index, |
| 3432 | 3432 | }; |
| 3433 | 3433 | |
| 3434 | 3434 | pub const PtrType = struct { |
| ... | ... | @@ -3458,8 +3458,8 @@ pub const Node = struct { |
| 3458 | 3458 | }; |
| 3459 | 3459 | |
| 3460 | 3460 | pub const ContainerField = struct { |
| 3461 | | value_expr: Index, |
| 3462 | 3461 | align_expr: Index, |
| 3462 | value_expr: Index, |
| 3463 | 3463 | }; |
| 3464 | 3464 | |
| 3465 | 3465 | pub const GlobalVarDecl = struct { |