Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
flatpak-qt-creator
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
38be5640
Commit
38be5640
authored
Jan 06, 2009
by
Roberto Raggi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WhileStatementAST::lastToken().
parent
7c6c439c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
shared/cplusplus/AST.cpp
shared/cplusplus/AST.cpp
+7
-2
No files found.
shared/cplusplus/AST.cpp
View file @
38be5640
...
...
@@ -2796,10 +2796,15 @@ unsigned WhileStatementAST::firstToken() const
unsigned
WhileStatementAST
::
lastToken
()
const
{
assert
(
0
&&
"review me"
);
if
(
statement
)
return
statement
->
lastToken
();
return
rparen_token
+
1
;
else
if
(
rparen_token
)
return
rparen_token
+
1
;
else
if
(
condition
)
return
condition
->
lastToken
();
else
if
(
lparen_token
)
return
lparen_token
+
1
;
return
while_token
+
1
;
}
CPLUSPLUS_END_NAMESPACE
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