isA method

bool isA(
  1. Value? type,
  2. Machine vm
)

Return whether this value is the given type (or some subclass thereof) in the context of the given virtual machine.

Implementation

bool isA(Value? type, tac.Machine vm) {
  return false;
}