main

square/leakcanary

Last updated at: 29/12/2023 09:39

Dominators.kt

TLDR

This file defines a class called Dominators which represents a collection of dominator nodes.

Classes

Dominators

The Dominators class represents a collection of dominator nodes. It has one property:

  • dominatorNodes: A map of Long keys representing the node IDs, and DominatorNode values representing the dominator nodes.

This class implements the Serializable interface.

package shark

import java.io.Serializable
import shark.ObjectDominators.DominatorNode

class Dominators(val dominatorNodes: Map<Long, DominatorNode>) : Serializable