# File lib/flexmock/expectation.rb, line 35 35: def initialize(mock, sym, location) 36: @mock = mock 37: @sym = sym 38: @location = location 39: @expected_args = nil 40: @count_validators = [] 41: @count_validator_class = ExactCountValidator 42: @actual_count = 0 43: @return_value = nil 44: @return_queue = [] 45: @yield_queue = [] 46: @order_number = nil 47: @global_order_number = nil 48: @globally = nil 49: end