dlang-community / SDLang-D

An SDLang (Simple Declarative Language) library for D

Home Page:http://sdlang.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

boolean literal tag names?

icecoldtofu opened this issue · comments

I can't seem to find a BNF or any other unambiguous grammar description for sdlang so I'm not sure.

In this example:

some-tag {
    on off
}

Is the child of some-tag:

  • a tag named "on" with one value [false]
  • an anonymous tag with two values [true, false]