- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Problems with IDEA's Scala Plugin -- who to report it to?
Mon, 2010-01-11, 20:32
A code analysis on some source of code of mine tagged as an error that it cannot resolve symbol "filter" in the line below. Specifically, the occurance inside the for-comprehension. I'd like to report this to the plugin's author. Anyone has a contact?
def neighborhood(filter: Filter) = for (filter(coord) <- neighbors) yield coord
--
Daniel C. Sobral
I travel to the future all the time.
def neighborhood(filter: Filter) = for (filter(coord) <- neighbors) yield coord
--
Daniel C. Sobral
I travel to the future all the time.
Daniel,
On Monday January 11 2010, Daniel Sobral wrote:
> A code analysis on some source of code of mine tagged as an error
> that it cannot resolve symbol "filter" in the line below.
> Specifically, the occurance inside the for-comprehension. I'd like to
> report this to the plugin's author. Anyone has a contact? ...
You can report informally in the Scala Plug-in's IDEA forum [2]:
[1]
[2]
Formal bug reports go to JetBrains' YouTrack system whose home is [3]
and whose Scala summary page is [4]:
[3]
[4]
Randall Schulz