-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lexer delimiters completed and tested
- Loading branch information
Showing
2 changed files
with
101 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
package lexer | ||
|
||
import "github.com/54L1m/mil-lang/token" | ||
|
||
type Lexer struct { | ||
input string | ||
position int | ||
readPosition int | ||
ch byte | ||
} | ||
|
||
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 | ||
} | ||
|
||
func (l *Lexer) NextToken() token.Token { | ||
var tok token.Token | ||
|
||
switch l.ch { | ||
case '=': | ||
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.LBRACE, l.ch) | ||
case '}': | ||
tok = newToken(token.RBRACE, l.ch) | ||
case 0: | ||
tok.Literal = "" | ||
tok.Type = token.EOF | ||
} | ||
l.readChar() | ||
return tok | ||
} | ||
|
||
func newToken(tokenType token.TokenType, ch byte) token.Token { | ||
return token.Token{Type: tokenType, Literal: string(ch)} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
package lexer | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/54L1m/mil-lang/token" | ||
) | ||
|
||
func TestNextToken(t *testing.T) { | ||
input := `=+(){},;` | ||
|
||
tests := []struct { | ||
expectedType token.TokenType | ||
expectedLiteral string | ||
}{ | ||
{token.ASSIGN, "="}, | ||
{token.PLUS, "+"}, | ||
{token.LPAREN, "("}, | ||
{token.RPAREN, ")"}, | ||
{token.LBRACE, "{"}, | ||
{token.RBRACE, "}"}, | ||
{token.COMMA, ","}, | ||
{token.SEMICOLON, ";"}, | ||
{token.EOF, ""}, | ||
} | ||
|
||
l := New(input) | ||
|
||
for i, tt := range tests { | ||
tok := l.NextToken() | ||
|
||
if tok.Type != tt.expectedType { | ||
t.Fatalf("tests[%d] - tokentype wrong. expected=%q, got=%q", i, tt.expectedType, tok.Type) | ||
} | ||
|
||
if tok.Literal != tt.expectedLiteral { | ||
t.Fatalf("tests[%d] - literal wrong. expected=%q, got=%q", i, tt.expectedLiteral, tok.Literal) | ||
} | ||
} | ||
|
||
} |