JAM-Software / SonarDelphi

This repository contains the source code to the Sonar-Delphi plugin. Can be used to analyse Delphi projects with SonarQube.
31 stars 12 forks source link

Parsing problems with type defined as subrange of enumeration #16

Closed joachimmarder closed 3 years ago

joachimmarder commented 3 years ago

The type TTopBottom in this example causes parsing problems:

TVerticalAlignment = (taAlignTop, taAlignBottom, taVerticalCenter); TTopBottom = TVerticalAlignment.taAlignTop..TVerticalAlignment.taAlignBottom;