Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(346)

Unified Diff: runtime/vm/parser.cc

Issue 10896054: Format pointer type declarations more consistently. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/gdbjit_linux.cc ('k') | runtime/vm/snapshot_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/parser.cc
diff --git a/runtime/vm/parser.cc b/runtime/vm/parser.cc
index fd4456805c347d005e4f3deae981a7dfa92b5a14..dcc3e1ae27faf8632222f4efef46e61169dc651b 100644
--- a/runtime/vm/parser.cc
+++ b/runtime/vm/parser.cc
@@ -4919,7 +4919,7 @@ bool Parser::IsForInStatement() {
}
-static bool ContainsAbruptCompletingStatement(SequenceNode *seq);
+static bool ContainsAbruptCompletingStatement(SequenceNode* seq);
static bool IsAbruptCompleting(AstNode* statement) {
return statement->IsReturnNode() ||
@@ -4930,7 +4930,7 @@ static bool IsAbruptCompleting(AstNode* statement) {
}
-static bool ContainsAbruptCompletingStatement(SequenceNode *seq) {
+static bool ContainsAbruptCompletingStatement(SequenceNode* seq) {
for (int i = 0; i < seq->length(); i++) {
if (IsAbruptCompleting(seq->NodeAt(i))) {
return true;
« no previous file with comments | « runtime/vm/gdbjit_linux.cc ('k') | runtime/vm/snapshot_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698