codeModel.getAllFunctionScopes();
String tokenName = cursor.currentValue();
for (int i = 0; i < functionsInScope.length(); i++)
{
ScopeFunction rFunction = functionsInScope.get(i);
String fnName = rFunction.getFunctionName();
if (tokenName == fnName)
{
JsArrayString args = rFunction.getFunctionArgs();
for (int j = 0; j < args.length(); j++)
{
completions.add(new QualifiedName(
args.get(j) + " = ",
"[" + fnName + "]"