The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
127 views

Why doesn't the scala compiler generate a warning on if statements that always yield false inside a pattern match?

The scala compiler should generate warnings for the if statements I've commented on below, but it doesn't. Why? sealed trait T object A extends T val s:Seq[T] = Seq(A) val result = s.map { ...
5
votes
1answer
334 views

Pass closure to Scala compiler plugin

I'm trying to write a Scala compiler plugin that will allow extremely general code generation: something like the generality of the C preprocessor, but a bit more typesafe (I'm not sure if this is a ...
1
vote
1answer
99 views

.eq causing warning. How do I get rid of it?

I'm using JDO with the DataNucleus typesafe query language in Scala. I therefore have code that looks like this: val id: Long = // something val cand: QDbObject = QDbObject.candidate() ...
1
vote
1answer
52 views

Dynamic loading of a Scala compiler plugin

According to this post In order to create a Scala compiler plugin, one needs to compile the plugin into a jar, and then either specify the reference to the the jar as command line arguments, or place ...
16
votes
1answer
271 views

Any info out there on migrating a Scala 2.9 compiler plugin to 2.10?

I have a Scala 2.9 compiler plugin (source code) and works just fine in 2.9 but does not even compile with 2.10. There are dozens (maybe 100+) of errors all of the same kind such as: [scalac] ...
0
votes
1answer
123 views

Scala Compiler doesn't terminate (programmatically invoked)

I am programmatically compiling Scala code with this piece of code: val compiler = new Global(settings, reporter) val run = new compiler.Run run compile sourceFiles.map(_.fullPath).toList The 2.10 ...
1
vote
1answer
100 views

Scala Compiler generate throw code

I am trying to change a compiler plugin some other person wrote which runs directly after the typer and I want to generate code that throws an Exception. The Exception class looks like this: case ...
2
votes
1answer
592 views

MissingRequirementError when Compiling Scala code with Global.Run

I'm trying to compile Scala files programmatically by using an instance of Global.Run: val settings = new Settings val reporter = new ConsoleReporter(settings) val compiler = new ...
0
votes
0answers
84 views

Subclassing nsc.Phase “Cannot resolve symbol SubComponent”

To get into writing a Scala compiler plug-in I'm trying to work through Writing Scala Compiler Plugins on scala-lang.org. In my Component I'm implementing newPhase like this: def newPhase(prev: ...