Example #1
0
 public ParameterDeclaration(TypeDeclaration type, string name, int position = 0)
 {
     Type     = type;
     Name     = name;
     Position = position;
 }
Example #2
0
 public override bool Match(TypeDeclaration other)
 {
     return(base.Match(other));
 }