Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Preserve newlines before comments #64

Merged
merged 2 commits into from
Nov 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,32 @@ exclude: tests/data

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.5.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files

- repo: https://github.com/PyCQA/pylint
rev: v2.17.3
rev: v3.0.1
hooks:
- id: pylint
additional_dependencies:
- setuptools

- repo: https://github.com/psf/black
rev: 23.3.0
rev: 23.10.1
hooks:
- id: black

- repo: https://github.com/asottile/pyupgrade
rev: v3.3.2
rev: v3.15.0
hooks:
- id: pyupgrade
args: ["--py37-plus"]

- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.33.0
rev: v0.37.0
hooks:
- id: markdownlint-fix
29 changes: 29 additions & 0 deletions tests/test_formatting.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import pathlib
import sys
import unittest
import textwrap

# Sets up sys.path and provides helpers
import testutils as tu
Expand Down Expand Up @@ -62,6 +63,34 @@ def test_index_slice(self):
self.assertEqual(self._format(b"data[1 :1-1];").rstrip(), b"data[1 : 1 - 1];")
self.assertEqual(self._format(b"data[f(): ];").rstrip(), b"data[f() :];")

def test_format_comment_separator(self):
"""Validates that we preserve the separator before a comment. This is a
regression test for #62."""

self.assertEqual(
self._format(b"global x = 42; # Inline.\n"), b"global x = 42; # Inline.\n"
)

code = textwrap.dedent(
"""\
event zeek_init() {}
# Comment on next line.
"""
)

expected = textwrap.dedent(
"""\
event zeek_init()
\t{ }
# Comment on next line.
"""
)

# We split out lines here to work around different line endings on Windows.
self.assertEqual(
self._format(code.encode()).decode().splitlines(), expected.splitlines()
)


class TestFormattingErrors(unittest.TestCase):
def _format(self, content):
Expand Down
13 changes: 9 additions & 4 deletions zeekscript/formatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -1336,10 +1336,15 @@ def __init__(self, script, node, ostream, indent=0, hints=None):
class MinorCommentFormatter(CommentFormatter):
def format(self):
node = self.node
# There's something before us and it's not a newline, then
# separate this comment from it with a space:
if node.prev_cst_sibling and not node.prev_cst_sibling.is_nl():
self._write_sp()

# Preserve separator to previous node if any.
if node.prev_cst_sibling:
if node.prev_cst_sibling.is_nl():
# Keep newlines verbatim.
self._write_nl()
else:
# If we are on the same line, normalize to exactly one space.
self._write_sp()

self._format_token() # Write comment itself

Expand Down
Loading