mirror of
https://github.com/servo/servo.git
synced 2025-06-24 17:14:33 +01:00
Implement support for returning nullable primitive types.
This commit is contained in:
parent
3d28f31ea9
commit
d063601ba0
3 changed files with 38 additions and 3 deletions
|
@ -14,4 +14,16 @@ interface TestBinding {
|
|||
attribute unsigned long long unsignedLongLongAttribute;
|
||||
attribute float floatAttribute;
|
||||
attribute double doubleAttribute;
|
||||
|
||||
attribute boolean? booleanAttributeNullable;
|
||||
attribute byte? byteAttributeNullable;
|
||||
attribute octet? octetAttributeNullable;
|
||||
attribute short? shortAttributeNullable;
|
||||
attribute unsigned short? unsignedShortAttributeNullable;
|
||||
attribute long? longAttributeNullable;
|
||||
attribute unsigned long? unsignedLongAttributeNullable;
|
||||
attribute long long? longLongAttributeNullable;
|
||||
attribute unsigned long long? unsignedLongLongAttributeNullable;
|
||||
attribute float? floatAttributeNullable;
|
||||
attribute double? doubleAttributeNullable;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue