コード例 #1
0
ファイル: Property.cs プロジェクト: macro187/halfdecentsharp
Equals(
    IValueReferenceComponent that
)
{
    return that.Is<
        Property >(
        p => p.Name == this.Name );
}
コード例 #2
0
ファイル: Literal.cs プロジェクト: macro187/halfdecentsharp
Equals(
    IValueReferenceComponent that
)
{
    return that.Is< Literal >();
}
コード例 #3
0
ファイル: Member.cs プロジェクト: macro187/halfdecentsharp
Equals(
    IValueReferenceComponent that
);
コード例 #4
0
ファイル: Thread.cs プロジェクト: macro187/halfdecentsharp
Equals(
    IValueReferenceComponent that
)
{
    return that.Is<
        Thread >(
        t => t.ID == this.ID );
}
コード例 #5
0
ファイル: Machine.cs プロジェクト: macro187/halfdecentsharp
Equals(
    IValueReferenceComponent that
)
{
    return that.Is<
        Machine >(
        m => m.Name == this.Name );
}
コード例 #6
0
ファイル: Indexer.cs プロジェクト: macro187/halfdecentsharp
Equals(
    IValueReferenceComponent that
)
{
    return that.Is<
        Indexer >(
        i => object.Equals( i.Index, this.Index ) );
}
コード例 #7
0
ファイル: Process.cs プロジェクト: macro187/halfdecentsharp
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
ファイル: Frame.cs プロジェクト: macro187/halfdecentsharp
Equals(
    IValueReferenceComponent that
)
{
    return that.Is<
        Frame >(
        f => f.Depth == this.Depth );
}