Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/framework/COScript.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
@end

@interface COScript : NSObject {

Mocha *_mochaRuntime;

// used in COScript+Fiber
NSMutableArray *_activeFibers;
int _nextFiberId;
Expand All @@ -31,7 +31,9 @@
@property (retain) NSMutableDictionary *env;
@property (assign) BOOL shouldPreprocess;
@property (assign) BOOL shouldKeepAround;
@property (strong, nonatomic) NSDictionary* coreModuleMap;

- (instancetype)initWithCoreModules:(NSDictionary*)coreModules;
- (void)cleanup;
- (void)garbageCollect;
- (id)executeString:(NSString*) str;
Expand Down
Loading