Allow LValues with a value of 'false' to be create (it was converted to 'null')

Sun, 23 May 2010 17:30:43 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Sun, 23 May 2010 17:30:43 +0100
changeset 37
62c1d9bf3000
parent 36
9e7b57b0b78f
child 38
ba347b4b655f

Allow LValues with a value of 'false' to be create (it was converted to 'null')

lvm.js file | annotate | diff | comparison | revisions
--- a/lvm.js	Sun May 23 13:48:39 2010 +0100
+++ b/lvm.js	Sun May 23 17:30:43 2010 +0100
@@ -21,7 +21,7 @@
 function LValue(type, value)
 {
 	this.type = type||"nil";
-	this.value = value||null;
+	this.value = value;
 }
 
 LValue.prototype = {

mercurial