You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BeforeHelloWorld.txt 1.3KB

123456789101112131415161718192021222324252627
  1. public class HelloWorld extends java.lang.Object:
  2. public void <init>():
  3. ALOAD_0 // HelloWorld this (line 5)
  4. INVOKESPECIAL java.lang.Object.<init> ()V
  5. constructor-execution(void HelloWorld.<init>())
  6. | INVOKESTATIC Aspect.ajc_before_constructor_execution ()V
  7. | RETURN
  8. constructor-execution(void HelloWorld.<init>())
  9. end public void <init>()
  10. public static void main(String[]):
  11. method-execution(void HelloWorld.main(java.lang.String[]))
  12. | INVOKESTATIC Aspect.ajc_before_method_execution ()V (line 8)
  13. | field-get(java.io.PrintStream java.lang.System.out)
  14. | | INVOKESTATIC Aspect.ajc_before_field_get ()V
  15. | | GETSTATIC java.lang.System.out Ljava/io/PrintStream;
  16. | field-get(java.io.PrintStream java.lang.System.out)
  17. | LDC "hello world" (line 9)
  18. | method-call(void java.io.PrintStream.println(java.lang.String))
  19. | | INVOKESTATIC Aspect.ajc_before_method_call ()V
  20. | | INVOKEVIRTUAL java.io.PrintStream.println (Ljava/lang/String;)V
  21. | method-call(void java.io.PrintStream.println(java.lang.String))
  22. | RETURN (line 11)
  23. method-execution(void HelloWorld.main(java.lang.String[]))
  24. end public static void main(String[])
  25. end public class HelloWorld