Removing "I like pie" diagnostics
This commit is contained in:
parent
963f086eb0
commit
ad089be477
|
|
@ -20,15 +20,13 @@ namespace Microsoft.AspNet.Server.Kestrel.GeneratedCode
|
||||||
public string Name { get; set; }
|
public string Name { get; set; }
|
||||||
public int Index { get; set; }
|
public int Index { get; set; }
|
||||||
public string Identifier => Name.Replace("-", "");
|
public string Identifier => Name.Replace("-", "");
|
||||||
public string TestBit() => $"((_bits & ({1L << Index}L)) != 0)";
|
public string TestBit() => $"((_bits & {1L << Index}L) != 0)";
|
||||||
public string SetBit() => $"_bits |= {1L << Index}L";
|
public string SetBit() => $"_bits |= {1L << Index}L";
|
||||||
public string ClearBit() => $"_bits &= ~{(1L << Index)}L";
|
public string ClearBit() => $"_bits &= ~{1L << Index}L";
|
||||||
}
|
}
|
||||||
|
|
||||||
public virtual void BeforeCompile(BeforeCompileContext context)
|
public virtual void BeforeCompile(BeforeCompileContext context)
|
||||||
{
|
{
|
||||||
Console.WriteLine("I like pie");
|
|
||||||
|
|
||||||
var commonHeaders = new[]
|
var commonHeaders = new[]
|
||||||
{
|
{
|
||||||
"Cache-Control",
|
"Cache-Control",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue