File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -405,7 +405,7 @@ All the members are fields as follows:
405
405
* ` required ` : ` true ` if the field is required.
406
406
* ` idlType ` : An [ IDL Type] ( #idl-type ) describing what field's type.
407
407
* ` extAttrs ` : An array of [ extended attributes] ( #extended-attributes ) .
408
- * ` default ` : A [ default value] ( #default-and-const-values ) , absent if there is none.
408
+ * ` default ` : A [ default value] ( #default-and-const-values ) , or ` null ` if there is none.
409
409
410
410
### Enum
411
411
@@ -515,6 +515,7 @@ An operation looks like this:
515
515
},
516
516
" name" : " intersection" ,
517
517
" arguments" : [{
518
+ " default" : null ,
518
519
" optional" : false ,
519
520
" variadic" : true ,
520
521
" extAttrs" : [],
@@ -551,6 +552,7 @@ A constructor operation member looks like this:
551
552
{
552
553
" type" : " constructor" ,
553
554
" arguments" : [{
555
+ " default" : null ,
554
556
" optional" : false ,
555
557
" variadic" : true ,
556
558
" extAttrs" : [],
@@ -651,6 +653,7 @@ The arguments (e.g. for an operation) look like this:
651
653
{
652
654
" arguments" : [{
653
655
" type" : " argument" ,
656
+ " default" : null ,
654
657
" optional" : false ,
655
658
" variadic" : true
656
659
" extAttrs" : []
@@ -670,6 +673,7 @@ The arguments (e.g. for an operation) look like this:
670
673
671
674
The fields are as follows:
672
675
676
+ * ` default ` : A [ default value] ( #default-and-const-values ) , or ` null ` if there is none.
673
677
* ` optional ` : ` true ` if the argument is optional.
674
678
* ` variadic ` : ` true ` if the argument is variadic.
675
679
* ` idlType ` : An [ IDL Type] ( #idl-type ) describing the type of the argument.
You can’t perform that action at this time.
0 commit comments