-
Notifications
You must be signed in to change notification settings - Fork 10
Check UndefinedVariable
github-actions[bot] edited this page Nov 22, 2024
·
4 revisions
The prefixed variable indicates it should have been declared in the local scope, but was used as a global.
_method object.do_something()
write(l_a)
_endmethod
_method object.do_something()
_local l_a << 10
write(l_a)
_endmethod
Note
This page is generated. Any changes made to this page through the wiki will be lost in the future.