コード例 #1
0
 public static void AddLineDirectiveHidden(this CodeDomHelper codeDomHelper, CodeStatementCollection statements, SpecFlowConfiguration specFlowConfiguration)
 {
     if (specFlowConfiguration.AllowDebugGeneratedFiles)
     {
         return;
     }
     codeDomHelper.AddDisableSourceLinePragmaStatement(statements);
 }
コード例 #2
0
        private void AddLineDirectiveHidden(CodeStatementCollection statements)
        {
            if (generatorConfiguration.AllowDebugGeneratedFiles)
            {
                return;
            }

            codeDomHelper.AddDisableSourceLinePragmaStatement(statements);
        }
コード例 #3
0
 private void AddLineDirectiveHidden(CodeStatementCollection statements)
 {
     _codeDomHelper.AddDisableSourceLinePragmaStatement(statements);
 }