From 077b4c35e7b0b075d172b9f4d9538720e81f26d6 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Wed, 15 Sep 2021 16:07:22 +0200 Subject: [PATCH] fix #69 - d2 highligther, dont apply the phobos-style if ident is followed by left paren that looks better when using C APIs. before : "LLVMAppendBasicBlock(" -> tkTypes, tkSymbol after : "LLVMAppendBasicBlock(" -> tkCall, tkSymbol downside : "Constructor()", Constructor is not a TkTypes anymore --- CHANGELOG.md | 1 + src/u_d2syn.pas | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c71f02f6..fe18864f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ ## Bugs fixed +- D2 highlighter: for `Call()`, `Call` wont be considered anymore as a type. (#69) - GDB commander: 5 empty arguments were passed to the main function called by libc. (#86) ## Other diff --git a/src/u_d2syn.pas b/src/u_d2syn.pas index 196189da..45e71a3d 100644 --- a/src/u_d2syn.pas +++ b/src/u_d2syn.pas @@ -1161,10 +1161,10 @@ begin end else if specialKeywordsMap.match(fLineBuf[FTokStart..fTokStop-1]) then fTokKind := tkSpecK + else if reader^ = '(' then + fTokKind:= tkCall else if fPhobosStyleType and ('A' <= fLineBuf[FTokStart]) and (fLineBuf[FTokStart] <= 'Z') then fTokKind:= tkTypes - else if reader^ = '(' then - fTokKind:= tkCall else if rkAsm in fCurrRange.rangeKinds then fTokKind:=tkAsmbl; exit;