->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 ( import (
"fmt" "fmt"
. "github.com/oec/goparsify" . "kesim.org/goparsify"
) )
var ( var (

View File

@ -52,7 +52,7 @@ func GetDefinition() (varName string, location string) {
for more { for more {
frame, more = frames.Next() frame, more = frames.Next()
pkg := getPackageName(frame) 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 continue
} }

View File

@ -11,7 +11,7 @@ import (
"strings" "strings"
"time" "time"
"github.com/oec/goparsify/debug" "kesim.org/goparsify/debug"
) )
var log io.Writer = nil 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 go 1.12
require ( require (
github.com/davecgh/go-spew v1.1.0 // indirect github.com/davecgh/go-spew v1.1.0 // indirect
github.com/pmezard/go-difflib v1.0.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 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/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 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= 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-20180806094145-2600a2a4a410 h1:BZjOxwDguSqFR+Uk9DSlT1SZ9jsDsNVdgoDmEuAhIew=
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/go.mod h1:YbpxZqbf10o5u96/iDpcfDQmbIOTX/iNCH/yBByTfaM=
github.com/stretchr/testify v1.1.4 h1:ToftOQTytwshuOSj6bDSolVUa3GINfJP/fg3OkkOzQQ= github.com/stretchr/testify v1.1.4 h1:ToftOQTytwshuOSj6bDSolVUa3GINfJP/fg3OkkOzQQ=
github.com/stretchr/testify v1.1.4/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= 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 package html
import ( import (
. "github.com/oec/goparsify" . "kesim.org/goparsify"
) )
func parse(input string) (result interface{}, err error) { func parse(input string) (result interface{}, err error) {

View File

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

View File

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

View File

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

View File

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