LLVM
8.0.1
|
Represents a YAML map created from either a block map for a flow map. More...
#include "llvm/Support/YAMLParser.h"
Public Types | |
enum | MappingType { MT_Block, MT_Flow, MT_Inline } |
using | iterator = basic_collection_iterator< MappingNode, KeyValueNode > |
Public Types inherited from llvm::yaml::Node | |
enum | NodeKind { NK_Null, NK_Scalar, NK_BlockScalar, NK_KeyValue, NK_Mapping, NK_Sequence, NK_Alias } |
Public Member Functions | |
MappingNode (std::unique_ptr< Document > &D, StringRef Anchor, StringRef Tag, MappingType MT) | |
iterator | begin () |
iterator | end () |
void | skip () override |
Public Member Functions inherited from llvm::yaml::Node | |
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 |
unsigned int | getType () const |
Static Public Member Functions | |
static bool | classof (const Node *N) |
Friends | |
class | basic_collection_iterator< MappingNode, KeyValueNode > |
template<class T > | |
T::iterator | yaml::begin (T &) |
template<class T > | |
void | yaml::skip (T &) |
Additional Inherited Members | |
Protected Member Functions inherited from llvm::yaml::Node | |
~Node ()=default | |
Protected Attributes inherited from llvm::yaml::Node | |
std::unique_ptr< Document > & | Doc |
SMRange | SourceRange |
Represents a YAML map created from either a block map for a flow map.
This parses the YAML stream as increment() is called.
Example: Name: _main Scope: Global
Definition at line 405 of file YAMLParser.h.
Definition at line 421 of file YAMLParser.h.
Enumerator | |
---|---|
MT_Block | |
MT_Flow | |
MT_Inline | An inline mapping node is used for "[key: value]". |
Definition at line 409 of file YAMLParser.h.
|
inline |
Definition at line 415 of file YAMLParser.h.
|
inline |
Definition at line 426 of file YAMLParser.h.
References llvm::yaml::begin().
Definition at line 432 of file YAMLParser.h.
References llvm::yaml::Node::getType().
|
inline |
Definition at line 428 of file YAMLParser.h.
|
inlineoverridevirtual |
Reimplemented from llvm::yaml::Node.
Definition at line 430 of file YAMLParser.h.
References llvm::yaml::skip().
|
friend |
Definition at line 419 of file YAMLParser.h.
|
friend |
|
friend |