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

Side by Side Diff: tools/json_schema_compiler/test/any.json

Issue 10701012: JSON Schema Compiler: Added event compilation. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Synced. Created 8 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
1 [ 1 [
2 { 2 {
3 "namespace": "any", 3 "namespace": "any",
4 "types": [ 4 "types": [
5 { 5 {
6 "id": "AnyType", 6 "id": "AnyType",
7 "type": "object", 7 "type": "object",
8 "properties": { 8 "properties": {
9 "any": { 9 "any": {
10 "type": "any", 10 "type": "any",
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 "name": "callback", 42 "name": "callback",
43 "parameters": [ 43 "parameters": [
44 { 44 {
45 "name": "result", 45 "name": "result",
46 "type": "any" 46 "type": "any"
47 } 47 }
48 ] 48 ]
49 } 49 }
50 ] 50 ]
51 } 51 }
52 ],
53 "events": [
54 {
55 "name": "onAnyFired",
56 "type": "function",
57 "description": "Fired when anything is ready.",
58 "parameters": [
59 {
60 "name": "something",
61 "type": "any"
62 }
63 ]
64 }
52 ] 65 ]
53 } 66 }
54 ] 67 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698