extensibleweb / webidl.js

An implementation of WebIDL in ECMAScript
55 stars 14 forks source link

Implement dictionary type #18

Open marcoscaceres opened 11 years ago

marcoscaceres commented 11 years ago

http://www.w3.org/TR/WebIDL/#idl-dictionary

marcoscaceres commented 11 years ago

started work on dictionary type.

marcoscaceres commented 11 years ago

Dictionary is quite tricky, as it requires taking in a definition of the dictionary and using that as the basis for type checking and conversion.

FremyCompany commented 11 years ago

Based on what I see, you can't build a generic converter from a dictionnary. So, we'll have to generate the converter code at the same time we generate the dictionnary interface.

FremyCompany commented 11 years ago

This issues depends on #84 (converter auto-generation) and #83 (symbol table generation).