Package erjang.beam.repr.Operands

Examples of erjang.beam.repr.Operands.TableLiteral


        int nr = readSmallIntValue(in.read1());
        return new FReg(nr);
      }
      case LITERAL_TAG2: {
        int nr = readSmallIntValue(in.read1());
        return new TableLiteral(literal(nr));
      }
      default:
        log.warning("*** Unhandled extended operand tag: "+moretag);
      } // switch
      break;
View Full Code Here

TOP

Related Classes of erjang.beam.repr.Operands.TableLiteral

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.