We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc2961f commit 790e28fCopy full SHA for 790e28f
2 files changed
runtime/BUILD.bazel
@@ -65,6 +65,11 @@ java_library(
65
exports = ["//runtime/src/main/java/dev/cel/runtime:late_function_binding"],
66
)
67
68
+java_library(
69
+ name = "function_resolver",
70
+ exports = ["//runtime/src/main/java/dev/cel/runtime:function_resolver"],
71
+)
72
+
73
cel_android_library(
74
name = "late_function_binding_android",
75
exports = ["//runtime/src/main/java/dev/cel/runtime:late_function_binding_android"],
runtime/src/test/resources/jsonValueTypes.baseline
@@ -148,5 +148,11 @@ bindings: {x=single_struct {
148
}
149
150
151
-result: {hello=val}
152
-
+result: struct_value {
+ fields {
153
+ key: "hello"
154
+ value {
155
+ string_value: "val"
156
+ }
157
158
+}
0 commit comments