mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
This adds support for async iterators of the form:
async iterable<value_type>;
async iterable<value_type>(/* arguments... */);
It does not yet support the value pairs of the form:
async iterable<key_type, value_type>;
async iterable<key_type, value_type>(/* arguments... */);
Async iterators have an optional `return` data property. There's not a
particularly good way to know what interfaces implement this property.
So this adds a new extended attribute, DefinesAsyncIteratorReturn, which
interfaces can use to declare their support.
|
||
|---|---|---|
| .. | ||
| BindingsGenerator | ||
| CMakeLists.txt | ||
| GenerateAriaRoles.cpp | ||
| GenerateCSSDescriptors.cpp | ||
| GenerateCSSEnums.cpp | ||
| GenerateCSSKeyword.cpp | ||
| GenerateCSSMathFunctions.cpp | ||
| GenerateCSSMediaFeatureID.cpp | ||
| GenerateCSSPropertyID.cpp | ||
| GenerateCSSPseudoClass.cpp | ||
| GenerateCSSPseudoElement.cpp | ||
| GenerateCSSStyleProperties.cpp | ||
| GenerateCSSTransformFunctions.cpp | ||
| GenerateNamedCharacterReferences.cpp | ||
| GenerateWebGLRenderingContext.cpp | ||
| GenerateWindowOrWorkerInterfaces.cpp | ||
| GeneratorUtil.h | ||