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

Unified Diff: lib/src/codegen/js_codegen.dart

Issue 1762283003: Various cleanup (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 10 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
Index: lib/src/codegen/js_codegen.dart
diff --git a/lib/src/codegen/js_codegen.dart b/lib/src/codegen/js_codegen.dart
index cd4b5c9b812a71288b821e696a00ae6110152b5a..c0eaacbc82be8f90643ea9828dc717bc63134b04 100644
--- a/lib/src/codegen/js_codegen.dart
+++ b/lib/src/codegen/js_codegen.dart
@@ -3499,7 +3499,7 @@ class JSCodegenVisitor extends GeneralizingAstVisitor
// TODO(jmesserly): this will need to be a generic method, if we ever want to
// self-host strong mode.
- List /*<T>*/ _visitList /*<T>*/ (Iterable<AstNode> nodes) {
+ List/*<T>*/ _visitList/*<T>*/(Iterable<AstNode> nodes) {
if (nodes == null) return null;
var result = /*<T>*/ [];
for (var node in nodes) result.add(_visit(node));

Powered by Google App Engine
This is Rietveld 408576698