According to "Programming in Scala" one can pass the argument -Xprint:typer to the compiler and gets the code back as it looks after all the implicites are actually applied.

I also found that I can set compiler arguments in the project properties.

But I can't find any resulting output anywhere ...

So where do I have to look?

link|improve this question

2  
You might want to ask at Scala IDE mailing list: groups.google.com/group/scala-ide-user – Eugene Burmako Dec 4 '11 at 8:41
feedback

2 Answers

If you start Eclipse from a console, you should see the printed output there.

link|improve this answer
I tried to start eclipse.exe and eclipsec.exe Both don't create any output. – Jens Schauder Dec 4 '11 at 11:14
Hm, that's interesting; I'm on Linux and I get a lot of output to the console. Sorry :-/ – Mirko Stocker Dec 4 '11 at 13:33
feedback
up vote 0 down vote accepted

With the Scala IDE 2.1 Milestone 1 you can press Ctrl-1 to make implicits explicit

From http://scala-ide.org/download/milestone.html#scala_ide_21_milestone_1

Highlight Implicits It has never been easier to know where implicits are applied. And, by pressing Cmd/Ctrl+1, turn an implicit conversion into an explicit call!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.