mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-16 04:49:25 +02:00
codetools: more examples
git-svn-id: trunk@20292 -
This commit is contained in:
parent
65968ad5bf
commit
4cfb35e54c
3
.gitattributes
vendored
3
.gitattributes
vendored
@ -159,6 +159,9 @@ components/codetools/examples/scanexamples/unusedunits1.pas svneol=native#text/p
|
||||
components/codetools/examples/scanexamples/wrongforwarddefinitions.pas svneol=native#text/plain
|
||||
components/codetools/examples/setincludepath.lpi svneol=native#text/plain
|
||||
components/codetools/examples/setincludepath.pas svneol=native#text/plain
|
||||
components/codetools/examples/testscompleteblock/casecolon1.inc svneol=native#text/plain
|
||||
components/codetools/examples/testscompleteblock/caseelseend1.inc svneol=native#text/plain
|
||||
components/codetools/examples/testscompleteblock/caseend1.inc svneol=native#text/plain
|
||||
components/codetools/examples/testscompleteblock/procedurebegin1.inc svneol=native#text/plain
|
||||
components/codetools/examples/testscompleteblock/unit1.pas svneol=native#text/plain
|
||||
components/codetools/examples/testscompleteblock/whilebegin1.inc svneol=native#text/plain
|
||||
|
@ -0,0 +1,9 @@
|
||||
{%MainUnit unit1.pas}
|
||||
procedure Do1;
|
||||
begin
|
||||
case i of
|
||||
1:
|
||||
|
||||
end;
|
||||
end;
|
||||
|
@ -0,0 +1,8 @@
|
||||
{%MainUnit unit1.pas}
|
||||
procedure Do1;
|
||||
begin
|
||||
case i of
|
||||
else
|
||||
|
||||
end;
|
||||
|
@ -0,0 +1,7 @@
|
||||
{%MainUnit unit1.pas}
|
||||
procedure Do1;
|
||||
begin
|
||||
case i of
|
||||
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user