mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-03-16 23:50:56 +00:00
Merge branch 'DebuggerRefactor' into debugger_editor_changes
This commit is contained in:
commit
70d12aec47
2 changed files with 2 additions and 8 deletions
|
@ -512,6 +512,8 @@
|
|||
{
|
||||
NSString *result = nil;
|
||||
|
||||
NSLog(@"scanning Result Record |%@|", stringInput);
|
||||
|
||||
[stringScanner scanString: @"done" intoString: &result];
|
||||
if(result != nil)
|
||||
{
|
||||
|
|
|
@ -363,47 +363,39 @@ NSString *PCUpdateEditorNotification = @"PCUpdateEditorNotification";
|
|||
|
||||
- (void) continue: (id) sender
|
||||
{
|
||||
// [self setStatus: @"Continue..."];
|
||||
[debuggerView putString: @"continue\n"];
|
||||
}
|
||||
|
||||
- (void) restart: (id) sender
|
||||
{
|
||||
// [self setStatus: @"Restarting..."];
|
||||
[self interrupt];
|
||||
/* each run makes a new PID but we parse it only if non-zero */
|
||||
[self setSubProcessId:0];
|
||||
[debuggerView putString: @"run\n"];
|
||||
// [self setStatus: @"Running..."];
|
||||
}
|
||||
|
||||
- (void) next: (id) sender
|
||||
{
|
||||
// [self setStatus: @"Going to next line."];
|
||||
[debuggerView putString: @"next\n"];
|
||||
}
|
||||
|
||||
- (void) stepInto: (id) sender
|
||||
{
|
||||
// [self setStatus: @"Stepping into method."];
|
||||
[debuggerView putString: @"step\n"];
|
||||
}
|
||||
|
||||
- (void) stepOut: (id) sender
|
||||
{
|
||||
// [self setStatus: @"Finishing method."];
|
||||
[debuggerView putString: @"finish\n"];
|
||||
}
|
||||
|
||||
- (void) up: (id) sender
|
||||
{
|
||||
// [self setStatus: @"Up to calling method."];
|
||||
[debuggerView putString: @"up\n"];
|
||||
}
|
||||
|
||||
- (void) down: (id) sender
|
||||
{
|
||||
// [self setStatus: @"Down to called method."];
|
||||
[debuggerView putString: @"down\n"];
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue