mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-26 12:42:03 -08: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()
|
||
|
}
|