Skip to content

Commit 39079ad

Browse files
committed
support .resi
1 parent e945742 commit 39079ad

File tree

2 files changed

+37
-26
lines changed

2 files changed

+37
-26
lines changed

analysis/src/Diagnostics.ml

+34-24
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,36 @@
11
let document_syntax ~path =
2-
let parse =
3-
Res_driver.parsingEngine.parseImplementation ~forPrinter:false
4-
~filename:path
2+
let get_diagnostics diagnostics =
3+
match diagnostics with
4+
| [] -> []
5+
| diagnostics ->
6+
diagnostics
7+
|> List.rev_map (fun diagnostic ->
8+
let _, startline, startcol =
9+
Location.get_pos_info (Res_diagnostics.getStartPos diagnostic)
10+
in
11+
let _, endline, endcol =
12+
Location.get_pos_info (Res_diagnostics.getEndPos diagnostic)
13+
in
14+
Protocol.stringifyDiagnostic
15+
{
16+
range =
17+
{
18+
start = {line = startline - 1; character = startcol};
19+
end_ = {line = endline - 1; character = endcol};
20+
};
21+
message = Res_diagnostics.explain diagnostic;
22+
severity = Error;
23+
})
524
in
6-
match parse.diagnostics with
7-
| [] -> []
8-
| diagnostics ->
9-
diagnostics
10-
|> List.rev_map (fun diagnostic ->
11-
let _, startline, startcol =
12-
Location.get_pos_info (Res_diagnostics.getStartPos diagnostic)
13-
in
14-
let _, endline, endcol =
15-
Location.get_pos_info (Res_diagnostics.getEndPos diagnostic)
16-
in
17-
Protocol.stringifyDiagnostic
18-
{
19-
range =
20-
{
21-
start = {line = startline - 1; character = startcol};
22-
end_ = {line = endline - 1; character = endcol};
23-
};
24-
message = Res_diagnostics.explain diagnostic;
25-
severity = Error;
26-
})
25+
if FindFiles.isImplementation path then
26+
let parseImplementation =
27+
Res_driver.parsingEngine.parseImplementation ~forPrinter:false
28+
~filename:path
29+
in
30+
get_diagnostics parseImplementation.diagnostics
31+
else if FindFiles.isInterface path then
32+
let parseInterface =
33+
Res_driver.parsingEngine.parseInterface ~forPrinter:false ~filename:path
34+
in
35+
get_diagnostics parseInterface.diagnostics
36+
else []

server/src/server.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -599,8 +599,9 @@ function format(msg: p.RequestMessage): Array<p.Message> {
599599
}
600600

601601
const updateDiagnosticSyntax = (fileUri: string, fileContent: string) => {
602-
const filePath = fileURLToPath(fileUri);
603-
const tmpname = utils.createFileInTempDir();
602+
let filePath = fileURLToPath(fileUri);
603+
let extension = path.extname(filePath);
604+
let tmpname = utils.createFileInTempDir(extension = extension);
604605
fs.writeFileSync(tmpname, fileContent, { encoding: "utf-8" });
605606

606607
const items: p.Diagnostic[] | [] = utils.runAnalysisAfterSanityCheck(

0 commit comments

Comments
 (0)