1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00
haml--haml/lib/haml/identity.rb
2021-06-07 22:17:13 -07:00

13 lines
201 B
Ruby

# frozen_string_literal: true
module Haml
class Identity
def initialize
@unique_id = 0
end
def generate
@unique_id += 1
"_haml_compiler#{@unique_id}"
end
end
end