lvm.js

changeset 37
62c1d9bf3000
parent 36
9e7b57b0b78f
child 38
ba347b4b655f
equal deleted inserted replaced
36:9e7b57b0b78f 37:62c1d9bf3000
19 var debugMode = false; 19 var debugMode = false;
20 20
21 function LValue(type, value) 21 function LValue(type, value)
22 { 22 {
23 this.type = type||"nil"; 23 this.type = type||"nil";
24 this.value = value||null; 24 this.value = value;
25 } 25 }
26 26
27 LValue.prototype = { 27 LValue.prototype = {
28 call: function (args) 28 call: function (args)
29 { 29 {

mercurial