mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-07 08:08:50 +00:00
or_break and or_continue to core:odin packages
This commit is contained in:
@@ -146,6 +146,11 @@ walk :: proc(v: ^Visitor, node: ^Node) {
|
||||
walk(v, n.y)
|
||||
case ^Or_Return_Expr:
|
||||
walk(v, n.expr)
|
||||
case ^Or_Branch_Expr:
|
||||
walk(v, n.expr)
|
||||
if n.label != nil {
|
||||
walk(v, n.label)
|
||||
}
|
||||
case ^Type_Assertion:
|
||||
walk(v, n.expr)
|
||||
if n.type != nil {
|
||||
|
||||
Reference in New Issue
Block a user