class Metasm::ExpressionType
superclass for classes similar to Expression
must define bind, reduce_rec, match_rec, externals
Attributes
max_bits_mask[RW]
if the expression is constrained, this holds the mask of the maximum value (eg int16 => 0xffff)
Public Instance Methods
+(o)
click to toggle source
# File metasm/main.rb, line 328 def +(o) Expression[self, :+, o].reduce end
-(o)
click to toggle source
# File metasm/main.rb, line 329 def -(o) Expression[self, :-, o].reduce end