+- (NSObject *) cy$getProperty:(NSString *)name {
+ int index([name intValue]);
+ if (index < 0 || index >= static_cast<int>([self count]))
+ return [super cy$getProperty:name];
+ else
+ return [self objectAtIndex:index];
+}
+
+@end
+
+@implementation NSMutableArray (Cycript)
+
+- (bool) cy$setProperty:(NSString *)name to:(NSObject *)value {
+ int index([name intValue]);
+ if (index < 0 || index >= static_cast<int>([self count]))
+ return [super cy$setProperty:name to:value];
+ else {
+ [self replaceObjectAtIndex:index withObject:value];
+ return true;
+ }
+}
+
+- (bool) cy$deleteProperty:(NSString *)name {
+ int index([name intValue]);
+ if (index < 0 || index >= static_cast<int>([self count]))
+ return [super cy$deleteProperty:name];
+ else {
+ [self removeObjectAtIndex:index];
+ return true;
+ }
+}
+