prettyPrinter Ntriple + fonction de création de Ntriple

This commit is contained in:
Rochas
2025-02-13 23:49:35 +01:00
parent 2df633c6a1
commit 13dbf3882d
3 changed files with 69 additions and 13 deletions

View File

@@ -22,6 +22,7 @@ options {
}
prog : bloc EOF
{$t = new TurtleAST()}
;
bloc : sujet listvc P // <entity> list.
;
@@ -47,6 +48,6 @@ comp : LC ID RC //<ID>
entity : ID
;
turtle
returns[TurtleAST t]: EOF { $t = null ; };
turtle returns[TurtleAST t]:
EOF { $t = null ; }
;