mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 13:20:27 +00:00
8 lines
98 B
Go
8 lines
98 B
Go
|
package ast
|
||
|
|
||
|
// Stmt represents a statement in the AST.
|
||
|
type Stmt interface {
|
||
|
Node
|
||
|
stmtNode()
|
||
|
}
|