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