Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add scope flags #38

Open
agustinseifert opened this issue Sep 20, 2022 · 0 comments
Open

Add scope flags #38

agustinseifert opened this issue Sep 20, 2022 · 0 comments
Labels
enhancement New feature or request

Comments

@agustinseifert
Copy link
Collaborator

It would be useful to have flags to parametrize the conversion scope.

Proposal

flag: --scope
values:

  • c: class
  • i: interface
  • p: property
  • m: method
  • g: global variable + global constant + global function

usage example:
cdv --scope c+p

input:

export interface IFoo {
    doFoo(): void;
}

export class Foo implements IFoo {
    public name: string;
    public doFoo(): void {
    }
}

output:

namespace Codeverter
{
    public class Foo
    {
        public string Name { get; set; }
    }
}
@agustinseifert agustinseifert added the enhancement New feature or request label Sep 20, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant