]> git.saurik.com Git - apple/javascriptcore.git/blob - replay/scripts/tests/generate-enums-with-same-base-name.json
JavaScriptCore-7600.1.4.17.5.tar.gz
[apple/javascriptcore.git] / replay / scripts / tests / generate-enums-with-same-base-name.json
1 {
2 "types": {
3 "JavaScriptCore": [
4 {
5 "name": "Type", "mode": "SCALAR", "storage": "uint64_t",
6 "enclosing_class": "PlatformEvent",
7 "flags": ["ENUM"],
8 "values": ["Mouse", "Keyboard"],
9 "header": "replay/PlatformEvent.h"
10 }
11 ],
12 "WebCore": [
13 {
14 "name": "Type", "mode": "SCALAR", "storage": "uint64_t",
15 "enclosing_class": "FormData",
16 "flags": ["ENUM"],
17 "values": ["Text", "Blob"],
18 "header": "replay/FormData.h"
19 }
20 ]
21 },
22
23 "inputs": [
24 {
25 "name": "FormCombo",
26 "description": "Combines an event type and form data type.",
27 "queue": "SCRIPT_MEMOIZED",
28 "members": [
29 { "name": "eventType", "type": "PlatformEvent::Type" },
30 { "name": "formType", "type": "FormData::Type" }
31 ]
32 }
33 ]
34 }