/plugins/groovy/testdata/refactoring/move/moveScript/updateReferences/before/a/Script.groovy

https://bitbucket.org/nbargnesi/idea · Groovy · 17 lines · 10 code · 7 blank · 0 comment · 0 complexity · bb424229a12b8fa52318590bf8f95643 MD5 · raw file

  1. package a;
  2. import b.B;
  3. def a = new A().foo();
  4. print a;
  5. def b=new B().fooB();
  6. print b;
  7. public void doSomething() {
  8. }
  9. public static void doSomethingStatic() {
  10. }