Examples of EAtom


Examples of erjang.EAtom

  }
 
  @BIF
  public static EAtom is_builtin(EObject m, EObject f, EObject a) {
    EAtom mod  = m.testAtom();
    EAtom fun  = f.testAtom();
    ESmall ary = a.testSmall();
   
    if (mod == null || fun == null || ary == null)
      throw ERT.badarg(m, f, a);
   
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.