10 lines
83 B
Go
10 lines
83 B
Go
package ast
|
|
|
|
type Statement interface {
|
|
stmt()
|
|
}
|
|
|
|
type Expr interface {
|
|
expr()
|
|
}
|