Add proc(#const x: Type) to enforce a constant parameter (but not polymorphic) to a procedure

This commit is contained in:
gingerBill
2020-02-26 22:53:40 +00:00
parent 1596bca92d
commit 3d74c2f6c0
5 changed files with 33 additions and 2 deletions

View File

@@ -46,6 +46,7 @@ enum EntityFlag {
EntityFlag_BitFieldValue = 1<<12,
EntityFlag_PolyConst = 1<<13,
EntityFlag_NotExported = 1<<14,
EntityFlag_ConstInput = 1<<15,
EntityFlag_Static = 1<<16,