~ubuntu-branches/ubuntu/vivid/libasm4-java/vivid

« back to all changes in this revision

Viewing changes to src/org/objectweb/asm/tree/MultiANewArrayInsnNode.java

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bourg
  • Date: 2014-04-15 13:44:19 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20140415134419-ko2fmcfd8t6y5r8o
Tags: 5.0.1-1
* Team upload.
* New upstream release
* Keep the prebuilt jars used for the tests in the source tarball

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
    @Override
74
74
    public void accept(final MethodVisitor mv) {
75
75
        mv.visitMultiANewArrayInsn(desc, dims);
 
76
        acceptAnnotations(mv);
76
77
    }
77
78
 
78
79
    @Override
79
80
    public AbstractInsnNode clone(final Map<LabelNode, LabelNode> labels) {
80
 
        return new MultiANewArrayInsnNode(desc, dims);
 
81
        return new MultiANewArrayInsnNode(desc, dims).cloneAnnotations(this);
81
82
    }
82
83
 
83
84
}
 
 
b'\\ No newline at end of file'