public MExpEntry Duplicate() { MExpEntry instance = new MExpEntry(); instance.SetMExpExpression(GetMExpExpression().IfNotNull(z => z.Duplicate())); return(instance); }
static public T Compile<T>(string text, IEnumerable<string> terms) { MExpEntry entry = DOMify(text); entry.SetTerms(terms); return entry.CompileOperation<T>(); }
public override MExpElement VisitMExpEntry(MExpParser.MExpEntryContext context) { return(MExpEntry.DOMify(context)); }