Sha256: cc4fbc837bbbf92d378d019282e4a85eae7911a60b367564f8f25999a9974b25

Contents?: true

Size: 444 Bytes

Versions: 6

Compression:

Stored size: 444 Bytes

Contents

# frozen_string_literal: true

# Checks bug introduced when converters are combined with token converter.
#
# @author Royce Remulla
#
class LogicFour
  # Perform logical AND operation on two arguments.
  #
  # @param argument1 first argument of Boolean type.
  # @param argument2 second argument of Boolean type.
  def process(argument1, argument2, argument3, argument4)
    !argument1 && !argument2 && !argument3 && argument4 == 'a'
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rast-0.18.0 examples/logic_four.rb
rast-0.15.1 examples/logic_four.rb
rast-0.14.0 examples/logic_four.rb
rast-0.11.4 examples/logic_four.rb
rast-0.11.3 examples/logic_four.rb
rast-0.11.1 examples/logic_four.rb