1 // RUN: mlir-pdll-lsp-server -lit-test < %s | FileCheck %s
2 // This test checks support for split files by attempting to find the definition
3 // of a symbol in a split file. The interesting part of this test is that the
4 // file chunk before the one we are looking for the definition in has an error.
5 {"jsonrpc":"2.0","id":0,"method":"initialize","params":{"processId":123,"rootPath":"pdll","capabilities":{},"trace":"off"}}
7 {"jsonrpc":"2.0","method":"textDocument/didOpen","params":{"textDocument":{
8 "uri":"test:///foo.pdll",
11 "text":"Pattern Foo {\n// -----\nPattern {\n erase root: Op<toy.test>;\n }"
14 {"jsonrpc":"2.0","id":1,"method":"textDocument/definition","params":{
15 "textDocument":{"uri":"test:///foo.pdll"},
16 "position":{"line":3,"character":11}
19 // CHECK-NEXT: "jsonrpc": "2.0",
20 // CHECK-NEXT: "result": [
22 // CHECK-NEXT: "range": {
23 // CHECK-NEXT: "end": {
24 // CHECK-NEXT: "character": 12,
25 // CHECK-NEXT: "line": 3
27 // CHECK-NEXT: "start": {
28 // CHECK-NEXT: "character": 8,
29 // CHECK-NEXT: "line": 3
32 // CHECK-NEXT: "uri": "{{.*}}/foo.pdll"
35 {"jsonrpc":"2.0","id":3,"method":"shutdown"}
37 {"jsonrpc":"2.0","method":"exit"}