Update go dependencies
This commit is contained in:
parent
a858c549d9
commit
f3bde94d68
643 changed files with 14296 additions and 19354 deletions
5
vendor/golang.org/x/text/unicode/cldr/base.go
generated
vendored
5
vendor/golang.org/x/text/unicode/cldr/base.go
generated
vendored
|
|
@ -62,6 +62,11 @@ func (e *Common) Default() string {
|
|||
return ""
|
||||
}
|
||||
|
||||
// Element returns the XML element name.
|
||||
func (e *Common) Element() string {
|
||||
return e.name
|
||||
}
|
||||
|
||||
// GetCommon returns e. It is provided such that Common implements Elem.
|
||||
func (e *Common) GetCommon() *Common {
|
||||
return e
|
||||
|
|
|
|||
2
vendor/golang.org/x/text/unicode/cldr/decode.go
generated
vendored
2
vendor/golang.org/x/text/unicode/cldr/decode.go
generated
vendored
|
|
@ -47,7 +47,7 @@ type Loader interface {
|
|||
Reader(i int) (io.ReadCloser, error)
|
||||
}
|
||||
|
||||
var fileRe = regexp.MustCompile(".*/(.*)/(.*)\\.xml")
|
||||
var fileRe = regexp.MustCompile(`.*[/\\](.*)[/\\](.*)\.xml`)
|
||||
|
||||
// Decode loads and decodes the files represented by l.
|
||||
func (d *Decoder) Decode(l Loader) (cldr *CLDR, err error) {
|
||||
|
|
|
|||
14
vendor/golang.org/x/text/unicode/norm/norm_test.go
generated
vendored
14
vendor/golang.org/x/text/unicode/norm/norm_test.go
generated
vendored
|
|
@ -1,14 +0,0 @@
|
|||
// Copyright 2011 The Go Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package norm_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestPlaceHolder(t *testing.T) {
|
||||
// Does nothing, just allows the Makefile to be canonical
|
||||
// while waiting for the package itself to be written.
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue