We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 529e587 commit ecd65b2Copy full SHA for ecd65b2
boa/src/builtins/function/mod.rs
@@ -413,7 +413,8 @@ pub fn make_constructor_fn(
413
prototype: Value,
414
constructable: bool,
415
) -> Value {
416
- let _timer = BoaProfiler::global().start_event(&format!("make_constructor_fn: {}", name), "init");
+ let _timer =
417
+ BoaProfiler::global().start_event(&format!("make_constructor_fn: {}", name), "init");
418
419
// Create the native function
420
let mut function = Function::builtin(Vec::new(), body);
0 commit comments