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

Unified Diff: runtime/vm/parser.cc

Issue 2455983002: Small cleanups and linter fixes. (Closed)
Patch Set: Small cleanups Created 4 years, 2 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/isolate_reload_test.cc ('k') | runtime/vm/regexp.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 981c0f077b6040725ecc94e3f6861626efe5f41f..a68545224d8a4a9b9095233338d94cf0032bc425 100644
--- a/runtime/vm/parser.cc
+++ b/runtime/vm/parser.cc
@@ -9240,7 +9240,7 @@ AstNode* Parser::ParseAwaitForStatement(String* label_name) {
new(Z) LocalVariable(loop_var_assignment_pos,
loop_var_assignment_pos,
*loop_var_name,
- loop_var_type);;
+ loop_var_type);
if (loop_var_is_final) {
loop_var->set_is_final();
}
@@ -9479,7 +9479,7 @@ AstNode* Parser::ParseForInStatement(TokenPosition forin_pos,
new(Z) LocalVariable(loop_var_pos,
loop_var_assignment_pos,
*loop_var_name,
- loop_var_type);;
+ loop_var_type);
if (loop_var_is_final) {
loop_var->set_is_final();
}
« no previous file with comments | « runtime/vm/isolate_reload_test.cc ('k') | runtime/vm/regexp.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698