From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=BAYES_00,INVALID_DATE autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,9ee195735ac5bf6f,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 1993-03-06 00:51:22 PST Path: sparky!uunet!news.claremont.edu!ucivax!gateway From: lhuynh@siam.ICS.UCI.EDU (Thomas Huynh) Subject: Function call or variable? Message-ID: <9303051531.aa21226@Paris.ics.uci.edu> Newsgroups: comp.lang.ada Date: 5 Mar 93 23:31:21 GMT Date: 1993-03-05T23:31:21+00:00 List-Id: Given that the following lines are the only code in the module, how can one determine if the identifier "func_or_var" is a function call or variable? Is it possible to come any conclusion at all? Assume that the identifier "func_or_var" is defined in another module. -- File starts here with This_System; use This_System; procedure Validate(a, b : in out integer) is begin if (func_or_var) a := b; end if; end Validate; -- End of file