Remove noMemory option; Omit 'start' if 'main' is present; Unwrap more unnecessary blocks

This commit is contained in:
dcodeIO
2018-06-27 19:03:39 +02:00
parent 0d64c9661a
commit 27e61f8f67
42 changed files with 5337 additions and 3741 deletions

View File

@ -69,7 +69,9 @@ export enum CommonFlags {
/** Is a trampoline. */
TRAMPOLINE = 1 << 25,
/** Is a virtual method. */
VIRTUAL = 1 << 26
VIRTUAL = 1 << 26,
/** Is the main function. */
MAIN = 1 << 27
}
/** Path delimiter inserted between file system levels. */