aboutsummaryrefslogtreecommitdiffstats
path: root/ortho/mcode/ortho_code-decls.ads
diff options
context:
space:
mode:
Diffstat (limited to 'ortho/mcode/ortho_code-decls.ads')
-rw-r--r--ortho/mcode/ortho_code-decls.ads8
1 files changed, 8 insertions, 0 deletions
diff --git a/ortho/mcode/ortho_code-decls.ads b/ortho/mcode/ortho_code-decls.ads
index 1c8b4514e..ad18892fe 100644
--- a/ortho/mcode/ortho_code-decls.ads
+++ b/ortho/mcode/ortho_code-decls.ads
@@ -21,8 +21,16 @@ package Ortho_Code.Decls is
-- Kind of a declaration.
type OD_Kind is (OD_Type,
OD_Const, OD_Const_Val,
+
+ -- Global and local variables.
OD_Var, OD_Local,
+
+ -- Subprograms.
OD_Function, OD_Procedure,
+
+ -- Additional node for a subprogram. Internal use only.
+ OD_Subprg_Ext,
+
OD_Interface,
OD_Body,
OD_Block);