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
14c53211
Commit
14c53211
authored
Jun 30, 2016
by
Phil Quitslund
Committed by
GitHub
Jun 30, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4793 from pq/analyzer_0.27.4-alpha.15
Update to latest analyzer (w/ cleanup).
parents
fa7f2714
ec256c5e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
13 deletions
+7
-13
framework.dart
packages/flutter/lib/src/widgets/framework.dart
+5
-11
pubspec.yaml
packages/flutter_test/pubspec.yaml
+1
-1
pubspec.yaml
packages/flutter_tools/pubspec.yaml
+1
-1
No files found.
packages/flutter/lib/src/widgets/framework.dart
View file @
14c53211
...
...
@@ -465,9 +465,6 @@ abstract class StatelessWidget extends Widget {
/// inserted into the tree in multiple places at once.
@protected
Widget
build
(
BuildContext
context
);
/// Trampoline to make the [build] closure library-accessible.
WidgetBuilder
get
_build
=>
build
;
}
/// A widget that has mutable state.
...
...
@@ -870,9 +867,6 @@ abstract class State<T extends StatefulWidget> {
@protected
Widget
build
(
BuildContext
context
);
/// Trampoline to make the [build] closure library-accessible.
WidgetBuilder
get
_build
=>
build
;
/// Called when a dependencies of this [State] object changes.
///
/// For example, if the previous call to [build] referenced an
...
...
@@ -2012,7 +2006,7 @@ abstract class ComponentElement extends BuildableElement {
/// Instantiation of [StatelessWidget]s.
class
StatelessElement
extends
ComponentElement
{
StatelessElement
(
StatelessWidget
widget
)
:
super
(
widget
)
{
_builder
=
widget
.
_
build
;
_builder
=
widget
.
build
;
}
@override
...
...
@@ -2022,14 +2016,14 @@ class StatelessElement extends ComponentElement {
void
update
(
StatelessWidget
newWidget
)
{
super
.
update
(
newWidget
);
assert
(
widget
==
newWidget
);
_builder
=
widget
.
_
build
;
_builder
=
widget
.
build
;
_dirty
=
true
;
rebuild
();
}
@override
void
_reassemble
()
{
_builder
=
widget
.
_
build
;
_builder
=
widget
.
build
;
super
.
_reassemble
();
}
}
...
...
@@ -2042,7 +2036,7 @@ class StatefulElement extends ComponentElement {
assert
(
_state
.
_element
==
null
);
_state
.
_element
=
this
;
assert
(
_builder
==
_buildNothing
);
_builder
=
_state
.
_
build
;
_builder
=
_state
.
build
;
assert
(
_state
.
_config
==
null
);
_state
.
_config
=
widget
;
assert
(
_state
.
_debugLifecycleState
==
_StateLifecycle
.
created
);
...
...
@@ -2053,7 +2047,7 @@ class StatefulElement extends ComponentElement {
@override
void
_reassemble
()
{
_builder
=
state
.
_
build
;
_builder
=
state
.
build
;
super
.
_reassemble
();
}
...
...
packages/flutter_test/pubspec.yaml
View file @
14c53211
...
...
@@ -10,7 +10,7 @@ dependencies:
# We don't actually depend on 'analyzer', but 'test' and 'flutter_tools' do.
# We pin the version of analyzer we depend on to avoid version skew across our
# packages.
analyzer
:
0.27.4-alpha.1
4
analyzer
:
0.27.4-alpha.1
5
flutter
:
path
:
../flutter
packages/flutter_tools/pubspec.yaml
View file @
14c53211
...
...
@@ -38,7 +38,7 @@ dependencies:
test
:
0.12.13+5
# Pinned in flutter_test as well.
analyzer
:
0.27.4-alpha.1
4
analyzer
:
0.27.4-alpha.1
5
dev_dependencies
:
mockito
:
^0.11.0
...
...
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