[refactoring] update ast structure of "Identifier"

This commit is contained in:
Vadym Slizov
2020-11-20 22:02:36 +02:00
parent 94aa9cf829
commit bf3ae74d56
5 changed files with 2533 additions and 1868 deletions

View File

@@ -75,7 +75,8 @@ func (n *Parameter) Accept(v NodeVisitor) {
// Identifier node
type Identifier struct {
Node
Value []byte
IdentifierTkn *token.Token
Value []byte
}
func (n *Identifier) Accept(v NodeVisitor) {