From 34ecaa9b688833b9d8b817f5dc89202f666a862a Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Thu, 7 Mar 2013 15:41:21 -0700 Subject: [PATCH] Adding dictionary library. --- whalesong/js-assembler/get-runtime.rkt | 2 +- .../js-assembler/runtime-src/baselib-dict.js | 53 +++++++++++++++++++ 2 files changed, 54 insertions(+), 1 deletion(-) create mode 100644 whalesong/js-assembler/runtime-src/baselib-dict.js diff --git a/whalesong/js-assembler/get-runtime.rkt b/whalesong/js-assembler/get-runtime.rkt index 3337f04..4f52fb6 100644 --- a/whalesong/js-assembler/get-runtime.rkt +++ b/whalesong/js-assembler/get-runtime.rkt @@ -42,7 +42,7 @@ base64.js baselib.js - + baselib-dict.js baselib-frames.js baselib-loadscript.js diff --git a/whalesong/js-assembler/runtime-src/baselib-dict.js b/whalesong/js-assembler/runtime-src/baselib-dict.js new file mode 100644 index 0000000..19d09a6 --- /dev/null +++ b/whalesong/js-assembler/runtime-src/baselib-dict.js @@ -0,0 +1,53 @@ +/*jslint unparam: true, vars: true, white: true, newcap: true, nomen: true, plusplus: true, maxerr: 50, indent: 4 */ + +/*global window*/ + +// Dictionaries. We need this due to JS weirdness, since object +// literals have issues with regards to magic properties like +// __proto__. This is taken from Effective JavaScript, Item 45. +(function (baselib) { + 'use strict'; + + var hasOwnProperty = {}.hasOwnProperty; + + baselib.Dict = function(elements) { + this.elements = elements || {}; + this.hasSpecialProto = false; + this.specialProto = undefined; + }; + + baselib.Dict.prototype.has = function(key) { + if (key === '__proto__') { + return this.hasSpecialProto; + } + return hasOwnProperty.call(this.elements, key); + }; + + baselib.Dict.prototype.get = function(key) { + if (key === '__proto__') { + return this.specialProto; + } else if (hasOwnProperty.call(this.elements, key)) { + return this.elements[key]; + } else { + return undefined; + } + }; + + baselib.Dict.prototype.set = function(key, val) { + if (key === '__proto__') { + this.hasSpecialProto = true; + this.specialProto = val; + } else { + this.elements[key] = val; + } + }; + + baselib.Dict.prototype.remove = function(key) { + if (key === '__proto__') { + this.hasSpecialProto = false; + this.specialProto = undefined; + } else { + delete this.elements[key]; + } + }; +}(window.plt.baselib)); \ No newline at end of file