if (startCursor.currentType() == "identifier")
if (startCursor.moveToPreviousToken())
if (startCursor.currentValue() == "=")
{
startedOnEquals = true;
startCursor.moveToNextToken();
}
// Find an opening '(' or '[' -- this provides the function or object
// for completion.
int initialNumCommas = 0;