checker: check range exprs
parent
973b5c226a
commit
920ab79665
|
@ -878,6 +878,12 @@ pub fn (c mut Checker) index_expr(node mut ast.IndexExpr) table.Type {
|
||||||
match node.index {
|
match node.index {
|
||||||
ast.RangeExpr {
|
ast.RangeExpr {
|
||||||
is_range = true
|
is_range = true
|
||||||
|
if it.has_low {
|
||||||
|
c.expr(it.low)
|
||||||
|
}
|
||||||
|
if it.has_high {
|
||||||
|
c.expr(it.high)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else {}
|
else {}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue