You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Parameters recognize the declaration, but 'Go to declaration' function does not work correctly. This occurs because it tries to navigate to the parameter declaration within the virtual file created during injection creation. When we call registar.addPlace, we pass the beginning of the current statement as a prefix. And this prefix contains the parameter declaration.
Example:
FOR iterate(INTEGER i, 1, 3) DO
MESSAGE 'message ${i}';
The text was updated successfully, but these errors were encountered:
Parameters recognize the declaration, but 'Go to declaration' function does not work correctly. This occurs because it tries to navigate to the parameter declaration within the virtual file created during injection creation. When we call
registar.addPlace
, we pass the beginning of the current statement as a prefix. And this prefix contains the parameter declaration.Example:
The text was updated successfully, but these errors were encountered: