aboutsummaryrefslogtreecommitdiff
path: root/src/lobject.js
diff options
context:
space:
mode:
authordaurnimator <quae@daurnimator.com>2017-05-02 14:29:00 +1000
committerdaurnimator <quae@daurnimator.com>2017-05-02 14:29:00 +1000
commit91427896625e01ce2ab7171e1cf2369c89e53658 (patch)
treec0b532775ab734dc9febe5a8029eb9789aa173df /src/lobject.js
parent30264bbc1998ab6640afdc31c348ca6167ca6191 (diff)
downloadfengari-91427896625e01ce2ab7171e1cf2369c89e53658.tar.gz
fengari-91427896625e01ce2ab7171e1cf2369c89e53658.tar.bz2
fengari-91427896625e01ce2ab7171e1cf2369c89e53658.zip
src/lobject: Add sethvalue method to TValue
Diffstat (limited to 'src/lobject.js')
-rw-r--r--src/lobject.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lobject.js b/src/lobject.js
index 5a202d4..5918a84 100644
--- a/src/lobject.js
+++ b/src/lobject.js
@@ -147,6 +147,11 @@ class TValue {
this.value = x;
}
+ sethvalue(x) {
+ this.type = CT.LUA_TTABLE;
+ this.value = x;
+ }
+
setfrom(tv) { /* in lua C source setobj2t is often used for this */
this.type = tv.type;
this.value = tv.value;