blob: 38a77adaba1bcd6b69f53f7d2e7f8196e2d4dd27 [file] [log] [blame]
// Copyright (c) 2018, 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.kotlin;
public final class KotlinFile extends KotlinInfo {
@Override
public Kind getKind() {
return Kind.File;
}
@Override
public boolean isFile() {
return true;
}
@Override
public KotlinFile asFile() {
return this;
}
KotlinFile() {
}
}