Extend and update primitive conversions.

This commit is contained in:
Ms2ger 2014-03-04 17:01:30 +01:00
parent 6d3c0bf763
commit 595cd96f24
3 changed files with 65 additions and 10 deletions

View file

@ -4,14 +4,14 @@
interface TestBinding {
attribute boolean booleanAttribute;
readonly attribute byte byteAttribute;
readonly attribute octet octetAttribute;
readonly attribute short shortAttribute;
attribute byte byteAttribute;
attribute octet octetAttribute;
attribute short shortAttribute;
attribute unsigned short unsignedShortAttribute;
attribute long longAttribute;
attribute unsigned long unsignedLongAttribute;
attribute long long longLongAttribute;
readonly attribute unsigned long long unsignedLongLongAttribute;
attribute unsigned long long unsignedLongLongAttribute;
attribute float floatAttribute;
attribute double doubleAttribute;
};