Skip to content

Commit

Permalink
Correctly parse yield import(..) expressions
Browse files Browse the repository at this point in the history
  • Loading branch information
jedel1043 committed Jun 6, 2023
1 parent 6879c59 commit 08bd08f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion boa_parser/src/parser/expression/assignment/yield.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ where
| Keyword::Function
| Keyword::Class
| Keyword::Async
| Keyword::Super,
| Keyword::Super
| Keyword::Import,
_,
))
| TokenKind::BooleanLiteral(_)
Expand Down

0 comments on commit 08bd08f

Please sign in to comment.