We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf264d4 commit 1773e81Copy full SHA for 1773e81
dsl/types/expr.go
@@ -6,13 +6,13 @@ import "context"
6
type Expr interface {
7
Value
8
9
- // Op returns operator of Expr
+ // Op returns operator
10
Op() Op
11
12
- // Args returns arguments of Expr
+ // Args returns arguments
13
Args() []Value
14
15
- // RetType returns return type of Expr
+ // RetType returns return type
16
RetType() Type
17
}
18
dsl/types/op.go
@@ -2,7 +2,7 @@ package types
2
3
import "context"
4
5
-// Op is an operation of JSON DSL
+// Op is an operator of JSON DSL
type Op interface {
// String returns function name
String() string
0 commit comments