< prev index next >

test/jdk/jdk/classfile/LvtTest.java

Print this page

  7  * published by the Free Software Foundation.
  8  *
  9  * This code is distributed in the hope that it will be useful, but WITHOUT
 10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 12  * version 2 for more details (a copy is included in the LICENSE file that
 13  * accompanied this code).
 14  *
 15  * You should have received a copy of the GNU General Public License version
 16  * 2 along with this work; if not, write to the Free Software Foundation,
 17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 18  *
 19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 20  * or visit www.oracle.com if you need additional information or have any
 21  * questions.
 22  */
 23 
 24 /*
 25  * @test
 26  * @summary Testing ClassFile local variable table.

 27  * @compile -g testdata/Lvt.java
 28  * @run junit LvtTest
 29  */
 30 import helpers.ClassRecord;
 31 import helpers.Transforms;
 32 import java.lang.classfile.*;
 33 
 34 import java.io.*;
 35 import java.lang.constant.ClassDesc;
 36 import java.net.URI;
 37 import java.nio.file.Files;
 38 import java.nio.file.Paths;
 39 import java.util.ArrayList;
 40 import java.util.List;
 41 
 42 import java.lang.classfile.Attributes;
 43 import java.lang.classfile.attribute.SourceFileAttribute;
 44 import java.lang.classfile.constantpool.ConstantPoolBuilder;
 45 import java.lang.classfile.constantpool.Utf8Entry;
 46 import java.lang.classfile.instruction.LocalVariable;

  7  * published by the Free Software Foundation.
  8  *
  9  * This code is distributed in the hope that it will be useful, but WITHOUT
 10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 12  * version 2 for more details (a copy is included in the LICENSE file that
 13  * accompanied this code).
 14  *
 15  * You should have received a copy of the GNU General Public License version
 16  * 2 along with this work; if not, write to the Free Software Foundation,
 17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 18  *
 19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 20  * or visit www.oracle.com if you need additional information or have any
 21  * questions.
 22  */
 23 
 24 /*
 25  * @test
 26  * @summary Testing ClassFile local variable table.
 27  * @enablePreview
 28  * @compile -g testdata/Lvt.java
 29  * @run junit LvtTest
 30  */
 31 import helpers.ClassRecord;
 32 import helpers.Transforms;
 33 import java.lang.classfile.*;
 34 
 35 import java.io.*;
 36 import java.lang.constant.ClassDesc;
 37 import java.net.URI;
 38 import java.nio.file.Files;
 39 import java.nio.file.Paths;
 40 import java.util.ArrayList;
 41 import java.util.List;
 42 
 43 import java.lang.classfile.Attributes;
 44 import java.lang.classfile.attribute.SourceFileAttribute;
 45 import java.lang.classfile.constantpool.ConstantPoolBuilder;
 46 import java.lang.classfile.constantpool.Utf8Entry;
 47 import java.lang.classfile.instruction.LocalVariable;
< prev index next >