Open onsails opened 9 years ago
Methods defined with empty parameters list and with some implicit parameters look like methods without side-effects after rendering:
DEF("foo") withParams() withParams(PARAM("a", IntClass).withFlags(Flags.IMPLICIT)) // -> def foo(implicit a: Int)
I expect it to render def foo()(implicit a: Int)
def foo()(implicit a: Int)
Methods defined with empty parameters list and with some implicit parameters look like methods without side-effects after rendering:
I expect it to render
def foo()(implicit a: Int)