!editorial comment 117 !topic Is_Dispatching_Call list labeled wrong !reference ASIS 95-18.42 !from Gary Barnes 98-10-14 The expected kinds list is labeled incorrectly. Those are not Element_Kinds. Original was: function Is_Dispatching_Call (Call : in Asis.Element) return Boolean; ------------------------------------------------------------------------------ -- Call - Specifies the element to query. -- -- Returns True if the controlling tag of Call is dynamically determined. -- -- This function shall always return False when pragma Restrictions -- (No_Dispatch) applies. -- -- Returns False for any unexpected Element. -- -- Expected Element_Kinds: -- A_Function_Call -- A_Procedure_Call_Statement The list should be labeled this way instead: -- Expected Expression_Kinds: -- A_Function_Call -- -- Expected Statement_Kinds: -- A_Procedure_Call_Statement !resolution Accept.