adds while statement to vool

This commit is contained in:
Torsten Ruger
2017-04-03 11:49:21 +03:00
parent 5335d08408
commit c545bfdfc6
4 changed files with 56 additions and 11 deletions

View File

@ -1,5 +1,9 @@
module Vool
class WhileStatement < Statement
attr_accessor :branch_type , :condition , :statements
attr_accessor :condition , :statements
def initialize( condition )
@condition = condition
end
end
end