For a TS program like
var y = x instanceof ArrayBuffer;
the produced Dart program should have
import "dart:typed_arrays"
but it's missing, because we only traverse the AST looking for ts.SyntaxKind.TypeReference nodes, while the instanceof expression makes a tree like
BinaryExpression
- Identifier
- InstanceOfKeyword
- Identifier