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

Unified Diff: pkg/compiler/lib/src/kernel/kernel.dart

Issue 2360603002: Roll kernel to latest and add baseline test. (Closed)
Patch Set: Created 4 years, 3 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 | « pkg/compiler/lib/src/elements/modelx.dart ('k') | pkg/compiler/lib/src/kernel/kernel_visitor.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/kernel/kernel.dart
diff --git a/pkg/compiler/lib/src/kernel/kernel.dart b/pkg/compiler/lib/src/kernel/kernel.dart
index bd1963153afd576368b711ade1bdf3f526596386..92dca5742a6973e7979e25688da69ab30aabc363 100644
--- a/pkg/compiler/lib/src/kernel/kernel.dart
+++ b/pkg/compiler/lib/src/kernel/kernel.dart
@@ -210,7 +210,7 @@ class Kernel {
}
});
classNode.typeParameters.addAll(typeVariablesToIr(cls.typeVariables));
- for (ir.InterfaceType interface in typesToIr(cls.interfaces.toList())) {
+ for (ir.InterfaceType interface in typesToIr(cls.interfaces.reverse().toList())) {
asgerf 2016/09/21 15:24:01 Long line.
Johnni Winther 2016/09/22 08:10:58 Done.
classNode.implementedTypes.add(interface);
}
});
@@ -442,7 +442,6 @@ class Kernel {
addWork(field, () {
setParent(fieldNode, field);
if (!field.isMalformed &&
- !field.isInstanceMember &&
field.initializer != null) {
KernelVisitor visitor =
new KernelVisitor(field, field.treeElements, this);
« no previous file with comments | « pkg/compiler/lib/src/elements/modelx.dart ('k') | pkg/compiler/lib/src/kernel/kernel_visitor.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698