#include <isolate_scope.h>
Definition at line 33 of file isolate_scope.h.
◆ IsolateScope()
flutter::IsolateScope::IsolateScope |
( |
const Isolate & |
isolate | ) |
|
|
explicit |
Definition at line 14 of file isolate_scope.cc.
15 isolate_ = isolate.isolate_;
16 previous_ = Dart_CurrentIsolate();
17 if (previous_ == isolate_) {
23 Dart_EnterIsolate(isolate_);
◆ ~IsolateScope()
flutter::IsolateScope::~IsolateScope |
( |
| ) |
|
Definition at line 26 of file isolate_scope.cc.
27 Dart_Isolate current = Dart_CurrentIsolate();
28 FML_DCHECK(!current || current == isolate_);
29 if (previous_ == isolate_) {
36 Dart_EnterIsolate(previous_);
The documentation for this class was generated from the following files: