File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ public override void WriteId(TextWriter trapFile)
2828
2929 public override bool Equals ( object ? obj ) => obj != null && obj . GetType ( ) == typeof ( GeneratedLocation ) ;
3030
31- public static GeneratedLocation Create ( Context cx ) => GeneratedLocationFactory . Instance . CreateEntity ( cx , typeof ( GeneratedLocation ) , null ) ;
31+ public static new GeneratedLocation Create ( Context cx ) => GeneratedLocationFactory . Instance . CreateEntity ( cx , typeof ( GeneratedLocation ) , null ) ;
3232
3333 private class GeneratedLocationFactory : ICachedEntityFactory < string ? , GeneratedLocation >
3434 {
Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ public static Location Create(Context cx)
2020 return cx . SourceTree == null
2121 ? GeneratedLocation . Create ( cx )
2222 : Create ( cx , Microsoft . CodeAnalysis . Location . Create ( cx . SourceTree , TextSpan . FromBounds ( 0 , 0 ) ) ) ;
23-
2423 }
2524
2625 public override Microsoft . CodeAnalysis . Location ? ReportingLocation => symbol ;
You can’t perform that action at this time.
0 commit comments