Example #1
0
        public override bool Equals(System.Object object_Renamed)
        {
            bool isEqual = false;

            if (base.Equals(object_Renamed) && (object_Renamed is With))
            {
                With with = (With)object_Renamed;

                if (with.endWith == this.endWith)
                {
                    isEqual = true;
                }
            }

            return(isEqual);
        }
		public virtual void  with(With action)
		{
		}
		public override void  with(With action)
		{
			start(action);
			out_Renamed.WriteLine(" {");
			indent_Renamed_Field++;
			labels.getLabelEntry(action.endWith).source = action;
		}