MCPcopy Create free account
hub / github.com/cel-expr/cel-go / loadContainerOption

Method loadContainerOption

repl/evaluator.go:1179–1192  ·  view source on GitHub ↗
(idx int, args []string)

Source from the content-addressed store, hash-verified

1177}
1178
1179func (e *Evaluator) loadContainerOption(idx int, args []string) error {
1180 err := checkOptionArgs(idx, args)
1181 if err != nil {
1182 return err
1183 }
1184
1185 container := args[idx]
1186 idx++
1187 err = e.AddSerializableOption(&containerOption{container: container})
1188 if err != nil {
1189 return err
1190 }
1191 return nil
1192}
1193
1194func (e *Evaluator) loadExtensionOption(idx int, args []string) error {
1195 err := checkOptionArgs(idx, args)

Callers 1

setOptionMethod · 0.95

Calls 2

AddSerializableOptionMethod · 0.95
checkOptionArgsFunction · 0.85

Tested by

no test coverage detected