Created
February 25, 2015 19:02
-
-
Save dunckr/48f3168ca88c5df5e3cc to your computer and use it in GitHub Desktop.
Sketch object dump
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Dump Object | |
function dump_obj(obj){ | |
log("#####################################################################################") | |
log("## Dumping object " + obj ) | |
log("## obj class is: " + [obj className]) | |
log("#####################################################################################") | |
log("obj.properties:") | |
log("#####################################################################################") | |
log([obj class].mocha().properties()) | |
log("obj.propertiesWithAncestors:") | |
log([obj class].mocha().propertiesWithAncestors()) | |
log("#####################################################################################") | |
log("obj.classMethods:") | |
log("#####################################################################################") | |
log([obj class].mocha().classMethods()) | |
log("obj.classMethodsWithAncestors:") | |
log([obj class].mocha().classMethodsWithAncestors()) | |
log("#####################################################################################") | |
log("obj.instanceMethods:") | |
log("#####################################################################################") | |
log([obj class].mocha().instanceMethods()) | |
log("obj.instanceMethodsWithAncestors:") | |
log([obj class].mocha().instanceMethodsWithAncestors()) | |
log("#####################################################################################") | |
log("obj.protocols:") | |
log("#####################################################################################") | |
log([obj class].mocha().protocols()) | |
log("obj.protocolsWithAncestors:") | |
log([obj class].mocha().protocolsWithAncestors()) | |
log("#####################################################################################") | |
log("obj.treeAsDictionary():") | |
log("#####################################################################################") | |
log(obj.treeAsDictionary()) | |
} | |
dump_obj(selection[0]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment