eclipse-lsp4j / lsp4j

A Java implementation of the language server protocol intended to be consumed by tools and language servers implemented in Java.

Home Page:https://eclipse.org/lsp4j

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Implement default behavior for stepIn and stepOut to nextStep

apupier opened this issue · comments

Based on specification for Step In, If the request cannot step into a target, stepIn behaves like the next request..

Currently, by default the IDebugProtocolServer.stepIn method is throwing an UnsupportedOperationException

I think it could be convenient that it redirect to nextStep by default so that the specification is fulfilled immediately without the client required to implement it