save code
This commit is contained in:
parent
bd27b2d5f5
commit
5f1a779a26
15
syntax.go
15
syntax.go
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user