New Issue: canResolve does not work for private functions

17235, "ronawho", "canResolve does not work for private functions", "2021-02-23T17:17:11Z"

canResolve fails to find private functions.

use Reflection;
private proc privateProc() { writeln("private"); }

if canResolve("privateProc") then privateProc();
                             else compilerError("privateProc not found");

This currently hits the compiler error instead of resolving privateProc. Removing private allows this it compile.