Hello, does anyone know if it's possible to use logos to tokenize template literals such as this:
`this {true} hey {false}`
[
TemplateStart,
TemplateInterp { start: curly_brace_offset_from_source },
True, // this would be the regular tokenizers
TemplateInterp { start: curly_brace_offset_from_source },
False,
TemplateEnd { start: offset_from_last_interpolation_close_brace },
]