Update AST slides

This commit is contained in:
Fedor Korotkiy 2021-04-29 16:07:56 +03:00
parent 516976e4a5
commit 378560dd4f

View file

@ -22,6 +22,126 @@
- `go/constant` - представление констант и операции над ними - `go/constant` - представление констант и операции над ними
- `go/types` - реализует type-checker. - `go/types` - реализует type-checker.
* Example
.code pkginfo/main.go /const/,/END/
* Run Example
$ ./pkginfo
Package "cmd/hello"
Name: main
Imports: [package fmt ("fmt")]
Scope: package "cmd/hello" scope 0x820533590 {
. func cmd/hello.main()
}
* AST
type Node interface {
Pos() token.Pos // position of first character belonging to the node
End() token.Pos // position of first character immediately after the node
}
// All expression nodes implement the Expr interface.
type Expr interface {
Node
exprNode()
}
// All statement nodes implement the Stmt interface.
type Stmt interface {
Node
stmtNode()
}
// All declaration nodes implement the Decl interface.
type Decl interface {
Node
declNode()
}
* AST Expr
Expr = *BadExpr
| *Ident
| *Ellipsis
| *BasicLit
| *FuncLit
| *CompositeLit
| *ParenExpr
| *SelectorExpr
| *IndexExpr
| *SliceExpr
| *TypeAssertExpr
| *CallExpr
| *StarExpr
| *UnaryExpr
| *BinaryExpr
| *KeyValueExpr
| *ArrayType
| *StructType
| *FuncType
| *InterfaceType
| *MapType
| *ChanType
* AST Stmt
Stmt = *BadStmt
| *DeclStmt
| *EmptyStmt
| *LabeledStmt
| *ExprStmt
| *SendStmt
| *IncDecStmt
| *AssignStmt
| *GoStmt
| *DeferStmt
| *ReturnStmt
| *BranchStmt
| *BlockStmt
| *IfStmt
| *CaseClause
| *SwitchStmt
| *TypeSwitchStmt
| *CommClause
| *SelectStmt
| *ForStmt
| *RangeStmt
* AST Decl
Decl = *BadDecl
| *GenDecl
| *FuncDecl
* AST Example
package main
import "fmt"
func main() {
fmt.Printf("hello %d", x)
}
.link https://astexplorer.net/#/gist/7c8cc64a979996984768aa4d7be6ceb9/203bc9b1588375699f2d733517d94d370e868d36 astexplorer.net
*ast.File
*GenDecl // import
*FuncDecl // func
*BlockStmt
*ExprStmt // fmt.Printf("hello %d", x)
*CallExpr
*SelectorExpr // fmt.Printf
*Ident
*Ident
*BasicLit // "hello %d"
*Ident // x
* Type Checker * Type Checker
Три процесса: Три процесса:
@ -65,20 +185,6 @@
var _ = T{k: 0} var _ = T{k: 0}
* Example
.code pkginfo/main.go /const/,/END/
* Run Example
$ ./pkginfo
Package "cmd/hello"
Name: main
Imports: [package fmt ("fmt")]
Scope: package "cmd/hello" scope 0x820533590 {
. func cmd/hello.main()
}
* Objects * Objects
*Identifier*resolution* строит отображение из *имени* (`*ast.Ident`) в `Object` (например `var`, `const` или `func`). *Identifier*resolution* строит отображение из *имени* (`*ast.Ident`) в `Object` (например `var`, `const` или `func`).