File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
src/main/java/dev/cel/checker Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,6 @@ java_library(
3939
4040java_library (
4141 name = "checker_legacy_environment" ,
42- visibility = ["//:internal" ],
4342 exports = ["//checker/src/main/java/dev/cel/checker:checker_legacy_environment" ],
4443)
4544
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ public final class Types {
8383 public static final Type DURATION = create (WellKnownType .DURATION );
8484
8585 /** Map of well-known proto messages and their CEL {@code Type} equivalents. */
86- static final ImmutableMap <String , Type > WELL_KNOWN_TYPE_MAP =
86+ public static final ImmutableMap <String , Type > WELL_KNOWN_TYPE_MAP =
8787 ImmutableMap .<String , Type >builder ()
8888 .put (DOUBLE_WRAPPER_MESSAGE , Types .createWrapper (Types .DOUBLE ))
8989 .put (FLOAT_WRAPPER_MESSAGE , Types .createWrapper (Types .DOUBLE ))
@@ -103,7 +103,7 @@ public final class Types {
103103 .buildOrThrow ();
104104
105105 /** Map of primitive proto types and their CEL {@code Type} equivalents. */
106- static final ImmutableMap <FieldDescriptorProto .Type , Type > PRIMITIVE_TYPE_MAP =
106+ public static final ImmutableMap <FieldDescriptorProto .Type , Type > PRIMITIVE_TYPE_MAP =
107107 ImmutableMap .<FieldDescriptorProto .Type , Type >builder ()
108108 .put (FieldDescriptorProto .Type .TYPE_DOUBLE , Types .DOUBLE )
109109 .put (FieldDescriptorProto .Type .TYPE_FLOAT , Types .DOUBLE )
You can’t perform that action at this time.
0 commit comments