nitc :: IOSPlatform
nitc :: IOSPlatform :: defaultinit
nitc $ IOSPlatform :: SELF
Type of this instance, automatically specialized in every classnitc $ IOSPlatform :: supports_libgc
Does the platform provide and supports the Boehm's GC library?nitc $ IOSPlatform :: supports_libunwind
Does the platform provide and support the libraryunwind
?
nitc $ IOSPlatform :: toolchain
The specific tool-chain associated to the platformcore :: Object :: class_factory
Implementation used byget_class
to create the specific class.
nitc :: IOSPlatform :: defaultinit
core :: Object :: defaultinit
nitc :: Platform :: defaultinit
core :: Object :: is_same_instance
Return true ifself
and other
are the same instance (i.e. same identity).
core :: Object :: is_same_serialized
Isself
the same as other
in a serialization context?
core :: Object :: is_same_type
Return true ifself
and other
have the same dynamic type.
core :: Object :: native_class_name
The class name of the object in CString format.core :: Object :: output_class_name
Display class name on stdout (debug only).nitc :: Platform :: supports_libgc
Does the platform provide and supports the Boehm's GC library?nitc :: Platform :: supports_libunwind
Does the platform provide and support the libraryunwind
?
nitc :: Platform :: supports_linker_script
Does the platform accepts linker scripts?
private class IOSPlatform
super Platform
redef fun supports_libunwind do return false
redef fun supports_libgc do return true
redef fun toolchain(toolcontext, compiler) do return new IOSToolchain(toolcontext, compiler)
end
src/platform/ios.nit:31,1--37,3