mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-17 22:09:28 +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;
|
||||
begin
|
||||
while TokenEndPtr^ in ['a'..'z', 'A'..'Z', '_', '0'..'9'] do
|
||||
while TokenEndPtr^ in ['a'..'z', 'A'..'Z', '_', '0'..'9', '$'] do
|
||||
inc(TokenEndPtr);
|
||||
// TODO: Check functions not, and, in, as, is ...
|
||||
if (CurPart <> nil) and (CurPart.CanHaveOperatorAsNext) then
|
||||
|
Loading…
Reference in New Issue
Block a user