Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. int foo(int x) {
  2. return x;
  3. }
  4.  
  5. #11 = Utf8 foo
  6. #12 = Utf8 (I)I // 1
  7. #13 = Utf8 x
  8. #14 = Utf8 I // 2
  9.  
  10. interface I { int foo(int x); }
  11. class X {
  12. I x = (int x1) -> 0;
  13. }
  14.  
  15. #15 = Utf8 lambda$new$0
  16. #16 = Utf8 (I)I
  17. #17 = Utf8 x1
  18. #18 = Utf8 I
  19.  
  20. MethodDescriptor:
  21. ( ParameterDescriptor* ) ReturnDescriptor
  22.  
  23. ParameterDescriptor:
  24. FieldType
  25.  
  26. ReturnDescriptor:
  27. FieldType
  28. VoidDescriptor
  29.  
  30. VoidDescriptor:
  31. V
  32.  
  33. javap
  34.  
  35. #123 = NameAndType #11:#12; // "foo":(I)I
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement