@@ -130,7 +130,14 @@ class SimDart implements SimDartInterface {
130
130
_startTime = null ;
131
131
_scheduleNextAction ();
132
132
await _terminator.future;
133
- print ('foi: $_error ' );
133
+
134
+ try {
135
+ _disposeCompleteList ();
136
+ }catch (e){
137
+ print (e);
138
+ }
139
+
140
+ print ('foi: ${_error .runtimeType }: $_error ' );
134
141
if (_error != null ) {
135
142
print ('ue? erro?' );
136
143
_runState = RunState .error;
@@ -156,7 +163,7 @@ class SimDart implements SimDartInterface {
156
163
if (! completer.isCompleted) {
157
164
print ('vai CompleterInterrupt' );
158
165
// prevents subsequent methods from being executed after complete inside the async method.
159
- completer.completeError (CompleterInterrupt ());
166
+ completer.completeError (CompleterInterrupt ());
160
167
}
161
168
}
162
169
}
@@ -234,9 +241,9 @@ class SimDart implements SimDartInterface {
234
241
}
235
242
236
243
void _scheduleNextAction () {
237
- print ('_scheduleNextAction' );
238
- _debugListener? .onScheduleNextAction ();
239
244
if (! _nextActionScheduled) {
245
+ print ('_scheduleNextAction' );
246
+ _debugListener? .onScheduleNextAction ();
240
247
_nextActionScheduled = true ;
241
248
if (executionPriority == 0 || _executionCount < executionPriority) {
242
249
_executionCount++ ;
@@ -320,20 +327,20 @@ class SimDartHelper {
320
327
}
321
328
322
329
static void error ({required SimDart sim, required StateError error}) {
330
+ print ('error' );
323
331
if (sim._error== null ) {
324
332
sim._error = error;
325
333
sim._runState = RunState .error;
326
334
}
327
- sim._disposeCompleteList ();
328
335
}
329
336
330
337
static void setDebugListener ({required SimDart sim, required DebugListener ? listener}) {
331
338
sim._debugListener= listener;
332
339
}
333
340
334
341
static void stop ({required SimDart sim}) {
342
+ print ('stopando' );
335
343
sim._debugListener? .onStop ();
336
344
sim._runState = RunState .stopped;
337
- sim._disposeCompleteList ();
338
345
}
339
346
}
0 commit comments