Struct commands::parser::ParameterNameNode [] [src]

pub struct ParameterNameNode {
    pub node: TreeNode,
    pub parameter: Rc<Node>,
}

A node that represented the name portion of a named parameter.

Fields

TreeNode data.

The parameter named by this node.

Methods

impl ParameterNameNode
[src]

Construct a new ParameterNameNode.

Trait Implementations

impl NodeOps for ParameterNameNode
[src]

Record this command.

Can this node be accepted in the current parser state? By default, a node can be accepted when it hasn't been seen yet. Read more

Given a node and an optional token, provide the completion options. Read more

By default, a node matches a token when the name of the node starts with the token. Read more