Method: XRay::HTML::Parser#parse_properties

Defined in:
lib/html/parser.rb

#parse_propertiesObject



92
93
94
95
96
97
98
99
100
101
# File 'lib/html/parser.rb', line 92

def parse_properties
  skip_empty
  props = []
  until prop_search_done? do
    prop = parse_property
    props << prop if prop
    skip_empty
  end
  props
end