forked from mirrors/gecko-dev
<!-- Please describe your changes on the following line: -->
Allow more than one brace per line when checking spec links in test-tidy.
We had problems caused by `if unsafe { ... } {`.
---
<!-- 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 have tests.
<!-- 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. -->
Source-Repo: https://github.com/servo/servo
Source-Revision: 07b0770d21d2b374f9a30c98cdde5ae5531aaecb
--HG--
extra : subtree_source : https%3A//hg.mozilla.org/projects/converted-servo-linear
extra : subtree_revision : 704217fae2967508dd9fb049ba7af111df18c1f9
32 lines
879 B
Rust
32 lines
879 B
Rust
/* 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/. */
|
|
|
|
impl SpecLinkMethods for SpecLink {
|
|
amacro!("Macros inside impls should trigger spec checks.")
|
|
|
|
// Method declarations should trigger spec checks.
|
|
fn Test(&self) -> f32 {
|
|
amacro!("Macros inside function declarations should not trigger spec checks.");
|
|
if unsafe { false } {
|
|
}
|
|
amacro!("Even if there's weird brace counts.");
|
|
0
|
|
}
|
|
|
|
// A spec link.
|
|
// https://example.com/
|
|
fn Foo() {}
|
|
|
|
/// A spec link.
|
|
/// https://example.com/
|
|
fn Foo() {}
|
|
|
|
/// A spec link.
|
|
/// https://example.com/
|
|
/// Doc comments are OK
|
|
// Regular comments are OK
|
|
#[allow(attributes_too)]
|
|
fn Foo() {}
|
|
}
|
|
|