Skip to content

Commit

Permalink
Merge pull request #278 from usethesource/debug-stepout
Browse files Browse the repository at this point in the history
Added step out request implementation
  • Loading branch information
DavyLandman authored Jul 25, 2023
2 parents da1ac36 + 957e0fe commit 5377766
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion rascal-lsp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
<dependency>
<groupId>org.rascalmpl</groupId>
<artifactId>rascal</artifactId>
<version>0.33.3</version>
<version>0.33.4</version>
</dependency>
<dependency>
<groupId>org.rascalmpl</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -434,9 +434,7 @@ public CompletableFuture<Void> stepIn(StepInArguments args) {
@Override
public CompletableFuture<Void> stepOut(StepOutArguments args) {
return CompletableFuture.supplyAsync(() -> {
//TODO: implementation of step out request.
logger.debug("Step out request not implemented in debug adapter");
debugHandler.processMessage(DebugMessageFactory.requestStepOver());
debugHandler.processMessage(DebugMessageFactory.requestStepOut());

return null;
});
Expand Down

0 comments on commit 5377766

Please sign in to comment.