public void Accept(CIL_Types myType) { foreach (var value in myType._types.Values) { value.Accept(this); } }
public CIL_Program(CIL_Code code, CIL_Data data, CIL_Types types) { Code = code; Data = data; Types = types; }
public void Accept(CIL_Types myType) { throw new System.NotImplementedException(); }