diff options
Diffstat (limited to 'lib/xixanta/src/opcodes.rs')
| -rw-r--r-- | lib/xixanta/src/opcodes.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/xixanta/src/opcodes.rs b/lib/xixanta/src/opcodes.rs index 48e4fca..bd3c207 100644 --- a/lib/xixanta/src/opcodes.rs +++ b/lib/xixanta/src/opcodes.rs @@ -1999,6 +1999,16 @@ pub static CONTROL_FUNCTIONS: LazyLock<HashMap<String, Control>> = LazyLock::new only_string: true, }, ); + functions.insert( + String::from(".fallthrough"), + Control { + control_type: ControlType::Fallthrough, + has_identifier: Some(false), + required_args: Some((0, 0)), + touches_context: false, + only_string: false, + }, + ); functions }); |
