(idx int, args []string)
| 1177 | } |
| 1178 | |
| 1179 | func (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 | |
| 1194 | func (e *Evaluator) loadExtensionOption(idx int, args []string) error { |
| 1195 | err := checkOptionArgs(idx, args) |
no test coverage detected