From 045445a3d3869a0dd0c242fe045aeb4d10f34aa1 Mon Sep 17 00:00:00 2001 From: heck Date: Thu, 22 Jun 2023 11:36:18 +0200 Subject: [PATCH] idl: remove param modes decls, as they are now part of 'param' --- idl/pEpACIDLang.yml2 | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/idl/pEpACIDLang.yml2 b/idl/pEpACIDLang.yml2 index 0762ce9..0d65aaf 100644 --- a/idl/pEpACIDLang.yml2 +++ b/idl/pEpACIDLang.yml2 @@ -92,18 +92,6 @@ decl throws @name; // decl protocol @name; // decl construct, new is construct; -// readonly in parm, ownership remains with caller -// decl use @type @name (mode=use) alias parm; - -// inout parm, ownership remains with caller -// decl supply @type @name (mode=supply) alias parm; - -// in parm, ownership goes to callee -// decl provide @type @name (mode=provide) alias parm; - -// factory delivers this, ownership goes to caller -//decl create @type @name (mode=create) alias parm; - // decl throws @except; // decl caveat(mode=caveat) alias doc;