Esempio n. 1
0
        public override IAstNode VisitRepl([NotNull] ReplContext context)
        {
            var children = from child in context.children
                           select child.Accept(this);

            return(new RootNode(context.GetSourceSpan( ), children));
        }