zclwrite: standardize on TokenSeq for all node parts

We'll use TokenSeq for everything, including sequences we expect to
contain only one token, mainly for consistency but also so that our local
"parser" doesn't need to care about whether the main parser is returning
one token or many.
This commit is contained in:
Martin Atkins 2017-06-07 07:41:39 -07:00
parent ed2a739cdb
commit 33c3d6e5ad

View File

@ -75,11 +75,11 @@ type Attribute struct {
AllTokens *TokenSeq AllTokens *TokenSeq
LeadCommentTokens *TokenSeq LeadCommentTokens *TokenSeq
NameToken *Token NameTokens *TokenSeq
EqualsToken *Token EqualsTokens *TokenSeq
Value *Expression Value *Expression
LineCommentTokens *TokenSeq LineCommentTokens *TokenSeq
EOLToken *Token EOLTokens *TokenSeq
} }
func (a *Attribute) walkChildNodes(w internalWalkFunc) { func (a *Attribute) walkChildNodes(w internalWalkFunc) {
@ -90,13 +90,13 @@ type Block struct {
AllTokens *TokenSeq AllTokens *TokenSeq
LeadCommentTokens *TokenSeq LeadCommentTokens *TokenSeq
TypeToken *Token TypeTokens *TokenSeq
LabelTokens []*TokenSeq LabelTokens []*TokenSeq
LabelTokensFlat *TokenSeq LabelTokensFlat *TokenSeq
OBraceToken *Token OBraceTokens *TokenSeq
Body *Body Body *Body
CBraceToken *Token CBraceTokens *TokenSeq
EOLToken *Token EOLTokens *TokenSeq
} }
func (n *Block) walkChildNodes(w internalWalkFunc) { func (n *Block) walkChildNodes(w internalWalkFunc) {