==================
Attribute Interpolation
==================

<div @click={count += 1} custom={val}></div>

---

(source_file
  (template_section
    (tag
      (tag_name)
      (attribute
        (special_attribute_name)
        (interpolation
          (python_code)))
      (attribute
        (attribute_name)
        (interpolation
          (python_code)))
      (tag_name))))

==================
Self Closing Tag
==================

<input type="text" />

---

(source_file
  (template_section
    (void_tag
      (attribute
        (attribute_name)
        (attribute_value)))))
