mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-27 00:02:48 +02:00
FpDebug: PascalParser, allow $ sign in identifiers. Required for mangled classnames / specialized generics ...
This commit is contained in:
parent
ca8c6a84e2
commit
94ae766164
@ -1786,7 +1786,7 @@ var
|
|||||||
|
|
||||||
procedure AddIdentifier;
|
procedure AddIdentifier;
|
||||||
begin
|
begin
|
||||||
while TokenEndPtr^ in ['a'..'z', 'A'..'Z', '_', '0'..'9'] do
|
while TokenEndPtr^ in ['a'..'z', 'A'..'Z', '_', '0'..'9', '$'] do
|
||||||
inc(TokenEndPtr);
|
inc(TokenEndPtr);
|
||||||
// TODO: Check functions not, and, in, as, is ...
|
// TODO: Check functions not, and, in, as, is ...
|
||||||
if (CurPart <> nil) and (CurPart.CanHaveOperatorAsNext) then
|
if (CurPart <> nil) and (CurPart.CanHaveOperatorAsNext) then
|
||||||
|
Loading…
Reference in New Issue
Block a user