method
parse
parse(path)
public
Hide source
# File lib/rexml/parsers/xpathparser.rb, line 19 def parse path path.gsub!(/([\(\[])\s+/, '\1') # Strip ignorable spaces path.gsub!( /\s+([\]\)])/, '\1' ) parsed = [] path = OrExpr(path, parsed) parsed end