Esempio n. 1
0
 public EventMember(NameStructure identifier, MemberLocation location)
     : base(identifier, null, location)
 {
 }
Esempio n. 2
0
 public MethodMember(NameStructure identifier, AbstractNode parent, MemberLocation location,
                     string[] typeArgs, IEnumerable <Parameter> parameters) : base(identifier, parent, location)
 {
     TypeArguments = typeArgs;
     Parameters    = parameters.ToArray();
 }
 protected AbstractMember(NameStructure identifier, AbstractNode parent, MemberLocation location)
 {
     Identifier = identifier;
     Parent     = parent;
     Location   = location;
 }