Exemplo n.º 1
0
		public DebugStackLineTextMarker (MonoTextEditor editor, int offset, int length)
		{
			IconMarker = new DebugIconMarker (stackLine);
			TextMarker = new DebugTextMarker (offset, length, e => e.ColorStyle.DebuggerStackLineMarker, e => e.ColorStyle.DebuggerStackLine);
		}
Exemplo n.º 2
0
		public CurrentDebugLineTextMarker (MonoTextEditor editor, int offset, int length)
		{
			IconMarker = new DebugIconMarker (currentLine);
			TextMarker = new DebugTextMarker (offset, length, e => e.ColorStyle.DebuggerCurrentLineMarker, e => e.ColorStyle.DebuggerCurrentLine);
		}
Exemplo n.º 3
0
		public InvalidBreakpointTextMarker (MonoTextEditor editor, int offset, int length, bool isTracepoint)
		{
			IconMarker = new DebugIconMarker (isTracepoint ? tracepoint : breakpoint);
			TextMarker = new DebugTextMarker (offset, length, e => e.ColorStyle.BreakpointMarkerInvalid);
		}