fix and test basic and name expressions

This commit is contained in:
Torsten Ruger
2015-07-19 13:20:34 +03:00
parent 48d090f19c
commit 31d825df7b
5 changed files with 19 additions and 5 deletions

View File

@ -37,4 +37,15 @@ module Virtual
super( type , value )
end
end
# NewMessageName of the next message
class ArgSlot < MessageSlot
def initialize index , type = Unknown, value = nil
@index = index
super( type , value )
end
attr_reader :index
end
end