public bool Identify(SourceCode aSourceCode, string aCurrentCodeLine, int aLinePosition)
        {
            bool result = false;

            if (aCurrentCodeLine.StartsWith("}") && !aSourceCode.IsThereMoreCode(aLinePosition))
                result = true;

            return result;
        }