Index: compiler/java/com/google/dart/compiler/backend/js/ast/JsPostfixOperation.java |
diff --git a/compiler/java/com/google/dart/compiler/backend/js/ast/JsPostfixOperation.java b/compiler/java/com/google/dart/compiler/backend/js/ast/JsPostfixOperation.java |
deleted file mode 100644 |
index a33536f6c0d5c45a88fb7cf6df7f8db8bb4c0014..0000000000000000000000000000000000000000 |
--- a/compiler/java/com/google/dart/compiler/backend/js/ast/JsPostfixOperation.java |
+++ /dev/null |
@@ -1,42 +0,0 @@ |
-// Copyright (c) 2011, 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. |
- |
-package com.google.dart.compiler.backend.js.ast; |
- |
-/** |
- * A JavaScript postfix operation. |
- */ |
-public final class JsPostfixOperation extends JsUnaryOperation { |
- |
- public JsPostfixOperation(JsUnaryOperator op) { |
- this(op, null); |
- } |
- |
- public JsPostfixOperation(JsUnaryOperator op, JsExpression arg) { |
- super(op, arg); |
- } |
- |
- @Override |
- public boolean isDefinitelyNotNull() { |
- return true; |
- } |
- |
- @Override |
- public boolean isDefinitelyNull() { |
- return false; |
- } |
- |
- @Override |
- public void traverse(JsVisitor v, JsContext ctx) { |
- if (v.visit(this, ctx)) { |
- super.traverse(v, ctx); |
- } |
- v.endVisit(this, ctx); |
- } |
- |
- @Override |
- public NodeKind getKind() { |
- return NodeKind.POSTFIX_OP; |
- } |
-} |