mirror of
https://github.com/DanilaFe/abacus
synced 2025-04-21 08:13:02 -07:00
Merge pull request #29 from DanilaFe/fixes
Revert "Remove unnecessary nullability from parseString."
This commit is contained in:
commit
ad8a0a9b2a
@ -88,7 +88,7 @@ class Abacus(val configuration: Configuration) {
|
|||||||
* @param input the input string to parse
|
* @param input the input string to parse
|
||||||
* @return the resulting tree, null if the tree builder or the produced tree are null.
|
* @return the resulting tree, null if the tree builder or the produced tree are null.
|
||||||
*/
|
*/
|
||||||
fun parseString(input: String): TreeNode = treeBuilder.fromString(input)
|
fun parseString(input: String): TreeNode? = treeBuilder.fromString(input)
|
||||||
/**
|
/**
|
||||||
* Evaluates the given tree.
|
* Evaluates the given tree.
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user