removing level of indirection

This commit is contained in:
Danny Yoo 2012-02-29 14:42:12 -05:00
parent aed845f3f5
commit 926ef2fb90
2 changed files with 4 additions and 4 deletions

View File

@ -180,7 +180,7 @@
RawConstructor.prototype = baselib.heir(parentType.type.prototype);
var theNameSymbol =
baselib.symbols.Symbol.makeInstance(theName);
baselib.symbols.makeSymbol(theName);
// Set type, necessary for equality checking
RawConstructor.prototype.type = RawConstructor;

View File

@ -17,8 +17,9 @@
var symbolCache = {};
// makeInstance: string -> Symbol.
Symbol.makeInstance = function (val) {
// makeSymbol: string -> Symbol.
// Interns a symbol.
var makeSymbol = function (val) {
// To ensure that we can eq? symbols with equal values.
if (!(symbolCache.hasOwnProperty(val))) {
symbolCache[val] = new Symbol(val);
@ -77,7 +78,6 @@
var isSymbol = function (x) { return x instanceof Symbol; };
var makeSymbol = function (s) { return Symbol.makeInstance(s); };