File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed
Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 1+ using System ;
12using System . IO ;
23using Microsoft . CodeAnalysis ;
34
@@ -9,10 +10,12 @@ class LocalVariable : CachedSymbol<ISymbol>
910
1011 public override void WriteId ( TextWriter trapFile )
1112 {
12- trapFile . WriteSubId ( Location ) ;
13- trapFile . Write ( '_' ) ;
14- trapFile . Write ( symbol . Name ) ;
15- trapFile . Write ( ";localvar" ) ;
13+ throw new InvalidOperationException ( ) ;
14+ }
15+
16+ public override void WriteQuotedId ( TextWriter trapFile )
17+ {
18+ trapFile . Write ( '*' ) ;
1619 }
1720
1821 public override void Populate ( TextWriter trapFile ) { }
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ public Initializer symbol
5353
5454 public abstract void WriteId ( System . IO . TextWriter trapFile ) ;
5555
56- public void WriteQuotedId ( TextWriter trapFile )
56+ public virtual void WriteQuotedId ( TextWriter trapFile )
5757 {
5858 trapFile . Write ( "@\" " ) ;
5959 WriteId ( trapFile ) ;
You can’t perform that action at this time.
0 commit comments