| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent a0b6104 commit dfa04d9
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -34,7 +34,7 @@ | |||
| 34 | 34 | ||
| 35 | 35 | # Reset this number to 0 on major V8 upgrades. | |
| 36 | 36 | # Increment by one for each non-official patch applied to deps/v8. | |
| 37 | - 'v8_embedder_string': '-node.45', | ||
| 37 | + 'v8_embedder_string': '-node.46', | ||
| 38 | 38 | ||
| 39 | 39 | ##### V8 defaults for Node.js ##### | |
| 40 | 40 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -120,7 +120,8 @@ void ProfilerListener::CodeCreateEvent(CodeEventListener::LogEventsAndTags tag, | |||
| 120 | 120 | // profiler as is stored on the code object, except that we transform source | |
| 121 | 121 | // positions to line numbers here, because we only care about attributing | |
| 122 | 122 | // ticks to a given line. | |
| 123 | - for (SourcePositionTableIterator it(abstract_code.source_position_table()); | ||
| 123 | + for (SourcePositionTableIterator it( | ||
| 124 | + handle(abstract_code.source_position_table(), isolate_)); | ||
| 124 | 125 | !it.done(); it.Advance()) { | |
| 125 | 126 | int position = it.source_position().ScriptOffset(); | |
| 126 | 127 | int inlining_id = it.source_position().InliningId(); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments