Sha256: 7216bdfefd02f1ba089d56aa46a87e4f7c5530782e089640763d1d9a93d8f8d7

Contents?: true

Size: 245 Bytes

Versions: 1

Compression:

Stored size: 245 Bytes

Contents

#!/usr/bin/env ruby
# frozen_string_literal: true

require 'treetop'
require_relative 'node'

# elements[2] is the attributes
# call to_html() on them.
class AttributeList < Node
  def to_html(context)
    elements[4].to_html(context)
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
emerald-lang-1.0.0 lib/emerald/nodes/attribute_list.rb