mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 15:40:30 +00:00
8 lines
105 B
Go
8 lines
105 B
Go
|
package ast
|
||
|
|
||
|
// Expr represents an expression node in the AST.
|
||
|
type Expr interface {
|
||
|
Node
|
||
|
exprNode()
|
||
|
}
|