]> git.saurik.com Git - cycript.git/commitdiff
Rename Instance::Transient to Instance::Permament.
authorJay Freeman (saurik) <saurik@saurik.com>
Sun, 1 Nov 2015 22:00:28 +0000 (14:00 -0800)
committerJay Freeman (saurik) <saurik@saurik.com>
Sun, 1 Nov 2015 22:00:28 +0000 (14:00 -0800)
ObjectiveC/Internal.hpp
ObjectiveC/Library.mm

index 1ac20e2e0f64d42ff7422d23b4c879ba0724a66d..b731dbb5c144b80f3ca77f36447cb5a4a6ed5875 100644 (file)
@@ -45,7 +45,7 @@ struct Instance :
 {
     enum Flags {
         None          = 0,
-        Transient     = (1 << 0),
+        Permanent     = (1 << 0),
         Uninitialized = (1 << 1),
     };
 
@@ -79,7 +79,7 @@ struct Super :
     Class class_;
 
     _finline Super(id value, Class _class) :
-        Instance(value, Instance::Transient),
+        Instance(value, Instance::Permanent),
         class_(_class)
     {
     }
index cb955092bf4872ebf5014e7b76f677aac5d5f376..24ff4ce2bb06699d82ee37411afab53bf6d6e4e3 100644 (file)
@@ -413,7 +413,7 @@ JSObjectRef Instance::Make(JSContextRef context, id object, Flags flags) {
 }
 
 Instance::~Instance() {
-    if ((flags_ & Transient) == 0)
+    if ((flags_ & Permanent) == 0)
         [GetValue() release];
 }
 
@@ -429,11 +429,11 @@ struct Message_privateData :
     }
 };
 
-JSObjectRef CYMakeInstance(JSContextRef context, id object, bool transient) {
+JSObjectRef CYMakeInstance(JSContextRef context, id object, bool permanent) {
     Instance::Flags flags;
 
-    if (transient)
-        flags = Instance::Transient;
+    if (permanent)
+        flags = Instance::Permanent;
     else {
         flags = Instance::None;
         object = [object retain];