| ... | ... | @@ -3269,13 +3269,13 @@ pub const Node = struct { |
| 3269 | 3269 | /// main_token is the `fn` keyword. |
| 3270 | 3270 | /// extern function declarations use this tag. |
| 3271 | 3271 | fn_proto_multi, |
| 3272 | | /// `fn (a: b) rhs addrspace(e) linksection(f) callconv(g)`. `FnProtoOne[lhs]`. |
| 3272 | /// `fn (a: b) addrspace(e) linksection(f) callconv(g) rhs`. `FnProtoOne[lhs]`. |
| 3273 | 3273 | /// zero or one parameters. |
| 3274 | 3274 | /// anytype and ... parameters are omitted from the AST tree. |
| 3275 | 3275 | /// main_token is the `fn` keyword. |
| 3276 | 3276 | /// extern function declarations use this tag. |
| 3277 | 3277 | fn_proto_one, |
| 3278 | | /// `fn (a: b, c: d) rhs addrspace(e) linksection(f) callconv(g)`. `FnProto[lhs]`. |
| 3278 | /// `fn (a: b, c: d) addrspace(e) linksection(f) callconv(g) rhs`. `FnProto[lhs]`. |
| 3279 | 3279 | /// anytype and ... parameters are omitted from the AST tree. |
| 3280 | 3280 | /// main_token is the `fn` keyword. |
| 3281 | 3281 | /// extern function declarations use this tag. |