Support indirect calls with omitted arguments

This commit is contained in:
dcodeIO
2018-03-24 09:46:22 +01:00
parent 664f2a1c0d
commit 19a616dd96
18 changed files with 1084 additions and 531 deletions

View File

@ -2070,7 +2070,9 @@ export enum CommonFlags {
/** Has a constant value and is therefore inlined. */
INLINED = 1 << 26,
/** Is scoped. */
SCOPED = 1 << 27
SCOPED = 1 << 27,
/** Is a trampoline. */
TRAMPOLINE = 1 << 28
}
/** Base class of all program elements. */