LibJS: Refactor Temporal add/subtract to common AOs

This is an editorial change in the Temporal spec.

See:
- 2f96efc
- fbff635
This commit is contained in:
Linus Groh 2022-05-06 19:01:15 +02:00
commit 3729a910f6
Notes: sideshowbarker 2024-07-17 11:10:33 +09:00
19 changed files with 259 additions and 280 deletions

View file

@ -17,6 +17,11 @@
namespace JS::Temporal {
enum class ArithmeticOperation {
Add,
Subtract,
};
enum class OptionType {
Boolean,
String,