class CssParser::OffsetAwareRuleSet

Attributes

filename[RW]

the local or remote location

offset[R]

File offset range

Public Class Methods

new(filename, offset, selectors, block, specificity = nil) click to toggle source
Calls superclass method CssParser::RuleSet::new
# File lib/css_parser/rule_set.rb, line 659
def initialize(filename, offset, selectors, block, specificity = nil)
  super(selectors, block, specificity)
  @offset = offset
  @filename = filename
end