-
Notifications
You must be signed in to change notification settings - Fork 222
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
adds typescript support #4
Conversation
baywet
commented
Dec 29, 2020
- adds typescript support
- light refactoring of the imports
- light refactoring of parameters classes management
- adds import support for all block types - light refactoring for the import section
var typeName = TranslateType(code.Name, code.Schema); | ||
if (code.ActionOf) | ||
{ | ||
var indentFactor = 4; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the indentfactor for? Why would some blocks have bigger indents than others? I understand that languages may have different indent values, but why allow it to be varied per language element.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that's for the anonymous type declaration in the methods parameters. We don't absolutely need it, but it looks nicer.
- refactors refiners