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

Method Jump

eval/eval/jump_step.h:36–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34 void set_jump_offset(int offset) { jump_offset_ = offset; }
35
36 absl::Status Jump(ExecutionFrame* frame) const {
37 if (!jump_offset_.has_value()) {
38 return absl::Status(absl::StatusCode::kInternal, "Jump offset not set");
39 }
40 return frame->JumpTo(jump_offset_.value());
41 }
42
43 private:
44 absl::optional<int> jump_offset_;

Callers

nothing calls this directly

Calls 3

JumpToMethod · 0.80
has_valueMethod · 0.45
valueMethod · 0.45

Tested by

no test coverage detected