removing level of indirection
This commit is contained in:
parent
aed845f3f5
commit
926ef2fb90
|
@ -180,7 +180,7 @@
|
||||||
RawConstructor.prototype = baselib.heir(parentType.type.prototype);
|
RawConstructor.prototype = baselib.heir(parentType.type.prototype);
|
||||||
|
|
||||||
var theNameSymbol =
|
var theNameSymbol =
|
||||||
baselib.symbols.Symbol.makeInstance(theName);
|
baselib.symbols.makeSymbol(theName);
|
||||||
|
|
||||||
// Set type, necessary for equality checking
|
// Set type, necessary for equality checking
|
||||||
RawConstructor.prototype.type = RawConstructor;
|
RawConstructor.prototype.type = RawConstructor;
|
||||||
|
|
|
@ -17,8 +17,9 @@
|
||||||
|
|
||||||
var symbolCache = {};
|
var symbolCache = {};
|
||||||
|
|
||||||
// makeInstance: string -> Symbol.
|
// makeSymbol: string -> Symbol.
|
||||||
Symbol.makeInstance = function (val) {
|
// Interns a symbol.
|
||||||
|
var makeSymbol = function (val) {
|
||||||
// To ensure that we can eq? symbols with equal values.
|
// To ensure that we can eq? symbols with equal values.
|
||||||
if (!(symbolCache.hasOwnProperty(val))) {
|
if (!(symbolCache.hasOwnProperty(val))) {
|
||||||
symbolCache[val] = new Symbol(val);
|
symbolCache[val] = new Symbol(val);
|
||||||
|
@ -77,7 +78,6 @@
|
||||||
|
|
||||||
var isSymbol = function (x) { return x instanceof Symbol; };
|
var isSymbol = function (x) { return x instanceof Symbol; };
|
||||||
|
|
||||||
var makeSymbol = function (s) { return Symbol.makeInstance(s); };
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user