Searched defs:IdentifierNode (Results 1 – 8 of 8) sorted by relevance
346 type IdentifierNode struct { struct347 NodeType348 Pos349 tr *Tree350 Ident string // The identifier's name.361 func (i *IdentifierNode) SetPos(pos Pos) *IdentifierNode {369 func (i *IdentifierNode) SetTree(t *Tree) *IdentifierNode {374 func (i *IdentifierNode) String() string {378 func (i *IdentifierNode) writeTo(sb *strings.Builder) {382 func (i *IdentifierNode) tree() *Tree {[all …]
354 struct IdentifierNode : public Node { struct355 explicit IdentifierNode(NodeKind K) : Node(K) {} in IdentifierNode() function363 struct VcallThunkIdentifierNode : public IdentifierNode { argument
353 struct IdentifierNode : public Node { struct354 explicit IdentifierNode(NodeKind K) : Node(K) {} in IdentifierNode() function362 struct VcallThunkIdentifierNode : public IdentifierNode { argument
353 struct IdentifierNode : public Node { struct354 explicit IdentifierNode(NodeKind K) : Node(K) {} in IdentifierNode() argument362 struct VcallThunkIdentifierNode : public IdentifierNode { argument
27 public abstract class IdentifierNode implements AstNode { class