mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63896 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			533 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			533 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
# loop_count is not utilized since `i` is involved in the script
 | 
						|
benchmark:
 | 
						|
  vm2_case_lit: |
 | 
						|
    i = 0
 | 
						|
    @ret = [ "foo", true, false, :sym, 6, nil, 0.1, 0xffffffffffffffff ]
 | 
						|
    def foo(i)
 | 
						|
      @ret[i % @ret.size]
 | 
						|
    end
 | 
						|
 | 
						|
    while i<6_000_000
 | 
						|
      case foo(i)
 | 
						|
      when "foo" then :foo
 | 
						|
      when true then true
 | 
						|
      when false then false
 | 
						|
      when :sym then :sym
 | 
						|
      when 6 then :fix
 | 
						|
      when nil then nil
 | 
						|
      when 0.1 then :float
 | 
						|
      when 0xffffffffffffffff then :big
 | 
						|
      end
 | 
						|
      i += 1
 | 
						|
    end
 | 
						|
loop_count: 1
 |