Class to Named Function Converter
Convert static class methods to named functions with exports.
class MyClass implements MyInterface {
method() {
return 'test';
}
}↓
method() {
return 'test';
}
//injectionmethod() {return 'test';}//injection