diff --git a/engine/src/flutter/tools/shelldb b/engine/src/flutter/tools/shelldb index d351232964..026ec97c26 100755 --- a/engine/src/flutter/tools/shelldb +++ b/engine/src/flutter/tools/shelldb @@ -47,6 +47,9 @@ _IGNORED_PATTERNS = [ re.compile(r'^\[error\] Native functions can only be declared in'), # TODO: Remove this once dev SDK includes Uri.directory constructor. re.compile(r'.*The class \'Uri\' does not have a constructor \'directory\''), + # TODO: Remove this once Sky no longer generates this warning. + # dartbug.com/22836 + re.compile(r'.*cannot both be unnamed'), ] # This 'strict dictionary' approach is useful for catching typos.