GoTo¶
Branches to a statement label, a statement node.
Declaración¶
Sintaxis¶
GoTo(int target_id, identifier name)
Argumentos¶
target_id
contains int
IDs to link GoTo
with GoToTarget.
name
contains the identifier name.
Valores devueltos¶
None.
Descripción¶
GoTo statement points to a GoToTarget with the corresponding target_id
within the same procedure. We currently use int
IDs to link GoTo with
GoToTarget to avoid issues with serialization.
Tipos¶
Integer or target_id
and a valid identifier name.
Ejemplos¶
program goto
implicit none
integer :: a
a = 5
go to 1
1 print *, a
end program
ASR:
(TranslationUnit
[(Program
goto_01
()
[]
[(ImplicitNone
[]
()
)]
[(Declaration
(AttrType
TypeInteger
[]
()
None
)
[]
[(a
[]
[]
()
None
())]
()
)]
[(=
0
a
5
()
)
(GoTo
0
()
1
[]
()
)
(Print
1
()
[a]
()
)]
[]
)]
)