Beispiel #1
0
        public static bool TryParse(string content, int start, int length, out KirinNode result)
        {
            result = null;
            if (content != "I took a break")
            {
                return(false);
            }

            result = new KirinDebugger(start, length);
            return(true);
        }
Beispiel #2
0
 public static bool IsKirinNodeType(KirinNode a, Type b)
 {
     return(a.GetType().Name == b.Name);
 }