Tagged Questions

scalac - Compiler for the Scala 2 language

learn more… | top users | synonyms

13
votes
2answers
854 views

How do I turn off the Scala Fast Compilation server's (FSC) timeout?

I am using a Scala compilation server. This is probably not related to my IDE IntelliJ IDEA, but I will just inform you that I start the Scala compilation server through a special run configuration in ...
10
votes
3answers
524 views

How do I disambiguate in Scala between methods with vararg and without

I'm trying to use the java jcommander library from Scala. The java JCommander class has multiple constructors: public JCommander(Object object) public JCommander(Object object, ResourceBundle ...
8
votes
1answer
283 views

How do I alias the scala setter method 'myvar_$eq(myval)' to something more pleasing when in java?

I've been converting some code from java to scala lately trying to teach myself the language. Suppose we have this scala class: class Person() { var name:String = "joebob" } Now I want to access ...
8
votes
3answers
396 views

Why can't scalac optimize tail recursion in certain scenarios?

Why doesn't scalac (the Scala compiler) optimize tail recursion? Code and compiler invocations that demonstrates this: > cat foo.scala class Foo { def ifak(n: Int, acc: Int):Int = { if (n == ...
5
votes
1answer
148 views

How do I run a Fast Scala Compiler remote server?

I want to set an fsc process running on a box that I can then access remotely. I understand I need to share a temp directory. However, I'm struggling to even get it going on my laptop. I'm trying: ...
4
votes
3answers
108 views

Scala Range contains(elem: Any) method

Apparently Range has a method that checks if it contains a value of type Any. I understand that it is from SeqLike, but causes some problems. For instance, i was matching hours from joda.DateTime: ...
4
votes
2answers
155 views

Fields interfering with method resolution for Scala Dynamic trait?

As my first foray into Dynamic Scala land, I thought that I'd try accessing bean properties via applyDynamic. My first very rough cut is trait BeanProperties extends Dynamic { def ...
4
votes
3answers
152 views

Splitting scalac plugin into multiple files

I'd like to split my scalac plugin into multiple files. This sounds easy but I haven't managed to pull it off due to path-dependent type issues stemming from the import global._ line. Here's Lex ...
3
votes
1answer
80 views

Line Level Scala Coverage Reports w/ Emma / Ant

Are there any tricks that I need to use to get Line Level coverage reports working w/ Scala code using Emma? I can get it working w/ Java code fine, but for some reason the debug info is not getting ...
3
votes
1answer
355 views

Adding scala-compiler.jar as a runtime dependency

I'm using sbt and its Proguard plugin to create an executable jar for my program. However, my program relies on scala-compiler.jar at runtime to do compilations. I can't seem to get scala-compiler.jar ...
3
votes
2answers
333 views

FSC recompiles every time

FSC recompiles my .scala files every time even there is no need - I can compile it twice without editing anything between attempts and it recompiles them! For example, I have 2 files Hello.scala ...
2
votes
2answers
345 views

Permanently hidden warning from Scalac parsing Java code - compiler bug?

The scalac Java parser is taking objection to my Java code imported `Entity' is permanently hidden by definition of object Entity in package domain Asset.java This seems to be a collision ...
1
vote
2answers
97 views

Shebangs in scalac code

The scala interpreter allows shebangs, but strangely, scalac borks on them. Are there any tricks like these to get around this flaw?
0
votes
1answer
63 views

stopping Scala compilation after a particular phase

I'm testing my plugin by running it in-process like this: type PluginMessage = StoreReporter#Info def runPlugin(fileName: String): List[PluginMessage] = { val settings = new Settings ...