mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-23 08:48:03 +00:00
chore: remove unnecessary lines of code
This commit is contained in:
parent
91caad181a
commit
d4d785a527
1 changed files with 2 additions and 5 deletions
|
|
@ -1682,11 +1682,8 @@ fn parseQualificationChain(self: *Parser) std.mem.Allocator.Error!QualificationR
|
|||
std.debug.assert(self.peek() == .UpperIdent or self.peek() == .LowerIdent);
|
||||
|
||||
const scratch_top = self.store.scratchTokenTop();
|
||||
var final_token = self.pos;
|
||||
var is_upper = false;
|
||||
|
||||
final_token = self.pos; // Capture position of the identifier
|
||||
is_upper = true;
|
||||
var final_token = self.pos; // Capture position of the identifier
|
||||
var is_upper = true;
|
||||
|
||||
// Check if there's a qualification chain by looking ahead
|
||||
const saved_pos = self.pos;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue