| 454 | #endif |
| 455 | |
| 456 | void ObjectExplorationContext::AddIndex(int32_t index) THROWS(GCodeException) |
| 457 | { |
| 458 | if (numIndicesCounted == MaxExpressionArrayIndices) |
| 459 | { |
| 460 | throw GCodeException(-1, -1, "Too many indices"); |
| 461 | } |
| 462 | indices[numIndicesCounted] = index; |
| 463 | ++numIndicesCounted; |
| 464 | } |
| 465 | |
| 466 | void ObjectExplorationContext::AddIndex() THROWS(GCodeException) |
| 467 | { |
no test coverage detected