protected ITypeSyntax ToType(JurParser.TypeContext context) { return(TypeSyntaxFactory.Create(this, context)); }
protected ImmutableArray <ITypeSyntax> ToTypes(IEnumerable <JurParser.TypeContext> contexts) { return(contexts.Select(x => TypeSyntaxFactory.Create(this, x)).ToImmutableArray()); }