vektah -> oec to make it self-contained
This commit is contained in:
parent
ef954d857c
commit
7c62ed1a6b
@ -3,7 +3,7 @@ package calc
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
. "github.com/vektah/goparsify"
|
||||
. "github.com/oec/goparsify"
|
||||
)
|
||||
|
||||
var (
|
||||
|
10
go.mod
Normal file
10
go.mod
Normal file
@ -0,0 +1,10 @@
|
||||
module github.com/oec/goparsify
|
||||
|
||||
go 1.12
|
||||
|
||||
require (
|
||||
github.com/davecgh/go-spew v1.1.0 // indirect
|
||||
github.com/pmezard/go-difflib v1.0.0 // indirect
|
||||
github.com/prataprc/goparsec v0.0.0-20170801142144-82de4f9400c2
|
||||
github.com/stretchr/testify v1.1.4
|
||||
)
|
10
go.sum
Normal file
10
go.sum
Normal file
@ -0,0 +1,10 @@
|
||||
github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8=
|
||||
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
||||
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
||||
github.com/prataprc/goparsec v0.0.0-20170801142144-82de4f9400c2 h1:JBQTPu1dlxC7Mp/lbF8WQMH206np5ZJYFbVyfjF9HL0=
|
||||
github.com/prataprc/goparsec v0.0.0-20170801142144-82de4f9400c2/go.mod h1:YbpxZqbf10o5u96/iDpcfDQmbIOTX/iNCH/yBByTfaM=
|
||||
github.com/stretchr/testify v1.1.4 h1:ToftOQTytwshuOSj6bDSolVUa3GINfJP/fg3OkkOzQQ=
|
||||
github.com/stretchr/testify v1.1.4/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
|
||||
github.com/vektah/goparsify v0.0.0-20180611020250-3e20a3b9244a h1:kjtLFYYtOh6EJz4svAJjY4apt9SJFQxe23e0mzTnlng=
|
||||
github.com/vektah/goparsify v0.0.0-20180611020250-3e20a3b9244a/go.mod h1:DSfslQMj3gv774kof/dg5pwh62XUjimkRBoF2DgdyaY=
|
@ -1,7 +1,7 @@
|
||||
package html
|
||||
|
||||
import (
|
||||
. "github.com/vektah/goparsify"
|
||||
. "github.com/oec/goparsify"
|
||||
)
|
||||
|
||||
func parse(input string) (result interface{}, err error) {
|
||||
|
@ -4,8 +4,8 @@ import (
|
||||
"os"
|
||||
"testing"
|
||||
|
||||
"github.com/oec/goparsify"
|
||||
"github.com/stretchr/testify/require"
|
||||
"github.com/vektah/goparsify"
|
||||
)
|
||||
|
||||
func TestParse(t *testing.T) {
|
||||
|
@ -1,7 +1,7 @@
|
||||
package json
|
||||
|
||||
import (
|
||||
. "github.com/vektah/goparsify"
|
||||
. "github.com/oec/goparsify"
|
||||
)
|
||||
|
||||
var (
|
||||
|
@ -6,9 +6,9 @@ import (
|
||||
|
||||
"os"
|
||||
|
||||
"github.com/oec/goparsify"
|
||||
parsecJson "github.com/prataprc/goparsec/json"
|
||||
"github.com/stretchr/testify/require"
|
||||
"github.com/vektah/goparsify"
|
||||
)
|
||||
|
||||
func TestUnmarshal(t *testing.T) {
|
||||
|
@ -7,8 +7,8 @@ import (
|
||||
"runtime"
|
||||
"runtime/pprof"
|
||||
|
||||
"github.com/vektah/goparsify"
|
||||
"github.com/vektah/goparsify/json"
|
||||
"github.com/oec/goparsify"
|
||||
"github.com/oec/goparsify/json"
|
||||
)
|
||||
|
||||
var cpuprofile = flag.String("cpuprofile", "", "write cpu profile to file")
|
||||
|
Loading…
Reference in New Issue
Block a user