mirror of
https://github.com/servo/servo.git
synced 2025-08-02 04:00:32 +01:00
Auto merge of #18553 - mdboom:tidy-support-multiline-strings, r=wafflespeanut
Make tidy aware of Rust multiline strings <!-- Please describe your changes on the following line: --> This makes the internal tidy script properly ignore the contents of Rust multiline strings. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes fix #18551 (github issue number if applicable). <!-- Either: --> - [X] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/18553) <!-- Reviewable:end -->
This commit is contained in:
commit
a8a25dac52
6 changed files with 55 additions and 15 deletions
|
@ -467,15 +467,6 @@ def check_rust(file_name, lines):
|
||||||
prev_indent = indent
|
prev_indent = indent
|
||||||
indent = len(original_line) - len(line)
|
indent = len(original_line) - len(line)
|
||||||
|
|
||||||
# Hack for components/selectors/build.rs
|
|
||||||
if multi_line_string:
|
|
||||||
if line.startswith('"#'):
|
|
||||||
multi_line_string = False
|
|
||||||
else:
|
|
||||||
continue
|
|
||||||
if line.endswith('r#"'):
|
|
||||||
multi_line_string = True
|
|
||||||
|
|
||||||
is_attribute = re.search(r"#\[.*\]", line)
|
is_attribute = re.search(r"#\[.*\]", line)
|
||||||
is_comment = re.search(r"^//|^/\*|^\*", line)
|
is_comment = re.search(r"^//|^/\*|^\*", line)
|
||||||
|
|
||||||
|
@ -494,6 +485,14 @@ def check_rust(file_name, lines):
|
||||||
line = merged_lines + line
|
line = merged_lines + line
|
||||||
merged_lines = ''
|
merged_lines = ''
|
||||||
|
|
||||||
|
if multi_line_string:
|
||||||
|
line, count = re.subn(
|
||||||
|
r'^(\\.|[^"\\])*?"', '', line, count=1)
|
||||||
|
if count == 1:
|
||||||
|
multi_line_string = False
|
||||||
|
else:
|
||||||
|
continue
|
||||||
|
|
||||||
# Ignore attributes, comments, and imports
|
# Ignore attributes, comments, and imports
|
||||||
# Keep track of whitespace to enable checking for a merged import block
|
# Keep track of whitespace to enable checking for a merged import block
|
||||||
if import_block:
|
if import_block:
|
||||||
|
@ -504,9 +503,17 @@ def check_rust(file_name, lines):
|
||||||
import_block = False
|
import_block = False
|
||||||
|
|
||||||
# get rid of strings and chars because cases like regex expression, keep attributes
|
# get rid of strings and chars because cases like regex expression, keep attributes
|
||||||
if not is_attribute:
|
if not is_attribute and not is_comment:
|
||||||
line = re.sub(r'"(\\.|[^\\"])*?"', '""', line)
|
line = re.sub(r'"(\\.|[^\\"])*?"', '""', line)
|
||||||
line = re.sub(r"'(\\.|[^\\'])*?'", "''", line)
|
line = re.sub(
|
||||||
|
r"'(\\.|[^\\']|(\\x[0-9a-fA-F]{2})|(\\u{[0-9a-fA-F]{1,6}}))'",
|
||||||
|
"''", line)
|
||||||
|
# If, after parsing all single-line strings, we still have
|
||||||
|
# an odd number of double quotes, this line starts a
|
||||||
|
# multiline string
|
||||||
|
if line.count('"') % 2 == 1:
|
||||||
|
line = re.sub(r'"(\\.|[^\\"])*?$', '""', line)
|
||||||
|
multi_line_string = True
|
||||||
|
|
||||||
# get rid of comments
|
# get rid of comments
|
||||||
line = re.sub('//.*?$|/\*.*?$|^\*.*?$', '//', line)
|
line = re.sub('//.*?$|/\*.*?$|^\*.*?$', '//', line)
|
||||||
|
|
28
python/tidy/servo_tidy_tests/multiline_string.rs
Normal file
28
python/tidy/servo_tidy_tests/multiline_string.rs
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
|
|
||||||
|
// This puts a "multi-line string
|
||||||
|
// inside of a comment" and then subsequently has a hyphenated-phrase
|
||||||
|
|
||||||
|
|
||||||
|
const FOO: &'static str = "Do not confuse 'apostrophes',
|
||||||
|
They can be 'lifetimes' or 'characters'";
|
||||||
|
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
assert!(foo("test
|
||||||
|
foo-bar"));
|
||||||
|
|
||||||
|
assert!(foo("test
|
||||||
|
test2 \"
|
||||||
|
foo-bar"));
|
||||||
|
|
||||||
|
assert!(foo("test
|
||||||
|
test2 \
|
||||||
|
foo-bar"));
|
||||||
|
|
||||||
|
println!("This is a multiline string with a URL, which kinda, \
|
||||||
|
sorta looks like a comment https://github.com/servo/servo/");
|
||||||
|
}
|
|
@ -266,6 +266,11 @@ class CheckTidiness(unittest.TestCase):
|
||||||
lst = list(file_list)
|
lst = list(file_list)
|
||||||
self.assertEqual([os.path.join(base_path, 'whee', 'test.rs')], lst)
|
self.assertEqual([os.path.join(base_path, 'whee', 'test.rs')], lst)
|
||||||
|
|
||||||
|
def test_multiline_string(self):
|
||||||
|
errors = tidy.collect_errors_for_files(iterFile('multiline_string.rs'), [], [tidy.check_rust], print_text=True)
|
||||||
|
self.assertNoMoreErrors(errors)
|
||||||
|
|
||||||
|
|
||||||
def do_tests():
|
def do_tests():
|
||||||
suite = unittest.TestLoader().loadTestsFromTestCase(CheckTidiness)
|
suite = unittest.TestLoader().loadTestsFromTestCase(CheckTidiness)
|
||||||
return 0 if unittest.TextTestRunner(verbosity=2).run(suite).wasSuccessful() else 1
|
return 0 if unittest.TextTestRunner(verbosity=2).run(suite).wasSuccessful() else 1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue