From: Jay Freeman (saurik) Date: Fri, 14 Sep 2012 14:14:57 +0000 (-0700) Subject: Move FunctionInstance_ into alphabetical order. X-Git-Tag: v0.9.460~19 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/3d79777aec98240f1bf98291672764ccdc5fddb6?ds=sidebyside Move FunctionInstance_ into alphabetical order. --- diff --git a/ObjectiveC/Library.mm b/ObjectiveC/Library.mm index 7444159..3976d54 100644 --- a/ObjectiveC/Library.mm +++ b/ObjectiveC/Library.mm @@ -2543,6 +2543,9 @@ void CYObjectiveC_Initialize() { /*XXX*/ JSContextRef context(NULL); CYPoolTry { definition.className = "ArrayInstance"; ArrayInstance_ = JSClassCreate(&definition); + definition.className = "FunctionInstance"; + FunctionInstance_ = JSClassCreate(&definition); + definition.className = "ObjectInstance"; ObjectInstance_ = JSClassCreate(&definition); @@ -2552,9 +2555,6 @@ void CYObjectiveC_Initialize() { /*XXX*/ JSContextRef context(NULL); CYPoolTry { definition.className = "TypeInstance"; TypeInstance_ = JSClassCreate(&definition); - definition.className = "FunctionInstance"; - FunctionInstance_ = JSClassCreate(&definition); - definition = kJSClassDefinitionEmpty; definition.className = "Internal"; definition.staticFunctions = Internal_staticFunctions;