wurstscript / WurstScript

Programming language and toolkit to create Warcraft III Maps

Home Page:https://wurstlang.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Private @compiletime methods raise "never used" warning

GetLocalPlayer opened this issue · comments

class Test
	@compiletime static function myPublicFunc()
		skip

	@compiletime protected static function myProtectedFunc()
		skip

	@compiletime private static function myPrivateFunc()
		skip

The first two are fine but the last one raises

Private function <myPrivateFunc> is never used.