@@ -265,17 +265,17 @@ FileHandle* FileHandle::New(BindingData* binding_data,
265
265
}
266
266
267
267
void FileHandle::New (const FunctionCallbackInfo<Value>& args) {
268
- BindingData* binding_data = Realm::GetBindingData<BindingData>(args);
269
- Environment* env = binding_data->env ();
270
268
CHECK (args.IsConstructCall ());
271
269
CHECK (args[0 ]->IsInt32 ());
270
+ Realm* realm = Realm::GetCurrent (args);
271
+ BindingData* binding_data = realm->GetBindingData <BindingData>();
272
272
273
273
std::optional<int64_t > maybeOffset = std::nullopt;
274
274
std::optional<int64_t > maybeLength = std::nullopt;
275
275
if (args[1 ]->IsNumber ())
276
- maybeOffset = args[1 ]->IntegerValue (env ->context ()).FromJust ();
276
+ maybeOffset = args[1 ]->IntegerValue (realm ->context ()).FromJust ();
277
277
if (args[2 ]->IsNumber ())
278
- maybeLength = args[2 ]->IntegerValue (env ->context ()).FromJust ();
278
+ maybeLength = args[2 ]->IntegerValue (realm ->context ()).FromJust ();
279
279
280
280
FileHandle::New (binding_data,
281
281
args[0 ].As <Int32>()->Value (),
@@ -1143,13 +1143,14 @@ static void InternalModuleStat(const FunctionCallbackInfo<Value>& args) {
1143
1143
}
1144
1144
1145
1145
static void Stat (const FunctionCallbackInfo<Value>& args) {
1146
- BindingData* binding_data = Realm::GetBindingData<BindingData>(args);
1147
- Environment* env = binding_data->env ();
1146
+ Realm* realm = Realm::GetCurrent (args);
1147
+ BindingData* binding_data = realm->GetBindingData <BindingData>();
1148
+ Environment* env = realm->env ();
1148
1149
1149
1150
const int argc = args.Length ();
1150
1151
CHECK_GE (argc, 2 );
1151
1152
1152
- BufferValue path (env ->isolate (), args[0 ]);
1153
+ BufferValue path (realm ->isolate (), args[0 ]);
1153
1154
CHECK_NOT_NULL (*path);
1154
1155
THROW_IF_INSUFFICIENT_PERMISSIONS (
1155
1156
env, permission::PermissionScope::kFileSystemRead , path.ToStringView ());
@@ -1178,13 +1179,14 @@ static void Stat(const FunctionCallbackInfo<Value>& args) {
1178
1179
}
1179
1180
1180
1181
static void LStat (const FunctionCallbackInfo<Value>& args) {
1181
- BindingData* binding_data = Realm::GetBindingData<BindingData>(args);
1182
- Environment* env = binding_data->env ();
1182
+ Realm* realm = Realm::GetCurrent (args);
1183
+ BindingData* binding_data = realm->GetBindingData <BindingData>();
1184
+ Environment* env = realm->env ();
1183
1185
1184
1186
const int argc = args.Length ();
1185
1187
CHECK_GE (argc, 3 );
1186
1188
1187
- BufferValue path (env ->isolate (), args[0 ]);
1189
+ BufferValue path (realm ->isolate (), args[0 ]);
1188
1190
CHECK_NOT_NULL (*path);
1189
1191
1190
1192
bool use_bigint = args[1 ]->IsTrue ();
@@ -1212,8 +1214,9 @@ static void LStat(const FunctionCallbackInfo<Value>& args) {
1212
1214
}
1213
1215
1214
1216
static void FStat (const FunctionCallbackInfo<Value>& args) {
1215
- BindingData* binding_data = Realm::GetBindingData<BindingData>(args);
1216
- Environment* env = binding_data->env ();
1217
+ Realm* realm = Realm::GetCurrent (args);
1218
+ BindingData* binding_data = realm->GetBindingData <BindingData>();
1219
+ Environment* env = realm->env ();
1217
1220
1218
1221
const int argc = args.Length ();
1219
1222
CHECK_GE (argc, 2 );
@@ -1244,13 +1247,14 @@ static void FStat(const FunctionCallbackInfo<Value>& args) {
1244
1247
}
1245
1248
1246
1249
static void StatFs (const FunctionCallbackInfo<Value>& args) {
1247
- BindingData* binding_data = Realm::GetBindingData<BindingData>(args);
1248
- Environment* env = binding_data->env ();
1250
+ Realm* realm = Realm::GetCurrent (args);
1251
+ BindingData* binding_data = realm->GetBindingData <BindingData>();
1252
+ Environment* env = realm->env ();
1249
1253
1250
1254
const int argc = args.Length ();
1251
1255
CHECK_GE (argc, 2 );
1252
1256
1253
- BufferValue path (env ->isolate (), args[0 ]);
1257
+ BufferValue path (realm ->isolate (), args[0 ]);
1254
1258
CHECK_NOT_NULL (*path);
1255
1259
THROW_IF_INSUFFICIENT_PERMISSIONS (
1256
1260
env, permission::PermissionScope::kFileSystemRead , path.ToStringView ());
0 commit comments