| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent b4e8f0d commit a19e9bd
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -4115,6 +4115,7 @@ GlobalAccessFeedback::GlobalAccessFeedback(PropertyCellRef cell, | |||
| 4115 | 4115 | ||
| 4116 | 4116 | GlobalAccessFeedback::GlobalAccessFeedback(FeedbackSlotKind slot_kind) | |
| 4117 | 4117 | : ProcessedFeedback(kGlobalAccess, slot_kind), | |
| 4118 | + cell_or_context_(base::nullopt), | ||
| 4118 | 4119 | index_and_immutable_(0 /* doesn't matter */) { | |
| 4119 | 4120 | DCHECK(IsGlobalICKind(slot_kind)); | |
| 4120 | 4121 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -280,7 +280,7 @@ Interpreter::NewSourcePositionCollectionJob( | |||
| 280 | 280 | auto job = base::make_unique<InterpreterCompilationJob>(parse_info, literal, | |
| 281 | 281 | allocator, nullptr); | |
| 282 | 282 | job->compilation_info()->SetBytecodeArray(existing_bytecode); | |
| 283 | - return job; | ||
| 283 | + return std::unique_ptr<UnoptimizedCompilationJob> { static_cast<UnoptimizedCompilationJob*>(job.release()) }; | ||
| 284 | 284 | } | |
| 285 | 285 | ||
| 286 | 286 | void Interpreter::ForEachBytecode( | |
| Back | FazBrowse Home | New Git URL |
0 commit comments