mirror of
https://github.com/esiur/esiur-dart.git
synced 2026-04-03 17:58:21 +00:00
version
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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("/");
|
||||
|
||||
Reference in New Issue
Block a user