Browse Source
Add logging for text editor's undo stack. C# parser: fixed [module: ..] attributes C# code completion: suggest "assembly", "module", etc. when typing an attribute. git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@2719 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
13 changed files with 1237 additions and 1173 deletions
@ -0,0 +1,24 @@
@@ -0,0 +1,24 @@
|
||||
// <file>
|
||||
// <copyright see="prj:///doc/copyright.txt"/>
|
||||
// <license see="prj:///doc/license.txt"/>
|
||||
// <author name="Daniel Grunwald"/>
|
||||
// <version>$Revision$</version>
|
||||
// </file>
|
||||
|
||||
using System; |
||||
|
||||
namespace ICSharpCode.TextEditor.Util |
||||
{ |
||||
/// <summary>
|
||||
/// Central location for logging calls in the text editor.
|
||||
/// </summary>
|
||||
static class LoggingService |
||||
{ |
||||
public static void Debug(string text) |
||||
{ |
||||
#if DEBUG
|
||||
Console.WriteLine(text); |
||||
#endif
|
||||
} |
||||
} |
||||
} |
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue