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

Unified Diff: lib/kernel.dart

Issue 2417843003: Don't use const, lists should be mutable in Kernel. (Closed)
Patch Set: 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 | « no previous file | lib/kernel_visitor.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/kernel.dart
diff --git a/lib/kernel.dart b/lib/kernel.dart
index 9da1e391d951ee20c2c95dbb92fddd714b23fe02..cdbbeb98f177f62d8218204df092ac013270471b 100644
--- a/lib/kernel.dart
+++ b/lib/kernel.dart
@@ -252,7 +252,7 @@ class Kernel {
// TODO(ahe): Remove this method when dart2js support generic type arguments.
List<ir.TypeParameter> typeParametersNotImplemented() {
- return const <ir.TypeParameter>[];
+ return <ir.TypeParameter>[];
}
ir.FunctionType functionTypeToIr(FunctionType type) {
« no previous file with comments | « no previous file | lib/kernel_visitor.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698