From 768b4c2e6baa54527b76dc7cc03eae04f43f2a0c Mon Sep 17 00:00:00 2001 From: Corey Lin <514971757@qq.com> Date: Thu, 14 Mar 2019 17:35:55 +0800 Subject: asm: remove unused parameter for function Lex (#18058) --- core/asm/lex_test.go | 2 +- core/asm/lexer.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'core') diff --git a/core/asm/lex_test.go b/core/asm/lex_test.go index e6901d4e3..16e0ad458 100644 --- a/core/asm/lex_test.go +++ b/core/asm/lex_test.go @@ -22,7 +22,7 @@ import ( ) func lexAll(src string) []token { - ch := Lex("test.asm", []byte(src), false) + ch := Lex([]byte(src), false) var tokens []token for i := range ch { diff --git a/core/asm/lexer.go b/core/asm/lexer.go index 91caeb27b..00526242e 100644 --- a/core/asm/lexer.go +++ b/core/asm/lexer.go @@ -95,7 +95,7 @@ type lexer struct { // lex lexes the program by name with the given source. It returns a // channel on which the tokens are delivered. -func Lex(name string, source []byte, debug bool) <-chan token { +func Lex(source []byte, debug bool) <-chan token { ch := make(chan token) l := &lexer{ input: string(source), -- cgit v1.2.3