go fmt ./...

This commit is contained in:
Brian Picciano 2014-10-20 21:58:09 -04:00
parent b307273223
commit 4bd9c94f82
8 changed files with 44 additions and 44 deletions

View File

@ -13,6 +13,7 @@ import (
)
type TokenType int
const (
BareString TokenType = iota
QuotedString

View File

@ -5,8 +5,8 @@ package parse
import (
"bytes"
"io"
"fmt"
"io"
"strconv"
"unsafe"
@ -118,7 +118,6 @@ func (p *Parser) parseToken(tok *lex.Token) (types.Elem, error) {
}
}
func (p *Parser) readUntil(closer string) ([]types.Elem, error) {
series := make([]types.Elem, 0, 4)
for {