Beispiel #1
0
        public object Visit(CogniPy.CNL.DL.Bool e)
        {
            var sval = e.val.ToString();

            if (attributeName.get() != null)
            {
                dataValues.Add(Tuple.Create(e.getTypeTag(), attributeName.get(), sval));
            }
            if (!foundValues.ContainsKey(e.getTypeTag() + ":" + sval))
            {
                foundValues.Add(e.getTypeTag() + ":" + sval, e);
            }
            return(sval);
        }
Beispiel #2
0
 public virtual object Visit(CogniPy.CNL.DL.Bool e)
 {
     return(e);
 }