adding comments

This commit is contained in:
Martin Karkowski 2020-08-21 23:55:04 +02:00
parent 38bba656a0
commit 11cc555be4

View File

@ -407,6 +407,15 @@ export function getModifiers(declaration: MethodDeclaration | PropertyDeclaratio
}
}
/**
* Helper Function to List relevant classes with their corresponding elements
* @param sources The Source Files
* @param classDecorator Filter for the Class Decorators
* @param classInterface Interfaces that should be implemented by the class
* @param methodDecorator A Method-Decorator
* @param propertyType The requrired Type for the Property
* @param propertyDecorator The Decorator for the Property
*/
export function analyzeClasses(sources: SourceFile[], classDecorator: string, classInterface: string, methodDecorator: string, propertyType: string, propertyDecorator: string,){
const ret: {