haxegon / zeedonk

Haxegon + Puzzlescript = Zeedonk!

Home Page:http://www.zeedonk.net

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

switch/case screws up indentation

increpare opened this issue · comments

switch(3){
  case 3:
    trace("gah");
}
    trace("hey");

here's a test case - it works in js mode but not in haxe mode - compare how they're parsed and figure it all out.

switch(3){
  case 3:
}
trace("hey");