2019-04-09 11:52:21 -04:00
|
|
|
package ast
|
|
|
|
|
|
|
|
// ObjCInterface is an Objective-C interface
|
|
|
|
type ObjCInterface struct {
|
|
|
|
Addr Address
|
2019-04-09 23:19:49 -04:00
|
|
|
Name string
|
2019-04-10 14:00:48 -04:00
|
|
|
Super bool
|
2019-04-09 11:52:21 -04:00
|
|
|
ChildNodes []Node
|
|
|
|
}
|
|
|
|
|
2019-04-11 11:46:24 -04:00
|
|
|
func parseObjCInterface(line string, super bool) *ObjCInterface {
|
2019-04-09 11:52:21 -04:00
|
|
|
groups := groupsFromRegex(
|
2019-04-09 23:19:49 -04:00
|
|
|
"'(?P<name>.*)'",
|
2019-04-09 11:52:21 -04:00
|
|
|
line,
|
|
|
|
)
|
|
|
|
|
|
|
|
return &ObjCInterface{
|
|
|
|
Addr: ParseAddress(groups["address"]),
|
2019-04-09 23:19:49 -04:00
|
|
|
Name: groups["name"],
|
2019-04-11 11:46:24 -04:00
|
|
|
Super: super,
|
2019-04-09 11:52:21 -04:00
|
|
|
ChildNodes: []Node{},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddChild adds a new child node. Child nodes can then be accessed with the
|
|
|
|
// Children attribute.
|
|
|
|
func (n *ObjCInterface) AddChild(node Node) {
|
|
|
|
n.ChildNodes = append(n.ChildNodes, node)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Address returns the numeric address of the node. See the documentation for
|
|
|
|
// the Address type for more information.
|
|
|
|
func (n *ObjCInterface) Address() Address {
|
|
|
|
return n.Addr
|
|
|
|
}
|
|
|
|
|
|
|
|
// Children returns the child nodes. If this node does not have any children or
|
|
|
|
// this node does not support children it will always return an empty slice.
|
|
|
|
func (n *ObjCInterface) Children() []Node {
|
|
|
|
return n.ChildNodes
|
|
|
|
}
|
|
|
|
|
|
|
|
// Position returns the position in the original source code.
|
|
|
|
func (n *ObjCInterface) Position() Position {
|
|
|
|
return Position{}
|
|
|
|
}
|