词法分析树增加String()方法

This commit is contained in:
2022-07-05 14:42:43 +08:00
parent 6a3548766d
commit 81085d9477
3 changed files with 33 additions and 10 deletions

View File

@ -6,3 +6,15 @@
//
// Date : 2022-07-04 17:53
package filter
// NewSyntax 构建JSON语法树
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 14:33 2022/7/5
func NewSyntax(lexical []*lexicalNode) *syntax {
return &syntax{}
}
type syntax struct {
}