@@ -18,7 +18,7 @@ public class Context
1818 /// <summary>
1919 /// Access various extraction functions, e.g. logger, trap writer.
2020 /// </summary>
21- public ExtractionContext ExtractionContext { get ; }
21+ public CSharp . ExtractionContext ExtractionContext { get ; }
2222
2323 /// <summary>
2424 /// Access to the trap file.
@@ -190,7 +190,7 @@ public void PopulateAll()
190190 }
191191 }
192192
193- protected Context ( ExtractionContext extractionContext , TrapWriter trapWriter , bool shouldAddAssemblyTrapPrefix = false )
193+ protected Context ( CSharp . ExtractionContext extractionContext , TrapWriter trapWriter , bool shouldAddAssemblyTrapPrefix = false )
194194 {
195195 ExtractionContext = extractionContext ;
196196 TrapWriter = trapWriter ;
@@ -274,7 +274,7 @@ private void Populate(ISymbol? optionalSymbol, CachedEntity entity)
274274
275275 bool duplicationGuard , deferred ;
276276
277- if ( ExtractionContext . Mode is ExtractorMode . Standalone )
277+ if ( ExtractionContext . Mode is CSharp . ExtractorMode . Standalone )
278278 {
279279 duplicationGuard = false ;
280280 deferred = false ;
@@ -408,7 +408,7 @@ private void ExtractionError(InternalError error)
408408
409409 private void ReportError ( InternalError error )
410410 {
411- if ( ! ExtractionContext . Mode . HasFlag ( ExtractorMode . Standalone ) )
411+ if ( ! ExtractionContext . Mode . HasFlag ( CSharp . ExtractorMode . Standalone ) )
412412 throw error ;
413413
414414 ExtractionError ( error ) ;
0 commit comments