Beispiel #1
0
        public static int MaxBlockOfCode(KBObject obj)
        {
            string source = GetSourceCodeWithoutComments(obj);

            return(SourceHelper.MaxCodeBlock(source));
        }
Beispiel #2
0
        public static int MaxNestLevel(KBObject obj)
        {
            string source = GetSourceCodeWithoutComments(obj);

            return(SourceHelper.MaxNestLevel(source));
        }