Add documentation and/or comments.

Co-authored-by: Leonardo <leo@ethereum.org>
This commit is contained in:
Bhargava Shastry
2021-01-26 15:48:42 +01:00
co-authored by Leonardo
parent d7e3d3f75f
commit f5e0faaa37
3 changed files with 46 additions and 14 deletions
+6 -10
View File
@@ -46,11 +46,9 @@ string GeneratorBase::visitChildren()
void TestCaseGenerator::setup()
{
addGenerators(
{
mutator->generator<SourceUnitGenerator>()
}
);
addGenerators({
mutator->generator<SourceUnitGenerator>()
});
}
string TestCaseGenerator::visit()
@@ -73,11 +71,9 @@ string TestCaseGenerator::visit()
void SourceUnitGenerator::setup()
{
addGenerators(
{
mutator->generator<PragmaGenerator>(),
}
);
addGenerators({
mutator->generator<PragmaGenerator>(),
});
}
string SourceUnitGenerator::visit()