-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Hidenori Matsubayashi <[email protected]>
- Loading branch information
1 parent
de7b47e
commit 070d039
Showing
22 changed files
with
336 additions
and
392 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1a65d409c7a1438a34d21b60bf30a6fd5db59314 | ||
d44b5a94c976fbb65815374f61ab5392a220b084 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
4d9e56e694b656610ab87fcf2efbcd226e0ed8cf | ||
84a1e904f44f9b0e9c4510138010edcc653163f8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,32 @@ | ||
// Copyright 2022 Sony Group Corporation. All rights reserved. | ||
// Copyright 2023 Sony Group Corporation. All rights reserved. | ||
// Copyright 2020 Samsung Electronics Co., Ltd. All rights reserved. | ||
// Use of this source code is governed by a BSD-style license that can be | ||
// found in the LICENSE file. | ||
|
||
// @dart = 2.8 | ||
|
||
import 'package:flutter_tools/src/commands/analyze.dart'; | ||
import 'package:flutter_tools/src/globals.dart' as globals; | ||
import 'package:flutter_tools/src/project_validator.dart'; | ||
|
||
import '../elinux_plugins.dart'; | ||
|
||
class ELinuxAnalyzeCommand extends AnalyzeCommand with ELinuxExtension { | ||
ELinuxAnalyzeCommand({bool verboseHelp = false}) | ||
ELinuxAnalyzeCommand({super.verboseHelp}) | ||
: super( | ||
verboseHelp: verboseHelp, | ||
fileSystem: globals.fs, | ||
platform: globals.platform, | ||
processManager: globals.processManager, | ||
logger: globals.logger, | ||
terminal: globals.terminal, | ||
artifacts: globals.artifacts, | ||
artifacts: globals.artifacts!, | ||
// new ProjectValidators should be added here for the --suggestions to run | ||
allProjectValidators: <ProjectValidator>[ | ||
GeneralInfoProjectValidator() | ||
GeneralInfoProjectValidator(), | ||
VariableDumpMachineProjectValidator( | ||
logger: globals.logger, | ||
fileSystem: globals.fs, | ||
platform: globals.platform, | ||
), | ||
], | ||
suppressAnalytics: globals.flutterUsage.suppressAnalytics, | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.