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/lexer.go | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'vendor/github.com/pelletier/go-toml/lexer.go') diff --git a/vendor/github.com/pelletier/go-toml/lexer.go b/vendor/github.com/pelletier/go-toml/lexer.go index 104f3b1f4..db3ab4e54 100644 --- a/vendor/github.com/pelletier/go-toml/lexer.go +++ b/vendor/github.com/pelletier/go-toml/lexer.go @@ -6,6 +6,7 @@ package toml import ( + "bytes" "errors" "fmt" "io" @@ -24,7 +25,7 @@ type tomlLexStateFn func() tomlLexStateFn // Define lexer type tomlLexer struct { input *buffruneio.Reader // Textual source - buffer []rune // Runes composing the current token + buffer bytes.Buffer // Runes composing the current token tokens chan token depth int line int @@ -53,13 +54,13 @@ func (l *tomlLexer) next() rune { r := l.read() if r != eof { - l.buffer = append(l.buffer, r) + l.buffer.WriteRune(r) } return r } func (l *tomlLexer) ignore() { - l.buffer = make([]rune, 0) + l.buffer.Reset() l.line = l.endbufferLine l.col = l.endbufferCol } @@ -85,7 +86,7 @@ func (l *tomlLexer) emitWithValue(t tokenType, value string) { } func (l *tomlLexer) emit(t tokenType) { - l.emitWithValue(t, string(l.buffer)) + l.emitWithValue(t, l.buffer.String()) } func (l *tomlLexer) peek() rune { @@ -536,7 +537,7 @@ func (l *tomlLexer) lexInsideTableArrayKey() tomlLexStateFn { for r := l.peek(); r != eof; r = l.peek() { switch r { case ']': - if len(l.buffer) > 0 { + if l.buffer.Len() > 0 { l.emit(tokenKeyGroupArray) } l.next() @@ -559,7 +560,7 @@ func (l *tomlLexer) lexInsideTableKey() tomlLexStateFn { for r := l.peek(); r != eof; r = l.peek() { switch r { case ']': - if len(l.buffer) > 0 { + if l.buffer.Len() > 0 { l.emit(tokenKeyGroup) } l.next() -- cgit v1.2.3-1-g7c22