@@ -36,7 +36,7 @@ public override void WriteId(TextWriter trapFile)
3636 {
3737 trapFile . Write ( FullName ) ;
3838 trapFile . Write ( "#file:///" ) ;
39- trapFile . Write ( Cx . AssemblyPath . Replace ( "\\ " , "/" ) ) ;
39+ trapFile . Write ( Context . AssemblyPath . Replace ( "\\ " , "/" ) ) ;
4040 trapFile . Write ( ";assembly" ) ;
4141 }
4242
@@ -56,41 +56,41 @@ public override IEnumerable<IExtractionProduct> Contents
5656 yield return file ;
5757 yield return Tuples . assemblies ( this , file , FullName , assemblyName . Name ?? string . Empty , assemblyName . Version ? . ToString ( ) ?? string . Empty ) ;
5858
59- if ( Cx . Pdb != null )
59+ if ( Context . Pdb != null )
6060 {
61- foreach ( var f in Cx . Pdb . SourceFiles )
61+ foreach ( var f in Context . Pdb . SourceFiles )
6262 {
63- yield return Cx . CreateSourceFile ( f ) ;
63+ yield return Context . CreateSourceFile ( f ) ;
6464 }
6565 }
6666
67- foreach ( var handle in Cx . MdReader . TypeDefinitions )
67+ foreach ( var handle in Context . MdReader . TypeDefinitions )
6868 {
6969 IExtractionProduct ? product = null ;
7070 try
7171 {
72- product = Cx . Create ( handle ) ;
72+ product = Context . Create ( handle ) ;
7373 }
7474 catch ( InternalError e )
7575 {
76- Cx . ExtractionError ( "Error processing type definition" , e . Message , GeneratedLocation . Create ( Cx ) , e . StackTrace ) ;
76+ Context . ExtractionError ( "Error processing type definition" , e . Message , GeneratedLocation . Create ( Context ) , e . StackTrace ) ;
7777 }
7878
7979 // Limitation of C#: Cannot yield return inside a try-catch.
8080 if ( product != null )
8181 yield return product ;
8282 }
8383
84- foreach ( var handle in Cx . MdReader . MethodDefinitions )
84+ foreach ( var handle in Context . MdReader . MethodDefinitions )
8585 {
8686 IExtractionProduct ? product = null ;
8787 try
8888 {
89- product = Cx . Create ( handle ) ;
89+ product = Context . Create ( handle ) ;
9090 }
9191 catch ( InternalError e )
9292 {
93- Cx . ExtractionError ( "Error processing bytecode" , e . Message , GeneratedLocation . Create ( Cx ) , e . StackTrace ) ;
93+ Context . ExtractionError ( "Error processing bytecode" , e . Message , GeneratedLocation . Create ( Context ) , e . StackTrace ) ;
9494 }
9595
9696 if ( product != null )
0 commit comments