@@ -414,7 +414,7 @@ class MRDOCS_DECL Value
414
414
via @ref Scope::reset.
415
415
416
416
*/
417
- MRDOCS_DECL ~Value ();
417
+ ~Value ();
418
418
419
419
/* * Constructor
420
420
@@ -424,36 +424,36 @@ class MRDOCS_DECL Value
424
424
The value is undefined.
425
425
426
426
*/
427
- MRDOCS_DECL Value () noexcept ;
427
+ Value () noexcept ;
428
428
429
429
/* * Constructor
430
430
431
431
The function pushes a duplicate of
432
432
value to the stack and associates
433
433
the new value the top of the stack.
434
434
*/
435
- MRDOCS_DECL Value (Value const &);
435
+ Value (Value const &);
436
436
437
437
/* * Constructor
438
438
439
439
The function associates the
440
440
existing value with this object.
441
441
*/
442
- MRDOCS_DECL Value (Value&&) noexcept ;
442
+ Value (Value&&) noexcept ;
443
443
444
444
/* * Copy assignment.
445
445
446
446
@copydetails Value(Value const&)
447
447
448
448
*/
449
- MRDOCS_DECL Value& operator =(Value const &);
449
+ Value& operator =(Value const &);
450
450
451
451
/* * Move assignment.
452
452
453
453
@copydetails Value(Value&&)
454
454
455
455
*/
456
- MRDOCS_DECL Value& operator =(Value&&) noexcept ;
456
+ Value& operator =(Value&&) noexcept ;
457
457
458
458
/* * Return the type of the value.
459
459
@@ -476,7 +476,7 @@ class MRDOCS_DECL Value
476
476
internal ECMAScript class `Function`.
477
477
478
478
*/
479
- MRDOCS_DECL Type type () const noexcept ;
479
+ Type type () const noexcept ;
480
480
481
481
// / Check if the value is undefined.
482
482
bool
@@ -706,15 +706,13 @@ class MRDOCS_DECL Value
706
706
707
707
/* * Set or replace the value for a given key.
708
708
*/
709
- MRDOCS_DECL
710
709
void
711
710
set (
712
711
std::string_view key,
713
712
Value const & value) const ;
714
713
715
714
/* * Set or replace the value for a given key.
716
715
*/
717
- MRDOCS_DECL
718
716
void
719
717
set (
720
718
std::string_view key,
@@ -932,16 +930,13 @@ class MRDOCS_DECL Value
932
930
toString (Value const & value);
933
931
934
932
private:
935
- MRDOCS_DECL
936
933
Expected<Value>
937
934
callImpl (
938
935
std::initializer_list<dom::Value> args) const ;
939
936
940
- MRDOCS_DECL
941
937
Expected<Value>
942
938
callImpl (std::span<dom::Value> args) const ;
943
939
944
- MRDOCS_DECL
945
940
Expected<Value>
946
941
callPropImpl (
947
942
std::string_view prop,
0 commit comments