aboutsummaryrefslogtreecommitdiff
path: root/lib/xixanta/src/object.rs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/xixanta/src/object.rs')
-rw-r--r--lib/xixanta/src/object.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/xixanta/src/object.rs b/lib/xixanta/src/object.rs
index c70afb7..c16ddb0 100644
--- a/lib/xixanta/src/object.rs
+++ b/lib/xixanta/src/object.rs
@@ -119,6 +119,7 @@ impl Bundle {
pub enum ObjectType {
Address,
Value,
+ Argument,
}
/// Bundle and metadata which is stored on the context table for a given
@@ -241,7 +242,7 @@ impl Context {
match self.map.get_mut(scope_name) {
Some(scope) => match scope.get_mut(var_name) {
Some(var) => match var.object_type {
- ObjectType::Value => {
+ ObjectType::Value | ObjectType::Argument => {
var.accessed += 1;
Ok(var.clone())
}