You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"comment": ["This test checks renaming a protected procedure."]
4
+
},
5
+
{
6
+
"start": {
7
+
"cmd": ["${ALS}"]
8
+
}
9
+
},
10
+
{
11
+
"send": {
12
+
"request": {
13
+
"jsonrpc": "2.0",
14
+
"id": 0,
15
+
"method": "initialize",
16
+
"params": {
17
+
"processId": 1,
18
+
"rootUri": "$URI{.}",
19
+
"capabilities": {}
20
+
}
21
+
},
22
+
"wait": [
23
+
{
24
+
"id": 0,
25
+
"result": {
26
+
"capabilities": {
27
+
"textDocumentSync": 2,
28
+
"renameProvider": {}
29
+
}
30
+
}
31
+
}
32
+
]
33
+
}
34
+
},
35
+
{
36
+
"send": {
37
+
"request": {
38
+
"jsonrpc": "2.0",
39
+
"method": "workspace/didChangeConfiguration",
40
+
"params": {
41
+
"settings": {}
42
+
}
43
+
},
44
+
"wait": []
45
+
}
46
+
},
47
+
{
48
+
"send": {
49
+
"request": {
50
+
"jsonrpc": "2.0",
51
+
"method": "textDocument/didOpen",
52
+
"params": {
53
+
"textDocument": {
54
+
"uri": "$URI{main.adb}",
55
+
"languageId": "ada",
56
+
"version": 1,
57
+
"text": "procedure Main is\n protected M is\n procedure Foo;\n end M;\n\n protected body M is\n procedure Foo is\n begin\n null;\n end Foo;\n end M;\nbegin\n null;\nend Main;\n"
0 commit comments