Skip to content

Commit

Permalink
Merge pull request #33 from tschneidereit/moar-functions
Browse files Browse the repository at this point in the history
Allow more functions per wasm module
  • Loading branch information
katelyn martin authored Jul 13, 2021
2 parents f8f9ffe + 9ff3db8 commit ebafb2e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/src/execute.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ impl ExecuteCtx {
types: 200,
// AssemblyScript applications tend to create a fair number of globals
globals: 64,
// Some applications create a large number of functions, in particular in debug mode
functions: 20000,
..ModuleLimits::default()
};

Expand Down

0 comments on commit ebafb2e

Please sign in to comment.