Skip to content

Commit

Permalink
更新副标题
Browse files Browse the repository at this point in the history
  • Loading branch information
chai2010 committed Jun 17, 2020
1 parent a43f286 commit feb61e2
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Go语法树入门
# Go语法树入门——开启自制编程语言和编译器之旅!

- *Go语言QQ群: 102319854, 1055927514*
- *光谷码农课堂: https://study.163.com/provider/480000001914454/index.htm*
Expand Down
4 changes: 2 additions & 2 deletions book.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"gitbook": "3.x",
"title": "Go语法树入门",
"description": "Go语法树入门",
"title": "Go语法树入门——开启自制编程语言和编译器之旅!",
"description": "Go语法树入门——开启自制编程语言和编译器之旅!",
"language": "zh-hans",

"structure": {
Expand Down
Binary file modified cover.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified cover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified cover_small.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion preface.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Go语法树入门
# Go语法树入门——开启自制编程语言和编译器之旅!

Go语法树是Go语言源文件的另一种语义等价的表现形式。而Go语言自带的`go fmt``go doc`等命令都是在Go语法树基础之上的分析工具。因此将Go语言程序作为输入数据,从语法树这个维度重新审视Go语言程序,我们将得到创建Go语言本身的技术。Go语法树由标准库的`go/ast`包定义,它是在`go/token`包定义的词法基础之上抽象的语法树结构。本书简单介绍语法树相关包的使用。

Expand Down

0 comments on commit feb61e2

Please sign in to comment.