Line 342... |
Line 342... |
DEMANGLE_COMPONENT_ARGLIST,
|
DEMANGLE_COMPONENT_ARGLIST,
|
/* A template argument list. The left subtree is the current
|
/* A template argument list. The left subtree is the current
|
template argument, and the right subtree is either NULL or
|
template argument, and the right subtree is either NULL or
|
another TEMPLATE_ARGLIST node. */
|
another TEMPLATE_ARGLIST node. */
|
DEMANGLE_COMPONENT_TEMPLATE_ARGLIST,
|
DEMANGLE_COMPONENT_TEMPLATE_ARGLIST,
|
|
/* An initializer list. The left subtree is either an explicit type or
|
|
NULL, and the right subtree is a DEMANGLE_COMPONENT_ARGLIST. */
|
|
DEMANGLE_COMPONENT_INITIALIZER_LIST,
|
/* An operator. This holds information about a standard
|
/* An operator. This holds information about a standard
|
operator. */
|
operator. */
|
DEMANGLE_COMPONENT_OPERATOR,
|
DEMANGLE_COMPONENT_OPERATOR,
|
/* An extended operator. This holds the number of arguments, and
|
/* An extended operator. This holds the number of arguments, and
|
the name of the extended operator. */
|
the name of the extended operator. */
|
DEMANGLE_COMPONENT_EXTENDED_OPERATOR,
|
DEMANGLE_COMPONENT_EXTENDED_OPERATOR,
|
/* A typecast, represented as a unary operator. The one subtree is
|
/* A typecast, represented as a unary operator. The one subtree is
|
the type to which the argument should be cast. */
|
the type to which the argument should be cast. */
|
DEMANGLE_COMPONENT_CAST,
|
DEMANGLE_COMPONENT_CAST,
|
|
/* A nullary expression. The left subtree is the operator. */
|
|
DEMANGLE_COMPONENT_NULLARY,
|
/* A unary expression. The left subtree is the operator, and the
|
/* A unary expression. The left subtree is the operator, and the
|
right subtree is the single argument. */
|
right subtree is the single argument. */
|
DEMANGLE_COMPONENT_UNARY,
|
DEMANGLE_COMPONENT_UNARY,
|
/* A binary expression. The left subtree is the operator, and the
|
/* A binary expression. The left subtree is the operator, and the
|
right subtree is a BINARY_ARGS. */
|
right subtree is a BINARY_ARGS. */
|