Sha256: ae8402538edfc64eab6ade2d30e58c20bdda8d68e7cefade7d8484a5f370f044
Contents?: true
Size: 737 Bytes
Versions: 135
Compression:
Stored size: 737 Bytes
Contents
// // DebugConnection.m // Rhodes Debugger // // Created by rhomobile on 12/14/09. // Copyright 2009 __MyCompanyName__. All rights reserved. // #import "DebugConnection.h" @implementation DebugConnection @synthesize waitForConnection; @synthesize isConnected; @synthesize delegate; - (id) init { self = [super init]; if (self != nil) { [self setWaitForConnection:FALSE]; [self setIsConnected:FALSE]; } return self; } -(void) step { } -(void) stepOut { } -(void) pause { } -(void) resume { } -(void) setBreakPointInFile:(NSString*)file atLine:(int)line { } - (void) sendRubyCmd:(NSString *)rubyCmd { } - (void) clearBreakPoints { } - (void) terminate { } - (void) startWaiting { } - (void) stopWaiting { } @end
Version data entries
135 entries across 135 versions & 2 rubygems