icsharpcode / SharpDevelop

#develop (short for SharpDevelop) is a free IDE for .NET programming languages.
2.09k stars 773 forks source link

Parser Preprocessor #555

Open tsadigovAgmail opened 10 years ago

tsadigovAgmail commented 10 years ago

Parser adds # symbol to the inactive code block node

Quick-fix in cs-tokenizer.cs after comment saying

// TODO: Implement comment support for disabled code and uncomment this code

put this code

if (c != '#') sbag.PushCommentChar (c);