JASS:
library lib initializer init
private function init takes nothing returns nothing
call BJDebugMsg("library initializer")
endfunction
endlibrary
scope scp initializer init
private function init takes nothing returns nothing
call BJDebugMsg("scope initializer")
endfunction
endscope
struct s extends array
private static method onInit takes nothing returns nothing
call BJDebugMsg("struct initializer")
endmethod
endstruct
module m
private static method onInit takes nothing returns nothing
call BJDebugMsg("module initializer")
endmethod
endmodule
struct m_s extends array
implement m
endstruct
function InitTrig_swefgr takes nothing returns nothing
call BJDebugMsg("default wc3 initializer")
endfunction