Skip to content

Commit

Permalink
Formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
khatchad committed Dec 18, 2017
1 parent ade57b3 commit 6286ed8
Showing 1 changed file with 14 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,8 @@ class StreamStateMachine {
// @formatter:on

/**
* A table mapping an instance and a block to the instance's possible states
* at that block.
* A table mapping an instance and a block to the instance's possible states at
* that block.
*/
private static Table<InstanceKey, BasicBlockInContext<IExplodedBasicBlock>, Map<TypestateRule, Set<IDFAState>>> instanceBlockStateTable = HashBasedTable
.create();
Expand Down Expand Up @@ -988,12 +988,11 @@ private static void discoverLambdaSideEffects(EclipseProjectAnalysisEngine<Insta
* The {@link PointerKey} in question.
* @param engine
* The {@link AnalysisEngine} to use.
* @return <code>true</code> if the given {@link PointerKey} should be
* filtered and <code>false</code> otherwise.
* @apiNote The current filtering mechanism excludes field
* {@link PointerKey}s whose instance is being assigned with the
* stream package. Basically, we are looking for modifications to
* the client code,
* @return <code>true</code> if the given {@link PointerKey} should be filtered
* and <code>false</code> otherwise.
* @apiNote The current filtering mechanism excludes field {@link PointerKey}s
* whose instance is being assigned with the stream package. Basically,
* we are looking for modifications to the client code,
*/
private static boolean filterPointerKey(PointerKey pointerKey, EclipseProjectAnalysisEngine<InstanceKey> engine) {
Boolean ret = null;
Expand Down Expand Up @@ -1069,17 +1068,17 @@ protected static StreamAttributeTypestateRule[] createStreamAttributeTypestateRu
* represented by the given call graph node in the given supergraph.
*
* @param block
* The block in which to find the corresponding block in context
* in the supergraph.
* The block in which to find the corresponding block in context in
* the supergraph.
* @param cgNode
* The call graph node representing the procedure that contains
* the block.
* The call graph node representing the procedure that contains the
* block.
* @param supergraph
* The supergraph in which to look up the corresponding block in
* context.
* @return The block in context in the given supergraph that corresponds to
* the given block with the procedure represented by the given call
* graph node.
* @return The block in context in the given supergraph that corresponds to the
* given block with the procedure represented by the given call graph
* node.
*/
private static Optional<BasicBlockInContext<IExplodedBasicBlock>> getBasicBlockInContextForBlock(
ISSABasicBlock block, CGNode cgNode, ICFGSupergraph supergraph) {
Expand Down

0 comments on commit 6286ed8

Please sign in to comment.