# HG changeset patch # User Matthew Wild # Date 1290194560 0 # Node ID 0e6b19731508396707603e0ca176c6c1564a4438 # Parent 72fe2316bd67b99cda8b9523a2f764de3ee216c4 Fix type() in baselib to return an LValue diff -r 72fe2316bd67 -r 0e6b19731508 lvm.js --- 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)]; } };