Fix type() in baselib to return an LValue

Fri, 19 Nov 2010 19:22:40 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Fri, 19 Nov 2010 19:22:40 +0000
changeset 83
0e6b19731508
parent 82
72fe2316bd67
child 84
dfd323d565b4

Fix type() in baselib to return an LValue

lvm.js file | annotate | diff | comparison | revisions
--- a/lvm.js	Fri Nov 19 19:22:20 2010 +0000
+++ b/lvm.js	Fri Nov 19 19:22:40 2010 +0000
@@ -625,7 +625,7 @@
 	},
 	type: function (o)
 	{
-		return [o.type];
+		return [this.LValue(o.type)];
 	}
 };
 

mercurial