Skip to content

Instantly share code, notes, and snippets.

@mafis
Created April 14, 2011 16:12
Show Gist options
  • Select an option

  • Save mafis/919822 to your computer and use it in GitHub Desktop.

Select an option

Save mafis/919822 to your computer and use it in GitHub Desktop.
Foundation/CPObject.j: if (typeof self._UID === "undefined")
Foundation/CPObject.j: self._UID = objj_generateObjectUID();
Foundation/CPObject.j: return _UID + "";
Foundation/CPProxy.j: if (typeof self._UID === "undefined")
Foundation/CPProxy.j: self._UID = objj_generateObjectUID();
Foundation/CPProxy.j: return _UID;
Objective-J/CFDictionary.js: this._UID = objj_generateObjectUID();
Objective-J/CFPropertyList.js: this._UID = objj_generateObjectUID();
Objective-J/CFURL.js: this._UID = objj_generateObjectUID();
Objective-J/CFURL.js: return this._UID;
Objective-J/Debug.js: return (aReceiver && aReceiver.isa) ? exports.sprintf("<%s %#08x>", GETMETA(aReceiver).name, aReceiver._UID) : String(aR
Objective-J/Runtime.js: this._UID = -1;
Objective-J/Runtime.js: this._UID = -1;
Objective-J/Runtime.js: classObject._UID = objj_generateObjectUID();
Objective-J/Runtime.js: metaClassObject._UID = objj_generateObjectUID();
Objective-J/Runtime.js: object._UID = objj_generateObjectUID();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment