mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-15 08:18:55 +00:00
committed missing downstream xtend-gen
Signed-off-by: Christian Dietrich <christian.dietrich@itemis.de>
This commit is contained in:
parent
8452bf16f1
commit
cecc676cc8
1 changed files with 3 additions and 0 deletions
|
@ -27,6 +27,7 @@ import org.eclipse.lsp4j.Location;
|
|||
import org.eclipse.lsp4j.MarkupContent;
|
||||
import org.eclipse.lsp4j.Position;
|
||||
import org.eclipse.lsp4j.Range;
|
||||
import org.eclipse.lsp4j.ResourceOperation;
|
||||
import org.eclipse.lsp4j.SemanticHighlightingInformation;
|
||||
import org.eclipse.lsp4j.SignatureHelp;
|
||||
import org.eclipse.lsp4j.SymbolInformation;
|
||||
|
@ -374,6 +375,8 @@ public class CompletionTest extends AbstractTestLangLanguageServerTest {
|
|||
return _toExpectation((Position)it);
|
||||
} else if (it instanceof Range) {
|
||||
return _toExpectation((Range)it);
|
||||
} else if (it instanceof ResourceOperation) {
|
||||
return _toExpectation((ResourceOperation)it);
|
||||
} else if (it instanceof SignatureHelp) {
|
||||
return _toExpectation((SignatureHelp)it);
|
||||
} else if (it instanceof SymbolInformation) {
|
||||
|
|
Loading…
Reference in a new issue