shadaj/slinky

IntelliJ plugin doesn't recognise multiple parameter lists

nadenf opened this issue · 0 comments

nadenf commented

Given a React component:

@react object Component {
  case class Props(argA: Int, argB: String)(argC: Double)
}

It works fine if you use the component in your code:

Component(1, "2")(3.0)

But IntelliJ will show the red line with the error message "Unspecified value parameters: args: Double).