File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -280,12 +280,14 @@ Interfaces mixins look like this:
280
280
{
281
281
" type" : " interface mixin" ,
282
282
" name" : " Animal" ,
283
+ " inheritance" : null ,
283
284
" partial" : false ,
284
285
" members" : [... ],
285
286
" extAttrs" : [... ]
286
287
}, {
287
288
" type" : " interface mixin" ,
288
289
" name" : " Human" ,
290
+ " inheritance" : null ,
289
291
" partial" : false ,
290
292
" members" : [... ],
291
293
" extAttrs" : [... ]
@@ -296,6 +298,7 @@ The fields are as follows:
296
298
297
299
* ` type ` : Always "interface mixin".
298
300
* ` name ` : The name of the interface mixin.
301
+ * ` inheritance ` : Always ` null ` .
299
302
* ` partial ` : `true if the type is a partial interface mixin.
300
303
* ` members ` : An array of interface members (attributes, operations, etc.). Empty if there are none.
301
304
* ` extAttrs ` : An array of [ extended attributes] ( #extended-attributes ) .
@@ -308,6 +311,7 @@ Namespaces look like this:
308
311
{
309
312
" type" : " namespace" ,
310
313
" name" : " console" ,
314
+ " inheritance" : null ,
311
315
" partial" : false ,
312
316
" members" : [... ],
313
317
" extAttrs" : [... ]
@@ -318,6 +322,7 @@ The fields are as follows:
318
322
319
323
* ` type ` : Always "namespace".
320
324
* ` name ` : The name of the namespace.
325
+ * ` inheritance ` : Always ` null ` .
321
326
* ` partial ` : `true if the type is a partial namespace.
322
327
* ` members ` : An array of namespace members (attributes and operations). Empty if there are none.
323
328
* ` extAttrs ` : An array of [ extended attributes] ( #extended-attributes ) .
You can’t perform that action at this time.
0 commit comments