Skip to content

Commit

Permalink
Make ExtendedNode and Label public
Browse files Browse the repository at this point in the history
  • Loading branch information
msridhar committed Aug 26, 2023
1 parent 3e54ba0 commit 6e06930
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* CFG construction.
*/
@SuppressWarnings("nullness") // TODO
abstract class ExtendedNode {
public abstract class ExtendedNode {

/** The basic block this extended node belongs to (as determined in phase two). */
protected BlockImpl block;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* <p>Note that this class is deliberately public, to enable users of the dataflow library to
* customize CFG construction.
*/
class Label {
public class Label {

/** Unique id counter that incremented in {@code #uniqueName}. */
private static int uid = 0;
Expand Down

0 comments on commit 6e06930

Please sign in to comment.