This repository was archived by the owner on Feb 22, 2018. It is now read-only.

Description
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