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

Version Path
rhodes-7.6.0 platform/osx/Rhodes Debugger/DebugConnection.m
rhodes-7.5.1 platform/osx/Rhodes Debugger/DebugConnection.m
rhodes-7.4.1 platform/osx/Rhodes Debugger/DebugConnection.m
rhodes-7.1.17 platform/osx/Rhodes Debugger/DebugConnection.m
rhodes-6.2.0 platform/osx/Rhodes Debugger/DebugConnection.m
rhodes-6.0.11 platform/osx/Rhodes Debugger/DebugConnection.m
rhodes-5.5.18 platform/osx/Rhodes Debugger/DebugConnection.m
rhodes-5.5.17 platform/osx/Rhodes Debugger/DebugConnection.m
rhodes-5.5.15 platform/osx/Rhodes Debugger/DebugConnection.m
rhodes-5.5.0.22 platform/osx/Rhodes Debugger/DebugConnection.m
rhodes-5.5.2 platform/osx/Rhodes Debugger/DebugConnection.m
rhodes-5.5.0.7 platform/osx/Rhodes Debugger/DebugConnection.m
rhodes-5.5.0.3 platform/osx/Rhodes Debugger/DebugConnection.m
rhodes-5.5.0 platform/osx/Rhodes Debugger/DebugConnection.m
tauplatform-1.0.3 platform/osx/Rhodes Debugger/DebugConnection.m
tauplatform-1.0.2 platform/osx/Rhodes Debugger/DebugConnection.m
tauplatform-1.0.1 platform/osx/Rhodes Debugger/DebugConnection.m
rhodes-3.5.1.12 platform/osx/Rhodes Debugger/DebugConnection.m
rhodes-3.3.5 platform/osx/Rhodes Debugger/DebugConnection.m
rhodes-3.4.2 platform/osx/Rhodes Debugger/DebugConnection.m