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

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: sequence and array support 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
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/dom/SomeDictionaryUser.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 boolean? nullableBooleanMember = null; // Exmaple of a nullable member
11 sequence<DOMString> stringSequenceMember; // Example of a sequence member
12 Element[] elementArrayMember; // Example of an array member
13 };
OLDNEW
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/dom/SomeDictionaryUser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698