adjust branch names

IsXXX  with xxx as condition, same as after if_xxx
AlwaysBranch is back to Branch
This commit is contained in:
Torsten Ruger
2015-10-19 16:08:00 +03:00
parent 50379a1fea
commit 1fd937927c
10 changed files with 28 additions and 28 deletions

View File

@ -16,16 +16,16 @@ module Register
alias :inspect :to_s
end
class IsZeroBranch < Branch
class IsZero < Branch
end
class IsNegativeBranch < Branch
class IsNotzero < Branch
end
class IsPositiveBranch < Branch
class IsMinus < Branch
end
class AlwaysBranch < Branch
class IsPlus < Branch
end
end