public ScalaSettings()

in src/main/java/com/googlesource/gerrit/plugins/scripting/scala/ScalaSettings.java [32:45]


  public ScalaSettings() {
    settings = new Settings();
    settings.usejavacp().tryToSetFromPropertyValue("true");
    settings.exposeEmptyPackage().tryToSetFromPropertyValue("true");
    settings.Ylogcp().tryToSetFromPropertyValue(CLASSPATH_DEBUG);
    settings.verbose().tryToSetFromPropertyValue(VERBOSE_COMPILE_OUTPUT);
    settings.feature().tryToSetFromPropertyValue("true");

    settings.outputDirs().setSingleOutput(initVirtualDirectory());
    settings
        .classpath()
        .tryToSetFromPropertyValue(
            classPathOf(PluginLoader.class) + ":" + classPathOf(this.getClass()));
  }