RAPL

Diff
Login

Diff

Differences From Artifact [cf73aa51b2]:

To Artifact [7ee025eea7]:


97
98
99
100
101
102
103






104
105
106
107
108
109
110
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116







+
+
+
+
+
+







      if (var_obj != null) {
        var_obj.setValue(e);
      }
      return 1;
    }
    return 0;
  });

  /* ==================== command concat ===================================== */
  interp.registerCommand("::concat", function (interp, args) {
    interp.setResult(interp.default_obj.concatObj(args.length - 1, args.slice(1)));
    return interp.OK;
  });

  /* ==================== command continue ===================================== */
  interp.registerCommand("::continue", function (interp, args) {
    interp.code = this.CONTINUE;
    return;
  });