Skip to content

Commit 79b952c

Browse files
l46kokcopybara-github
authored andcommitted
Internal Changes
PiperOrigin-RevId: 789840337
1 parent 78acd97 commit 79b952c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

checker/BUILD.bazel

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ java_library(
3939

4040
java_library(
4141
name = "checker_legacy_environment",
42-
visibility = ["//:internal"],
4342
exports = ["//checker/src/main/java/dev/cel/checker:checker_legacy_environment"],
4443
)
4544

checker/src/main/java/dev/cel/checker/Types.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)