save code

This commit is contained in:
白茶清欢 2022-07-05 16:36:58 +08:00
parent bd27b2d5f5
commit 5f1a779a26

View File

@ -13,10 +13,21 @@ package filter
//
// Date : 14:33 2022/7/5
func NewSyntax(jsonData string) *syntax {
return &syntax{}
return &syntax{
lexicalInstance: NewLexical(jsonData),
}
}
type syntax struct {
// 词法分
// 词法分析实例
lexicalInstance *lexical
}
// Parse 构建语法树
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 16:35 2022/7/5
func (s *syntax) Parse() error {
return nil
}