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
Nota: this is a repost of https://github.com/lezer-parser/julia/issues/4
the tree-sitter grammar offer a very partial implementation of the import/export rules. in particular
Here is an update targeting Julia v1.6
# for julia v1.6 import_family ::= "import" _imex_bypath ("," _imex_bypath)* | "import" _imex_path ":" _imex_bypath ("," _imex_bypath)* | "using" _imex_path ("," _imex_path)* | "using" _imex_path ":" _imex_bypath ("," _imex_bypath)* . export ::= _imex_path_elem ("," _imex_path_elem)* . _imex_bypath ::= _imex_path ("as" _imex_path_elem)? . _imex_path ::= _imex_path_dots _imex_path_elem ("." _imex_path_elem)* . _imex_path_dots ::= "."* . _imex_path_elem ::= id # std id | id string # nonstd id | op # operator | "@" instance # macro name | "$" expression # interpolation # | "(" expression ")" # staging .
I write grammar in bnf format since i don't know the js lingo used there, sorry for the inconvenience Is there any way to update the def file ?
REFS
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Nota: this is a repost of https://github.com/lezer-parser/julia/issues/4
the tree-sitter grammar offer a very partial implementation of the import/export rules. in particular
Here is an update targeting Julia v1.6
I write grammar in bnf format since i don't know the js lingo used there, sorry for the inconvenience
Is there any way to update the def file ?
REFS
The text was updated successfully, but these errors were encountered: