native icon indicating copy to clipboard operation
native copied to clipboard

Class & method filtering

Open mahesh-hegde opened this issue 3 years ago • 2 comments

It's possible to exclude methods on a coarse basis using exclude: in YAML, but in current state it's useful for only excluding problematic methods.

This should be more comprehensive, and preferably similar to ffigen.

mahesh-hegde avatar Sep 30 '22 08:09 mahesh-hegde

@dcharkes can we add a generator_config label?

mahesh-hegde avatar Oct 02 '22 10:10 mahesh-hegde

Note to self.

It follow ffigen's config

fields:
    exclude:
       - com.abc.packagename#MY_FIELD

We might want to be able to specify multiple field names under same class

fields:
    exclude:
       - com.abc.packagename
         - 'FIELD_1'
         - 'FIELD_2'

Similarly for methods & entire classes.

mahesh-hegde avatar Oct 05 '22 07:10 mahesh-hegde