File tree 3 files changed +10
-0
lines changed
native_assets_builder/lib/src/build_runner
native_assets_cli/lib/src 3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -78,6 +78,9 @@ class NativeAssetsBuildRunner {
78
78
/// The native assets build runner does not support reentrancy for identical
79
79
/// [BuildInput] and [LinkInput] ! For more info see:
80
80
/// https://github.com/dart-lang/native/issues/1319
81
+ ///
82
+ /// The base protocol can be extended with [extensions] . See
83
+ /// [ProtocolExtension] for more documentation.
81
84
Future <BuildResult ?> build ({
82
85
required List <ProtocolExtension > extensions,
83
86
required bool linkingEnabled,
@@ -177,6 +180,9 @@ class NativeAssetsBuildRunner {
177
180
/// The native assets build runner does not support reentrancy for identical
178
181
/// [BuildInput] and [LinkInput] ! For more info see:
179
182
/// https://github.com/dart-lang/native/issues/1319
183
+ ///
184
+ /// The base protocol can be extended with [extensions] . See
185
+ /// [ProtocolExtension] for more documentation.
180
186
Future <LinkResult ?> link ({
181
187
required List <ProtocolExtension > extensions,
182
188
Uri ? resourceIdentifiers,
Original file line number Diff line number Diff line change 5
5
import '../../code_assets_builder.dart' ;
6
6
import 'validation.dart' ;
7
7
8
+ /// The protocol extension for the `hook/build.dart` and `hook/link.dart`
9
+ /// with [CodeAsset] s and [CodeConfig] .
8
10
final class CodeAssetExtension implements ProtocolExtension {
9
11
final Architecture targetArchitecture;
10
12
final OS targetOS;
Original file line number Diff line number Diff line change 5
5
import '../../data_assets_builder.dart' ;
6
6
import 'validation.dart' ;
7
7
8
+ /// The protocol extension for the `hook/build.dart` and `hook/link.dart`
9
+ /// with [DataAsset] s.
8
10
final class DataAssetsExtension implements ProtocolExtension {
9
11
DataAssetsExtension ();
10
12
You can’t perform that action at this time.
0 commit comments