blob: fb4d998397fada1201bd896db8a6b66b1d6e2ed2 [file] [log] [blame]
// 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);
}
}