Jump to content
Heaven/TQA

WUDSN IDE & Labels?

Recommended Posts

Jac! is it a bug that the MADS standard fast repeat is treated like a label? e.g.

 

:200 .byte $0f

 

the 200 will be a label in the label table and is shown in the window?

Share this post


Link to post
Share on other sites

Everything start starts at column 0 is considered a label at the moment for the speed of the parser.

But with the identifier detection of 1.6.3, it should be easy to enhance, so it is ignore because it starts with a character that is not allowed in identifiers.

 

Share this post


Link to post
Share on other sites

Fixed in DEV. There will be new release with many fixes soon. Coding RGBA was a good test :-)

 

OLD:

if (compilerSyntax.isIdentifierCharacter(ch)) {

 

NEW:

if (symbolBuffer.length() == 0 && compilerSyntax.isIdentifierStartCharacter(ch)

|| symbolBuffer.length() > 0 && compilerSyntax.isIdentifierPartCharacter(ch)) {

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...