FastScripts will run shell scripts, so in the event I need to reload a library reliably I can do something like this:
#!/usr/bin/env bash
read -r -d '' asCode <<'EOF'
use myLib : script "z_Test"
return myLib's TEST_LIBRARY_HANDLER()
EOF
myOutput=$(osascript -e "$asCode");
echo "$myOutput";