Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
googletest
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
googletest
Commits
1f7bb45e
Commit
1f7bb45e
authored
Aug 14, 2012
by
vladlosev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prevents pump.py from splitting long IWYU pragma lines.
parent
4c975121
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
15 deletions
+23
-15
pump.py
scripts/pump.py
+23
-15
No files found.
scripts/pump.py
View file @
1f7bb45e
...
@@ -704,14 +704,14 @@ def RunCode(env, code_node, output):
...
@@ -704,14 +704,14 @@ def RunCode(env, code_node, output):
RunAtomicCode
(
env
,
atomic_code
,
output
)
RunAtomicCode
(
env
,
atomic_code
,
output
)
def
IsComment
(
cur_line
):
def
Is
SingleLine
Comment
(
cur_line
):
return
'//'
in
cur_line
return
'//'
in
cur_line
def
IsInPreprocessorDire
va
tive
(
prev_lines
,
cur_line
):
def
IsInPreprocessorDire
c
tive
(
prev_lines
,
cur_line
):
if
cur_line
.
lstrip
()
.
startswith
(
'#'
):
if
cur_line
.
lstrip
()
.
startswith
(
'#'
):
return
True
return
True
return
prev_lines
!=
[]
and
prev_lines
[
-
1
]
.
endswith
(
'
\\
'
)
return
prev_lines
and
prev_lines
[
-
1
]
.
endswith
(
'
\\
'
)
def
WrapComment
(
line
,
output
):
def
WrapComment
(
line
,
output
):
...
@@ -768,7 +768,7 @@ def WrapCode(line, line_concat, output):
...
@@ -768,7 +768,7 @@ def WrapCode(line, line_concat, output):
output
.
append
(
prefix
+
cur_line
.
strip
())
output
.
append
(
prefix
+
cur_line
.
strip
())
def
WrapPreprocessorDire
va
tive
(
line
,
output
):
def
WrapPreprocessorDire
c
tive
(
line
,
output
):
WrapCode
(
line
,
'
\\
'
,
output
)
WrapCode
(
line
,
'
\\
'
,
output
)
...
@@ -776,29 +776,37 @@ def WrapPlainCode(line, output):
...
@@ -776,29 +776,37 @@ def WrapPlainCode(line, output):
WrapCode
(
line
,
''
,
output
)
WrapCode
(
line
,
''
,
output
)
def
IsHeaderGuardOrInclude
(
line
):
def
IsMultiLineIWYUPragma
(
line
):
return
re
.
search
(
r'/\* IWYU pragma: '
,
line
)
def
IsHeaderGuardIncludeOrOneLineIWYUPragma
(
line
):
return
(
re
.
match
(
r'^#(ifndef|define|endif\s*//)\s*[\w_]+\s*$'
,
line
)
or
return
(
re
.
match
(
r'^#(ifndef|define|endif\s*//)\s*[\w_]+\s*$'
,
line
)
or
re
.
match
(
r'^#include\s'
,
line
))
re
.
match
(
r'^#include\s'
,
line
)
or
# Don't break IWYU pragmas, either; that causes iwyu.py problems.
re
.
search
(
r'// IWYU pragma: '
,
line
))
def
WrapLongLine
(
line
,
output
):
def
WrapLongLine
(
line
,
output
):
line
=
line
.
rstrip
()
line
=
line
.
rstrip
()
if
len
(
line
)
<=
80
:
if
len
(
line
)
<=
80
:
output
.
append
(
line
)
output
.
append
(
line
)
elif
IsComment
(
line
):
elif
Is
SingleLine
Comment
(
line
):
if
IsHeaderGuard
OrInclude
(
line
):
if
IsHeaderGuard
IncludeOrOneLineIWYUPragma
(
line
):
# The style guide made an exception to allow long header guard lines
# The style guide made an exception to allow long header guard lines
,
#
and include
s.
#
includes and IWYU pragma
s.
output
.
append
(
line
)
output
.
append
(
line
)
else
:
else
:
WrapComment
(
line
,
output
)
WrapComment
(
line
,
output
)
elif
IsInPreprocessorDire
va
tive
(
output
,
line
):
elif
IsInPreprocessorDire
c
tive
(
output
,
line
):
if
IsHeaderGuard
OrInclude
(
line
):
if
IsHeaderGuard
IncludeOrOneLineIWYUPragma
(
line
):
# The style guide made an exception to allow long header guard lines
# The style guide made an exception to allow long header guard lines
,
#
and include
s.
#
includes and IWYU pragma
s.
output
.
append
(
line
)
output
.
append
(
line
)
else
:
else
:
WrapPreprocessorDirevative
(
line
,
output
)
WrapPreprocessorDirective
(
line
,
output
)
elif
IsMultiLineIWYUPragma
(
line
):
output
.
append
(
line
)
else
:
else
:
WrapPlainCode
(
line
,
output
)
WrapPlainCode
(
line
,
output
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment