Skip to content

Commit 7160de9

Browse files
committed
Fix bug
1 parent 5681981 commit 7160de9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vm/js/nqp-runtime/curlexpad.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ function CurLexpad(get, set) {
44
}
55

66
CurLexpad.prototype.$$atkey = function(key) {
7-
return this.get(key);
7+
return this.get[key]();
88
};
99

1010
CurLexpad.prototype.$$bindkey = function(key, value) {
11-
this.set(key, value);
11+
this.set[key](value);
1212
return value;
1313
};
1414

0 commit comments

Comments
 (0)