Fix raw, responseless returns on willSaveWaitUntil (#833)

* Fix raw, responseless returns on willSaveWaitUntil

* Make this code pretty
This commit is contained in:
Auguste Rame 2022-12-19 16:01:08 -05:00 committed by GitHub
parent 7b0c2a34fc
commit c355a54dd1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1879,20 +1879,28 @@ fn willSaveWaitUntilHandler(server: *Server, writer: anytype, id: types.RequestI
const tracy_zone = tracy.trace(@src());
defer tracy_zone.end();
if (!server.config.enable_ast_check_diagnostics) return;
if (!server.config.enable_autofix) return;
const allocator = server.arena.allocator();
const uri = req.params.textDocument.uri;
const handle = server.document_store.getHandle(uri) orelse return;
if (handle.tree.errors.len != 0) return;
b: {
if (!server.config.enable_ast_check_diagnostics or !server.config.enable_autofix)
break :b;
var text_edits = try server.autofix(allocator, handle);
const uri = req.params.textDocument.uri;
const handle = server.document_store.getHandle(uri) orelse break :b;
if (handle.tree.errors.len != 0) break :b;
var text_edits = try server.autofix(allocator, handle);
return try send(writer, allocator, types.Response{
.id = id,
.result = .{ .TextEdits = try text_edits.toOwnedSlice(allocator) },
});
}
return try send(writer, allocator, types.Response{
.id = id,
.result = .{ .TextEdits = try text_edits.toOwnedSlice(allocator) },
.result = .{ .TextEdits = &.{} },
});
}