Package wyvern.targets.Common.wyvernIL.IL.Stmt

Examples of wyvern.targets.Common.wyvernIL.IL.Stmt.Label


    labels = new HashMap<Integer, Integer>();
    int labelLocation = 0;
    for (Statement statement : statements) {
      labelLocation++;
      if (statement instanceof Label) {
        Label label = (Label) statement;
        labels.put(label.getIdx(), labelLocation);
      }
    }
  }
View Full Code Here

TOP

Related Classes of wyvern.targets.Common.wyvernIL.IL.Stmt.Label

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.