You've already forked lazarus-ccr
Parser's "CaseSensitive" implementation. To got the parser Case-Sensitive, provide the "-cS" argument at command line when using ws_helper.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1931 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -30,7 +30,7 @@ Type
|
||||
cloInterface, cloProxy, cloImp, cloBinder, cloWsdl, cloXsd,
|
||||
cloOutPutDirRelative, cloOutPutDirAbsolute, cloHandleWrappedParameters,
|
||||
cloGenerateDocAsComments, cloGenerateObjectCollection,
|
||||
cloFileRenaming, cloPrefixEnum
|
||||
cloFileRenaming, cloPrefixEnum, cloParserCaseSensitive
|
||||
);
|
||||
TComandLineOptions = set of TComandLineOption;
|
||||
|
||||
@ -55,7 +55,7 @@ begin
|
||||
AAppOptions := [];
|
||||
c := #0;
|
||||
repeat
|
||||
c := GetOpt('u:pibo:a:wxydg:f:');
|
||||
c := GetOpt('u:pibo:a:wxydg:f:c:');
|
||||
case c of
|
||||
'u' :
|
||||
begin
|
||||
@ -93,7 +93,12 @@ begin
|
||||
begin
|
||||
Include(AAppOptions,cloFileRenaming);
|
||||
OptionsArgsMAP[cloFileRenaming] := OptArg;
|
||||
end;
|
||||
end;
|
||||
'c' :
|
||||
begin
|
||||
Include(AAppOptions,cloParserCaseSensitive);
|
||||
OptionsArgsMAP[cloParserCaseSensitive] := OptArg;
|
||||
end;
|
||||
end;
|
||||
until ( c = EndOfOptions );
|
||||
Result := OptInd;
|
||||
|
Reference in New Issue
Block a user