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

scala.cli.internal.PPrintStringPrefixSubst 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;

// Remove once we can use https://github.com/com-lihaoyi/PPrint/pull/80

@TargetClass(className = "pprint.StringPrefix$")
final class PPrintStringPrefixSubst {

  @Substitute
  String apply(scala.collection.Iterable i) {
    String name = (new PPrintStringPrefixHelper()).apply((scala.collection.Iterable) i);
    return name;
  }

}