aboutsummaryrefslogtreecommitdiff
path: root/emlink.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-07-02 21:31:31 -0700
committerAlon Zakai <alonzakai@gmail.com>2013-07-03 15:31:05 -0700
commitc8065da220560eb91d473ce2859b72c41ebb4304 (patch)
tree54bbbf23dfe07c66c84a72109d62d53fd9c96f00 /emlink.py
parent26576167eb0794d54dfb2e3d305edaacde635bd4 (diff)
remove old comment
Diffstat (limited to 'emlink.py')
-rw-r--r--emlink.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/emlink.py b/emlink.py
index 64d6a679..285ee72f 100644
--- a/emlink.py
+++ b/emlink.py
@@ -15,13 +15,6 @@ Limitations:
* Modules cannot be minified (but can be minified after linking)
* We duplicate code in some cases, like overlapping names in different modules, and function aliases
- * We only share code between modules, not global variables. Global variables should be declared
- in the module that uses them, other modules can reach them through function calls. For example,
- a static class function implemented in one module can be called from another, and it can provide
- access to static variables on that class. (Note that implementing the static class function in a
- header will not work, then the code will be duplicated in each module, with only one of them
- able to correctly access the variable - the one in the same module as where the variable is
- declared.)
* We do not link in compiled libraries (libc, libc++, etc.) in side modules. If the main module
does not automatically link in the ones that side modules will need, you should compile the
main module with