34 lines
591 B
Go
34 lines
591 B
Go
// Package filter ...
|
|
//
|
|
// Description : 语法分析
|
|
//
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
//
|
|
// Date : 2022-07-04 17:53
|
|
package filter
|
|
|
|
// NewSyntax 构建JSON语法树
|
|
//
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
//
|
|
// Date : 14:33 2022/7/5
|
|
func NewSyntax(jsonData string) *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
|
|
}
|