(input)
| 271 | }; |
| 272 | |
| 273 | const evaluateExpression = function (input) { |
| 274 | consoleHistory.push(input); |
| 275 | const node = makeConsoleHistoryEntry(input); |
| 276 | renderedConsole += node; |
| 277 | hdbCounter++; |
| 278 | }; |
| 279 | |
| 280 | const prettyPrint = function (obj) { |
| 281 | if (obj == null) return "null"; |
nothing calls this directly
no test coverage detected