view Resources/CodeGeneration/test/test1.jsonc @ 473:628941d63b8c bgo-commands-codegen

Ongoing work. Parsing tests work
author bgo-osimis
date Wed, 13 Feb 2019 12:07:00 +0100
parents
children 38997ceb9bc6
line wrap: on
line source

/*
         1         2         3         4         5         6         7
12345678901234567890123456789012345678901234567890123456789012345678901234567890
*/
{
  "root_name":"test1",
  "types": [
    {
      "name":"B",
      "kind":"struct",
      "fields": [
        {
          "name":"someAs",
          "type":"vector<A>"
        },
        {
          "name":"someInts",
          "type":"vector<int32>"
        }
      ]
    },
    {
      "name":"A",
      "kind":"struct",
      "fields": [
        {
          "name":"someStrings",
          "type":"vector<string>"
        },
        {
          "name":"someInts2",
          "type":"vector<int32>"
        }
      ]
    },
    {
      "name":"MovieType",
      "kind":"enum",
      "fields": [
        {
          "name":"Romcom"
        },
        {
          "name":"Horror"
        },
        {
          "name":"ScienceFiction"
        },
        {
          "name":"Vegetables"
        }
      ]
    }
  ]
}