Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
dart.googlesource.com-pub
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
fuchsia-mirror
dart.googlesource.com-pub
Commits
14610632
Commit
14610632
authored
7 years ago
by
Jacob MacDonald
Browse files
Options
Downloads
Patches
Plain Diff
start building transitive js deps eagerly (#1595)
parent
1727ddf9
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/src/barback/dartdevc/dartdevc_environment.dart
+15
-2
15 additions, 2 deletions
lib/src/barback/dartdevc/dartdevc_environment.dart
with
15 additions
and
2 deletions
lib/src/barback/dartdevc/dartdevc_environment.dart
+
15
−
2
View file @
14610632
...
...
@@ -66,7 +66,7 @@ class DartDevcEnvironment {
// We only care about real entrypoint modules, we collect those and all
// their transitive deps.
if
(
!
await
isAppEntryPoint
(
asset
.
id
,
_barback
.
getAssetById
))
continue
;
// Build the entrypoint
js
files, and collect the set of transitive
// Build the entrypoint
JS
files, and collect the set of transitive
// modules that are required (will be built later).
var
futureAssets
=
_buildAsset
(
asset
.
id
.
addExtension
(
'.js'
),
logError:
logError
);
...
...
@@ -118,6 +118,7 @@ class DartDevcEnvironment {
/// Completes with an [AssetNotFoundException] if the asset couldn't be built.
Map
<
AssetId
,
Future
<
Asset
>>
_buildAsset
(
AssetId
id
,
{
logError
(
String
message
)})
{
if
(
_assetCache
[
id
]
!=
null
)
return
{
id:
_assetCache
[
id
]};
logError
??=
log
.
error
;
Map
<
AssetId
,
Future
<
Asset
>>
assets
;
if
(
id
.
path
.
endsWith
(
unlinkedSummaryExtension
))
{
...
...
@@ -144,6 +145,18 @@ class DartDevcEnvironment {
var
jsId
=
id
.
extension
==
'.map'
?
id
.
changeExtension
(
''
)
:
id
;
assets
=
createDartdevcModule
(
jsId
,
_moduleReader
,
_scratchSpace
,
_environmentConstants
,
_mode
,
logError
);
// Pre-emptively start building all transitive JS deps under the
// assumption they will be needed in the near future.
runZoned
(()
async
{
var
module
=
await
_moduleReader
.
moduleFor
(
jsId
);
var
deps
=
await
_moduleReader
.
readTransitiveDeps
(
module
);
deps
.
forEach
((
moduleId
)
=
>
getAssetById
(
moduleId
.
jsId
));
},
onError:
(
_
)
{
// Ignore uncaught for now, the cached futures will contain the errors
// to respond with for later requests. Since nobody is awaiting these
// futures yet they end up bubbling up as uncaught errors unless we trap
// them here.
});
}
else
if
(
id
.
path
.
endsWith
(
moduleConfigName
))
{
assets
=
{
id:
_buildModuleConfig
(
id
)};
}
...
...
@@ -221,7 +234,7 @@ class DartDevcEnvironment {
}
}
/// Gives the dart entrypoint [AssetId] for a bootstrap
js
[id].
/// Gives the dart entrypoint [AssetId] for a bootstrap
JS
[id].
AssetId
_entrypointDartId
(
AssetId
id
)
{
if
(
id
.
extension
==
'.map'
)
id
=
id
.
changeExtension
(
''
);
assert
(
id
.
path
.
endsWith
(
'.bootstrap.js'
)
||
id
.
path
.
endsWith
(
'.dart.js'
));
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment