String representation of a Node's tag can now be accessed by the

user.
This commit is contained in:
Ferdinand Majerech 2011-10-20 15:48:21 +02:00
parent fb814c66c2
commit 33a376b038
4 changed files with 20 additions and 21 deletions

View file

@ -40,7 +40,7 @@ void testImplicitResolver(bool verbose, string dataFilename, string detectFilena
foreach(ref Node scalar; node)
{
assert(scalar.isScalar);
assert(scalar.tag.get == correctTag);
assert(scalar.tag == correctTag);
}
}