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
0497235c
Unverified
Commit
0497235c
authored
Dec 13, 2019
by
Jonah Williams
Committed by
GitHub
Dec 13, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[flutter_tool] experimental resident web runner is not debuggable (#46916)
parent
ea4ff490
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
resident_web_runner.dart
...utter_tools/lib/src/build_runner/resident_web_runner.dart
+3
-0
resident_web_runner_test.dart
...er_tools/test/general.shard/resident_web_runner_test.dart
+6
-0
No files found.
packages/flutter_tools/lib/src/build_runner/resident_web_runner.dart
View file @
0497235c
...
...
@@ -360,6 +360,9 @@ class _ExperimentalResidentWebRunner extends ResidentWebRunner {
dartDefines:
dartDefines
,
);
@override
bool
get
debuggingEnabled
=>
false
;
@override
Future
<
int
>
run
({
Completer
<
DebugConnectionInfo
>
connectionInfoCompleter
,
...
...
packages/flutter_tools/test/general.shard/resident_web_runner_test.dart
View file @
0497235c
...
...
@@ -486,6 +486,12 @@ void main() {
FeatureFlags:
()
=>
TestFeatureFlags
(
isWebIncrementalCompilerEnabled:
true
),
}));
test
(
'experimental resident runner is not debuggable'
,
()
=>
testbed
.
run
(()
{
expect
(
residentWebRunner
.
debuggingEnabled
,
false
);
},
overrides:
<
Type
,
Generator
>{
FeatureFlags:
()
=>
TestFeatureFlags
(
isWebIncrementalCompilerEnabled:
true
),
}));
test
(
'Can hot restart after attaching'
,
()
=>
testbed
.
run
(()
async
{
_setupMocks
();
final
Completer
<
DebugConnectionInfo
>
connectionInfoCompleter
=
Completer
<
DebugConnectionInfo
>();
...
...
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