| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 1e5e8c3 commit 2c6cf90
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -39,7 +39,7 @@ | |||
| 39 | 39 | ||
| 40 | 40 | # Reset this number to 0 on major V8 upgrades. | |
| 41 | 41 | # Increment by one for each non-official patch applied to deps/v8. | |
| 42 | - 'v8_embedder_string': '-node.18', | ||
| 42 | + 'v8_embedder_string': '-node.19', | ||
| 43 | 43 | ||
| 44 | 44 | ##### V8 defaults for Node.js ##### | |
| 45 | 45 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -387,8 +387,10 @@ class CompilationSubject { | |||
| 387 | 387 | // always has a FunctionBlueprint. | |
| 388 | 388 | class Callee { | |
| 389 | 389 | public: | |
| 390 | - explicit Callee(Handle<JSFunction> jsfunction) : jsfunction_(jsfunction) {} | ||
| 391 | - explicit Callee(FunctionBlueprint const& blueprint) : blueprint_(blueprint) {} | ||
| 390 | + explicit Callee(Handle<JSFunction> jsfunction) | ||
| 391 | + : jsfunction_(jsfunction), blueprint_() {} | ||
| 392 | + explicit Callee(FunctionBlueprint const& blueprint) | ||
| 393 | + : jsfunction_(), blueprint_(blueprint) {} | ||
| 392 | 394 | ||
| 393 | 395 | Handle<SharedFunctionInfo> shared(Isolate* isolate) const { | |
| 394 | 396 | return blueprint_.has_value() | |
| Back | FazBrowse Home | New Git URL |
0 commit comments