Mentions légales du service

Skip to content
Snippets Groups Projects
Commit ec14b110 authored by Andrei Paskevich's avatar Andrei Paskevich
Browse files

don't ignore "namespace import" in parser

parent 9fd4c768
No related branches found
No related tags found
No related merge requests found
......@@ -273,9 +273,9 @@ decl:
| NAMESPACE UNDERSCORE list0_decl END
{ Namespace (loc (), false, None, $3) }
| NAMESPACE IMPORT uident list0_decl END
{ Namespace (loc (), false, Some $3, $4) }
{ Namespace (loc (), true, Some $3, $4) }
| NAMESPACE IMPORT UNDERSCORE list0_decl END
{ Namespace (loc (), false, None, $4) }
{ Namespace (loc (), true, None, $4) }
;
list1_theory:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment