| Index: dart/compiler/java/com/google/dart/compiler/ast/DartDoubleLiteral.java
|
| diff --git a/dart/compiler/java/com/google/dart/compiler/ast/DartDoubleLiteral.java b/dart/compiler/java/com/google/dart/compiler/ast/DartDoubleLiteral.java
|
| deleted file mode 100644
|
| index f4bbcaca7161355976dbb25eb17c9e14c2d6dda1..0000000000000000000000000000000000000000
|
| --- a/dart/compiler/java/com/google/dart/compiler/ast/DartDoubleLiteral.java
|
| +++ /dev/null
|
| @@ -1,34 +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.ast;
|
| -
|
| -/**
|
| - * Represents a Dart double literal value.
|
| - */
|
| -public class DartDoubleLiteral extends DartLiteral {
|
| -
|
| - public static DartDoubleLiteral get(double x) {
|
| - return new DartDoubleLiteral(x);
|
| - }
|
| -
|
| - private final double value;
|
| -
|
| - private DartDoubleLiteral(double value) {
|
| - this.value = value;
|
| - }
|
| -
|
| - public double getValue() {
|
| - return value;
|
| - }
|
| -
|
| - @Override
|
| - public void visitChildren(ASTVisitor<?> visitor) {
|
| - }
|
| -
|
| - @Override
|
| - public <R> R accept(ASTVisitor<R> visitor) {
|
| - return visitor.visitDoubleLiteral(this);
|
| - }
|
| -}
|
|
|