I have a problem with IntelliJ IDEA 9.0's debugger when I run scala code (scala 2.8).
The problem is that I can't see which case is selected in the match sentence when I make traces step by step.
I defined a property in the constructor of my class the following way:
class Step(val message:String = "")
When I try access to message value from Java code y get a visbility error. Why?
I have a iterator (ite) created from a set (a):
var a = Set(1,2,3,4,5)
var ite = a.iterator
If I remove 2 element of my set:
a -= 2
Now, if I move iterator for all elements, I get all elements (2 element included). It's ok, but... How I can tell to iteratator to delete 2 element?