Exemple #1
0
        public void SWithArgsBadConstructArgs()
        {
            List <SExpression> argList = new List <SExpression>();

            argList.Add(new SString("test"));
            SExpression func = new SWithArgs(SExpression.FormatType.Sub, new SString("base"), argList);
        }
Exemple #2
0
 public void SWithArgsBadConstruct()
 {
     SExpression func = new SWithArgs(SExpression.FormatType.Super, new SString("base"));
 }
Exemple #3
0
        public void IndexBadChildren()
        {
            SExpression func = new SWithArgs(SExpression.FormatType.Index, new SString("test"));

            Parser.parse(func);
        }