We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
if you evaluate this code with sclang.interpret() i (correctly) get an error:
sclang.interpret()
( ProxySpace.push(s); ~a = "b"; )
but the error does not contain anything useful:
SCLangError { data: {}, type: 'Error', error: {} }
i would expect the error field to contain info about the actual error (taken from sc-ide):
error
ERROR: 'prepareForProxySynthDef' should have been implemented by Char. RECEIVER: Character 98 'b' ...
debug output from sclang when i turn debug: true on:
sclang
debug: true
debug SuperColliderJS.interpret("ck3dd1svv0000y6rvgr6hlj48","(__NL__ProxySpace.push(s);__NL__~a = \"b\";__NL__)",nil,true,false,false); logger.js:114 debug SUPERCOLLIDERJS:ck3dd1svv0000y6rvgr6hlj48:CAPTURE:START SUPERCOLLIDERJS:ck3dd1svv0000y6rvgr6hlj48:CAPTURE:END SUPERCOLLIDERJS:ck3dd1svv0000y6rvgr6hlj48:START:Error SUPERCOLLIDERJS:ck3dd1svv0000y6rvgr6hlj48:CHUNK:{} SUPERCOLLIDERJS:ck3dd1svv0000y6rvgr6hlj48:END:Error SUPERCOLLIDERJS.interpreted ->
The text was updated successfully, but these errors were encountered:
crucialfelix
No branches or pull requests
if you evaluate this code with
sclang.interpret()
i (correctly) get an error:( ProxySpace.push(s); ~a = "b"; )
but the error does not contain anything useful:
i would expect the
error
field to contain info about the actual error (taken from sc-ide):debug output from
sclang
when i turndebug: true
on:The text was updated successfully, but these errors were encountered: