Inheritance: RQTypeOrNamespace
コード例 #1
0
ファイル: RQPropertyBase.cs プロジェクト: stark-lang/stark
 public RQPropertyBase(
     RQUnconstructedType containingType,
     RQMethodPropertyOrEventName memberName,
     int typeParameterCount,
     IList <RQParameter> parameters)
     : base(containingType, memberName, typeParameterCount, parameters)
 {
 }
コード例 #2
0
 public RQMethodOrProperty(
     RQUnconstructedType containingType,
     RQMethodPropertyOrEventName memberName,
     int typeParameterCount,
     IList <RQParameter> parameters)
     : base(containingType, memberName)
 {
     this.TypeParameterCount = typeParameterCount;
     this.Parameters         = new ReadOnlyCollection <RQParameter>(parameters);
 }
コード例 #3
0
 public RQMethodPropertyOrEvent(RQUnconstructedType containingType, RQMethodPropertyOrEventName memberName)
     : base(containingType)
 {
     this.RqMemberName = memberName;
 }
コード例 #4
0
 public RQConstructedType(RQUnconstructedType definingType, IList <RQType> typeArguments)
 {
     this.DefiningType  = definingType;
     this.TypeArguments = new ReadOnlyCollection <RQType>(typeArguments);
 }
コード例 #5
0
ファイル: RQMember.cs プロジェクト: stark-lang/stark
 public RQMember(RQUnconstructedType containingType)
 {
     this.ContainingType = containingType;
 }
コード例 #6
0
 public RQMemberVariable(RQUnconstructedType containingType, string name)
     : base(containingType)
 {
     this.Name = name;
 }