getValueAtEntry method

D? getValueAtEntry(
  1. int blockId,
  2. String variable
)

Gets the abstract value of a variable at block entry.

Implementation

D? getValueAtEntry(int blockId, String variable) {
  return entryStates[blockId]?[variable];
}