MCPcopy Create free account
hub / github.com/cel-expr/cel-cpp / Evaluate

Method Evaluate

eval/eval/compiler_constant_step.cc:25–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23using ::cel::Value;
24
25absl::Status DirectCompilerConstantStep::Evaluate(
26 ExecutionFrameBase& frame, Value& result, AttributeTrail& attribute) const {
27 result = value_;
28 return absl::OkStatus();
29}
30
31absl::Status CompilerConstantStep::Evaluate(ExecutionFrame* frame) const {
32 frame->value_stack().Push(value_);

Callers

nothing calls this directly

Calls 1

PushMethod · 0.45

Tested by

no test coverage detected