Skip to content

Commit 5a6735e

Browse files
committed
Consider distance to previous comment in comment metadata, closes #14375
1 parent 441cf7d commit 5a6735e

File tree

2 files changed

+75
-1
lines changed

2 files changed

+75
-1
lines changed

lib/elixir/lib/code.ex

+4-1
Original file line numberDiff line numberDiff line change
@@ -1376,7 +1376,7 @@ defmodule Code do
13761376
comment = %{
13771377
line: line,
13781378
column: column,
1379-
previous_eol_count: previous_eol_count(tokens),
1379+
previous_eol_count: min(previous_eol_count(tokens), last_comment_distance(comments, line)),
13801380
next_eol_count: next_eol_count(rest, 0),
13811381
text: List.to_string(comment)
13821382
}
@@ -1390,6 +1390,9 @@ defmodule Code do
13901390
defp next_eol_count([?\r, ?\n | rest], count), do: next_eol_count(rest, count + 1)
13911391
defp next_eol_count(_, count), do: count
13921392

1393+
defp last_comment_distance([%{line: last_line} | _], line), do: line - last_line
1394+
defp last_comment_distance([], _line), do: :infinity
1395+
13931396
defp previous_eol_count([{token, {_, _, count}} | _])
13941397
when token in [:eol, :",", :";"] and count > 0 do
13951398
count

lib/elixir/test/elixir/code_test.exs

+71
Original file line numberDiff line numberDiff line change
@@ -443,6 +443,77 @@ defmodule CodeTest do
443443
assert meta[:end_column] == 3
444444
end
445445

446+
test "string_to_quoted with comments" do
447+
assert Code.string_to_quoted_with_comments("""
448+
# top
449+
[
450+
# before
451+
452+
# right-before
453+
expr, # middle
454+
# right-after
455+
456+
# after
457+
]
458+
# bottom
459+
""") ==
460+
{
461+
:ok,
462+
[{:expr, [line: 6], nil}],
463+
[
464+
%{
465+
column: 1,
466+
line: 1,
467+
next_eol_count: 1,
468+
previous_eol_count: 1,
469+
text: "# top"
470+
},
471+
%{
472+
column: 3,
473+
line: 3,
474+
next_eol_count: 2,
475+
previous_eol_count: 1,
476+
text: "# before"
477+
},
478+
%{
479+
column: 3,
480+
line: 5,
481+
next_eol_count: 1,
482+
previous_eol_count: 2,
483+
text: "# right-before"
484+
},
485+
%{
486+
column: 9,
487+
line: 6,
488+
next_eol_count: 1,
489+
previous_eol_count: 0,
490+
text: "# middle"
491+
},
492+
%{
493+
column: 3,
494+
line: 7,
495+
next_eol_count: 2,
496+
previous_eol_count: 1,
497+
text: "# right-after"
498+
},
499+
%{
500+
column: 3,
501+
line: 9,
502+
next_eol_count: 1,
503+
previous_eol_count: 2,
504+
text: "# after"
505+
},
506+
%{
507+
column: 1,
508+
line: 11,
509+
next_eol_count: 1,
510+
previous_eol_count: 1,
511+
text: "# bottom"
512+
}
513+
]
514+
}
515+
end
516+
446517
@tag :requires_source
447518
test "compile source" do
448519
assert __MODULE__.__info__(:compile)[:source] == String.to_charlist(__ENV__.file)

0 commit comments

Comments
 (0)