This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package demo | |
import java.io.{File, PrintWriter, StringWriter} | |
import scala.annotation.nowarn | |
import scala.reflect.internal.Flags.STATIC | |
import scala.reflect.internal.util.ScalaClassLoader.URLClassLoader | |
import scala.tools.nsc.backend.jvm.AsmUtils | |
import scala.tools.nsc.{Global, Phase} | |
import scala.tools.nsc.plugins.{Plugin, PluginComponent} | |
import scala.tools.nsc.transform.TypingTransformers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tail local.sbt project/local.sbt | |
==> local.sbt <== | |
TaskKey[Unit]("printBillOfMaterials") := (Def.taskDyn { | |
val proj = thisProject.value | |
val filter = ScopeFilter(inProjects(proj.aggregate: _*)) | |
Def.task { | |
(updateSbtClassifiers.value :: update.all(filter).value.toList).flatMap(_.configurations).flatMap(_.modules).flatMap(_.artifacts).flatMap(_._1.url).distinct.foreach(println) | |
() | |
} | |
}).value |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BSStrategy = { | |
version: 1, | |
displayName: "Kayo", | |
accepts: { | |
method: "predicateOnTab", | |
format: "%K LIKE[c] '*kayosports.com.au/*/*'", | |
args: ["URL"] | |
}, | |
toggle: function () { console.log("toggle"); document.querySelector('[aria-label="Toggle play/pause"]').click(); }, | |
pause: function () { console.log("pause") }, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class covariant extends scala.annotation.StaticAnnotation with scala.annotation.TypeConstraint | |
object SetFactory { | |
def empty[K]: Set[K @covariant] = Set.empty[K @covariant] | |
} | |
class Client { | |
val x = if (true) Set("") else SetFactory.empty | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package demo.compat | |
import scala.collection.{GenIterableLike, mutable} | |
import scala.tools.nsc.plugins.{Plugin, PluginComponent} | |
import scala.tools.nsc.{Global, Phase, Settings} | |
object IteratorLinter { | |
def main(args: Array[String]): Unit = { | |
println("go!") | |
val g = new Global(new Settings) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl --silent --fail https://raw.githubusercontent.com/sindresorhus/github-markdown-css/gh-pages/github-markdown.css > /tmp/gh.css && ( | |
echo '<html><head><link rel="stylesheet" href="/tmp/gh.css"/><style>@page { size: A4 landscape; }</style> | |
</head><body><div class="markdown-body">' && \ | |
gh api repos/lightbend/scala-team/issues/188 -t '{{.body}}' | | |
gh api --field text=@- /markdown && \ | |
echo '</div></body></html>' \ | |
) > /tmp/out.html | |
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --disable-gpu --headless --print-to-pdf-no-header --print-to-pdf=/tmp/out.pdf /tmp/out.html | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class M { | |
type AnyIterableOps[+A, Repr] = collection.IterableOps[A, Any, Repr] | |
def richMap[K, V, CC <: collection.MapOps[K, V, AnyIterableOps, CC]] = () | |
def foo(m: scala.collection.immutable.Map[String, String]): AnyIterableOps[(String, String), scala.collection.immutable.Map[String, String]] = m | |
richMap[Int, String, scala.collection.immutable.Map[Int, String]] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
object FindCollectionReturningHofs extends App { | |
import scala.tools.nsc._ | |
val global = new Global(new Settings) | |
import global._ | |
import global.settings | |
settings.usejavacp.value = true | |
settings.embeddedDefaults(getClass.getClassLoader) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+++ MANIFEST.MF | |
Manifest-Version: 1.0 | |
Automatic-Module-Name: scala.tools.nsc | |
Bundle-ManifestVersion: 2 | |
Bundle-Name: Scala Compiler | |
Bundle-RequiredExecutionEnvironment: JavaSE-1.8 | |
Bundle-SymbolicName: org.scala-lang.scala-compiler | |
Bundle-Version: 2.12.15.v20210703-050957-52d9dbd | |
Class-Path: scala-reflect.jar scala-library.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"jmhVersion" : "1.29", | |
"benchmark" : "org.sample.Jdk11PerfRegressionBenchmark.setPhase", | |
"mode" : "avgt", | |
"threads" : 1, | |
"forks" : 2, | |
"jvm" : "/Users/jz/.jabba/jdk/[email protected]/Contents/Home/bin/java", | |
"jvmArgs" : [ | |
], |
NewerOlder