Added a dereferenced mobile item to Variable in the AST

This commit is contained in:
Neil Brown 2007-10-24 15:56:02 +00:00
parent 9f78582391
commit f8006696b2

View File

@ -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.