1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-13 00:55:47 +01:00

Merge default.

--HG--
branch : key-processing
This commit is contained in:
Kris Maglione
2011-01-28 10:11:54 -05:00
4 changed files with 23 additions and 17 deletions

View File

@@ -758,6 +758,7 @@ Class.memoize = function memoize(getter)
this.get = function replace() let (obj = this.instance || this) (
Class.replaceProperty(obj, key, null),
Class.replaceProperty(obj, key, getter.call(this, key)))
this.set = function replace(val) Class.replaceProperty(this.instance || this, val);
}
});