Fix old dart2js patch reference in service extensions

BUG=

Review URL: https://codereview.chromium.org//1311133010 .
This commit is contained in:
John McCutchan 2015-08-27 11:36:59 -07:00
parent 7052bd6bed
commit e2d2eed004

View file

@ -36,8 +36,8 @@ void log(String message,
final _extensions = new Map<String, ServiceExtensionHandler>();
@patch
bool _extensionExists(String method) {
return _extensions[method] != null;
ServiceExtensionHandler _lookupExtension(String method);
return _extensions[method];
}
@patch