增加一个字符是否为关键词的方法

This commit is contained in:
2022-07-04 18:19:04 +08:00
parent bdce4ab6c6
commit f08f75266e
2 changed files with 59 additions and 0 deletions

16
lexical_test.go Normal file
View File

@ -0,0 +1,16 @@
// Package filter ...
//
// Description : filter ...
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 2022-07-04 18:13
package filter
import (
"testing"
)
func Test_parseLexical(t *testing.T) {
parseLexical("{iiiiiiiii}")
}