Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Side by Side Diff: Source/core/dom/SomeDictionary.idl

Issue 386963003: [WIP][NotForLand] IDL dictionary support (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // NOT FOR LAND -- this is an example of IDL dictionary.
2
3 [
4 GarbageCollected
5 ] dictionary SomeDictionary {
6 long a; // Example of a primitive member
7 long b = 2; // Example of a primitive member with default value
8 DOMString stringMember = "doraemon"; // Example of a string member
9 Element element = null; // Example of an interface member
10 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698