| 88 | } |
| 89 | |
| 90 | String Argument::getValue() const { |
| 91 | if (argPointer) return String(arg_get_value(argPointer)); |
| 92 | return String(); |
| 93 | } |
| 94 | |
| 95 | ArgumentType Argument::getType() const { |
| 96 | if (argPointer) { |
nothing calls this directly
no test coverage detected