d01

command
v0.0.0-...-62d810d Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 18, 2020 License: MIT Imports: 1 Imported by: 0

README

词法和语法分析

词法分析

$ lex example.l
$ cat lex.yy.c
$ cc lex.yy.c -o example -ll
$ cat main.go | ./example
PACKAGE  IDENT

IMPORT  QUOTE IDENT QUOTE

IDENT  IDENT LPAREN RPAREN  LBRACE
  IDENT DOT IDENT LPAREN QUOTE IDENT QUOTE RPAREN
RBRACE

Go 语言的词法解析是通过 src/cmd/compile/internal/syntax/scanner.go 文件中的 src/cmd/compile/internal/syntax/scanner.scanner 结构体实现的。

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL