| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 60b623e commit c7a0ab4
3 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -36,7 +36,7 @@ | |||
| 36 | 36 | ||
| 37 | 37 | # Reset this number to 0 on major V8 upgrades. | |
| 38 | 38 | # Increment by one for each non-official patch applied to deps/v8. | |
| 39 | - 'v8_embedder_string': '-node.1', | ||
| 39 | + 'v8_embedder_string': '-node.2', | ||
| 40 | 40 | ||
| 41 | 41 | ##### V8 defaults for Node.js ##### | |
| 42 | 42 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -4285,6 +4285,7 @@ GlobalAccessFeedback::GlobalAccessFeedback(PropertyCellRef cell, | |||
| 4285 | 4285 | ||
| 4286 | 4286 | GlobalAccessFeedback::GlobalAccessFeedback(FeedbackSlotKind slot_kind) | |
| 4287 | 4287 | : ProcessedFeedback(kGlobalAccess, slot_kind), | |
| 4288 | + cell_or_context_(base::nullopt), | ||
| 4288 | 4289 | index_and_immutable_(0 /* doesn't matter */) { | |
| 4289 | 4290 | DCHECK(IsGlobalICKind(slot_kind)); | |
| 4290 | 4291 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -296,7 +296,7 @@ Interpreter::NewSourcePositionCollectionJob( | |||
| 296 | 296 | auto job = std::make_unique<InterpreterCompilationJob>(parse_info, literal, | |
| 297 | 297 | allocator, nullptr); | |
| 298 | 298 | job->compilation_info()->SetBytecodeArray(existing_bytecode); | |
| 299 | - return job; | ||
| 299 | + return std::unique_ptr<UnoptimizedCompilationJob> { static_cast<UnoptimizedCompilationJob*>(job.release()) }; | ||
| 300 | 300 | } | |
| 301 | 301 | ||
| 302 | 302 | void Interpreter::ForEachBytecode( | |
| Back | FazBrowse Home | New Git URL |
0 commit comments