当前位置: 首页>>代码示例>>Golang>>正文


Golang compiler.Parser类代码示例

本文整理汇总了Golang中compiler.Parser的典型用法代码示例。如果您正苦于以下问题:Golang Parser类的具体用法?Golang Parser怎么用?Golang Parser使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了Parser类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1: main

func main() {
	if len(os.Args) < 3 {
		fmt.Printf("usage: ./main grammar_file program_file\n")
		os.Exit(1)
	}

	gmr, err := ioutil.ReadFile(os.Args[1])
	if err != nil {
		fmt.Printf("'%s' is not a valid file name\n", os.Args[1])
	}

	pgm, err := ioutil.ReadFile(os.Args[2])
	if err != nil {
		fmt.Printf("'%s' is not a valid file name\n", os.Args[1])
	}

	// First file should be the grammar, second is the file being parsed
	gmrReader := bytes.NewReader(gmr)
	pgmReader := bytes.NewReader(pgm)

	// Get the grammar from the analyzer
	a := compiler.Analyzer{Reader: *gmrReader}
	grammar := a.ReadGrammar()

	// Create a generator, necessary for table
	g := compiler.Generator{Grammar: grammar}

	// Setup the parser
	p := compiler.Parser{Grammar: a.ReadGrammar(), Reader: *pgmReader}
	p.Scanner = compiler.Scanner{Reader: *pgmReader}
	p.Table = g.GetTable()

	p.Driver()
}
开发者ID:shellhead,项目名称:compiler,代码行数:34,代码来源:main.go

示例2: main

func main() {
	// create a new reader and initialze a parser with it
	buf, _ := ioutil.ReadFile(os.Args[1])
	reader := bytes.NewReader(buf)

	p := new(compiler.Parser)
	p.Scanner = compiler.Scanner{Reader: *reader}
	p.SystemGoal()
}
开发者ID:shellhead,项目名称:compiler,代码行数:9,代码来源:main.go

示例3: TestBlankType

func TestBlankType(t *testing.T) {
	lexer := new(compiler.Lexer).Init("class A { }")
	parser := new(compiler.Parser).Init(lexer)
	node := parser.TypeDecl()

	class := CLASS(IDENT("A"), MEMBERS())
	if node.String() != class {
		t.Fatalf("CLASS not parsed")
	}
}
开发者ID:chanwit,项目名称:korat-lang,代码行数:10,代码来源:old_parser_test.go

示例4: TestParsingPackage

func TestParsingPackage(t *testing.T) {
	lexer := new(compiler.Lexer).Init("package a.b.c")
	parser := new(compiler.Parser).Init(lexer)
	node := parser.PackageDecl()
	if node.Name != "PACKAGE" {
		t.Fatalf("Package not parsed")
	}
	if node.Children[0].Name != "QNAME" {
		t.Fatalf("QNAME not parsed")
	}
	if node.Children[0].Text != "a.b.c" {
		t.Fatalf("'a.b.c' not parsed")
	}
}
开发者ID:chanwit,项目名称:korat-lang,代码行数:14,代码来源:old_parser_test.go

示例5: main

func main() {
	// the file for reading
	src, _ := ioutil.ReadFile(os.Args[1])
	reader := bytes.NewReader(src)

	// the file for writing
	dst, _ := os.Create(os.Args[2])
	writer := bufio.NewWriter(dst)
	defer dst.Close()

	// setup the parser
	p := compiler.Parser{Writer: *writer}
	p.Scanner = compiler.Scanner{Reader: *reader}

	// parse the file!
	p.SystemGoal()
}
开发者ID:shellhead,项目名称:compiler,代码行数:17,代码来源:main.go

示例6: TestTypeWithMainMethod

func TestTypeWithMainMethod(t *testing.T) {
	lexer := new(compiler.Lexer).Init(
		"\n" +
			"class A {\n" +
			"   static main(args){\n" +
			"   }\n" +
			"}\n")
	parser := new(compiler.Parser).Init(lexer)
	node := parser.TypeDecl()

	args := ARGS(ARG(TYPE("java.lang.Object"), IDENT("args"), NIL))
	mainMethod := METHOD(
		MODIFIERS(STATIC),
		NIL,
		IDENT("main"),
		args,
		"METHOD_BODY")
	class := CLASS(IDENT("A"), MEMBERS(mainMethod))

	if node.String() != class {
		t.Fatalf("CLASS not parsed")
	}
}
开发者ID:chanwit,项目名称:korat-lang,代码行数:23,代码来源:old_parser_test.go


注:本文中的compiler.Parser类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。