WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
Bug 52272
check-webkit-style -- close_expression function doesn't work correctly.
https://bugs.webkit.org/show_bug.cgi?id=52272
Summary
check-webkit-style -- close_expression function doesn't work correctly.
David Levin
Reported
2011-01-11 20:15:23 PST
See summary.
Attachments
Patch
(9.37 KB, patch)
2011-01-11 20:18 PST
,
David Levin
hamaji
: review+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
David Levin
Comment 1
2011-01-11 20:18:11 PST
Created
attachment 78644
[details]
Patch
David Levin
Comment 2
2011-01-11 22:01:03 PST
Comment on
attachment 78644
[details]
Patch At least one person said this was hard to understand so I'll try to make the code easier to read.
Shinichiro Hamaji
Comment 3
2011-01-12 01:35:24 PST
Comment on
attachment 78644
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=78644&action=review
No, I was so sick and my brain stopped working when I told you that I couldn't understand it. Now I feel better and I can understand this patch :) I'm sure this code is good enough to land this as is. I put some nitpicks.
> Tools/Scripts/webkitpy/style/checkers/cpp.py:817 > end_character = ')'
How about creating the regexp string here? if start_character == '(': enclosing_characeter_regexp = r'[\{\}]' elif ...
> Tools/Scripts/webkitpy/style/checkers/cpp.py:829 > + while True:
I think you used while because we start in the middle of the first line, but I'd mildly prefer for-loop: current_column = position.column + 1 net_open = 1 for line_number in xrange(position.row, len(elided): line = elided[line_number][current_column:] while True: ... current_column = 0 return Position(len(elided), -1) because in this way we can clearly see the iterator of the outer loop.
David Levin
Comment 4
2011-01-12 11:43:36 PST
Committed as
http://trac.webkit.org/changeset/75628
David Levin
Comment 5
2011-01-12 11:44:27 PST
(In reply to
comment #3
)
> (From update of
attachment 78644
[details]
) > View in context:
https://bugs.webkit.org/attachment.cgi?id=78644&action=review
> > No, I was so sick and my brain stopped working when I told you that I couldn't understand it. Now I feel better and I can understand this patch :) I'm sure this code is good enough to land this as is. I put some nitpicks. > > > Tools/Scripts/webkitpy/style/checkers/cpp.py:817 > > end_character = ')' > > How about creating the regexp string here? > > if start_character == '(': > enclosing_characeter_regexp = r'[\{\}]' > elif > ... >
Done.
> > Tools/Scripts/webkitpy/style/checkers/cpp.py:829 > > + while True: > > I think you used while because we start in the middle of the first line, but I'd mildly prefer for-loop: > > current_column = position.column + 1 > net_open = 1 > for line_number in xrange(position.row, len(elided): > line = elided[line_number][current_column:] > while True: > ... > current_column = 0 > return Position(len(elided), -1) > > because in this way we can clearly see the iterator of the outer loop.
I really like this. I did it (in a slightly modified way but basically the same idea).
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug