Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
975fcc1f
Unverified
Commit
975fcc1f
authored
Sep 10, 2021
by
Phil Quitslund
Committed by
GitHub
Sep 10, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
master->main deafult branch migration (#89782)
parent
e7b1b206
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
14 additions
and
14 deletions
+14
-14
analysis_options.yaml
analysis_options.yaml
+1
-1
binding.dart
packages/flutter/lib/src/foundation/binding.dart
+1
-1
widget_inspector.dart
packages/flutter/lib/src/widgets/widget_inspector.dart
+3
-3
README.md
packages/flutter/test_fixes/README.md
+1
-1
driver.dart
packages/flutter_driver/lib/src/driver/driver.dart
+1
-1
vmservice_driver.dart
packages/flutter_driver/lib/src/driver/vmservice_driver.dart
+1
-1
device.dart
packages/flutter_tools/lib/src/device.dart
+1
-1
flutter_command.dart
packages/flutter_tools/lib/src/runner/flutter_command.dart
+1
-1
coverage_collector.dart
packages/flutter_tools/lib/src/test/coverage_collector.dart
+1
-1
vmservice_test.dart
...ages/flutter_tools/test/general.shard/vmservice_test.dart
+1
-1
dart_vm.dart
...s/fuchsia_remote_debug_protocol/lib/src/dart/dart_vm.dart
+1
-1
integration_test.dart
packages/integration_test/lib/integration_test.dart
+1
-1
No files found.
analysis_options.yaml
View file @
975fcc1f
...
...
@@ -5,7 +5,7 @@
#
# For a list of lints, see: http://dart-lang.github.io/linter/lints/
# See the configuration guide for more
# https://github.com/dart-lang/sdk/tree/ma
ster
/pkg/analyzer#configuring-the-analyzer
# https://github.com/dart-lang/sdk/tree/ma
in
/pkg/analyzer#configuring-the-analyzer
#
# There are other similar analysis options files in the flutter repos,
# which should be kept in sync with this file:
...
...
packages/flutter/lib/src/foundation/binding.dart
View file @
975fcc1f
...
...
@@ -162,7 +162,7 @@ abstract class BindingBase {
///
/// See also:
///
/// * <https://github.com/dart-lang/sdk/blob/ma
ster
/runtime/vm/service/service.md#rpcs-requests-and-responses>
/// * <https://github.com/dart-lang/sdk/blob/ma
in
/runtime/vm/service/service.md#rpcs-requests-and-responses>
@protected
@mustCallSuper
void
initServiceExtensions
()
{
...
...
packages/flutter/lib/src/widgets/widget_inspector.dart
View file @
975fcc1f
...
...
@@ -688,9 +688,9 @@ class _WidgetInspectorService = Object with WidgetInspectorService;
///
/// Calls to this object are typically made from GUI tools such as the [Flutter
/// IntelliJ Plugin](https://github.com/flutter/flutter-intellij/blob/master/README.md)
/// using the [Dart VM Service protocol](https://github.com/dart-lang/sdk/blob/ma
ster
/runtime/vm/service/service.md).
/// using the [Dart VM Service protocol](https://github.com/dart-lang/sdk/blob/ma
in
/runtime/vm/service/service.md).
/// This class uses its own object id and manages object lifecycles itself
/// instead of depending on the [object ids](https://github.com/dart-lang/sdk/blob/ma
ster
/runtime/vm/service/service.md#getobject)
/// instead of depending on the [object ids](https://github.com/dart-lang/sdk/blob/ma
in
/runtime/vm/service/service.md#getobject)
/// specified by the VM Service Protocol because the VM Service Protocol ids
/// expire unpredictably. Object references are tracked in groups so that tools
/// that clients can use dereference all objects in a group with a single
...
...
@@ -977,7 +977,7 @@ mixin WidgetInspectorService {
///
/// See also:
///
/// * <https://github.com/dart-lang/sdk/blob/ma
ster
/runtime/vm/service/service.md#rpcs-requests-and-responses>
/// * <https://github.com/dart-lang/sdk/blob/ma
in
/runtime/vm/service/service.md#rpcs-requests-and-responses>
/// * [BindingBase.initServiceExtensions], which explains when service
/// extensions can be used.
void
initServiceExtensions
(
RegisterServiceExtensionCallback
registerServiceExtensionCallback
)
{
...
...
packages/flutter/test_fixes/README.md
View file @
975fcc1f
...
...
@@ -12,7 +12,7 @@ Note that the tests in this directory are also invoked from external repositorie
Specifically, the CI system for the dart-lang/sdk repo runs these tests in order to
ensure that changes to the dart fix file format do not break Flutter.
See
[
tools/bots/flutter/analyze_flutter_flutter.sh
](
https://github.com/dart-lang/sdk/blob/ma
ster
/tools/bots/flutter/analyze_flutter_flutter.sh
)
See
[
tools/bots/flutter/analyze_flutter_flutter.sh
](
https://github.com/dart-lang/sdk/blob/ma
in
/tools/bots/flutter/analyze_flutter_flutter.sh
)
for where the tests are invoked.
When possible, please coordinate changes to this directory that might affect the
...
...
packages/flutter_driver/lib/src/driver/driver.dart
View file @
975fcc1f
...
...
@@ -625,7 +625,7 @@ abstract class FlutterDriver {
/// ...
/// ]
///
/// [getFlagList]: https://github.com/dart-lang/sdk/blob/ma
ster
/runtime/vm/service/service.md#getflaglist
/// [getFlagList]: https://github.com/dart-lang/sdk/blob/ma
in
/runtime/vm/service/service.md#getflaglist
///
/// Throws [UnimplementedError] on [WebFlutterDriver] instances.
Future
<
List
<
Map
<
String
,
dynamic
>>>
getVmFlags
()
async
{
...
...
packages/flutter_driver/lib/src/driver/vmservice_driver.dart
View file @
975fcc1f
...
...
@@ -580,7 +580,7 @@ Future<vms.VmService> _waitAndConnect(String url, Map<String, dynamic>? headers)
const
Duration
_kPauseBetweenReconnectAttempts
=
Duration
(
seconds:
1
);
// See `timeline_streams` in
// https://github.com/dart-lang/sdk/blob/ma
ster
/runtime/vm/timeline.cc
// https://github.com/dart-lang/sdk/blob/ma
in
/runtime/vm/timeline.cc
List
<
String
>
_timelineStreamsToString
(
List
<
TimelineStream
>
streams
)
{
return
streams
.
map
<
String
>((
TimelineStream
stream
)
{
switch
(
stream
)
{
...
...
packages/flutter_tools/lib/src/device.dart
View file @
975fcc1f
...
...
@@ -860,7 +860,7 @@ class DebuggingOptions {
/// Additional null runtime checks inserted for web applications.
///
/// See also:
/// * https://github.com/dart-lang/sdk/blob/ma
ster
/sdk/lib/html/doc/NATIVE_NULL_ASSERTIONS.md
/// * https://github.com/dart-lang/sdk/blob/ma
in
/sdk/lib/html/doc/NATIVE_NULL_ASSERTIONS.md
final
bool
nativeNullAssertions
;
bool
get
hasObservatoryPort
=>
hostVmServicePort
!=
null
;
...
...
packages/flutter_tools/lib/src/runner/flutter_command.dart
View file @
975fcc1f
...
...
@@ -759,7 +759,7 @@ abstract class FlutterCommand extends Command<void> {
FlutterOptions
.
kEnableExperiment
,
help:
'The name of an experimental Dart feature to enable. For more information see: '
'https://github.com/dart-lang/sdk/blob/ma
ster
/docs/process/experimental-flags.md'
,
'https://github.com/dart-lang/sdk/blob/ma
in
/docs/process/experimental-flags.md'
,
hide:
hide
,
);
}
...
...
packages/flutter_tools/lib/src/test/coverage_collector.dart
View file @
975fcc1f
...
...
@@ -324,7 +324,7 @@ void _buildCoverageMap(
// Binary search the token position table for the line and column which
// corresponds to each token position.
// The format of this table is described in https://github.com/dart-lang/sdk/blob/ma
ster
/runtime/vm/service/service.md#script
// The format of this table is described in https://github.com/dart-lang/sdk/blob/ma
in
/runtime/vm/service/service.md#script
List
<
int
>
_lineAndColumn
(
int
position
,
List
<
dynamic
>
tokenPositions
)
{
int
min
=
0
;
int
max
=
tokenPositions
.
length
;
...
...
packages/flutter_tools/test/general.shard/vmservice_test.dart
View file @
975fcc1f
...
...
@@ -697,7 +697,7 @@ void main() {
args:
<
String
,
Object
>{
'streamId'
:
'Isolate'
,
},
// Stream already subscribed - https://github.com/dart-lang/sdk/blob/ma
ster
/runtime/vm/service/service.md#streamlisten
// Stream already subscribed - https://github.com/dart-lang/sdk/blob/ma
in
/runtime/vm/service/service.md#streamlisten
errorCode:
103
,
),
listViewsRequest
,
...
...
packages/fuchsia_remote_debug_protocol/lib/src/dart/dart_vm.dart
View file @
975fcc1f
...
...
@@ -210,7 +210,7 @@ class FlutterView {
/// This is a wrapper class for the `@Isolate` RPC object.
///
/// See:
/// https://github.com/dart-lang/sdk/blob/ma
ster
/runtime/vm/service/service.md#isolate
/// https://github.com/dart-lang/sdk/blob/ma
in
/runtime/vm/service/service.md#isolate
///
/// This class contains information about the Isolate like its name and ID, as
/// well as a reference to the parent DartVM on which it is running.
...
...
packages/integration_test/lib/integration_test.dart
View file @
975fcc1f
...
...
@@ -256,7 +256,7 @@ https://flutter.dev/docs/testing/integration-tests#testing-on-firebase-test-lab
/// The `streams` parameter limits the recorded timeline event streams to only
/// the ones listed. By default, all streams are recorded.
/// See `timeline_streams` in
/// [Dart-SDK/runtime/vm/timeline.cc](https://github.com/dart-lang/sdk/blob/ma
ster
/runtime/vm/timeline.cc)
/// [Dart-SDK/runtime/vm/timeline.cc](https://github.com/dart-lang/sdk/blob/ma
in
/runtime/vm/timeline.cc)
///
/// If [retainPriorEvents] is true, retains events recorded prior to calling
/// [action]. Otherwise, prior events are cleared before calling [action]. By
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment