From 85ee81b8ae972d17f0e3dc78657077924c047ada Mon Sep 17 00:00:00 2001 From: pommicket Date: Tue, 27 Dec 2022 00:16:35 -0500 Subject: added workspaceFolders support but broke non-workspaceFolders support --- test/lsp/JavaB/.ted-root | 0 test/lsp/JavaB/B.java | 13 +++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 test/lsp/JavaB/.ted-root create mode 100644 test/lsp/JavaB/B.java (limited to 'test/lsp/JavaB') diff --git a/test/lsp/JavaB/.ted-root b/test/lsp/JavaB/.ted-root new file mode 100644 index 0000000..e69de29 diff --git a/test/lsp/JavaB/B.java b/test/lsp/JavaB/B.java new file mode 100644 index 0000000..fde8107 --- /dev/null +++ b/test/lsp/JavaB/B.java @@ -0,0 +1,13 @@ +public class B { + private static class Something { + public int x = 0; + int f() { + return x; + } + } + + public static void main(String[] args) { + Something s = new Something(); + s.f(); + } +} -- cgit v1.2.3