Skip to content

Commit

Permalink
Don't add TypedArray as a ctor (#874)
Browse files Browse the repository at this point in the history
  • Loading branch information
Elchi3 authored Nov 24, 2023
1 parent 648f9ea commit d56b7d7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test-builder/javascript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,12 @@ const buildTestList = (specJS, customJS) => {
continue;
}

// %TypedArray% is an abstract class and there is no constructor
if (feat.name === "TypedArray") {
delete feat.ctor;
continue;
}

features[featureName] = {members: {static: [], instance: []}};

// If there is a constructor, determine parameters
Expand Down

0 comments on commit d56b7d7

Please sign in to comment.