2 overrides of WRN_GeneratorFailedDuringGeneration
Microsoft.CodeAnalysis.CSharp (1)
Errors\MessageProvider.cs (1)
258
public override int
WRN_GeneratorFailedDuringGeneration
=> (int)ErrorCode.WRN_GeneratorFailedDuringGeneration;
Microsoft.CodeAnalysis.Test.Utilities (1)
Mocks\TestMessageProvider.cs (1)
469
public override int
WRN_GeneratorFailedDuringGeneration
=> throw new NotImplementedException();
1 reference to WRN_GeneratorFailedDuringGeneration
Microsoft.CodeAnalysis (1)
SourceGeneration\GeneratorDriver.cs (1)
401
var errorCode = isInit ? provider.WRN_GeneratorFailedDuringInitialization : provider.
WRN_GeneratorFailedDuringGeneration
;