| 102 | } |
| 103 | |
| 104 | String Argument::toString() const { |
| 105 | String s; |
| 106 | |
| 107 | toString(s); |
| 108 | return s; |
| 109 | } |
| 110 | |
| 111 | void Argument::toString(String& s) const { |
| 112 | if (isOptional()) s += '['; |
nothing calls this directly
no outgoing calls
no test coverage detected