From 18b89ee8e1059a21f8d5e3a52c2e256b7dea79cb Mon Sep 17 00:00:00 2001 From: Benoit Giannangeli Date: Sat, 4 Feb 2017 09:01:25 +0100 Subject: CLOSURE, CALL --- src/lfunc.js | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) (limited to 'src/lfunc.js') diff --git a/src/lfunc.js b/src/lfunc.js index faa0887..929dae8 100644 --- a/src/lfunc.js +++ b/src/lfunc.js @@ -21,7 +21,22 @@ class Proto { } +class UpVal { + + constructor() { + this.v = null; + this.u = { + open: { + next: null, + touched: false + }, + value: null + }; + } + +} module.exports = { - Proto: Proto + Proto: Proto, + UpVal: UpVal }; \ No newline at end of file -- cgit v1.2.3-70-g09d2