What is "Live Coding Support"?

When you shift-click the gear button, there is an option called "live coding support". What does it do? And how can I enable it using javascript?

Live coding support allows you to edit a block while running, and every edit is applied, instead of the usual "apply" button. If you turn on stepping, it also turns on live coding.

To find the javascript function that it uses, open gui.js in the source code, find "Live coding support" and then you might find the function.

() => Process.prototype.enableLiveCoding =
            !Process.prototype.enableLiveCoding,
        Process.prototype.enableLiveCoding,

This it?

yeah, but you can just set Process.prototype.enableLiveCoding to true or false.

Thanks! Works like a charm!

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.