Check if name is reserved by Dart language.
bool isReserved(String name) { return _reservedNames.contains(name); }