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 675f100 commit a557490Copy full SHA for a557490
vm/runtime/runtime.go
@@ -10,13 +10,10 @@ import (
10
"github.com/expr-lang/expr/internal/deref"
11
)
12
13
-// Proxy is an interface that allows intercepting object property read and write operations.
+// Proxy is an interface that allows intercepting object property access.
14
type Proxy interface {
15
// GetProperty returns the value of the property with the given key.
16
GetProperty(key any) (any, bool)
17
-
18
- // SetProperty sets the value of the property with the given key.
19
- SetProperty(key, value any)
20
}
21
22
func Fetch(from, i any) any {
0 commit comments