mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
Remember known user function names when they are declared, rather than when they are referenced.
8 lines
147 B
Text
8 lines
147 B
Text
// reported in https://forums.polserver.com/viewtopic.php?f=54&t=6140
|
|
function xyz()
|
|
endfunction
|
|
|
|
if (1)
|
|
var xyz := 3;
|
|
print( xyz );
|
|
endif
|