Unisay / purescript-lua

Purescript compiler back-end for Lua
GNU General Public License v3.0
55 stars 2 forks source link

DCE for the foreign code #11

Closed Unisay closed 6 months ago

Unisay commented 1 year ago

Current state:

Foreign modules are included as a whole, as an opaque piece of code, DCE has now visibility into in and therefore can't help eliminating unused code there.

Desired state:

Foreign code is parsed (up to a top-level bindings) such that DCE can eliminate them.

Unisay commented 6 months ago

Done