提交 b9cd4007 编写于 作者: H Hixie

Silence analyzer by explicitly casting the parent to the class we know it is.

TBR=abarth

Review URL: https://codereview.chromium.org/1234093002 .
上级 1a8304ec
......@@ -102,7 +102,8 @@ class AutoLayoutParentData extends BoxParentData
// This is called by the parent's layout function
// to lay our box out.
assert(_renderBox.parentData == this);
assert(_renderBox.parent.debugDoingThisLayout);
assert(_renderBox.parent is RenderAutoLayout);
assert((_renderBox.parent as RenderAutoLayout).debugDoingThisLayout); // TODO(ianh): Remove cast once the analyzer is cleverer
BoxConstraints size = new BoxConstraints.tightFor(
width: _rightEdge.value - _leftEdge.value,
height: _bottomEdge.value - _topEdge.value
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册