1 |
2008-08-02 Wakaba <wakaba@suika.fam.cx> |
2008-08-02 Wakaba <wakaba@suika.fam.cx> |
2 |
|
|
3 |
|
* WebIDL.pm ($integer): Order of selections are changed to match |
4 |
|
hexadecimal numbers (the original pattern, taken from the spec, |
5 |
|
was not work for hexadecimal numbers, because the "0" prefix |
6 |
|
matches to the [0-7]* part (as an empty string) and therefore |
7 |
|
it does not match with remaining "x..." part of a "0x..." integer |
8 |
|
literal. |
9 |
|
($get_type): It now returns a string, not an array reference, |
10 |
|
for regular types and |sequence| types (i.e. it in any case |
11 |
|
returns a string). |
12 |
|
($get_next_token): The second item in the array that represents |
13 |
|
a integer or float token is now a Perl number value, not the |
14 |
|
original string representation of the number. |
15 |
|
(check): Support for const value consistency checking. |
16 |
|
No extended attribute is defined for constants. |
17 |
|
(Node subclasses): Use simple strings rather than array references |
18 |
|
for default data type values. |
19 |
|
($serialize_type): Type values are now simple strings. |
20 |
|
(value): If the new attribute value is a false value, then |
21 |
|
a FALSE value is set to the attribute. |
22 |
|
|
23 |
|
2008-08-02 Wakaba <wakaba@suika.fam.cx> |
24 |
|
|
25 |
|
* WebIDL.pm ($get_scoped_name): Now scoped names are stored |
26 |
|
in its stringified format ("scoped name" as defined in the |
27 |
|
spec). Note that future version of this module should not use |
28 |
|
array references for type values and the |type_text| attribute |
29 |
|
should be made obsolete. |
30 |
|
(parse_char_string): Unescape attribute names. |
31 |
|
(check): Support for checking of whether inherited interfaces |
32 |
|
are actually defined or not. Support for checking of whether |
33 |
|
interface member identifiers are duplicated or not. |
34 |
|
($serialize_type): Scoped names are returned as is. A future |
35 |
|
version of this code should escape identifiers other than "DOMString", |
36 |
|
otherwise the idl_text would be non-conforming. |
37 |
|
|
38 |
|
2008-08-02 Wakaba <wakaba@suika.fam.cx> |
39 |
|
|
40 |
* WebIDL.pm (parse_char_string): Set line/column numbers |
* WebIDL.pm (parse_char_string): Set line/column numbers |
41 |
to generated nodes. Unescape identifiers. Extended attributes |
to generated nodes. Unescape identifiers. Extended attributes |
42 |
for Definition's were ignored. |
for Definition's were ignored. |