mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
f630359d9b
I heard actually this part would not be a bottleneck for rendering because writing anything to terminal takes way longer time anyway, but I thought this benchmark script might be useful for benchmarking Ruby itself.
13 lines
335 B
YAML
13 lines
335 B
YAML
prelude: |
|
|
require 'irb/color'
|
|
code = <<~'CODE'
|
|
def self.foo # bar
|
|
:"erb #{ERB.new("<%= self %>", trim_mode: ?-).result}"
|
|
end
|
|
CODE
|
|
benchmark:
|
|
irb_color_complete: |
|
|
IRB::Color.colorize_code(code, complete: true)
|
|
irb_color_incomplete: |
|
|
IRB::Color.colorize_code(code, complete: false)
|
|
loop_count: 2000000
|