コード例 #1
0
ファイル: TemplateParser.cs プロジェクト: taylorjg/Parsers
 public Parser <char> Dollar()
 {
     return(_p.Attempt(_p.Char('$').Bind(
                           c => _p.NotFollowedBy(_p.OneOf("{<\"")).BindIgnoringLeft(
                               Parser.Return(c))))); // <?> ""
 }