blob: bd6126474258284f9c7694fd711ea228c2b0f9e2 [file] [log] [blame]
//
// NSOrderedSet+WXRuntimePropertyDescriptor.h
// PonyDebugger
//
// Created by Wen-Hao Lue on 2013-02-03.
//
// Licensed to Square, Inc. under one or more contributor license agreements.
// See the LICENSE file distributed with this work for the terms under
// which Square, Inc. licenses this file to you.
//
#import <Foundation/Foundation.h>
@class WXRuntimeRemoteObject;
@class WXRuntimePropertyDescriptor;
@interface NSOrderedSet (WXRuntimePropertyDescriptor)
- (id)WX_valueForKey:(NSString *)key;
- (id)WX_objectAtIndex:(NSUInteger)index;
- (NSArray *)WX_propertiesForPropertyDescriptors;
- (WXRuntimePropertyDescriptor *)WX_propertyDescriptorForPropertyObject:(NSObject *)property;
@end