Get it all to compile!

This commit is contained in:
Eric Correia 2021-10-02 13:48:07 -04:00
parent 555478cdf0
commit 8272ea876f
21 changed files with 217 additions and 21 deletions

View file

@ -92,7 +92,7 @@ pub enum Expr<'a> {
/// e.g. `.foo`
AccessorFunction(&'a str),
/// eg 'b'
SingleQuote(char),
SingleQuote(&'a str),
// Collection Literals
List {
@ -360,7 +360,7 @@ pub enum Pattern<'a> {
FloatLiteral(&'a str),
StrLiteral(StrLiteral<'a>),
Underscore(&'a str),
SingleQuote(char),
SingleQuote(&'a str),
// Space
SpaceBefore(&'a Pattern<'a>, &'a [CommentOrNewline<'a>]),