tobiasvl/language-rgbasm

Parse labels correctly

tobiasvl opened this issue · 1 comments

There are a lot of false positives while parsing labels.

  • scope1.scope2.label should not be legal label (labels can only have a global and a local scope) (partly fixed in f111876 but the parsing could still be a lot better)
  • .local_label:: should not be legal (only global labels may be exported)
  • Probably more

f111876 improves this somewhat.