livescript-idea
livescript-idea copied to clipboard
Bound method access with ~ marked as error
Using ~ to get a method with bound scope is marked as error.
class A
m: (b)-> @n b
n: (c)-> console.log c
a = new A
a~m
.. 'text'