Skip to content
This repository has been archived by the owner on Jul 16, 2023. It is now read-only.

Latest commit

 

History

History
20 lines (13 loc) · 631 Bytes

troubleshooting.rst

File metadata and controls

20 lines (13 loc) · 631 Bytes

Troubleshooting

Expected end of text

This is particularly common, unfortunately when you neglect certain parsable symbols you get this (rather unhelpful) error. For these we have to look at the found context and look for whats missing. In the following example we define a function but forgot to include a return annotation:

(mul(x = 0 -> number; y = 0 -> number))
    <*> x * y

This is the error we get when we try to compile:

Aspidites._vendor.pyparsing_extension.ParseException: Expected end of text, found in '(mul(x = 0 -> number'...