| Index: runtime/include/dart_mirrors_api.h
|
| diff --git a/runtime/include/dart_mirrors_api.h b/runtime/include/dart_mirrors_api.h
|
| index 23ec4e9e4d766b7bb2bb5ab0c4f82f0e8d0998ed..6ff82aa7525058081ddd540fb4e0057bad8aad11 100644
|
| --- a/runtime/include/dart_mirrors_api.h
|
| +++ b/runtime/include/dart_mirrors_api.h
|
| @@ -11,13 +11,15 @@
|
|
|
|
|
| /**
|
| - * Returns the class name for the provided class.
|
| + * Returns the simple name for the provided type.
|
| */
|
| +DART_EXPORT Dart_Handle Dart_TypeName(Dart_Handle type);
|
| DART_EXPORT Dart_Handle Dart_ClassName(Dart_Handle type);
|
|
|
| /**
|
| - * Returns the qualified class name for the provided class.
|
| + * Returns the qualified name for the provided type.
|
| */
|
| +DART_EXPORT Dart_Handle Dart_QualifiedTypeName(Dart_Handle type);
|
| DART_EXPORT Dart_Handle Dart_QualifiedClassName(Dart_Handle type);
|
|
|
| /**
|
|
|