~ubuntu-branches/ubuntu/lucid/monodevelop/lucid

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2010-01-10 14:25:59 UTC
  • mfrom: (1.2.5 upstream) (1.3.6 sid)
  • Revision ID: james.westby@ubuntu.com-20100110142559-sorji5exvk9tyknr
Tags: 2.2+dfsg-2
* debian/rules/remove_support_for_non_debian_functionality.patch:
  + Also fix monodevelop-core-addins.pc to remove links to the
    addins we remove in Debian

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
                Literal = 1 << 14,
51
51
                Type = 1 << 15,
52
52
                Namespace = 1 << 16,
53
 
                OriginMask = 0x0001ff00,
 
53
                Group = 1 << 17,
 
54
                OriginMask = 0x0003ff00,
54
55
                
55
 
                Global = 1 << 17,       // For fields, it means static
56
 
                ReadOnly = 1 << 18,
 
56
                Global = 1 << 18,       // For fields, it means static
 
57
                ReadOnly = 1 << 19,
 
58
                NoRefresh = 1 << 20, // When set, this value can't be refreshed
 
59
                EvaluatingGroup = 1 << 21, // When set, this value represents a set of values being evaluated
 
60
                                           // When evaluation ends, the value is updated, and the children are the
 
61
                                           // values represented by this group
57
62
                
58
63
                // For field and property
59
64
                Public = 1 << 24,