1 package com.sun.org.apache.bcel.internal.generic; 2 3 56 57 64 public class L2D extends ConversionInstruction { 65 public L2D() { 66 super(com.sun.org.apache.bcel.internal.Constants.L2D); 67 } 68 69 70 78 public void accept(Visitor v) { 79 v.visitTypedInstruction(this); 80 v.visitStackProducer(this); 81 v.visitStackConsumer(this); 82 v.visitConversionInstruction(this); 83 v.visitL2D(this); 84 } 85 } 86 | Popular Tags |