Browse Source

removed debug message.

newNRvisualizers
Mike Krüger 14 years ago
parent
commit
61c9894215
  1. 3
      ICSharpCode.NRefactory.CSharp/Parser/CSharpParser.cs

3
ICSharpCode.NRefactory.CSharp/Parser/CSharpParser.cs

@ -2276,9 +2276,6 @@ namespace ICSharpCode.NRefactory.CSharp @@ -2276,9 +2276,6 @@ namespace ICSharpCode.NRefactory.CSharp
if (typeArguments == null || typeArguments.IsEmpty)
return;
var chevronLocs = LocationsBag.GetLocations (typeArguments);
if (chevronLocs != null)
foreach (var loc in chevronLocs)
Console.WriteLine (loc);
if (chevronLocs != null)
parent.AddChild (new CSharpTokenNode (Convert (chevronLocs[chevronLocs.Count - 2]), 1), InvocationExpression.Roles.LChevron);
for (int i = 0; i < typeArguments.Count; i++) {

Loading…
Cancel
Save