mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-19 03:20:14 +00:00
Refactor BadOperator to take a &str rather than &[u8]
This commit is contained in:
parent
c7b826e3d4
commit
96e8916594
3 changed files with 49 additions and 63 deletions
|
@ -267,7 +267,7 @@ pub enum EExpr<'a> {
|
|||
Access(Row, Col),
|
||||
UnaryNot(Row, Col),
|
||||
UnaryNegate(Row, Col),
|
||||
BadOperator(&'a [u8], Row, Col),
|
||||
BadOperator(&'a str, Row, Col),
|
||||
|
||||
DefMissingFinalExpr(Row, Col),
|
||||
DefMissingFinalExpr2(&'a EExpr<'a>, Row, Col),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue