Hello,
I sometimes have situations, where I am naming something, that is nullable, and then I need to give it new name, in order to unwrap it for specific code block, what always leads me to the right naming problem. Is there any covenction for that?
Example:
token_type: ?TokenType = null;
for (...) |...| {
token_type = get_token(...)
if (token_type) |naminng_issue| {
...
}
}
Thank for help!