tests: adds sav file for pep8analysis_web
[nit.git] / src / platform.nit
index ccb506d..3c5367f 100644 (file)
@@ -112,4 +112,9 @@ end
 # Services will be added to this class in other modules.
 abstract class Platform
        fun supports_libunwind: Bool do return true
+
+       fun supports_libgc: Bool do return true
+
+       # Does this platform declare its own main function? If so, we won't generate one in Nit.
+       fun no_main: Bool do return false
 end