work on branches

the concept is different in bosl, move appropriate to virtual
This commit is contained in:
Torsten Ruger
2015-10-07 10:02:51 +03:00
parent 4e26166dff
commit f0611e52db
7 changed files with 17 additions and 35 deletions

View File

@ -13,7 +13,19 @@ module Register
def to_s
"Branch: #{block.name}"
end
alias :inspect :to_s
end
class IsZeroBranch < Branch
end
class IsNegativeBranch < Branch
end
class IsPositiveBranch < Branch
end
class AlwaysBranch < Branch
end
end