Refactoring: less indents.
This commit is contained in:
parent
b31feeb4ea
commit
57defac719
|
@ -111,13 +111,15 @@ void Branch::emit(std::ostream &stream, int indent) {
|
|||
}
|
||||
}
|
||||
|
||||
if (els != nullptr) {
|
||||
if (els == nullptr) {
|
||||
return;
|
||||
}
|
||||
|
||||
stream << " else {\n";
|
||||
els->emit(stream, indent + 1);
|
||||
emitIndent(stream, indent);
|
||||
stream << "}";
|
||||
}
|
||||
}
|
||||
|
||||
void VarDeclaration::emit(std::ostream &stream, int indent) {
|
||||
stream << type << ' ';
|
||||
|
|
Reference in New Issue
Block a user