We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make use of the Python built-in parser instead of using our own:
Split the .fan file into three parts:
.fan
::=
;
where
Then, use the Python parser to parse (2) and (3); use a lightweight parser to parse (1) (or convert (1) into something that can be parsed by Python).
Note:
import
The text was updated successfully, but these errors were encountered:
smythi93
No branches or pull requests
Make use of the Python built-in parser instead of using our own:
Split the
.fan
file into three parts:::=
;
or a new leading keyword (Introduce constraints by awhere
keyword #180)Then, use the Python parser to parse (2) and (3); use a lightweight parser to parse (1) (or convert (1) into something that can be parsed by Python).
Note:
import
(Allowimport
of.fan
files #178)The text was updated successfully, but these errors were encountered: