Package org.erlide.util.erlang

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


        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

Related Classes of org.erlide.util.erlang.OtpPatternVariable

Copyright © 2018 www.massapicom. 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.