summaryrefslogtreecommitdiff
path: root/spec/ruby/language/fixtures/precedence.rb
blob: d2295c755b7d9c52c2d9ea3c6e18ce948fbd619f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module PrecedenceSpecs
  class NonUnaryOpTest
    def add_num(arg)
      [1].collect { |i| arg + i +1 }
    end
    def sub_num(arg)
      [1].collect { |i| arg + i -1 }
    end
    def add_str
      %w[1].collect { |i| i +'1' }
    end
    def add_var
      [1].collect { |i| i +i }
    end
  end
end