我想用百灵鸟为C#6生成一个解析器。
我发现了一个C# 6 antlr grammar,但是它不能与百灵鸟一起使用。
有人可以告诉我如何将g4语法重新格式化为我可以喂百灵的东西吗?
期望的云雀和g4之间的格式似乎有些不同。
from lark import Lark
filename = 'grammar.bnf'
with open(filename,'r') as file:
output = file.read()
parser = Lark(output, start='compilation_unit')
grammar.bnf
包含我提到的above的C#6语法,起始点为compilation_unit
。
原始bnf文件的摘录:
parser grammar CSharpParser;
options { tokenVocab=CSharpLexer; }
// entry point
compilation_unit
: BYTE_ORDER_MARK? extern_alias_directives? using_directives?
global_attribute_section* namespace_member_declarations? EOF
;
//B.2 Syntactic grammar
//B.2.1 Basic concepts
namespace_or_type_name
: (identifier type_argument_list? | qualified_alias_member) ('.' identifier type_argument_list?)*
;
[Rest of the file]
请注意,我删除了入口点compilation_unit
之前的所有内容:
parser grammar CSharpParser;
options { tokenVocab=CSharpLexer; }