Skip to content

Commit

Permalink
added missing line/column information
Browse files Browse the repository at this point in the history
  • Loading branch information
jurgenvinju committed Nov 5, 2024
1 parent 2493294 commit 7a39a77
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -757,6 +757,6 @@ CodeAction removeJavaClass(FunctionDeclaration decl) = action(
);
list[CodeAction] javaClassProposals(FunctionDeclaration decl) = [
action(title="add missing <a>", edits=[changed(decl@\loc.top, [replace(decl.tags@\loc(decl.tags@\loc.offset, 0), "<a>\n")])])
action(title="add missing <a>", edits=[changed(decl@\loc.top, [replace(decl.tags@\loc(decl.tags@\loc.offset, 0, decl.tags@\loc.begin, decl.tags@\loc.begin), "<a>\n")])])
| str a <- sort({"<t>" | /t:(Tag) `@javaClass<TagString _>` := parseModule(decl@\loc.top)})
];

0 comments on commit 7a39a77

Please sign in to comment.