transform: do not transform rranges in for; this reactivates the short-range optimisation
[nit.git] / lib / emscripten.nit
index 7fc5e76..d46f4d1 100644 (file)
@@ -18,6 +18,7 @@ module emscripten is platform
 
 `{
        #include <emscripten.h>
+       #include <gc.h>
 `}
 
 redef class String
@@ -28,3 +29,10 @@ redef class String
 
        fun alert do "alert('{self.escape_to_js}')".run_js
 end
+
+redef class Sys
+       redef fun force_garbage_collection `{ GC_FORCE_COLLECT(); `}
+
+       # The emscripten GC *must* be manually invoked, it will not act by itself
+       fun suggest_garbage_collection `{ GC_MAYBE_COLLECT(); `}
+end