File: pathexpr.go

package info (click to toggle)
golang-github-christrenkamp-goxpath 1.0~alpha3%2Bgit20170922.c385f95-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 308 kB
  • sloc: sh: 16; makefile: 3; xml: 3
file content (11 lines) | stat: -rw-r--r-- 223 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
package pathexpr

import "encoding/xml"

//PathExpr represents XPath step's.  xmltree.XMLTree uses it to find nodes.
type PathExpr struct {
	Name     xml.Name
	Axis     string
	NodeType string
	NS       map[string]string
}