The specific tool-chain associated to the platform

Property definitions

nitc :: abstract_compiler $ Platform :: toolchain
	# The specific tool-chain associated to the platform
	fun toolchain(toolcontext: ToolContext, compiler: AbstractCompiler): Toolchain
	do
		return new MakefileToolchain(toolcontext, compiler)
	end
src/compiler/abstract_compiler.nit:131,2--135,4

nitc $ AndroidPlatform :: toolchain
	redef fun toolchain(toolcontext, compiler) do return new AndroidToolchain(toolcontext, compiler)
src/platform/android.nit:45,2--97

nitc $ EmscriptenPlatform :: toolchain
	redef fun toolchain(toolcontext, compiler) do return new EnscriptenToolchain(toolcontext, compiler)
src/platform/emscripten.nit:38,2--100

nitc $ IOSPlatform :: toolchain
	redef fun toolchain(toolcontext, compiler) do return new IOSToolchain(toolcontext, compiler)
src/platform/ios.nit:36,2--93