From 8aa7935614167f8945c58e3ebc47172328aab4a4 Mon Sep 17 00:00:00 2001 From: lazarus Date: Tue, 5 Jun 2001 12:06:58 +0000 Subject: [PATCH] MG: exec flags removed git-svn-id: trunk@284 - --- ide/lazarus.dci | 133 ------------------------------------------------ 1 file changed, 133 deletions(-) delete mode 100644 ide/lazarus.dci diff --git a/ide/lazarus.dci b/ide/lazarus.dci deleted file mode 100644 index 0beb756cf5..0000000000 --- a/ide/lazarus.dci +++ /dev/null @@ -1,133 +0,0 @@ -[arrayd | array declaration (var)] -array[0..|] of ; - -[arrayc | array declaration (const)] -array[0..|] of = (); - -[cases | case statement] -case | of - : ; - : ; -end; - -[casee | case statement (with else)] -case | of - : ; - : ; -else ; -end; - -[classf | class declaration (all parts)] -T| = class(T) -private - -protected - -public - -published - -end; - -[classd | class declaration (no parts)] -T| = class(T) - -end; - -[classc | class declaration (with Create/Destroy overrides)] -T| = class(T) -private - -protected - -public - constructor Create; override; - destructor Destroy; override; -published - -end; - -[fors | for (no begin/end)] -for | := to do - -[forb | for statement] -for | := to do -begin - -end; - -[function | function declaration] -function |(): ; -begin - -end; - -[ifs | if (no begin/end)] -if | then - -[ifb | if statement] -if | then -begin - -end; - -[ife | if then (no begin/end) else (no begin/end)] -if | then - -else - -[ifeb | if then else] -if | then -begin - -end -else -begin - -end; - -[procedure | procedure declaration] -procedure |(); -begin - -end; - -[trye | try except] -try - | -except - -end; - -[tryf | try finally] -try - | -finally - -end; - -[trycf | try finally (with Create/Free)] -|variable := typename.Create; -try - -finally - variable.Free; -end; - -[whileb | while statement] -while | do -begin - -end; - -[whiles | while (no begin)] -while | do - -[withb | with statement] -with | do -begin - -end; - -[withs | with (no begin)] -with | do