diff --git a/common/AST.hs b/common/AST.hs index a00ce2b..6906d7c 100644 --- a/common/AST.hs +++ b/common/AST.hs @@ -210,6 +210,8 @@ data Variable = | SubscriptedVariable Meta Subscript Variable -- | A channel-end variable (e.g. @c?@) | DirectedVariable Meta Direction Variable + -- | A dereferenced mobile variable (e.g. using MOBILE INT as INT) + | DerefVariable Meta Variable deriving (Show, Eq, Typeable, Data) -- | An array constructor expression.