move vool statements into own directory

also tests for guard to work
This commit is contained in:
Torsten Ruger
2017-04-06 19:11:11 +03:00
parent 3fe286b5ed
commit db8f99409b
30 changed files with 29 additions and 27 deletions

View File

@ -1,32 +0,0 @@
module Vool
class IntegerStatement < Statement
attr_reader :value
def initialize(value)
@value = value
end
end
class FloatStatement < Statement
attr_reader :value
def initialize(value)
@value = value
end
end
class TrueStatement < Statement
end
class FalseStatement < Statement
end
class NilStatement < Statement
end
class SelfStatement < Statement
end
class SuperStatement < Statement
end
class StringStatement < Statement
attr_reader :value
def initialize(value)
@value = value
end
end
class SymbolStatement < StringStatement
end
end