# sudo cp "$WASMER_LIBRARY_DIR/libiwasm.so" "$CORE_DIR/lib/libiwasm.so"
sudo cp "$WASMER_LIBRARY_DIR/libwasmer.so" "$CORE_DIR/lib/libwasmer.so"
- sudo cp "$WASMER_LIBRARY_DIR/libwasmer.a" "$CORE_DIR/lib/libwasmer.a"
sudo cp "include/onyx_library.h" "$CORE_DIR/include/onyx_library.h"
sudo cp "lib/common/include/wasm.h" "$CORE_DIR/include/wasm.h"
CHECK(arguments, &call->args);
current_checking_level = current_checking_level_store;
- // SPEED CLEANUP: Keeping an original copy for basically no reason except that sometimes you
- // need to know the baked argument values in code generation.
- // This should only be done once, but right now it is being done everytime this is checked,
- // which can be multiple if we have to yield on a callee's type.
- arguments_clone(&call->original_args, &call->args);
-
AstFunction* callee=NULL;
CHECK(resolve_callee, call, (AstTyped **) &callee);