diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-06-24 18:44:51 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-07-03 15:31:03 -0700 |
commit | 74e60024e3724cfd2ffac2ea574e1051d6381d6b (patch) | |
tree | dd39e9121957195721533883a32e6b23032c02c9 /emlink.py | |
parent | af60ede0bced44dbfa6f011d8c9a5491265ae42a (diff) |
cleanups
Diffstat (limited to 'emlink.py')
-rw-r--r-- | emlink.py | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -53,6 +53,8 @@ class AsmModule(): self.exports_js = post_js[ret:] def relocate_into(self, main): + # heap initializer TODO + # imports main_imports = set(main.imports) new_imports = [imp for imp in self.imports if imp not in main_imports] @@ -74,9 +76,9 @@ class AsmModule(): shared.try_delete(temp) main.extra_funcs_js = relocated_funcs.funcs_js.replace(js_optimizer.start_funcs_marker, '\n') - # tables + # tables TODO - # exports + # exports TODO def write(self, out): f = open(out, 'w') |