[refactoring] update Token structure

This commit is contained in:
Vadym Slizov
2020-12-08 01:23:48 +02:00
parent 20a42da7c9
commit 8064d940f0
6 changed files with 617 additions and 648 deletions

View File

@@ -113,9 +113,6 @@ func (v *Dump) printToken(key string, t *token.Token) {
v.printIndent(v.indent + 1)
v.print("Value: []byte(" + strconv.Quote(string(t.Value)) + "),\n")
v.printIndent(v.indent + 1)
v.print("Skipped: []byte(" + strconv.Quote(string(t.Skipped)) + "),\n")
v.printIndent(v.indent)
v.print("},\n")
}