TooFewArgError records a too few arguments error. It is used by DSL functions that take dynamic arguments.
()
| 129 | // TooFewArgError records a too few arguments error. It is used by DSL |
| 130 | // functions that take dynamic arguments. |
| 131 | func TooFewArgError() { |
| 132 | ReportError("too few arguments given to %s", caller()) |
| 133 | } |
| 134 | |
| 135 | // TooManyArgError records a too many arguments error. It is used by DSL |
| 136 | // functions that take dynamic arguments. |