From 1dcff093b3ca3d575f982e2ca154f9c751e06055 Mon Sep 17 00:00:00 2001 From: Dmitri Plotnikov Date: Mon, 17 Aug 2026 11:46:40 -0700 Subject: [PATCH] Add GetCompilerOptions accessor to cel::Env. PiperOrigin-RevId: 966094202 --- env/env.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/env/env.h b/env/env.h index 9830b67d7..673ab19e4 100644 --- a/env/env.h +++ b/env/env.h @@ -59,6 +59,8 @@ class Env { void SetConfig(const Config& config) { config_ = config; } + CompilerOptions& GetCompilerOptions() { return compiler_options_; } + absl::StatusOr> NewCompilerBuilder(); // Shortcut for NewCompilerBuilder() followed by Build().