summaryrefslogtreecommitdiffstats
path: root/theme/javascript/execute/javascript.js
blob: ddbc2c1645851ac61989ccce8d0ca8aee148039f (plain)
1
2
3
4
5
6
7
8
define(function() {
    return {
        id: "javascript",
        assertCode: "function assert(condition, message) { \nif (!condition) { \n throw message || \"Assertion failed\"; \n } \n }\n",
        REPL: JSREPL,
        sep: ";\n",
    };
});