提交 3a451f86 编写于 作者: N Neal Gafter

Fix a typo.

上级 ed026d94
......@@ -18,7 +18,7 @@ public override BoundNode VisitTryStatement(BoundTryStatement node)
var optimizing = this._compilation.Options.OptimizationLevel == OptimizationLevel.Release;
ImmutableArray<BoundCatchBlock> catchBlocks =
` // When optimizing and we have a try block without side-effects, we can discard the catch blocks.
// When optimizing and we have a try block without side-effects, we can discard the catch blocks.
(optimizing && !HasSideEffects(tryBlock)) ? ImmutableArray<BoundCatchBlock>.Empty
: this.VisitList(node.CatchBlocks);
BoundBlock finallyBlockOpt = (BoundBlock)this.Visit(node.FinallyBlockOpt);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册