aboutsummaryrefslogtreecommitdiffstats
path: root/src/edif/edif-parse.ads
blob: 929be9b1ec0f81659fafb55fd5b43b856838c16b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
with Edif.Nodes; use Edif.Nodes;

package Edif.Parse is
   --  Simple parser: return generic constructs (lists).
   --  Do not try to interpret EDIF.
   function Parse_File_Simple return Node;

   --  Parse as EDIF 2.0.0
   --  There is almost no error recovery: the parser stops at the first error,
   --  and it return Null_Node.
   function Parse_Edif200 return Node;
end Edif.Parse;