예제 #1
0
파일: Cell.cs 프로젝트: tralivali1234/IL2JS
        protected override bool EqualBody(Cell other)
        {
            var state = (StatePCPseudoCell)other;

            return(StateId.Equals(state.StateId));
        }
예제 #2
0
 public bool Equals(Variable other)
 {
     return(Id.Equals(other.Id) && ArgLocal == other.ArgLocal && IsInit == other.IsInit && IsReadOnly == other.IsReadOnly && Type.Equals(other.Type));
 }
예제 #3
0
파일: Cell.cs 프로젝트: tralivali1234/IL2JS
        protected override bool EqualBody(Cell other)
        {
            var temp = (VariableCell)other;

            return(Id.Equals(temp.Id));
        }