~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to src/core/Mono.Debugging/Mono.Debugging.Client/EvaluationOptions.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
                                ops.GroupPrivateMembers = true;
49
49
                                ops.GroupStaticMembers = true;
50
50
                                ops.GroupUserPrivateMembers = false;
51
 
                                ops.AllowImplicitTypeLoading = true;
52
51
                                ops.UseExternalTypeResolver = true;
53
52
                                ops.IntegerDisplayFormat = IntegerDisplayFormat.Decimal;
54
53
                                ops.CurrentExceptionTag = "$exception";
100
99
                public bool GroupStaticMembers { get; set; }
101
100
                
102
101
                public bool UseExternalTypeResolver { get; set; }
103
 
                
104
 
                public bool AllowImplicitTypeLoading { get; set; }
 
102
 
 
103
                [Obsolete ("Use the type's BeforeFieldInit attribute instead")]
 
104
                public bool AllowImplicitTypeLoading { get { return true; } set { } }
105
105
                
106
106
                public IntegerDisplayFormat IntegerDisplayFormat { get; set; }
107
107