Exemplo n.º 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;
		}
Exemplo n.º 2
0
 virtual public void VisitFormalTypeParam(FormalTypeParam x)
 {
     // nothing
 }
Exemplo n.º 3
0
 virtual public void VisitFormalTypeParam(FormalTypeParam x)
 {
     // nothing
 }