Re: L3 Core: Followup on TypeInfo.isDerivedFrom tests

Curt Arnold wrote:

>
> If
>
> <complexType name="b">
>      <extension base="a"/>
> </complexType>
>
> b.isDerivedFrom(otherType, METHOD_RESTRICTION) =
>     otherType == xsd:anySimpleType || otherType == xsd:anyType
>
    otherType == xsd:anySimpleType || otherType == xsd:anyType

Should have been

    otherType == xsd:anyType

Received on Friday, 16 January 2004 17:08:42 UTC