'<==' unknown by intellij while using scalafx
问题 A sign is not recognized by intellij : "<==", in a scala program using scalafx. The scalafx version of the jar is 2.10:1.0.0-M5. the program is this: object launcher extends JFXApp { stage = new JFXApp.PrimaryStage { title = "Hello Stage" width = 600 height = 450 scene = new Scene { fill = Color.LIGHTGREEN content = new Rectangle { x = 25 y = 40 width = 100 height = 100 fill <== when (hover) choose Color.GREEN otherwise Color.RED } } } } do you know where does the error comes from?(the