macro_rules! scope {
($scope: ident, $param: expr $(,)?) => { ... };
(let $scope: ident, $param: expr $(,)?) => { ... };
}Expand description
Creates a pinned HandleScope and binds &mut PinScope to $scope.
v8::scope!(let scope, isolate);