Create a verbatim literal starting at the given position.
(c: char, start: usize)
| 2371 | |
| 2372 | /// Create a verbatim literal starting at the given position. |
| 2373 | fn lit(c: char, start: usize) -> Ast { |
| 2374 | lit_with(c, span(start..start + c.len_utf8())) |
| 2375 | } |
| 2376 | |
| 2377 | /// Create a punctuation literal starting at the given position. |
| 2378 | fn punct_lit(c: char, span: Span) -> Ast { |