Skip to content

Commit 3072b85

Browse files
committed
Move to expr-lang
1 parent e8ffc6b commit 3072b85

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

patchers/value/bench_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55

66
"github.com/stretchr/testify/require"
77

8-
"github.com/antonmedv/expr"
9-
"github.com/antonmedv/expr/vm"
8+
"github.com/expr-lang/expr"
9+
"github.com/expr-lang/expr/vm"
1010
)
1111

1212
func Benchmark_valueAdd(b *testing.B) {

patchers/value/value.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
//
55
// import (
66
// "fmt"
7-
// "github.com/antonmedv/expr/patchers/value"
8-
// "github.com/antonmedv/expr"
7+
// "github.com/expr-lang/expr/patchers/value"
8+
// "github.com/expr-lang/expr"
99
// )
1010
//
1111
// type customInt struct {
@@ -47,9 +47,9 @@ import (
4747
"reflect"
4848
"time"
4949

50-
"github.com/antonmedv/expr"
51-
"github.com/antonmedv/expr/ast"
52-
"github.com/antonmedv/expr/conf"
50+
"github.com/expr-lang/expr"
51+
"github.com/expr-lang/expr/ast"
52+
"github.com/expr-lang/expr/conf"
5353
)
5454

5555
// Patcher is an expr.Option that both patches the program and adds the `$patcher_value_getter` function.

patchers/value/value_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55

66
"github.com/stretchr/testify/require"
77

8-
"github.com/antonmedv/expr"
9-
"github.com/antonmedv/expr/vm"
8+
"github.com/expr-lang/expr"
9+
"github.com/expr-lang/expr/vm"
1010
)
1111

1212
type customInt struct {

0 commit comments

Comments
 (0)