jewuma / mumps-debug

Debugger for MUMPS (M) GT.M / YottaDB
GNU Lesser General Public License v3.0
15 stars 7 forks source link

Syntax highlighting issue with SET * #20

Closed kurtlebreton closed 1 year ago

kurtlebreton commented 1 year ago

I've noticed the SET *var= syntax isn't being recognized. Please refer to the following code snippet:

    new
    set *a=$$List()
    zwr
    quit
List()
    new list
    set list(1)="one"
    set list(2)="two"
    set list(3)="three"
    quit *list

The line quit *list doesn't produce syntax issues, however the set *a=$$List() is unrecognized.

jewuma commented 1 year ago

Problem is fixed at version 1.1.8 Thank you for reporting.

kurtlebreton commented 1 year ago

Many thanks, looks good :-)