mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-07-03 00:21:52 +00:00
Support indirect calls with omitted arguments
This commit is contained in:
@ -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. */
|
||||
|
Reference in New Issue
Block a user