Treetop Grammar不承认“/”

时间:2012-12-07 01:23:05

标签: ruby grammar treetop

我是Treetop的新手,并且有一个非常简单的语法,我无法工作。我有一些测试:

it "parses a open tag as some text surrouded by brackets" do
  document = "[b]"
  Parser.parse(document).should_not be_nil
end
it "parses a close tag as a tag with a / preceeding the tag name" do
  document = '[/b]'
  Parser.parse(document).should_not be_nil
end

这是我的语法:

grammar BBCode
  rule open_tag
    "[" tag_name "]"
  end

  rule tag_name
    [a-zA-Z\*]+
  end

  rule close_tag
    "[/" tag_name "]"
  end
end

第一次测试通过,第二次测试失败。我也试过这些替代规则:

"[" [\/] tag_name "]"
"[" "/" tag_name  "]"
"[\/" tag_name "]"

所有这些都失败了。

无论我尝试什么,我似乎无法识别结束标签。

1 个答案:

答案 0 :(得分:1)

我发现了这个问题:https://github.com/nathansobo/treetop/issues/25,它似乎回答了我的问题。

我的语法不包含允许打开或关闭标记的顶级规则,因此甚至没有考虑第二种可能性:

grammar BBCode
  rule document
    (open_tag / close_tag)
  end

  rule open_tag
    ("[" tag_name "]")
  end

  rule tag_name
    [a-zA-Z\*]+
  end

  rule close_tag
    ("[/" tag_name "]")
  end
end