Package ai.cfg.edges

Examples of ai.cfg.edges.ConstructorInvocationEdge


    }
   
    @Override
    public void match(CFGSingleEdge cfgEdge, BiMap<String, Variable> variables) {
      ensureCorrectType(cfgEdge, ConstructorInvocationEdge.class);
      ConstructorInvocationEdge thisEdge = (ConstructorInvocationEdge) cfgEdge.edge;
      String message = "Expected '" + this.toString() + "', have '" + cfgEdge.toString() + "' instead.";
      org.junit.Assert.assertEquals(message, args, listToString(thisEdge.stmt.arguments()));
    }   
View Full Code Here


  public void createConstructorInvocationEdge(CFGVertice previousVertice, CFGVertice nextVertice,
      ConstructorInvocation node) {
    assertGraphVertice(previousVertice);
    assertGraphVertice(nextVertice);
    CFGMultiTargetEdge edge = new ConstructorInvocationEdge(previousVertice, nextVertice, node);
    previousVertice.addEdge(edge);
    edges.add(edge);
  }
View Full Code Here

TOP

Related Classes of ai.cfg.edges.ConstructorInvocationEdge

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.