Suggestion from code review

dev
Carl Woffenden 2022-01-19 17:48:10 +01:00
parent 566ebce347
commit 786263ea85
1 changed files with 12 additions and 12 deletions

View File

@ -41,6 +41,18 @@ destn: TextIO = sys.stdout
# Set of file Path objects previously inlined (and to ignore if reencountering).
found: Set[Path] = set()
# Compiled regex Patern to handle "#pragma once" in various formats:
#
# #pragma once
# #pragma once
# # pragma once
# #pragma once
# #pragma once // comment
#
# Ignoring commented versions, same as include_regex.
#
pragma_regex: Pattern = re.compile(r'^\s*#\s*pragma\s*once\s*')
# Compiled regex Patern to handle the following type of file includes:
#
# #include "file"
@ -80,18 +92,6 @@ def test_match_include() -> bool:
return True
return False
# Compiled regex Patern to handle "#pragma once" in various formats:
#
# #pragma once
# #pragma once
# # pragma once
# #pragma once
# #pragma once // comment
#
# Ignoring commented versions, same as include_regex.
#
pragma_regex: Pattern = re.compile(r'^\s*#\s*pragma\s*once\s*')
# Simple tests to prove pragma_regex's cases.
#
def text_match_pragma() -> bool: