Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
flatpak-qt-creator
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Marco Bubke
flatpak-qt-creator
Commits
81b0f81c
Commit
81b0f81c
authored
15 years ago
by
Roberto Raggi
Browse files
Options
Downloads
Patches
Plain Diff
Rewrite (!a && !b) as !(a || b).
parent
e2ef1d82
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/plugins/cppeditor/cppquickfix.cpp
+75
-2
75 additions, 2 deletions
src/plugins/cppeditor/cppquickfix.cpp
with
75 additions
and
2 deletions
src/plugins/cppeditor/cppquickfix.cpp
+
75
−
2
View file @
81b0f81c
...
...
@@ -35,6 +35,8 @@
#include
<TranslationUnit.h>
#include
<ASTVisitor.h>
#include
<AST.h>
#include
<ASTPatternBuilder.h>
#include
<ASTMatcher.h>
#include
<Token.h>
#include
<cpptools/cppmodelmanagerinterface.h>
...
...
@@ -111,6 +113,66 @@ public:
}
};
class
RewriteLogicalAndOp
:
public
QuickFixOperation
{
public:
RewriteLogicalAndOp
(
Document
::
Ptr
doc
,
const
Snapshot
&
snapshot
)
:
QuickFixOperation
(
doc
,
snapshot
),
matcher
(
doc
->
translationUnit
()),
left
(
0
),
right
(
0
),
pattern
(
0
)
{}
virtual
QString
description
()
const
{
return
QLatin1String
(
"Rewrite condition using ||"
);
// ### tr?
}
bool
match
(
BinaryExpressionAST
*
expression
)
{
left
=
mk
.
UnaryExpression
();
right
=
mk
.
UnaryExpression
();
pattern
=
mk
.
BinaryExpression
(
left
,
right
);
if
(
expression
->
match
(
pattern
,
&
matcher
)
&&
tokenAt
(
pattern
->
binary_op_token
).
is
(
T_AMPER_AMPER
)
&&
tokenAt
(
left
->
unary_op_token
).
is
(
T_EXCLAIM
)
&&
tokenAt
(
right
->
unary_op_token
).
is
(
T_EXCLAIM
))
{
return
true
;
}
return
false
;
}
virtual
void
apply
()
{
// nothing to do.
QTextCursor
binaryOp
=
selectToken
(
pattern
->
binary_op_token
);
QTextCursor
firstUnaryOp
=
selectToken
(
left
->
unary_op_token
);
QTextCursor
secondUnaryOp
=
selectToken
(
right
->
unary_op_token
);
QTextCursor
tc
=
textCursor
();
tc
.
beginEditBlock
();
firstUnaryOp
.
removeSelectedText
();
secondUnaryOp
.
removeSelectedText
();
binaryOp
.
insertText
(
QLatin1String
(
"||"
));
firstUnaryOp
.
insertText
(
QLatin1String
(
"!("
));
QTextCursor
endOfRightUnaryExpression
=
selectToken
(
right
->
lastToken
()
-
1
);
endOfRightUnaryExpression
.
setPosition
(
endOfRightUnaryExpression
.
position
());
// ### method
endOfRightUnaryExpression
.
insertText
(
QLatin1String
(
")"
));
tc
.
endEditBlock
();
}
private
:
ASTMatcher
matcher
;
ASTPatternBuilder
mk
;
UnaryExpressionAST
*
left
;
UnaryExpressionAST
*
right
;
BinaryExpressionAST
*
pattern
;
};
}
// end of anonymous namespace
...
...
@@ -183,8 +245,6 @@ int CPPQuickFixCollector::startCompletion(TextEditor::ITextEditable *editable)
const
SemanticInfo
info
=
_editor
->
semanticInfo
();
QTextCursor
textCursor
=
_editor
->
textCursor
();
if
(
info
.
revision
!=
_editor
->
document
()
->
revision
())
{
// outdated
qWarning
()
<<
"TODO: outdated semantic info, force a reparse."
;
...
...
@@ -197,6 +257,19 @@ int CPPQuickFixCollector::startCompletion(TextEditor::ITextEditable *editable)
const
QList
<
AST
*>
path
=
astPath
(
_editor
->
textCursor
());
// ### build the list of the quick fix ops by scanning path.
RewriteLogicalAndOp
*
op
=
new
RewriteLogicalAndOp
(
info
.
doc
,
info
.
snapshot
);
QuickFixOperationPtr
quickFix
(
op
);
for
(
int
i
=
path
.
size
()
-
1
;
i
!=
-
1
;
--
i
)
{
AST
*
node
=
path
.
at
(
i
);
if
(
BinaryExpressionAST
*
binary
=
node
->
asBinaryExpression
())
{
if
(
op
->
match
(
binary
))
{
_quickFixes
.
append
(
quickFix
);
break
;
}
}
}
if
(
!
_quickFixes
.
isEmpty
())
return
editable
->
position
();
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment