Skip to content
  • Matthias Mullie's avatar
    Don't collapse line feeds after "return" · 5497bea3
    Matthias Mullie authored
    return is not guaranteed to be followed by a return value.
    It could just be "return", followed by nothing (void return),
    not even a semicolon, just line feed (ASI)
    Whatever is next could, for example, be another operator.
    We may just need ASI to kick in there, so keep the line feed
    after return.
    
    Fixes issue #54
    5497bea3