We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent beda866 commit 7406fa1Copy full SHA for 7406fa1
cli/index.js
@@ -314,7 +314,7 @@ export async function main(argv, options) {
314
assemblyscript.setSharedMemory(compilerOptions, opts.sharedMemory);
315
assemblyscript.setImportTable(compilerOptions, opts.importTable);
316
assemblyscript.setExportTable(compilerOptions, opts.exportTable);
317
- if (opts.exportStart) {
+ if (opts.exportStart != null) {
318
assemblyscript.setExportStart(compilerOptions, isNonEmptyString(opts.exportStart) ? opts.exportStart : "_start");
319
}
320
assemblyscript.setMemoryBase(compilerOptions, opts.memoryBase >>> 0);
0 commit comments