Skip to content

Commit

Permalink
Parser: Remove some unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
ryangjchandler committed Dec 18, 2024
1 parent adbb91e commit e1de4db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/parser/src/internal/data_type.rs
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ impl<'a> Parser<'a> {
self.next();
self.skip_doc_eol();

let is = self.skip(TokenKind::PhpDocIs);
self.skip(TokenKind::PhpDocIs);

self.skip_doc_eol();

Expand All @@ -404,7 +404,7 @@ impl<'a> Parser<'a> {

self.skip_doc_eol();

let question = self.skip(TokenKind::Question);
self.skip(TokenKind::Question);

self.skip_doc_eol();

Expand Down

0 comments on commit e1de4db

Please sign in to comment.