mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-20 11:36:10 +00:00
LibJS: Alphabetically sort the list of well-known symbols
This commit is contained in:
parent
31532e36a8
commit
f82b1c5a2d
Notes:
github-actions[bot]
2025-01-17 19:47:45 +00:00
Author: https://github.com/trflynn89 Commit: https://github.com/LadybirdBrowser/ladybird/commit/f82b1c5a2d8 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3290
1 changed files with 6 additions and 6 deletions
|
@ -122,21 +122,21 @@
|
|||
JS_ENUMERATE_TYPED_ARRAYS
|
||||
|
||||
#define JS_ENUMERATE_WELL_KNOWN_SYMBOLS \
|
||||
__JS_ENUMERATE(iterator, iterator) \
|
||||
__JS_ENUMERATE(asyncIterator, async_iterator) \
|
||||
__JS_ENUMERATE(dispose, dispose) \
|
||||
__JS_ENUMERATE(hasInstance, has_instance) \
|
||||
__JS_ENUMERATE(isConcatSpreadable, is_concat_spreadable) \
|
||||
__JS_ENUMERATE(iterator, iterator) \
|
||||
__JS_ENUMERATE(match, match) \
|
||||
__JS_ENUMERATE(matchAll, match_all) \
|
||||
__JS_ENUMERATE(replace, replace) \
|
||||
__JS_ENUMERATE(replaceAll, replace_all) \
|
||||
__JS_ENUMERATE(search, search) \
|
||||
__JS_ENUMERATE(split, split) \
|
||||
__JS_ENUMERATE(hasInstance, has_instance) \
|
||||
__JS_ENUMERATE(isConcatSpreadable, is_concat_spreadable) \
|
||||
__JS_ENUMERATE(unscopables, unscopables) \
|
||||
__JS_ENUMERATE(species, species) \
|
||||
__JS_ENUMERATE(split, split) \
|
||||
__JS_ENUMERATE(toPrimitive, to_primitive) \
|
||||
__JS_ENUMERATE(toStringTag, to_string_tag) \
|
||||
__JS_ENUMERATE(dispose, dispose)
|
||||
__JS_ENUMERATE(unscopables, unscopables)
|
||||
|
||||
#define JS_ENUMERATE_REGEXP_FLAGS \
|
||||
__JS_ENUMERATE(HasIndices, hasIndices, has_indices, d) \
|
||||
|
|
Loading…
Add table
Reference in a new issue