|
|
@@ -0,0 +1,146 @@
|
|
|
+package lexer
|
|
|
+
|
|
|
+import "github/runnignwater/monkey/token"
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Author: simon
|
|
|
+ * @Author: ynwdlxm@163.com
|
|
|
+ * @Date: 2022/10/2 上午11:07
|
|
|
+ * @Desc: ASCII 码
|
|
|
+ */
|
|
|
+
|
|
|
+type Lexer struct {
|
|
|
+ input string
|
|
|
+ position int // current position in input (points to current char)
|
|
|
+ readPosition int // current reading position in input (after current char)
|
|
|
+ ch byte // current char under examination
|
|
|
+}
|
|
|
+
|
|
|
+func New(input string) *Lexer {
|
|
|
+ l := &Lexer{input: input}
|
|
|
+ l.readChar()
|
|
|
+ return l
|
|
|
+}
|
|
|
+
|
|
|
+func (l *Lexer) readChar() {
|
|
|
+ if l.readPosition >= len(l.input) {
|
|
|
+ l.ch = 0
|
|
|
+ } else {
|
|
|
+ l.ch = l.input[l.readPosition]
|
|
|
+ }
|
|
|
+ l.position = l.readPosition
|
|
|
+ l.readPosition += 1
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * Only peek ahead in the input
|
|
|
+ * and not move around in it
|
|
|
+ */
|
|
|
+func (l *Lexer) peekChar() byte {
|
|
|
+ if l.readPosition >= len(l.input) {
|
|
|
+ return 0
|
|
|
+ } else {
|
|
|
+ return l.input[l.readPosition]
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+func (l *Lexer) readIdentifier() string {
|
|
|
+ position := l.position
|
|
|
+ for isLetter(l.ch) {
|
|
|
+ l.readChar()
|
|
|
+ }
|
|
|
+ return l.input[position:l.position]
|
|
|
+}
|
|
|
+
|
|
|
+func (l *Lexer) readNumber() string {
|
|
|
+ position := l.position
|
|
|
+ for isDigit(l.ch) {
|
|
|
+ l.readChar()
|
|
|
+ }
|
|
|
+ return l.input[position:l.position]
|
|
|
+}
|
|
|
+
|
|
|
+func (l *Lexer) NextToken() token.Token {
|
|
|
+ var tok token.Token
|
|
|
+
|
|
|
+ l.skipWhitespace()
|
|
|
+
|
|
|
+ switch l.ch {
|
|
|
+ case '=':
|
|
|
+ if l.peekChar() == '=' {
|
|
|
+ ch := l.ch
|
|
|
+ l.readChar()
|
|
|
+ tok = token.Token{Type: token.EQ, Literal: string(ch) + string(l.ch)}
|
|
|
+ } else {
|
|
|
+ tok = newToken(token.ASSIGN, l.ch)
|
|
|
+ }
|
|
|
+ case ';':
|
|
|
+ tok = newToken(token.SEMICOLON, l.ch)
|
|
|
+ case '(':
|
|
|
+ tok = newToken(token.LPAREN, l.ch)
|
|
|
+ case ')':
|
|
|
+ tok = newToken(token.RPAREN, l.ch)
|
|
|
+ case ',':
|
|
|
+ tok = newToken(token.COMMA, l.ch)
|
|
|
+ case '+':
|
|
|
+ tok = newToken(token.PLUS, l.ch)
|
|
|
+ case '-':
|
|
|
+ tok = newToken(token.MINUS, l.ch)
|
|
|
+ case '!':
|
|
|
+ if l.peekChar() == '=' {
|
|
|
+ ch := l.ch
|
|
|
+ l.readChar()
|
|
|
+ tok = token.Token{Type: token.NOT_EQ, Literal: string(ch) + string(l.ch)}
|
|
|
+ } else {
|
|
|
+ tok = newToken(token.BANG, l.ch)
|
|
|
+ }
|
|
|
+ case '*':
|
|
|
+ tok = newToken(token.ASTERISK, l.ch)
|
|
|
+ case '/':
|
|
|
+ tok = newToken(token.SLASH, l.ch)
|
|
|
+ case '<':
|
|
|
+ tok = newToken(token.LT, l.ch)
|
|
|
+ case '>':
|
|
|
+ tok = newToken(token.GT, l.ch)
|
|
|
+ case '{':
|
|
|
+ tok = newToken(token.LBRACE, l.ch)
|
|
|
+ case '}':
|
|
|
+ tok = newToken(token.RBRACE, l.ch)
|
|
|
+ case 0:
|
|
|
+ tok.Type = token.EOF
|
|
|
+ tok.Literal = ""
|
|
|
+ default:
|
|
|
+ if isLetter(l.ch) {
|
|
|
+ tok.Literal = l.readIdentifier()
|
|
|
+ tok.Type = token.LookupIdent(tok.Literal)
|
|
|
+ } else if isDigit(l.ch) {
|
|
|
+ tok.Type = token.INT
|
|
|
+ tok.Literal = l.readNumber()
|
|
|
+ } else {
|
|
|
+ tok = newToken(token.ILLEGAL, l.ch)
|
|
|
+ }
|
|
|
+
|
|
|
+ return tok
|
|
|
+ }
|
|
|
+
|
|
|
+ l.readChar()
|
|
|
+ return tok
|
|
|
+}
|
|
|
+
|
|
|
+func (l *Lexer) skipWhitespace() {
|
|
|
+ for l.ch == ' ' || l.ch == '\t' || l.ch == '\n' || l.ch == '\r' {
|
|
|
+ l.readChar()
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+func isDigit(ch byte) bool {
|
|
|
+ return '0' <= ch && ch <= '9'
|
|
|
+}
|
|
|
+
|
|
|
+func isLetter(ch byte) bool {
|
|
|
+ return 'a' <= ch && ch <= 'z' || 'A' <= ch && ch <= 'Z' || ch == '_'
|
|
|
+}
|
|
|
+
|
|
|
+func newToken(tokenType token.TypeToken, ch byte) token.Token {
|
|
|
+ return token.Token{Type: tokenType, Literal: string(ch)}
|
|
|
+}
|