mirror of
https://github.com/DanilaFe/abacus
synced 2026-01-27 09:05:19 +00:00
Fix toString errors failing unit tests.
This commit is contained in:
@@ -28,7 +28,7 @@ data class FunctionNode(val function: String) : TreeNode() {
|
||||
buffer.append(children[i].toString())
|
||||
buffer.append(if (i == children.size - 1) ")" else ",")
|
||||
}
|
||||
return super.toString()
|
||||
return buffer.toString()
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user