Examples of OtpPatternVariable


Examples of org.erlide.util.erlang.OtpPatternVariable

        Assert.assertEquals(r.longValue(), 321);
    }

    @Test
    public void var_1() throws TermParserException {
        final OtpPatternVariable r = (OtpPatternVariable) termParser.parse("Hello");
        Assert.assertEquals(r.getName(), "Hello");
    }
View Full Code Here

Examples of org.erlide.util.erlang.OtpPatternVariable

        Assert.assertEquals(r.getName(), "Hello");
    }

    @Test
    public void var_2() throws TermParserException {
        final OtpPatternVariable r = (OtpPatternVariable) termParser.parse("_");
        Assert.assertEquals(r.getName(), "_");
    }
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.