| ... | ... | @@ -213,13 +213,13 @@ fn renderExpression(allocator: &mem.Allocator, stream: var, tree: &ast.Tree, ind |
| 213 | 213 | const async_attr = @fieldParentPtr(ast.Node.AsyncAttribute, "base", base); |
| 214 | 214 | |
| 215 | 215 | if (async_attr.allocator_type) |allocator_type| { |
| 216 | | try renderToken(tree, stream, async_attr.async_token, indent, start_col, Space.None); |
| 216 | try renderToken(tree, stream, async_attr.async_token, indent, start_col, Space.None); // async |
| 217 | 217 | |
| 218 | | try renderToken(tree, stream, tree.nextToken(async_attr.async_token), indent, start_col, Space.None); |
| 219 | | try renderExpression(allocator, stream, tree, indent, start_col, allocator_type, Space.None); |
| 220 | | return renderToken(tree, stream, tree.nextToken(allocator_type.lastToken()), indent, start_col, space); |
| 218 | try renderToken(tree, stream, tree.nextToken(async_attr.async_token), indent, start_col, Space.None); // < |
| 219 | try renderExpression(allocator, stream, tree, indent, start_col, allocator_type, Space.None); // allocator |
| 220 | return renderToken(tree, stream, tree.nextToken(allocator_type.lastToken()), indent, start_col, space); // > |
| 221 | 221 | } else { |
| 222 | | return renderToken(tree, stream, async_attr.async_token, indent, start_col, space); |
| 222 | return renderToken(tree, stream, async_attr.async_token, indent, start_col, space); // async |
| 223 | 223 | } |
| 224 | 224 | }, |
| 225 | 225 | |