Create a concatenation with the given range.
(range: Range<usize>, asts: Vec<Ast>)
| 2394 | |
| 2395 | /// Create a concatenation with the given range. |
| 2396 | fn concat(range: Range<usize>, asts: Vec<Ast>) -> Ast { |
| 2397 | concat_with(span(range), asts) |
| 2398 | } |
| 2399 | |
| 2400 | /// Create a concatenation with the given span. |
| 2401 | fn concat_with(span: Span, asts: Vec<Ast>) -> Ast { |
no test coverage detected