LLVM
8.0.1
|
Abstract base class for all Nodes. More...
#include "llvm/Support/YAMLParser.h"
Public Types | |
enum | NodeKind { NK_Null, NK_Scalar, NK_BlockScalar, NK_KeyValue, NK_Mapping, NK_Sequence, NK_Alias } |
Public Member Functions | |
Node (unsigned int Type, std::unique_ptr< Document > &, StringRef Anchor, StringRef Tag) | |
Node (const Node &)=delete | |
void | operator= (const Node &)=delete |
void * | operator new (size_t Size, BumpPtrAllocator &Alloc, size_t Alignment=16) noexcept |
void | operator delete (void *Ptr, BumpPtrAllocator &Alloc, size_t Size) noexcept |
void | operator delete (void *) noexcept=delete |
StringRef | getAnchor () const |
Get the value of the anchor attached to this node. More... | |
StringRef | getRawTag () const |
Get the tag as it was written in the document. More... | |
std::string | getVerbatimTag () const |
Get the verbatium tag for a given Node. More... | |
SMRange | getSourceRange () const |
void | setSourceRange (SMRange SR) |
Token & | peekNext () |
Token | getNext () |
Node * | parseBlockNode () |
BumpPtrAllocator & | getAllocator () |
void | setError (const Twine &Message, Token &Location) const |
bool | failed () const |
virtual void | skip () |
unsigned int | getType () const |
Protected Member Functions | |
~Node ()=default | |
Protected Attributes | |
std::unique_ptr< Document > & | Doc |
SMRange | SourceRange |
Abstract base class for all Nodes.
Definition at line 114 of file YAMLParser.h.
Enumerator | |
---|---|
NK_Null | |
NK_Scalar | |
NK_BlockScalar | |
NK_KeyValue | |
NK_Mapping | |
NK_Sequence | |
NK_Alias |
Definition at line 118 of file YAMLParser.h.
Definition at line 1802 of file YAMLParser.cpp.
|
protecteddefault |
bool Node::failed | ( | ) | const |
Definition at line 1874 of file YAMLParser.cpp.
References Doc.
Referenced by llvm::yaml::KeyValueNode::getValue(), and llvm::yaml::SequenceNode::increment().
BumpPtrAllocator & Node::getAllocator | ( | ) |
Definition at line 1866 of file YAMLParser.cpp.
References Doc.
Referenced by llvm::yaml::KeyValueNode::getKey(), and llvm::yaml::KeyValueNode::getValue().
|
inline |
Get the value of the anchor attached to this node.
If it does not have one, getAnchor().size() will be 0.
Definition at line 150 of file YAMLParser.h.
Token Node::getNext | ( | ) |
Definition at line 1858 of file YAMLParser.cpp.
References Doc.
Referenced by llvm::yaml::KeyValueNode::getKey(), llvm::yaml::KeyValueNode::getValue(), and llvm::yaml::SequenceNode::increment().
|
inline |
Get the tag as it was written in the document.
This does not perform tag resolution.
Definition at line 154 of file YAMLParser.h.
Referenced by getVerbatimTag().
|
inline |
Definition at line 160 of file YAMLParser.h.
Referenced by llvm::yaml::ScalarTraits< StringValue >::input(), llvm::yaml::ScalarTraits< UnsignedValue >::input(), and llvm::yaml::Stream::printError().
|
inline |
Definition at line 173 of file YAMLParser.h.
Referenced by llvm::yaml::NullNode::classof(), llvm::yaml::ScalarNode::classof(), llvm::yaml::BlockScalarNode::classof(), llvm::yaml::KeyValueNode::classof(), llvm::yaml::MappingNode::classof(), llvm::yaml::SequenceNode::classof(), llvm::yaml::AliasNode::classof(), and getVerbatimTag().
std::string Node::getVerbatimTag | ( | ) | const |
Get the verbatium tag for a given Node.
This performs tag resoluton and substitution.
Definition at line 1809 of file YAMLParser.cpp.
References Doc, llvm::StringRef::empty(), llvm::StringRef::find_last_of(), getRawTag(), getType(), NK_BlockScalar, NK_Mapping, NK_Null, NK_Scalar, NK_Sequence, llvm::MipsISD::Ret, setError(), llvm::StringRef::startswith(), llvm::StringRef::substr(), T, and llvm::yaml::Token::TK_Tag.
|
inlinenoexcept |
Definition at line 141 of file YAMLParser.h.
|
deletenoexcept |
|
inlinenoexcept |
Definition at line 136 of file YAMLParser.h.
Node * Node::parseBlockNode | ( | ) |
Definition at line 1862 of file YAMLParser.cpp.
References Doc.
Referenced by llvm::yaml::KeyValueNode::getKey(), llvm::yaml::KeyValueNode::getValue(), and llvm::yaml::SequenceNode::increment().
Token & Node::peekNext | ( | ) |
Definition at line 1854 of file YAMLParser.cpp.
References Doc.
Referenced by llvm::yaml::KeyValueNode::getKey(), llvm::yaml::KeyValueNode::getValue(), and llvm::yaml::SequenceNode::increment().
Definition at line 1870 of file YAMLParser.cpp.
References Doc.
Referenced by llvm::yaml::ScalarNode::getValue(), llvm::yaml::KeyValueNode::getValue(), getVerbatimTag(), llvm::yaml::SequenceNode::increment(), and llvm::yaml::Scanner::setError().
|
inline |
Definition at line 161 of file YAMLParser.h.
References llvm::yaml::Stream::failed().
|
inlinevirtual |
Reimplemented in llvm::yaml::SequenceNode, llvm::yaml::MappingNode, and llvm::yaml::KeyValueNode.
Definition at line 171 of file YAMLParser.h.
Referenced by llvm::yaml::Document::skip().
|
protected |
Definition at line 176 of file YAMLParser.h.
Referenced by failed(), getAllocator(), llvm::yaml::KeyValueNode::getKey(), getNext(), llvm::yaml::KeyValueNode::getValue(), getVerbatimTag(), parseBlockNode(), peekNext(), and setError().
|
protected |
Definition at line 177 of file YAMLParser.h.