diff options
author | Alex Lorenz <arphaman@gmail.com> | 2015-05-13 23:10:51 +0000 |
---|---|---|
committer | Alex Lorenz <arphaman@gmail.com> | 2015-05-13 23:10:51 +0000 |
commit | a22b250c6ffaba93b5de2b126eac260585b19dd5 (patch) | |
tree | a14a08de72bd30cdc7d6b7ff7c4ddcb5dc774fc5 /llvm/utils/yaml-bench/YAMLBench.cpp | |
parent | af0494f1585f4d41c4eb9c64930fb077289d1190 (diff) | |
download | bcm5719-llvm-a22b250c6ffaba93b5de2b126eac260585b19dd5.tar.gz bcm5719-llvm-a22b250c6ffaba93b5de2b126eac260585b19dd5.zip |
YAML: Implement block scalar parsing.
This commit implements the parsing of YAML block scalars.
Some code existed for it before, but it couldn't parse block
scalars.
This commit adds a new yaml node type to represent the block
scalar values.
This commit also deletes the 'spec-09-27' and 'spec-09-28' tests
as they are identical to the test file 'spec-09-26'.
This commit introduces 3 new utility functions to the YAML scanner
class: `skip_s_space`, `advanceWhile` and `consumeLineBreakIfPresent`.
Reviewers: Duncan P. N. Exon Smith
Differential Revision: http://reviews.llvm.org/D9503
llvm-svn: 237314
Diffstat (limited to 'llvm/utils/yaml-bench/YAMLBench.cpp')
-rw-r--r-- | llvm/utils/yaml-bench/YAMLBench.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/utils/yaml-bench/YAMLBench.cpp b/llvm/utils/yaml-bench/YAMLBench.cpp index bd5aa152dff..634622a710c 100644 --- a/llvm/utils/yaml-bench/YAMLBench.cpp +++ b/llvm/utils/yaml-bench/YAMLBench.cpp @@ -96,6 +96,8 @@ static void dumpNode( yaml::Node *n SmallString<32> Storage; StringRef Val = sn->getValue(Storage); outs() << prettyTag(n) << " \"" << yaml::escape(Val) << "\""; + } else if (yaml::BlockScalarNode *BN = dyn_cast<yaml::BlockScalarNode>(n)) { + outs() << prettyTag(n) << " \"" << yaml::escape(BN->getValue()) << "\""; } else if (yaml::SequenceNode *sn = dyn_cast<yaml::SequenceNode>(n)) { outs() << prettyTag(n) << " [\n"; ++Indent; |