~ubuntu-branches/ubuntu/saucy/monodevelop/saucy-proposed

« back to all changes in this revision

Viewing changes to src/core/Mono.Texteditor/Mono.TextEditor.Highlighting/Span.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2010-09-10 16:54:48 UTC
  • mfrom: (19.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20100910165448-0rybfk25zd4o9431
Tags: 2.4+dfsg-2
* debian/patches/inject_Mono.Debugger.Soft_source.patch,
  debian/patches/use_system_Mono.Debugger.Soft.patch,
  debian/control:
  + Build against system Soft Debugger, since we now have a new
    enough Mono to match MonoDevelop's required API

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
                
51
51
                public Regex Begin {
52
52
                        get;
53
 
                        protected set;
 
53
                        set;
54
54
                }
55
55
                
56
56
                public Regex Exit {
57
57
                        get;
58
 
                        protected set;
 
58
                        set;
59
59
                }
60
60
                
61
61
                public Regex End {
62
62
                        get;
63
 
                        protected set;
 
63
                        set;
64
64
                }
65
65
 
66
66
                public string Color {
67
67
                        get;
68
 
                        protected set;
 
68
                        set;
69
69
                }
70
70
                
71
71
                public string TagColor {
72
72
                        get;
73
 
                        protected set;
 
73
                        set;
74
74
                }
75
75
 
76
76
                public string Escape {
77
77
                        get;
78
 
                        protected set;
 
78
                        set;
79
79
                }
80
80
 
81
81
                public bool StopAtEol {
82
82
                        get;
83
 
                        protected set;
 
83
                        set;
84
84
                }
85
85
 
86
86
                public string Rule {
87
87
                        get;
88
 
                        protected set;
 
88
                        set;
89
89
                }
90
90
 
91
91
                public string NextColor {
92
92
                        get;
93
 
                        protected set;
 
93
                        set;
94
94
                }
95
95
                
96
96
                public string Continuation {
97
97
                        get;
98
 
                        protected set;
 
98
                        set;
99
99
                }
100
100
                
101
101
                HashSet<string> endFlags = new HashSet<string> ();