Пример #1
0
Equals(
    IValueReferenceComponent that
)
{
    return that.Is<
        Property >(
        p => p.Name == this.Name );
}
Пример #2
0
Equals(
    IValueReferenceComponent that
)
{
    return that.Is< Literal >();
}
Пример #3
0
Equals(
    IValueReferenceComponent that
);
Пример #4
0
Equals(
    IValueReferenceComponent that
)
{
    return that.Is<
        Thread >(
        t => t.ID == this.ID );
}
Пример #5
0
Equals(
    IValueReferenceComponent that
)
{
    return that.Is<
        Machine >(
        m => m.Name == this.Name );
}
Пример #6
0
Equals(
    IValueReferenceComponent that
)
{
    return that.Is<
        Indexer >(
        i => object.Equals( i.Index, this.Index ) );
}
Пример #7
0
Equals(
    IValueReferenceComponent that
)
{
    return that.Is<
        Process >(
        p => p.ID == this.ID );
}
Пример #8
0
Equals(
    IValueReferenceComponent that
)
{
    return that.Is<
        StackVariable >(
        v =>
            v.GetUnderlying().GetType() == this.GetType()
            && v.Name == this.Name );
}
Пример #9
0
Equals(
    IValueReferenceComponent that
)
{
    return that.Is<
        Frame >(
        f => f.Depth == this.Depth );
}