7 lines
55 B
Go
7 lines
55 B
Go
|
package ast
|
||
|
|
||
|
type Stmt interface {
|
||
|
Node
|
||
|
stmtNode()
|
||
|
}
|