2

以下のファイルを解析したいのですが、

first=The_First_Step
{
    {
        value=First.Value,
    }
}

second=The_Second_Step
{
    {
        another = Second_Value,
        more =  Yet.More,
    }
}

私は文法を次のように書きました。

public static NGSection ParseSections(string ngServerConfig)
{
    return Sections.End().Parse(ngServerConfig);
}

internal static Parser<string> ValueText = Parse.LetterOrDigit.AtLeastOnce().Text().Token();

internal static Parser<string> Identifier = Parse.AnyChar.AtLeastOnce().Text().Token();

internal static Parser<Config> Config =
      from id in Identifier
      from equal in Parse.Char('=').Token()
      from value in ValueText
      from comma in Parse.Char(',').Token()
      select new Config(id, value);

internal static Parser<Section> Section =
      from id in Identifier
      from equal in Parse.Char('=').Token()
      from title in ValueText
      from lbracket in Parse.Char('{').Token()
      from inbracket in Parse.Char('{').Token()
      from configs in Config.AtLeastOnce()
      from outbracket in Parse.Char('}').Token()
      from rbracket in Parse.Char('}').Token()
      select new Section(id, title, configs);

internal static Parser<NGSection> Sections =
     from sections in Section.AtLeastOnce()
     select new NGSection(sections);

私は例外を取得しています

解析エラー: 予期しない入力の終わりに達しました。予想される = (行 13、列 2); 最近消費したもの: 鉱石 } }

どんな手がかりも役に立ちます。

4

1 に答える 1