summaryrefslogtreecommitdiff
path: root/src/asm
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@gmail.com>2015-01-17 15:13:01 +0100
committerLukas Rytz <lukas.rytz@gmail.com>2015-03-11 12:53:33 -0700
commitff67161f946c515a3b0a719ce80531fa14a06a8f (patch)
tree5abee81250e7ecc12f5d08502af518c844fb4afa /src/asm
parent42054a1bebcc2155f773787ffda781b497d4178b (diff)
downloadscala-ff67161f946c515a3b0a719ce80531fa14a06a8f.tar.gz
scala-ff67161f946c515a3b0a719ce80531fa14a06a8f.tar.bz2
scala-ff67161f946c515a3b0a719ce80531fa14a06a8f.zip
Find instructions that would cause an IllegalAccessError when inlined
Some instructions would cause an IllegalAccessError if they are inlined into a different class. Based on Miguel's implementation in 6efc0528c6.
Diffstat (limited to 'src/asm')
-rw-r--r--src/asm/scala/tools/asm/tree/MethodInsnNode.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/asm/scala/tools/asm/tree/MethodInsnNode.java b/src/asm/scala/tools/asm/tree/MethodInsnNode.java
index 1ec46d473d..30c7854646 100644
--- a/src/asm/scala/tools/asm/tree/MethodInsnNode.java
+++ b/src/asm/scala/tools/asm/tree/MethodInsnNode.java
@@ -45,6 +45,7 @@ public class MethodInsnNode extends AbstractInsnNode {
/**
* The internal name of the method's owner class (see
* {@link scala.tools.asm.Type#getInternalName() getInternalName}).
+ * For methods of arrays, e.g., clone(), the array type descriptor.
*/
public String owner;