mirror of https://gitlab.com/basile.b/dexed.git
fix, module name get be retrieved "std.string"
This commit is contained in:
parent
5d777a850f
commit
f14b48da75
|
@ -886,14 +886,15 @@ begin
|
|||
mtok := false;
|
||||
for ltk in aTokenList do
|
||||
begin
|
||||
if mtok then
|
||||
begin
|
||||
if ltk.kind = ltkIdentifier then
|
||||
if mtok then begin
|
||||
case ltk.kind of
|
||||
ltkIdentifier, ltkKeyword:
|
||||
result += ltk.data;
|
||||
if ltk.kind = ltkSymbol then
|
||||
case ltk.data of
|
||||
'.': result += ltk.data;
|
||||
';': exit;
|
||||
ltkSymbol:
|
||||
case ltk.data of
|
||||
'.': result += ltk.data;
|
||||
';': exit;
|
||||
end;
|
||||
end;
|
||||
end
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue