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
There is the following regex line: https://github.com/cnvogelg/amitools/blob/master/amitools/fd/FDFormat.py#L69 It cannot match a line like this (I found it in arp_lib.fd):
Input()
arp_lib.zip
The text was updated successfully, but these errors were encountered:
You should use the following regex to match this line too:
([A-Za-z][_A-Za-z00-9]+)\((.*?)\)(?:\((.*?)\))?
Sorry, something went wrong.
Also, you should mention that there is the following line with the duplicate arg name:
Execute(string,file,file)(D1/D2/D3)
And also this line (there is a space):
Printf(string, stream)(a0/a1)
And this:
GetKeywordIndex(char *,char *)(A0/A1)
Just arg types instead of names.
No branches or pull requests
There is the following regex line: https://github.com/cnvogelg/amitools/blob/master/amitools/fd/FDFormat.py#L69
It cannot match a line like this (I found it in arp_lib.fd):
arp_lib.zip
The text was updated successfully, but these errors were encountered: