Commit 189028a9 authored by Alexandre Ardhuin's avatar Alexandre Ardhuin Committed by GitHub

Separate the 'if' expression from its statement (#9177)

parent 0cf2f88f
...@@ -128,7 +128,8 @@ final ArgParser _argParser = new ArgParser() ...@@ -128,7 +128,8 @@ final ArgParser _argParser = new ArgParser()
); );
bool _listsEqual(List<dynamic> a, List<dynamic> b) { bool _listsEqual(List<dynamic> a, List<dynamic> b) {
if (a.length != b.length) return false; if (a.length != b.length)
return false;
for (int i = 0; i < a.length; i++) { for (int i = 0; i < a.length; i++) {
if (a[i] != b[i]) if (a[i] != b[i])
......
...@@ -384,7 +384,8 @@ String get adbPath { ...@@ -384,7 +384,8 @@ String get adbPath {
final String adbPath = path.join(androidHome, 'platform-tools/adb'); final String adbPath = path.join(androidHome, 'platform-tools/adb');
if (!canRun(adbPath)) throw 'adb not found at: $adbPath'; if (!canRun(adbPath))
throw 'adb not found at: $adbPath';
return path.absolute(adbPath); return path.absolute(adbPath);
} }
...@@ -101,7 +101,8 @@ Future<VMIsolateRef> _connectToRunnerIsolate(int vmServicePort) async { ...@@ -101,7 +101,8 @@ Future<VMIsolateRef> _connectToRunnerIsolate(int vmServicePort) async {
final VM vm = await client.getVM(); final VM vm = await client.getVM();
final VMIsolateRef isolate = vm.isolates.single; final VMIsolateRef isolate = vm.isolates.single;
final String response = await isolate.invokeExtension('ext.cocoonRunnerReady'); final String response = await isolate.invokeExtension('ext.cocoonRunnerReady');
if (response != 'ready') throw 'not ready yet'; if (response != 'ready')
throw 'not ready yet';
return isolate; return isolate;
} catch (error) { } catch (error) {
const Duration connectionTimeout = const Duration(seconds: 2); const Duration connectionTimeout = const Duration(seconds: 2);
......
...@@ -306,7 +306,8 @@ Directory get flutterDirectory => dir('../..').absolute; ...@@ -306,7 +306,8 @@ Directory get flutterDirectory => dir('../..').absolute;
String requireEnvVar(String name) { String requireEnvVar(String name) {
final String value = Platform.environment[name]; final String value = Platform.environment[name];
if (value == null) fail('$name environment variable is missing. Quitting.'); if (value == null)
fail('$name environment variable is missing. Quitting.');
return value; return value;
} }
...@@ -450,4 +451,4 @@ Future<int> findAvailablePort() async { ...@@ -450,4 +451,4 @@ Future<int> findAvailablePort() async {
} }
} }
bool canRun(String path) => _processManager.canRun(path); bool canRun(String path) => _processManager.canRun(path);
\ No newline at end of file
...@@ -112,7 +112,8 @@ class StartupTest { ...@@ -112,7 +112,8 @@ class StartupTest {
]).timeout(_startupTimeout); ]).timeout(_startupTimeout);
final Map<String, dynamic> data = JSON.decode(file('$testDirectory/build/start_up_info.json').readAsStringSync()); final Map<String, dynamic> data = JSON.decode(file('$testDirectory/build/start_up_info.json').readAsStringSync());
if (!reportMetrics) return new TaskResult.success(data); if (!reportMetrics)
return new TaskResult.success(data);
return new TaskResult.success(data, benchmarkScoreKeys: <String>[ return new TaskResult.success(data, benchmarkScoreKeys: <String>[
'timeToFirstFrameMicros', 'timeToFirstFrameMicros',
......
...@@ -12,7 +12,8 @@ Future<String> mockUpdateUrlFetcher() { ...@@ -12,7 +12,8 @@ Future<String> mockUpdateUrlFetcher() {
void main() { void main() {
final TestWidgetsFlutterBinding binding = TestWidgetsFlutterBinding.ensureInitialized(); final TestWidgetsFlutterBinding binding = TestWidgetsFlutterBinding.ensureInitialized();
if (binding is LiveTestWidgetsFlutterBinding) binding.allowAllFrames = true; if (binding is LiveTestWidgetsFlutterBinding)
binding.allowAllFrames = true;
// Regression test for https://github.com/flutter/flutter/pull/5168 // Regression test for https://github.com/flutter/flutter/pull/5168
testWidgets('update dialog', (WidgetTester tester) async { testWidgets('update dialog', (WidgetTester tester) async {
......
...@@ -537,7 +537,8 @@ Future<VMServiceClientConnection> _waitAndConnect(String url) async { ...@@ -537,7 +537,8 @@ Future<VMServiceClientConnection> _waitAndConnect(String url) async {
Future<VMServiceClientConnection> attemptConnection() async { Future<VMServiceClientConnection> attemptConnection() async {
Uri uri = Uri.parse(url); Uri uri = Uri.parse(url);
if (uri.scheme == 'http') uri = uri.replace(scheme: 'ws', path: '/ws'); if (uri.scheme == 'http')
uri = uri.replace(scheme: 'ws', path: '/ws');
WebSocket ws1; WebSocket ws1;
WebSocket ws2; WebSocket ws2;
......
...@@ -190,7 +190,8 @@ class AndroidStudio implements Comparable<AndroidStudio> { ...@@ -190,7 +190,8 @@ class AndroidStudio implements Comparable<AndroidStudio> {
bool _hasStudioAt(String path, {Version newerThan}) { bool _hasStudioAt(String path, {Version newerThan}) {
return studios.any((AndroidStudio studio) { return studios.any((AndroidStudio studio) {
if (studio.directory != path) return false; if (studio.directory != path)
return false;
if (newerThan != null) { if (newerThan != null) {
return studio.version.compareTo(newerThan) >= 0; return studio.version.compareTo(newerThan) >= 0;
} }
......
...@@ -374,11 +374,13 @@ Map<_Asset, List<_Asset>> _parseAssets( ...@@ -374,11 +374,13 @@ Map<_Asset, List<_Asset>> _parseAssets(
if (manifestDescriptor.containsKey('fonts')) { if (manifestDescriptor.containsKey('fonts')) {
for (Map<String, dynamic> family in manifestDescriptor['fonts']) { for (Map<String, dynamic> family in manifestDescriptor['fonts']) {
final List<Map<String, dynamic>> fonts = family['fonts']; final List<Map<String, dynamic>> fonts = family['fonts'];
if (fonts == null) continue; if (fonts == null)
continue;
for (Map<String, dynamic> font in fonts) { for (Map<String, dynamic> font in fonts) {
final String asset = font['asset']; final String asset = font['asset'];
if (asset == null) continue; if (asset == null)
continue;
final _Asset baseAsset = _resolveAsset(packageMap, assetBase, asset); final _Asset baseAsset = _resolveAsset(packageMap, assetBase, asset);
if (!baseAsset.assetFileExists) { if (!baseAsset.assetFileExists) {
......
...@@ -207,7 +207,8 @@ String findProjectRoot([String directory]) { ...@@ -207,7 +207,8 @@ String findProjectRoot([String directory]) {
if (fs.isFileSync(fs.path.join(directory, kProjectRootSentinel))) if (fs.isFileSync(fs.path.join(directory, kProjectRootSentinel)))
return directory; return directory;
final String parent = fs.path.dirname(directory); final String parent = fs.path.dirname(directory);
if (directory == parent) return null; if (directory == parent)
return null;
directory = parent; directory = parent;
} }
} }
...@@ -25,8 +25,10 @@ class Version implements Comparable<Version> { ...@@ -25,8 +25,10 @@ class Version implements Comparable<Version> {
factory Version(int major, int minor, int patch, {String text}) { factory Version(int major, int minor, int patch, {String text}) {
if (text == null) { if (text == null) {
text = major == null ? '0' : '$major'; text = major == null ? '0' : '$major';
if (minor != null) text = '$text.$minor'; if (minor != null)
if (patch != null) text = '$text.$patch'; text = '$text.$minor';
if (patch != null)
text = '$text.$patch';
} }
return new Version._(major ?? 0, minor ?? 0, patch ?? 0, text); return new Version._(major ?? 0, minor ?? 0, patch ?? 0, text);
...@@ -93,8 +95,10 @@ class Version implements Comparable<Version> { ...@@ -93,8 +95,10 @@ class Version implements Comparable<Version> {
@override @override
int compareTo(Version other) { int compareTo(Version other) {
if (major != other.major) return major.compareTo(other.major); if (major != other.major)
if (minor != other.minor) return minor.compareTo(other.minor); return major.compareTo(other.major);
if (minor != other.minor)
return minor.compareTo(other.minor);
return patch.compareTo(other.patch); return patch.compareTo(other.patch);
} }
......
...@@ -43,10 +43,13 @@ class ChannelCommand extends FlutterCommand { ...@@ -43,10 +43,13 @@ class ChannelCommand extends FlutterCommand {
workingDirectory: Cache.flutterRoot, workingDirectory: Cache.flutterRoot,
mapFunction: (String line) { mapFunction: (String line) {
final List<String> split = line.split('/'); final List<String> split = line.split('/');
if (split.length < 2) return null; if (split.length < 2)
return null;
final String branchName = split[1]; final String branchName = split[1];
if (branchName.startsWith('HEAD')) return null; if (branchName.startsWith('HEAD'))
if (branchName == currentBranch) return '* $branchName'; return null;
if (branchName == currentBranch)
return '* $branchName';
return ' $branchName'; return ' $branchName';
}, },
); );
......
...@@ -369,7 +369,8 @@ class IntelliJValidatorOnLinuxAndWindows extends IntelliJValidator { ...@@ -369,7 +369,8 @@ class IntelliJValidatorOnLinuxAndWindows extends IntelliJValidator {
static Iterable<DoctorValidator> get installed { static Iterable<DoctorValidator> get installed {
final List<DoctorValidator> validators = <DoctorValidator>[]; final List<DoctorValidator> validators = <DoctorValidator>[];
if (homeDirPath == null) return validators; if (homeDirPath == null)
return validators;
void addValidator(String title, String version, String installPath, String pluginsPath) { void addValidator(String title, String version, String installPath, String pluginsPath) {
final IntelliJValidatorOnLinuxAndWindows validator = final IntelliJValidatorOnLinuxAndWindows validator =
......
...@@ -115,7 +115,8 @@ void main() { ...@@ -115,7 +115,8 @@ void main() {
final CreateCommand command = new CreateCommand(); final CreateCommand command = new CreateCommand();
final CommandRunner<Null> runner = createTestCommandRunner(command); final CommandRunner<Null> runner = createTestCommandRunner(command);
final File existingFile = fs.file("${temp.path.toString()}/bad"); final File existingFile = fs.file("${temp.path.toString()}/bad");
if (!existingFile.existsSync()) existingFile.createSync(); if (!existingFile.existsSync())
existingFile.createSync();
try { try {
await runner.run(<String>['create', existingFile.path]); await runner.run(<String>['create', existingFile.path]);
fail('expected ToolExit exception'); fail('expected ToolExit exception');
......
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