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

Unified Diff: sdk/lib/_internal/compiler/implementation/ir/ir_nodes.dart

Issue 85813002: Revert "Revert "Build new IR for functions returning a constant."" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: feedback by kasper Created 7 years, 1 month 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: sdk/lib/_internal/compiler/implementation/ir/ir_nodes.dart
diff --git a/sdk/lib/_internal/compiler/implementation/ir/ir_nodes.dart b/sdk/lib/_internal/compiler/implementation/ir/ir_nodes.dart
new file mode 100644
index 0000000000000000000000000000000000000000..7b3793a2518865a6ab988136e7c5d504ca2db533
--- /dev/null
+++ b/sdk/lib/_internal/compiler/implementation/ir/ir_nodes.dart
@@ -0,0 +1,74 @@
+// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+// IrNodes are kept in a separate library to have precise control over their
+// dependencies on other parts of the system.
+library dart2js.ir_nodes;
+
+import '../dart2jslib.dart' show Constant;
+
+/**
+ * A pair of source offset and an identifier name. Identifier names are used in
+ * the Javascript backend to generate source maps.
+ */
+class PositionWithIdentifierName {
+ final int offset;
+ final String sourceName;
+ PositionWithIdentifierName(this.offset, this.sourceName);
+}
+
+abstract class IrNode {
+ final /* int | PositionWithIdentifierName */ position;
+
+ const IrNode(this.position);
+
+ int get offset => (position is int) ? position : position.offset;
+
+ String get sourceName => (position is int) ? null : position.sourceName;
+
+ accept(IrNodesVisitor visitor);
+}
+
+class IrFunction extends IrNode {
+ final List<IrNode> statements;
+
+ final int endOffset;
+ final int namePosition;
+
+ IrFunction(position, this.endOffset, this.namePosition, this.statements)
+ : super(position);
+
+ accept(IrNodesVisitor visitor) => visitor.visitIrFunction(this);
+}
+
+class IrReturn extends IrNode {
+ final IrNode value;
+
+ IrReturn(position, this.value) : super(position);
+
+ accept(IrNodesVisitor visitor) => visitor.visitIrReturn(this);
+}
+
+class IrConstant extends IrNode {
+ final Constant value;
+
+ IrConstant(position, this.value) : super(position);
+
+ accept(IrNodesVisitor visitor) => visitor.visitIrConstant(this);
+}
+
+
+abstract class IrNodesVisitor<T> {
+ T visit(IrNode node) => node.accept(this);
+
+ void visitAll(List<IrNode> nodes) {
+ for (IrNode n in nodes) visit(n);
+ }
+
+ T visitNode(IrNode node);
+
+ T visitIrFunction(IrFunction node) => visitNode(node);
+ T visitIrReturn(IrReturn node) => visitNode(node);
+ T visitIrConstant(IrConstant node) => visitNode(node);
+}

Powered by Google App Engine
This is Rietveld 408576698