1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00
haml--haml/lib/hamlit/identity.rb
2016-08-27 02:37:45 +09:00

13 lines
205 B
Ruby

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