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
[info] Compiling 1 Scala source to /Users/sarah/Code/parser-fail/target/scala-2.12/classes ... | |
[error] ## Exception when compiling 1 sources to /Users/sarah/Code/parser-fail/target/scala-2.12/classes | |
[error] requirement failed: | |
[error] | |
[error] while compiling: /Users/sarah/Code/parser-fail/Fail.scala | |
[error] during phase: jscode | |
[error] library version: version 2.12.4 | |
[error] compiler version: version 2.12.4 | |
[error] reconstructed args: -bootclasspath /Library/Java/JavaVirtualMachines/jdk1.8.0_151.jdk/Contents/Home/jre/lib/resources.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_151.jdk/Contents/Home/jre/lib/rt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_151.jdk/Contents/Home/jre/lib/sunrsasign.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_151.jdk/Contents/Home/jre/lib/jsse.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_151.jdk/Contents/Home/jre/lib/jce.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_151.jdk/Contents/Home/jre/lib/charsets.jar:/Library/Java/JavaVirtualMachines/jdk |
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
(function() { | |
'use strict'; | |
function d() { | |
return function() {} | |
} | |
function g(a) { | |
return function(b) { | |
this[a] = b |
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
import scala.concurrent._ | |
import scala.util.Try | |
import java.io._ | |
import java.util.concurrent.Executors | |
import akka.stream.io._ | |
import akka.stream.scaladsl._ | |
import akka.util.ByteString |
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
scalaVersion := "2.11.2" | |
libraryDependencies += "com.chuusai" %% "shapeless" % "2.0.0" | |
name := "Observe Sample" |