Wish [SOLVED] SLC & support for comment blocks (with /** ... */)

tchart

Well-Known Member
Licensed User
Longtime User
I know that SLC supports multi-line comments using // but it would be great if it could also support comment blocks ie /** and */

I have been using Codeium to auto-generate code comments in some of my Java libraries - https://github.com/Exafunction/CodeiumVisualStudio

The comments are inserted using block comments ie /** & */ which SLC doesnt process - example below.

1718153266696.png
 

drgottjr

Expert
Licensed User
Longtime User
the slc that i use supports
single line comments: //
multi-line comments: /* */
and comments designed to appear as tool tips in b4x apps: /** */

i use them all all the time.
 

tchart

Well-Known Member
Licensed User
Longtime User
the slc that i use supports
single line comments: //
multi-line comments: /* */
and comments designed to appear as tool tips in b4x apps: /** */

i use them all all the time.
Interesting, let me check my version. The new comments werent showing in B4J.
 

tchart

Well-Known Member
Licensed User
Longtime User
@drgottjr you are absolutely right, not sure why I wasnt seeing them the other day!

Problem was me obviously.

1718218097410.png
 
Top