From 94609aeabcd441caa7c9d41f54166b3f3ede1442 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sat, 23 May 2020 15:38:07 +1000 Subject: Added Is_Ambiguous function to Parse_Graphs --- src/packrat-parse_graphs.adb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'src/packrat-parse_graphs.adb') diff --git a/src/packrat-parse_graphs.adb b/src/packrat-parse_graphs.adb index 16b74dc..c911fb4 100644 --- a/src/packrat-parse_graphs.adb +++ b/src/packrat-parse_graphs.adb @@ -232,6 +232,22 @@ package body Packrat.Parse_Graphs is + function Is_Ambiguous + (Container : in Parse_Graph) + return Boolean is + begin + for N of Container.Nodes loop + if Finish_List (Container, N)'Length > 1 then + return True; + end if; + end loop; + return False; + end Is_Ambiguous; + + + + + function Vector_To_Array (Input : in Type_Vectors.Vector) return Array_Type is -- cgit