2
0
mirror of https://github.com/esiur/esiur-dart.git synced 2026-04-03 17:58:21 +00:00
This commit is contained in:
2024-05-02 23:44:19 +03:00
parent 145726153f
commit 8a30c92e19
7 changed files with 172 additions and 92 deletions

View File

@@ -31,7 +31,7 @@ import '../Data/PropertyValue.dart';
// old
// abstract class IStore extends IResource
// new
abstract class IStore implements IResource {
abstract mixin class IStore implements IResource {
AsyncReply<IResource?> get(String path);
// AsyncReply<IResource?> retrieve(int iid);
AsyncReply<bool> put(IResource resource);

View File

@@ -45,7 +45,7 @@ class Instance extends IEventHandler {
int _id;
bool _isDestroyed;
bool _isDestroyed = false;
bool get isDestroyed => _isDestroyed;
@@ -482,7 +482,7 @@ class Instance extends IEventHandler {
if (pi.parents.count == 0) break;
p = pi.parents.first;
p = pi.parents.firstOrNull!;
}
return l.join("/");