fix execution of piped sketches

This commit is contained in:
Kurt Hutten IrevDev
2022-12-04 08:16:04 +11:00
parent f0076309ef
commit b114d61053
4 changed files with 77 additions and 15 deletions

View File

@ -1243,10 +1243,10 @@ function debuggerr(tokens: Token[], indexes: number[], msg=''): string {
topString += top
bottomString += bottom
})
const result = [`${msg} - debuggerr: ${sortedIndexes}`, topString, bottomString].join(
const debugResult = [`${msg} - debuggerr: ${sortedIndexes}`, topString, bottomString].join(
'\n'
)
console.log(result)
return result
console.log(debugResult)
return debugResult
}