mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Add methods that return floating-point types to TestBinding.webidl.
They were already implemented in testbinding.rs, but were forgotten in the IDL file.
This commit is contained in:
parent
f392334d2e
commit
20d7bbffae
1 changed files with 4 additions and 0 deletions
|
@ -101,6 +101,8 @@ interface TestBinding {
|
|||
unsigned long receiveUnsignedLong();
|
||||
long long receiveLongLong();
|
||||
unsigned long long receiveUnsignedLongLong();
|
||||
float receiveFloat();
|
||||
double receiveDouble();
|
||||
DOMString receiveString();
|
||||
ByteString receiveByteString();
|
||||
TestEnum receiveEnum();
|
||||
|
@ -118,6 +120,8 @@ interface TestBinding {
|
|||
unsigned long? receiveNullableUnsignedLong();
|
||||
long long? receiveNullableLongLong();
|
||||
unsigned long long? receiveNullableUnsignedLongLong();
|
||||
float? receiveNullableFloat();
|
||||
double? receiveNullableDouble();
|
||||
DOMString? receiveNullableString();
|
||||
ByteString? receiveNullableByteString();
|
||||
TestEnum? receiveNullableEnum();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue