| Index: frog/type.dart
|
| diff --git a/frog/type.dart b/frog/type.dart
|
| index 02393f540f96b48d9d92b3093172814f26906dbf..a304b9016e14c7d55ff68458d9a2ab79ecdf5e36 100644
|
| --- a/frog/type.dart
|
| +++ b/frog/type.dart
|
| @@ -68,6 +68,8 @@ class Type implements Named, Hashable {
|
| // Strangely Dart treats calls on Function much like calls on var.
|
| bool get isVarOrFunction() => isVar || isFunction;
|
|
|
| + bool get isVarOrObject() => isVar || isObject;
|
| +
|
| /** Gets the $call method for a function type. */
|
| MethodMember getCallMethod() => null;
|
|
|
|
|