From 42f28ab8e374137fe3f5d25424489d879d4724f8 Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Wed, 21 Jun 2017 19:06:17 -0700 Subject: Updating server dependancies (#6712) --- vendor/github.com/pelletier/go-toml/query/lexer.go | 8 ++++---- vendor/github.com/pelletier/go-toml/query/lexer_test.go | 2 +- vendor/github.com/pelletier/go-toml/query/match_test.go | 2 +- vendor/github.com/pelletier/go-toml/query/parser_test.go | 2 +- vendor/github.com/pelletier/go-toml/query/tokens.go | 7 +++---- 5 files changed, 10 insertions(+), 11 deletions(-) (limited to 'vendor/github.com/pelletier/go-toml/query') diff --git a/vendor/github.com/pelletier/go-toml/query/lexer.go b/vendor/github.com/pelletier/go-toml/query/lexer.go index 6336d52cd..2dc319408 100644 --- a/vendor/github.com/pelletier/go-toml/query/lexer.go +++ b/vendor/github.com/pelletier/go-toml/query/lexer.go @@ -7,10 +7,10 @@ package query import ( "fmt" + "github.com/pelletier/go-toml" "strconv" "strings" "unicode/utf8" - "github.com/pelletier/go-toml" ) // Lexer state function @@ -55,7 +55,7 @@ func (l *queryLexer) nextStart() { func (l *queryLexer) emit(t tokenType) { l.tokens <- token{ - Position: toml.Position{Line:l.line, Col:l.col}, + Position: toml.Position{Line: l.line, Col: l.col}, typ: t, val: l.input[l.start:l.pos], } @@ -64,7 +64,7 @@ func (l *queryLexer) emit(t tokenType) { func (l *queryLexer) emitWithValue(t tokenType, value string) { l.tokens <- token{ - Position: toml.Position{Line:l.line, Col:l.col}, + Position: toml.Position{Line: l.line, Col: l.col}, typ: t, val: value, } @@ -92,7 +92,7 @@ func (l *queryLexer) backup() { func (l *queryLexer) errorf(format string, args ...interface{}) queryLexStateFn { l.tokens <- token{ - Position: toml.Position{Line:l.line, Col:l.col}, + Position: toml.Position{Line: l.line, Col: l.col}, typ: tokenError, val: fmt.Sprintf(format, args...), } diff --git a/vendor/github.com/pelletier/go-toml/query/lexer_test.go b/vendor/github.com/pelletier/go-toml/query/lexer_test.go index e2b733a34..8ce0501fe 100644 --- a/vendor/github.com/pelletier/go-toml/query/lexer_test.go +++ b/vendor/github.com/pelletier/go-toml/query/lexer_test.go @@ -1,8 +1,8 @@ package query import ( - "testing" "github.com/pelletier/go-toml" + "testing" ) func testQLFlow(t *testing.T, input string, expectedFlow []token) { diff --git a/vendor/github.com/pelletier/go-toml/query/match_test.go b/vendor/github.com/pelletier/go-toml/query/match_test.go index 567b11cd7..429b8f6b9 100644 --- a/vendor/github.com/pelletier/go-toml/query/match_test.go +++ b/vendor/github.com/pelletier/go-toml/query/match_test.go @@ -2,8 +2,8 @@ package query import ( "fmt" - "testing" "github.com/pelletier/go-toml" + "testing" ) // dump path tree to a string diff --git a/vendor/github.com/pelletier/go-toml/query/parser_test.go b/vendor/github.com/pelletier/go-toml/query/parser_test.go index b1d0a3ece..473896a02 100644 --- a/vendor/github.com/pelletier/go-toml/query/parser_test.go +++ b/vendor/github.com/pelletier/go-toml/query/parser_test.go @@ -2,12 +2,12 @@ package query import ( "fmt" + "github.com/pelletier/go-toml" "io/ioutil" "sort" "strings" "testing" "time" - "github.com/pelletier/go-toml" ) type queryTestNode struct { diff --git a/vendor/github.com/pelletier/go-toml/query/tokens.go b/vendor/github.com/pelletier/go-toml/query/tokens.go index 429e289ab..9ae579de2 100644 --- a/vendor/github.com/pelletier/go-toml/query/tokens.go +++ b/vendor/github.com/pelletier/go-toml/query/tokens.go @@ -1,10 +1,10 @@ package query import ( -"fmt" -"strconv" -"unicode" + "fmt" "github.com/pelletier/go-toml" + "strconv" + "unicode" ) // Define tokens @@ -104,4 +104,3 @@ func isHexDigit(r rune) bool { (r >= 'a' && r <= 'f') || (r >= 'A' && r <= 'F') } - -- cgit v1.2.3-1-g7c22