Skip to content

Commit

Permalink
delete unused function
Browse files Browse the repository at this point in the history
  • Loading branch information
JunNishimura committed Sep 22, 2024
1 parent 8ad3a49 commit 66e1181
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions lexer/lexer.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,3 @@ func (l *Lexer) readString() string {
}
return l.input[startPos:l.curPos]
}

func (l *Lexer) peekChar() byte {
if l.nextPos >= len(l.input) {
return 0
}
return l.input[l.nextPos]
}

0 comments on commit 66e1181

Please sign in to comment.