It looks like statement modifiers are ignored when we use parenthesisless methods.
Test case with 0.8.2:
>>>def foo(a as string):
... print a
...
>>>foo "blah"
blah
>>>foo "blah" if 1 == 1
blah
>>>foo "blah" if 1 == 2
blah
>>>
Description
It looks like statement modifiers are ignored when we use parenthesisless methods.
Test case with 0.8.2:
>>>def foo(a as string):
... print a
...
>>>foo "blah"
blah
>>>foo "blah" if 1 == 1
blah
>>>foo "blah" if 1 == 2
blah
>>>
Fixed in the repository. Thanks for the report!