blob: 0adb02f10515f8b48a63286ee8171fc0d861b619 [file] [log] [blame]
// 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 an empty Dart statement.
*/
public class DartEmptyStatement extends DartStatement {
@Override
public void visitChildren(ASTVisitor<?> visitor) {
}
@Override
public <R> R accept(ASTVisitor<R> visitor) {
return visitor.visitEmptyStatement(this);
}
}