haxe icon indicating copy to clipboard operation
haxe copied to clipboard

Wrong diagnostic range for override keyword

Open RblSb opened this issue 3 years ago • 0 comments
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 {}
}

RblSb avatar May 26 '22 02:05 RblSb