add missing as types

This commit is contained in:
Torsten Ruger
2016-03-06 14:07:25 +02:00
parent 4a9b492dd9
commit f51ed376c4
6 changed files with 77 additions and 4 deletions

View File

@ -2,4 +2,9 @@ module Soml
class Assignment < Statement
attr_accessor :name , :value
end
class FieldDef < Statement
attr_accessor :name , :type , :value
end
end