metad.gen.grammar.inigrammar

This module was automatically generated from the following grammar:

INIGrammar : Grammar <- Statement* Statement <- Section / Comment Comment <- "#" (!:endOfLine)* :endOfLine Section <- SectionHead (Declaration)* SectionHead <- :"[" SectionIdentifier :"]" ( :endOfLine / endOfInput ) SectionIdentifier <- identifier ( :"." identifier)? Declaration <- identifier :"=" Literal ( :endOfLine / endOfInput ) Literal <- BasicElements.String / BasicElements.Numeric / BasicElements.Bool

Public Imports

pegged.peg
public import pegged.peg;

Members

Aliases

INIGrammar
alias INIGrammar = GenericINIGrammar!(ParseTree).INIGrammar
Undocumented in source.

Structs

GenericINIGrammar
struct GenericINIGrammar(TParseTree)
Undocumented in source.

Meta