->kesim.org

This commit is contained in:
Özgür Kesim 2021-05-07 21:52:01 +02:00
parent cf289e6474
commit 75b7b13781
10 changed files with 13 additions and 15 deletions

View File

@ -3,7 +3,7 @@ package calc
import (
"fmt"
. "github.com/oec/goparsify"
. "kesim.org/goparsify"
)
var (

View File

@ -52,7 +52,7 @@ func GetDefinition() (varName string, location string) {
for more {
frame, more = frames.Next()
pkg := getPackageName(frame)
if pkg == "github.com/oec/goparsify" || pkg == "github.com/oec/goparsify/debug" {
if pkg == "kesim.org/goparsify" || pkg == "kesim.org/goparsify/debug" {
continue
}

View File

@ -11,7 +11,7 @@ import (
"strings"
"time"
"github.com/oec/goparsify/debug"
"kesim.org/goparsify/debug"
)
var log io.Writer = nil

4
go.mod
View File

@ -1,10 +1,10 @@
module github.com/oec/goparsify
module kesim.org/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/prataprc/goparsec v0.0.0-20180806094145-2600a2a4a410
github.com/stretchr/testify v1.1.4
)

6
go.sum
View File

@ -2,9 +2,7 @@ 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/prataprc/goparsec v0.0.0-20180806094145-2600a2a4a410 h1:BZjOxwDguSqFR+Uk9DSlT1SZ9jsDsNVdgoDmEuAhIew=
github.com/prataprc/goparsec v0.0.0-20180806094145-2600a2a4a410/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=

View File

@ -1,7 +1,7 @@
package html
import (
. "github.com/oec/goparsify"
. "kesim.org/goparsify"
)
func parse(input string) (result interface{}, err error) {

View File

@ -4,8 +4,8 @@ import (
"os"
"testing"
"github.com/oec/goparsify"
"github.com/stretchr/testify/require"
"kesim.org/goparsify"
)
func TestParse(t *testing.T) {

View File

@ -1,7 +1,7 @@
package json
import (
. "github.com/oec/goparsify"
. "kesim.org/goparsify"
)
var (

View File

@ -6,9 +6,9 @@ import (
"os"
"github.com/oec/goparsify"
parsecJson "github.com/prataprc/goparsec/json"
"github.com/stretchr/testify/require"
"kesim.org/goparsify"
)
func TestUnmarshal(t *testing.T) {

View File

@ -7,8 +7,8 @@ import (
"runtime"
"runtime/pprof"
"github.com/oec/goparsify"
"github.com/oec/goparsify/json"
"kesim.org/goparsify"
"kesim.org/goparsify/json"
)
var cpuprofile = flag.String("cpuprofile", "", "write cpu profile to file")