Is there any .pas file (Delphi or Pascal)?

I need to parse Delphi.pas files to work with read / write classes. Adding / changing / deleting fields, properties, methods, etc. Any idea how to implement this? Implementation is optional in Delphi, scripting languages โ€‹โ€‹are also allowed.

+4
source share
3 answers

There is Castalia Delphi Parser from Jacob Thurman, which is currently hosted on GitHub.

+7
source

CnWizards has a built-in syntax marker, so they also use some parser, but I donโ€™t remember what it is. You can see their sources at https://github.com/cnpack/cnwizards

+2
source

PasParse is right for you! Delphi port of excellent (C #) DGrok .

Delphi Level 2007

+1
source

All Articles