Lines Matching defs:options
45 auto options =
58 options.type =
66 options.execution = ExecutionType::kAsync;
70 // If no options object is present default to legacy behavior.
72 options.type =
78 return Just<GCOptions>(options);
154 GCOptions options = maybe_options.ToChecked();
155 switch (options.execution) {
157 InvokeGC(isolate, ExecutionType::kSync, options.type);
168 std::make_unique<AsyncGC>(isolate, resolver, options.type));