-
Notifications
You must be signed in to change notification settings - Fork 9
Check UndefinedVariable
github-actions[bot] edited this page Mar 6, 2024
·
2 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.