示例#1
0
		internal bool Merge(ErrorSink/*!*/ errors, FormalTypeParam/*!*/ other)
		{
			if (this.name != other.Name)
			{
				PhpType declaring_type = (PhpType)parameter.DeclaringMember;

				errors.Add(Errors.PartialDeclarationsDifferInTypeParameter, declaring_type.Declaration.SourceUnit,
					position, declaring_type.FullName);

				return false;
			}

			attributes.Merge(other.Attributes);

			return true;
		}
示例#2
0
 virtual public void VisitFormalTypeParam(FormalTypeParam x)
 {
     // nothing
 }
示例#3
0
 virtual public void VisitFormalTypeParam(FormalTypeParam x)
 {
     // nothing
 }