Beispiel #1
0
 public virtual void VisitTypeReference(TypeReferenceSyntax node)
 {
     this.BeginSymbolUse(node, types: ImmutableArray.Create(typeof(MetaType)));
     try
     {
         this.Visit(node.CollectionType);
         this.Visit(node.SimpleType);
     }
     finally
     {
         this.EndSymbolUse();
     }
 }
 public virtual void VisitTypeReference(TypeReferenceSyntax node)
 {
 }
 public void Render(TypeReferenceSyntax typeReference)
 {
     Render(typeReference.TypeNameNode);
     WriteSpace();
     Render(typeReference.TypeReferenceNameToken);
 }
 public ParameterDeclarationSyntax()
 {
     Identifier = "";
     Type       = new TypeReferenceSyntax();
 }