Skip to content

Instantly share code, notes, and snippets.

@afawcett
Created February 2, 2013 16:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save afawcett/4698106 to your computer and use it in GitHub Desktop.
Save afawcett/4698106 to your computer and use it in GitHub Desktop.
Sample code used to test a prototype Apex Analysis tool using the new Spring'13 Tooling API.
public class SomeClassA
{
public static void someMethod()
{
SomeClassB.someMethodB();
someOtherMethod();
}
public static void someOtherMethod()
{
}
}
public class SomeClassB
{
public static void someMethodB()
{
}
}
public class SomeClassC
{
public void myMethod()
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment