Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion runtime/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,6 @@ cc_library(
":activation_interface",
":runtime_issue",
"//base:ast",
"//base:data",
"//common:native_type",
"//common:value",
"@com_google_absl//absl/base:core_headers",
Expand Down
6 changes: 3 additions & 3 deletions runtime/runtime.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
#include "absl/status/status.h"
#include "absl/status/statusor.h"
#include "base/ast.h"
#include "base/type_provider.h"
#include "common/native_type.h"
#include "common/type_reflector.h"
#include "common/value.h"
#include "runtime/activation_interface.h"
#include "runtime/runtime_issue.h"
Expand Down Expand Up @@ -80,7 +80,7 @@ class Program {
return Evaluate(arena, /*message_factory=*/nullptr, activation);
}

virtual const TypeProvider& GetTypeProvider() const = 0;
virtual const TypeReflector& GetTypeProvider() const = 0;
};

// Representation for a traceable CEL expression.
Expand Down Expand Up @@ -170,7 +170,7 @@ class Runtime {
CreateTraceableProgram(std::unique_ptr<cel::Ast> ast,
const CreateProgramOptions& options) const = 0;

virtual const TypeProvider& GetTypeProvider() const = 0;
virtual const TypeReflector& GetTypeProvider() const = 0;

virtual const google::protobuf::DescriptorPool* ABSL_NONNULL GetDescriptorPool()
const = 0;
Expand Down