Browse Source

[Parser] Corrected namespace keyword location.

newNRvisualizers
Mike Krüger 13 years ago
parent
commit
06b6e92b57
  1. 1407
      ICSharpCode.NRefactory.CSharp/Parser/mcs/cs-parser.cs
  2. 1
      ICSharpCode.NRefactory.CSharp/Parser/mcs/cs-parser.jay

1407
ICSharpCode.NRefactory.CSharp/Parser/mcs/cs-parser.cs

File diff suppressed because it is too large Load Diff

1
ICSharpCode.NRefactory.CSharp/Parser/mcs/cs-parser.jay

@ -544,6 +544,7 @@ namespace_declaration @@ -544,6 +544,7 @@ namespace_declaration
var name = (MemberName) $3;
var ns = new NamespaceContainer (name, current_namespace);
lbag.AddLocation (current_container, GetLocation ($2));
current_namespace.AddTypeContainer (ns);
}
;

Loading…
Cancel
Save