提交 316c455a 编写于 作者: J John Hamby

Added a comment and some whitespace, in hopes of convincing Git to update my PR.

上级 17354951
......@@ -168,6 +168,8 @@ public override BoundNode Visit(BoundNode node)
BoundStatement statement = node as BoundStatement;
if (statement != null)
{
// The default behavior is to instrument a statement unless it is compiler generated.
// Filter out statements that are not to be instrumented, and force instrumentation of some compiler-generated statements.
switch (statement.Kind)
{
case BoundKind.SwitchSection:
......
......@@ -271,6 +271,7 @@ static int DoubleDeclaration(int x)
int c = x;
int a, b;
int f;
a = b = f = c;
int d = a, e = b;
return d + e + f;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册