| 13 | |
| 14 | // Report all variables |
| 15 | void GlobalVariables::ReportAllAsJson(OutputBuffer *buf) const THROWS(GCodeException) |
| 16 | { |
| 17 | ObjectExplorationContext context; |
| 18 | ReportAsJson(buf, context, nullptr, 0, ""); |
| 19 | } |
| 20 | |
| 21 | // Construct a JSON representation of those parts of the object model requested by the user |
| 22 | // This overrides the standard definition because the variable names are not fixed |
nothing calls this directly
no test coverage detected