| Index: dart/compiler/java/com/google/dart/compiler/ast/DartNativeDirective.java
|
| diff --git a/dart/compiler/java/com/google/dart/compiler/ast/DartNativeDirective.java b/dart/compiler/java/com/google/dart/compiler/ast/DartNativeDirective.java
|
| deleted file mode 100644
|
| index fb4d998397fada1201bd896db8a6b66b1d6e2ed2..0000000000000000000000000000000000000000
|
| --- a/dart/compiler/java/com/google/dart/compiler/ast/DartNativeDirective.java
|
| +++ /dev/null
|
| @@ -1,31 +0,0 @@
|
| -// Copyright (c) 2012, 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;
|
| -
|
| -/**
|
| - * Implements the #native directive.
|
| - */
|
| -public class DartNativeDirective extends DartDirective {
|
| - private DartStringLiteral nativeUri;
|
| -
|
| - public DartNativeDirective(DartStringLiteral nativeUri) {
|
| - this.nativeUri = becomeParentOf(nativeUri);
|
| - }
|
| -
|
| - public DartStringLiteral getNativeUri() {
|
| - return nativeUri;
|
| - }
|
| -
|
| - @Override
|
| - public void visitChildren(ASTVisitor<?> visitor) {
|
| - super.visitChildren(visitor);
|
| - safelyVisitChild(nativeUri, visitor);
|
| - }
|
| -
|
| - @Override
|
| - public <R> R accept(ASTVisitor<R> visitor) {
|
| - return visitor.visitNativeDirective(this);
|
| - }
|
| -}
|
|
|