mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-15 08:50:45 -07:00
13 lines
251 B
Ruby
13 lines
251 B
Ruby
# frozen_string_literal: true
|
|
|
|
Benchmarks.define('simple_loop', Class.new do
|
|
TEMPLATE = "{% for i in (1..1000) %}{{ i }}{% endfor %}"
|
|
|
|
def compile
|
|
@parsed = Liquid::Template.parse(TEMPLATE)
|
|
end
|
|
|
|
def render
|
|
@parsed.render
|
|
end
|
|
end.new) |