Unverified Commit 697e930d authored by Jim Graham's avatar Jim Graham Committed by GitHub

add noSuchMethod to _MulticastCanvas to unblock smoke testing against...

add noSuchMethod to _MulticastCanvas to unblock smoke testing against forthcoming new getTransform/Clip methods (#103737)
parent 03be77db
...@@ -285,6 +285,11 @@ class _MulticastCanvas implements Canvas { ...@@ -285,6 +285,11 @@ class _MulticastCanvas implements Canvas {
_main.translate(dx, dy); _main.translate(dx, dy);
_screenshot.translate(dx, dy); _screenshot.translate(dx, dy);
} }
@override
dynamic noSuchMethod(Invocation invocation) {
super.noSuchMethod(invocation);
}
} }
Rect _calculateSubtreeBoundsHelper(RenderObject object, Matrix4 transform) { Rect _calculateSubtreeBoundsHelper(RenderObject object, Matrix4 transform) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment