Package erjang

Examples of erjang.EList


  private void visit_function(ModuleVisitor v, ETuple fun) {

    EAtom name = (EAtom) fun.elm(2);
    int ary = fun.elm(3).asInt();
    int entry = fun.elm(4).asInt();
    EList insns = (EList) fun.elm(5);

    FunctionVisitor fv = v.visitFunction(name, ary, entry);

    visit_insns(insns, fv);
View Full Code Here


      this.map_seq = map_seq;
    }
   
    @Override
    public ESeq cons(EObject h) {
      return new EList(h, this);
    }
View Full Code Here

    this.self = self;
  }

  @Override
  public ESeq cons(EObject h) {
    return new EList(h, this);
  }
View Full Code Here

    this.self = self;
  }

  @Override
  public ESeq cons(EObject h) {
    return new EList(h, this);
  }
View Full Code Here

    this.self = self;
  }

  @Override
  public ESeq cons(EObject h) {
    return new EList(h, this);
  }
View Full Code Here

    if ((s = h.testSmall()) != null) {
      if ((s.value & 0xff) == s.value) {
        return new EStringList((byte) s.value, this);
      }
    }
    return new EList(h, this);
  }
View Full Code Here

      this.seq = s;
    }
   
    @Override
    public ESeq cons(EObject h) {
      return new EList(h, this);
    }
View Full Code Here

TOP

Related Classes of erjang.EList

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.