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";
|
stream << " else {\n";
|
||||||
els->emit(stream, indent + 1);
|
els->emit(stream, indent + 1);
|
||||||
emitIndent(stream, indent);
|
emitIndent(stream, indent);
|
||||||
stream << "}";
|
stream << "}";
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
void VarDeclaration::emit(std::ostream &stream, int indent) {
|
void VarDeclaration::emit(std::ostream &stream, int indent) {
|
||||||
stream << type << ' ';
|
stream << type << ' ';
|
||||||
|
|
Reference in New Issue
Block a user