| 11 | |
| 12 | // Members of class Variable |
| 13 | Variable::Variable(const char *_ecv_array str, size_t strLen, ExpressionValue& pVal, int16_t pScope) THROWS(GCodeException) |
| 14 | : name(str, strLen), val(), scope(pScope) |
| 15 | { |
| 16 | Assign(pVal); // this may throw |
| 17 | } |
| 18 | |
| 19 | Variable::~Variable() |
| 20 | { |
no test coverage detected