blob: b90c3f1d0427744bf20a354bf8825eddbe6bfddf [file] [log] [blame]
// Copyright (c) 2022, the R8 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.android.tools.r8.graph;
public interface ProgramOrClasspathDefinition extends Definition {
@Override
default ProgramOrClasspathDefinition asProgramOrClasspathDefinition() {
return this;
}
}