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

Function CreateBoolCheckJumpStep

eval/eval/jump_step.cc:142–145  ·  view source on GitHub ↗

Factory method for Conditional Jump step. Conditional Jump requires a value to sit on the stack. If this value is an error or unknown, a jump is performed.

Source from the content-addressed store, hash-verified

140// Conditional Jump requires a value to sit on the stack.
141// If this value is an error or unknown, a jump is performed.
142std::unique_ptr<JumpStepBase> CreateBoolCheckJumpStep(
143 absl::optional<int> jump_offset, int64_t expr_id) {
144 return std::make_unique<BoolCheckJumpStep>(jump_offset, expr_id);
145}
146
147} // namespace google::api::expr::runtime

Callers 1

PostVisitArgMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected