view Resources/CodeGeneration/test/test1_bogus_json.jsonc @ 486:8e40355a172b bgo-commands-codegen

Unit tests OK for preambles, enums and structs in both TS and C++
author bgo-osimis
date Fri, 15 Feb 2019 14:30:26 +0100
parents 628941d63b8c
children
line wrap: on
line source

{
  "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",
        }
    }
  ]
}

/*
         1         2         3         4         5         6         7
12345678901234567890123456789012345678901234567890123456789012345678901234567890
*/