| Index: runtime/include/dart_api.h
|
| ===================================================================
|
| --- runtime/include/dart_api.h (revision 5191)
|
| +++ runtime/include/dart_api.h (working copy)
|
| @@ -1939,10 +1939,14 @@
|
| * error handle is returned.
|
| */
|
| DART_EXPORT Dart_Handle Dart_GetClass(Dart_Handle library, Dart_Handle name);
|
| +// TODO(turnidge): Consider returning Dart_Null() when the class is
|
| +// not found to distinguish that from a true error case.
|
|
|
| DART_EXPORT Dart_Handle Dart_LibraryUrl(Dart_Handle library);
|
|
|
| DART_EXPORT Dart_Handle Dart_LookupLibrary(Dart_Handle url);
|
| +// TODO(turnidge): Consider returning Dart_Null() when the library is
|
| +// not found to distinguish that from a true error case.
|
|
|
| DART_EXPORT Dart_Handle Dart_LoadLibrary(Dart_Handle url,
|
| Dart_Handle source,
|
|
|