Creating function stubs/Identifying missing functions is inconsistent.

Issue #1144 resolved
Miles Robson created an issue

I'm having trouble generating stubs on functions that do not exist. Generating implements works fine, but basic myFunction()'s that are missing don't work.

Below is an example:

public with sharing class MyClass extends MyBaseClass{
   public List<Account> accountFunction(String accountNumber) {

        //This is a class function not on MyClass, or MyBaseClass, that doesnt get a stub when I do any of the shortcuts.
        myfunctionismissing();

         return new List<Account>();
    }

   //But other examples, overrides or implements DO WORK FINE. Just raw missing functions.

}

Comments (2)

  1. Scott Wells repo owner

    Issue tracker grooming. If this is still an issue, please feel free to reopen, ideally with a concrete reproduction scenario.

  2. Log in to comment