From 2e74063dd99735f98f7a9bf7ea483e4c41cb268a Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Mon, 10 Jun 2024 16:25:57 -0700 Subject: [PATCH] Add issue link. Signed-off-by: Danila Fedorin --- tools/chplcheck/src/rules.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/chplcheck/src/rules.py b/tools/chplcheck/src/rules.py index 28007755ee29..9921bc94c6c9 100644 --- a/tools/chplcheck/src/rules.py +++ b/tools/chplcheck/src/rules.py @@ -46,6 +46,8 @@ def might_incorrectly_report_location(node: AstNode) -> bool: # some NamedDecl nodes currently use the name as the location, which # does not indicate their actual indentation. + # + # https://github.com/chapel-lang/chapel/issues/25208 if isinstance(node, (VarLikeDecl, TupleDecl, ForwardingDecl)): return True