Examples of ASMUtils


Examples of com.alibaba.fastjson.util.ASMUtils

        Assert.assertEquals("[J", ASMUtils.getDesc(long[].class));
        Assert.assertEquals("[Ljava/lang/Long;", ASMUtils.getDesc(Long[].class));
    }

    public void test_error_1() throws Exception {
        new ASMUtils();

        Exception error = null;
        try {
            ASMUtils.getPrimitiveLetter(Long.class);
        } catch (Exception ex) {
View Full Code Here

Examples of com.alibaba.fastjson.util.ASMUtils

        Assert.assertEquals("[J", ASMUtils.getDesc(long[].class));
        Assert.assertEquals("[Ljava/lang/Long;", ASMUtils.getDesc(Long[].class));
    }

    public void test_error_1() throws Exception {
        new ASMUtils();

        Exception error = null;
        try {
            ASMUtils.getPrimitiveLetter(Long.class);
        } catch (Exception ex) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.