From 6d1484d41f5b5d561d21d6e497bd1ec437973464 Mon Sep 17 00:00:00 2001 From: daurnimator Date: Mon, 29 May 2017 15:35:46 +1000 Subject: src/lfunc.js: Give UpVals an id field This way they have an id when printed via %p. e.g. `debug.upvalueid(function() print() end, 1)` --- src/lobject.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/lobject.js') diff --git a/src/lobject.js b/src/lobject.js index db76cb5..44d8c9b 100644 --- a/src/lobject.js +++ b/src/lobject.js @@ -7,6 +7,7 @@ const defs = require('./defs.js'); const ljstype = require('./ljstype.js'); const ldebug = require('./ldebug.js'); const ldo = require('./ldo.js'); +const lfunc = require('./lfunc.js'); const lstate = require('./lstate.js'); const lstring = require('./lstring.js'); const ltable = require('./ltable.js'); @@ -577,7 +578,8 @@ const luaO_pushvfstring = function(L, fmt, argp) { v instanceof ltable.Table || v instanceof Udata || v instanceof LClosure || - v instanceof CClosure) { + v instanceof CClosure || + v instanceof lfunc.UpVal) { pushstr(L, defs.to_luastring("0x"+v.id.toString(16))); } else { /* user provided object. no id available */ -- cgit v1.2.3-54-g00ecf