class Nokogiri::CSS::Parser

def initialize(namespaces = {})

Experimental RBS support (using type sampling data from the type_fusion project).

def initialize: (?Hash namespaces) -> void

This signature was generated using 1 sample from 1 application.

Create a new CSS parser with respect to +namespaces+
def initialize(namespaces = {})
  @tokenizer = Tokenizer.new
  @namespaces = namespaces
  super()
end