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
Is your feature request related to a problem? Please describe. #1442 introduces the global namespace operator for variables. Codesys does support the operator on functions also, however, meaning the following is code is valid
FUNCTION_BLOCK fb
// ...
METHOD foo
// ...
END_METHOD
// ...
.foo(); // This will call the function `foo` defined in the global namespace, if it exists
// ...
END_FUNCTION_BLOCK