"...composable_kernel_rocm.git" did not exist on "dd0188b385f9fefd8cd51884d78dec8e5af8fd8f"
Commit d0250400 authored by butataatawa's avatar butataatawa Committed by Jesse Beder
Browse files

Fix input strings with quotes giving "!" tagging artifacts.

parent 1f4b6d5c
...@@ -111,7 +111,7 @@ void EmitFromEvents::BeginNode() { ...@@ -111,7 +111,7 @@ void EmitFromEvents::BeginNode() {
} }
void EmitFromEvents::EmitProps(const std::string& tag, anchor_t anchor) { void EmitFromEvents::EmitProps(const std::string& tag, anchor_t anchor) {
if (!tag.empty() && tag != "?") if (!tag.empty() && tag != "?" && tag != "!")
m_emitter << VerbatimTag(tag); m_emitter << VerbatimTag(tag);
if (anchor) if (anchor)
m_emitter << Anchor(ToString(anchor)); m_emitter << Anchor(ToString(anchor));
......
...@@ -46,6 +46,12 @@ TEST_F(EmitterTest, SimpleScalar) { ...@@ -46,6 +46,12 @@ TEST_F(EmitterTest, SimpleScalar) {
ExpectEmit("Hello, World!"); ExpectEmit("Hello, World!");
} }
TEST_F(EmitterTest, SimpleQuotedScalar) {
Node n(Load("\"test\""));
out << n;
ExpectEmit("test");
}
TEST_F(EmitterTest, SimpleSeq) { TEST_F(EmitterTest, SimpleSeq) {
out << BeginSeq; out << BeginSeq;
out << "eggs"; out << "eggs";
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment