All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scala.cli.internal.Argv0SubstWindows Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package scala.cli.internal;

import com.oracle.svm.core.annotate.Substitute;
import com.oracle.svm.core.annotate.TargetClass;
import org.graalvm.nativeimage.Platform;
import org.graalvm.nativeimage.Platforms;

import java.nio.file.Path;

@TargetClass(className = "scala.cli.internal.Argv0")
@Platforms({Platform.WINDOWS.class})
final class Argv0SubstWindows {

    @Substitute
    String get(String defaultValue) {
        return coursier.jniutils.ModuleFileName.get();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy