Product Documentation
Cadence SKILL IDE User Guide
Product Version IC23.1, August 2023

Correcting the Error

To correct the call to myFunction2, do the following:

  1. Review the definition of myFunction2. Notice that it requires a second argument, myList:
    (procedure myFunction2(object myList)
  2. Change the myFunction2 function call in the for loop in myFunction1 accordingly:

    Change

    myList = myFunction2(i) 

    to

    myList = myFunction2(i myList)
  3. Click to load the edited file.
    The following messages display in the CIW:
    function myFunction1 redefined
    function myFunction2 redefined
    function myTest redefined

    Every time you load your file, the functions are redefined with their new definitions.

Related Topics

SKILL IDE Debugger Example File

Copying the Example File

Loading and Running the Example File

Tracing the Error

Using Breakpoints to Find and Correct a Functional Error


Return to top
 ⠀
X