MCPcopy Create free account
hub / github.com/Duet3D/RepRapFirmware / THROWS

Function THROWS

src/ObjectModel/ObjectModel.cpp:456–464  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

454#endif
455
456void 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
466void ObjectExplorationContext::AddIndex() THROWS(GCodeException)
467{

Callers 1

ObjectModel.cppFile · 0.70

Calls 15

SoftwareResetFunction · 0.85
IncreaseDepthMethod · 0.80
MatchesMethod · 0.80
catMethod · 0.80
DecreaseDepthMethod · 0.80
catfMethod · 0.80
GetNumElementsMethod · 0.80
GetElementMethod · 0.80
ShortFormReportMethod · 0.80
Get56BitValueMethod · 0.80
EncodeCharMethod · 0.80

Tested by

no test coverage detected