Remove parse, no strings in base library.

References: https://todo.sr.ht/~sforman/Xerblin/10
This commit is contained in:
Simon Forman 2022-03-22 07:59:11 -07:00
parent 2cf49a2ad2
commit ba6d09f956
1 changed files with 0 additions and 9 deletions

View File

@ -227,15 +227,6 @@ def inscribe_(stack, expression, dictionary):
return stack, expression, dictionary return stack, expression, dictionary
@inscribe
@SimpleFunctionWrapper
def parse(stack):
'''Parse the string on the stack to a Joy expression.'''
text, stack = stack
expression = text_to_expression(text)
return expression, stack
# @inscribe # @inscribe
# @SimpleFunctionWrapper # @SimpleFunctionWrapper
# def infer_(stack): # def infer_(stack):