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