public static CSharp_FastCompiler        raise_OnCompileOK(this CSharp_FastCompiler csharpCompiler)
 {
     if (csharpCompiler.events().notNull())
     {
         csharpCompiler.events().OnCompileOK.invoke();
     }
     return(csharpCompiler);
 }
 public static CSharp_FastCompiler        set_OnCompileOK(this CSharp_FastCompiler csharpCompiler, Action action)
 {
     if (csharpCompiler.events().notNull())
     {
         csharpCompiler.events().OnCompileOK = action;
     }
     return(csharpCompiler);
 }
 public static CSharp_FastCompiler        raise_BeforeSnippetAst(this CSharp_FastCompiler csharpCompiler)
 {
     if (csharpCompiler.events().notNull())
     {
         csharpCompiler.events().BeforeSnippetAst.invoke();
     }
     return(csharpCompiler);
 }
 public static CSharp_FastCompiler        set_BeforeSnippetAst(this CSharp_FastCompiler csharpCompiler, Action action)
 {
     if (csharpCompiler.events().notNull())
     {
         csharpCompiler.events().BeforeSnippetAst = action;
     }
     return(csharpCompiler);
 }