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

Unified Diff: pkg/compiler/lib/src/cps_ir/cps_ir_nodes.dart

Issue 1560433003: dart2js cps: Fix some analyzer hints in the CPS backend. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Rebase Created 4 years, 11 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/cps_ir/cps_ir_builder_task.dart ('k') | pkg/compiler/lib/src/cps_ir/inline.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/cps_ir/cps_ir_nodes.dart
diff --git a/pkg/compiler/lib/src/cps_ir/cps_ir_nodes.dart b/pkg/compiler/lib/src/cps_ir/cps_ir_nodes.dart
index 8999b560ac409ab9ed3bfebc9346aa88dbe8a664..e34a4a482a30b809c332d1227216d1c7c7ebad25 100644
--- a/pkg/compiler/lib/src/cps_ir/cps_ir_nodes.dart
+++ b/pkg/compiler/lib/src/cps_ir/cps_ir_nodes.dart
@@ -2463,17 +2463,17 @@ class DefinitionCopyingVisitor extends Visitor<Definition> {
Definition visit(Node node) => node.accept(this);
- Definition visitFunctionDefinition(FunctionDefinition node) {}
- Definition visitLetPrim(LetPrim node) {}
- Definition visitLetCont(LetCont node) {}
- Definition visitLetHandler(LetHandler node) {}
- Definition visitLetMutable(LetMutable node) {}
- Definition visitInvokeContinuation(InvokeContinuation node) {}
- Definition visitThrow(Throw node) {}
- Definition visitRethrow(Rethrow node) {}
- Definition visitBranch(Branch node) {}
- Definition visitUnreachable(Unreachable node) {}
- Definition visitContinuation(Continuation node) {}
+ visitFunctionDefinition(FunctionDefinition node) {}
+ visitLetPrim(LetPrim node) {}
+ visitLetCont(LetCont node) {}
+ visitLetHandler(LetHandler node) {}
+ visitLetMutable(LetMutable node) {}
+ visitInvokeContinuation(InvokeContinuation node) {}
+ visitThrow(Throw node) {}
+ visitRethrow(Rethrow node) {}
+ visitBranch(Branch node) {}
+ visitUnreachable(Unreachable node) {}
+ visitContinuation(Continuation node) {}
Definition visitInvokeStatic(InvokeStatic node) {
return new InvokeStatic(node.target, node.selector, getList(node.arguments),
@@ -2776,22 +2776,22 @@ class CopyingVisitor extends TrampolineRecursiveVisitor {
sourceInformation: node.sourceInformation));
}
- Node visitThrow(Throw node) {
+ visitThrow(Throw node) {
plug(new Throw(_definitions.getCopy(node.value)));
}
- Node visitRethrow(Rethrow node) {
+ visitRethrow(Rethrow node) {
plug(new Rethrow());
}
- Node visitBranch(Branch node) {
+ visitBranch(Branch node) {
plug(new Branch.loose(_definitions.getCopy(node.condition),
_copies[node.trueContinuation.definition],
_copies[node.falseContinuation.definition])
..isStrictCheck = node.isStrictCheck);
}
- Node visitUnreachable(Unreachable node) {
+ visitUnreachable(Unreachable node) {
plug(new Unreachable());
}
}
« no previous file with comments | « pkg/compiler/lib/src/cps_ir/cps_ir_builder_task.dart ('k') | pkg/compiler/lib/src/cps_ir/inline.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698