open-papyrus / papyrus-compiler

Open-source compiler for the Papyrus scripting language of Bethesda games.
https://open-papyrus.github.io/docs/papyrus-compiler/Introduction.html
MIT License
25 stars 3 forks source link

Disallow expressions without surrounding parantheses as conditions #11

Open erri120 opened 2 years ago

erri120 commented 2 years ago

eg:

If true
EndIf

instead of

If (true)
EndIf