Parser - Fixed comment
This commit is contained in:
parent
5d1d3bd0a4
commit
c23ce47420
1 changed files with 0 additions and 1 deletions
|
@ -593,7 +593,6 @@ impl Parser {
|
|||
/// primary := "(" expression ")"
|
||||
/// primary := FALSE | TRUE | NIL | STRING | NUMBER
|
||||
/// primary := IDENTIFIER
|
||||
/// primary := call
|
||||
/// ```
|
||||
fn parse_primary(&mut self) -> ParserResult<ast::ExprNode> {
|
||||
if self.expect(&[TokenType::LeftParen]).is_some() {
|
||||
|
|
Loading…
Reference in a new issue