Correcting the Error
To correct the call to myFunction2, do the following:
-
Review the definition of
myFunction2.Notice that it requires a second argument,myList:(procedure myFunction2(object myList)
-
Change the
myFunction2function call in theforloop inmyFunction1accordingly:
myList = myFunction2(i)
myList = myFunction2(i myList)
-
Click
to load the edited file.
The following messages display in the CIW:function myFunction1 redefined function myFunction2 redefined function myTest redefined
Related Topics
SKILL IDE Debugger Example File
Loading and Running the Example File
Using Breakpoints to Find and Correct a Functional Error
Return to top