Parse optional ingested file annotation

This commit is contained in:
Agus Zubiaga 2024-05-03 08:42:43 -03:00
parent f7011c8e33
commit fe2eb0f0a5
No known key found for this signature in database
3 changed files with 51 additions and 15 deletions

View file

@ -542,7 +542,11 @@ pub enum EImport<'a> {
IndentIngestedPath(Position),
IngestedPath(Position),
IndentIngestedName(Position),
IngestedName(ETypedIdent<'a>, Position),
IngestedName(Position),
IndentColon(Position),
Colon(Position),
IndentAnnotation(Position),
Annotation(EType<'a>, Position),
Space(BadInputError, Position),
}