haxe
haxe copied to clipboard
Wrong diagnostic range for override keyword
trafficstars
Not sure if this should be handled in vshaxe or compiler, probably regression
class Main {
static function main() {}
}
class MyBar extends Bar {
function beer() {} // error with quick fix
// after "Add override keyword" on `beer`:
// function override beer() {}
}
class Bar {
public function beer():Void {}
}