11 lines
202 B
Go
11 lines
202 B
Go
package ast
|
|
|
|
import (
|
|
"git.akyoto.dev/cli/q/src/expression"
|
|
)
|
|
|
|
// Assert represents a condition that must be true, otherwise the program stops.
|
|
type Assert struct {
|
|
Condition *expression.Expression
|
|
}
|