
dotty.tools.xsbt.DiagnosticCode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scala3-sbt-bridge Show documentation
Show all versions of scala3-sbt-bridge Show documentation
sbt compiler bridge for Dotty
package dotty.tools.xsbt;
import java.util.Optional;
final public class DiagnosticCode implements xsbti.DiagnosticCode {
private final String _code;
private final Optional _explanation;
public DiagnosticCode(String code, Optional explanation) {
super();
this._code = code;
this._explanation = explanation;
}
public String code() {
return _code;
}
public Optional explanation() {
return _explanation;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy