This package contains generator scripts specific to package:web.
To generate Dart interfaces for a given .idl file, run the following at the root of this package:
dart bin/update_idl_bindings.dartIf multiple files are passed, the output option is regarded as an output directory instead.
To regenerate web bindings from the current IDL versions, run the entrypoint without any arguments:
dart bin/update_idl_bindings.dartTo re-generate the package from newer IDL versions, you can either run:
dart bin/update_idl_bindings.dart --updateor, manually edit lib/src/package.json to use specific IDL versions, and
re-run update_idl_bindings.dart.
package:web's dartdoc comments come from the MDN Web Docs project. In order to update to the latest version of the documentation, run:
dart bin/scrape_mdn.dartThat will collect the MDN documentation into third_party/mdn/mdn.json; changes
to that file should be committed to git. You'll need to run
update_idl_bindings.dart to produce Dart code using the updated documentation.
The generator scripts use a number of conventions to consistently handle Web IDL definitions:
- Interfaces are emitted as extension types that wrap and implement
JSObject. - Interface inheritance is maintained using
implementsbetween extension types. - Members of partial interfaces, partial mixins, and mixins are added to the interfaces that include them, and therefore do not have separate declarations.
- Generic types include the generic in the case of
JSArrayandJSPromise. - Enums are typedef'd to
String. - Callbacks and callback interfaces are typedef'd to
JSFunction. - In general, we prefer the Dart primitive over the JS type equivalent wherever
possible. For example, APIs use
Stringinstead ofJSString. - If a type appears in a generic position and it was typedef'd to a Dart
primitive type, it is replaced with the JS type equivalent to respect the type
bound of
JSAny?. - Union types are computed by picking the least upper bound of the types in the
JS type hierarchy, where every interface is equivalent to
JSObject. - Dictionary and typedef types are only emitted if they're used by another API.
- The generator uses the MDN compatibility data to determine what members, interfaces, and namespaces to emit. Currently, we only emit code that is standards track and is not experimental to reduce the number of breaking changes.
To ignore the compatibility data and emit all members, run:
dart bin/update_idl_bindings.dart --generate-allThis is useful if you want to avoid having to write bindings manually for some experimental and non-standard APIs.
Based on:
| Item | Version |
|---|---|
@mdn/browser-compat-data |
5.6.42 |
@webref/css |
6.20.3 |
@webref/elements |
2.4.0 |
@webref/idl |
3.60.1 |