I need both import table and module table:
itbl = importTable env m
defs = moduleSymbols itbl m
tbl = moduleTable itbl m
But I also need annotated module
annotated = annotate env m
The problem is that annotate computes these tables too (and it takes noticeable time), but doesn't return it. Can we have new function, which annotates module and also returns these tables?
I need both import table and module table:
But I also need annotated module
The problem is that
annotatecomputes these tables too (and it takes noticeable time), but doesn't return it. Can we have new function, which annotates module and also returns these tables?