Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fe72118

Browse files
committedDec 15, 2020
v8: refactor to use more primordials
1 parent 45dbcbe commit fe72118

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed
 

‎lib/internal/v8_prof_polyfill.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ function versionCheck(firstLine, expected) {
120120
// "v8-version,$major,$minor,$build,$patch[,$embedder],$candidate"
121121
// whereas process.versions.v8 is either "$major.$minor.$build-$embedder" or
122122
// "$major.$minor.$build.$patch-$embedder".
123-
firstLine = firstLine.split(',');
124-
const curVer = expected.split(/[.\-]/);
123+
firstLine = StringPrototypeSplit(firstLine, ',');
124+
const curVer = StringPrototypeSplit(expected, /[.\-]/);
125125
if (firstLine.length !== 6 && firstLine.length !== 7 ||
126126
firstLine[0] !== 'v8-version') {
127127
return 'Unable to read v8-version from log file.';

‎lib/v8.js

+6-3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
const {
1818
Array,
1919
ArrayBuffer,
20+
ArrayPrototypeForEach,
21+
ArrayPrototypePush,
2022
DataView,
2123
Error,
2224
Float32Array,
@@ -198,13 +200,14 @@ const arrayBufferViewTypeToIndex = new SafeMap();
198200

199201
{
200202
const dummy = new ArrayBuffer();
201-
for (const [i, ctor] of arrayBufferViewTypes.entries()) {
203+
ArrayPrototypeForEach(arrayBufferViewTypes, (ctor, i) => {
202204
const tag = ObjectPrototypeToString(new ctor(dummy));
203205
arrayBufferViewTypeToIndex.set(tag, i);
204-
}
206+
});
205207
}
206208

207-
const bufferConstructorIndex = arrayBufferViewTypes.push(FastBuffer) - 1;
209+
const bufferConstructorIndex =
210+
ArrayPrototypePush(arrayBufferViewTypes, FastBuffer) - 1;
208211

209212
class DefaultSerializer extends Serializer {
210213
constructor() {

0 commit comments

Comments
 (0)
Please sign in to comment.