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
Write a script which finds each function and within it detects global and local variables. Then it outputs a graphed list of:
functionname
global variables created & altered by this function
--- globalvar_name (number of alterations within function)
--- globalvar_name (number of alterations within function)
local variables created & altered by this function
--- localvar_name (number of alterations within function)
--- localvar_name (number of alterations within function)
This output will enable us to find unnecessary global variables, illogical redefinitions of variables etc.
The text was updated successfully, but these errors were encountered:
Write a script which finds each function and within it detects global and local variables. Then it outputs a graphed list of:
functionname
--- globalvar_name (number of alterations within function)
--- globalvar_name (number of alterations within function)
--- localvar_name (number of alterations within function)
--- localvar_name (number of alterations within function)
This output will enable us to find unnecessary global variables, illogical redefinitions of variables etc.
The text was updated successfully, but these errors were encountered: