Features
* MH Style has a new (autofixed) rule `no_starting_newline` to make
sure files do not start with just whitespace.
* MH Style has a new (autofixed) rule `implicit_shortcircuit` that
complains about misleading use of `&` and `|` inside if/while
guards.
* The MH tools now allow all possible class method names, even the
ones that are highly questionable like "import", "end", or
"arguments".
Fixes
* 131 The parser now allows the end of statement (newline, comma, or
semicolon) after an enumeration keyword to be optional. I.e. we can
now process this code fragment correctly:
enumeration Picasso, Laura, King_Edward
end