Parse table literals

This commit is contained in:
Joscha 2022-11-17 18:20:44 +01:00
parent 7f0f886fb7
commit 5b24bd7b79
2 changed files with 42 additions and 15 deletions

View file

@ -27,12 +27,6 @@ pub enum TableLitElem {
/// `foo: a`
Named(Ident, Box<Expr>),
/// ```text
/// # foo
/// # bar
/// ```
BlockString(Vec<String>),
}
/// `'{ a, foo: b }`